@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Gilda Display", serif; */
/* font-family: "Montserrat", sans-serif; */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family:var(--montserratFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color:var(--paraColor);
  background-color:var(--whiteColor);
  overflow-x: hidden;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.6s;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

:root {
  --blackColor:#000;
  --whiteColor:#ffffff;
  --themeColor:#a1787e;
  --headingColor:#212121;
  --paraColor:#7e7e7e;
  --galidaFont:"Gilda Display", serif;
  --montserratFont: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:var(--galidaFont);
  line-height: 1;
  font-weight:700;
  margin-bottom: 20px;
  color:var(--headingColor);
}
h1,
.h1-title {
  font-size: 120px;
  line-height: 1.1;
}
h2,
.h2-title {
  font-size:45px;
  line-height:1.1;
}
h3,
.h3-title {
  font-size:25px;
}
.h3-medium{
  font-size:23px;
}
h4,
.h4-title {
  font-size:22px;
}
h5,
.h5-title {
  font-size: 20px;
}
h6,
.h6-title {
  font-size: 18px;
}
p {
  margin-bottom: 20px;
}
.white >*,.white-txt{
  color:var(--whiteColor);
}
p:last-child,
h1:last-child,
.h1-title:last-child,
h2:last-child,
.h2-title:last-child,
h3:last-child,
.h3-title:last-child,
h4:last-child,
.h4-title:last-child,
h5:last-child,
.h5-title:last-child,
h6:last-child,
.h6-title:last-child {
  margin: 0;
}
figure {
  margin: 0 0 0;
}
.sec-head {
  margin-bottom: 35px;
}

.cmn-gap {
  padding: 60px 0 80px;
}
.cmn-btn{
  color: var(--whiteColor);
  cursor: pointer;
  display: inline-flex;
  align-items:center;
  font-size: 18px;
  font-weight:400;
  padding: 14px 29.2px;
  text-align: center;
  border:2px solid #B39370;
  background:var(--CmnBtnLinear);
  border-radius:50px;
  z-index:1;
  position:relative;
  overflow:hidden;
  transition: all 0.4s ease 0s;
}
.cmn-btn:hover {
  color: var(--blackColor);
  border-color:var(--headingColor);
  background-color:var(--whiteColor);
}
input,
textarea,
select {
  font-weight: 400;
  outline: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px !important;
  background-image: url(../images/select-arw.png);
  background-repeat: no-repeat;
  background-position: 94% center;
}
input[type="text"],
input[type="email"],
textarea{
  width:100%;
  height:55px;
  border:1px solid rgba(0,0,0,0.2);
  padding:10px;
  border-radius:5px;
}
textarea{
  height:150px;
  resize:none;
}
input[type="submit"]{
  border:0;
  padding:15px 45px;
  background-color:#B39370;
  color:var(--whiteColor);
  font-size:18px;
  transition:0.4s;
  border-radius:50px;
}
input[type="submit"]:hover{
  background-color:var(--blackColor);
}

.close_menu {
  display: none;
}
.hamberger {
  display: none;
}

/*==== Header Start ====*/
.main-head{
  padding:18px 0;
}
.navbar{
  padding:0;
}
.brand-link{
  display:block;
  font-family:var(--galidaFont);
  font-size:24px;
  font-weight:400;
  color:var(--headingColor);
  text-transform:capitalize;
}
.nav-list-uter ul{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 -25px;
}
.nav-list-uter ul li{
  padding:0 25px;
}
.nav-list-uter ul li a{
  font-size:15px;
  text-transform:uppercase;
  color:var(--headingColor);
  display:inline-block;
  transition:0.3s;
}
.nav-list-uter ul li a:hover{
  color:var(--themeColor);
}
.hdr-social-outer ul{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  margin:0 -10px;
}
.hdr-social-outer ul li{
  padding:0 10px;
}
.hdr-social-outer ul li a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--themeColor);
  border-radius:50%;
  transition:0.5s;
}
.hdr-social-outer ul li a img{
  max-width:16px;
}
.hdr-social-outer ul li:first-child a img{
  max-width:9px;
}
.hdr-social-outer ul li a:hover{
  background-color:var(--themeColor);
}
.hdr-social-outer ul li a:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7448%) hue-rotate(56deg) brightness(113%) contrast(113%);
}

