@import url('https://fonts.googleapis.com/css?family=Manrope:700|Manrope:400');
@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light+Two');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira+Stencil+One&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

:root {
  --primary: transparent;
  --primary2: hsl(0, 100%, 50%);
  --primaryBg: hsla(155, 100%, 65%, 1%);
  --primaryHi: hsla(155, 100%, 75%, 25%);
  --primaryFg: hsl(155, 100%, 85%);
  --secondary: hsl(156, 51%, 14%);
  --secondaryFg: hsl(156, 51%, 75%);
  --secondaryBg: hsla(156, 51%, 14%, 5%);
  --secondaryHi: hsla(156, 51%, 30%, 50%);
  --accent: hsl(155, 100%, 94%);
  --accentBg: hsla(155, 100%, 94%, 1%);
  --accentHi: hsla(155, 100%, 100%, 25%);
  --transition-1: 0.25s ease-in-out;
  --container-max: 1100px;

  --base-size: 13px;
  --font-base-size: 8px;

  --bg-body: #0a0a0a;
  --bg-panel: #000000;
  --border-color: #333333;
  --text-primary: #ededed;
  --text-secondary: #a1a1a1;
  --accent: #ffffff;
  --hover-bg: red;
  --focus-ring: rgba(255, 255, 255, 0.5);
  --nav-height: calc(var(--base-size) * 8);
  --dropdown-width: 100%;
  --border-radius: calc(var(--base-size) * 1.5);
  --ease-rubber: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-fast: 200ms;
  --duration-medium: 300ms;
  --raw-seinna: rgba(239, 71, 37, 1);
  --sizzling-sunrise: hsl(51, 95%, 54%);
  --scarlet: hsl(13, 96%, 47%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);

  --ff-saira-stencil-one: "Saira Stencil One", sans-serif;
  --ff-poppins: 'Poppins', sans-serif;
  --ff-roboto: 'Roboto', sans-serif;
  --ff-turret: 'Turret Road', sans-serif;

  --fs-1: 2rem;
  --fs-2: calc(1.813rem + 1vw);
  --fs-3: calc(1.313rem + 1vw);
  --fs-4: 1.4rem;
  --fs-5: 1rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  --fw-400: 400;
  --fw-700: 700;

  --transition-1: 0.25s ease-in-out;

  --section-padding: 80px;

  --radius-4: 4px;
  --radius-12: 12px;

  --transition-duration: .2s;
  --transition-timing-function: linear;
  --transition-delay: 0s;

  --negative-multiplier: -1;

  --gradient-default: linear-gradient(122deg, var(--color-accent-light) 0%, var(--color-accent-dark) 100%);


  --border-color-default: var(--color-secondary);
}

li {
  list-style: none;
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  /*width: 100%;*/
  /*height: auto;*/
  /*margin: 0px;*/
  /*padding: 0px;*/
  /*overflow-x: hidden;*/
  
  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Fixes horizontal scroll */
    
}

body {
  transition: var(--transition-1);
}

body.dark-theme {
    --bg-primary: hsl(0, 0%, 90%);
    --bg-secondary: hsl(0, 0%, 100%);
    --textDim: rgba(250, 250,250, 0.8);
  /* --text: hsl(0, 0%, 12%); */
    --background: rgba(25, 25, 25, 1);
    --text: rgba(250, 250, 250, 0.9);
    --color-secondary: hsl(0, 0%, 37%);
    --card-shadow: hsla(0, 0%, 0%, 0.1);
    --input-bg: hsl(0, 0%, 93%);
    --primaryHi : hsla(155, 100%, 75%, 25%);
    --shadow-1: 10px 10px 40px var(--card-shadow);
    --invert-icon: invert(0%);
    --transparent-background: rgba(253, 255, 255, 0.65);
    --img-invertor: invert(95%);
    --watermark: rgba(255, 255, 255, .3);

}

body.light-theme {
  --bg-primary: hsl(0, 0%, 90%);
  --background: rgba(250, 250, 250, 1);
  --bg-secondary: hsl(0, 0%, 100%);
  /* --text: hsl(0, 0%, 12%); */
  --text: rgba(10, 10, 10, 0.9);
  --textDim: rgba(0, 0,0, 0.8);
  --color-secondary: hsl(0, 0%, 37%);
  --card-shadow: hsla(0, 0%, 0%, 0.1);
  --input-bg: hsl(0, 0%, 93%);
  --primaryHi: hsla(100, 85%, 5%, 50%);
  --shadow-1: 10px 10px 40px var(--card-shadow);
  --invert-icon: invert(0%);
  --transparent-background: rgba(253, 255, 255, 0.65);
  --img-invertor: invert(5%);
  --watermark: rgba(0, 0, 0, .3);
}

.wrap {
  width: 100%;
  /*max-width: var(--container-max);*/
}

.logo {
  position: relative;
  min-width: 77px;
  z-index: 2;
}

.split-section{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap);
      align-items:stretch;
    }

    /* Left content card */
    .contact-card{
      background: linear-gradient(180deg, rgba(255,255,255,0.98), var(--card));
      border-radius: var(--radius);
      padding: 28px;
      /* box-shadow: 0 8px 28px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.6); */
      display:flex;
      flex-direction:column;
      gap:16px;
      min-height:320px;
    }

    .kicker{
      display:inline-block;
      font-weight:600;
      font-size:12px;
      letter-spacing:0.08em;
      text-transform:uppercase;
      color:var(--accent-2);
      background: linear-gradient(90deg, rgba(124,58,237,0.08), rgba(37,99,235,0.06));
      padding:6px 10px;
      border-radius:999px;
      width:max-content;
    }

    .contact-h2{
      margin:0;
      font-size:22px;
      line-height:1.15;
      color:#071033;
    }

    p.lead{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }

    .info-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:4px;
    }

    .info-item{
      background: rgba(37,99,235,0.03);
      border-radius:10px;
      padding:10px;
      font-size:14px;
      color:#08203a;
    }
