@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
h1 {
    font-family: "Ivy Presto Headline", serif;
    font-weight: 600;
    line-height: 100%;
    font-size: 84px;
}
span {
    font-family: "Ivy Presto Display", serif;
    font-weight: 300;
    font-style: italic;
}
h2 {
    font-family: "Ivy Presto Headline", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 110%;
}
h3 {
   font-family: "Ivy Presto Headline", serif;
   font-size: 56px;
   font-weight: 600;
   line-height: 110%;
}
h4 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}
h6 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 24px;
  font-weight: 600;
}
p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
}
b {
    font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dark-blue: #152257;
    --dark-purple: #672076;
    --light-blue: #7CA6DB;
    --orange: #E4562E;
    --magenta: #C80181;
    --white: #fff;
    --black: #101010;
    --gray: #FAFAF8;
    --pale-bule: #E2EFFF;
}
.btn.magenta{
    background-color: var(--magenta);
    color: var(--white);
    padding: 16px 24px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    display: flex;
    text-align: center;
    gap: 10px;
}
.btn {
    background-color: none;
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    justify-content: center;
    border: 1px solid var(--white);

}
@media (max-width: 1024px) {
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 50px;
  }
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 45px;
  }
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
}


/* Hero Section */
.hero-wrapper {
  position: relative;
  min-height: 85rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: top center; 
  z-index: 1;
}

.site-header,
.hero-wrapper_lower {
  position: relative;
  z-index: 3;
}

.site-header {
  padding: 25px 24px;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.logo img {
  width: 230px;
  height: 45px;
}

.nav {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  font-weight: 600;
  border-bottom-color: var(--white);
  opacity: 1;
}

.header-btn {
  width: 125px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--white);
  padding: 14px 24px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  padding: 0px 20px;
  color: var(--white);
}

.hero-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-image {
  max-width: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
}

