@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* =========================
           HEADER
        ========================= */

/* =====================================
           HEADER
        ===================================== */

.main-header {
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.main-header .container {
  height: 100%;
}

/* =====================================
           LOGO
        ===================================== */

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  width: 130px;
  height: auto;
  display: block;
}

/* =====================================
           DESKTOP NAVIGATION
        ===================================== */

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.main-menu a {
  position: relative;

  color: #333333;
  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  padding: 8px 0;
  cursor: pointer;

  transition: color 0.2s ease;
}

.main-menu a:hover {
  color: #704c36;
}

.main-menu a.active {
  color: #704c36;
}

.main-menu a.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: #704c36;
}

/* =====================================
           CONTACT BUTTON
        ===================================== */

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 3px;

  min-width: 125px;
  height: 38px;

  padding: 0 14px;

  background: #3d281d;
  color: #f8f7f4;

  text-decoration: none;

  font-size: 15px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;

  transition: background 0.2s ease;
}

.contact-btn:hover {
  background: #5b3c30;
  color: #ffffff;
}

/* =====================================
           MOBILE MENU BUTTON
        ===================================== */

.mobile-menu-btn {
  width: 40px;
  height: 40px;

  padding: 0;

  border: 1px solid #ddd5d0;
  border-radius: 4px;

  background: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;
}

.mobile-menu-btn span {
  display: block;

  width: 20px;
  height: 2px;

  background: #432d25;
}

/* =====================================
           OFFCANVAS
        ===================================== */

.mobile-offcanvas {
  width: 300px !important;
}

.mobile-offcanvas .offcanvas-header {
  padding: 22px 20px;

  border-bottom: 1px solid #eeeeee;
}

.mobile-offcanvas .offcanvas-title img {
  width: 120px;
}

.mobile-offcanvas .offcanvas-body {
  padding: 25px 20px;
}

/* =====================================
           MOBILE NAVIGATION
        ===================================== */

.mobile-menu {
  display: flex;
  flex-direction: column;

  gap: 0;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 0;

  color: #333333;

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  border-bottom: 1px solid #eeeeee;
}

.mobile-menu a:hover {
  color: #704c36;
}

.mobile-menu a.active {
  color: #704c36;
}

.mobile-contact-btn {
  display: flex;

  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 45px;

  margin-top: 25px;

  padding: 0 16px;

  background: #432d25;
  color: #ffffff;

  border-radius: 4px;

  text-decoration: none;

  font-size: 12px;
  cursor: pointer;
}

.mobile-contact-btn:hover {
  color: #ffffff;
  background: #5b3c30;
}

/* =====================================
           TABLET
        ===================================== */

@media (max-width: 991px) {
  .main-menu {
    gap: 20px;
  }

  .main-menu a {
    font-size: 12px;
  }

  .contact-btn {
    min-width: 110px;
  }
}

/* =====================================
           MOBILE
        ===================================== */

@media (max-width: 767px) {
  .main-header {
    height: 70px;
  }

  .logo img {
    width: 115px;
  }
}
/* =========================
           HERO
        ========================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 50px);

  background-image: url("/images/Eco_planet_Bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 60px 15px;
}

.hero-subtitle {
  color: #d5a928;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(42px, 5vw, 64px);
  color: #fff;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
}
.Scale_Up {
  color: #ddcbb7;
}

.hero-description {
  max-width: 575px;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.consultation-btn {
  background: #6b4a33;
  color: #fff;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.consultation-btn:hover {
  background: #99623c;
  color: #fff;
}

.consultation-btn span {
  font-size: 14px;
}

.services-btn {
  color: #d9a520;
  text-decoration: none;
  font-size: 14px;
}

.services-btn:hover {
  color: #fff;
}

/* =========================
           TABLET
        ========================= */

@media (max-width: 991px) {
  .main-menu {
    gap: 15px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    max-width: 550px;
  }
}

/* =========================
           MOBILE
        ========================= */