/* Right: Map card */
    .map-card{
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: 0 10px 30px rgba(2,6,23,0.06);
      min-height:400px;
      /* background: linear-gradient(180deg,#fafbff, #fff); */
      display:flex;
      flex-direction:column;
    }

    .map-header{
      /* padding:12px 16px; */
      display:flex;
      gap:12px;
      align-items:center;
      border-bottom:1px solid rgba(2,6,23,0.04);
      background: linear-gradient(90deg, rgba(37,99,235,0.03), transparent);
    }

    .map-title{
      font-weight:700;
      font-size:14px;
      color:#071033;
    }

    .map-sub{
      color:var(--muted);
      font-size:13px;
    }

    .map-frame{
      flex:1 1 auto;
      min-height:220px;
      position:relative;
      background:linear-gradient(180deg,#e9f1ff, #fff);
    }

    /* Make iframe fill container and keep aspect */
    .map-frame iframe{
      width:100%;
      height:100%;
      border:0;
      display:block;
        filter: var(--img-invertor);
        /*contrast(100%);*/
        /* filter: sepia(80%); */

    }

    /* Small decorative overlay (location pin) */
    .pin{
      width:46px;
      height:46px;
      background:linear-gradient(180deg,#fff,#f1f8ff);
      border-radius:10px;
      display:inline-grid;
      place-items:center;
      box-shadow: 0 6px 18px rgba(124,58,237,0.08);
      font-weight:800;
      color:var(--accent-2);
      margin-left:auto;
    }

    /* Responsive: stack on mobile */
    @media (max-width:880px){
      .split-section{
        grid-template-columns: 1fr;
      }
      .info-grid{ grid-template-columns: 1fr; }
      .map-card{ order:2; }
    }

    /* Very small screens: increase spacing and map height */
    @media (max-width:420px){
      .card{ padding:20px; border-radius:12px; }
      .map-card{ min-height:260px; border-radius:12px; }
      .kicker{ font-size:11px; padding:5px 8px; }
    }

body {
  font-family: 'Manrope';
  font-weight: 400;
  background-color: var(--background);
  color: var(--text);
  /*padding: 0 10%;*/
  /*padding: 5px 10px;*/
  /*margin:0;
  padding:0;*/
  /*display: flex;
  flex-direction: column*/
  align-items: center;
  /*overflow-y: scroll ;
  overflow-x: hidden;
  width:80%;*/
  width:100%;
  height: 100%;
}

.bg-icon {
  z-index: -1;
  opacity: 0.1;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 80px;
}

.stethoscope-bg {
  z-index: -1;
  opacity: 0.15;
  position: fixed;
  top: -5px;
  right: -40px;
}

.apples-bg {
  z-index: -1;
  opacity: 0.15;
  position: fixed;
  bottom: -5px;
  left: 0px;
  width: 25%;
  filter: grayscale(80%)
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  color: var(--textDim);
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
}

.menu:hover {
  color: var(--text);
  cursor: pointer;
}

.sitename {
  font-weight: bold;
}

.landing {
  height: 100vh;
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
  width: 100%;
      flex-direction: column;
}

.motto {
  /* Add styling for the child div as needed */
  /*background-color: lightblue;*/
  /*padding: 20px;*/
  /*margin-left: 25px;*/
  margin-top: 60px;
      margin: 0 auto;
}

.project-text {
    font-family: 'Shadows Into Light Two', helvetica, arial, sans-serif;
    color: var(--text);
    text-align: center;
    font-size: 25px;
    margin-top: 10px;
}

.grid {
  position: absolute;
  height: 100%;
  weight: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  z-index: -1;
}

.grid-svg {
  height: 80%;
  width: 80%;
  position: relative;
  z-index: 1;
  display:none;
}

.blur {
  height: 12rem;
  width: 12rem;
  background-color: var(--primary);
  /*filter: blur(100px);*/
  border-radius: 100px;
  z-index: 0;
  position: absolute;
}

.title {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: -0.2rem;
  display: flex;
  flex-direction: column;
  /*position: absolute;*/
  align-self: center;
  /*height: 100%;*/
  /*z-index: 9;*/
  /*left: 15%;*/
  top: 20%;
    margin: 0 auto;
}

.title>p {
  margin: -3px;
  line-height: 4.5rem;
  width: auto;
}

.title>p:nth-child(1) {
  align-self: flex-start;
}

.title>p:nth-child(2) {
  color: var(--primary2);
  align-self: flex-end;
}

.title>p:nth-child(3) {
  align-self: flex-end;
}

.material-icons {
  display: none;
  fill: var(--text);
}

.button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 40px;
  width: 160px;
  z-index: 10;
}

button {
  height: 40px;
  width: 130px;
  /*clip-path: path("M 0 25 C 0 -5, -5 0, 80 0 S 160 -5, 160 25, 165 50 80 50, 0 55, 0 25");*/
  border: none;
  /*border-radius: 13px;*/
  background-color: transparent; /*var(--primaryBg);*/
  /*box-shadow: 0px -3px 15px 0px var(--primaryHi) inset;*/
  color: var(--text);
  font-family: "Manrope";
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: translateY(0px);
  transition: all 0.2s ease;
  /*opacity: 0.6;*/
  color: var(--watermark)
}

/*span {*/
/*  width: 100px;*/
/*  height: 60px;*/
/*  background-color: var(--primaryHi);*/
/*  border-radius: 100%;*/
/*  filter: blur(20px);*/
/*  position: absolute;*/
/*  bottom: -50%;*/
/*  transition: all 0.2s ease;*/
/*}*/

.button:hover>span {
  opacity: 60%;
}

.button:hover>button {
  transform: translateY(5px);
}

.first {
  top: 10%;
  right: 12%;
}

.sec {
  bottom: 10%;
  right: 5%;
}

.four {
  top: 30%;
  left: 15%;
}

.five {
    top: 50%;
    left: 0%;
}

.six {
    right: 30%;
    top: 15%;
}

.seven {
    bottom: 25%;
}

.eight {
  top: 5%;
  left: 9%;
}

.nine {
    bottom: 60%;
    right: -5%;
}

.landing>button {
  background-color: var(--accentBg);
  box-shadow: 0px -3px 15px 0px var(--accentHi) inset;
  color: var(--text);
}

.third {
  bottom: 20%;
  left: 5%;
}

/*.button.third>button {*/
/*  background-color: var(--secondaryBg);*/
/*  box-shadow: 0px -3px 15px 0px var(--accentHi) inset;*/
/*  color: var(--text);*/
/*}*/

/*.button.third>span {*/
/*  background-color: var(--secondaryHi);*/
/*}*/

.top-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 50%;
}

.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 50%;
}

/*body {
  height:50em;
  overflow-x:hidden;
}*/


.bg-screen {
  position: absolute;
  z-index: 0;
  overflow: hidden;
}


.content-front:nth-child(2):after {
  content: '';
}


.bg-header {
  background-color: rgb(16 255 0 / 20%);
  padding: 12px 20px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
}

a:hover {
  text-decoration: none;
  color: #05C2DE;
  text-shadow: 2px 1px 1px white;
  transition: 1s;
}

.welcome-board-name {
  font-family: 'Vast Shadow', cursive;
  color: #ffffff;
  font-size: 2.3em;
  text-shadow: 1px 2px 3px #03802a;

}

.content-inner {
  width: 100%;
  color: #fff;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fl-wrap {
  float: left;
  width: 100%;
  position: relative;
}

