/*Main Css */

:root {
--primary: #CBA052;
--secondary: #726C55;
--white: #fff;

--font-heading: 'National', sans-serif;
--font-accent: 'Poppins', sans-serif;
--font-body: 'Poppins', sans-serif;
--icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
background: var(--primary);
color: #fff;
text-shadow: none;
}

::-webkit-scrollbar {
width: 5px;
background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: none;
}

::-webkit-scrollbar-track-piece {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
border-radius: 10px;
background-color: var(--primary);
}

/* Tabbing CSS */

[class^="box-"] {
display: none;
}

[class^="box-"].showfirst {
display: block;
}

body {
font-family: var(--font-body);
overflow-x: hidden;
font-size: 16px;
color: var(--body-color);
font-weight: 400;
line-height: 30px;
letter-spacing: 0em;
}

body.inner-header {
padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
display: block;
color: var(--secondary);
text-transform: capitalize;
}

h1 {
font-weight: 700;
font-size: 148.51px;
line-height: 118.22px;
letter-spacing: 0;
text-align: center;
text-transform: uppercase;
}

h2 {
font-weight: 300;
font-size: 75px;
line-height: 78.5px;
letter-spacing: 0px;
text-transform: uppercase;
}

h2 span.text-bold {
font-weight: bold;
}

h3 {
font-weight: 300;
font-size: 55px;
line-height: 56px;
letter-spacing: 0px;
vertical-align: middle;
text-transform: uppercase;
}

h6 {
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

.text-primary {
color: var(--primary) !important;
}

.text-secondary {
color: var(--secondary) !important;
}

.btn {
padding: 15px 68px;
font-family: var(--font-body) !important;
text-transform: uppercase;
font-weight: 500;
font-size:
16px;
line-height: 25px;
letter-spacing: 0;
text-align: center;
border-radius: 0;
}

.btn:focus,
.btn:active:focus {
box-shadow: none;
}

.btn i {
font-size: 14px;
font-weight: 600;
}

.btn-primary {
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-primary-border {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-primary-border:hover,
.btn-primary-border:active,
.btn-primary-border:focus {
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-secondary {
background-color: var(--secondary);
border: 1px solid var(--secondary);
color: var(--white) !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
background-color: transparent;
border: 1px solid var(--secondary);
color: var(--secondary) !important;
}

.btn-dark {
background-color: var(--dark);
border: 1px solid var(--dark);
color: var(--white) !important;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
background-color: transparent;
border: 1px solid var(--dark);
color: var(--dark) !important;
}

*:hover,
*:focus,
* {
outline: none !important;
}

img {
max-width: 100%;
height: auto;
}

a,
input[type="submit"] {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
display: inline-block;
cursor: pointer;
text-decoration: none;
}

span {
display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
font-family: var(--font-body);
font-weight: 400;
}

::-webkit-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-ms-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
opacity: 1;
}

/* Padding Classes */
.pad-zero {
padding: 0px;
}

.pad-l-zero {
padding-left: 0px;
}

.pad-r-zero {
padding-right: 0px;
}

.ovr-hiddn {
overflow: hidden;
}

.overlay:after {
content: "";
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}

.overlay {
display: none;
}

.overlay.active {
display: block;
}

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}

.slick-slide {
margin: 0 15px;
}

.slick-dots {
padding: 50px 0 0;
text-align: center;
}

.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}

.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}

.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

/*header css*/

/* header {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
position: fixed;
background: transparent;
z-index: 1;
left: 0;
right: 0;
top: 0;
}
header.sticky{
background: white;
box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
top: 0;
} */

.main-header {
width: 100%;
padding-top: 22px;
padding-bottom: 18px;
position: absolute;
z-index: 2;
}

/* .menuWrap {
display: flex;
align-items: center;
justify-content: center;
} */

.desktop-header .menuWrap {
display: flex;
align-items: center;
justify-content: end;
}

.logo {
display: inline-block;
}

.logo img {
display: block;
}

/* Hamburger Menu */
.menu-Bar {
width: 30px;
height: 20px;
cursor: pointer;
position: absolute;
right: 15px;
top: 0;
bottom: 0px;
margin: auto;
z-index: 22;
display: none;
}

.menu-Bar span {
display: block;
height: 4px;
width: 100%;
background: var(--primary);
position: absolute;
transition: 0.6s all;
border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
top: 0;
}

.menu-Bar span:nth-child(2) {
top: 8px;
transform-origin: left;
}

.menu-Bar span:nth-child(3) {
top: 16px;
}

.menu-Bar.open span:nth-child(1) {
transform: rotate(45deg);
top: 12px;
transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
width: 0;
opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
transform: rotate(-45deg);
top: 12px;
transform-origin: right-center;
}

/* Menu Css */
.menu {
font-size: 0px;
display: inline-block;
vertical-align: middle;
}

.menu-callnow {
color: var(--primary) !important;
background: transparent;
}

.menu-callnow i {
color: var(--dark) !important;
line-height: 2;
}

.menu>li {
display: inline-block;
vertical-align: middle;
padding: 0 0 0 20px;
line-height: normal;
}

