@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    /* border: 1px solid #a30000 !important; */
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #f1ca2d;
    z-index: 10;
    display: inline-block;
    color: #000000;
    padding: 20px 20px;
   /* border-radius: 10px;*/
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    width: 100%;
    height: 60px;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.btn10:hover {
   /* border: 1px solid #a30000!important;*/
    color: #000!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #ffffff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    /* border-color: #a30000 !important; */
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
     font-family: "Playfair Display", serif;
    font-size: 59px;
    line-height: 65px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-style: italic;
}

h2 {
     font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
    font-style: italic;
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 59px;
    line-height: 65px;
    color: #f1ca2d;
    font-weight: 500;
    margin: 0 0 10px;
    font-style: italic;
}

h4 {
      font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
   
}

h5 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
    font-style: italic;
}

h6 {
     font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 55px;
    color: #000;
    font-weight: 500;
    margin: 0 0 10px;
      font-style: italic;
}

p {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
     font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0 0 10px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header::before {
    position: absolute;
    content: "";
    background: #f1ca2d;
    height: 82%;
    width: 1px;
    left: 10.7%;
    bottom: 0;
}
header {
    padding: 12px 0;
    background: #1a2634;
    position: relative;
}
.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    gap: 17px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #8d939a;
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 700;
}
.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #f1ca2d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */

/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/* search box css */
body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #f1ca2d;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #f1ca2d 0%, #ffc107 100%);
    display: inline-block;
}
.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #f1ca2d;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #f1ca2d;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


/* .search-btn:hover {
  color: #00A896;
} */


/* end search box css */


/*lang translator*/


.language-slct>a>span {
    margin: 0 7px;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Montserrat';
}

.language-slct>a {
    color: #a41d1d;
    font-weight: 500;
    font-size: 18px;
}

.language-drop-down.open {
    display: block;
}
.language-drop-down {
    display: none;
    position: absolute;
    width: 114px;
    right: -37px;
    background: #fff;
    box-shadow: 0 0 6px 0 #00000061;
    padding: 15px;
    /* border-radius: 10px; */
    top: 34px;
    height: 54px;
    overflow-y: scroll;
    z-index: 9;
    padding: 0;
}
.language-slct {
    position: relative;
 }
.language-drop-down>a {
    display: flex !important;
    align-items: center!important;
    margin: 10px 0 10px!important;
    color: #000!important;
    font-size: 11px!important;
}

.language-drop-down>a>img {
    /* width: 26px; */
    margin-right: 4px;
}
.language-slct i {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.language-drop-down>a {
        color: #000;

}

/*lang translator*/


.sec-padd {
    padding-right: 70px;
    padding-left: 70px;
}
.wel-txt p {
    font-size: 16px;
    /* margin: 0 0px 0 15px; */
}

.cnt-det {
    text-align: end;
}

.cnt-det a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.top-btn i.fas.fa-arrow-up {
    margin-left: 35px;
    transform: rotate(45deg);
    font-size: 22px;
}

.bdr {
    border-top: solid 1px #ffffff7a;
    padding: 15px 0;
}
.wel-txt {
    margin: 20px 0;
}

span.yellow-txt {
    font-size: 59px;
    text-transform: uppercase;
    color: #f1ca2d;
    font-family: 'Playfair Display';
    font-style: italic;
    line-height: 80px;
}

.banner_text p {
    font-size: 18px;
    width: 79%;
    margin: 20px 0;
    font-weight: 500;
}


.banner_text a.btn10 {
    width: 45%;
}
.banner_text i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
}


.video-div {
    position: relative;
}




.abs-vid {
    position: absolute;
    /* top: 0%; */
    right: 14%;
    transform: translate(-50%);
    bottom: 145px;
}

.abs-vid i {
    font-size: 21px;
    color: #f1ca2d;
    /* border: solid; */
    border-radius: 45px;
    /* padding: 20px; */
    width: 75px;
    height: 75px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    background: transparent;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: solid 2px #ffffffa6;
}