.content-inner .content-front,
.content-inner .content-back {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-front {
  /*background: #292929;*/
  position: relative;
}

.content-inner>* {
  backface-visibility: hidden;
  transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cf-inner:before,
.cf-inner:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.cf-inner:before {
  top: 20px;
  left: 20px;
  border-left: 1px solid;
  border-top: 1px solid;
  border-color: rgba(255, 0, 0, 0.33);
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  background-repeat: repeat;
  background-origin: content-box;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: var(--background);*/
  /*opacity: 0.65;*/
  z-index: 3;
}

.content-inner .cf-inner .inner {
  align-items: stretch;
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  transform: translateZ(95px) scale(0.81);
  text-align: center;
  position: relative;
  z-index: 2;
}

.inner ul li:nth-child(odd) {
  color: red;
  /* Light gray for odd rows */
}

.inner ul li:nth-child(even) {
  color: blue;
  /* Slightly darker gray for even rows */
}

.cf-inner:after {
  bottom: 20px;
  right: 20px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.content-inner .cf-inner .inner h2 {
  position: relative;
  font-size: 22px;
  font-weight: 800;
  padding-bottom: 20px;
}

.content-inner .cf-inner .inner h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 20px;
  height: 2px;
  margin-left: -10px;
}

.content-inner .content-front li {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin: 0 4px;
  font-family: 'Shadows Into Light Two', helvetica, arial, sans-serif;
  font-weight: 900;
}

.cf-inner:after {
  bottom: 20px;
  right: 20px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.content-inner .content-front,
.content-inner .content-back {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-inner .cf-inner .inner {
  align-items: stretch;
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  transform: translateZ(95px) scale(0.81);
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--text);
}

.content-inner:hover .content-front {
  transform: rotateY(-180deg);
}

.content-inner:hover .content-back {
  transform: rotateY(0deg);
}

.content-inner .content-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: rotateY(180deg);
  /*background: #292929;*/
  /*background-image: url("https://images.unsplash.com/photo-1478760329108-5c3ed9d495a0?ixlib=rb-1.2.1&auto=format&fit=crop&w=667&q=80");*/
}

.content-inner .cf-inner {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  width: 100%;
  padding: 150px 20px;
}

.serv-price-wrap {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 30px;
  margin-top: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-inner .cf-inner .inner h2:before {
  background: #00bcd4;
}

inner:before,
.cf-inner:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  /*border-color: rgba(255, 255, 255, 0.4);*/
  z-index: 10;
}

.cf-inner:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: rgba(0, 0, 255, 0.4);
  z-index: 10;
}

.cf-inner:before,
.cf-inner:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 250px;
  /*border-color: rgba(0, 188, 212, 0.33);*/
  z-index: 10;
}

.dec-icon {
  padding-bottom: 40px;
}

.content-back .cf-inner:before {
  top: 125px;
}

.content-back .cf-inner:after {
  bottom: 125px;
}




/* custom-cursor */
/* =============================================================================================== */
.custom-cursor {
  width: 3rem;
  height: 3rem;
  border: 1px solid hsla(0, 0%, 100%, .7);
  border-radius: 100%;

  background: hsla(0, 0%, 80%, .2);
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -50%);

  pointer-events: none;
}


/* buttons */
/* =============================================================================================== */
/* btn-circle */
/* ---------------------------------------- */
.btn-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 100rem;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* btn-pTSecond */
/* ---------------------------------------- */
.btn-pTSecond {
  margin-top: 2rem;
  border: 1px solid red;

  transform: scale(.8);
  transform-origin: left center;
  transition: .3s;
}

.btn-pTSecond:hover,
.btn-pTSecond:focus {
  transform: scale(1);
}

.btn-pTSecond::before {
  content: '';

  width: 100%;
  height: 100%;
  border-radius: inherit;

  position: absolute;
  background: var(--gradient-2);

  transform: scale(0);
  transition: .6s;
}


@media screen and (max-width: 1000px) {
  .title {
    font-size: 3.5rem;
    /* line-height:  */
  }

  .title>p {
    line-height: 3.0rem;
    letter-spacing: -0.3rem;
  }

  /*nav> :not(.sitename, .material-icons) {*/
  /*  display: none;*/
  /*}*/

  nav {
    justify-content: space-between;
  }

  .material-icons {
    display: flex;
    align-items: center;
  }

}

.icons {
  position: fixed;
  left: 55px;
  top: 55%;
  transform: translate(-90%, -45%);
  -webkit-transform: translate(-90%, -45%);
  -moz-transform: translate(-90%, -45%);
  -ms-transform: translate(-90%, -45%);
  -o-transform: translate(-90%, -45%);
  /*width: 200px;*/
  /*display: flex;*/
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icons .line-top,
.icons .line-bottom {
  width: 2px;
  height: 200px;
  background-color: #acacac;
}

.icons i {
  font-size: 1.4rem;
  color: #fff;
  margin: 1rem 0;
  cursor: pointer;
}

.content {
  margin-top: 6rem;
}

.content h1 {
  text-align: center;
  font-size: 2.6rem;
}

.content .flex-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 4rem;
}

.flex-box .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 250px;
}

.flex i {
  font-size: 2.4rem;
}

.flex h2 {
  margin-top: 1rem;
}

.flex p {
  text-align: center;
  margin-top: 1rem;
}

.scrolling-words-container {
  display: flex;
  /*align-items: center;*/
  font-size: 16px;
  font-weight: 600;
}

.scrolling-words-box {
  height: 3rem;
  /*margin: auto;*/
  overflow: hidden;
}

.scrolling-words-container p {
  margin-bottom: 0;
}

.scrolling-words-box ul {
  margin: 0 0.625rem;
  padding: 0;
  animation: scrollUp 4s infinite;
}

.scrolling-words-box ul li {
  display: flex;
  /*align-items: center;*/
  /*justify-content: flex-end;*/
  height: 3rem;
  list-style: none;
}

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.sec-title .section-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ff2222;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  /*color: #222222;*/
  font-weight: 600;
  padding-bottom: 18px;
}

.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover {
  background-color: #001e57;
  color: #ffffff;
}

.about-section {
  position: relative;
  padding: 0 0 70px;
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column {
  position: relative;
  /*padding-left: 30px;*/
}

.about-section .text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  /*color: #848484;*/
  font-weight: 400;
}

.about-section .list-style-one {
  margin-bottom: 45px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 15px 50px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.about-section .image-column .inner-column {
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before {
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  /*background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);*/
  content: "";
}

.about-section .image-column .image-1 {
  position: relative;
}

.about-section .image-column .image-2 {
  position: absolute;
  left: 15px;
  bottom: 25px;
}

.image-1 img {
  width: 100%;
  border-radius: 5px;
}

.image-2 img {
  width: 50%;
  border-radius: 10px;
}


.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
}

.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

@keyframes scrollUp {

  13%,
  33% {
    transform: translateY(-25%);
  }

  /*40%, 50% {*/
  /*  transform: translateY(-50%);*/
  /*}*/
  46%,
  66% {
    transform: translateY(-50%);
  }

  80%,
  100% {
    transform: translateY(-75%);
  }
}

.heading-title {
  margin-bottom: 100px;
}

.text-center {
  width: 100%;
  text-align: center;
}

.heading-title h3 {
  margin-bottom: 0;
  letter-spacing: 2px;
  font-weight: normal;
}

.p-top-30 {
  padding-top: 30px;
}

.half-txt {
  width: 60%;
  margin: 0 auto;
  display: inline-block;
  line-height: 25px;
  color: #7e7e7e;
}

.text-uppercase {
  text-transform: uppercase;
}

.team-member,
.team-member .team-img {
  position: relative;
}

.team-member {
  overflow: hidden;
}

.team-member,
.team-member .team-img {
  position: relative;
}

.team-hover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  border: 20px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.90);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team-member:hover .team-hover .desk {
  top: 35%;
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
  opacity: 1;
}