.banner-left-content {
    position: absolute;
    top: 50%;
    /* left: 0; */
    width: 100%;
    transform: translateY(-50%);
    max-width: 850px;
}

.banner-left-content h1{
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
}

.banner-sec{
  position:relative;
  z-index:1;
  min-height:800px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding:50px 0;
}
.banner-img-wpr{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:-1;
  pointer-events:none;
}
.banner-img-wpr img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.banner-inr{
  text-align:center;
}
.bring-sec{
  padding:100px 0;
  background-color:var(--blackColor);
}
.bring-inr{
  text-align:center;
}
.bring-inr h2{
  color:var(--whiteColor);
  font-weight:400;
}
.hm-portfolio-sec{
  padding:50px 0;
}
.sec-haed{
  margin-bottom:30px;
}
.hm-portfolio-sec .sec-haed h2{
  font-family:var(--montserratFont);
  font-size:16px;
  font-weight:400;
}
.hm-portfolio-clm{
  width:33.33%;
}
.hm-portfolio-card{
  position:relative;
  padding-top:141%;
  overflow:hidden;
}
.hm-portfolio-card figure{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.hm-portfolio-card figure img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hm-portfolio-txt{
  position:absolute;
  z-index:1;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px;
  background-color:rgba(0,0,0,0.6);
  top:0;
  left:0;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
}
.hm-portfolio-txt h3{
  font-family:var(--montserratFont);
  font-size:18px;
  color:var(--whiteColor);
  font-weight:400;
}
.hm-portfolio-card:hover .hm-portfolio-txt{
  opacity:1;
  visibility:visible;
}
.rates-sec{
  padding:50px 0;
  background-color:var(--blackColor);
}
.rates-clm{
  width:33.3%;
}
.rates-card{
  text-align:center;
  color:var(--whiteColor);
}
.rates-card h3{
  color:#B39370;
  font-weight:400;
  letter-spacing:1px;
}
.rates-card .price{
  display:block;
  letter-spacing:2px;
  margin-bottom:15px;
}
.footer-main{
  padding:50px 0 30px;
}
.ftr-inr{
  text-align:center;
}
.ftr-logo{
  display:inline-block;
  font-size:30px;
  font-family:var(--galidaFont);
  color:var(--headingColor);
  margin-bottom:30px;
}
.ftr-logo:hover{
  color:var(--headingColor);
}
.ftr-social-list{
  margin-bottom:50px;
}
.ftr-social-title{
  font-size:20px;
  margin-bottom:30px;
}
.ftr-social-list ul{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:-10px;
}
.ftr-social-list ul li{
  padding:0 10px;
}
.ftr-social-list ul li a{
  display:flex;
  width:50px;
  height:50px;
  background-color:#B39370;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  padding:15px;
  transition:0.5s;
}
.ftr-social-list ul li a img{
   filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7448%) hue-rotate(56deg) brightness(113%) contrast(113%);
}
.ftr-social-list ul li a:hover{
  background-color:var(--blackColor);
}
.portfolio-sec{
  padding-top:30px;
}
.portfolio-row{
  column-count:3;
  gap:20px;
}
.portfolio-clm{
  margin-bottom:20px;
}
.portfolio-clm a{
  display:block;
  position:relative;
}
.portfolio-clm a img{
  width:100%;
}
.portfolio-clm a:after{
  position:absolute;
  content:'';
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition:0.4s;
}
.portfolio-clm a:hover:after{
  opacity:1;
  visibility:visible;
}
.abt-me-sec{
  padding:80px 0;
}
.abt-me-inr{
  text-align:center;
  max-width:1030px;
  margin:0 auto;
}
.abt-me-inr h1{
  font-family:var(--montserratFont);
  font-size:18px;
  font-weight:400;
  letter-spacing:3px;
  text-transform:uppercase;
}
.abt-me-btn-wpr{
  padding-top:30px;
}
.abt-me-btn-wpr .cmn-btn{
  background-color:var(--themeColor);
}
.abt-me-btn-wpr .cmn-btn:hover{
  background-color:var(--blackColor);
  color:var(--whiteColor);
}
.abt-book-sec{
  padding:80px 0;
  background-color:#f2f2f2;
}
.abt-book-outer{
  max-width:1100px;
  margin:0 auto;
}
.abt-book-lft,.abt-book-rgt{
  width:50%;
}
.abt-book-lft-wpr{
  padding-top:130%;
  position:relative;
  overflow:hidden;
}
.abt-book-lft-wpr figure{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.abt-book-lft-wpr figure img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.abt-book-lft-txt{
  position:absolute;
  z-index:1;
  bottom:0;
  left:0;
  width:100%;
  text-align:center;
  padding:15px;
}
.abt-book-lft-txt h3{
  color:var(--whiteColor);
  letter-spacing:3px;
  font-size:30px;
}
.abt-book-rgt-wpr{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:50px;
}
.abt-book-rgt-wpr h4{
  font-size:40px;
  letter-spacing:3px;
  margin-bottom:40px;
}
.measurement-list li{
  margin-bottom:20px;
  font-size:18px;
  padding-left:19px;
  position:relative;
  line-height:1.2;
} 
.measurement-list li:after{
  position:absolute;
  content:'';
  top:7px;
  left:0;
  width:6px;
  height:6px;
  border-radius:50%;
  background-color:var(--paraColor);
}
.booking-request-sec{
  padding:50px 0;
}
.booking-request-lft-clm{
  width:40%;
}
.booking-request-lft-clm figure{
  padding-top:120%;
  position:relative;
  overflow:hidden;
}
.booking-request-lft-clm figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  top:0;
  left:0;
}
.booking-request-rgt-clm{
  width:60%;
}
.booking-request-txt{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:50px;
}
.booking-request-top{
  margin-bottom:50px;
}
.booking-request-top p{
  max-width:700px;
  font-size:18px;
}
.booking-request-frm-inr{
  display:flex;
  flex-wrap:wrap;
  margin:-10px;
}
.request-frm-each-bx{
  width:100%;
  padding:10px;
}
.request-frm-each-bx label{
  display:block;
  font-size:20px;
  font-weight:500;
  margin-bottom:10px;
}
.request-frm-each-bx.w-half{
  width:50%;
}
.terms-sec{
  border-bottom:1px solid rgba(0,0,0,0.1);
  padding:30px 0 60px;
}
.terms-list p{
  margin-bottom:10px;
}
.terms-list{
  margin-bottom:50px;
}
.terms-wpr p strong{
  font-weight:500;
  font-size:20px;
}

