 
:root {
    --x: 45deg;
    --primary-clr: #f15a25;
    --secondary-clr: #F5853F;
    --primary-devtom: #a5f9c5;
    --secondary-devtom: #fb4a4f;
    --body-clr: linear-gradient(45deg, #E3E3E3 2%, #FBFFFE 100%);
    --gradient-clr: linear-gradient(45deg, #FB5607 2%, #070707 100%);
    --body-dark: #d7e0de;
    --font-light: #FAFAFA;
    --font-dark: #333138;
    --darker-bg: #070707;
    --light-glass-clr: rgba(255, 255, 255, 0.05);
    --glass-clr: rgba(0, 0, 0, 0.25);
    --darker-glass-clr: rgba(0, 0, 0, 0.75);
    --slightly-dark-clr: rgba(0,  0, 0, 0.35);
    --border: 0.1rem solid rgba(255, 255, 255, 0.35);
    --small-radius: 0.5rem;
    --normal-radius: 1rem;
    --ease-out: cubic-bezier(0.5, 1, 0.89, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --small-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.6);
    --shadow:  0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.6);
    --txt-shadow:
      0 1px 0 #ccc, 
      0 2px 0 #c9c9c9, 
      0 3px 0 #bbb, 
      0 4px 0 #b9b9b9, 
      0 5px 0 #aaa, 
      0 6px 1px rgba(0,0,0,.1), 
      0 0 5px rgba(0,0,0,.1), 
      0 1px 3px rgba(0,0,0,.3), 
      0 3px 5px rgba(0,0,0,.2), 
      0 5px 10px rgba(0,0,0,.25), 
      0 10px 10px rgba(0,0,0,.2), 
      0 20px 20px rgba(0,0,0,.15);
    --normal-reflection: below 0.5rem linear-gradient(transparent, transparent, #000);
}

@font-face {
    font-family: General;
    src: url(/static/Core/fonts/Lato-Light.ttf);
}

@font-face {
    font-family: Headers;
    src: url(/static/Core/fonts/Lato-Regular.ttf);
}

@font-face {
    font-family: Devtom;
    src: url(/static/Core/fonts/DT.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: Headers;
    color: var(--font-dark);
    font-size: 10px;
    letter-spacing: 1.5px;
}

::-webkit-scrollbar {
    width: 0.5rem;
    background: var(--font-dark);
    opacity: 0.5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, var(--primary-clr));
    border-radius: var(--font-dark);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, var(--secondary-clr));
}

body {
    position: relative;
    background: var(--body-clr);
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 100vh;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
h7,
small,
span {
    pointer-events: none;
    user-select: none;
    font-weight: 300;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    user-select: none;
}

.body-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;;
}


/* loader */
.circle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--body-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    gap: 3rem;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
    z-index: 20000;
}

.loader {
  position: relative;
  width: 7.33333em;
  height: 7.33333em;
}

.loader-block {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  opacity: 0;
  width: 2em;
  height: 2em;
  background: var(--primary-clr);
  -webkit-animation: show 0.88s step-end infinite alternate, pulse 0.88s linear infinite alternate;
  animation: show 0.88s step-end infinite alternate, pulse 0.88s linear infinite alternate;
}

.loader-block:nth-child(1) {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-animation-delay: 0.065s;
  animation-delay: 0.065s;
}

.loader-block:nth-child(2) {
  -moz-transform: translate(2.66667em, 0);
  -ms-transform: translate(2.66667em, 0);
  -webkit-transform: translate(2.66667em, 0);
  transform: translate(2.66667em, 0);
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
}

.loader-block:nth-child(3) {
  -moz-transform: translate(5.33333em, 0);
  -ms-transform: translate(5.33333em, 0);
  -webkit-transform: translate(5.33333em, 0);
  transform: translate(5.33333em, 0);
  -webkit-animation-delay: 0.195s;
  animation-delay: 0.195s;
}