.team-hover .desk {
  position: absolute;
  top: 0%;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
  padding: 0 20px;
}

.desk,
.desk h4,
.team-hover .s-link a {
  text-align: center;
  color: #222;
}

.team-member:hover .team-hover .s-link {
  bottom: 10%;
}

.team-member:hover .team-hover,
.team-member:hover .team-hover .desk,
.team-member:hover .team-hover .s-link {
  opacity: 1;
}

.team-hover .s-link {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0;
  text-align: center;
  -webkit-transform: translateY(45%);
  -ms-transform: translateY(45%);
  transform: translateY(45%);
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
  font-size: 35px;
}

.desk,
.desk h4,
.team-hover .s-link a {
  text-align: center;
  color: #222;
}

.team-member .s-link a {
  margin: 0 10px;
  color: #333;
  font-size: 16px;
}

.team-title {
  position: static;
  padding: 20px 0;
  display: inline-block;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
}

.team-title h5 {
  margin-bottom: 0px;
  display: block;
  text-transform: uppercase;
}

.team-title span {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 1px;
  font-family: 'Shadows Into Light Two', helvetica, arial, sans-serif;
  font-weight: 900;
}

.staff {
  transform: scale(0.7);
}

.about-section {
  padding-block: min(20vh, 6rem);
}

.team-section {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
   padding-block: min(20vh, 6rem);
  text-align: center;
  width: calc(min(90rem, 90%));
  margin-inline: auto;
}

.team-section span,
.team-section p,
.team-section h2,
.team-section h3 {
  letter-spacing: 0.035rem;
}

.team-section p {
    line-height: 2.6;
    /* color: #a3a3a3; */
    max-width: 50rem;
    margin: 0 auto;
    /* font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem); */

}

.team-section .bg-watermark {
  color: #1f1f1f;
  font-size: clamp(6rem, 1.3333rem + 14.9333vw, 20rem);
  font-weight: 800;
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translatex(-50%) translatey(-15%);
  user-select: none;
  letter-spacing: 0.5rem;
}

.team-section span {
  /* font-family: 'Shadows Into Light Two', helvetica, arial, sans-serif;
  text-transform: uppercase; */
  display: block;
  /* font-size: 2.0rem; */
  color: var(--text);
}

.team-section h2 {
  font-size: clamp(3.5rem, 3rem + 1.6vw, 5rem);
  margin-top: -0.625rem;
  color: var(--text);
}

.team-section .team-cards {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: 2rem;
}

@media screen and (min-width: 51rem) {
  .team-section .team-cards {
    gap: 0;
    padding-bottom: 2.5rem;
  }
}

.team-card {
  position: relative;
  cursor: pointer;
}

.team-card h3,
.team-card p {
  text-transform: capitalize;
}

.team-card h3 {
  font-size: clamp(1rem, 0.9167rem + 0.2667vw, 1.25rem);
  font-weight: 400;
  color: #f6f6f6;
}

.team-card p {
  font-family: 'Shadows Into Light Two', helvetica, arial, sans-serif;
  font-size: clamp(0.85rem, 0.75rem + 0.32vw, 1.15rem);
  letter-spacing: 0.12rem;
  font-weight: 300;
  max-width: 100%;
}

/*.team-card::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  width: 5rem;*/
/*  height: 6.25rem;*/
/*  z-index: 0;*/
/*  transition: 0.3s ease-in-out;*/
/*  background: #f2709c;*/
/*  background: -webkit-linear-gradient(to left, #ff9472, #f2709c);*/
/*  background: linear-gradient(to left, #ff9472, #f2709c);*/
/*  top: -0.375rem;*/
/*  left: -0.375rem;*/
/*}*/

.team-card::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #232526;
  background: -webkit-linear-gradient(to bottom, rgba(65, 67, 69, 0.2), rgba(8, 8, 8, 0.9));
  background: linear-gradient(to bottom, rgba(65, 67, 69, 0.2), rgba(8, 8, 8, 0.9));
}

.team-card img {
  /*filter: grayscale(100%);*/
  transition: 0.5s ease;
}

.team-card-content {
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 1.875rem 1.25rem;
  text-align: center;
  display: none;
  transition: display 0.5s allow-discrete, opacity 0.5s;
}



.team-card-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.team-card img {
  max-width: 100%;
  display: block;
}

.team-card-content ul {
  list-style-type: none;
}

.team-card-content ul i {
  color: #fff;
  /* font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem); */
}

.team-card-content ul i:hover {
  color: #f2709c;
}

.team-section .team-cards .team-card:hover img {
  filter: grayscale(0%);
}

.team-section .team-cards .team-card:hover::before {
  transform: scale(1.03);
}

.team-section .team-cards .team-card:nth-child(odd)::before {
  top: -0.375rem;
  left: -0.375rem;
}

@media screen and (min-width: 31.25rem) {
  .team-section .team-cards .team-card:nth-child(even) {
    transform: translatey(15%);
  }
}

.team-section .cards .team-card:nth-child(even)::before {
  bottom: -0.375rem;
  left: -0.375rem;
  top: auto;
}
/*
.team-section .team-cards .team-card:nth-child(odd)::before {
  top: -0.375rem;
  left: -0.375rem;
} */

.crew-carousel {
  width: 100%;
  /*max-width: 1200px;*/
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin-top: 60px;
}

.crew-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.crew-card {
  position: absolute;
  width: 280px;
  height: 380px;
  /* border-radius: 20px; */
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s ease;
  cursor: pointer;
}

.crew-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-card.center {
  z-index: 10;
  transform: scale(1.1);
  box-shadow: var(--shadow-1);
}

.crew-card.center .team-card-content {
  display: block;
}

@starting-style {
  .crew-card.center .team-card-content  {
    opacity: 0;
  }
}

.crew-card.center {
  z-index: 10;
  transform: scale(1.1);
}

.crew-card.left-1 {
    transform: translateX(-200px) scale(0.9);
    /*opacity: 0.8;*/
    filter: grayscale(80%);
    z-index: 3;
}

.crew-card.left-2 {
  transform: translateX(-400px) scale(0.8);
  opacity: 0.6;
  filter: grayscale(100%);
}

.crew-card.right-1 {
    transform: translateX(200px) scale(0.9);
    /*opacity: 0.8;*/
    filter: grayscale(80%);
    z-index: 3;
}

.crew-card.right-2 {
  transform: translateX(400px) scale(0.8);
  opacity: 0.6;
  filter: grayscale(100%);
}

.crew-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.crew-info {
  text-align: center;
  margin-top: 40px;
}

.crew-name {
  font-size: 2.5rem;
  color: #cc5500;
  /* deep orange */
}

.crew-role {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #aa4400;
  letter-spacing: 0.1em;
}

.crew-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.crew-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(204, 85, 0, 0.2);
  /* orange tint */
  cursor: pointer;
}