@media (max-width: 767px) {
  .main-header {
    height: 65px;
  }

  .header-wrapper {
    padding: 0 15px;
  }

  .main-menu {
    display: none;
  }

  .logo img {
    width: 100px;
  }

  .contact-btn {
    padding: 9px 14px;
  }

  .hero-section {
    min-height: calc(100vh - 65px);
    background-position: center;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-subtitle {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 11px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* =========================
           SMALL MOBILE
        ========================= */

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 7px;
  }

  .hero-description {
    font-size: 10px;
  }
}
.strategy-section {
  padding: 75px 0 60px;
  overflow: hidden;
}

.strategy-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT INTRO */
.intro-text {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.65;
  color: #56504d;
  margin-bottom: 38px;
}

/* SERVICES LIST SCROLL CONTAINER */
.services-list-container {
  /* max-height: 585px; */
  /* overflow-y: auto; */
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #704c36 #f1edea;
}

.services-list-container::-webkit-scrollbar {
  width: 6px;
}

.services-list-container::-webkit-scrollbar-track {
  background: #f1edea;
  border-radius: 4px;
}

.services-list-container::-webkit-scrollbar-thumb {
  background: #704c36;
  border-radius: 4px;
}

.services-list-container::-webkit-scrollbar-thumb:hover {
  background: #563927;
}

/* SERVICE BOX */
.service-item {
  background: #f7f5f4;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.service-header {
  padding: 15px 18px;
  display: flex;
  padding-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.service-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-arrow {
  font-size: 17px;
  line-height: 1;
  color: #252525;
}

.service-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #1c1c1a;
}

.service-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.read-text {
  font-size: 13px;
  letter-spacing: 1.3px;
  font-weight: 600;
  color: #3d281d;
  white-space: nowrap;
}

.toggle-icon {
  width: 21px;
  height: 20px;
  border: 1px solid #3d281d4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #3d281d;
}

/* CONTENT */
.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-content-inner {
  padding: 0 42px 14px;
}

.service-description {
  font-size: 13px;
  line-height: 1.6;
  color: #1c1c1ab2;
  margin: 0 0 8px;
  padding: 0 42px 14px;
  padding-bottom: 8px;
  /* border-bottom: 1px solid #e7e3e1; */
}

.service-content ul {
  margin: 8px 0 0;
  padding-left: 16px;
}

.service-content li {
  font-size: 13px;
  line-height: 1.55;
  color: #1c1c1ad9;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #1c1c1ad9;
  margin-bottom: 8px;
}

/* RIGHT SIDE */
.right-content {
  padding-left: 35px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #ddd7d4;
}
.section-label_two{
    justify-content: flex-start;
}

.section-label span {
  font-size: 9px;
  letter-spacing: 1.4px;
  font-weight: 600;
  font-style: italic;
  color: #403a37;
}

.main-heading {
  text-align: right;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 700;
  margin: 0 0 26px;
  color: #242323;
}

.main-heading span {
  display: block;
  color: #765137;
}

/* IMAGE STACK */
.image-stack {
  max-width: 450px;
  margin-left: auto;
}

.image-card {
  width: 100%;
  height: 500px;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 18px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card.small {
  height: 220px;
}

/* TABLET */
@media (max-width: 991px) {
  .strategy-section {
    padding: 30px 20px 50px;
  }

  .right-content {
    padding-left: 15px;
  }

  .main-heading {
    font-size: 36px;
  }

  .image-stack {
    max-width: 100%;
  }

  .image-card {
    height: 350px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .strategy-section {
    padding: 30px 15px 40px;
  }

  .intro-text {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .right-content {
    padding-left: 0;
    margin-top: 45px;
  }

  .section-label {
    justify-content: flex-start;
  }

  .main-heading {
    text-align: left;
    font-size: 36px;
    margin-bottom: 25px;
  }

  .main-heading span {
    display: inline;
  }

  .image-stack {
    max-width: 100%;
  }

  .image-card {
    height: 320px;
  }

  .service-header {
    padding: 14px;
  }

  .service-title {
    font-size: 15px;
  }

  .read-text {
    font-size: 9px;
  }

  .service-content-inner {
    padding: 0 30px 14px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .main-heading {
    font-size: 31px;
  }

  .service-title-wrapper {
    gap: 7px;
  }

  .service-title {
    font-size: 14px;
  }

  .service-action {
    gap: 6px;
  }

  .read-text {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .image-card {
    height: 300px;
  }
}
/* ==============================
   INDUSTRY WATCH
================================ */

.industry-watch-section {
  background: #faf9f6;
  padding: 70px 0 55px;
  overflow: hidden;
}

/* label */

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  font-style: italic;
  margin-bottom: 20px;
}

.section-label span {
  display: block;
  width: 25px;
  height: 1px;
  background: #c9b8a9;
}

/* heading */

.industry-title {
  font-size: 66px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin: 0;
}

.industry-title span {
  color: #805a3f;
}

/* description */

.industry-description {
  max-width: 395px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

/* ==============================
   CAROUSEL
================================ */

.industry-carousel {
  position: relative;
}

.industry-carousel .owl-stage {
  display: flex;
}

.industry-carousel .owl-item {
  display: flex;
}

/* Card */

.industry-card {
  position: relative;
  width: 100%;
  min-height: 330px;

  background: #fff;
  border-radius: 14px;

  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);

  overflow: hidden;
}

/* colored side border */

.industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;

  width: 3px;
  border-radius: 0 5px 5px 0;
}

.orange-card::before {
  background: #b96a43;
}

.green-card::before {
  background: #87916a;
}

.brown-card::before {
  background: #73503e;
}

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;

  height: 100%;
  min-height:   330px;

  padding: 32px 26px 26px;
}

/* top date */

.card-date {
  font-size: 9px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.5px;
}

/* tags */

.card-tag {
  padding: 4px 11px;
  border-radius: 20px;

  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-tag.regulation {
  color: #271710;
  background: #fcdcd0;
}

.card-tag.industry {
  color: #241800;
  background: #ffdfa0;
}

/* card title */

.industry-card h3 {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;

  max-width: 280px;
}

/* bottom content */

.card-bottom {
  margin-top: auto;
}

.card-bottom p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 15px;
}

.card-bottom p a {
  color: #805a3f;
  text-decoration: underline;
}

/* source */

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 13px;
  text-decoration: underline;
}

.source-link:hover {
  color: #805a3f;
}

.source-link span {
  font-size: 15px;
  text-decoration: none;
}

/* line at bottom */

.bottom-line {
  position: relative;

  height: 1px;
  background: #eee8e2;

  margin-top: 30px;
}

.bottom-line span {
  position: absolute;

  left: 0;
  top: 50%;

  width: 6px;
  height: 6px;

  background: #bc714e;
  border-radius: 50%;

  transform: translateY(-50%);
}

/* ==============================
   OWL NAVIGATION
================================ */

.industry-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 12px;

  margin-top: 42px !important;
}

.industry-carousel .owl-nav button.owl-prev,
.industry-carousel .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid #d9cec5 !important;
  border-radius: 50% !important;

  background: transparent !important;
  color: #967663 !important;

  transition: 0.3s ease;
}