.abs-vid i:hover {
    background: #f1ca2d;
    color: #fff;
    border: transparent;
}
section.aboutus.pt-8.pb-8 {
    background: #1a2634;
}

span.yel {
    color: #f1ca2d;
}

.abt-head h5 {
    font-size: 40px;
    line-height: 53px;
}

.abt-head a.btn10 {
    width: 37%;
    margin-top: 30px;
}

.abt-head i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
}

.abt-head {
    margin: 0 0 0 20px;
}

section.ourservices.pt-8.pb-8 {
    background: url(../images/ser-bk.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}


.ser-head {
    text-align: center;
}

.ic-box img {
    background: #f1ca2d;
    padding: 15px 9px;
}

.ic-box {
    margin: 0 0 20px;
}

.serdet a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #f1ca2d;
}

.serdet i.fas.fa-arrow-up {
    margin-left: 6px;
    transform: rotate(45deg);
    font-size: 18px;
}

.serdet {
    margin-bottom: 35px;
}

ul.off-hr li img {
    height: 18px;
    width: 18px;
    margin: 7px 10px 7px 0;
}

.serve {
    background: #f0c92d;
}

.sc-pd {
    padding-left: 11%;
    padding-right: 0;
}

span.gret-txt {
    font-family: 'Montserrat';
    color: #0000007a;
    font-size: 24px;
    line-height: 55px;
    font-weight: 600;
}

.serve-head p {
    color: #000;
    margin: 20px 0;
}


.serve-head h5 {
    color: #000;
    font-size: 35px;
    line-height: 45px;
}
ul.off-hr li {
    font-size: 14px;
    /* color: #000; */
    font-size: 14px;
    line-height: 38px;
}



.serve-head i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
    color: #f0c92d;
}

.serve-head a.btn10 {
    background: #121314;
    color: #fff;
    width: 25%;
    margin: 30px 0 0;
}


section.testimonials.pt-8.pb-8 {
    background: #1a2634;
}

.test-head h3 {
    font-size: 30px;
    line-height: 30px;
    font-family: 'Montserrat';
    font-style: normal;
}

.tst-btn a.btn10 {
    width: 40%;
}

.tst-btn  i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
   
}

.tst-btn {
    display: flex;
    justify-content: end;

}

.test-box ul li {
    display: inline-block;
    font-size: 14px;
    color: #ffc400;
}

.testi-header {
    display: flex
;
    align-items: center;
    justify-content: space-between;
}

.author {
    display: flex;
    /* align-items: end; */
    gap: 6px;
}
.title {
    margin: 0 0 20px;
}

.title h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 5px;
    line-height: 17px;
    font-family: 'Montserrat';
}
.title h5 {
    font-size: 17px;
    color: #f1ca2d;
    font-family: 'Montserrat';
    line-height: 15px;
    margin: 0;
    font-style: normal;
}

.test-box {
    background: #10161c;
    padding: 25px;
    margin-bottom: 20px;
}

/*.test-box ul {
    margin-bottom: 15px;
}
*/
.test-box p {
    margin: 25px 0;
}
.test-box ul li {
    font-size: 24px;
    font-family: 'Montserrat';
    color: #f1ca2d;
}

ul.stars li {
    font-size: 12px;
    color: #f1ca2d;
}

ul.stars {
    margin-left: 27px;
}

.test-slider .slick-active {
    opacity: 1;
}

.test-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #f1ca2d;
}

.test-slider .slick-dots li button:before {
   
    font-size: 10px;  
    opacity: 1;
        color: #ffffff;
   
}

.test-slider .slick-dots {
    bottom: -49px;
}

section.journey.pt-8.pb-8 {
    background: #0d1319;
}

.jrn-txt {
    text-align: center;
    margin: 0 auto;
    width: 50%;
}

.jrn-txt h3 {
    font-size: 50px;
    line-height: 54px;
}

.icons {
    display: flex
;
    align-items: center;
    gap: 8px;
    border-top: solid 1px #ffffff5e;
    padding: 15px 0 0;
    justify-content: space-between;
    margin-top: 30px;
}
span.yetxt {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #f1ca2d;
    text-transform: uppercase;
    /* text-align: center; */
    line-height: 53px;
}