.crew-dot.active {
  background: #cc5500;
}

.crew-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(204, 85, 0, 0.7);
  /* orange base */
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9;
}

.crew-arrow:hover {
  background: rgba(170, 68, 0, 0.9);
  /* deeper orange hover */
}

.crew-left {
  left: 20px;
}

.crew-right {
  right: 20px;
}


/* Section Title */

.section-title h2 {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 35px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 44%;
  width: 135px;
  height: 2px;
  background-color: #8DC648;
}

.section-title p {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin-top: 40px;
}

/* Button Filter */
.button-group {
  text-align: center;
}

.button {
  display: inline-block;
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  border: none;
  background: none;
  text-transform: lowercase;
}

.button:hover {
  color: #8DC648;
}

.button:active,
.button.is-checked {
  color: #8DC648;
}

/* .button:after {
      content: " | ";
      color: #000;
      font-weight: 100;
      padding-left: 10px;
  }
  .button:last-child:after{
      content: "";
  } */

/* CARD */
.card {
  margin: 25px 0px;
}

.card-block {
  height: 120px;
  padding: 25px;
}

.card-img-top {
  border-radius: 50%;
  align-self: center;
  width: 250px;
  height: 250px;
  padding: 20px;
  z-index: 1;
  margin-top: 15px;
}

.circle {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 15px solid #8DC648;
  position: absolute;
  top: 15px;
  left: 40px;
  z-index: 0;
  margin-top: 15px;
}

.card-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
}

.card-text {
  clear: both;
  padding: 15px;
}

.info-text {
  float: left;
}

.price-text {
  float: right;
}

.card-text a {
  color: #8DC648;
  padding-top: 50px;
  text-decoration: none;
}

.card-text:hover {
  color: #649726;
}

/* MODALS */
.modal-header {
  background-color: #8DC648;
  color: #fff;
}

.modal-body {
  height: 150px;
}

.modal-footer {
  background-color: #8DC648;
  color: #fff;
}

.hero {
  background: url('https://hd.unsplash.com/photo-1454165804606-c3d57bc86b40');
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

/*
Blueish tint overlay
*/
.hero:after {
  content: '';
  background: rgba(0, 0, 64, 0.5);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

/*
Making sure everything in .hero sits above our :after elements
*/
.hero * {
  position: relative;
  z-index: 1;
}

.hamburger {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  float: left;
  font: inherit;
  margin: 0.8125em 0 0;
  overflow: visible;
  outline: none;
  padding: 0;
  text-transform: none;
  transition: opacity 0.15s;
  -webkit-appearance: none;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

#masthead.is-active .hamburger-inner,
#masthead.is-active .hamburger-inner::before,
#masthead.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  bottom: -6px;
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger-label {
  color: #fff;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-left: 0.3125em;
  text-transform: uppercase;
}


.hamburger-box,
.hamburger-label {
  display: inline-block;
  vertical-align: middle;
}

#site-nav {
  clear: both;
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  padding-top: 2.5em;
}

#site-nav.is-active {
  height: auto;
  overflow: visible;
}

#site-nav .col {
  padding-bottom: 2.5em;
}

.services-wrapper {
  /* display: flex;
    flex-direction: row;
    flex-wrap: wrap;
        justify-content: center; */

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: 1.5rem;
}

.about-us {
  color: var(--textDim);
  /* width: 70%; */
  /*justify-self: center;*/
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  width: 50%;
    
}

.contact {
  /* padding: 130px 0; */
}

.info {
  position: relative;
  margin: 20px 0;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.info li span:nth-child(1) {
  width: 30px;
  min-width: 30px;
  filter: var(--img-invertor);
}

.info li span:nth-child(1) img {
  max-width: 100%;
  /*filter: var(--img-invetor);*/
  /* opacity: 0.5; */
}

.info li span:nth-child(2) {
  color: var(--textDim);
  margin-left: 10px;
  font-weight: 400;
  /* opacity: 0.5; */
  font-size: 16px;
}

.info li:hover span:nth-child(1) img,
.info li:hover span:nth-child(2) {
  opacity: 1;
}

.contact .heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;

}

.contact .heading h2 span {
  color: #ff9100;
}

.contact .heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}

.contact .form-control {
  padding: 25px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border: 0;
  border-radius: 10px;
}

.contact button.btn {
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
  background: #ff9100;
  color: #ffffff;
}

.contact .title h3 {
  font-size: 18px;
  font-weight: 600;
}

.contact .title p {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  margin: 0 0 40px;
}

.contact .content .info {
  margin-top: 30px;
}

.contact .content .info i {
  font-size: 30px;
  padding: 0;
  margin: 0;
  color: #02434b;
  margin-right: 20px;
  text-align: center;
  width: 20px;
}

.contact .content .info h4 {
  font-size: 13px;
  line-height: 1.4;
}

.contact .content .info h4 span {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
}

.section-text {
  color: var(--textDim);
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: justify;
}


.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-inline: 40px;
}

.contact-social-link {
  position: relative;
  /*background: var(--text);*/
  color: var(--text);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: var(--transition-1);
}

.contact-social-link:is(:hover, :focus) {
  background: var(--raw-seinna);
  color: var(--white);
}

.contact-social-link:is(:hover, :focus) .tooltip {
  transform: translateY(0);
  opacity: 1;
}

.tooltip {
  position: absolute;
  top: -48px;
  background: var(--raw-seinna);
  min-width: max-content;
  color: var(--white);
  font-size: 15px;
  font-weight: var(--fw-700);
  padding: 5px 10px;
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-1);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 1;
}

@media screen and (min-width: 550px) {
  #site-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #site-nav .col {
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 768px) {
  #site-nav .col {
    flex: 0 0 33.333333333%;
  }
}

@media screen and (min-width: 960px) {
  #site-nav {
    flex-wrap: nowrap;
  }

  #site-nav .col {
    flex: 0 0 20%;
  }

  #site-nav .col:last-child {
    display: flex;
    justify-content: flex-end;
  }
}

#site-nav h4 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#site-nav ul {
  list-style-type: none;
  margin-top: 1em;
}

#site-nav li {
  margin-bottom: 0.3125em;
}

#site-nav li a {
  color: #b4b9ba;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-nav li a:hover,
#site-nav li a:focus {
  color: #686d6e;
}

#site-nav .social {
  margin: 0;
  overflow: hidden;
}

#site-nav .social li {
  float: left;
  margin: 0 0.3125em;
  width: 32px;
  height: 32px;
}

#site-nav .social li svg {
  display: block;
  fill: #b4b9ba;
  width: 100%;
  height: 100%;
  transition: fill 0.3s ease;
}

#site-nav .social li:hover svg {
  fill: #686d6e;
}

#masthead-search {
  float: right;
  margin-top: 0.625em;
  width: 100%;
  max-width: 14em;
  position: relative;
  -webkit-appearance: none;
}

#masthead-search input {
  background: transparent;
  border: none;
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  outline: none;
  width: 100%;
  padding: 0.75em 1.125em;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

