/* Mobile */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #252CBF;
    --secondary: #428EFF;
    --tint: #efefef;
    --shadow: #3D3D3D;
  }
  /* manrope-regular */
  @font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-display: swap;
  }
  /* manrope-bold-700 */
  @font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: local(''), url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-display: swap;
  }
  /* poppins-regular */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-display: swap;
  }
  /* poppins-semiBold */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: local(''), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-display: swap;
  }
  /* poppins-bold-700 */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local(''), url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-display: swap;
  }
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  body,
  html {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    font-size: 100%;
    font-family: 'Poppins', Arial, sans-serif;
  }
  body {
    font-size: 16px;
    height: 100%;
    overscroll-behavior: none;
  }
  ul {
    list-style: none;
    margin-right: 1em;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 135%;
    color: black;
    margin-top: 0;
  }
  h1 {
    font-size: 2.45em;
    font-weight: 700;
    color: white;
    margin: 0 0 0.57142857em 0;
    line-height: 150%;
  }
  h2,
  .page-h1 {
    font-size: 1.7em;
    margin-bottom: 0.47058824em;
    color: black;
    font-weight: bold;
    text-transform: capitalize;
    font-family: 'Poppins', Arial, sans-serif;
  }
  button {
    background: none;
    border: none;
    cursor: pointer;
  }
  h3 {
    font-size: 1.1em;
    margin-bottom: 0.45454545em;
    line-height: 1.5em;
  }
  p,
  a,
  li,
  span {
    color: #2F2F2F;
    margin: 0;
    font-weight: normal;
    font-size: 0.8em;
    line-height: 1.5em;
  }
  p {
    margin-bottom: 1.25em;
  }
  a {
    text-decoration: none;
    cursor: pointer;
    font-size: 1.0625em;
  }
  .opacity-full {
    opacity: 1 !important;
  }
  .hidden {
    display: none;
  }
  .hide {
    width: 100%;
    height: 2.75em;
    background-color: white;
    z-index: 8;
    position: relative;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .icon {
    transform: translateY(0.15em);
    width: 1.05em;
    height: 0.9em;
  }
  .button-solid {
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-size: 0.9em;
    padding: 0.83333333em 1.33333333em;
    background-color: var(--primary);
    border-radius: 0.55555556em;
    color: white;
    transition: color 0.3s;
    transition-delay: 0.1s;
  }
  .button-solid:hover {
    color: #fff;
  }
  .button-solid:hover:before {
    width: 100%;
    transform: scaleX(1);
  }
  .button-solid:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--secondary);
    border-radius: inherit;
    transform: scaleX(0);
    width: 100%;
    transition: transform 0.3s;
  }
  .button-inverted {
    background-color: white;
    color: var(--primary);
    border: 0.15em solid var(--primary);
  }
  .button-inverted:hover {
    color: var(--primary);
  }
  .button-inverted:hover:before {
    width: 100%;
    transform: scaleX(1);
  }
  .button-inverted:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #CECECE;
    border-radius: inherit;
    transform: scaleX(0);
    width: 100%;
    transition: transform 0.3s;
  }
  .label {
    font-size: 1em;
    color: var(--primary);
    font-family: 'Manrope', Arial, sans-serif;
  }
  section {
    margin-bottom: 5.75em;
    background-color: white;
  }
  #main {
    background-color: white;
  }
  #header-container {
    position: fixed;
    top: 0;
    /* Initial position at the top */
    left: 0;
    right: 0;
    z-index: 1000;
    /* Adjust as needed */
    background-color: #fff;
    /* Set your desired background color */
    transition: top 0.3s ease;
    /* Add a smooth animation effect */
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.75em;
    background-color: #0F1825;
  }
  header .logo {
    margin-top: 1.65em;
    margin-left: 1.6em;
    font-size: 1em;
  }
  header .logo img {
    width: 11.4em;
    height: 2.1em;
  }
  header nav {
    display: none;
  }
  header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    margin: 0 2.8em 0 0;
    height: 100%;
  }
  header nav ul a {
    text-decoration: none;
    color: white;
    white-space: nowrap;
  }
  header nav ul a:hover {
    color: gray;
  }
  header nav ul .active {
    font-weight: bold;
    position: relative;
  }
  header nav ul .active:before {
    content: '';
    position: absolute;
    top: 2em;
    left: 0;
    background-color: var(--secondary);
    width: 100%;
    height: 0.25em;
    border-radius: 1.5em;
  }
  header .fold-menu {
    display: inline;
    margin-right: 1em;
  }
  header #mobile-sidebar {
    display: none;
    position: fixed;
    border-right: 1px solid gray;
    top: 0;
    z-index: 100;
    background-color: #0F1825;
    box-shadow: 0 10px 15px -3px #000000, 0 4px 6px -4px #000000;
    width: 75%;
    max-width: 25em;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    flex-direction: column;
  }
  header #mobile-sidebar #mobile-sidebar-close {
    position: absolute;
    background: url("/images/icon-close.svg") no-repeat;
    width: 1em;
    height: 1em;
    top: 2em;
    right: -2em;
    opacity: 0;
    transition: opacity 0.3s;
  }
  header #mobile-sidebar.open {
    display: flex;
  }
  header #mobile-sidebar.open::before {
    opacity: 1;
  }
  header #mobile-sidebar .logo-m {
    margin-top: 1.65em;
    font-size: 1em;
    display: flex;
    justify-content: center;
  }
  header #mobile-sidebar .logo-m img {
    width: 11.4em;
    height: 2.1em;
  }
  header #mobile-sidebar ul {
    padding: 0;
    margin-top: 2em;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  header #mobile-sidebar ul li {
    width: 100%;
    border-bottom: 1px solid gray;
  }
  header #mobile-sidebar ul li a {
    color: white;
    display: block;
    width: 100%;
    padding: 0.75em 2em;
    font-size: 1.2em;
  }
  header #mobile-sidebar ul li a:hover {
    background-color: #212128;
  }
  header #mobile-sidebar ul li:first-child {
    border-top: 1px solid gray;
  }
  .overlay:before {
    content: '';
    position: fixed;
    height: 100%;
    width: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .overlay.open::before {
    opacity: 1;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  header .logo img {
    width: 9em;
    height: 1.6em;
  }
  header .fold-menu {
    display: none;
  }
  header #mobile-sidebar {
    display: none;
  }
  header nav {
    display: flex;
  }
  header nav ul {
    gap: 1.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1200px) {
  header .logo {
    margin-left: 7.7em;
  }
  header .logo img {
    width: 11.4em;
    height: 2.1em;
  }
  header nav ul {
    gap: 2.25em;
  }
  body {
    font-size: 20px;
  }
}
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: .4vw;
  }
}
/*  ===============================  *
 *              Footer               *
 *  ================================ */