.menu>li>a {
display: block;
font-family: var(--font-body);
font-weight: 400;
font-size: 14px;
line-height: 25px;
letter-spacing: 0;
color: var(--white);
display: inline-block;
text-decoration: none;
position: relative;
}

.menu>li>a::after {
content: '';
display: block;
width: 0;
height: 2px;
background: var(--primary);
transition: width .3s;
}

.menu>li>a:hover::after {
width: 100%;
}

.btn-header {
background: var(--primary);
color: white !important;
padding: 15px 20px;
border-radius: 8px;
font-weight: 400 !important;
}

.btn-header:hover {
transform: scale(1.03);
}

.menu>li :hover>a,
.menu>li.active>a {
color: #e5e5e5;
}

@keyframes scale-display {
0% {
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}

100% {
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
}

@keyframes scale-display--reversed {
0% {
display: inline-flex;
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}

99% {
display: inline-flex;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}

100% {
display: none;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
}

@keyframes btotreverse {
0% {
top: 75px;
opacity: 1;
}

100% {
top: 115px;
opacity: 0;
}
}

@keyframes btot {
0% {
top: 115px;
opacity: 0;
}

100% {
top: 40px;
opacity: 1;
}
}

/* Main Banner CSS */

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}

.slick-slide {
margin: 0 8px;
}

.slick-dots {
padding: 50px 0 0;
text-align: center;
}

.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}

.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}

.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

span.count {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.counter span.text-white {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.form-select,
.form-select:focus {
background: transparent;
border: 1px solid #626262;
border-radius: 24px;
padding: 8px 34px 8px 29px;
color: #ddd;
font-size: 13px;
margin-bottom: 18px;
color: var(--bg-light);
box-shadow: none;
}

.slick-center button.slick-prev.slick-arrow {
position: absolute;
top: 96%;
left: 50%;
font-size: 0px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
z-index: 0;
}

.slick-center button.slick-prev.slick-arrow::before {
content: "\f177";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow {
position: absolute;
top: 92%;
right: 4%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 2;
}

.slick-center button.slick-next.slick-arrow {
position: absolute;
top: 96%;
right: 46%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 0;
}

.slick-center button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

/* .slider-for img{
width: 100%;
object-fit: cover;
object-position: center;
height: 454px;
margin-bottom: 16px;
}

.slider-nav img{
height: 174px;
width: 100%;
object-fit: cover;
object-position: center;
} */

.slick-center img {
width: 100%;
height: 500px;
}

.slick-center .slick-list.draggable {
padding: 0 24% 0 !important;
}

.slick-center .slick-slide {
margin: 0 70px;
}

.slick-center .slick-current img {
position: relative;
top: -41px;
}

.sliderDiv {
background-size: cover;
height: 1200px;
width: 100%;
background-repeat: no-repeat;
}

.socail-icons {
display: flex;
}

ul.socail-icons li i {
color: #fff;
font-size: 18px;
font-weight: 300;

}

ul.socail-icons li {
margin-right: 10px;
}

a.logo {
font-size: 30px;
color: var(--white);
font-family: var(--font-heading);
}

/* inner pages */

.inner-banner {display: flex;justify-content: center;padding-top: 230px;height: 700px !important;/* display: flex; */align-items: center;background-size: cover !important;background-repeat: no-repeat !important;background-position: center !important;position: relative;z-index: 1;}

.inner-banner2 {
height: 530px !important;
padding-top: 30px !important;
}

.inner-banner .content h1 {}

/* inner pages */

.footer-border {
height: 1px;
margin: 61.5px 83px 29px 177px;
background-color: rgba(255, 255, 255, 0.1);
margin-top: 60px;
}

ul.footer-social-icons {
display: flex;
margin-top: 20px;
}

ul.footer-social li a {
font-size: 16px;
line-height: 1.5;
text-align: left;
color: var(--white);
margin-bottom: 15px;
}

ul.footer-social li a i {
color: var(--primary);
margin-right: 17px !important;
}

ul.footer-social li a:hover {
color: var(--primary);
}

ul.footer-social-icons li {
margin-right: 12px;
}

ul.footer-social-icons li a {
color: var(--white);
background-color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
height: 38px;
width: 38px;
border-radius: 50%;
}

ul.footer-social-icons li a i {
font-size: 22px;
}

.menu-Bar a.logo {
font-size: 45px;
font-weight: 600;
font-stretch: normal;
font-style: normal;
line-height: 1.31;
letter-spacing: normal;
text-align: left;
color: #1dd3b0;
}

.menu>li>a:hover {
color: var(--white);
}

ul.breadcrumb-menu {
display: block;
text-transform: uppercase;
}

ul.breadcrumb-menu li {
display: inline-block;
vertical-align: middle;
position: relative;
color: var(--primary);
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

ul.breadcrumb-menu li a {
color: var(--dark-light);
}

ul.breadcrumb-menu li+li {
margin-left: 0px;
}

ul#counter {
display: flex;
align-items: center;
gap: 7rem;
/* padding: 24px 36px; */
/* border-radius: 8px; */
/* box-shadow: 0 10px 33px 0 rgba(130, 130, 130, 0.2); */
/* background-color: #222; */
/* margin-top: -112px;*/
}

.counter-wrapper .counter {
display: flex;
align-items: center;
gap: 20px;
}

.counter-wrapper .counter span.count {
font-weight: 700;
font-size: 45px;
color: #000;
}

ul#counter li .counter>div {
font-weight: 600;
line-height: 1;
font-size: 38px;
color: #fff;
/* padding-bottom: 10px; */
flex-shrink: 0;
}

ul#counter li {
background-repeat: no-repeat;
background-position: center;
width: 100%;
text-align: center;
line-height: 28px;
display: flex;
align-items: center;
justify-content: center;
}

ul#counter li .counter span.text {
font-family: var(--font-body);
font-size: 14px;
line-height: 2;
letter-spacing: normal;
text-align: left;
color: var(--white);
font-weight: normal;
}