#masthead-search button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1em;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translateY(-50%);
  -webkit-appearance: none;
}

#masthead.is-active #masthead-search button {
  color: #b4b9ba;
}

#masthead.is-active #masthead-search input {
  border-color: #b4b9ba;
}

#masthead-search ::-webkit-input-placeholder {
  color: #fff;
}

#masthead-search :-moz-placeholder {
  color: #fff;
  opacity: 1;
}

#masthead-search ::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

#masthead-search :-ms-input-placeholder {
  color: #fff;
}

#masthead.is-active #masthead-search ::-webkit-input-placeholder {
  color: #b4b9ba;
}

#masthead.is-active #masthead-search :-moz-placeholder {
  color: #b4b9ba;
  opacity: 1;
}

#masthead.is-active #masthead-search ::-moz-placeholder {
  color: #b4b9ba;
  opacity: 1;
}

#masthead.is-active #masthead-search :-ms-input-placeholder {
  color: #b4b9ba
}

#masthead .col {
  opacity: 0;
}

#masthead.is-active .col {
  transform: translateY(40px);
  transition: opacity 0.3s ease;
  animation: fade-in-stagger 0.8s ease forwards;
}

#masthead.is-active .col:nth-child(1) {
  -webkit-animation-delay: 0;
}

#masthead.is-active .col:nth-child(2) {
  -webkit-animation-delay: 0.1s;
}

#masthead.is-active .col:nth-child(3) {
  -webkit-animation-delay: 0.2s;
}

#masthead.is-active .col:nth-child(4) {
  -webkit-animation-delay: 0.3s;
}

#masthead.is-active .col:nth-child(5) {
  -webkit-animation-delay: 0.4s;
}

.conract-container h2 {
  width: 100%;
  color: #45f3ff;
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}

.conract-container .row100 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.conract-container .row100 .col {
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin: 30px 0 10px;
  transition: 0.5s;
}

.conract-container .row100 .inputBox {
  position: relative;
  width: 100%;
  height: 40px;
  color: #45f3ff;
}

.conract-container .row100 .inputBox input,
.conract-container .row100 .inputBox.textarea textarea {
  /*position: absolute;*/
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 0 10px;
  z-index: 1;
  color: var(--text);
}

.conract-container .row100 .inputBox .text {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  font-size: 18px;
  padding: 0 10px;
  display: block;
  transition: 0.5s;
  pointer-events: none;
}

.conract-container .row100 .inputBox input:focus+.text,
.conract-container .row100 .inputBox input:valid+.text {
    top: -35px;
    left: -10px;
    color: green;
    font-size: 15px;
}

.conract-container .row100 .inputBox .line {
  /* position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #45f3ff;
  transition: 0.5s;
  border-radius: 2px;
  pointer-events: none; */

  position: absolute;
  display: block;
  transition: 0.5s;
  border-radius: 2px;
  pointer-events: none;
  margin: 15px auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--text), var(--text));
  opacity: 0.8;
  width: 100%;
  bottom: -16px;
}

/*.conract-container .row100 .inputBox input:focus~.line,*/
/*.conract-container .row100 .inputBox input:valid~.line {*/
/*  height: 100%;*/
/*}*/

.conract-container .row100 .inputBox.textarea {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 10px 0;
}

.conract-container .row100 .inputBox.textarea textarea {
  height: 100%;
  resize: none;
}

.conract-container .row100 .inputBox textarea:focus+.text,
.conract-container .row100 .inputBox textarea:valid+.text {
  top: -35px;
  left: -10px;
  color: green;
    font-size: 15px;
}

/*.conract-container .row100 .inputBox textarea:focus~.line,*/
/*.conract-container .row100 .inputBox textarea:valid~.line {*/
/*  height: 100%;*/
/*}*/

input[type="submit"] {
  border: none;
  padding: 7px 35px;
  cursor: pointer;
  outline: none;
  background: #45f3ff;
  color: #000;
  font-size: 18px;
  border-radius: 2px;
}

.icon-color {
  color: var(--text);
}

/* .service-card-container h3,
.service-card-container p {
  color: #58170d;
} */

.section-header {
  /*font-size: 56px;*/
  text-align: center;
  margin-top: 35px;
  letter-spacing: 3px;
  /* font-weight: 500; */
  /* color: #34495e; */
  text-transform: capitalize;

}

.section-header hr {
  width: 100px;
  height: 1px;
  background-color: var(--textDim);
}