/* Mobile */
@media only screen and (min-width: 0em) {
  #footer {
    background-color: #0F1825;
  }
  #footer .line2 {
    pointer-events: none;
    display: initial;
  }
  #footer .line2 svg {
    width: 28.5em;
    height: 20.5em;
  }
  #footer p,
  #footer span,
  #footer a,
  #footer h3,
  #footer li {
    color: white;
    font-size: min(3.5vw, 1.0em);
  }
  #footer a:hover {
    color: gray;
  }
  #footer .top {
    padding: 3em 1em 1em;
    display: flex;
    flex-direction: column;
  }
  #footer .top .logo-container {
    position: relative;
  }
  #footer .top .logo-container .logo > img {
    width: 11.3em;
    height: 2.1em;
    margin-bottom: 0.8em;
  }
  #footer .top .logo-container p {
    width: 20em;
  }
  #footer .top .logo-container .line2 {
    position: absolute;
    top: -3.5em;
    display: none;
    right: -6em;
    z-index: 7;
    opacity: 1;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    animation: drawCircle 2s linear forwards;
  }
  @keyframes drawCircle {
    to {
      opacity: 1;
      stroke-dashoffset: 0;
    }
  }
  #footer .top .lists {
    display: flex;
    gap: 2em;
  }
  #footer .top .lists .list ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 0;
  }
  #footer .bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 0em 1em;
  }
  #footer .bottom span,
  #footer .bottom a {
    color: #C7C7C7;
    font-size: min(2.4vw, 1.0em);
    white-space: nowrap;
  }
  #footer .bottom ul {
    display: flex;
    gap: 1em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #footer .top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 3em 1em 3em 3em;
  }
  #footer .top .logo-container .logo > img {
    width: 8.5me;
    height: 3.15em;
  }
  #footer .top .logo-container p {
    width: 17.5em;
  }
  #footer .top .logo-container .line2 {
    display: none;
  }
  #footer .top .lists {
    gap: 1.25em;
  }
  #footer .bottom {
    padding: 0em 2em;
    flex-direction: row;
  }
  #footer .bottom span,
  #footer .bottom a {
    font-size: 0.8125em;
  }
  #footer .bottom ul {
    gap: 2em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #footer .top {
    padding: 3em;
  }
  #footer .top .logo-container .line2 {
    display: initial;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #footer .top .lists {
    gap: 3.75em;
  }
}
@media only screen and (min-width: 1600px) {
  #footer .top .lists {
    gap: 5em;
  }
}
/* Mobile */
@media only screen and (min-width: 0em) {
  #call-to-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5em;
    text-align: center;
    position: relative;
    margin-bottom: 0em;
  }
  .dual-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1em;
    max-width: 70em;
    gap: 3em;
  }
  .dual-container .left {
    display: flex;
    flex-direction: column;
    max-width: 25em;
  }
  .dual-container .right {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 48em) {
  #call-to-action:before {
    content: '';
    position: absolute;
    top: 40%;
    left: 5%;
    background-color: #737373;
    width: 22%;
    height: 0.1em;
    border-radius: 1.5em;
  }
  #call-to-action:after {
    content: '';
    position: absolute;
    top: 40%;
    right: 5%;
    background-color: #737373;
    width: 22%;
    height: 0.1em;
    border-radius: 1.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  .dual-container {
    align-items: initial;
    flex-direction: row;
    margin: 0 6.5em;
  }
  .swap {
    flex-direction: row-reverse;
  }
}
.pop {
  font-size: inherit;
  font-weight: 700;
  line-height: 150%;
  color: var(--secondary);
}
@media only screen and (min-width: 0em) {
  #page-header {
    background: url("../images/about-hero-m.jpg") no-repeat center;
    background-size: cover;
    height: 20em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #page-header span {
    margin: 0 0 0.82352941em 0;
    font-size: 1.7em;
    font-weight: 700;
    color: white;
    line-height: 150%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #page-header {
    background: url("../images/about-hero.jpg") no-repeat center;
    background-size: cover;
  }
}
/*  ===============================  *
 *            Animations             *
 *  ================================ */
