* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    --primary-font: "Gilda Display", serif;
    --secondry-font: "Forum", serif;
    --thm-black: #0B0B0B;
    --thm-light-block: #454545;
}
html{
    scroll-behavior: smooth;
}
.bg-dark{
    background-color: #16191D;
}
body {
    font-family: var(--secondry-font);
font-size: 18px;
line-height: 24px;
    background-color: #f0ece3;
   color: var(--thm-light-block);
        font-weight: 500;
}
a{
    color: inherit;
}

.about p{
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
}

.thm-btn {
    padding: 5px 25px;
    text-decoration: none;
    overflow: hidden;
    display: block;
    width: fit-content;
    position: relative;
    cursor: pointer;
    outline: none;
    border-color: transparent;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family:  var(--secondry-font);
}
/* pop up */
.pop-model{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100%;
    z-index: -99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    opacity: 0;
    transition: all 0.5s;
}
.pop-model.active{
    background-color: #0005;
    opacity: 1;
    z-index: 99999;
}
.pop-model .content-box{
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
    position: relative;
}
.pop-model .content-box .close-icon{
    height: fit-content;
    width: fit-content;
    background-color: #000;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}
.pop-model .content-box svg{
    width: 25px;
    min-width: 25px;
    height: 25px;
    user-select: none;
    display: block;
    fill: #fff;
}

/* sticky header */
.stick-header{
    transition: all 0.5s;
}
.stick-header.active{
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
}

img,
video,
svg {
    max-width: 100%;
}

.py-45 {
    padding-top: 45px;
    padding-bottom: 45px
}
.py-55 {
    padding-top: 55px;
    padding-bottom: 55px;
}
.pb-55 {
    padding-bottom: 55px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pt-45 {
    padding-top: 45px;
}

.thm-container,
.thm-container-fluid {
    padding: 0px 15px;
    width: 100%;
    display: block;
    margin: auto;
}

.thm-container {
    max-width: 1200px;
}

.text-center {
    text-align: center;
}

.thm-clr {
    color: #F4F0BE;
}

.thm-btn.dark {
    color: #fff;
    background-color: var(--thm-black);
}

.thm-btn.light {
    color: var(--thm-black);
}

.thm-btn.thmclr {
    color: #fff;
    background-color: #5e4a22;
}

.upper {
    text-transform: uppercase;
}

.border {
    border: 1px solid var(--thm-black);
}

.thm-btn span {
    position: relative;
    display: block;
    text-shadow: 0px 45px 0px;
    transition: all 0.5s;
}

.thm-btn:hover span {
    transform: translateY(-45px);
}

.thm-bg {
    background-color: #f4f0be;
}

.mxw-md {
    max-width: 920px;
    margin: auto;
    width: 100%;
}

.thm-title {
    font-size: 42px;
    line-height: 40px;
    font-weight: 600;
    font-family: Cormorant Garamond;
    color: var(--thm-black);
    text-transform: uppercase;
}

.mb-5 {
    margin-bottom: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-25 {
    margin-top: 25px;
}

.justify-center{
    justify-content: center;
}


.swiper {
    width: 100%;
    height: 100%;
}

/* header */
header .top-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px auto;
}
header .top-box a{
    display: block;
    width: fit-content;
    max-width:150px;
    padding: 10px;
}
header .top-box a img{
    display: block;
}
/* home */
.home .mainslider{
    position: relative;
}
.home .mainslider .arrow{
    position: absolute;
    z-index: 5;
    height: 40px;
    width: 40px;
    top: 0;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    top: 50%;
}
.home .mainslider .swiper-slide img{
display: block;
width: 100%;
}
.home .mainslider .arrow.left{
    left: 10px;
}
.home .mainslider .arrow.right{
    right: 10px;
}
.home .tab-content{
    background-color: #fff;
}
.home .tab-content .content{
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.home .tab-content .content .left,
.home .tab-content .content .right .icon-box{
display: flex;
flex-wrap: wrap;
align-items: center;
}
.home .tab-content .content .left .title,
.home .tab-content .content .left .text,
.home .tab-content .content .right .icon-box{
margin: 10px 20px;
}
.home .tab-content .content .left .title .head{
    font-size: 30px;
    line-height: 36px;
    font-family: Cormorant Garamond;
    color: var(--thm-black);
    text-transform: uppercase;
    font-weight: 600;
}

.home .left .title span{
    font-size: 16px;
    font-family: Cormorant Garamond;
    font-weight: 400;
    color: var(--thm-black);
}

.home .tab-content .content .center .text{
    font-size: 16px;
    line-height: 22px;
    font-family: var(--primary-font);
    font-weight: 400;
    color: var(--thm-black);
    text-align: center;
}

.home .tab-content .content .right .icon-box .icon{
    min-width: 40px;
    margin-right: 10px;
}
.home .tab-content .content .right .icon-box .icon img{
    display: block;
}
.home .tab-content .content .right .icon-box .review{
    font-family: EB Garamond;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: var(--thm-black);
}
.home .main-tab-list,
.home  ul.property-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style-type: none;
    margin: 10px auto;
}
.home .main-tab-list li,
.home  ul.property-list li{
    margin: 5px 10px;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s;
    user-select: none;
}
.home .main-tab-list li{
    font-size: 27px;
    font-weight: 600;
    font-family: Cormorant Garamond;
    line-height: 30px;
    color: var(--thm-black);
}

.home ul.property-list li{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
    line-height: 24px;
    text-transform: capitalize;
}

.home .main-tab-list li.active,
.home  ul.property-list li.active{
    border-bottom: 1px solid var(--thm-black);
}

.home .tab-content,
.home .sub-tab-content{
    display: none;
}
.home .tab-content.active,
.home .sub-tab-content.active{
    display: block;
}
/* member */
.member h4{
    font-weight: 500;
}
.member form {
    margin-bottom: 10px;
}
.member form .form-inputs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px auto auto;
}
.member .response-text{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.member .success{
    color: green;
}
.member .error{
    color: #ff0000;
}
.member input{
    padding: 5px 15px;
    display: block;
    font-size: 18px;
    max-width: 270px;
    width: 100%;
    height: 40px;
border-color: transparent;
}
.member .form-group{
    padding: 10px;
}
.member button{
    margin: 8px auto;
}
.text-decoration-none{
  text-decoration: none;
}
.scale {
    scale: 1;
    text-align: center;
    display: block;
    margin: auto;
    transition: all 0.5s;
    width: fit-content;
}
.scale:hover{
  scale: 1.1;
}
.min-head-font{
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}
.font-14{
    font-size: 14px;
}
.font-16{
    font-size: 16px;
}
.font-15{
    font-size: 15px;
}
.font-18{
    font-size: 18px;
}
.font-head{
    font-family: var(--secondry-font);
}
.font-second{
    font-family: var(--primary-font);
}
.clr-black-light{
        color: var(--thm-light-block);
}
.clr-black{
    color: var(--thm-black);
}
ul.steps-list{
    font-family: var(--primary-font);
    font-size: 16px;
    list-style-type: none;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
ul.steps-list li {
    width: fit-content;
    text-align: center;
    margin: 8px auto;
    position: relative;
    display: inline;
}
ul.steps-list li::before{
    content: '';
  height: 20px;
  width: 20px;
  display: inline-block;
background-image: url('../images/icons/dot.svg');
background-size: 6px;
background-repeat: no-repeat;
background-position: center;
position: relative;
top: 4px;
}
a.icon-btn{
    text-decoration: none;
    font-size: 18px;
    color: var(--thm-light-block);
    padding-right: 20px;
    position: relative;
    transition: all 0.5s;
}
a.icon-btn:hover{
text-decoration: underline;
}
a.icon-btn::after{
content: '';
height: 15px;
width: 15px;
display: inline-block;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
background-image: url('../images/icons/icon-btn.svg');
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.price-text {
    display: inline-flex;
    width: fit-content;
    position: relative;
    top: 8px;
    padding-left: 4px;
}
.price-text img{
    margin-right: 2px;
}
.vertical-top{
    vertical-align: top;
}
/*  */

.gallery .next-btn {
    right: 0;
}

.gallery .prev-btn {
    left: 0;
}

.gallery .next-btn,
.gallery .prev-btn {
    height: 35px;
    width: 35px;
 position: absolute;
 top:50%;
 transform: translateY(-50%);
 cursor: pointer;
 z-index: 99;
}
.swiper-pagination-bullet-active {
    background-color: #a59d67;
}
/* contact form */
.contact {
    background-color: #cfc792;
}
.contact form label {
    display: block;
    font-size: 18px;
    line-height: 28px;
}

.contact form textarea {

    min-width: 100%;
    min-height: 150px;
    max-width: 100%;

}

.contact form input,
.contact form select,
.contact form textarea {
    border-radius: 5px;
    font-weight: 400;
    margin: 6px auto 25px;
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 17px;
    text-transform: uppercase;
    border-color:transparent ;
    outline-color:transparent ;
    accent-color: #cfc792;
    color: var(--thm-black);

}
.contact form input::placeholder,
.contact form select::placeholder,
.contact form textarea::placeholder{
    color: #0005;
}
.contact form input:focus,
.contact form select:focus,
.contact form textarea:focus{
outline: 2px solid #0075ff;
}
.contact form input[type="checkbox"]{
  display: inline-block;
  width: fit-content;
  margin: 5px 15px 5px 0;
  height: 20px;
  width: 20px;
  min-width: 20px;
  accent-color: #5e4a22;
}
.contact form input:checked{
    border: 1px solid #5e4a22;
}
.contact form .checkbox-label{
    display: flex;
    margin-bottom: 25px;
    cursor: pointer;
}
.contact form button{
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
}
.contact form .error{
    color: #ff0000;
}
.g-recaptcha{
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}
.contact form .thm-col-2,
.contact form .thm-col-5,
.contact form .thm-col-6,
.contact form .thm-col-12{
position: relative;
}
.error-trigger{
    color: #ff0000;
    position: absolute;
    left: 15px;
    bottom: 0;
    font-size: 16px;
    font-weight: 500;
}
/* footer */
footer ul.social-links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
}
footer ul.social-links a{
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
margin: 5px;
}
footer ul.social-links a .img {
    margin-right: 8px;
}
footer ul.social-links a .img img{
display: block;
min-width: 24px;
width: 24px;
}
footer ul.social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
footer p{
    color: #fff;
    font-family: var(--secondry-font);
    opacity: 0.7;
}

/* pages */
.sm-head .thm-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}
h4{
    font-size: 22px;
    line-height: 30px;
}

.banner-sec{
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 30px 0px 45px;
}
.banner-sec .img{
    display: block;
    width: fit-content;
    margin: auto auto 30px auto;
    max-width: 200px;
}
.banner-sec h1{
    color: #fff;
    font-weight: 500;
    font-size:42px;
    line-height: 48px;
    margin: 70px auto;
}

.page-footer{
    --pg-footer: #876b33;
    background-color: var(--pg-footer);
    padding: 45px 0px 10px;
}
.page-footer .logo{
    max-width: 200px;
    width: 100%;
    display: block;
    margin: 20px auto;
}
.page-footer .contact-info,
.page-footer .social-links,
.page-footer .quick-links{
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px auto;
    width: 100%;
}
.page-footer .contact-info li a{
    background-color: #fff;
        color: var(--pg-footer);
}
.page-footer .social-links li a{
    color: #fff;
}
.page-footer .contact-info li a,
.page-footer .social-links li a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.page-footer .contact-info li a:hover .icon,
.page-footer .social-links li a:hover .icon{
    transform: rotate(360deg);
}
.page-footer .contact-info li a .icon{
    background-color: #fff;
        min-width: 30px;
}
.page-footer .social-links li a .icon img{
    min-width: 25px;
    width: 25px;
}
.page-footer .contact-info li a .icon,
.page-footer .social-links li a .icon{

    margin-right: 10px;
    transition: all 0.5s;

}
.page-footer .contact-info li a svg{
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: block;
    fill: var(--pg-footer);
}
.page-footer .social-links li a svg{
    fill: var(--pg-footer);
    width: 25px;
    min-width: 25px;
    height: 25px;
    display: block;
}
.page-footer .contact-info li a img,
.page-footer .social-links  li a img{
    display: block;
}
.page-footer .quick-links  li {
    padding: 10px;
}
.page-footer .quick-links  li a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.page-footer .quick-links  li a:hover{
    text-decoration: underline;
}
@media (min-width: 758.9px) {
.page-footer .contact-info {
    background: #fff;
    border-radius: 30px;
    width: fit-content;
}
}