:root {
  --white: #fff;
  --black: #000;
}

/* Inter Regular */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter Italic */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* LT Superior Serif Regular */
@font-face {
  font-family: "LT Superior Serif";
  src: url("../fonts/LTSuperiorSerif-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* LT Superior Serif Medium */
@font-face {
  font-family: "LT Superior Serif";
  src: url("../fonts/LTSuperiorSerif-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* LT Superior Serif Semibold */
@font-face {
  font-family: "LT Superior Serif";
  src: url("../fonts/LTSuperiorSerif-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* LT Superior Serif Bold */
@font-face {
  font-family: "LT Superior Serif";
  src: url("../fonts/LTSuperiorSerif-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* LT Superior Serif Extra Bold */
@font-face {
  font-family: "LT Superior Serif";
  src: url("../fonts/LTSuperiorSerif-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

/* view */
.view--mobile{
  display: none !important;
}
/* view end */

/* text color */
.text--white {
  color: var(--white);
}
.text--black {
  color: var(--black);
}
.text--uppercase {
  text-transform: uppercase;
}
/* text color end */

/* container */
.custom--container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}
/* container end */

/* custom btn */
.arrow--btn {
    position: relative;
    font-size: 12px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 10px;
    width: fit-content;
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    color: var(--black);
}

.arrow--btn:after {
    content: '';
    width: 19px;
    height: 11px;
    background-image: url('../images/icons/arrow-read.svg');
    background-repeat: no-repeat;
    background-position: center;
}
/* custom btn end */

/* heading */
.heading--h2{
  font-family: 'LT Superior Serif';
  font-size: 40px;
  font-weight: 400;
}
/* heading end */

/* padding */
.py--50 {
  padding: 50px 0;
}
.py--80 {
  padding: 80px 0;
}
.py--100 {
  padding: 100px 0;
}
.py--120 {
  padding: 120px 0;
}
.py--200 {
  padding: 200px 0;
}
.pt--50 {
  padding-top: 50px;
}
.pt--80 {
  padding-top: 80px;
}
.pt--150 {
  padding-top: 150px;
}
.pt--100 {
  padding-top: 100px;
}
.pt--200 {
  padding-top: 200px;
}
.pb--150 {
  padding-bottom: 150px;
}
/* padding end */

/* Header */
.main--header {
  position: fixed;
  width: 100%;
  background: rgb(0 0 0 / 20%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  top: 30px;
  left: 0;

  z-index: 33333;

  transition: top 0.4s ease;
}

.main--header.header--top {
  top: 0;
}

.main--header .inner--header {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 10px 50px;
  transition: 0.3s ease;
}

.main-nav nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.main-nav nav ul li a {
  text-decoration: none;
  color: var(--white);
}
/* Header end */

/* =========================================
   FONTS
========================================= */

.main-logo {
  font-family: LT Superior Serif;
  font-size: 30px;
}
.main-logo >span > a{
  text-decoration: none;
}
.main-nav {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 100%;
}

/* =========================================
   MOBILE RESPONSIVE - HEADER
========================================= */
.mobile-menu-btn,
.mobile-menu {
    display: none;
}

/* .newsletter--message {
    margin-top: 10px;
    font-size: 14px;
    min-height: 20px;
} */

.newsletter--message.error {
    color: #d33;
}

.newsletter--message.success {
    font-size: 14px;
    padding-top: 10px;
    color:var(--black);
}

button.newsletter--submit {
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
}

@media (max-width: 768px) {

    /* Hide desktop nav */
    .main-nav {
        display: none;
    }

    .main--header {
        position: relative;
        z-index: 1000;
    }

    .inner--header {
        position: relative;
        z-index: 1002;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-logo {
        position: relative;
        z-index: 1002;
    }

    /* Hamburger button */

    .mobile-menu-btn {
        display: block;

        position: relative;

        width: 40px;
        height: 40px;

        border: 0;
        padding: 0;

        background: transparent;
        cursor: pointer;

        z-index: 1003;
    }

    .mobile-menu-btn-bg {
        position: absolute;

        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        border-radius: 25%;

    }

    .mobile-menu-icons {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 2;
                background: rgb(16 16 16 / 27%);
        border-radius: 50px;
    }

    .mobile-menu-icons svg {
position: absolute;
        width: 15px;
        height: 15px;

        left: 50%;
        top: 50%;

        transform: translate(-50%, -50%) !important;
        fill: #ffffff;
    }

    .close-icon {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            translateY(125%) !important;
    }

    /* Full-screen menu */

    .mobile-menu {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        justify-content: center;
        background: linear-gradient(270deg, #f0f0ee 51.67%, #f9e7d6 100%);
        clip-path: circle(0px at calc(100% - 45px) 45px);
        z-index: 1001;
        overflow: auto;
    }

    .mobile-menu nav {
        width: 100%;
    }

    .mobile-menu ul {
        list-style: none;

        margin: 0;
        padding: 0 15px;
    }

    .mobile-menu li {
        position: relative;

        margin: 15px 0;

        transform: translateX(0px) !important;

        opacity: 1 !important;

        pointer-events: none;
    }

    .mobile-menu li.dropdown.open .dropdown-menu {
        position: relative;
        display: block;
        background: transparent;
        border: none;
        padding: 0px;
        padding-top: 5px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ccc;
        border-radius: 0px;
    }

    .mobile-menu li a.dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: space-between;
    }

    .mobile-menu li a.dropdown-toggle:after {
        display: none;
    }

    .mobile-menu li a.dropdown-toggle .caret img {
        width: 15px;
        transition: 0.3s;
    }

    .mobile-menu li.dropdown.open a.dropdown-toggle .caret img {
        transform: rotate(180deg);
    }

    .mobile-menu li.dropdown.open .dropdown-menu li a {
        font-size: 14px;
    }

    .mobile-menu li.dropdown.open .dropdown-menu li:last-child {
        margin: 0;
    }

    .mobile-menu li.dropdown.open .dropdown-menu li:not(:last-child) {
        margin: 5px 0;
    }

    .mobile-menu li a {
        display: inline-block;
        color: var(--black);
        font-size: 16px;
        font-weight: 100;
        line-height: 1.2;
        text-decoration: none;
        transition: opacity 0.3s ease;
        text-transform: uppercase;
    }

    .mobile-menu li a:hover {
        opacity: 1;
    }
}
@media (max-width: 768px) {
       .main--header {
       position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .main-nav nav ul {
        gap: 20px;
    }

    .main-logo {
        font-size: 24px;
    }

    .main-nav {
        font-size: 12px;
    }
}

/* Mobile (480px and below) */

/* custom btn end */

.main-nav nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--white);
}

/* Underline */
.main-nav nav ul li a::after {
  content: "";
  position: absolute;

  bottom: -5px;
  left: 50%;

  width: 0;
  margin-top: 2px;
  height: 1px;

  background-color: var(--white);

  transition:
    width 0.3s ease,
    left 0.3s ease;
}

/* Hover */
.main-nav nav ul li a:hover::after {
  width: 100%;
  left: 0;
}
.nurturing--quote p {
  color: #b5b5b5;
}

.nurturing--quote p .quote-char {
  color: #b5b5b5;
  transition: color 0.1s linear;
}

.spotlight--card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spotlight--read-more {
  padding-top: 5px;
}

/* =========================================
   FOOTER
========================================= */

.footer--section {
  width: 100%;
  padding: 50px 50px 30px 50px;
  color: #111111;
  background: linear-gradient(0deg, #E8F0ED 0%, #e8ede8 100%);
  border-top: 1px solid #D4D4D4;
  position: relative;
  z-index: 10;
}

/* =========================================
   FOOTER TOP
========================================= */

.footer--top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer--about {
    max-width: 390px;
    width: 100%;
}

.footer--top .footer--join .newsletter {
    width: 100%;
}

/* =========================================
   COMMON HEADINGS
========================================= */

.footer--about h2,
.footer--links h2,
.footer--join h2 {
  margin: 0;
  font-family: LT Superior Serif;
  font-size: 32px;
  line-height: 1;
  color: #000000;
  font-weight: 400;
}

/* =========================================
   LEFT - ABOUT
========================================= */

.footer--about p {
  margin-top: 25px;
}

/* Social icons */

.footer--socials {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 15px;
}

.footer--socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

.footer--socials img {
  width: 35px;
  height: 35px;
}

/* =========================================
   MIDDLE - QUICK LINKS
========================================= */

.footer--links {
  text-align: left;
}

.footer--links ul {
  margin-top: 25px;
  padding: 0;

  list-style: none;
}

.footer--links li {
  margin-bottom: 10px;
}

.footer--links li:last-child {
  margin-bottom: 0;
}

.footer--links a {
  /* font-size: 18px; */
  color: var(--black);
  text-decoration: none;
}

.footer--links a:hover {
  opacity: 0.6;
}

/* =========================================
   RIGHT - JOIN
========================================= */

.footer--join h2 {
  margin-bottom: 1px;
}

.footer--join h3 {
  margin: 0;
  font-family: LT Superior Serif;
  font-size: 25px;
  color: var(--black);
  font-weight: 400;
}

.footer--join > p {
  margin-top: 10px;
}

/* =========================================
   NEWSLETTER
========================================= */

.footer--newsletter {
  width: 100%;
  margin-top: 26px;
}

.newsletter--label {
  /* font-family: "LT Superior Serif", serif; */
  font-size: 14px;
  color: var(--black);
}

.newsletter--input {
  display: flex;
  align-items: center;

  width: 100%;

  border-bottom: 1px solid #111111;
}

.newsletter--input input {
  flex: 1;

  min-width: 0;

  padding: 2px 0 5px;

  border: 0;
  outline: 0;

  background: transparent;

  font-size: 12px;
  font-style: italic;

  color: #111111;
}

.newsletter--input input::placeholder {
  color: #111111;
  opacity: 1;
}

.newsletter--input button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  cursor: pointer;
}

.footer--subscribe {
  position: relative;
}

.footer--subscribe .newsletter--input button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  align-items: flex-start;
}

.newsletter--input button img {
  display: block;

  width: 15px;
  height: 15px;

  object-fit: contain;
}

.newsletter--input button {
  transition: transform 0.3s ease;
}

.newsletter--input button:hover {
  transform: translateX(3px);
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 35px;
}

.footer--bottom > p {
  margin: 0;
  font-size: 14px;
  color: var(--black);
}

/* Legal links */

.footer--legal {
  display: flex;
  align-items: center;
}

.footer--legal a,
.footer--legal span {
  font-size: 14px;
  color: var(--black);
}

.footer--legal a {
  text-decoration: none;
}

.footer--legal span {
  margin: 0 3px;
}

.footer--legal a:hover {
  text-decoration: underline;
}
.fossil--section {
  position: relative;
  background: #f9e7d6;
}

.fossil--section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -190px;
  width: 100%;
  height: 190px;
  background: #f9e7d6;
  z-index: -1;
}
.top--scroll {
  display: none;
}

/* mega menu */


    /* Full screen gradient shown first */
    .gradient--intro {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;

        background: linear-gradient(270deg,
                #F0F0EE 51.67%,
                #F9E7D6 100%);

        z-index: 100;
        pointer-events: none;
    }
/* mega menu end */

/* =========================================
   MOBILE RESPONSIVE - HEADER
========================================= */

@media (max-width: 1024px) {
  .py--120 {
    padding: 80px 0;
  }
  .pb--150 {
    padding-bottom: 100px;
  }

  .pt--200 {
    padding-top: 150px;
  }
  .footer--about h2,
  .footer--links h2,
  .footer--join h2 {
    font-size: 32px;
  }

  .footer--section {
    padding: 50px;
    position: relative;
    /* z-index: 3; */
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .view--desktop{
    display: none !important;
  }
  .view--mobile{
    display: block !important;
  }
  .heading--h2 {
      font-size: 28px;
  }
  .top--scroll {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 14%;
    right: 15px;
    background: var(--black);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .top--scroll.show{
    opacity: 1;
    visibility: visible;
  }

  .top--scroll img {
    filter: brightness(0) invert(1);
    transform: rotate(316deg);
  }
  .main--header {
    position: fixed;
  }
  .py--120 {
    padding: 30px 0px;
  }
  .pt--200 {
    padding-top: 50px;
  }
  .pb--150 {
    padding-bottom: 50px;
  }
  .main--header .inner--header {
    min-height: 70px;
    padding: 10px 15px;
    gap: 15px;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .main-nav nav ul {
    gap: 20px;
  }

  .main-logo {
    font-size: 20px;
  }

  .main-nav {
    font-size: 12px;
  }
  .footer--section {
    padding: 30px 15px;
    position: relative;
    z-index: 3;
  }

  .footer--top {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer--about h2,
  .footer--links h2,
  .footer--join h2 {
    font-size: 24px;
  }

  .footer--newsletter{
    margin-top: 10px;
  }

  .footer--join > p{
    display: none;
  }
  .footer--links {
    text-align: left;
  }

  .footer--links ul,
  .footer--about p {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .footer--bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    row-gap: 10px;
    text-align: left;
  }

  .footer--bottom > p {
    font-size: 12px;
  }

  .footer--legal {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer--legal a {
    font-size: 12px;
  }

  .footer--join h3 {
    font-size: 20px;
  }

  .footer--links a {
    font-size: 16px;
  }
  .footer--about, .footer--links {
      border-bottom: 1px solid #ccc;
      padding-bottom: 25px;
  }
  .footer--top .footer--join .newsletter {
      padding: 0px;
  }
}
