@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --main-logo-color: #5bc732;
  --main-gold-color: #00655f;
  --darklight-text: #424242;
  --light-text: #82828a;
  --light-color: #fedbc7;
  --brown-color: #bc202e;
  --font-primary: "Jost", sans-serif;
  --font-heading: "Cormorant Garamond", serif;
}

/* genral style */
html,
body {
  overflow-x: hidden;
}
body,
html {
  /* background-color: #fff; */
  font-size: 16px;
  font-family: var(--font-primary) !important;
}

p {
  font-size: 16px;
  font-weight: normal;
  color: var(--darklight-text);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  font-family: var(--font-primary) !important;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 0px;
  letter-spacing: 1px;
}

.bg-light-maincolor {
  background-color: #f1fafb;
}

.bg-main-color {
  background-color: var(--main-logo-color);
}

.bg-main-yellow-color {
  background-color: var(--main-yellow-color);
}

.bg-light-yellow-color {
  background-color: #fff6be;
}

.text-main-color {
  color: var(--main-gold-color);
}

.text-gold-color {
  color: var(--main-gold-color);
}

.black-stroke-text {
  -webkit-text-stroke: 2px #000;
}

.py-8 {
  padding: 80px 0;
}

.z-25 {
  z-index: 25;
}

.size-6 {
  width: 24px;
  height: 24px;
}

.btn-main-color {
  background-color: var(--main-logo-color);
  /* font-size: 16px; */
  color: #fff;
  width: fit-content;
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  padding: 8px 15px;
  align-items: center;
  justify-content: center;
}

.btn-main-color:hover {
  background-color: #fff;
  color: #000;
  border-color: var(--main-logo-color);
}

.btn-main-border {
  background-color: var(--light-color);
  border: 2px solid var(--main-logo-color);
  color: #000;
}

.btn-main-border:hover {
  background-color: var(--main-logo-color);
  color: #fff;
}

.btn-gold-color {
  background-color: var(--main-gold-color);
  /* font-size: 16px; */
  color: #fff;
  width: fit-content;
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  padding: 8px 15px;
  align-items: center;
  justify-content: center;
}
.btn-gold-color:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid var(--main-gold-color);
}
/* header style */
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
}
header .container {
  background-color: var(--main-gold-color);
  border-radius: 50px;
}
.logo {
  width: 100px;
  display: block;
}
.logo img {
  width: 100px;
}
nav ul li a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
nav ul li a:hover {
  color: var(--main-logo-color);
}
nav ul li a svg {
  width: 19px;
  height: 19px;
  color: var(--main-gold-color);
}
nav ul li ul.dropdown-menu > li > a {
  text-transform: capitalize;
  font-size: 13px;
  color: #fff;
}

nav .dropdown-toggle::after {
  display: none;
}

header nav .dropdown-menu.show {
  border-image: linear-gradient(
      to top,
      var(--main-gold-color) -70%,
      #101111 100%
    )
    1;
  border-width: 2px;
  border-style: solid;
  border-radius: 0;
}

header nav .dropdown a svg {
  width: 18px;
  height: 18px;
}
/* hero section */
.hero-section {
  background-image: url(../image/hero-img.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.CTA_btnWrapper {
  display: flex;
  margin-top: 15px;
}

.CTA_btnWrapper .call_btn {
  padding: 1.3rem 2.3rem;
  border-radius: 50px 0 0 50px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 1px solid var(--main-gold-color);
  background-color: var(--main-gold-color);
}

.CTA_btnWrapper .call_btn svg {
  width: 20px;
  height: 20px;
}

.CTA_btnWrapper .free_demo {
  padding: 1.3rem 2.3rem;
  border-radius: 0 50px 50px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--main-gold-color);
  background-color: #fff;
  border: 1px solid var(--main-gold-color);
}

/* heading style */
.heading-style {
  position: relative;
}

.heading-style span .line {
  height: 1.5px;
  width: 120px;
  background-color: var(--main-logo-color);
}

.heading-style span {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--main-logo-color);
}

.heading-style h1 {
  font-size: 46px;
  font-weight: 600;
}
.heading-style h2 {
  font-size: 36px;
  font-weight: 900;
}

.heading-style h2 text,
.heading-style h1 text {
  text-transform: uppercase;
}

/* about us secrtion */

.about-img1 {
  height: 500px;
  width: 100%;
}
.about-img1 img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Interior section style */
.interior-img2 {
  position: absolute;
  right: 8%;
  border: 5px solid #101111;
  bottom: -8%;
  width: 180px;
  height: 250px;
  overflow: hidden;
}
.interior-img2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.interior-design-sec .icon,
.booking-bg .icon {
  width: 60px;
  height: 60px;
}
.interior-design-sec ul li,
.booking-bg ul li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.interior-design-sec ul li {
  flex-direction: column;
}
.interior-design-sec ul li h4,
.booking-bg ul li h4 {
  color: var(--main-gold-color);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.interior-design-sec ul li p,
.booking-bg ul li p {
  /* color: #f1fafb; */
  margin-bottom: 0;
}

/* booking form */
.booking-bg {
  background-image: url(../image/bg-booking.jpeg);
  background-repeat: no-repeat;
  background-position: center right;
  margin-top: 180px;
}
.booking-from {
  padding: 30px;
  border-top: 2px solid var(--main-gold-color);
  border-radius: 18px;
  margin-top: -100px;
}
.home-booking form {
  display: flex;
  flex-wrap: wrap;
}
.home-booking form > * {
  flex: 0 0 auto;
  width: 50%;
}
.home-booking form > * {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 10px;
}
.home-booking form > *:last-child {
  width: 100%;
}
.home-booking form > *:last-child {
  width: 100%; /* last child full width */
}
.home-booking form > *:nth-last-child(2),
.home-booking form > *:nth-last-child(3) {
  width: 100%; /* second last child full width */
}
/* flags-wrapper */
.flags-wrapper {
  height: 350px;
  overflow: hidden;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flags-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.4)
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.8)
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.flags-wrapper a.btn {
  position: absolute;
  bottom: 20px;
  z-index: 99;
}

