/* line 1, ../full-modern-wesbite-main/scss/style.scss */
* {
  font-family: 'Didact Gothic', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; }

/* line 9, ../full-modern-wesbite-main/scss/style.scss */
ul {
  list-style: none; }

/* line 13, ../full-modern-wesbite-main/scss/style.scss */
a {
  text-decoration: none; }

/* line 17, ../full-modern-wesbite-main/scss/style.scss */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif; }

/* line 21, ../full-modern-wesbite-main/scss/style.scss */
h2 {
  font-weight: 500;
  font-size: 36px;
  color: #28221e;
  margin-bottom: 20px; }

/* line 28, ../full-modern-wesbite-main/scss/style.scss */
h3 {
  color: #444;
  font-size: 24px;
  margin-bottom: 20px; }

/* line 34, ../full-modern-wesbite-main/scss/style.scss */
h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #283d50; }

@keyframes slide-in {
  0% {
    transform: translateX(300px); }
  100% {
    transform: translateX(0); } }

@keyframes slide-out {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(300px); } }

/* line 59, ../full-modern-wesbite-main/scss/style.scss */
.slide-in {
  animation: slide-in 500ms ease; }

/* line 62, ../full-modern-wesbite-main/scss/style.scss */
.slide-out {
  animation: slide-out 500ms ease; }

/* line 68, ../full-modern-wesbite-main/scss/style.scss */
.about,
.services,
.why,
.photo-gallery,
.testimonials,
.team,
.clients,
.contact-us,
.footer {
  padding: 50px 20px; }
  @media (min-width: 900px) {
    /* line 68, ../full-modern-wesbite-main/scss/style.scss */
    .about,
    .services,
    .why,
    .photo-gallery,
    .testimonials,
    .team,
    .clients,
    .contact-us,
    .footer {
      padding: 100px 20px; } }

/* line 84, ../full-modern-wesbite-main/scss/style.scss */
.modal-wrap {
  /* Initial hidden state */
  display: none;
  visibility: hidden;
  opacity: 0;
  /* Structural styles */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Visual styles */
  background-color: rgba(0, 0, 0, 0.5);
  /* Transition */
  transition: opacity 0.3s ease, visibility 0.3s ease; }

/* line 108, ../full-modern-wesbite-main/scss/style.scss */
.modal-wrap.active {
  visibility: visible;
  opacity: 1; }

/* line 113, ../full-modern-wesbite-main/scss/style.scss */
.modal {
  text-align: center;
  padding: 50px;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  max-width: 90%;
  margin: 0 auto; }

/* line 123, ../full-modern-wesbite-main/scss/style.scss */
.modal img {
  width: 200px;
  height: auto;
  margin-bottom: 16px; }