.section-header h1 {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.service-card-container h3 {
  padding: 0;
  margin: 0;
}

.service-card-container {
  margin-top: 20px;
  height: 380px;
  perspective: 1000px;
  box-shadow: 10px 38px 34px -26px rgba(0, 0, 0, 0.2);
    /*border-radius: 233px 1px 225px 15px / 15px 225px 15px 255px;*/
    border-radius: 5px;
    border: solid 1px var(--text);
}


.service-card-container .service-card {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card-container .front,
.service-card-container .back {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backface-visibility: hidden;
  /*background-image: url("https://s3.amazonaws.com/files.d20.io/images/105716505/oymO0pnVyLCv-tQDw2vddA/med.png");*/
}

.service-card-container .front {
  box-shadow: 0 3px 35px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.service-card-container .back {
  box-shadow: 0 3px 35px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  transform: rotateY(180deg);
}

/*card front*/
.can-img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
}

.can-inner-img {
  /* background-image: url(./img/doctor-icon.png); */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 70px;
  margin: 15px 0 5px 0;
}

.can-inner-img img {
  height: 100%;
  filter: var(--img-invertor);
}

.can-head {
  padding: 10px 25px;
  text-align: center;
}

.cantrip-info {
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0;
  font-size: 20px;
}

.read-more {
    width: 70%;
    margin: 0px auto;
    border-radius: 13px;
    background-color: var(--primaryBg);
    box-shadow: 0px -3px 15px 0px var(--primaryHi) inset;
    color: var(--text);
    font-family: "Manrope";
    font-size: 1rem;
    padding: 15px;
}
.cantrip-info .can-svg {
  content: "";
  margin: 0 auto;
  height: 32px;
  width: 32px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.cantrip-info span {
  font-size: 12px;
  color: green;
}

.can-1,
.can-2,
.can-3 {
  width: 100%;
}

.can-1 .can-svg,
.can-2 .can-svg,
.can-3 .can-svg {
  padding-bottom: 10px;
}

.can-2 {
  /* border-right: 1px solid rgb(76 175 80 / 0.4);
  border-left: 1px solid rgb(76 175 80 / 0.4) */
}

.can-1 .can-svg {
  background-image: url(./img/sthethoscope-icon.svg);
  filter: var(--img-invertor);
}

.can-2 .can-svg {
  background-image: url(./img/briefcase-medicine-icon.svg);
  filter: var(--img-invertor);
}

.can-3 .can-svg {
  background-image: url(./img/prescription-icon.svg);
  filter: var(--img-invertor);
}

.cetered {
  margin: 0 auto;
}

/*card back*/
.service-card-container .back span {
  padding: 20px;
  color: #58170d;
}

/* SERVICES */
.svrc-card {
  position: relative;
  width: 440px;
  padding: 48px 42px;
  background: var(--card-bg);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* NOISE */
.svrc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.name {
  font-size: 48px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
}
.name span {
  display: block;
  background: linear-gradient(120deg, #fff2cc, #ffd699, #fff2cc);
  -webkit-background-clip: text;
  color: transparent;
}

/* ROLE */
.role {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* DIVIDER + DOT */
.divider {
  margin: 15px auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--text), transparent);
  opacity: 0.4;
  width:25%;
}
.accent-dot {
  width: 6px;
  height: 6px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.7;
}

.svrc-info {
  display: grid;
  gap: 16px;
}
.item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
  cursor: default;
}
.svrc-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: url(#accent-gradient);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.item span {
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}
.item span::before {
  content: "—";
  position: absolute;
  left: -20px;
  opacity: 0;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  color: transparent;
  transition: opacity 0.3s ease;
}
.item:hover .icon {
  opacity: 0;
}
.item:hover span::before {
  opacity: 1;
}
.item:hover span {
  color: #fff;
}

/* WATERMARK */
.watermark {
  position: absolute;
  top: -50px;
  right: 10px;
  font-size: 129px;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, 0.035);
  transform: rotate(-15deg);
  pointer-events: none;
  mix-blend-mode: overlay;

}

.watermark img {
  width: 45px;
  filter: var(--img-invertor);
}

/* COLOR SPLASH RIGHT TOP */
.color-splash {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at 30% 30%,
    #ff7b6b,
    #ffb86b 60%,
    transparent 70%
  );
  opacity: 0.35;
  filter: blur(60px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.service-section:hover .service-overlay {
	top: 320px;
	height: 0;
}

.service-section ul {
  margin: 0;
  padding: 0;
}

.service-section li {
  list-style-type: none;
	font-size: 14px;
	line-height: 17px;
	border-left: 3px #ccc solid;
	padding-left: 10px;
	margin-bottom: 20px;
  text-align: left;
}

.service-section li:nth-child(1) {
	margin-top: 20px;
	border-color: #f6ab2b;
}

.service-section li:nth-child(2) {
	border-color: #e8703d;
}

.service-section li:nth-child(3) {
	border-color: #4ebd73;
}

.service-section li:nth-child(4) {
	border-color: #67b1ec;
}

.service-section li:nth-child(5) {
	border-color: transparent;
	padding-left: 0;
}

a {
  color: #aaa;
  text-decoration: none;
}

span {
  display: block;
	color: #6c6c6c;
	font-size: 11px;
}

.service-section {
  margin-top: 40px;
	position: relative;
}

.service-overlay {
  -webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
transition: all .2s ease;
background-color: transparent;
position: absolute;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(51,51,51,0)), to(#333), color-stop(1, #333));
background-image: -moz-linear-gradient(rgba(51,51,51,0) 0%, rgba(51,51,51,0.8) 95%);
top: 0;
height: 100%;
width: 100%;
}
/*Borders*/

/*.service-card-container:after {*/
/*    content: "";*/
/*    width: 60%;*/
/*    height: 1px;*/
/*    background: linear-gradient(to right, transparent, #fff, transparent);*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -1px;*/
/*    transition: all .3sease-in-out;*/
/*}*/

/*.service-card-container:before {*/
/*    content: "";*/
/*    width: 650%;*/
/*    height: 1px;*/
/*    background: linear-gradient(to right, transparent, #fff, transparent);*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: -1px;*/
/*    transition: all .3sease-in-out;*/
/*}*/

/* dropdown services */
.nav ul {
  list-style: none;
  list-style: none;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.nav a,
.nav button {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}
.nav button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav {
  position: relative;
  z-index: 100;

}
.nav__list {
  /* display: flex; */
  align-items: center;
  /*gap: calc(var(--base-size) * 0.5);*/
  /* background: rgba(255, 255, 255, 0.05); */
  /*padding: calc(var(--base-size) * 0.75);*/
  border-radius: 99px;
  /* border: 1px solid var(--border-color); */
  flex-wrap: wrap;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: flex;
  /*align-items: center;*/
  /*gap: calc(var(--font-base-size) * 0.75);*/
  /*padding: var(--base-size) calc(var(--base-size) * 2);*/
  font-size: calc(var(--font-base-size) * 1.75);
  color: var(--text);
  border-radius: 99px;
  transition: color var(--duration-fast), background-color var(--duration-fast);
  cursor: pointer;
  user-select: none;
}
.nav__link:active,
.nav__link.nav__link-active,
.nav__link[aria-expanded="true"] {
  color: var(--text-primary);
  background-color: var(--hover-bg);
}
.nav__link:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.nav__arrow {
  width: calc(var(--base-size) * 1.75);
  height: calc(var(--base-size) * 1.75);
  transition: transform var(--duration-fast) var(--ease-smooth);
  opacity: 0.6;
}
.nav__link:active .nav__arrow,
.nav__link.nav__link-active .nav__arrow,
.nav__link[aria-expanded="true"] .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.dropdown {
  position: fixed;
  /* top: calc(100% + (var(--base-size) * 1.5)); */
  left: 0;
  width: var(--dropdown-width);
  perspective: 1000px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(var(--base-size) * -1.25)) scale(0.96);
  transform-origin: top center;
  transition: opacity var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-smooth),
    visibility var(--duration-fast);
    top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
}
.dropdown.dropdown-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--current-height, 300px);
  /* background: var(--bg-panel); */
  background: var(--background);
  border: 1px solid var(--border-color);
  /*border-radius: var(--border-radius);*/
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
  transition: height var(--duration-medium) var(--ease-smooth);
  overflow: hidden;
  z-index: 1;
  height: 100%;
}
.dropdown__viewport {
  /*position: relative;*/
  /*z-index: 2;*/
  /*width: 100%;*/
  /*overflow: hidden;*/
  /*height: 100%;*/

  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  overflow-y: scroll;
}
.dropdown__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(var(--base-size) * 1.25));
  transition: opacity var(--duration-medium) var(--ease-smooth),
    transform var(--duration-medium) var(--ease-smooth),
    visibility var(--duration-medium);
  padding: calc(var(--base-size) * 3);
}
.dropdown__menu.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.menu-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: calc(var(--base-size) * 3);
}
.menu-item {
  display: flex;
  gap: calc(var(--base-size) * 1.5);
  padding: var(--base-size);
  border-radius: var(--base-size);
  transition: background var(--duration-fast);
  cursor: pointer;
  text-align: left;
}
.menu-item:hover {
  background: var(--hover-bg);
}
.menu-item:focus-visible {
  outline: 2px solid var(--focus-ring);
  background: var(--hover-bg);
}
.menu-item__icon {
  width: calc(var(--base-size) * 4.5);
  height: calc(var(--base-size) * 4.5);
  border-radius: calc(var(--base-size) * 0.75);
  background: var(--background);
  border: 1px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-item__icon img {
  width: calc(var(--base-size) * 2.25);
  height: calc(var(--base-size) * 2.25);
  color: #fff;
  filter: var(--img-invertor);
}

.menu-item__content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base-size) * 0.5);
}
.menu-item__title {
  /*font-size: calc(var(--base-size) * 1.75);*/
  /*font-weight: 500;*/
  /*color: var(--text-primary);*/
}
.menu-item__desc {
  /*font-size: calc(var(--base-size) * 1.625);*/
  /*color: var(--text-secondary);*/
  /*line-height: 1.4;*/
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 600;
}
.section-title {
  font-size: calc(var(--font-base-size) * 1.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: calc(var(--base-size) * 2);
  display: block;
}
.close-button {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
  color: red;
}

/* Menu */

.logo a {
  color: var(--text);
  font-family: var(--ff-saira-stencil-one);
}

.logo span {
  display: inline-block;
  color: var(--raw-seinna);
  margin-left: 2px;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.navbar-actions select {
  color: var(--text);
  width: 45px;
}

.navbar-actions option {
  background: var(--bg-primary);
  color: var(--text);
}

.theme-btn {
  padding: 4px;
  width: 48px;
  /* background: var(--bg-secondary); */
  border-radius: 100px;
  transition: var(--transition-1);
}

.icon {
    border: 1px solid var(--text);
    border-radius: 5%;
    color: var(--raw-seinna);
    font-size: 35px;
    line-height: 65px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    width: 70px;
}

.header.active .theme-btn {
  background: var(--bg-primary);
}

.theme-btn .icon {
  position: relative;
  left: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  /* box-shadow: inset 9px -6px var(--color-primary); */
  transition: var(--transition-1);
}

.theme-btn.active .icon {
  content: "teet";
  left: 20px;
  /* display: none; */
  box-shadow: inset 20px -20px var(--sizzling-sunrise);
}

.emoji-fill {
  color: transparent;
  text-shadow: 0 0 0 var(--text);
}

.theme-toggle-btn {
  /*position: fixed;*/
  /*top: var(--space-md);*/
  /*right: var(--space-md);*/
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease-liquid),
    box-shadow var(--dur-fast);
}
.theme-toggle-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 20px;
    /*fill: red;*/
}