.loader-block:nth-child(4) {
  -moz-transform: translate(0, 2.66667em);
  -ms-transform: translate(0, 2.66667em);
  -webkit-transform: translate(0, 2.66667em);
  transform: translate(0, 2.66667em);
  -webkit-animation-delay: 0.325s;
  animation-delay: 0.325s;
}

.loader-block:nth-child(5) {
  -moz-transform: translate(2.66667em, 2.66667em);
  -ms-transform: translate(2.66667em, 2.66667em);
  -webkit-transform: translate(2.66667em, 2.66667em);
  transform: translate(2.66667em, 2.66667em);
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
}

.loader-block:nth-child(6) {
  -moz-transform: translate(5.33333em, 2.66667em);
  -ms-transform: translate(5.33333em, 2.66667em);
  -webkit-transform: translate(5.33333em, 2.66667em);
  transform: translate(5.33333em, 2.66667em);
  -webkit-animation-delay: 0.455s;
  animation-delay: 0.455s;
}

.loader-block:nth-child(7) {
  -moz-transform: translate(0, 5.33333em);
  -ms-transform: translate(0, 5.33333em);
  -webkit-transform: translate(0, 5.33333em);
  transform: translate(0, 5.33333em);
  -webkit-animation-delay: 0.39s;
  animation-delay: 0.39s;
}

.loader-block:nth-child(8) {
  -moz-transform: translate(2.66667em, 5.33333em);
  -ms-transform: translate(2.66667em, 5.33333em);
  -webkit-transform: translate(2.66667em, 5.33333em);
  transform: translate(2.66667em, 5.33333em);
  -webkit-animation-delay: 0.26s;
  animation-delay: 0.26s;
}

.loader-block:nth-child(9) {
  -moz-transform: translate(5.33333em, 5.33333em);
  -ms-transform: translate(5.33333em, 5.33333em);
  -webkit-transform: translate(5.33333em, 5.33333em);
  transform: translate(5.33333em, 5.33333em);
}

@-webkit-keyframes pulse {
  from,
  40% {
    background: var(--primary-clr);
  }
  to {
    background: var(--font-dark);
  }
}
@-webkit-keyframes show {
  from, 40% {
    opacity: 0;
  }
  41%, to {
    opacity: 1;
  }
}
@keyframes pulse {
  from,
  40% {
    background: var(--primary-clr);
  }
  to {
    background: var(--font-dark);
  }
}
@keyframes show {
  from, 40% {
    opacity: 0;
  }
  41%, to {
    opacity: 1;
  }
}