/* line 129, ../full-modern-wesbite-main/scss/style.scss */
.modal p:nth-child(2) {
  font-size: 24px;
  margin-bottom: 8px;
  color: #333; }

/* line 135, ../full-modern-wesbite-main/scss/style.scss */
.modal p:nth-child(3) {
  color: #666;
  margin-bottom: 24px; }

/* line 140, ../full-modern-wesbite-main/scss/style.scss */
.modal .btn {
  margin-top: 24px;
  padding: 12px 30px;
  background-color: #7F6951;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease; }

/* line 151, ../full-modern-wesbite-main/scss/style.scss */
.modal .btn:hover {
  background-color: #6a5a48;
  transform: translateY(-2px); }

/* Mobile Menu Toggle */
/* line 158, ../full-modern-wesbite-main/scss/style.scss */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  color: #7F6951; }
  @media (max-width: 800px) {
    /* line 158, ../full-modern-wesbite-main/scss/style.scss */
    .mobile-menu-toggle {
      display: block; } }

/* Mobile Navigation */
/* Mobile Menu Toggle */
/* line 175, ../full-modern-wesbite-main/scss/style.scss */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  color: #7F6951; }
  @media (max-width: 800px) {
    /* line 175, ../full-modern-wesbite-main/scss/style.scss */
    .mobile-menu-toggle {
      display: block; } }
  /* line 189, ../full-modern-wesbite-main/scss/style.scss */
  .mobile-menu-toggle.active {
    display: none;
    /* Hide hamburger when menu is open */ }

/* Mobile Navigation */
/* line 195, ../full-modern-wesbite-main/scss/style.scss */
.mobile-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; }
  /* line 207, ../full-modern-wesbite-main/scss/style.scss */
  .mobile-bg.active {
    opacity: 1;
    visibility: visible; }
  /* line 212, ../full-modern-wesbite-main/scss/style.scss */
  .mobile-bg .fa-times-circle {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002; }
  /* line 222, ../full-modern-wesbite-main/scss/style.scss */
  .mobile-bg .mobile-nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background-color: #7F6951;
    padding: 80px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    /* line 233, ../full-modern-wesbite-main/scss/style.scss */
    .mobile-bg .mobile-nav ul {
      list-style: none; }
    /* line 237, ../full-modern-wesbite-main/scss/style.scss */
    .mobile-bg .mobile-nav li {
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    /* line 242, ../full-modern-wesbite-main/scss/style.scss */
    .mobile-bg .mobile-nav a {
      color: #fff;
      font-weight: 500;
      font-size: 16px;
      display: block;
      /* Ensure links are clickable across the full width */ }
  /* line 250, ../full-modern-wesbite-main/scss/style.scss */
  .mobile-bg.active .mobile-nav {
    transform: translateX(0); }

/* Hide scrollbar when menu is open */
/* line 256, ../full-modern-wesbite-main/scss/style.scss */
body.menu-open {
  overflow: hidden; }

/* Ensure header stays visible */
/* line 261, ../full-modern-wesbite-main/scss/style.scss */
header {
  height: 60px;
  position: fixed;
  width: 100%;
  z-index: 1003;
  /* Higher than mobile-bg to stay visible */
  background-color: black;
  box-shadow: 0 0 30px rgba(127, 137, 163, 0); }
  /* line 269, ../full-modern-wesbite-main/scss/style.scss */
  header nav {
    display: flex;
    align-items: center;
    padding: 0 20px; }
    /* line 274, ../full-modern-wesbite-main/scss/style.scss */
    header nav img {
      height: 35px; }
    /* line 278, ../full-modern-wesbite-main/scss/style.scss */
    header nav ul {
      flex: 1;
      justify-content: flex-end;
      display: none; }
      @media (min-width: 800px) {
        /* line 278, ../full-modern-wesbite-main/scss/style.scss */
        header nav ul {
          display: flex; } }
      /* line 287, ../full-modern-wesbite-main/scss/style.scss */
      header nav ul a {
        color: #7F6951;
        font-size: 15px;
        font-weight: 500;
        margin-left: 20px; }

/* Hide scrollbar when menu is open */
/* line 298, ../full-modern-wesbite-main/scss/style.scss */
body.menu-open {
  overflow: hidden; }

/* line 303, ../full-modern-wesbite-main/scss/style.scss */
header {
  height: 60px;
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: black;
  box-shadow: 0 0 30px rgba(127, 137, 163, 0.05); }
  /* line 311, ../full-modern-wesbite-main/scss/style.scss */
  header nav {
    display: flex;
    align-items: center;
    padding: 7px 50px; }
    /* line 316, ../full-modern-wesbite-main/scss/style.scss */
    header nav img {
      height: 38px; }
    /* line 320, ../full-modern-wesbite-main/scss/style.scss */
    header nav i {
      z-index: 6;
      font-size: 24px;
      flex: 1;
      text-align: right; }
      @media (min-width: 800px) {
        /* line 320, ../full-modern-wesbite-main/scss/style.scss */
        header nav i {
          display: none !important; } }
    /* line 330, ../full-modern-wesbite-main/scss/style.scss */
    header nav ul {
      padding-top: 10px;
      flex: 1;
      justify-content: flex-end;
      display: none; }
      @media (min-width: 800px) {
        /* line 330, ../full-modern-wesbite-main/scss/style.scss */
        header nav ul {
          display: flex; } }
      /* line 339, ../full-modern-wesbite-main/scss/style.scss */
      header nav ul a {
        color: #cbb89d;
        font-family: 'Didact Gothic', sans-serif;
        font-size: 16px;
        font-weight: 500;
        margin-left: 32px;
        letter-spacing: 0.6px;
        position: relative;
        transition: color 0.3s ease; }
        /* line 348, ../full-modern-wesbite-main/scss/style.scss */
        header nav ul a:hover {
          color: #fff; }

/* line 358, ../full-modern-wesbite-main/scss/style.scss */
.hero {
  padding: 150px 0;
  background: url("/img/intro-bg.png") center center no-repeat;
  background-size: cover;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center; }

/* line 370, ../full-modern-wesbite-main/scss/style.scss */
.hero-headline {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 0.85;
  /* Reduced from 1.2 */
  color: #fff;
  margin-bottom: 15px; }

/* line 380, ../full-modern-wesbite-main/scss/style.scss */
.hero-headline .line {
  display: block;
  margin: 2px 0;
  /* Reduced from 4px */
  transition: color 0.4s ease; }

/* line 386, ../full-modern-wesbite-main/scss/style.scss */
.hero-headline .focus-word {
  font-style: italic;
  transition: color 0.4s ease, transform 0.3s ease;
  display: inline-block; }

/* line 392, ../full-modern-wesbite-main/scss/style.scss */
.hero-headline:hover .focus-word {
  color: #d2b48c;
  transform: scale(1.05); }

/* Animation styles */
/* line 398, ../full-modern-wesbite-main/scss/style.scss */
.fade {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease-out forwards; }

/* line 404, ../full-modern-wesbite-main/scss/style.scss */
.delay-0 {
  animation-delay: 0s; }

/* line 407, ../full-modern-wesbite-main/scss/style.scss */
.delay-1 {
  animation-delay: 0.4s; }

/* line 410, ../full-modern-wesbite-main/scss/style.scss */
.delay-2 {
  animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0); } }

/* line 421, ../full-modern-wesbite-main/scss/style.scss */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0; }