.icon-light {
    font-size: 35px;
}

.blue-moon {
  background: linear-gradient(to bottom, #1e3a8a, #3b82f6); /* Gradient! */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
}

.theme-toggle-btn:hover {
  transform: scale(1.1) rotate(15deg);
}
.theme-toggle-btn .icon-dark {
  display: block;
}
.theme-toggle-btn .icon-light {
  display: none;
}
[data-theme="light"] .theme-toggle-btn .icon-dark {
  display: none;
}


[data-theme="light"] .theme-toggle-btn .icon-light {
  display: block;
}

.nav-toggle-btn {
  position: relative;
  /* transform: rotate(-55deg); */
  transition: var(--transition-1);
  z-index: 2;
  padding-right: 19px;
}


.nav-toggle-btn.active {
  transform: rotate(-45deg);
}

.nav-toggle-btn span {
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px;
  transition: var(--transition-1);
}

.nav-toggle-btn :is(.one, .three) {
  width: 10px;
}

.nav-toggle-btn .one {
  margin-left: auto;
  transform-origin: left;
}

.nav-toggle-btn .three {
  transform-origin: right;
}

.nav-toggle-btn.active .one {
  transform: rotate(90deg) translateX(-3px);
}

.nav-toggle-btn.active .three {
  transform: rotate(90deg) translateX(3px);
}

.navbar {
  position: fixed;
  /*background: red;*/
  /*background: var(--background);*/
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  /*display: grid;*/
  place-items: center;
  visibility: hidden;
  transition: 0.25s cubic-bezier(0.71, 0.01, 0.24, 0.99);
  transition-delay: .1s;
  z-index: 1;
  padding: 0;
  
}


.navbar-list {
    width:100%;
}

.navbar-list>li {
  margin-block: 20px;
  padding-inline: 50px;
  overflow: hidden;
  text-align: center;
}

.navbar-link {
  position: relative;
  width: max-content;
  margin-inline: auto;
  color: var(--color-primary);
  font-family: var(--ff-poppins);
  font-size: var(--fs-1);
  padding: 10px;
  transform: translateY(50px);
  transition: .75s cubic-bezier(0.68, -0.55, 0.27, 2);
}

.navbar.active .navbar-link {
  transform: translateY(0);
  transition-delay: .5s;
}

.navbar-link::before {
  content: '';
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  left: 0;
  height: 5px;
  width: 0;
  background: var(--raw-seinna);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus)::before {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition-1);
  z-index: 9999;
}

.scrolled {
    /*backdrop-filter: blur(10px);*/
    background : var(--background);
    box-shadow: 0 4px 5px var(-text);
}

.header.active {
  /* padding-block: 12px; */
  background: var(--bg-secondary);
  box-shadow: var(--shadow-1);
}

/** {*/
/*    border: 1px solid red ;*/
/*}*/

.header .container-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
/* color: red;
  background : blue;*/
  
  
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1.2;
  font-weight: 400;
}

.container-menu {
  padding-inline: 10px;
  /*background: red;*/
}

/*.header[data-header="scrolled"]  {*/
    /*backdrop-filter: blur(10px);*/
    /*background : var(--background);*/
    /*box-shadow: 0 4px 5px var(-text);*/
/*}*/


@keyframes fade-in-stagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (min-width: 576px) {
  .about-container {
    /*max-width: 540px;*/
  }

  
    
}

.navbar.active {
  top: 0;
  visibility: visible;
  transition-delay: 0s;
  background: var(--background);
}

@media(max-width: 968px) {
  /*.header .navbar ul li:not(:last-child) { display: none; }*/
  /*.icons { display: none; }*/
  /*.text-content { position: relative; width: 300px; margin: 14rem 0 0 4rem; }*/
  /*.content .flex-box { flex-direction: column; }*/
  /*.price .plans { flex-direction: column; }*/
  /*.flex-box .flex { margin-bottom: 40px;}*/
  /*.plans .plan { margin-top: 1.5rem; }*/
  /*.footer { flex-direction: column; gap: 2rem; height: 300px; }*/
  /*    .footer .footer-logo { margin-top: 1rem; }*/
}

@media screen and (max-width: 576px) {
  /*.text-content { width: 250px; }*/
  .about-us {
        width: 84%;   
  }
}

@media screen and (min-width: 992px) {
  :root {
    --fs-2: 3rem;
    --section-padding: 100px;
  }

  .container-menu {
    max-width: 100%;
  }

  /* .header {
    padding-block: 30px;
  }

  .header.active {
    padding-block: 15px;
  } */

  .navbar-actions {
    order: 1;
    margin-left: 0;
  }

  .nav-toggle-btn {
    display: none;
  }

  .navbar {
    all: unset;
  }

  .navbar-link {
    transform: translateY(0);
    font-size: unset;
    padding-inline: 5px;
  }

  .navbar-list>li {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .navbar-link::before {
    height: 2px;
  }

}
