
:root {

  /**
   * colors
   */

  --rich-black-fogra-29: #31493cf0;
  --middle-blue-green_40: hsla(174, 64%, 71%, 0.4);
  --midnight-green: hsl(186, 100%, 19%);
  --midnight-green_a25: hsla(186, 100%, 19%, 0.25);
  --independece: hsl(236, 14%, 39%);
  --verdigris: #22372c;
  --ming: hsl(186, 72%, 24%);
  --space-cadet: #31493c;
  --eerie-black: hsl(0, 0%, 13%);
  --alice-blue: hsl(187, 25%, 94%);
  --gray-web: hsl(0, 0%, 50%);
  --gainsboro: hsl(0, 0%, 87%);
  --white: hsl(0, 0%, 100%);
  --white_a20: hsla(0, 0%, 100%, 0.2);
  --white_a10: hsla(0, 0%, 100%, 0.1);
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Roboto', sans-serif;
  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald); }

.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center { text-align: center; }

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }

[data-reveal="right"] { transform: translateX(50px); }

[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 6px;
  z-index: 4;
}

.header.active {
  position: fixed;
  background-color: var(--rich-black-fogra-29);
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item { border-block-start: 1px solid var(--white_a10); }

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}


/*-----------------------------------*\
  #Custom
\*-----------------------------------*/