.jour-img img {
    width: 100%;
}
.jour-box {
    background: #1a2634;
    padding: 45px 20px;
}

.icons img {
    width: 18px;
    height: 22px;
    margin-right: 11px;
}

span.date {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
}

.icons a {
    font-size: 14px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #f1ca2d;
}

section.ready-begin.pt-8.pb-8 {
    background: url(../images/j-bk.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}

.beg-head {
    text-align: center;
}

.beg-head a.btn10 {
    width: 29%;
    margin: 0 auto;
}

.beg-head p {
    width: 50%;
    margin: 0 auto;
}
.beg-head a.btn10 {
    width: 24%;
    margin: 0 auto;
    margin-top: 3%;
}

.beg-head i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
}

.beg-head h3 {
    font-size: 50px;
    line-height: 52px;
}


/*footer*/

.footer-logo-box img {
    width: 60%;
}


.footer-logo-box {
    text-align: center;
    position: relative;
}

.footer-main {
    padding: 80px 0 50px;
    /* background: url(../images/footer-bk.png); */
    /* position: relative; */
    background: #1a2634;
}
.footer-logo-box p {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 20px
}

.footer-logo-box a img {
    margin-bottom: 35px
}
.footer-logo-box ul {
    display: flex
;
    align-items: center;
    /* margin-bottom: 25px; */
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}
.new-letter p {
    color: #fff;
    font-size: 15px;
    /* font-weight: 600; */
}

.new-letter form {
    margin: 0 0 15px;
}

.foot-social ul li a:hover {
    background: #f1ca2d;
    color: #000000;
    border: transparent;
}
.foot-social ul li a {
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 17px;
    color: #ffffff;
    transition: .5s;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 24px;
}

.quick-link {
    /* padding-left: 40px; */
    margin-left: 0;
    /* border-right: 1px solid #525252; */
}
/*.contact-info {
    padding-left: 30px;
    border-left: 1px solid #525252;
    border-right: 1px solid #525252
}
*/
.new-letter {
    padding-left: 20px
}

.copy-right {
    padding: 15px 0;
    text-align: center;
    background: #1a2634;
    border-top: solid 1px #ffffff54;
}

.new-letter-input-icon {
    position: absolute;
    left: 15px;
    /* color: #038bf1; */
}

.new-letter input {
    width: 100%;
    height: 55px;
    border: none;
    background: #ffff;
    /* border-radius: 10px; */
    padding: 0 55px;
    box-shadow: 0 0 2px 0 #00000063;
}
.new-letter-input-icon i {
    font-size: 18px
}

.copy-right p {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    /* font-family: 'Montserrat'; */
    margin: 0;
}
.new-letter-input input::placeholder {
       font-family: 'Montserrat';
    font-size: 14px;
    color: #000;
    font-weight: 500
}

.new-letter-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.new-letter-button button {
    width: 100%;
    height: 55px;
    font-size: 19px;
    border: none;
    color: #000;
    background-image: linear-gradient(to bottom,#9e742e,#ac8340,#bb9351,#c9a363,#d8b375,#d8b375,#d9b475,#d9b475,#cba463,#bd9552,#b08641,#a27730);
    border-radius: 10px
}
.footer-main h5 {
    font-size: 24px;
    font-weight: 500;
    /* color: #000; */
    /* font-family: 'Alegreya'; */
    /* text-transform: uppercase; */
}

.quick-link ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat';
}
.quick-link ul {
    line-height: 28px;
    column-count: 2;
}
.contact-info ul li a i {
    font-size: 17px;
    color: #f1ca2d;
}
.contact-info ul li a {
    display: flex
;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 22px;
    font-family: 'Montserrat';
}
.contact-info ul li:last-child a {
    margin-bottom: 0
}

input.footbtn.btn10 {
    width: 100%;
    /* border-radius: 10px; */
}




/*inner pages*/