.industry-carousel .owl-nav button span {
  font-size: 23px;
  line-height: 1;
  position: relative;
  top: -1px;
}

.industry-carousel .owl-nav button:hover {
  background: #805a3f !important;
  border-color: #805a3f !important;
  color: #fff !important;
}

/* remove default owl dots */

.industry-carousel .owl-dots {
  display: none;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .industry-watch-section {
    padding: 55px 0;
  }

  .industry-title {
    font-size: 40px;
    margin-bottom: 25px;
  }

  .industry-description {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .industry-watch-section {
    padding: 45px 0;
  }

  .industry-title {
    font-size: 34px;
  }

  .industry-card {
    min-height: 350px;
  }

  .card-content {
    min-height: 350px;
    padding: 28px 23px 24px;
  }

  .industry-card h3 {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .industry-title {
    font-size: 31px;
  }

  .industry-description {
    font-size: 12px;
  }
}

/* =================================
           CONTACT SECTION
        ================================= */

.contact-section {
  padding: 45px 0;
  overflow: hidden;
}

.contact-container {
  max-width: 1070px;
  margin: 0 auto;
}

/* =================================
           SECTION LABEL
        ================================= */

.contact-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 13px;
}

.contact-label::before,
.contact-label::after {
  content: "";

  width: 48px;
  height: 1px;

  background: #d8d1cc;
}

.contact-label span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #4d4541;
}

/* =================================
           MAIN HEADING
        ================================= */

.contact-title {
  max-width: 650px;

  margin: 0 auto;

  text-align: center;

  font-size: 45px;
  /* line-height: 1.02; */
  font-weight: 700;

  letter-spacing: -1px;
}

.contact-title span {
  color: #79543d;
}

/* =================================
           DESCRIPTION
        ================================= */

.contact-description {
     max-width: 489px;
    margin: 14px auto 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
    color: #68615d;
}

/* =================================
           CONTENT ROW
        ================================= */

.contact-content {
  margin-top: 31px;
}

/* =================================
           CONTACT CARD
        ================================= */

.contact-card {
  height: 360px;

  padding: 35px;

  border: 1px solid #ded7d2;
  border-radius: 11px;

  background: #ffffff;

  display: flex;
  flex-direction: column;
}

.consultant-label {
  margin-bottom: 13px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.8px;

  color: #59514c;
}

/* =================================
           EMAIL
        ================================= */

.email-wrapper {
  display: flex;
  align-items: center;
  gap: 13px;
}

.email-icon {
  font-size: 16px;
  color: #403a37;
}

.email-link {
  font-size: 20px;
  color: #51443d;

  text-decoration: underline;

  text-underline-offset: 2px;
}

/* =================================
           BUTTON
        ================================= */

.contact-button {
  width: 100%;
  height: 40px;

  margin-top: auto;

  border: 0;
  border-radius: 4px;

  background: #432d25;
  color: #ffffff;

  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 21px;

  transition: background 0.2s ease;
}

.contact-button:hover {
  background: #5a3c31;
}

.contact-button i {
  font-size: 12px;
}

/* =================================
           LINKEDIN
        ================================= */