/* Video Css Start 07-10-25 */
.video-sec{
  padding:60px 0;
}
.video-outer{
  max-width:1200px;
  margin:0 auto;
}
.video-upper{
  margin-bottom:40px;
}
.large-vdo-card figure{
  padding-top:56%;
  position:relative;
  overflow:hidden;
  border-radius:10px;
  margin-bottom:30px;
}
.large-vdo-card figure iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.large-vdo-card h1{
  font-size:40px;
}
.video-lower-row{
  margin:-20px;
}
.video-lower-clm{
  width:33.33%;
  padding:20px;
}
.video-lower-card{
  width:100%;
}
.video-lower-card figure{
  padding-top:56%;
  position:relative;
  overflow:hidden;
  border-radius:10px;
}
.video-lower-card figure iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.video-lower-card-txt{
  padding-top:20px;
}
.video-lower-card-txt h2{
  font-size:22px;
  line-height:1.2;
}

/* Video Css End 07-10-25 */



/*======= Responsive Start =======*/
@media screen and (min-width: 1200px) {
  .container-fluid{
    padding:0 100px;
  }
}

@media screen and (min-width:992px){
  .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
  }
}

@media screen and (max-width: 1630px) {
  h1, .h1-title {
    font-size: 90px;
}
  h2, .h2-title {
    font-size: 50px;
}

}

@media screen and (max-width: 1599px) {
  .banner-sec {
      min-height: 590px;
  }
  .bring-sec {
      padding: 80px 0;
  }
  .booking-request-txt {
      padding-left: 10px;
  }
  .booking-request-top {
      margin-bottom: 30px;
  }
  .booking-request-rgt-clm {
    width: 48%;
  }
  .booking-request-lft-clm {
      width:52%;
  }
  .terms-sec {
      padding: 0 0 60px;
  }

}