.hero-content {
  padding: 0px 0px 20px 0px;
  max-width: 695px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.hero-content_upper {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.hero-actions {
  width: 275px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 13px;
}
@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 60px;
  }
  .hero-content_upper {
    text-align: left;
    gap: 30px;
  }
  .hero-content {
    gap: 30px;
    padding: 0px 20px 20px 0px;
  }
  .hero-container {
    align-items: end;
  }
  .hero-wrapper {
    min-height: 60rem;
  }
  .hero-wrapper_lower {
    padding: 40px 5% !important;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 46rem;
  }
  .hero-img {
    object-position: center top;
    height: 100%;
  }
  .hero-wrapper_lower {
    padding: 30px 5% !important;
    align-items: flex-end;
  }
}
@media (max-width: 991px) {
  .nav {
    display: none;      
    flex-direction: column;
    gap: 15px;
    background: var(--magenta);
    padding: 20px;
    position: absolute;
    top: 90px;           
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav.active {
    display: flex;      
  }

  .menu-toggle svg {
    color: var(--white);
    width: 32px;
    height: 32px;
  }
  
  .menu-toggle {
    display: block;      
  }

  .nav-menu.active {
    display: block; 
  }

  .hero-container {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    width: 80%;
  }
  .header-btn {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 0px 20px;
  }

  .hero-image img {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .hero-wrapper {
    min-height: 38rem;
  }
  .hero-img {
    object-position: top center;
  }
  .hero-wrapper_lower {
    padding: 20px 5% !important;
  }
}


/* -------- constellation wrapper -------- */
.hero-wrapper_lower {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 6%;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 1000px;
  color: var(--white);
}

.hero-content span {
    color: var(--orange);
}


/* Prismati Section */
.prismatic-section {
  background: var(--pale-bule);
  padding: 80px 20px 0px 20px;
}

.prismatic-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-content: space-between;
  align-items: center;
}

.prismatic-content {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.prismatic-content_upper {
  display: flex;
  flex-direction: column;
  gap: 45px;   
}

.primatic-content_lower {
  display: flex;
  flex-direction: column;
  gap: 36px; 
}

.prismatic-content h4 {
  color: var(--magenta);
  font-weight: 300;
  font-style: italic;  
}

.prismatic-image img {
  width: 100%;
  max-width: 630px;
  display: block;
}

@media (max-width: 1024px) {
  .prismatic-section {
    padding: 80px 20px;
  }
  .prismatic-content {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .prismatic-section {
    padding: 50px 20px;
  }
  .prismatic-container {
    gap: 50px;
    flex-direction: column;
  }
  .prismatic-content {
    width: 100%;
    max-width: 100%;
  }
  .prismatic-image img{
    max-width: 100%;
  }
}

/* Wiser Section */
.wiser-section {
  background: var(--white);
  padding: 80px 20px 80px 0px;
  overflow: hidden;
}

.wiser-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 70px;
  align-items: center;
}

.wiser-image {
  flex: 0 0 45%;
  position: relative;
  left: -120px; 
}

.wiser-image img {
  width: 100%;
  max-width: 750px;
}

.wiser-content {
  max-width: 705px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
}

.wiser-content_upper{
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.wiser-content h4{
  font-weight: 300;
  font-style: italic;
  color: var(--orange)
}
@media (max-width: 1024px) {
  .wiser-section {
    padding: 50px 20px 50px 0px;
  }
  .wiser-image {
    left: -20px;
  }
  .wiser-container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .wiser-container {
    flex-direction: column;
  }
  .wiser-content {
    padding-left: 20px;
    max-width: 100%;
  }
}


/* This is Where Section */
.this-where-section {
  background: var(--pale-bule);
  overflow: hidden;
  padding: 0px 0px 0px 20px;
}

.this-where-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.this-where-content {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
}

.this-where-text {
  display: flex;
  flex-direction: column;
  gap: 45px; 
}

.this-where-content h4{
  font-weight: 300;
  font-style: italic;
  color: var(--magenta);
}

.this-where-image {
  flex: 0 0 45%;
  position: relative;
  right: -120px;
}

.this-where-image img {
  width: 100%;
  max-width: 750px;
  display: block;
}
@media (max-width: 1024px) {
  .this-where-section  {
    padding: 50px 0px 50px 20px;
  }
  .this-where-image {
    right: -20px;
  }
  .this-where-container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .this-where-section {
    padding: 50px 20px;
  }
  .this-where-container {
    flex-direction: column;
  }
  .this-where-content {
    max-width: 100%;
  }
}

/* Who Is This For */
.who-for-section {
  padding: 120px 20px;
  background: #ffffff;
}

.who-for-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.who-for-content {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}

.who-for-content span{
  color: var(--magenta);
}

.who-for-content img {
  width: 430px;
}

.who-for-cards {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.who-for-card {
  display: flex;
  gap: 62px;
  padding: 90px 115px;
  color: #ffffff;
}

.who-for-listeners {
  border-radius: 90px 0px 90px 0px;
  background: linear-gradient(169.6deg, #152257 -55.18%, #C80180 198.76%);
}

.who-for-guests {
  border-radius: 0px 90px 0px 90px;
  background: linear-gradient(169.6deg, #152257 -55.18%, #C80180 198.76%);
}

.who-for-card-icon {
  flex-shrink: 0;
  width: 48px;
}

.who-for-card-content span {
  font-size: 32px;
  font-weight: 300;
}

.who-for-card ul {
  padding-left: 18px;
}

.who-for-card li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .who-for-card {
    padding: 90px 80px;
  }
}
@media (max-width: 768px) {
  .who-for-section {
    padding: 50px 20px;
  }
  .who-for-container {
    gap: 60px;
  }
  .who-for-card {
    flex-direction: column;
    padding: 50px;
  }
  .who-for-cards {
    gap: 45px;
  }
  .who-for-content img {
    width: 310px;
  }
  .who-for-card-icon {
    width: 40px;
  }
}
@media(max-width: 425px) {
  .who-for-card {
    padding: 50px 30px;
  }
}

/* Episode Moves Section */
.episode-moves {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.episode-bg {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  background:
    linear-gradient(
      to bottom,
      rgba(30, 40, 95, 0.7) 0%,
      rgba(30, 40, 95, 0.7) 20%,
      rgba(30, 40, 95, 0) 45%
    ),
    radial-gradient(
      81.92% 81.92% at 51.16% 103.7%,
      rgba(21, 34, 87, 0) 0%,
      #152257 100%
    ),
    url("/assets/episode-bg.png");
  background-size: cover;
  background-position: calc(2);
  background-repeat: no-repeat;
}

.episode-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 130px;
  justify-content: space-between;
}

.episode-left {
  display: flex;
  flex-direction: column;
  gap: 54px;
  max-width: 425px;
  width: 100%;
}

.episode-left_heading {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.episode-icon {
  width: 63px;
  height: 63px;
}

.episode-left_heading h2 {
  font-style: italic;
  font-weight: 300;
}

.episode-left_heading span {
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
}

.journey-line {
  position: relative;
  width: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  height: auto;
  min-height: 100%;
  display: block;
  justify-content: center;
}

.line-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255,255,255,0.9);
  transition: height 0.15s ease-out, width 0.25s ease;
}

.episode-right {
  max-width: 847px;
  width: 100%;
  gap: 100px;
  display: flex;
  flex-direction: row;
}

.episode-right_content {
  max-width: 745px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.episode-step {
  display: flex;
  flex-direction: row;
  gap: 62px;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.episode-step.active {
  opacity: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-icon img {
  width: 60px;
  height: 65px;
  opacity: 0.9;
}

.step-content ul {
  padding-left: 40px;
}

.step-content li {
  font-family: "Ivy Presto Headline", serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  line-height: 100%;
}

.episode-pill {
  padding: 32.5px 68px;
  background: var(--magenta);
  border-radius: 0px 45px;
  width: fit-content;
  margin: 0 auto;
}

.episode-pill h4 {
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 1024px) {
  .episode-inner {
    flex-direction: column;
  }
  .step-content li {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .episode-inner {
    padding: 0px 20px;
    gap: 50px;
  }
  .episode-left {
    width: 100%;
  }
  .episode-right {
    width: 100% !important;
  }
  .episode-right {
    gap: 35px;
  }
  .episode-step {
    gap: 20px;
  }
  .step-content li {
    font-size: 24px;
  }
  .episode-right_content {
    gap: 35px;
  }
  .episode-bg {
    padding: 50px 20px;
    gap: 50px;
  }
  .episode-pill {
    padding: 20px;
  }
  .episode-left {
    gap: 25px;
  }
}
@media (max-width: 425px) {
  .step-content li {
    font-size: 20px;
  }
}


/* Wiser Exilara Section */
.wiser-exilara-section {
  position: relative;
  min-height: 720px; 
  padding: 100px 20px;
  background:
    linear-gradient(
      90deg,
      #c80180 0%,
      #c80180 38%,
      rgba(200, 1, 128, 0.85) 52%,
      rgba(200, 1, 128, 0.45) 65%,
      rgba(200, 1, 128, 0.15) 78%,
      rgba(200, 1, 128, 0) 90%
    ),
    url("/assets/wiser-exilara.png");
  background-repeat: no-repeat;
  background-size: contain;          
  background-position: right center; 
}

.wiser-exilara-container {
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
  align-items: center;
}

.divider-wrap img {
  width: 430px;
}

.wiser-exilara-content {
  max-width: 580px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.exilara-ask {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exilara-ask span {
  font-size: 32px;
} 

.wiser-ask {
  display: flex;
  flex-direction: column;
  gap: 12px;
} 

.wiser-ask span {
  font-size: 32px;
}
@media (max-width: 1024px) {
  .wiser-exilara-section {
    min-height: 480px;
    padding: 40px 20px;
    background:
      linear-gradient(
        180deg,
        rgba(200, 1, 128, 0.25) 0%,
        rgba(200, 1, 128, 0.15) 40%,
        rgba(200, 1, 128, 0.05) 70%,
        rgba(200, 1, 128, 0) 100%
      ),
      url("/assets/wiser-exilara.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }
}
@media (max-width: 768px) {
  .divider-wrap img {
    width: 300px;
  }
}

/* Room Entery Section */
.room-entry-section {
  background: var(--pale-bule);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.room-entry-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.room-entry-header {
  display: flex;
  flex-direction: column;
  gap: 45px;
  text-align: center;
  align-items: center;
}

.room-entry-header span {
  color: var(--magenta);
}

.room-entry-header img {
  width: 430px;
}

.room-entry-cards {
  display: flex;
  flex-direction: row;
  gap: 73px;
}

.room-entry-card {
  align-content: center;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px 63px 100px 82px;
  border-radius: 0px 90px;
}

.room-entry-card.listen-watch {
  background: linear-gradient(333.18deg, #152257 -14.05%, #C80180 110.59%);
}

.room-entry-card.offer-story {
  background: linear-gradient(201.51deg, #152257 -43.56%, #C80180 119.84%);
}

.room-entry-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.room-entry-card img {
  width: 59px;
  height: 61px;
}

.room-entry-list {
   font-family: "Poppins", sans-serif;
   font-size: 18px;
   margin-left: 30px;
}

.room-entry_lower span {
  font-size: 18px;
  line-height: 35px;
}

@media (max-width: 1024px) {
  .room-entry-cards {
    gap: 45px;
  }
  .room-entry-card {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .room-entry-section {
    padding: 50px 20px;
  }
  .room-entry-container {
    gap: 50px;
  }
  .room-entry-cards {
    flex-direction: column;
  }
  .room-entry-header img {
    width: 310px;
  }
  .room-entry-card {
    padding: 50px 40px;
  }
}

/* Bring wiser section */
.bring-wiser-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.bring-wiser-header {
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.bring-wiser-header img {
  width: 420px;
}

.bring-wiser-cards {
  display: flex;
  flex-direction: row;
  gap: 73px;
}

.wiser-card {
  width: 100%;
  background: #ffffff;
  border-radius: 0px 45px;
  padding: 85px 82px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.bring-wiser-header span {
  color: var(--magenta);
}

.card-points {
   font-family: "Poppins", sans-serif;
   font-size: 18px;
   margin-left: 30px;
}
@media (max-width: 1024px) {
  .bring-wiser-cards {
    gap: 45px;
  }
  .wiser-card {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .bring-wiser-container {
    gap: 50px;
  }
  .bring-wiser-cards {
    flex-direction: column;
  }
  .wiser-card {
    padding: 50px 40px;
  }
  .bring-wiser-header img {
    width: 310px;
  }
}


/* Ready Section */
.ready-section {
  background-color: #CE4793;
  padding: 94px 20px;
  color: var(--white);
}

.ready-container {
  max-width: 1245px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ready-container h2 {
  font-weight: 300;
  font-style: italic;
}

.ready-cta {
  display: flex;
  flex-direction: column;  
  gap: 22px;
  width: 100%;
  max-width: 610px;
}

.ready-cta a {
  width: 490px;
}

@media (max-width: 768px) {
  .ready-section {
    padding: 50px 20px;
  }
  .ready-container {
    flex-direction: column;
    align-items: start;
  }
  .ready-cta a {
    width: 100%;
  }
}


/* Prismatic Section */
.brand-section {
  width: 100%;
  color: var(--white);
  background: #1E285F;
  padding: 115px 20px;
  text-align: center;
  box-shadow: 0px 4px 16px 5px #00000040 inset;
}

.brand-inner {
  max-width: 990px;
  width: 100%;
  margin: auto;
}

.brand-inner h2 {
   font-weight: 300;
   font-style: italic;
}

.brand-inner span {
   color: var(--orange); 
}

.brand-inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 768px) {
   .brand-section {
    padding: 50px 20px;
   } 
}

/* Footer */
.site-footer {
  background: var(--white);
  color: #1E285F;
  padding: 58px 20px 65px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-around;
}

.footer-brand {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand img {
  width:  230px;
  height: 50px;
}

.footer-brand p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-menu_wrapper {
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-col h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-col a {
  font-family: "Poppins", sans-serif;
  color: #1E285F;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-col a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-col a.active {
  position: relative;
  display: inline-block;
}

.footer-col a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-menu_right {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.footer-menu_privacy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-menu_privacy h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu_privacy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-menu_privacy a {
  font-family: "Poppins", sans-serif;
  color: #1E285F;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-menu_privacy a.active {
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-contact_wrapper h6{
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-contact_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-contact p{
  font-family: "Ivy Presto Display";
  font-size: 18px;
  font-style: italic;
}

.footer-contact a{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1E285F;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-bottom p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-bottom small {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-menu_wrapper {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .site-footer {
    padding: 40px 25px;
  }

  .footer-menu_wrapper {
    flex-direction: column;
  }
}