.z1{
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.z3{
  height: 55px;
  transition: all 1.5s ease;
}
.z2{
  height: 75px;
}
.z4{
  height: 75px;
  display: none;
  opacity: 0;
  transition: all 2s ease;
}
.a0{
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.ops{
  display: block;
  opacity: 1;
}
.dsp{
  display: none;
}


.a1{
  position: absolute;
  width: 100%;
  z-index: -2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a2{
  position: absolute;
  z-index: -1;
  background-color: #00000094;
  width: 100%;
  height: 100%;
}
.a3{
  width: auto;
  height: 100vh;
}
.a4 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: 200;
  text-align: center;
}
.a5{
  width: 240px;
  opacity: 0;
  transition: all 1.5s ease ;
}

.a6{
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  opacity: 0;
  transition: all 2s ease ;
}
.a7{
  font-size: 2rem;
  font-weight: 100;
  opacity: 0;
  transition: all 3s ease ;
}
.opa{
  opacity: 1;
}
.a8{
  height: auto;
  width: 100%;
  background: linear-gradient(to top, #22372c 60%, transparent 100%);
  position: absolute;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.a9{
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
gap: 10px;
align-items: center;
border-right: none;
color: #fff;
}
.a9a{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  color: #fff;
}
.a10{
width: 30px;
}
.a11{
font-weight: 100;
line-height: 2rem;

}
.a12{
  margin-bottom: 150px;
}
.a12b{
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}
.a13{
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 300;
  color: #e4bd82;
}
.a14{
  color: #22372c;
  font-size: 5rem;
  line-height: 4.8rem;
}
.a15{
  width: 130px;
  margin-top: 20px;
  border-bottom: 3px solid #e4bd82;
  margin-bottom: 50px;
}
.a16{
  text-align: justify;
  color: #22372c;
  margin-top: 20px;
}
.a17{
  width: 90%;
  position: absolute;
  z-index: -1;
  right: 0;
  top: -121px;
}
.a18{
  width: 100%;
}
.a19{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.b20{
  height: 110%;
  top: -12px;
  left: -80px;
  position: absolute;
  z-index: 0;

}
.a20{
  background-color: #22372c;
}
.b21{
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.x21{
  position: absolute;
  height: 100%;
  left: -70px;
}
.b22{
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.a21{
  width: 100%;
  color: #22372c;
  background-color: #fff; 
  padding: 20px;
  height: 500px;
}
.a22{
line-height: 2rem;
font-size: 2rem;
font-weight: 300;
}
.a23{
  font-size: 4rem;
  line-height: 5rem;
  text-align: center;
}

.a24{
  width: 100px;
  margin-top: 20px;
  margin-bottom: 50px;
  border-bottom: 3px solid #e4bd82;

}
.a25{
  text-align: justify;
}
.b23{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.a26{
  width: 50%;
  height: 600px;
  position: absolute;
  z-index: 0;
  background-color: #fff;
  margin-left: 100px;
}
.a27{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.a28{
  width: 100%;
  position: relative;
}
.a28a{
  width: 100%;
  position: relative;
}
.a28b{
  position: absolute;
  z-index: 2;
  right: 30px;
  top: 60%;
}
.a28e{
  display: flex;
  gap: 50px;
  margin-bottom: 15px;
}
.a28c{
height: 75px;
}
.b28d{
  border-bottom: 3px solid #e4bd82;
  width: 250px;
}
.b28f{
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: -195px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.b28f2{
  background-color: #22372c;
  width: 300px;
  padding: 10px;
      box-shadow: 4px 7px 16px #0000008a;

}
.b28g{
  color: #fff;
  line-height: 2rem;
  margin-bottom: 10px;
}
.a29{
width: 100%;
}
.a30{
color: #e4bd82;
font-size: 3rem;
}
.a31{
font-size: 4rem;
line-height: 5rem;
color: #22372c;
}
.a32{
  display: flex;
  flex-direction: column-reverse;
}
.a33{
  font-weight: 600;
}
.a34{
  list-style: disc;
  margin-left: 15px;
}

.a35{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 10px;
}
.a35j{
   
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
 }
.a35h{
     margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
 }
.a35b{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  padding-bottom: 10px;
 }
 .a35bz{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  padding-bottom: 10px;
 }
.a36{
width: 100%;
height: 185px;
overflow: hidden;
position: relative;
}

.a36b{
  opacity: 0;
  position: absolute;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #22372ca3;
  color: #fff;
  backdrop-filter: blur(2px);
  transition: all 0.5s ease;
}
.targe{
  display: block;
  position: absolute;
  bottom: 0;
  padding: 5px;
  background: #31493cf0;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.1;
}
.a36p{
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.a37{
  width: 100%;
}

.a36p:hover .a37,.a36p:focus .a37{
  width: 105%;
}
.a36p:hover .a36b,.a36p:focus .a36b{
  opacity: 1;
}
.a36:hover .a37,.a36:focus .a37{
  width: 105%;
}
.a36:hover .a36b,.a36:focus .a36b{
  opacity: 1;
}
.a36c{
  line-height: 1.3;
  text-align: center;
}

.a36h{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 10px;
}
.a36x{
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  }


  .a36j{
    width: 100%;
  height: 177px;
  overflow: hidden;
  position: relative;
  }
  
  .a36:hover .a37,.a36:focus .a37, .a36p:hover .a37,.a36p:focus .a37, .a36x:hover .a37,.a36x:focus .a37, .a36j:hover .a37,.a36j:focus .a37{
      width: 105%;
    }
    .a36p:hover .a36b,.a36p:focus .a36b{
      opacity: 1;
    }
    
    .a36:hover .a36b,.a36:focus .a36b{
      opacity: 1;
    }
    
  .a36x:hover .a36b,.a36x:focus .a36b{
    opacity: 1;
  }
  .a36j:hover .a36b,.a36j:focus .a36b{
    opacity: 1;
  }
  
.a38{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #22372c;
}
.a41{
  position: relative;
  overflow: hidden;
  height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a39{
  position: absolute;
  width: 100%;
  z-index: -1;

}
.a40{
  width: 100%;
  min-width: 900px;
}
.a44{
  position: relative;
width: 90%;
background-color: #22372c;
padding: 20px;
text-align: center;
color: #fff;
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.a42{
font-size: 1.75rem;
line-height: 2.2rem;
margin-bottom: 50px;

}
.a43{
font-size: 3rem;
line-height: 1.1;
}
.a45{
  background-color: #fff;
  position: relative;
  top: -50px;
  width: 130px;
  border-radius: 50%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 5px #01010126;
}
.a46{
  width: 110px;

}
.a47{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.a48{
  display: flex;
  flex-direction: column-reverse;
}
.a49{
  height: auto;
}
.a49:hover,.a49:focus{
  height: auto;
}
.a49b{
  height: auto;
}
.a49b:hover,.a49b:focus{
  height: auto;
}
.a50{
  display: flex;
  align-items: center;
  gap: 15px;
}
.a51{
  color: #e4bd82;
  font-weight: 600;
}
.a52{
  font-size: 1.5rem;
}
.a53{
  background-color: #22372c;
  padding: 40px;
  color: #fff;
  height: 400px;
}
.a54{
  line-height: 2.3rem;
  font-size: 3rem;
}
.a55{
  font-weight: 300;
}
.a56{
  border-bottom: 2px solid #e4bd82;
  width: 100px;
  margin-bottom: 50px;
}
.a57{
  background-color: #22372c;
}
.a58{
 width: 180vw;
  position: absolute;
  z-index: 3;
  top: 21vh;
  left: -50%;
}
.a58:hover,.a58:focus{
  width: 160vw;
}
.a59{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.a60{
  height: 100px;}
.a61{
  color: #fff;
  font-weight: 300;
  text-align: center;
}


.footer{
  background-color: #31493c;
  padding-block: 25px;
}
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  border: 3px solid;
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: var(--eerie-black); }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}




.wp-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: var(--white);
  padding: 9px;
  font-size: 4rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.wp-btn:is(:hover, :focus-visible) { font-size: 5rem; }

.wp-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }


}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 940px; }

  .a3{
    width: auto;
    height: auto;
  }
  .a5{
    width: 400px;
  }
  .a8{
      height: auto;
    width: 100%;
    background: #22372c;
    position: absolute;
    bottom: 0;
    display: grid;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
  .a8v{
    height: 100px;
    width: 100%;
    background: #22372c;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .a9{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: unset;
    gap: 0;
    align-items: center;
    border-right: 1px solid #e4bd82;
    color: #fff;
    }
    .a9a{
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0;
      justify-content: unset;
      align-items: center;
      color: #fff;
    }
    .a10{
    width: 35px;
    }
    .a19{
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
    }
    .a12b{
      width: 50%;
      margin-top: 0;
    }
    .a17{
      width: 70%;
      position: absolute;
      z-index: -1;
      right: 0;
      top: unset;
    }
    .b22{
      flex-direction: row;
    }
    .b21{
      width: 50%;
      height: 400px;
    }
    .a21{
      width: 50%;
      color: #22372c;
      background-color: #fff; 
      padding: 20px;
      height: 400px;
    }
    .a23{
      font-size: 5rem;
      line-height: 5rem;
      text-align: inherit;
    }
    .a31{
      font-size: 5rem;
      line-height: 5rem;
      color: #22372c;
      }
    .a32{
      display: flex;
      flex-direction: row-reverse;
    }
    .a28b{
      top: 40%;
    }
    .a29{
      width: 50%;
      }
    .a28{
      width: 50%;
      position: relative;
    }
    .b28f{
      bottom: 0;
    }
    .a35{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
     }
     .a35b{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding-bottom: 20px;
     }
     .a35bz{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding-bottom: 20px;
     }
     .a35j{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
     }
    .a35h{
         margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
     }
     .a36{
      width: 100%;
      height: 385px;
      overflow: hidden;
      position: relative;
      }
      .a36p{
    width: 100%;
    height: 485px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
.targe{
    display: none;
}
      .a36h{
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-block: 20px;
      }
      .a36x{
        height: 320px;
        }
        .a36j{
        height: 250px;
        }
    .a44{
      width: 50%;
    }
    .a45{
      top: -70px;
      box-shadow: unset;
    }
    .a47{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    .a48{
      display: flex;
      flex-direction: row-reverse;
    transform: rotate(90deg);
    }
    .a58{
      width: 100%;
      position: absolute;
      z-index: 0;
      top: 11vh;
      left: 0;
    }
    .a58:hover,.a58:focus{
      width: 105%;
    }
    .a59{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .a61{
      color: #fff;
      font-weight: 300;
      text-align: inherit;
    }
}




@media(min-width: 899px){
      .a49{
  height: 400px;
}
.a49:hover,.a49:focus{
  height: 490px;
}
    .a49b{
  height: 400px;
}
.a49b:hover,.a49b:focus{
  height: 500px;
}
}
/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }


  .a3{
    width: 100%;
    height: auto;
  }
  /**
   * HEADER
   */

  

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list { display: none; }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar { margin-inline-start: auto; }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item { border-block-start: none; }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }



}