@media screen and (max-width: 1399px) {
  h2, .h2-title {
    font-size: 36px;
  }
  .banner-sec {
      min-height: 510px;
  }
  .rates-card h3 {
      font-size: 22px;
  }
  .ftr-social-list ul li a {
    width: 40px;
    height: 40px;
    padding: 13px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-sec {
      min-height: 430px;
  }
  .bring-sec {
      padding: 60px 0;
  }
  .abt-book-rgt-wpr {
      padding-left: 30px;
  }

}

@media screen and (max-width: 991px) {
  h2, .h2-title {
      font-size: 30px;
  }
.hdr-social-outer{
  display:none;
}
.hamberger{
  display:block;
  width:30px;
}
.nav-list-uter{
  position:fixed;
  top:0;
  right:-320px;
  width:320px;
  height:100vh;
  background-color:var(--headingColor);
  z-index:99;
  transition:0.5s;
}
.nav-list-uter.active{
  right:0;
}
body.active{
  overflow:hidden;
}
.nav-list-uter ul {
    justify-content: flex-start;
    margin: 0;
    flex-direction: column;
    padding-top:100px;
}
.nav-list-uter ul li {
    width: 100%;
    text-align: left;
    padding:0;
}
.nav-list-uter ul li a{
  display:block;
  color:var(--whiteColor);
  padding: 10px 30px;
}
.nav-list-uter ul li a:hover{
  color: var(--themeColor);
}
.close_menu{
  position:absolute;
  display:block;
  top:30px;
  right:30px;
  width:18px;
}
.banner-sec {
    min-height: 320px;
    padding-bottom:20px;
}
.cmn-btn {
    font-size: 16px;
    padding: 11px 29.2px;
}
.rates-clm {
    width: 50%;
}
.rates-row{
  --bs-gutter-y:45px;
}
.abt-book-rgt-wpr {
    padding-left: 10px;
}
.booking-request-lft-clm {
    width: 100%;
}
.booking-request-rgt-clm {
    width: 100%;
}
.booking-request-txt {
    padding-left:0;
    padding-top: 30px;
}
.request-frm-each-bx label {
    font-size: 18px;
}

}

@media screen and (max-width: 767px) {


  .banner-left-content h1 {
      font-size: 12px;
      margin-bottom: 26px;
  }


  h2, .h2-title {
      font-size: 28px;
  }
  .close_menu {
      top: 17px;
      right: 22px;
  }
  .banner-sec {
      min-height: 270px;
  }
  .bring-sec {
      padding: 30px 0;
  }
  .abt-book-lft, .abt-book-rgt {
      width: 100%;
  }
  .abt-book-rgt-wpr {
      padding-left: 20px;
      padding-top: 30px;
  }
  .abt-book-rgt-wpr h4 {
      font-size: 30px;
      margin-bottom: 20px;
  }
  .abt-book-sec {
      padding: 50px 0;
  }
}


@media screen and (max-width: 575px) {
  .banner-sec {
      min-height: 210px;
  }
  .hm-portfolio-clm {
      width: 50%;
  }
  .hm-portfolio-row{
    justify-content:center;
    --bs-gutter-y:20px;
  }
  .rates-clm {
      width: 100%;
  }
  .abt-me-sec {
      padding: 50px 0;
  }
  .abt-me-btn-wpr {
      padding-top: 10px;
  }
  .portfolio-row {
      column-count: 2;
  }
  .request-frm-each-bx.w-half {
      width: 100%;
  }

}

@media screen and (max-width:479px) {
  h1, h2, h3, h4, h5, h6 {
      margin-bottom: 15px;
  }
  h2, .h2-title {
      font-size: 24px;
  }

  .nav-list-uter {
    right: -280px;
    width: 280px;
}
.nav-list-uter ul {
    padding-top: 80px;
}
.nav-list-uter ul li a {
    padding: 14px 20px;
}
.main-head {
    padding: 14px 0;
}
.hm-portfolio-clm {
    width: 100%;
}
.ftr-logo {
    margin-bottom: 20px;
}
.ftr-social-list {
    margin-bottom: 40px;
}
.ftr-copy p{
  font-size:14px;
}
.banner-img-wpr img {
    object-position: right;
}
.abt-book-rgt-wpr h4 {
    font-size: 26px;
}
.measurement-list li {
    margin-bottom: 13px;
    font-size: 16px;
}
.portfolio-row {
      column-count:1;
  }
.booking-request-sec {
  padding-top: 20px;
}
input[type="submit"] {
    padding: 12px 45px;
    font-size: 16px;
    width: 100%;
}


}