.loader-stuff {
  position: relative;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.loader-img {
  position: relative;
  width: 5rem;
  height: 5rem;
}

.laoder-p {
  position: relative;
  width: fit-content;
  font-size: 3rem;
  line-height: 2.5rem;
  font-weight: 700;
}


/* scroll-to-top */
#progress {
    position: fixed;
    background: var(--font-dark);
    bottom: 2rem;
    right: 2.5%;
    height: 2.25rem;
    width: 2.25rem;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0.5rem 0rem var(--primary-clr);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
  }
  
  #progress-value {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.75rem;
    width: 1.75rem;
    background: var(--body-clr);
    border-radius: 50%;
  }
  
  #progress-value svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: var(--primary-clr);
  }


  /* navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem; 
    border-bottom: var(--border);
    background: var(--darker-glass-clr);
    backdrop-filter: blur(0.5rem);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    position: relative;
    max-width: calc(1600px - 7.5%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
}

.nav-list li {
    position: relative;
    line-height: 6rem;
}

.sub-menu > li {
    line-height: 3.5rem;
}

.sub-menu > li a {
    font-size: 1.8rem;
    cursor: pointer;
}

.nav-list a {
    display: block;
    color: var(--font-light);
    font-family: Headers;
    font-size: 2.2rem;
    padding: 0 1.5rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.nav-list a i {
    font-size: 1.15rem;
}

.nav-list a:hover {
    color: var(--primary-clr);
}

.sub-menu {
    position: absolute;
    display: block;
    width: 22.5rem;
    background: rgba(0,0,0,0.7);
    border-top: 0.25rem solid var(--secondary-clr);
    z-index: 100;;
    opacity: 0;
    visibility: hidden;
    top: 12rem;
    transition: all 0.45s ease;
}

.sub-menu::before {
    position: absolute;
    content: "";
    top:-2rem;
    left: 1.5rem;
    border: 1rem solid transparent;
    border-bottom-color: var(--secondary-clr);
}

.sub-menu .sub-menu {
    top:0;
    left: 130%;
    border-top: none;
    border-left: 0.25rem solid var(--primary-clr);
}

.sub-menu .sub-menu::before {
    top: 0.9rem;
    left: -2rem;
    border: 1rem solid transparent;
    border-right-color: var(--primary-clr);
}

.menu-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 6rem;
    height: 6rem;
    z-index: 1000;
    display:none;
}

.nav-list li:hover:hover > .sub-menu {
    top: 6rem;
    opacity: 1;
    visibility: visible;
}

.sub-menu li:hover:hover > .sub-menu {
    top: 0;
    opacity: 1;
    left: calc(100% + 0.75rem);
    visibility: visible;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .hamRotate.active {
    transform: rotate(45deg);
  }

  .line {
    fill:none;
    stroke:var(--secondary-clr);
    transition: stroke 300ms, stroke-dasharray 300ms, stroke-dashoffset 300ms;
    stroke-width:5.5;
    stroke-linecap:round;
  }

  .ham4.active .line {
    stroke: var(--primary-clr);
  }

  .ham4 .top {
    stroke-dasharray: 40 121;
  }
  .ham4 .bottom {
    stroke-dasharray: 40 121;
  }
  .ham4.active .top {
    stroke-dashoffset: -68px;
  }
  .ham4.active .bottom {
    stroke-dashoffset: -68px;
  }

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Headers;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--font-light);
    transition: 0.3s;
    line-height: 4rem;
}

.logo-cnt {
  position: relative;
  width: 4rem;
  height: 4rem;
}

.logo span {
    color: var(--primary-clr);
    font-weight: 700;
    transition: 0.3s;
}

.logo:hover {
    transform: scale(0.95);
    color: var(--primary-clr);
}

.logo:hover span {
    color: var(--font-light);
}

.logo:hover img {
  filter: grayscale(100%);
}


 /* footer section */
 footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 5rem;
    background: var(--gradient-clr);
    border-top: var(--border);
  }

  .footer-container {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 3rem;
  }

  .foot-cnt {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .foot-socials {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 5rem);
  }

  .foot-socials li a {
    display: inline-block;
    width: 3.6rem;
    height: 3.6rem;
    background: var(--glass-clr);
    border: var(--border);
    border-radius: var(--small-radius);
    box-shadow: var(--small-shadow);
    -webkit-box-reflect: var(--normal-reflection);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
  }

  .foot-socials li a i {
    color: var(--font-light);
    font-size: 2rem;
    transition: 0.3s ease-in-out;
  }

  .foot-socials li a:hover {
    background: var(--darker-glass-clr);
  }

  .foot-socials li a:hover i {
    color: var(--primary-clr);
  }

  .foot-support,
  .foot-quick,
  .foot-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .foot-support li a,
  .foot-quick li a {
    font-family: Headers;
    color: var(--font-light);
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    opacity:0.7;
    transition: 0.3s ease-in-out;
  }

  .foot-support li a:hover,
  .foot-quick li a:hover {
    opacity: 1;
  }

  .foot-contact li {
    position: relative;
    width: 100%;
    display: flex;
    gap: 1rem;
    transition:0.3s ease-in-out;
  }

  .foot-contact li span {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--glass-clr);
    border-radius: var(--small-radius);
    border: var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .foot-contact li span i {
    font-size: 1.4rem;
    color: var(--font-light);
    transition: 0.3s ease-in-out;
  }

  .foot-contact li a {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    font-weight: 700;
    color: var(--font-light);
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s ease-in-out;
  }

  .foot-contact li:hover span i {
    color: var(--font-light);
  }

  .foot-contact li:hover  a {
    opacity: 1;
  }

  .copyright {
    position: relative;
    width: 100%;
    padding: 2rem 5rem;
    background: var(--font-dark);
    border-top: 0.1rem solid var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .copy-p {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    line-height: 2.5rem;
    color: var(--font-light);
  }

  .copy-p a {
    pointer-events: auto;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-family: Devtom;
    font-size: 1.2rem;
    color: var(--primary-devtom);
  }

  .copy-p a span {
    color: var(--secondary-devtom);
    transition: 0.3s ease-in-out;
  }

  .copy-p a:hover {
    color: var(--secondary-devtom);
  }

  .copy-p a:hover span {
    color: var(--primary-devtom);
  }


/* general stuff */
.full-sec {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 6rem);
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 0;
  }

  .top-sec,
  .tp-btm-sec,
  .gen-sec  {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 8rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem
  }

  .tp-btm-sec {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }

  .gen-sec {
    margin: 4rem 0;
  }

  .colored-sec {
    background: var(--body-dark);
    padding: 4rem 0;
  }

  .top-to-bottom-sec {
    margin: 8rem 0;
  }

  .picture-sec {
    position: relative;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 6rem);
    background: url(/static/Core/images/home/growth.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .padded {
    padding: 8rem 0;
  }

  .gen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
  }

  .border-img {
    width: 95%;
    height: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .gen-head {
    position: relative;
    width: fit-content;
    font-family: Headers;
    font-size: 3rem;
    color: var(--primary-clr);
    letter-spacing: 0.2rem;
  }

  .foot-head {
    position: relative;
    font-size: 2rem;
    color: var(--font-light);
  }

  .gen-head::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -0.5rem;
    width: 50%;
    height: 0.3rem;
    background: var(--font-dark);
  }

  .centerd-head {
    text-align: center;
  }

  .centerd-head::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .foot-head::before,
  .light-head::before {
    background: var(--font-light);
  }

  .light-head {
    color: var(--font-light);
  }

  .gen-p {
    font-size: 1.6rem;
    color: var(--font-dark);
    line-height: 2.5rem;
  }

  .light-p {
    color: var(--font-light);
  }

  .foot-p {
    font-size: 1.4rem;
  }

  .gen-cnt {
    position: relative;
    width: 95%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }

  .gen-inner-cnt {
    position: relative;
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .halved-cnt {
    width: 50%;
  }

  .gen-img-cnt {
    height: 70rem;
    border: 0.3rem solid var(--primary-clr);
  }

  .smaller-img-cnt {
    height: 40rem;
  }

  .inner-service-cards {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 5px 0;
  }

  .service-card {
    flex: 1;
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 0.1rem solid var(--darker-bg);
    margin: 0.2rem;
    padding: 1rem;
    &:first-child {
      margin-left: 0;
    }
    &:last-child {
      margin-right: 0;
    }
  }

  .service-head {
    position: relative;
    font-family: Headers;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .service-p {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .service-head span {
    width: calc(100% - 4.5rem)
  }
  
  .service-head i {
    font-size: 4rem;
    color: var(--font-dark);
  }

  .blanket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-glass-clr);
  }

  .small-cnt {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }

  .inner-p {
    position: relative;
    font-size: 3rem;
    text-align: center;
    color: var(--font-light);
    line-height: 5rem;
  }


/* contact page */
.submitted {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    }

    .sub-contact-cnt {
    position: relative;
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
    }

    .sub-contact-cnt small {
    font-family: Headers;
    font-size: 1.8rem;
    color: var(--font-light);
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 0.2rem;
    }

    .sub-img {
      position: relative;
      width: 15rem;
      height: 15rem;
      background: var(--light-glass-clr);
      border-radius: var(--small-radius);
      border: var(--border);
    }

    .average-btn {
      position: relative;
      width: fit-content;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 0.2rem;
      color: var(--primary-clr);
      transition: 0.3s ease-in-out;
    }

    .average-btn:hover {
      opacity: 0.7;
    }

    .average-btn i {
      color: var(--font-dark);
    }

    .large-avg-btn {
      font-size: 2.25rem;
    }

    .light-btn,
    .light-btn i {
      color: var(--font-light);
    }

    .average-btn::before {
      position: absolute;
      content: "";
      left: 0;
      bottom: -0.5rem;
      width: 100%;
      height: 0.2rem;
      background: linear-gradient(45deg, var(--secondary-clr), var(--font-dark));
    }

    .light-btn::before {
      background: linear-gradient(45deg, var(--font-light), var(--secondary-clr));
    }

    .contact-cnt {
    position: relative;
    width: 80%;
    min-height: calc(30vh - 6rem);
    background: var(--glass-clr);
    backdrop-filter: blur(0.25rem);
    border: var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--small-radius);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem 1rem;
    }

    .contact-cnt.consult-dark-cnt {
    background: var(--darker-glass-clr);
    }

    .contact-inner-cnt {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1rem;
    }

    .contact-inner-cnt .row-100 {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 1rem;
    }
    
    .contact-inner-cnt .row-100.row-50 {
    width: 50%;
    }

    .contact-inner-cnt .row-100 .col {
    position: relative;
    width: 100%;
    margin: 3rem 0 1rem;
    transition: 0.3s;
    }

    .contact-inner-cnt .row-100 .input-bx {
    position: relative;
    width: 100%;
    height: 3.5rem;
    color: var(--primary-clr);
    }

    .contact-inner-cnt .row-100 .input-bx.service-input {
      height: 3.5rem;
    }

    .contact-inner-cnt .row-100 .input-bx .errorlist {
    position: absolute;
    top: 100%;
    }

    .contact-inner-cnt .row-100 .input-bx .errorlist li {
    color: var(--font-light);
    font-size: 1rem;
    width: 100%;
    height: 100%;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    background: var(--secondary-clr);
    }

    .contact-inner-cnt .row-100 .input-bx input,
    .contact-inner-cnt .row-100.row-50 .input-bx input,
    .contact-inner-cnt .row-100 .input-bx select,
    .contact-inner-cnt .row-100 .input-bx.textarea textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: transparent;
    border: none;
    outline: none;
    font-family: General;
    font-size: 1.4rem;
    color:var(--font-light);
    letter-spacing: 0.15rem;
    padding: 0.5rem;
    z-index: 10;
    }

    .contact-inner-cnt .row-100.row-50.fichwa {
    display: none;
    }

    .contact-inner-cnt .row-100 .input-bx select {
    background: var(--glass-clr);
    }

    .contact-inner-cnt .row-100 .input-bx select option {
    background: var(--darker-bg);
    }

    .contact-inner-cnt .row-100 .input-bx .contact-txt {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 4rem;
    font-size: 1.6rem;  
    font-family: Headers;
    color: var(--font-light);
    padding:0 0.5rem;
    display: block;
    transition: 0.3s;
    pointer-events: none;
    user-select: none;
    }

    .contact-inner-cnt .row-100 .input-bx input:focus + .contact-txt,
    .contact-inner-cnt .row-100 .input-bx input:valid + .contact-txt {
    top: -3.5rem;
    left: -0.5rem;
    font-size: 1.4rem;
    color: var(--font-light);
    opacity: 0.7;
    }

    .contact-inner-cnt .row-100 .input-bx .captcha-question,
    .contact-inner-cnt .row-100 .input-bx .all-the-way-up {
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    padding:0 0.5rem;
    font-size: 1.4rem;
    font-family: Headers;
    color: var(--font-light);
    opacity: 0.7;
    pointer-events: none;
    user-select: none;
    }

    .contact-inner-cnt .row-100 .input-bx .all-the-way-up {
    top: -3.5rem;
    }

    .contact-inner-cnt .row-100 .input-bx .contact-line {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 0.1rem;
    background: linear-gradient(45deg, var(--font-light), var(--secondary-clr));
    transition:0.3s;
    pointer-events: none;
    border-radius: 0.2rem;
    }

    .contact-inner-cnt .row-100 .input-bx input:focus ~ .contact-line,
    .contact-inner-cnt .row-100 .input-bx input:valid ~ .contact-line {
    height: 100%;
    background: var(--glass-clr);
    border: 0.1rem solid var(--font-light);
    }

    .contact-inner-cnt .row-100.row-50 .input-bx .contact-line,
    .contact-inner-cnt .row-100 .input-bx.all-to-the-top .contact-line  {
    height: 100%;
    background:var(--glass-clr) ;
    border: 0.1rem solid var(--font-light);
    }

    .contact-inner-cnt .row-100 .input-bx.textarea {
    position: relative;
    width: 100%;
    height: 20rem;
    padding: 0.5rem 0;
    }

    .contact-inner-cnt .row-100 .input-bx.textarea textarea {
    height: 100%;
    resize: none;
    overflow-y: scroll;
    }

    .contact-inner-cnt .row-100 .input-bx textarea:focus + .contact-txt,
    .contact-inner-cnt .row-100 .input-bx textarea:valid + .contact-txt {
    top: -3.5rem;
    left: -0.5rem;
    font-size: 1.4rem;
    color: var(--font-light);
    opacity: 0.7;
    }

    .contact-inner-cnt .row-100 .input-bx textarea:focus ~ .contact-line,
    .contact-inner-cnt .row-100 .input-bx textarea:valid ~ .contact-line {
    height: 100%;
    background: var(--glass-clr);
    border: 0.1rem solid var(--font-light);
    }

    .gen-btn {
      position: relative;
      width: 15rem;
      height: 5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: Headers;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--font-dark);
      text-transform: uppercase;
      letter-spacing: 0.3rem;
      background: transparent;
      border: 0.3rem solid var(--primary-clr);
      outline: none;
      cursor: pointer;
      user-select: none;
      transition: 0.3s ease-in-out;
    }

    .gen-light-btn {
      color: var(--font-light);
    }

    .gen-btn span {
      position: absolute;
      font-weight: 700;
      width: 100%;
      height: 100%;
      top: -0.5rem;
      left: -0.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .gen-btn::before {
      position: absolute;
      content: "";
      top: -1rem;
      left: -1rem;
      width: 100%;
      height: 100%;
      border: 0.3rem solid var(--primary-clr);
      transition: 0.3s ease-in-out;
    }
    
    .gen-btn:hover {
      border: 0.3rem solid var(--font-dark);
      color: var(--primary-clr);
    }

    .gen-light-btn:hover {
      border: 0.3rem solid var(--font-light);
    }

    .gen-btn:hover::before {
      border: 0.3rem solid var(--font-dark);
    }

    .gen-light-btn:hover::before {
      border: 0.3rem solid var(--font-light);
    }


    /* headers */
    .head-sec {
      position: relative;
      margin-top: 6rem;
      width: 100%;
      height: 30vh;
      background-image: url(/static/Core/images/headers/headers.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .header-div {
      position: relative;
      width: 50rem;
      height: 8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      background: var(--glass-clr);
      backdrop-filter: blur(0.35rem);
      box-shadow: var(--shadow);
      border-top: var(--border);
      border-right: var(--border);
      border-radius: var(--small-radius);
    }
  
    .header1 {
    font-family: Headers;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--font-light);
   }
   
   .header1 .text-wrapper {
     position: relative;
     display: inline-block;
     padding-top: 0.1em;
     padding-right: 0.05rem;
     padding-bottom: 0.15rem;
   }
   
   .header1 .l-line {
     opacity: 0;
     position: absolute;
     left: 0;
     height: 0.2rem;
     width: 100%;
     background-color: var(--font-light);
     transform-origin: 100% 100%;
     bottom: 0;
   }
   
   .header1 .letter {
     display: inline-block;
     line-height: 1em;
   }


     /* faqs page */
     .faqs-sec {
      position: relative;
      width: 70%;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      gap: 2rem;
      margin: 8rem 0;
     }

     .faq-inner-cnt {
      position: relative;
      width:100%;
      display:flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column;
      gap: 1rem;
    }

    .terms-head {
      position: relative;
      font-family: Headers;
      font-size: 2.75rem;
      color:var(--primary-clr);
    }

    .smaller-head {
      font-size: 2.45rem;
      color: var(--font-light);
    }
  
    .terms-head::before,
    .smaller-head::before {
      position: absolute;
      left: -0.5rem;
      top: 50%;
      transform: translateY(-50%);
      content: "";
      height: 3.5rem;
      width: 0.5rem;
      background: var(--secondary-clr);
      z-index: -1;
    }
  
    .smaller-head::before {
      height: 2.5rem;
    }
  
    .terms-ul {
      position: relative;
      display:flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap:0.5rem;
      flex-direction: column;
    }
  
    .faq-inner-cnt hr {
      position: relative;
      width:100%;
      height:0.1rem;
      background: var(--font-dark);
      border: none;
      outline: none;
    }
  
    .terms-ul li {
      position:relative;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      width:100%;
      gap: 0.5rem;
    }
  
    .terms-ul li i {
      font-size: 1.4rem;
      color: var(--primary-clr);
    }
  
    .terms-ul li p,
    .terms-ul li .terms-p {
      font-size: 1.4rem;
      letter-spacing: 0.1rem;
      opacity: 0.7;
    }
  
    .terms-ul li .terms-p {
      font-size: 1.5rem;
    }
  
     .faq {
      position: relative;
      width:100%;
      padding-bottom: 1rem;
      border-bottom: 0.2rem solid var(--font-dark);
      transition: 0.3s ease-in-out;
    }
    
    .faq.open {
      border-bottom: 0.2rem solid var(--primary-clr);
    }
    
    .faq-question {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      user-select: none;
    }
  
    .faq-line {
      position: absolute;
      left:0;
      top: 50%;
      transform: translateY(-50%);
      width: 0.5rem;
      height: 2.5rem;
      background-color: var(--secondary-clr);
      opacity:0;
      user-select: none;
      pointer-events: none;
      transition:0.3s ease-in-out;
    }
  
    .faq.open .faq-line {
      opacity: 1;
    }
    
    .faq-query {
      position: relative;
      width: fit-content;
      font-size: 1.65rem;
      font-family: Headers;
      letter-spacing: 0.2rem;
      font-weight: 700;
      transition: 0.3s ease-in-out;
    }
    
    .faq.open .faq-query {
      color: var(--primary-clr);
      margin-left: 1.25rem;
      opacity: 1;
    }
    
    .faq-icon {
      position: relative;
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s ease-in-out;
    }
    
    .faq-icon i {
      font-size: 2rem;
      color: var(--primary-clr);
      opacity: 0.7;
      transition: 0.3s ease-in-out;
    }
    
    .faq.open .faq-icon i {
      color: var(--font-dark);
      transform: rotate(180deg);
      opacity: 1;
    }
    
    .faq-answer {
      position: relative;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 2rem;;
      transition: max-height 0.6s ease-in-out;
    }
    
    .faq.open .faq-answer {
      max-height: 100rem;
      animation: fade 1.2s ease-in-out;
    }

    @keyframes fade{
      from {
        opacity: 0;
        transform: translateY(-1rem);
      }
      to {
        opacity: 1;
        transform: translateY(0rem);
      }
    }


    /* error page */
    .error-cnt {
      position: relative;
      width: 95%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .error-head,
    .error-text {
      position: relative;
      width: 100%;
      text-align: center;
      font-size: 30rem;
      color: var(--primary-clr);
      text-shadow: var(--txt-shadow);
    }

    .error-text {
      font-size: 3rem;
      color: var(--font-light);
    }

    .error-btns {
      position: relative;
      margin-top: 3rem;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;;
    }


    /* about page */
    .values-cnt {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }

    .about-ul {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 0.5rem;
    }

    .about-ul li {
      position: relative;
      width: 100%;
      padding: 0.5rem;
      border: 0.1rem solid var(--darker-bg);
      transition: 0.3s ease-in-out
    }

    .about-ul li:hover {
      border: 0.1rem solid var(--primary-clr);
    }


    /* home page */
    .home-sec {
      position: relative;
      width: 100%;
      margin-top: 6rem;
      min-height: calc(100vh - 6rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 4rem 0;
    }

    .home-cnt {
      position: relative; 
      width: 95%;
      height: auto;
      padding: 4rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 4rem;
      background-color: var(--body-dark);
      border-radius: var(--small-radius);
      box-shadow: var(--small-shadow);
    }
    
    .home-left {
      position: relative;
      width: 40%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    
    .home-left small {
      position: relative;
      font-family: General;
      font-size: 1.4rem;
      font-weight: 700;
    }
    
    .home-head {
      position: relative;
      font-family: Headers;
      color: var(--primary-clr);
      font-size: 4rem;
      font-weight: 600;
      line-height: 4rem;
      letter-spacing: 0.2rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }
    
    .home-btns {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-top: 2rem;
      gap:2rem;
    }
    
    .home-icons {
      position: relative;
      width: 100%;
      height: auto;
      display: flex;
      margin-top: 3rem;;
    }
    
    .home-icons .foot-sci li {
      width: 4rem;
      height: 4rem;
    }
    
    .swiper {
      position: relative;
      width: 50%;
      height: 45rem;
      box-shadow: var(--small-shadow);
      border-radius: var(--small-radius);
    }
    
    .swiper-slide {
      position: relative;
      width: 100%;
      height: 100%;
    }
    
    .swiper-slide img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
      color:var(--font-light);
    }


  /* responsiveness */
  @media (max-width: 991px) {
    .nav-list {
        position: absolute;
        top: 6rem;
        right:100%;
        height: calc(100vh - 6rem);
        flex-direction: column;
        width: 100%;
        background: linear-gradient(to left , var(--darker-glass-clr), #000);
        transition: 0.3s ease-in-out;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .nav-list > li {
        line-height: 6rem;
    }

    .sub-menu {
        position: initial;
        margin-left: 1rem;
        border-top: none;
        border-left: 0.25rem solid var(--secondary-clr);
        max-height: 0;
        width: 100%;
    }

    .sub-menu::before {
        display: none;
    }

    .nav-list li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: initial;
    }

    .menu-icons  {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-list.is-active {
       right: 0;
    }

    footer {
        padding: 5rem 5%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .copyright {
        padding: 2rem 5%;
    }

    .contact-cnt {
      width: 95%;
    }

    .faqs-sec {
      width: 95%;
    }

    .service-card {
      margin-bottom: 0.5rem;
      flex-basis: 40%;
      &:nth-last-child(2) {
        margin-right: 0;
      }
      &:last-child {
        flex-basis: 100%;
        margin: 0;
      }
    }

    .gen-cnt {
      flex-direction: column-reverse;
    }

    .reversed {
      flex-direction: column;
    }

    .gen-inner-cnt {
      width: 100%;
    }

    .home-cnt {
      flex-direction: column;
  }

    .home-left {
      width: 100%;
  }

  .swiper {
      width: 100%;
      height: 30rem;
  }

  .small-cnt {
    width: 95%;
  }
}

@media (max-width: 770px) {
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
  }

  @media(max-width: 660px) { 
    .contact-inner-cnt .row-100 {
      grid-gap: 0;
    }

    .contact-inner-cnt .row-100.row-50 {
      width: 100%;
    }

    .sub-img {
      width: 10rem;
      height: 10rem;
    }

    .sub-contact-cnt {
      width: calc(100% - 11rem);
    }

    .service-card {
      flex-basis: 100%;
      margin: 0 0 0.5rem 0;
    }

    .inner-p {
      font-size: 2rem;
      line-height: 3rem;
    }
  }

  @media (max-width: 600px) {

    .header-div {
      width: 95%;
    }

    .header1 {
      font-size: 3.25rem;
    }

    .error-head{
      font-size: 20rem;
    }

    .gen-img-cnt {
      height: 50rem;
    }

    .smaller-img-cnt {
      height: 30rem;
    }

  }