/* line 432, ../full-modern-wesbite-main/scss/style.scss */
.hero .container {
  position: relative;
  z-index: 1;
  padding: 0 2px; }

/* Button styles */
/* line 439, ../full-modern-wesbite-main/scss/style.scss */
.hero .buttons {
  display: flex;
  justify-content: center; }

/* line 444, ../full-modern-wesbite-main/scss/style.scss */
.hero .buttons .btn {
  background-color: #7F6951;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  margin-top: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Didact Gothic', sans-serif; }

/* line 458, ../full-modern-wesbite-main/scss/style.scss */
.hero .buttons .btn:hover {
  background-color: #a59074;
  transform: translateY(-2px); }

/* Responsive adjustments */
@media (min-width: 1000px) {
  /* line 465, ../full-modern-wesbite-main/scss/style.scss */
  .hero-headline {
    font-size: 60px; } }

@media (max-width: 768px) {
  /* line 471, ../full-modern-wesbite-main/scss/style.scss */
  .hero {
    background-position: calc(50% - 260px) center; }
  /* line 474, ../full-modern-wesbite-main/scss/style.scss */
  .hero-headline {
    font-size: 34px;
    line-height: 1.1;
    /* Slightly tighter than 1.3 */
    padding: 0 16px; }
  /* line 479, ../full-modern-wesbite-main/scss/style.scss */
  .hero .buttons .btn {
    width: auto; } }

/* line 489, ../full-modern-wesbite-main/scss/style.scss */
.about .right .abouti {
  bottom: 500px; }

/* line 493, ../full-modern-wesbite-main/scss/style.scss */
.about img {
  width: 85%;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 900px) {
    /* line 493, ../full-modern-wesbite-main/scss/style.scss */
    .about img {
      width: 100%; } }

/* line 502, ../full-modern-wesbite-main/scss/style.scss */
.about h2 {
  text-align: center; }

/* line 505, ../full-modern-wesbite-main/scss/style.scss */
.about p {
  line-height: 1.7; }

/* line 508, ../full-modern-wesbite-main/scss/style.scss */
.about .flex-row {
  gap: 50px;
  flex-direction: column; }
  @media (min-width: 900px) {
    /* line 508, ../full-modern-wesbite-main/scss/style.scss */
    .about .flex-row {
      flex-direction: row; } }

/* line 515, ../full-modern-wesbite-main/scss/style.scss */
.about .left,
.about .right {
  flex: 1; }

/* line 520, ../full-modern-wesbite-main/scss/style.scss */
.about .left .flex-row {
  gap: 0;
  flex-direction: column;
  margin-top: 32px;
  align-items: center; }
  @media (min-width: 500px) {
    /* line 520, ../full-modern-wesbite-main/scss/style.scss */
    .about .left .flex-row {
      flex-direction: row; } }

/* line 529, ../full-modern-wesbite-main/scss/style.scss */
.about .left .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px; }
  @media (min-width: 500px) {
    /* line 529, ../full-modern-wesbite-main/scss/style.scss */
    .about .left .info {
      margin-top: 0;
      align-items: initial; } }
  /* line 540, ../full-modern-wesbite-main/scss/style.scss */
  .about .left .info p {
    color: #444;
    font-size: 14px; }