.linkedin-wrapper {
  display: flex;
  justify-content: flex-end;

  margin-top: 11px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  font-size: 14px;

  color: #403a37;

  text-decoration: none;
}

.linkedin-link i {
  font-size: 11px;
}

.linkedin-link:hover {
  text-decoration: underline;
}

/* =================================
           IMAGE
        ================================= */

.contact-image {
  width: 100%;
  height: 360px;

  border-radius: 8px;

  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* =================================
           TABLET
        ================================= */

@media (max-width: 991px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-content {
    margin-top: 28px;
  }
}

/* =================================
           MOBILE
        ================================= */

@media (max-width: 767px) {
  .contact-section {
    padding: 35px 15px 45px;
  }

  .contact-title {
    font-size: 31px;
    line-height: 1.05;
  }

  .contact-description {
    max-width: 330px;
  }

  .contact-content {
    margin-top: 25px;
  }

  .contact-card {
    height: auto;
    min-height: 220px;
    margin-bottom: 20px;
  }

  .contact-image {
    height: 260px;
  }
}

/* =================================
           SMALL MOBILE
        ================================= */

@media (max-width: 480px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-card {
    padding: 23px 20px 18px;
  }

  .contact-image {
    height: 230px;
  }
}
.site-footer {
  background: #704c36;
  color: #ffffff;
  padding: 42px 0 18px;
}

.footer-container {
  max-width: 1050px;
  margin: 0 auto;
}

/* ==============================
       FOOTER TOP
    ============================== */

.footer-top {
  min-height: 170px;
}

/* ==============================
       LOGO
    ============================== */

.footer-logo {
  margin: 0 0 40px;

  font-size: 16px;
  font-weight: 700;

  color: #ffffff;
}

/* ==============================
       DESCRIPTION
    ============================== */

.footer-description {
  max-width: 365px;

  margin: 0;

  font-size: 14px;
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.72);
}

/* ==============================
       FOOTER HEADINGS
    ============================== */

.footer-heading {
  margin: 0 0 16px;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1px;

  color: #d7a70b;
}

/* ==============================
       NAVIGATION
    ============================== */

.footer-nav {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 14px;

  color: rgba(255, 255, 255, 0.75);

  text-decoration: none;
  cursor: pointer;

  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* ==============================
       CONNECT
    ============================== */

.footer-email {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  font-size: 9px;

  color: rgba(255, 255, 255, 0.75);
}

.footer-email i {
  font-size: 12px;
}

.footer-email a {
  color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
  text-decoration: underline;

  text-underline-offset: 2px;
}

.footer-email a:hover {
  color: #ffffff;
}

/* ==============================
       LINKEDIN
    ============================== */

.linkedin-button {
  width: 27px;
  height: 27px;

  /* border: 1px solid rgba(255, 255, 255, 0.25); */

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.8);

  text-decoration: none;

  transition: all 0.2s ease;
}

.linkedin-button i {
  font-size: 11px;
}

.linkedin-button:hover {
  background: rgba(255, 255, 255, 0.1);

  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.5);
}

/* ==============================
       DIVIDER
    ============================== */

.footer-divider {
  width: 100%;

  height: 1px;

  background: rgba(255, 255, 255, 0.18);

  margin-top: 18px;
}

/* ==============================
       COPYRIGHT
    ============================== */

.footer-bottom {
  padding-top: 25px;

  text-align: center;
}

.copyright {
  margin: 0;

  font-size: 7px;

  letter-spacing: 1px;

  color: rgba(255, 255, 255, 0.45);
}

/* ==============================
       TABLET
    ============================== */

@media (max-width: 991px) {
  .site-footer {
    padding: 40px 25px 18px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-description {
    max-width: 280px;
  }
}

/* ==============================
       MOBILE
    ============================== */

@media (max-width: 767px) {
  .site-footer {
    padding: 38px 20px 18px;
  }

  .footer-top {
    min-height: auto;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-description {
    max-width: 100%;

    margin-bottom: 30px;
  }

  .footer-navigation {
    margin-bottom: 30px;
  }

  .footer-connect {
    margin-bottom: 10px;
  }

  .footer-divider {
    margin-top: 25px;
  }
}

/* ==============================
       SMALL MOBILE
    ============================== */

@media (max-width: 480px) {
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-description {
    font-size: 10px;
  }

  .footer-nav a,
  .footer-email {
    font-size: 10px;
  }
}


.main-menu a {
    position: relative;
    display: inline-block;

    color: #333333;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding: 8px 0;
}

/* Underline */
.main-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #704c36;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

/* Hover - left to right */
.main-menu a:hover::after {
    transform: scaleX(1);
}

/* Active menu item */
.main-menu a.active::after {
    transform: scaleX(1);
}

/* Hover color */
.main-menu a:hover,
.main-menu a.active {
    color: #704c36;
    cursor: pointer;
}
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}