.banner-image img {
    width: 100%;
}

.banner-image {
    position: relative;
}


.title-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /*  background: #b7040461; */
    display: flex;
    align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: start;
}

.title-new h2 {
    font-size: 45px;
    text-transform: uppercase;
}


.serve-head h6 {
    font-size: 35px;
    line-height: 34px;
}

section.ourteam.pt-8.pb-8 {
    background: #0d1319;
}

.team-head {
    margin: 0 auto;
    text-align: center;
    width: 50%;
}

.team-box img {
    width: 100%;
}

ul.tem-scl {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 20px 0;
}
.team-box {
    background: #fff;
    padding: 20px;
}

.team-detail h5 {
    font-family: 'Montserrat';
    font-style: normal;
    text-align: center;
    margin: 20px 0 0;
    color: #000;
    line-height: 24px;
}

span.yeltxt {
    font-size: 26px;
    font-family: 'Montserrat';
    text-align: center;
    color: #f1ca2d;
}
.team-detail {
    text-align: center;
}

ul.tem-scl li {
    /* color: #000; */
    /* border: solid; */
    padding: 11px;
    border-radius: 24px;
    height: 45px;
    width: 45px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
}

ul.tem-scl li a{
    color: #000;
}


.inner-insights {
    background: #1a2634;
}


/*pagination
*/
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
}


.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #f1ca2d;
    border-color: #dee2e6;
    /* background-image: linear-gradient(to bottom, #9e742e, #ac8340, #bb9351, #c9a363, #d8b375, #d8b375, #d9b475, #d9b475, #cba463, #bd9552, #b08641, #a27730); */
    color: #fff !important;
}


.page-item:not(:first-child) .page-link {
    margin-left: 4px;
    color: black;
    height: 60px;
    width: 60px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 0 10px #00000024;
    font-weight: 500;
}
.brown-bk {
    background: #f1ca2d;
    color: white !important;
}


.innerservices{
   
    background: #1a2634;
}


.inner-vid-div {
    position: relative;
}

.inner-abs-vid {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50% );
}

.inner-abs-vid i {
    font-size: 22px;
    color: #f1ca2d;
    /* border: solid; */
    border-radius: 45px;
    padding: 20px;
    width: 70px;
    height: 70px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    /* background: linear-gradient(to right, #1862a2 10%, #073668 100%) !important; */
    display: flex
;
    align-items: center;
    justify-content: center;
    background: white;
}
section.video-services.pt-8.pb-8 {
    background: url(../images/video-bk.png);
    background-size: cover;
    /* box-shadow: inset 0 0 0 2000px #367de2d6; */
    width: 100%;
    height: 100%;
}
.innservi {
    position: relative;
    background: #eaf2fd;
}

.gall-txt {
    text-align: center;
    margin: 0 auto;
    width: 50%;
}

/*.innservi::before {
    position: absolute;
    content: "";
    background: url(../images/abt-before.png);
    width: 285px;
    height: 904px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
}
*/



.page-test .pagination {
    display: flex
;
    padding-left: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 36px;
}


.page-test .page-item:not(:first-child) .page-link {
    margin-left: 4px;
    color: #ffffff;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 0 10px #00000024;
    font-weight: 500;
    background: transparent;
    border: none;
}



.page-test .page-link:hover {
  /*  z-index: 2;
    color: #0a58ca;*/
    background-color: #f1ca2d;
 /*   border-color: #dee2e6;*/
    /* background-image: linear-gradient(to bottom, #9e742e, #ac8340, #bb9351, #c9a363, #d8b375, #d8b375, #d9b475, #d9b475, #cba463, #bd9552, #b08641, #a27730); */
    color: #fff !important;
}



.form-group .form-control1 {
    font-size: 14px;
    color: #000000;
    font-family: 'Montserrat';
    font-weight: 500;
    border-radius: 0;
}

.form-group textarea.form-control {
    min-height: calc(8.5em + 0.75rem + 2px);
    /* color: black; */
   /* font-size: 18px;
    font-family: 'WorkSans-Regular';*/
    /* color: #b63131; */
}