/* why choose us */

.why-choose-box {
  border-right: 1px solid var(--main-logo-color);
  padding: 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
}
.why-choose-box img {
  width: 50px;
  height: 50px;
}
.why-choose-box h3 {
  color: var(--main-gold-color);
  font-weight: 600;
  font-size: 22px;
}
.why-choose-box p {
  margin-bottom: 0;
}
.client-logo img {
  width: 200px;
  margin: 0 auto;
}

/* project lists */
.projects-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--main-gold-color);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.project-img {
  height: 220px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.project-img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 250px;
}
.project-img button {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.project-img a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: var(--light-text);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 8px;
  color: #000;
  z-index: 5;
}

.project-img button svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.projects-box-wrapper h3 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.projects-box-wrapper a {
  color: #f1fafb;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.projects-box-wrapper a svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.projects-box-wrapper label {
  background-color: var(--main-gold-color);
  font-size: 14px;
  padding: 3px 12px;
  border-radius: 8px;
  color: #000;
}
.projects-box-wrapper .menu-wrapper button {
  color: #f1fafb;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  border: none;
  padding: 0;
  background-color: transparent;
}
.projects-box-wrapper .menu-wrapper button svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
/* modal design */
.townshade-modal {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.townshade-modal .btn-close {
  background-color: #fff;
  opacity: 1;
}
.townshade-modal .btn-close svg {
  width: 22px;
  height: 22px;
  color: #000;
}

/* breadcrum style */
.breadcum_heading {
  background-image: url(../image/about-img1.avif);
  background-size: cover;
  position: relative;
  background-position: center;
}
.breadcum_heading::after {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: "";
}
.breadcum_heading .container {
  position: relative;
  z-index: 5;
}

/* flag icons  */
.flag-icon label > span {
  font-size: 40px;
}
.flag-icon label {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-gold-color);
}

/* about us style */
.about-cta-sec {
  background-image: url(../image/cta-bg.avif);
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.about-cta-sec:after {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  position: absolute;
  z-index: 1;
}
.about-cta-sec .container {
  position: relative;
  z-index: 5;
}
.about-cta-sec ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.about-cta-sec ul li a img {
  width: 50px;
  height: 50px;
}

.filter {
  height: 300px;
  overflow: hidden;
}

.filter img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left;
}

.filter-button {
  color: #fff;
  border-color: var(--main-gold-color);
  text-transform: capitalize;
}
/* contact us page */

.contact-us-sec form label {
  color: var(--darklight-text);
}
.contact-us-sec form .form-control,
.contact-us-sec form .form-select {
  background-color: transparent;
  color: var(--main-gold-color);
}
.contact-us-sec form .form-control::placeholder,
.contact-us-sec form .form-select::placeholder {
  color: var(--main-logo-color);
}
/* footer */
footer {
  background-color: #fff;
  background-image: url(../image/about-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.btn-social {
  color: #67747c;
  border-color: var(--main-gold-color);
  border-width: 2px;
  border-radius: 6.1875rem;
  height: 2.5rem !important;
  position: relative;
  line-height: 0;
  font-size: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem !important;
}

.btn-social:hover {
  color: #000;
  background: var(--main-logo-color);
  border-color: var(--main-logo-color);
}

.btn-social svg {
  width: 22px;
  height: 22px;
  color: #000;
  fill: var(--main-logo-color);
}
.foot-bot .container {
  border-radius: 30px;
  background-color: var(--main-gold-color);
  padding: 8px 20px;
}
.foot-bot a {
  color: #fddd1c;
}

/* mobile menu */
.offcanvas {
  width: 300px !important;
}

.menu-btn {
  display: none;
}

/* media responsive mobile view */
@media (max-width: 800px) {
  .heading-style h1 {
    font-size: 25px;
  }
  .CTA_btnWrapper .call_btn,
  .CTA_btnWrapper .free_demo {
    font-size: 15px;
    padding: 1rem 2rem;
  }
}
@media (max-width: 600px) {
  header .btn-main-color {
    font-size: 14px;
    padding: 6px 3px;
  }
  header .btn-gold-color {
    padding: 8px 3px;
  }
  .about-cta-sec {
    background-size: cover;
  }
  .menu-btn {
    display: block;
  }
  .breadcum_heading {
    height: 200px !important;
  }
  nav ul li a {
    color: #101111;
  }
  nav ul li a:hover {
    color: var(--main-gold-color);
  }
  .heading-style h2 {
    font-size: 26px;
  }
  .home-booking form > * {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 10px;
  }
  .booking-bg {
    margin-top: 0px;
  }
  .booking-from {
    margin-top: 0;
  }
  .hero-section {
    background-image: url(../image/hero-mob-img.jpg);
    align-items: start;
  }
}