/* line 545, ../full-modern-wesbite-main/scss/style.scss */
.about .left i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: 500ms ease all;
  color: #007bff;
  font-size: 24px; }
  @media (min-width: 500px) {
    /* line 545, ../full-modern-wesbite-main/scss/style.scss */
    .about .left i {
      margin-right: 16px; } }
  /* line 558, ../full-modern-wesbite-main/scss/style.scss */
  .about .left i:hover {
    background-color: transparent;
    border-color: transparent;
    color: #7F6951; }

/* line 568, ../full-modern-wesbite-main/scss/style.scss */
.about-1 .left {
  text-align: center; }
  @media (min-width: 500px) {
    /* line 568, ../full-modern-wesbite-main/scss/style.scss */
    .about-1 .left {
      text-align: initial; } }

/* line 578, ../full-modern-wesbite-main/scss/style.scss */
.about-1 .right,
.about-3 .right {
  display: flex;
  justify-content: center; }
  @media (min-width: 900px) {
    /* line 578, ../full-modern-wesbite-main/scss/style.scss */
    .about-1 .right,
    .about-3 .right {
      align-items: start; } }

/* line 588, ../full-modern-wesbite-main/scss/style.scss */
.about-2 .left {
  order: 2;
  display: flex;
  justify-content: center; }
  @media (min-width: 900px) {
    /* line 588, ../full-modern-wesbite-main/scss/style.scss */
    .about-2 .left {
      order: 1;
      align-items: start; } }

/* line 597, ../full-modern-wesbite-main/scss/style.scss */
.about-2 .right {
  order: 1; }
  @media (min-width: 900px) {
    /* line 597, ../full-modern-wesbite-main/scss/style.scss */
    .about-2 .right {
      order: 2; } }

/* line 606, ../full-modern-wesbite-main/scss/style.scss */
.about-2 p,
.about-3 p {
  margin-bottom: 20px; }

/* Services Section */
/* line 614, ../full-modern-wesbite-main/scss/style.scss */
.services {
  background-color: #fff;
  padding: 60px 0; }

/* line 619, ../full-modern-wesbite-main/scss/style.scss */
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

/* line 625, ../full-modern-wesbite-main/scss/style.scss */
.services .container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333; }

/* line 632, ../full-modern-wesbite-main/scss/style.scss */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 40px; }

/* line 638, ../full-modern-wesbite-main/scss/style.scss */
.service-item {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  overflow: hidden; }

/* line 646, ../full-modern-wesbite-main/scss/style.scss */
.service-content {
  display: flex;
  min-height: 300px; }

/* line 651, ../full-modern-wesbite-main/scss/style.scss */
.service-content.reverse {
  flex-direction: row-reverse; }

/* line 655, ../full-modern-wesbite-main/scss/style.scss */
.service-content img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  border: 12px solid #f8f8f8;
  border-radius: 8px;
  margin: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); }

/* line 665, ../full-modern-wesbite-main/scss/style.scss */
.service-text {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

/* line 673, ../full-modern-wesbite-main/scss/style.scss */
.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2a2a2a; }

/* line 679, ../full-modern-wesbite-main/scss/style.scss */
.service-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px; }

/* Responsive Design */
@media (max-width: 768px) {
  /* line 688, ../full-modern-wesbite-main/scss/style.scss */
  .service-content {
    flex-direction: column;
    /* Stack vertically */
    min-height: auto;
    padding: 0;
    /* Remove container padding */ }
  /* line 694, ../full-modern-wesbite-main/scss/style.scss */
  .service-content img {
    width: 100%;
    /* Full width */
    height: 220px;
    /* Optimal height for mobile */
    margin: 0;
    /* Remove margins */
    border-radius: 12px 12px 0 0;
    /* Round top corners only */
    border: none;
    /* Remove border for full-width */
    border-bottom: 4px solid #f8f8f8;
    /* Subtle divider */
    object-position: center;
    /* Ensure focal point is visible */ }
  /* line 704, ../full-modern-wesbite-main/scss/style.scss */
  .service-text {
    width: 100%;
    /* Full width */
    padding: 25px;
    /* Comfortable spacing */
    box-sizing: border-box;
    /* Prevent overflow */ }
  /* Remove reverse order in mobile */
  /* line 711, ../full-modern-wesbite-main/scss/style.scss */
  .service-content.reverse {
    flex-direction: column;
    /* Override desktop reverse */ } }