input.form-control::placeholder{
    font-size: 14px;
    color: #000000;
    font-family: 'Montserrat';
    font-weight: 500px;   
}

textarea.form-control::placeholder{
     font-size: 14px;
    color: #000000;
    font-family: 'Montserrat';
    font-weight: 500px;   
}

/*.icons {
    margin-left: 35px;
    margin-bottom: 31px;
}*/
.form-group {
    margin-top: 15px;
}


.form-control1 {
    display: block;
    width: 100%;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 6px;
}



.button1 {
    display: inline-block;
}


.button-sub a {
    /* color: black; */
    /* text-decoration: none; */
    margin: 20px 0;
}
.contact2 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    margin-top: 23px;
    margin-bottom: 60px;
}

.contact2 .icon {
    height: 70px;
    width: 70px;
    /* border: dashed 2px #e5c48a; */
    border-radius: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    background: #e0bd2e;
}
.icon_info h4 {
    font-family: 'Playfair Display';
    font-size: 30px;
    color: #fff;
    /* font-weight: 500; */
    margin: 0 0 0px;
    font-style: italic;
}

.location {
    display: inline-flex;
    padding: 10px;
}


.icons li {
    list-style: none;
}


section.contact-us-form.pt-8.pb-8 {
    background: #1a2634;
}

.button-sub i.fas.fa-arrow-up{
margin-left: 35px;
    transform: rotate(45deg);
    font-size: 22px;
}

section.map {
    background: #1a2634;
}



/* faq page css */

.faq-h {
    width: 60%;
    margin: 0 auto 30px;
}

.faq-h h2 {
    margin-bottom: 20px;
}

.faq-h p {
    color: #494949;
    font-size: 16px;
    text-align: center;
}

.gorrila-page-sec {
    padding: 80px 0;
}

.gorilla-content .accordion-button.collapsed {
    padding: 22px 30px;
    background-color: #f1ca2d;
    color: #ffffff;
    font-size: 30px;
    font-family: 'Playfair Display';
    line-height: 30px;
    border-radius: 0;
    /* text-transform: uppercase; */
    color: #000;
    text-transform: uppercase;
    font-style: italic;
}

.gorilla-content .accordion-button {
    /* color: #000000 !important; */
    font-size: 24px;
    padding: 20px 20px;
    line-height: 45px;
    background-color: transparent;
    font-size: 45px;
    font-family: 'Trirong-Regular';
}

.gorilla-content .gorrila-page-txt .color-red {
    color: #A60000;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
}

.gorrila-page-txt ul {
    list-style: auto;
}

.gorrila-page-txt ul li {
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    margin-left: 15px;
}

.gorrila-page-txt ul li::marker {
    color: #A60000;
}

.accordion-body.gorrila-page-txt {
    padding: 20px 30px;
}

.gorilla-content .accordion-item {
    margin: 20px 0;
    border-radius: 0;
    border: 0;
    background: #ffffff;
}
.gorilla-content .accordion-button:not(.collapsed) {
    box-shadow: none;
    /* border: 2px solid #00edff; */
    border-bottom: 0;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    color: #000000;
    /* text-transform: uppercase; */
    font-family: 'Playfair Display';
    font-size: 35px;
    font-style: italic;
}
.accordion-collapse.collapse {
    /*border: 2px solid #00edff;
*/    border-top: 0;
    border-radius: 0 0 10px 10px;
    /* margin-bottom: 30px; */
}

.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.accordion-body p {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
}
.gorilla-content .accordion-button::after {
    content: '\f078';
    font-weight: 700;
    font-family: 'Font Awesome 5 Free' !important;
    background-image: none;
    transform: rotate(0deg);
    font-style: normal;
}
.accordion-button:not(.collapsed)::after {
    content: '\f068';
    font-weight: 700;
     font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 32px;
    display: none;
}
.faq-pg-sec {
    padding: 80px 0;
}

.faq-h h3 {
    font-size: 50px;
    text-transform: uppercase;
    color: #000;
}