/* Mobile */
@media only screen and (min-width: 0em) {
  #privacy {
    display: flex;
    flex-direction: column;
    margin: 10vh auto;
    max-width: 40em;
  }
  #privacy .title {
    margin: 0 0 2em 0;
  }
  #privacy .title h1 {
    color: black;
    margin-bottom: 0;
  }
  #privacy .title .blue {
    color: blue;
  }
}
/*  ===============================  *
 *            Animations             *
 *  ================================ */
/* Mobile */
@media only screen and (min-width: 0em) {
  .reveal-anim {
    position: relative;
    opacity: 0;
  }
  .reveal-anim.active {
    opacity: 1;
  }
  .active.fade-bottom {
    animation: fade-bottom 0.8s ease-in;
  }
  .active.fade-top {
    animation: fade-top 0.8s ease-in;
  }
  .active.fade-left {
    animation: fade-left 0.8s ease-in;
  }
  .active.fade-right {
    animation: fade-right 0.8s ease-in;
  }
  .active.fade {
    animation: fade 0.8s ease-in;
  }
  @keyframes fade-bottom {
    0% {
      transform: translateY(2.5em);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-top {
    0% {
      transform: translateY(-2.5em);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-left {
    0% {
      transform: translateX(-2.5em);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fade-right {
    0% {
      transform: translateX(5em);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