/* Updated CSS */
/* line 719, ../full-modern-wesbite-main/scss/style.scss */
.why {
  background-color: #7F6951;
  color: #fff;
  padding: 80px 0;
  position: relative;
  /* Bonus Reason */
  /* Animated Stats */ }
  /* line 725, ../full-modern-wesbite-main/scss/style.scss */
  .why h2, .why h3 {
    color: #fff;
    text-align: center; }
  /* line 730, ../full-modern-wesbite-main/scss/style.scss */
  .why .flex-row {
    margin-top: 60px;
    gap: 60px; }
  /* line 735, ../full-modern-wesbite-main/scss/style.scss */
  .why .write-up {
    margin: 0 auto;
    max-width: 600px;
    flex-direction: column; }
    @media (min-width: 900px) {
      /* line 735, ../full-modern-wesbite-main/scss/style.scss */
      .why .write-up {
        max-width: 100%;
        flex-direction: row; } }
    /* line 745, ../full-modern-wesbite-main/scss/style.scss */
    .why .write-up .col {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
      cursor: pointer;
      padding: 40px;
      border-radius: 12px;
      background-color: rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: 500ms ease all; }
      /* line 757, ../full-modern-wesbite-main/scss/style.scss */
      .why .write-up .col:hover {
        background-color: rgba(0, 0, 0, 0.5);
        transform: translateY(-5px); }
    /* line 763, ../full-modern-wesbite-main/scss/style.scss */
    .why .write-up .quote {
      font-style: italic;
      display: block;
      margin: 10px 0;
      color: #f8f8f8; }
    /* line 770, ../full-modern-wesbite-main/scss/style.scss */
    .why .write-up i {
      font-size: 50px;
      color: #f8d7a9; }
    /* line 775, ../full-modern-wesbite-main/scss/style.scss */
    .why .write-up h3 {
      margin: 16px 0; }
    /* line 779, ../full-modern-wesbite-main/scss/style.scss */
    .why .write-up p {
      font-size: 14px;
      margin-bottom: 32px;
      line-height: 1.7; }
  /* line 787, ../full-modern-wesbite-main/scss/style.scss */
  .why .bonus-reason {
    margin: 60px auto 0;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2); }
    /* line 795, ../full-modern-wesbite-main/scss/style.scss */
    .why .bonus-reason .bonus-content {
      display: flex;
      align-items: center;
      gap: 30px; }
      /* line 800, ../full-modern-wesbite-main/scss/style.scss */
      .why .bonus-reason .bonus-content i {
        font-size: 60px;
        color: #f8d7a9;
        flex-shrink: 0; }
      /* line 806, ../full-modern-wesbite-main/scss/style.scss */
      .why .bonus-reason .bonus-content h3 {
        font-size: 28px;
        margin-bottom: 10px;
        text-align: left; }
      /* line 812, ../full-modern-wesbite-main/scss/style.scss */
      .why .bonus-reason .bonus-content p {
        font-size: 16px;
        margin-bottom: 20px; }
    /* line 818, ../full-modern-wesbite-main/scss/style.scss */
    .why .bonus-reason .cta-button {
      display: inline-block;
      background: #f8d7a9;
      color: #7F6951;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease; }
      /* line 828, ../full-modern-wesbite-main/scss/style.scss */
      .why .bonus-reason .cta-button:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
  /* line 837, ../full-modern-wesbite-main/scss/style.scss */
  .why .analytics {
    flex-direction: column;
    margin-top: 90px;
    justify-content: space-evenly;
    align-items: center; }
    @media (min-width: 700px) {
      /* line 837, ../full-modern-wesbite-main/scss/style.scss */
      .why .analytics {
        flex-direction: row; } }
    /* line 847, ../full-modern-wesbite-main/scss/style.scss */
    .why .analytics .col {
      padding: 20px; }
    /* line 851, ../full-modern-wesbite-main/scss/style.scss */
    .why .analytics .number {
      font-size: 50px;
      font-weight: 600;
      margin: 10px 0;
      color: #f8d7a9; }
    /* line 858, ../full-modern-wesbite-main/scss/style.scss */
    .why .analytics .title {
      font-size: 16px;
      letter-spacing: 1px; }

/* line 867, ../full-modern-wesbite-main/scss/style.scss */
.photo-gallery h2 {
  text-align: center; }

/* line 870, ../full-modern-wesbite-main/scss/style.scss */
.photo-gallery .grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 125px;
  gap: 16px; }
  @media (min-width: 600px) {
    /* line 870, ../full-modern-wesbite-main/scss/style.scss */
    .photo-gallery .grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 900px) {
    /* line 870, ../full-modern-wesbite-main/scss/style.scss */
    .photo-gallery .grid {
      grid-template-columns: repeat(3, 1fr); } }

/* line 882, ../full-modern-wesbite-main/scss/style.scss */
.photo-gallery .col {
  position: relative; }
  /* line 885, ../full-modern-wesbite-main/scss/style.scss */
  .photo-gallery .col img {
    position: relative;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px; }
  /* line 893, ../full-modern-wesbite-main/scss/style.scss */
  .photo-gallery .col .bg {
    border-radius: 12px;
    transition: 500ms ease all;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%; }
  /* line 901, ../full-modern-wesbite-main/scss/style.scss */
  .photo-gallery .col .content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 500ms ease all;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%; }
    /* line 914, ../full-modern-wesbite-main/scss/style.scss */
    .photo-gallery .col .content p:nth-child(1) {
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 4px; }
    /* line 919, ../full-modern-wesbite-main/scss/style.scss */
    .photo-gallery .col .content p:nth-child(2) {
      margin-bottom: 4px; }
    /* line 922, ../full-modern-wesbite-main/scss/style.scss */
    .photo-gallery .col .content i {
      cursor: pointer;
      font-size: 18px;
      padding: 10px;
      border-radius: 50%;
      background-color: #7F6951; }
  /* line 931, ../full-modern-wesbite-main/scss/style.scss */
  .photo-gallery .col:hover .bg {
    background-color: rgba(206, 203, 200, 0.4); }
  /* line 934, ../full-modern-wesbite-main/scss/style.scss */
  .photo-gallery .col:hover .content {
    opacity: 1; }

/* line 939, ../full-modern-wesbite-main/scss/style.scss */
.photo-gallery .photo-1 {
  grid-row: span 3; }

/* line 942, ../full-modern-wesbite-main/scss/style.scss */
.photo-gallery .photo-2,
.photo-gallery .photo-6,
.photo-gallery .photo-7,
.photo-gallery .photo-8,
.photo-gallery .photo-9 {
  grid-row: span 2; }

/* line 949, ../full-modern-wesbite-main/scss/style.scss */
.photo-gallery .photo-3,
.photo-gallery .photo-4,
.photo-gallery .photo-5 {
  grid-row: span 5; }

/* line 957, ../full-modern-wesbite-main/scss/style.scss */
.testimonials {
  background-color: #CECBC8;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.1); }
  /* line 961, ../full-modern-wesbite-main/scss/style.scss */
  .testimonials h2 {
    text-align: center; }
  /* line 964, ../full-modern-wesbite-main/scss/style.scss */
  .testimonials .owl-carousel {
    max-width: 800px;
    margin: 0 auto; }
  /* line 968, ../full-modern-wesbite-main/scss/style.scss */
  .testimonials img {
    width: 120px !important;
    height: 120px;
    border: 4px solid #fff;
    border-radius: 50%;
    margin: 0 0 20px 0; }
    @media (min-width: 600px) {
      /* line 968, ../full-modern-wesbite-main/scss/style.scss */
      .testimonials img {
        margin: 0 20px 0; } }
  /* line 979, ../full-modern-wesbite-main/scss/style.scss */
  .testimonials .flex-row {
    flex-direction: column;
    align-items: center;
    text-align: center; }
    @media (min-width: 600px) {
      /* line 979, ../full-modern-wesbite-main/scss/style.scss */
      .testimonials .flex-row {
        flex-direction: row;
        align-items: flex-start;
        text-align: start; } }
    /* line 989, ../full-modern-wesbite-main/scss/style.scss */
    .testimonials .flex-row h2 {
      font-size: 20px;
      color: #111;
      margin: 0 0 8px 0; }
      @media (min-width: 600px) {
        /* line 989, ../full-modern-wesbite-main/scss/style.scss */
        .testimonials .flex-row h2 {
          text-align: start; } }
    /* line 997, ../full-modern-wesbite-main/scss/style.scss */
    .testimonials .flex-row h4 {
      font-weight: 300;
      margin: 0 0 8px 0;
      color: #7F6951;
      font-size: 14px; }
    /* line 1003, ../full-modern-wesbite-main/scss/style.scss */
    .testimonials .flex-row p {
      font-family: sans-serif;
      font-weight: 400;
      font-style: italic;
      color: #444; }

/* line 1016, ../full-modern-wesbite-main/scss/style.scss */
.team h2 {
  text-align: center; }

/* line 1019, ../full-modern-wesbite-main/scss/style.scss */
.team .flex-row {
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap; }

/* line 1024, ../full-modern-wesbite-main/scss/style.scss */
.team .col {
  position: relative;
  flex-basis: 80%; }
  @media (min-width: 600px) {
    /* line 1024, ../full-modern-wesbite-main/scss/style.scss */
    .team .col {
      flex-basis: 43%; } }
  @media (min-width: 900px) {
    /* line 1024, ../full-modern-wesbite-main/scss/style.scss */
    .team .col {
      flex-basis: 21%; } }
  /* line 1034, ../full-modern-wesbite-main/scss/style.scss */
  .team .col:hover .bg {
    background-color: rgba(206, 203, 200, 0.4); }
  /* line 1037, ../full-modern-wesbite-main/scss/style.scss */
  .team .col:hover .info {
    margin-top: 0;
    opacity: 1; }

/* line 1043, ../full-modern-wesbite-main/scss/style.scss */
.team img {
  display: block;
  width: 100%;
  border-radius: 50%; }

/* line 1048, ../full-modern-wesbite-main/scss/style.scss */
.team .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 50%;
  transition: 500ms ease all; }

/* line 1055, ../full-modern-wesbite-main/scss/style.scss */
.team .info {
  transition: 500ms ease all;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  color: #fff;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }
  /* line 1069, ../full-modern-wesbite-main/scss/style.scss */
  .team .info p:nth-child(1) {
    margin-bottom: 8px;
    font-weight: 700; }
  /* line 1074, ../full-modern-wesbite-main/scss/style.scss */
  .team .info p:nth-child(2) {
    font-size: 12px;
    font-style: italic; }

/* line 1084, ../full-modern-wesbite-main/scss/style.scss */
.clients {
  background-color: #CECBC8;
  box-shadow: inset 0 0 12-x 0 rgba(0, 0, 0, 0.1); }
  /* line 1088, ../full-modern-wesbite-main/scss/style.scss */
  .clients h2 {
    text-align: center; }
  /* line 1091, ../full-modern-wesbite-main/scss/style.scss */
  .clients .flex-row {
    flex-wrap: wrap; }
  /* line 1094, ../full-modern-wesbite-main/scss/style.scss */
  .clients .col {
    max-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #d6eaff;
    border-right: 1px solid #d6eaff;
    background-color: #fff;
    padding: 64px;
    flex-basis: 100%; }
    @media (min-width: 500px) {
      /* line 1094, ../full-modern-wesbite-main/scss/style.scss */
      .clients .col {
        border-left: none;
        flex-basis: 50%; } }
    @media (min-width: 500px) {
      /* line 1094, ../full-modern-wesbite-main/scss/style.scss */
      .clients .col {
        flex-basis: 25%; } }
    /* line 1114, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col:hover img {
      transform: scale(1.2); }
    /* line 1119, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col img {
      max-width: 100%;
      height: auto;
      transition: 500ms ease all; }
  /* line 1126, ../full-modern-wesbite-main/scss/style.scss */
  .clients .col:nth-child(1) {
    border-top: 1px solid #d6eaff; }
  @media (min-width: 500px) {
    /* line 1129, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col:nth-child(2) {
      border-top: 1px solid #d6eaff; } }
  @media (min-width: 500px) {
    /* line 1134, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col:nth-child(odd) {
      border-top: 1px solid #d6eaff; } }
  @media (min-width: 900px) {
    /* line 1134, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col:nth-child(odd) {
      border-left: none; } }
  @media (min-width: 900px) {
    /* line 1142, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col:nth-child(3),
    .clients .col:nth-child(4) {
      border-top: 1px solid #d6eaff; } }
  @media (min-width: 900px) {
    /* line 1148, ../full-modern-wesbite-main/scss/style.scss */
    .clients .col:nth-child(3),
    .clients .col:nth-child(4) {
      border-left: 1px solid #d6eaff; } }

/* line 1160, ../full-modern-wesbite-main/scss/style.scss */
.contact-us .divi {
  flex-direction: row; }

/* line 1163, ../full-modern-wesbite-main/scss/style.scss */
.contact-us h2,
.contact-us p {
  text-align: center; }

/* line 1167, ../full-modern-wesbite-main/scss/style.scss */
.contact-us p {
  margin-bottom: 60px; }

/* line 1170, ../full-modern-wesbite-main/scss/style.scss */
.contact-us input,
.contact-us button {
  display: block; }

/* line 1174, ../full-modern-wesbite-main/scss/style.scss */
.contact-us input,
.contact-us textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ecf5ff; }

/* line 1180, ../full-modern-wesbite-main/scss/style.scss */
.contact-us:focus {
  outline: none; }

/* line 1183, ../full-modern-wesbite-main/scss/style.scss */
.contact-us input {
  margin-bottom: 16px; }

/* line 1186, ../full-modern-wesbite-main/scss/style.scss */
.contact-us textarea {
  height: 100%;
  resize: none; }

/* line 1190, ../full-modern-wesbite-main/scss/style.scss */
.contact-us form {
  max-width: 700px;
  margin: 0 auto; }

/* line 1194, ../full-modern-wesbite-main/scss/style.scss */
.contact-us .flex-row {
  flex-direction: column; }
  @media (min-width: 500px) {
    /* line 1194, ../full-modern-wesbite-main/scss/style.scss */
    .contact-us .flex-row {
      flex-direction: row;
      gap: 32px; } }

/* line 1201, ../full-modern-wesbite-main/scss/style.scss */
.contact-us .btn {
  margin-top: 16px;
  font-weight: 400; }
  /* line 1204, ../full-modern-wesbite-main/scss/style.scss */
  .contact-us .btn:hover {
    color: #7F6951;
    border-color: #9a9a9a; }

/* line 1214, ../full-modern-wesbite-main/scss/style.scss */
footer {
  color: #fff;
  background-color: black;
  padding-top: 38px; }
  /* line 1219, ../full-modern-wesbite-main/scss/style.scss */
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center; }
  /* line 1224, ../full-modern-wesbite-main/scss/style.scss */
  footer ul {
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center; }
  /* line 1229, ../full-modern-wesbite-main/scss/style.scss */
  footer li {
    padding: 0 15px;
    margin-bottom: 16px; }
  /* line 1233, ../full-modern-wesbite-main/scss/style.scss */
  footer a {
    font-size: 14px;
    font-weight: 500;
    color: #fff; }
  /* line 1238, ../full-modern-wesbite-main/scss/style.scss */
  footer i {
    cursor: pointer;
    font-size: 38px; }
  /* line 1242, ../full-modern-wesbite-main/scss/style.scss */
  footer p {
    text-align: center; }

/* line 1249, ../full-modern-wesbite-main/scss/style.scss */
.display-none {
  display: none; }

/* line 1253, ../full-modern-wesbite-main/scss/style.scss */
.container {
  max-width: 1140px;
  margin: 0 auto; }

/* line 1258, ../full-modern-wesbite-main/scss/style.scss */
.flex-row {
  display: flex; }

/* line 1262, ../full-modern-wesbite-main/scss/style.scss */
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 14px 40px;
  background-color: #7F6951;
  color: #fff;
  border-radius: 45px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: 500 ms ease all; }
  /* line 1273, ../full-modern-wesbite-main/scss/style.scss */
  .btn:hover {
    background-color: transparent;
    border-color: #CECBC8; }

/* line 1279, ../full-modern-wesbite-main/scss/style.scss */
.btn-light {
  background-color: transparent;
  border-color: #CECBC8; }
  /* line 1283, ../full-modern-wesbite-main/scss/style.scss */
  .btn-light:hover {
    background-color: #CECBC8;
    border-color: transparent; }

/*# sourceMappingURL=style.css.map */