ul#counter li:nth-child(1) .counter>div {
color: #ec4e52;
}

ul#counter li:nth-child(2) .counter>div {
color: #ebd142;
}

ul#counter li:nth-child(3) .counter>div {
color: #62a488;
}

.counter span.text-dark {
font-weight: 600;
font-size: 30px;
}

/* ------- */

.index-slider-news button.slick-prev.slick-arrow {
position: absolute;
top: 23%;
left: -68px;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
z-index: 2;
line-height: 0;
border-radius: 50%;
}

.index-slider-news button.slick-prev.slick-arrow::before {
content: "\f104";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.index-slider-news button.slick-next.slick-arrow {
position: absolute;
top: 23%;
right: -70px;
border: none;
background-color: transparent;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
background-color: transparent;
line-height: 0;
border-radius: 50%;
z-index: 2;
}

.index-slider-news button.slick-next.slick-arrow::before {
content: "\f105";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.form-control {
border: 1px solid #D2D2D2;
margin-bottom: 20px;
border-radius: 0;
height: 35px;
}

/* Accordian */

.accordion-list {
position: relative;
}

.accordion-list li {
padding: 0px 0px 22px 2px;
cursor: pointer;
width: 100%;
margin: 0 auto;
border-bottom: 0;
background: white;
box-shadow: none;
border-radius: 0px;
margin-bottom: 0rem;
}

ul.accordion-list li span {
display: flex;
position: relative;
}

.accordion-list li h3 {
color: var(--secondary);
display: flex;
align-items: center;
font-size: 16px;
font-weight: 700;
line-height: 30px;
margin-right: 14px;
}

.accordion-list li.active h3 {
color: var(--primary);
font-size: 20px;

}

ul.accordion-list li h3:after {
content: "\f078";
font-family: "Font Awesome 5 Pro";
position: absolute;
right: 0;
right: 0;
color: var(--secondary);
transition: all 0.3s ease-in-out;
font-size: 14px;
font-weight: 900;
top: 0;
}

.accordion-list li.active h4::after {
color: #9CA3AF;
content: "\f077";
}

ul.accordion-list li.active h3:after {
content: "\f077";
color: var(--primary);
}

.answer p {
margin-top: 16px;
color: #555555;
font-size: 16px;
font-weight: 400;
line-height: 30px;
}

/* Accordian */

/* Subscription */

.subscribe {
/* border: solid 1px #ffffff; */
height: 46px;
margin-top: 18px;
border-radius: 0;
/* position: relative; */
/*
overflow: hidden; */
display: flex;
gap: 20px;
}

.subscribe button.btn-subscribe {
text-transform: uppercase;
display: inline-block;
height: 40px;
border-radius: 0;
border: none;
background: transparent;
padding: 0 0;
font-size: 13px;
font-weight: 600;
line-height: 1.23;
text-align: center;
color: var(--white);
min-width: 110px;
border-bottom: 1px solid;
}

.subscribe button.btn-subscribe:hover {
letter-spacing: 1px;
}

.subscribe input.form-control {
padding: 8px 13px;
height: 100%;
margin: 0;
display: inline-block;
background-color:
transparent;
border: solid 1px #ffffff;
color: #fff;
font-size: 15px;
}

/* Subscription */

.sec-pad {
padding-top: 100px;
padding-bottom: 100px;
}

/* topbar */

.top-bar {
padding: 15px 0;
background: var(--primary);
}

.top-social-icons {
display: flex;
justify-content: end;
gap: 20px;
}

.top-contact-info {
display: flex;
gap: 22px;
}

.top-contact-info li {
display: flex;
gap: 10px;
align-items: baseline;
}

.top-contact-info li a {
color: var(--white);
}

.top-social-icons li a i {
color: var(--white);
}

/* topbar */

/* contact page */

.contactIconBg li {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.contactIconBg .icon {
width: 50px;
height: 50px;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--white);
background-color: var(--primary);
}

/* contact page */

.related-slider span.arr-left {
top: 35%;
position: absolute;
left: -2%;
font-size: 26px;
color: var(--secondary);
cursor: pointer;
}

.related-slider span.arr-right {
top: 35%;
position: absolute;
right: -2%;
font-size: 26px;
color: var(--secondary);
cursor: pointer;
}

footer {
background: #B1AA7E;
position: relative;
}

footer .border-top {
border-top: 1px solid #808080 !important;
}

.f-logo {
font-size: 30px;
text-align: left;
color: var(--white);
font-family: var(--font-heading);
line-height: normal;
}

.f-logo:hover {
color: var(--white);
}

.f-logo-content {
margin-top: 7px;
font-size: 16px;
font-weight: 400;
line-height: 33px;
letter-spacing: 0.5px;
color: var(--white);
}

.f-menu {
margin-top: 0;
display: flex;
gap: 24px;
justify-content: end;
}

.f-menu .f-icon-box {
display: flex;
align-items: baseline;
gap: 20px;
margin-bottom: 10px;
}

.f-menu .f-icon-box a,
.f-menu .f-icon-box p {
color: var(--white);
}

.f-menu .f-icon-box i {
color: var(--white);
}

ul.f-menu li a {
color: var(--white);
font-size: 14px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0.5px;
margin-bottom: 14px;
}

ul.f-menu li a:hover {
color: var(--primary);
}

.footer-content {
padding-top: 120px;
padding-bottom: 120px;
}

footer h6 {
font-family: var(--font-heading);
color: var(--white);
position: relative;
font-size: 22px;
font-weight: 700;
line-height: 24px;
}

.copyright {
padding-top: 45px;
padding-bottom: 32px;
background: #726C55;
position: relative;
overflow: hidden;
}

.copyright p {
font-family: var(--font-body);
font-size: 16px;
line-height: 28px;
letter-spacing: normal;
font-weight: 400;
}

.mainBanner {
height: 906px;
width: 100%;
display: flex;
align-items: center;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
position: relative;
z-index: 1;
overflow: hidden;
}

.shapes {
position: relative;
}

.mainBanner::after {
position: absolute;
content: '';
background-image: url(../images/hero-afr.png);
width: 204px;
height: 477px;
left: 0;
bottom: -3px;
z-index: 3;
-webkit-animation: introducingImg 1.5s infinite alternate;
animation: introducingImg 1.5s infinite alternate;
}

.mainBanner::before {
position: absolute;
content: '';
background-image: url(../images/hero-bfr.png);
width: 204px;
height: 477px;
right: -38px;
top: 56px;
z-index: 3;
background-repeat: no-repeat;
background-size: contain;
-webkit-animation: introducingImg 1.5s infinite alternate;
animation: introducingImg 1.5s infinite alternate;
}

@keyframes introducingImg {
0% {
transform: translateY(0);
}

100% {
transform: translateY(-15px);
}
}

a.btn-login {
font-weight: 700 !important;
text-decoration: underline !important;
}

a.btn-login:hover {
text-decoration: none !important;
}

.topSearch {
position: relative;
}

.topSearch span {
position: absolute;
top: 0;
right: 13px;
bottom: 0;
display: flex;
align-items: center;
}

.topSearch span input[type] {
font-size: 0;
cursor: pointer;
}

.topSearch span i {
position: absolute;
right: 1px;
top: 0;
bottom: 0;
display: flex;
align-items: center;
z-index: 3;
cursor: pointer;
font-size: 18px;
color: var(--white);
}

.topSearch input.form-control {
background: transparent;
height: 47px;
margin-bottom: 0;
min-width: 300px;
color: #fff;
font-size: 14px;
padding-right: 40px;
}

.topSearch input.form-control::placeholder {
font-weight: 300;
font-size: 14px;
line-height: 25px;
letter-spacing: 0;
color: var(--white);
}

.topSearch span input {
background: transparent;
border: 0;
}

.topWrap {
display: flex;
justify-content: end;
align-items: baseline;
}

.hero-content span.top-title {
font-family: var(--font-heading);
font-weight: 300;
font-size: 63.68px;
line-height: 118.22px;
letter-spacing: 0;
text-align: center;
text-transform: uppercase;
}

.hero-content p {
max-width: 610px;
margin: 0 auto;
padding: 25px 0 47px;
}

.hero-content .btn-primary:hover {
background-color: var(--white);
color: var(--primary);
border: 1px solid var(--white);
}

.heroBannertrans {
position: relative;
z-index: 1;
overflow: hidden;
}

.heroBannertrans::after {
position: absolute;
content: '';
background-image: url(../images/hero-bg.png);
height: 100%;
width: 100%;
left: 0;
top: 0;
animation: zoom 25s infinite ease-in-out;
z-index: -1;
}

@keyframes zoom {
0% {
transform: scale(1);
}

50% {
transform: scale(1.1);
}

100% {
transform: scale(1);
}
}

span.top-title {
color: #CBA052;
font-family: 'National';
font-weight: 350;
font-size: 18px;
line-height: 112.99%;
letter-spacing: 0px;
text-transform: uppercase;
}

section.about {
padding-top: 185px;
}

section.about .content p {
font-family: 'Euclid Square';
font-weight: 400;
font-size: 18px;
line-height: 29px;
letter-spacing: 0px;
margin: 20px 0 0;
max-width: 650px;
}

section.about .content a.btn-more {
margin-top: 20px;
color: #CBA052;
font-family: 'Euclid Square';
font-weight: 600;
font-size: 16px;
line-height: 32px;
letter-spacing: 0px;
text-align: center;
text-decoration: underline;
}

section.about .content a.btn-more:hover {
text-decoration: none;
}

.abt-img {
position: relative;
padding-left: 20px;
}

.abt-img2 {
position: absolute;
top: -183px;
left: -81px;
}

section.listings {
background: #726C55;
padding-top: 50px;
padding-bottom: 50px;
}

section.listings .top-sec {
border-top: 1px solid hwb(0deg 100% 0% / 20%);
padding-top: 30px;
padding-bottom: 40px;
}

.con-pad {
padding-left: 25px;
padding-right: 25px;
}

.listingImg {
position: relative;
overflow: hidden;
}

.listingImg img {
display: block;
}

.listingImg a.listingTxt {position: absolute;bottom: 0px;background: #CBA052;color: #fff;min-width: 527px;font-family: var(--font-heading);font-weight: 300;font-size: 35px;line-height: 117.5px;/* letter-spacing: 0px; *//* vertical-align: middle; */text-transform: uppercase;text-align: center;left: 0;/* transform: scaleY(0); *//* transition: all .5s ease-in-out; */}

.listingImg a.listingTxt i {
font-size: 27px;
margin-left: 50px;
}

/*.listingImg:hover a.listingTxt {*/
/*transform: translateY(10px);*/
/*}*/

/*.listingImg a.listingTxt:hover {*/
/*letter-spacing: 1.2px;*/
/*}*/

/*.listingImg img {*/
/*transform: scale(1);*/
/*transition: all .8s ease;*/
/*}*/

/*.listingImg:hover img {*/
/*transform: scale(1.14);*/
/*filter: brightness(0.8);*/
/*}*/



section.real .top-sec h3 {
max-width: 520px;
}

section.real .top-sec p {
max-width: 560px;
margin-left: auto;
color: #000F28;
font-family: 'Euclid Square';
font-weight: 400;
font-size: 18px;
line-height: 29px;
letter-spacing: 0px;
}

a.btn-more {
color: #002337;
font-family: var(--font-heading);
font-weight: 400;
font-size: 16px;
line-height: 16px;
letter-spacing: 0px;
text-align: center;
text-transform: uppercase;
}

section.real .top-sec a {
margin-top: 58px;
margin-left: 74px;
}

section.real .bottom-sec {
padding-top: 55px;
}

.real-card {
background: #CBA052;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
border-radius: 4px;
padding: 24px;
}

.real-card h5 {
color: #FFFFFF;
font-weight: 700;
font-size: 65px;
line-height: 72px;
letter-spacing: 2px;
}

.real-card p {
margin-top: 4px;
font-weight: 400;
font-size: 18px;
line-height: 25.2px;
letter-spacing: 0px;
text-align: center;
font-family: var(--font-heading);
}

.testimonialSlide span.arr-left {
top: 25%;
position: absolute;
left: -12%;
font-size: 28px;
color: var(--white);
cursor: pointer;
}

.testimonialSlide span.arr-right {
top: 25%;
position: absolute;
right: -12%;
font-size: 28px;
color: var(--white);
cursor: pointer;
}

section.testimonial {
background-size: cover !important;
background-repeat: no-repeat;
}

section.testimonial .top {
padding-bottom: 40px;
}

.testiSlide p {
font-family: var(--font-heading);
font-weight: 400;
font-style: italic;
font-size: 40px;
line-height: 60px;
letter-spacing: -2px;
text-align: center;
color: #fff;
max-width: 1160px;
margin: auto;
}

.testiSlide .user {
display: flex;
align-items: center;
gap: 30px;
justify-content: center;
margin: 50px 0 0;
}

.testiSlide .user span {
color: #FFFFFF;
font-family: var(--font-heading);
font-weight: 700;
font-size: 22px;
line-height: 55px;
letter-spacing: 0;
text-align: center;
}

.con-pad2 {
padding-left: 122px;
padding-right: 122px;
}

.choose-card {
background: #CBA052;
padding: 55px 55px 55px 100px;
border-radius: 5px;
}

.choose-card h2 {
color: #fff;
font-size: 65px;
}

.choose-card>p {
color: #fff;
max-width: 600px;
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: 0px;
/* margin: 0 0 40px; */
}

.choose-card .bottomTxt h6 {
color: #fff;
font-weight: 700;
font-size: 25px;
line-height: 31.2px;
letter-spacing: 0px;
text-transform: uppercase;
margin: 27px 0px 5px 0;
}

.choose-card .bottomTxt p {
font-family: var(--font-heading);
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: 0px;
color: #fff;
max-width: 500px;
}

section.choose {
position: relative;
padding-top: 145px;
padding-bottom: 145px;
}

section.choose .chooseImg {
position: absolute;
top: 0;
bottom: 0;
z-index: -1;
right: 0;
}

section.get-in {
background: #726C55;
position: relative;
padding-bottom: 200px;
}

section.get-in::after {
position: absolute;
content: '';
right: 2%;
bottom: -190px;
background-image:
url(/assets/images/lake-bfr.png);
height: 414px;
width: 400px;
background-size: contain;
background-repeat: no-repeat;
}

section.get-in .top-sec h2 {
font-size: 63px;
}

.conDesc h6 {
color: #fff;
text-transform: uppercase;
font-weight: 400;
font-size: 30px;
line-height: 47px;
letter-spacing: 0px;
}

.conDesc p {
color: #FFFFFF;
font-family: var(--font-heading);
font-weight: 300;
font-size: 16px;
line-height: 25px;
letter-spacing: 0px;
}

.conDesc {
margin: 28px 0 0;
}

section.get-in .content ul {
display: flex;
gap: 15px;
margin: 22px 0 0;
}

section.get-in .content ul li a {
font-size: 18px;
color: #fff;
}

.lakeSlide {
padding-top: 35px;
margin-left: 16px;
}

.lakeSlideImg img {
width: 100%;
}

.lakeSlide span.arr-left,
.lakeSlide span.arr-right {
height: 55px;
width: 55px;
border: 1px solid var(--white);
display: flex;
justify-content: center;
align-items: center;
bottom: -22%;
position: absolute;
left: 74%;
font-size: 20px;
color: var(--white);
cursor: pointer;
border-radius: 50%;
z-index: 3;
}

.lakeSlide span.arr-left:hover,
.lakeSlide span.arr-right:hover {
background-color: var(--white);
color: var(--primary);
}

.lakeSlide span.arr-left {
left: 64%;
}

.lakeSlide .slick-list.draggable {
padding-right: 30% !important;
}

.lakeSlide span.arr-right {
/* right: 27% !important; */
}

.subscribe input.form-control::placeholder {
color: #fff;
}

.subscribe input.form-control::placeholder {
font-weight: 300;
font-size: 14px;
line-height: 25px;
letter-spacing: 0px;
}

.subscribe button.btn-subscribe i {
margin-left: 8px;
}

.checkWrap {
margin: 20px 0 0;
}

.checkWrap label {
color: #FFFFFF99;
font-weight: 300;
font-size: 13px;
line-height: 24px;
letter-spacing: 0px;
display: flex;
gap: 10px;
align-items: center;
}

.checkWrap input[type="checkbox"] {
background: #fff;
border: 1px solid #fff;
outline: 0;
}

.checkWrap input[type="checkbox"] {
-webkit-appearance: none;
appearance: none;
background-color: #fff;
margin: 0;
font: inherit;
color: currentColor;
width: 1em;
height: 1em;
border: 0.15em solid #fff;
border-radius: 0.15em;
transform: translateY(-0.075em);
display: grid;
place-content: center;
}

.checkWrap input[type="checkbox"]::before {
content: "";
width: 0.65em;
height: 0.65em;
transform: scale(0);
transition: 120ms transform ease-in-out;
box-shadow: inset 1em 1em #000;
}

.checkWrap input[type="checkbox"]:checked::before {
transform: scale(1);
transform-origin: bottom left;
clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

ul.f-menu li.last a {
font-weight: 600 !important;
text-decoration: underline;
}

.copyright .copyBfr {
position: absolute;
top: -127px;
bottom: 6px;
display: flex;
transform: rotate(5deg);
}

section.get-in .content .logo {
position:
relative;
margin: 110px 0 -140px 0;
}

.mainBanner video#myVideo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
pointer-events: none;
z-index: -1;
}

.mainBanner .overlay-bg {
height: 100%;
width: 100%;
background: black;
position: absolute;
opacity: .3;
z-index: -1;
transition: all 1s ease;
top: 0px;
left: 0;
}

.mainBannerSlide .slick-dots {
padding-top: 0;
margin-top: -45px;
position: relative;
z-index: 1;
text-align: center;
}

.mainBannerSlide .slick-dots li.slick-active button {
background: #fff;
z-index: 10;
}

.mainBannerSlide .slick-dots li button {
width: 12px;
height: 12px;
border-radius: 50%;
background: transparent;
border: 2px solid #FFF7EA;
}

.mainBannerSlide .slick-dots li.slick-active button {
background: var(--primary);
color: #FFF7EA;
width: 12px;
height: 12px;
border: 2px solid var(--primary);
opacity: 1;
}

.inner-banner .content h1 {
font-family: var(--font-heading);
font-weight: 500;
font-size: 93.33px;
line-height: 125.33px;
text-transform: none;
}

.inner-banner .content p {
font-weight: 400;
font-size: 32px;
line-height: 53.33px;
color: #fff;
text-align: center;
}

.meet-card {
border: 1.33px solid #E3E3E3;
position: relative;
margin-bottom: 220px;
}

.meet-card .desc {
text-align: center;
}

.meet-card .desc ul {display: flex;justify-content: center;gap: 20px;padding-bottom: 65px;}

.meet-card .desc ul li a {
color: #CBA052;
font-size: 26px;
}

.meet-card .desc p {
padding: 40px 0 23px;
color: #CBA052;
font-weight: 400;
font-size: 32px;
line-height: 100%;
}

.meet-card .desc span {
margin-bottom: 40px;
color: #8C959F;
font-weight: 500;
font-size: 24px;
line-height: 100%;
letter-spacing: 0px;
}

.meet-card .meetImg {
max-width: 330px;
margin: auto;
margin-top: -160px;
}

section.meet {
padding-top: 260px;
padding-bottom: 0;
}

.findSearch {
position: relative;
}

.findSearch span {
position: absolute;
top: 0;
left: 25px;
bottom: 0;
display: flex;
align-items: center;
}

.findSearch span input[type] {
font-size: 0;
cursor: pointer;
}

.findSearch span i {
position: absolute;
left: -2px;
top: 0;
bottom: 0;
display: flex;
align-items: center;
z-index: 3;
cursor: pointer;
font-size: 22px;
color: var(--primary);
}

.findSearch input.form-control {
background: transparent;
height: 80px;
margin-bottom: 0;
min-width: 360px;
font-size: 19px;
border: 1.33px solid #E3E3E3;
padding-left: 80px;
color: #000;
}

.findSearch input.form-control::placeholder {
font-weight: 300;
font-size: 18px;
line-height: 25px;
letter-spacing: 0;
color: #8C959F;
}

.findSearch span input {
background: transparent;
border: 0;
}

section.find .left-card {
padding: 40px;
border: 1.33px solid #E3E3E3;
}

section.find .left-card h3 {
font-weight: 600;
font-size: 29.33px;
line-height: 100%;
text-transform: capitalize;
color: #000000;
padding-bottom: 50px;
}

section.find .left-card select.form-control {
height: 80px;
border: 1.33px solid #E3E3E3;
font-weight: 400;
font-size: 21.33px;
line-height: 100%;
color: #8C959F;
appearance: auto;
padding: 24px;
}

section.find .left-card select.form-control option {
font-size: 16px;
}

section.find .right-card select.form-control {
height: 80px;
border: 1.33px solid #E3E3E3;
color: #8C959F;
font-weight: 400;
font-size: 21.33px;
line-height: 100%;
appearance: auto;
}

section.find .right-card select.form-control option {
font-size: 16px;
}

.listing-card {
margin-bottom: 70px;
}

.listing-card .desc {
padding: 25px;
}

.listing-card .desc p.p1 {
color: #2C3C4D;
font-family: var(--font-heading);
font-weight: 500;
font-size: 32px;
line-height: 100%;
}

.listing-card .desc ul {
display: inline-flex;
gap: 20px;
padding: 35px 0 38px;
}

.listing-card .desc ul li {
color: #8C959F;
font-weight: 400;
font-size: 24px;
line-height: 100%;
}

.listing-card .desc .bottom {
display: flex;
justify-content: space-between;
}

.listing-card .desc .bottom p.p2 {
color: #CBA052;
font-weight: 400;
font-size: 33.33px;
line-height: 100%;
}

.listing-card .desc .bottom a {
color: #2C3C4D;
font-weight: 600;
font-size: 24px;
line-height: 100%;
}

/*.listing-card:hover .listingImg img {*/
/*transform: scale(1.15);*/
/*}*/

section.get-in2 {
padding: 50px 0 !important;
}

ul.socail-icons {
display: flex;
justify-content: center;
gap: 45px;
}

ul.socail-icons li a {
color: #CBA052;
font-size: 26px;
}

ul.tab-list {
display: flex;
gap: 18px;
padding-top: 0px;
border-bottom: 0px solid;
text-transform: uppercase;
margin-bottom: 42px;
justify-content: center;
}

ul.tab-list li.active {
background-color: var(--primary);
color: var(--white);
border: 1px solid var(--primary);
}

ul.tab-list li {
padding: 12px 24px;
color: #737373;
cursor: pointer;
font-family: var(--font-para);
text-transform: capitalize;
border: 1.33px solid #E3E3E3;
font-family: var(--font-heading);
font-weight: 300;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
}

ul.tab-list li:hover {
color: #ffffff;
border-bottom: 1px solid;
background: var(--primary);
}

.box {
padding-top: 30px;
padding-left: 50px;

}

.box p {
font-size: 18px;
font-weight: normal;
line-height: 1.46;
letter-spacing: normal;
text-align: left;
color: #737373;
}

.headerInner .main-header {
background-color: var(--primary);
position: static;
margin-bottom: 90px;
}

.review-card {
max-width: 450px;
}

.review-card span {
color: #8C959F;
font-weight: 400;
font-size: 18.33px;
line-height: 32px;
margin-top: 4px;
}

.review-card .top {
display: flex;
align-items: center;
justify-content: space-between;
}

.review-card .top ul.rating {
display: flex;
gap: 5px;
justify-content: end;
}

.review-card .top ul.rating li a {
color: #FFB648;
}

.review-card .txt p {
color: #2C3C4D;
font-family: var(--font-heading);
font-weight: 500;
font-size: 24px;
line-height: 32px;
}

.review-card .txt img {
margin-bottom: -92px;
}

.review-card .txt {
padding: 20px 0 21px;
}

section.residents .top-sec h2 {
color: #2C3C4D;
font-family: var(--font-heading);
font-weight: 500;
font-size: 53.33px;
line-height: 74.67px;
}

section.residents .top-sec p {
color: #888888;
font-weight: 400;
font-size: 26.67px;
line-height: 40px;
padding-bottom: 90px;
padding-top: 20px;
}

.reviewSlide .slick-dots {
padding-top: 0;
margin-top: -45px;
position: relative;
z-index: 1;
text-align: end;
padding-right: 35px;
}

.reviewSlide .slick-dots li.slick-active button {
background: #fff;
z-index: 10;
}

.reviewSlide .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background: transparent;
border: 2px solid #FFF7EA;
}

.reviewSlide .slick-dots li.slick-active button {
background: #FFF7EA;
color: #FFF7EA;
width: 10px;
height: 10px;
border: 2px solid #FFF7EA;
opacity: 1;
}

.listing-card .listingImg img {width: 100%;height: 400px;}

ul.productDetailsDescTop {
display: flex;
gap: 10px;
align-items: end;
}

ul.productDetailsDescTop li {
color: #CBA052;
font-weight: 400;
font-size: 21.33px;
line-height: 100%;
}

section.product-details {}

section.product-details h4 {
padding: 16px 0 23px;
color: #000000;
font-weight: 300;
font-size: 48px;
line-height: 100%;
}

section.product-details p {
color: #8C959F;
font-weight: 400;
font-size: 20.67px;
line-height: 100%;
}

.price {
display: flex;
gap: 22px;
margin: 50px 0 32px;
align-items: center;
}

.price p.p1 {
color: #CBA052;
font-weight: 500;
font-size: 58.67px;
line-height: 100%;
}

.price p.p2 {
color: #8C959F;
font-weight: 400;
font-size: 26.67px;
line-height: 100%;
text-decoration: line-through;
}

.price p.p3 {
background: #FFEBDC;
font-weight: 400;
font-size: 21.33px;
line-height: normal;
padding: 6px 30px;
color: var(--primary);
}

p.info {
font-weight: 400;
font-size: 21.33px;
line-height: 100%;
}

.productDetailsDesc .btns {
margin: 20px 0 30px;
}

.productDetailsDesc .btns a {
border: 1.33px solid #E3E3E3;
font-weight: 400;
font-size: 18px;
line-height: 100%;
color: #8C959F;
padding: 18px 26px;
margin-right: 6px;
}

ul.productDetailsDescTop span {
font-size: 30px;
line-height: normal;
color: var(--primary);
}

.productDetailsDesc {
padding-left: 50px;
}

.agentDesc {
margin-top: 8rem;
}

.agentDesc h5 {
color: #CBA052;
font-weight: 700;
font-size: 53.33px;
line-height: 100%;
}

.agentDesc p {
padding: 22px 0 24px;
color: #8C959F;
font-weight: 400;
font-size: 28px;
line-height: 100%;
}

.ratingWrap {
display: flex;
align-items: center;
gap: 16px;
}

.ratingWrap p {
font-size: 20px;
}

.ratingWrap ul {
display: flex;
gap: 3px;
}

.agentCon {
display: flex;
gap: 12px;
}

.agentCon p {
font-size: 20px;
}

ul.social-icons {
display: flex;
gap: 14px;
}

ul.social-icons li a {
font-size: 22px;
color: #cba052;
}

.ratingWrap ul li a {
color: #cba052;
}

.abtMeWrap {
border: 1.33px solid #E3E3E3;
padding: 60px;
}

.abtMeWrap p {
font-size: 22px;
margin-bottom: 32px;
}

.abtMeWrap span {
color: #8C959F;
font-weight: 400;
font-size: 20.67px;
line-height: 33px;
}

.unitBtn p {
margin: 30px 0 0;
}

.unitBtn span {
display: block;
margin: 10px 0 5px;
}

.unitBtn a {
border: 1.33px solid #E3E3E3;
color: #8C959F;
font-weight: 400;
font-size: 18px;
line-height: 100%;
padding: 14px 24px;
margin-right: 10px;
}

.unitBtn {
margin-bottom: 28px;
}

.map iframe {
width: 100%;
height: 800px;
}

section.tour .abtMeWrap .left p {
margin-bottom: 6px;
}

section.tour .abtMeWrap .left span {
font-size: 18px;
max-width: 400px;
line-height: 22px;
margin: 10px 0 34px;
}

.profile>p {
margin: 12px 0 0;
color: #CBA052;
}

.profile .agentCon p {
font-size: 18px;
color: #8C959F;
}

.tourForm .form-control {
height: 60px;
border: 1.33px solid #E3E3E3;
}

.tourForm .form-control::placeholder {
color: #8C959F;
font-weight: 400;
font-size: 15px;
line-height: 100%;
}

textarea.form-control {
height: 150px !important;
padding: 15px 10px;
}

.tourForm label {
color: #8C959F;
font-weight: 400;
font-size: 17px;
line-height: 100%;
margin: 10px 0 40px;
}

section.sec-1 .content h5 {
color: #000000;
font-weight: 600;
font-size: 37.26px;
line-height: 100%;
}

section.sec-1 .content {
border: 1px solid #E3E3E3;
padding: 40px;
margin-bottom: 40px;
}

section.sec-1 .content ul {
margin-top: 20px;
list-style: disc;
margin-left: 20px;
}

section.sec-1 .content ul li a {
color: #8C959F;
 
text-decoration: underline;
}

section.sec-1 .content ul li::marker {
color: #8c959f;
}

section.sec-1 .content ul li {
line-height: 34px;
}

section.conSec.tour h2{
font-size: 40px;
}


.listingImg.listingImg2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}