section.faq.pt-8.pb-8 {
    background: url(../images/gallery.png);
    background-size: cover;
    /* box-shadow: inset 0 0 0 2000px #367de2d6; */
}

/* Faqs Page End */



/** Blog Detail Page Start */


.det-img-main img {
    width: 100%;
    box-shadow: 0 0 20px 2px #3e3e3e2b;
}

.recent-posts h2 {
    /* font-weight: 400; */
    font-size: 40px;
    margin-bottom: 25px;
    font-family: 'Playfair Display';
    color: #fff;
}
/*.recent-posts span {
    font-family: 'Bebas Neue', cursive;
    font-size: 54px;
    line-height: 60px;
    color: #85c75d;
    font-weight: 500;
    margin: 0 0 10px;
}*/

.det-txt-sml ul li i {
    color: #f1ca2d;
    font-size: 19px;
}

.det-head h2 {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 40px;
    margin: 24px 0;
    width: 74%;
}
.det-head span {
    font-family: 'AlbraMedium';
    font-size: 61px;
    line-height: 62px;
    color: #06b6ea;
    font-weight: 500;
    margin: 0 0 10px;
}

.det-txt-main p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
}


/* Blog Details */

.blog-post {
    display: grid;
    grid-template-columns: auto auto;
    gap: 25px;
    align-items: center;
    margin-bottom: 33px;
}

.det-txt-sml p {
    font-size: 24px;
    font-family: 'Playfair Display';
    line-height: 28px;
    font-style: italic;
}
.det-txt-sml ul {
    margin-bottom: 0;
    width: 100%;
    display: inline-flex;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    /* padding: 5px 0; */
    height: 40px;
    padding: 0 10px;
}

.det-txt-sml ul li {
    font-size: 14px;
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Montserrat';
}


li.date {
    border-right: 1px solid #cccccc;
    padding-right: 15px;
}

li.comments {
    padding-left: 15px;
}

.det-head ul {
    margin-bottom: 30px;
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000000;
    /* padding: 5px 0; */
    /* height: 40px; */
    padding: 15px 10px;
}

.det-head ul li {
    font-size: 16px;
    display: flex
;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.det-head ul li i {
    color: #f1ca2d;
    font-size: 22px;
}
.det-head ul li.date {
    padding-right: 25px;
}

.det-head ul li.comments {
    padding-left: 25px;
}

.det-txt-main p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
}
footer.footerSec.detFooter {
    background-color: #ffffff;
}

section.blg-det-sec {
    padding: 80px 0;
    position: relative;
}

section.blog-detail-page {
    background: #1a2634;
}

/* Blog Details */


/* Blog Detail Page End */




.appoinment_secc form input {
    /* outline: none; */
    /* color: #333; */
    /* font-size: 18px; */
    font-size: 16px;
    color: #000;
    font-weight: 500;
    font-family: 'Montserrat';
    background: #fff;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
}

section.appoinment_secc {
    background: #1a2634;
}

.appoinment_secc select.form-select {
    font-size: 15px;
    padding: 15px;
    border-radius: 0;
    margin-bottom: 20px;
    font-size: 15px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 500;
}

.appoinment_secc form textarea {
    /* resize: none; */
    height: 200px;
    width: 100%;
    padding: 15px;
}

.appoinment_secc form input::placeholder{
     font-size: 15px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 500;

}

.appoinment_secc form textarea::placeholder{
     font-size: 15px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 500;

}

.prvbtn a.btn10 {
    width: 24%;
    margin: 0 auto;
    margin-top: 20px;
}

.prvbtn i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
}



.prvbtn-1 a.btn10 {
    width: 15%;
    margin: 0 auto;
    margin-top: 20px;
}

.prvbtn-1 i.fas.fa-arrow-up {
    margin-left: 8px;
    transform: rotate(45deg);
    font-size: 22px;
}

.core-value-txt h2 {
    color: #000;
}

.page-link.active {
    background: #f1ca2d !important;
    border-radius: 10px;
}
