@charset "UTF-8";
/* 

0 - 600px: Phone
600 - 900px: Tablet portrait
900 - 1200: Tablet landscape
1200 - 1800: our normal styles apply
1800px + : Big desktop

*/
/*
  $breakpoint argument choices:
  - phone (600/16 = 37.5em)
  - tab-port
  - tab-land
  - big-desktop

  1em = 16px
  */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  animation-play-state: paused;
}

/* show objects being animated */
.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@keyframes fadeIn {
  0%, 60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveUp {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeBgColor {
  0%, 70% {
    background: none;
  }
  100% {
    background: #464646;
  }
}
.animated.animationDelay {
  animation-delay: 0.2s;
}

.animated.animationDelaySmall {
  animation-delay: 0.6s;
}

.animated.animationDelayMed {
  animation-delay: 1.2s;
}

.animated.animationDelayLong {
  animation-delay: 1.6s;
}

.animated.fadeBgColor {
  animation-name: fadeBgColor;
}

.animated.bounceIn {
  animation-name: bounceIn;
}

.animated.bounceInRight {
  animation-name: bounceInRight;
}

.animated.bounceInLeft {
  animation-name: bounceInLeft;
}

.animated.fadeIn {
  animation-name: fadeIn;
}

.animated.fadeInDown {
  animation-name: fadeInDown;
}

.animated.fadeInUp {
  animation-name: fadeInUp;
}

.animated.moveUp {
  animation-name: moveUp;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (min-width: 93.75em) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

.background {
  background-image: linear-gradient(to bottom right, #1c75bc 25%, #0d3656);
  color: #fff;
  padding: 14rem 14rem 8rem;
}
@media (max-width: 75em) {
  .background {
    padding: 13rem 10rem 8rem;
  }
}
@media (max-width: 62.5em) {
  .background {
    padding: 12rem 3.2rem 4.8rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .background {
    padding: 10rem 2.4rem 4rem;
  }
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

button {
  font-family: "Outfit", sans-serif;
}

.title-primary {
  font-size: 6.4rem;
  font-weight: 600;
}
@media (max-width: 62.5em) {
  .title-primary {
    font-size: 5.6rem;
  }
}
@media (max-width: 37.5em) {
  .title-primary {
    font-size: 3.9rem;
  }
}

.title-secondary {
  font-size: 4rem;
}
@media (max-width: 62.5em) {
  .title-secondary {
    font-size: 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .title-secondary {
    font-size: 2.8rem;
  }
}

.title-tertiary {
  font-size: 2.4rem;
}
@media (max-width: 62.5em) {
  .title-tertiary {
    font-size: 2.4rem;
  }
}
@media (max-width: 37.5em) {
  .title-tertiary {
    font-size: 2rem;
  }
}

.title-fourth {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 37.5em) {
  .title-fourth {
    font-size: 1.8rem;
  }
}

.title-fifth {
  font-size: 1.8rem;
  font-weight: 600;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 200;
}
@media (max-width: 37.5em) {
  .subtitle {
    font-size: 1.2rem;
  }
}

.title--white {
  color: #fff;
}

.title--navy {
  color: #002f54;
}

.label__text {
  font-size: 1.2rem;
  opacity: 60%;
}

.input__text {
  font-size: 1.4rem;
}

.text--justify {
  text-align: justify;
  text-justify: inter-word;
}

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

.margin-sides--m {
  margin: 0 8.8rem;
}
@media (max-width: 75em) {
  .margin-sides--m {
    margin: 0 2rem;
  }
}
@media (max-width: 62.5em) {
  .margin-sides--m {
    margin: 0 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .margin-sides--m {
    margin: 0 0.5rem;
  }
}

.margin-sides--lg {
  margin: 0 16rem;
}
@media (max-width: 75em) {
  .margin-sides--lg {
    margin: 0 8rem;
  }
}
@media (max-width: 62.5em) {
  .margin-sides--lg {
    margin: 0 auto;
    max-width: 65rem;
  }
}

.margin-bottom--xxl {
  margin-bottom: 6.4rem;
}
@media (max-width: 37.5em) {
  .margin-bottom--xxl {
    margin-bottom: 4.8rem;
  }
}

.margin-bottom--xl {
  margin-bottom: 4.8rem;
}
@media (max-width: 37.5em) {
  .margin-bottom--xl {
    margin-bottom: 2.4rem;
  }
}

.margin-bottom--xl-xxl {
  margin-bottom: 5.6rem;
}
@media (max-width: 37.5em) {
  .margin-bottom--xl-xxl {
    margin-bottom: 3.2rem;
  }
}

.margin-bottom--lg {
  margin-bottom: 4rem;
}
@media (max-width: 37.5em) {
  .margin-bottom--lg {
    margin-bottom: 3.2rem;
  }
}

.margin-bottom--m {
  margin-bottom: 3.2rem;
}
@media (max-width: 37.5em) {
  .margin-bottom--m {
    margin-bottom: 2.4rem;
  }
}

.margin-bottom--sm {
  margin-bottom: 2.4rem;
}

.hr {
  color: rgba(255, 255, 255, 0.15);
  height: 1px;
  width: 100%;
  margin-bottom: 4.8rem;
}
@media (min-width: 93.75em) {
  .hr {
    margin-bottom: 5.6rem;
  }
}
@media (max-width: 62.5em) {
  .hr {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 37.5em) {
  .hr {
    margin-bottom: 3.2rem;
  }
}

.cta__btn {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  border: none;
  background-color: #1c75bc;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.cta__btn:hover {
  background-color: #12609f;
}
.cta__btn--nav-sm {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}

.btn__outline {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  border: 1px solid #fff;
  background-color: transparent;
  text-decoration: none;
  color: #fff;
  border-radius: 2px;
}
.btn__outline:hover {
  background-color: #fff;
  color: #1c75bc;
}

.btn__outline--black {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  border: 1px solid #000;
  background-color: transparent;
  text-decoration: none;
  color: #000;
  border-radius: 2px;
}
.btn__outline--black:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 37.5em) {
  .btn__outline--black {
    font-size: 1.4rem;
    text-wrap: nowrap;
    width: 9.8rem;
  }
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 2.4rem;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container span {
  text-decoration: underline;
  color: #1c75bc;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.6rem;
  width: 1.6rem;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #1c75bc;
  border: 1px solid #1c75bc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  left: 0;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 4px;
  top: -1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.collapsible {
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #fff;
  text-align: left;
  outline: none;
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapsible:after {
  content: "+";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "−";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #fff;
}
.content__text {
  color: #0d3656;
  padding-top: 16px;
  padding-bottom: 16px;
}

.contact {
  font-size: 1.6rem;
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .contact {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .contact {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .contact {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.contact__cards {
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .contact__cards {
    gap: 1.6rem;
  }
}
.contact__info {
  padding: 1.2rem 1.6rem;
  border: 1px solid #000;
  width: 80%;
  border-radius: 2px;
}
@media (max-width: 62.5em) {
  .contact__info {
    width: 90%;
  }
}
@media (max-width: 62.5em) {
  .contact__info {
    width: 80%;
  }
}
.contact__form {
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .contact__form {
    gap: 1.6rem;
  }
}

.hidden--row {
  visibility: hidden;
}
@media (max-width: 37.5em) {
  .hidden--row {
    display: none;
  }
}

.input__field {
  padding: 1.6rem 1.2rem;
  border: 1px solid #000;
  border-radius: 2px;
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
}

.message-box {
  width: 100%;
  height: 20rem;
  font-family: "Outfit", sans-serif;
  padding: 1.6rem 1.2rem;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 2px;
  background-color: #fff;
  font-size: 16px;
  resize: none;
}

.submit__container {
  margin-top: 8px;
}

input[type=submit] {
  color: #fff;
}

.contact-anchors {
  color: inherit;
  text-decoration: inherit;
}

.clients {
  overflow: hidden;
  white-space: nowrap;
}
.clients__slide {
  display: inline-block;
  animation: 15s slide infinite linear;
}
.clients__slide img {
  margin-right: 3.8rem;
  height: 3.4rem;
}
@media (max-width: 62.5em) {
  .clients__slide img {
    height: 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .clients__slide img {
    height: 2.8rem;
  }
}

.flex__left {
  align-self: flex-start;
}

.flex--col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .flex--col {
    flex-direction: row;
    justify-content: space-between;
  }
}

.flex--col--all {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex--row {
  display: flex;
}

.justify--center {
  justify-content: center;
}

.justify--between {
  justify-content: space-between;
}

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

.gap--lg {
  gap: 3.2rem;
}

.gap--m {
  gap: 2.4rem;
}

.gap--sm {
  gap: 1.6rem;
}

.gap--vsm {
  gap: 8px;
}

.gap--vvsm {
  gap: 4px;
}

.founder {
  background-image: linear-gradient(to bottom right, #1c75bc 25%, #0d3656);
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .founder {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .founder {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .founder {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 4rem;
}
@media (max-width: 62.5em) {
  .founder__grid {
    gap: 3.2rem;
  }
}
@media (max-width: 48.125em) {
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.founder__imgContainer {
  justify-self: center;
  align-self: center;
}
.founder__img {
  width: 37rem;
  height: 37rem;
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
@media (max-width: 48.125em) {
  .founder__img {
    width: 30rem;
    height: 30rem;
  }
}
.founder__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 37.5em) {
  .founder__content {
    gap: 2.4rem;
  }
}
.founder__card {
  padding: 1.6rem;
  background-color: #fafdff;
  border-radius: 2px;
  width: 250px;
}
@media (max-width: 62.5em) {
  .founder__card {
    width: 90%;
  }
}
@media (max-width: 37.5em) {
  .founder__card {
    width: 70%;
    justify-self: center;
  }
}
.founder__card--content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.founder__card--paragraph {
  text-align: center;
}
.founder__card--info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}
.founder__card--title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
}
.founder__card--socials {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
.founder__card--certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.4rem;
  row-gap: 3.2rem;
}
@media (max-width: 37.5em) {
  .grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.grid__flex--col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .grid__flex--col {
    gap: 1.6rem;
  }
}

.grid--gap--unified {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .grid--gap--unified {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.grid--3--col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 37.5em) {
  .grid--3--col {
    grid-template-columns: 1fr 1fr;
    row-gap: 4.8rem;
  }
}

.hero__parag {
  font-size: 1.8rem;
}
@media (max-width: 37.5em) {
  .hero__parag {
    font-size: 1.6rem;
  }
}
.hero__btns {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.h1--service {
  width: 80%;
}
@media (max-width: 37.5em) {
  .h1--service {
    width: 90%;
  }
}

.p--service {
  width: 80%;
}
@media (max-width: 37.5em) {
  .p--service {
    width: 85%;
  }
}

.service--btns {
  display: flex;
  justify-content: start;
  gap: 1.6rem;
}

.h1--about {
  width: 80%;
}
@media (max-width: 37.5em) {
  .h1--about {
    width: 90%;
  }
}

.p--about {
  width: 80%;
}
@media (min-width: 93.75em) {
  .p--about {
    width: 68%;
  }
}
@media (max-width: 37.5em) {
  .p--about {
    width: 85%;
  }
}

.how {
  background-image: linear-gradient(to bottom right, #1c75bc 25%, #0d3656);
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .how {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .how {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .how {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.how__title {
  margin-bottom: 4.8rem;
}
@media (max-width: 37.5em) {
  .how__title {
    margin-bottom: 3.2rem;
  }
}
.how__grid {
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  column-gap: 4rem;
  row-gap: 3.2rem;
  padding: 0 14rem;
}
@media (min-width: 93.75em) {
  .how__grid {
    padding: 0 10rem;
  }
}
@media (max-width: 75em) {
  .how__grid {
    padding: 0 6rem;
  }
}
@media (max-width: 62.5em) {
  .how__grid {
    padding: 0;
  }
}
@media (max-width: 37.5em) {
  .how__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.how__item--content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 37.5em) {
  .how__item--content {
    gap: 1.2rem;
  }
}
.how__item--top {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .how__item--top {
    gap: 1.6rem;
  }
}
.how__number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: #1c75bc;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  text-align: center;
  background-color: #fafdff;
}
@media (max-width: 37.5em) {
  .how__number {
    font-size: 1.8rem;
    width: 4rem;
    height: 4rem;
  }
}
.how__item--1 {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media (max-width: 37.5em) {
  .how__item--1 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.how__item--2 {
  grid-row: 2/3;
}
@media (max-width: 37.5em) {
  .how__item--2 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.how__item--3 {
  grid-column: 3/4;
  grid-row: 3/4;
}
@media (max-width: 37.5em) {
  .how__item--3 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.how__item--4 {
  grid-column: 1/2;
  grid-row: 4/5;
}
@media (max-width: 37.5em) {
  .how__item--4 {
    grid-column: 2/3;
    grid-row: 4/5;
  }
}
.how__item--5 {
  grid-column: 3/4;
  grid-row: 5/6;
}
@media (max-width: 37.5em) {
  .how__item--5 {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
.how__item--6 {
  grid-column: 1/2;
  grid-row: 6/7;
}
@media (max-width: 37.5em) {
  .how__item--6 {
    grid-column: 2/3;
    grid-row: 6/7;
  }
}
.how__item--7 {
  grid-column: 3/4;
  grid-row: 7/8;
}
@media (max-width: 37.5em) {
  .how__item--7 {
    grid-column: 2/3;
    grid-row: 7/8;
  }
}
.how__line-seven-items {
  width: 1px;
  grid-row: 1/8;
  justify-self: center;
}
@media (max-width: 37.5em) {
  .how__line-seven-items {
    grid-column: 1/2;
    grid-row: 1/8;
  }
}
.how__line-three-items {
  width: 1px;
  grid-row: 1/4;
  justify-self: center;
}
@media (max-width: 37.5em) {
  .how__line-three-items {
    grid-column: 1/2;
    grid-row: 1/4;
  }
}

.chevron-icon {
  height: 1.6rem;
  display: flex;
  align-self: center;
}
@media (max-width: 37.5em) {
  .chevron-icon {
    height: 1.4rem;
  }
}

.card-icon {
  font-size: 3.2rem;
  font-weight: 550;
  color: #1c75bc;
}
@media (max-width: 37.5em) {
  .card-icon {
    font-size: 2.8rem;
  }
}

.close-icon {
  fill: #fff;
  width: 2.2rem;
  height: 2.2rem;
  position: fixed;
  top: 2.1rem;
  right: 3.7rem;
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .close-icon {
    top: 1.7rem;
    right: 2.2rem;
  }
}

.menu-bars {
  width: 2.2rem;
  height: 2.2rem;
}

.quote-icon {
  width: 4.6rem;
  fill: #1c75bc;
}

.contact-icon {
  font-size: 1.6rem;
  color: #1c75bc;
}

.select-chevron {
  width: 1.6rem;
  fill: #000;
}

.svg-social-icon {
  fill: #fff;
  width: 3rem;
  height: 3rem;
}

.social-icon {
  font-size: 3rem;
  color: #fff;
}

.check-icon {
  font-size: 1.8rem;
  color: #1c75bc;
}
@media (max-width: 37.5em) {
  .check-icon {
    font-size: 1.6rem;
  }
}

.mission {
  padding: 12.8rem 22rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media (min-width: 93.75em) {
  .mission {
    padding: 12.8rem 26rem;
  }
}
@media (max-width: 75em) {
  .mission {
    padding: 12.8rem 18rem;
    gap: 4rem;
  }
}
@media (max-width: 62.5em) {
  .mission {
    padding: 9.6rem 12rem;
    gap: 4rem;
  }
}
@media (max-width: 37.5em) {
  .mission {
    padding: 6.4rem 1.6rem;
    gap: 3.2rem;
  }
}

.logo {
  width: 135px;
}
.logo__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 99999;
  padding: 1.6rem 14rem 1.6rem;
}
.nav__list {
  list-style: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__link {
  text-decoration: none;
  color: #002f54;
}
.nav__link:after {
  display: block;
  content: "";
  border-bottom: solid 2px #002f54;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
.nav__link:hover:after {
  transform: scaleX(1);
}
.nav__link.fromRight:after {
  transform-origin: 100% 50%;
}
.nav__link.fromLeft:after {
  transform-origin: 0% 50%;
}
@media (max-width: 62.5em) {
  .nav {
    display: none;
  }
}

.nav-sticky {
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.4s;
}

.hamburger-menu {
  fill: white;
}

.nav-sm {
  background-color: rgba(255, 255, 255, 0.95);
  color: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 99999;
  padding: 1.6rem 3.2rem;
}
@media (max-width: 62.5em) {
  .nav-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 37.5em) {
  .nav-sm {
    padding: 1.2rem 1.6rem;
  }
}
.nav-sm__link {
  text-decoration: none;
  color: #fff;
  padding: 8px;
  font-size: 2.4rem;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}
.nav-sm__link:after {
  display: block;
  content: "";
  border-bottom: solid 2px #fff;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
.nav-sm__link:hover:after {
  transform: scaleX(1);
}
.nav-sm__link.fromRight:after {
  transform-origin: 100% 50%;
}
.nav-sm__link.fromLeft:after {
  transform-origin: 0% 50%;
}
.nav-sm__list {
  background-color: #f8f9fa;
  padding: 3.2rem 1.2rem;
  height: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}
@media (max-width: 62.5em) {
  .nav-sm__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
  }
}

.nav-sm ul {
  /* Make the markers disappear */
  list-style: none;
  font-size: 1.6rem;
}

input[type=checkbox]:not(:checked) + ul {
  display: none;
}

.nav-sm input[type=checkbox],
.nav-sm label {
  display: none;
}

.nav-sm label {
  text-align: right;
  display: block;
  padding: 0.5em;
  line-height: 1.6em;
  align-self: center;
}

@media (max-width: 1000px) {
  /* Because we are in mobile mode, we want to display it as a vertical list */
  /* We have two lists: the first one are the always visibile items
       in the menu bar. The second one is the one that will be hidden */
  .nav-sm ul:last-child {
    width: 100%;
    flex-basis: 100%;
  }
  .nav-sm ul li {
    margin-bottom: 0;
    width: 100%;
    text-align: right;
    padding: 0.5rem 0;
  }
}
#services, #mission, #why-us, #refer-earn, #contact, #pricing-faq, #plans {
  scroll-margin-top: 5.4rem;
}

.our-company {
  padding: 0 24rem 12.8rem;
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .our-company {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .our-company {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .our-company {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.our-company__title {
  margin-bottom: 6.4rem;
}
@media (max-width: 62.5em) {
  .our-company__title {
    margin-bottom: 4.8rem;
  }
}
@media (max-width: 37.5em) {
  .our-company__title {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 62.5em) {
  .our-company__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (max-width: 37.5em) {
  .our-company__wrapper {
    gap: 2.4rem;
  }
}
.our-company__container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 4.8rem;
}
@media (max-width: 62.5em) {
  .our-company__container {
    justify-self: center;
    margin-bottom: 0;
    width: 100%;
  }
}
.our-company__container:last-child {
  margin-bottom: 0;
}
.our-company__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 62.5em) {
  .our-company__info {
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media (max-width: 37.5em) {
  .our-company__info {
    gap: 1.6rem;
  }
}
.our-company__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 36rem;
}
@media (max-width: 62.5em) {
  .our-company__left {
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  .our-company__left {
    gap: 1.2rem;
  }
}
.our-company__right {
  width: 46rem;
}
@media (max-width: 37.5em) {
  .our-company__right p {
    font-size: 1.4rem;
  }
}
@media (max-width: 62.5em) {
  .our-company__right {
    width: 100%;
  }
}
.our-company__line {
  height: 1px;
  width: 100%;
  color: #000;
  opacity: 80%;
}

.learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}

.services {
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .services {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .services {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .services {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.services__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  padding: 3.2rem 1.6rem;
  background-color: #fafdff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}
@media (min-width: 93.75em) {
  .services__card {
    padding: 4.8rem 4rem;
  }
}
@media (max-width: 62.5em) {
  .services__card {
    gap: 1.6rem;
  }
}
@media (max-width: 37.5em) {
  .services__card {
    gap: 1.2rem;
  }
}
.services__card--title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .services__card--title {
    gap: 1.6rem;
  }
}
.services__text {
  font-size: 1.6rem;
}
@media (max-width: 37.5em) {
  .services__text {
    font-size: 1.4rem;
  }
}
.services__learn-more {
  font-size: 1.6rem;
  text-decoration: none;
  color: #000;
}
@media (max-width: 37.5em) {
  .services__learn-more {
    font-size: 1.4rem;
  }
}

.card__content {
  padding: 1.6rem;
}

.card__list .card__item {
  list-style: none;
}

.card__link {
  user-select: none;
  display: block;
  background-color: #fafdff;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  transition: 0.2s ease;
}
.card__link:hover {
  border-color: #1c75bc;
}
.card__link:active {
  cursor: grabbing;
}

.card__list .card__link:hover .card__btn {
  color: #fff;
  background-color: #1c75bc;
}

.swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background-color: #1c75bc;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-slide-button {
  color: #1c75bc;
  margin-top: -35px;
}
@media (max-width: 37.5em) {
  .swiper-slide-button {
    display: none;
  }
}

.text {
  color: #000;
  font-size: 1.6rem;
}

.portfolio {
  padding: 12.8rem 14rem;
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .portfolio {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .portfolio {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .portfolio {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.portfolio__intro {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 37.5em) {
  .portfolio__intro {
    gap: 2rem;
  }
}
.portfolio__intro--text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.8rem;
}
@media (max-width: 62.5em) {
  .portfolio__intro--text {
    margin-bottom: 3.4rem;
  }
}
@media (max-width: 37.5em) {
  .portfolio__intro--text {
    margin-bottom: 2.8rem;
  }
}
.portfolio__intro--text p {
  font-size: 1.6rem;
}
@media (max-width: 37.5em) {
  .portfolio__intro--text p {
    font-size: 1.4rem;
  }
}
.portfolio__card--wrapper {
  margin-bottom: 3.5rem;
  padding: 4px 2px 2.4rem;
  overflow: hidden;
}
@media (max-width: 37.5em) {
  .portfolio__card--wrapper {
    margin: 0 0px 25px;
  }
}
.portfolio__card--img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px 2px 0 0;
}
.portfolio__card--tag {
  display: flex;
  gap: 1.2rem;
}
.portfolio__card--badge {
  color: #1c75bc;
  background-color: #f8f9fa;
  padding: 2px 4px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  width: fit-content;
  border-radius: 2px;
}
.portfolio__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 62.5em) {
  .portfolio__text {
    font-size: 2.2rem;
  }
}
.portfolio__card--title {
  font-size: 2.4rem;
  color: #0d3656;
  font-weight: 600;
}
.portfolio__category {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.portfolio__category--link {
  text-decoration: none;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  padding: 1.2rem 2.4rem;
}
@media (max-width: 37.5em) {
  .portfolio__category--link {
    text-wrap: nowrap;
  }
}
.portfolio__category--link:hover {
  opacity: 75%;
}
.portfolio__view-all {
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  font-family: "Outfit", sans-serif;
  border: 1px solid #000;
  background-color: transparent;
  text-decoration: none;
  color: #000;
  border-radius: 2px;
}
.portfolio__view-all:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 37.5em) {
  .portfolio__view-all {
    font-size: 1.4rem;
    text-wrap: nowrap;
    width: 9.8rem;
  }
}

.swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background-color: #1c75bc;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-slide-button {
  color: #1c75bc;
  margin-top: -35px;
}
@media (max-width: 37.5em) {
  .swiper-slide-button {
    display: none;
  }
}

.text {
  color: #000;
  font-size: 1.6rem;
}

.read-more {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: start;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  width: fit-content;
}
.read-more__text {
  font-size: 1.6rem;
  text-decoration: none;
  color: #000;
}
@media (max-width: 37.5em) {
  .read-more__text {
    font-size: 1.4rem;
  }
}

.card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.4rem;
  row-gap: 4rem;
}
@media (max-width: 75em) {
  .card__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.4rem;
    row-gap: 3.2rem;
  }
}
@media (max-width: 62.5em) {
  .card__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.4rem;
    row-gap: 3.2rem;
  }
}
@media (max-width: 48.125em) {
  .card__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.6rem;
    row-gap: 2.4rem;
  }
}
@media (max-width: 37.5em) {
  .card__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

.portfolio__wrapper {
  margin-bottom: 0;
  padding-bottom: 4px;
}

@media (max-width: 37.5em) {
  .title--portfolio {
    font-size: 2rem;
  }
}

@media (max-width: 37.5em) {
  .text--portfolio {
    font-size: 1.4rem;
  }
}

@media (max-width: 37.5em) {
  .read-more--portfolio {
    font-size: 1.4rem;
  }
}

.pricing {
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .pricing {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .pricing {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .pricing {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 62.5em) {
  .pricing__cards {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    justify-items: center;
  }
}
.pricing__card {
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid #1c75bc;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 2.4rem;
  border-radius: 2px;
}
@media (max-width: 62.5em) {
  .pricing__card {
    width: 420px;
  }
}
@media (max-width: 37.5em) {
  .pricing__card {
    width: 100%;
  }
}
.pricing__card--start {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 62.5em) {
  .pricing__card--start {
    margin-bottom: 2rem;
  }
}
@media (max-width: 48.125em) {
  .pricing__card--start {
    gap: 4px;
  }
}
.pricing__card--header {
  font-size: 2.8rem;
  color: #002f54;
  font-weight: 500;
}
@media (max-width: 48.125em) {
  .pricing__card--header {
    font-size: 2.6rem;
  }
}
@media (max-width: 37.5em) {
  .pricing__card--header {
    font-size: 2.2rem;
  }
}
.pricing__card--amount {
  font-size: 4.8rem;
  color: #1c75bc;
  font-weight: 500;
}
@media (max-width: 48.125em) {
  .pricing__card--amount {
    font-size: 4rem;
  }
}
@media (max-width: 37.5em) {
  .pricing__card--amount {
    font-size: 3.6rem;
  }
}
.pricing__card--discount {
  font-size: 3.5rem;
  color: #C0C0C0;
  font-weight: 300;
  margin-bottom: -2rem;
}
@media (max-width: 48.125em) {
  .pricing__card--discount {
    margin-bottom: -1.2rem;
    font-size: 2.7rem;
  }
}
@media (max-width: 37.5em) {
  .pricing__card--discount {
    margin-bottom: -0.8rem;
    font-size: 2.3rem;
  }
}
.pricing__card--month {
  font-size: 1.6rem;
}
.pricing__card--description {
  font-size: 1.8rem;
}
@media (max-width: 48.125em) {
  .pricing__card--description {
    font-size: 1.6rem;
  }
}
.pricing__card--line {
  opacity: 35%;
}
.pricing__card--specs {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 48.125em) {
  .pricing__card--specs {
    gap: 1rem;
    margin-top: 1rem;
  }
}
.pricing__card--includes {
  font-size: 1.6rem;
  color: #002f54;
  font-weight: 500;
}
@media (max-width: 48.125em) {
  .pricing__card--includes {
    font-size: 1.4rem;
  }
}
.pricing__card--list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 6.4rem;
}
@media (max-width: 62.5em) {
  .pricing__card--list {
    margin-bottom: 5.6rem;
  }
}
@media (max-width: 48.125em) {
  .pricing__card--list {
    gap: 8px;
    margin-bottom: 4.8rem;
  }
}
.pricing__card--item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing__card--item__iconwrap {
  display: flex;
  align-self: center;
}
.pricing__card--item__text {
  font-size: 1.6rem;
}
@media (max-width: 48.125em) {
  .pricing__card--item__text {
    font-size: 1.4rem;
  }
}
.pricing__card--btn {
  width: 100%;
}
.pricing__card--btn__link {
  text-decoration: none;
  color: #fff;
}

#main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
}

.select-body {
  position: relative;
  margin: 4px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.select-body select {
  height: 100%;
  width: 100%;
  padding: 1.6rem 1.2rem;
  font-size: 1.6rem;
  border-radius: 2px;
  border: 1px solid #000;
  appearance: none;
  color: #000;
  font-family: "Outfit", sans-serif;
}

.select-container label {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
}

.select-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#select-category-container select {
  background-color: #fff;
}

#select-music-container select {
  background-color: #fff;
}

#select-games-container select {
  background-color: #fff;
}

#select-hearabout-container select {
  background-color: #fff;
}

.testimonials {
  background-image: linear-gradient(to bottom right, #1c75bc 25%, #0d3656);
  padding: 4.8rem 14rem;
}
@media (max-width: 75em) {
  .testimonials {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .testimonials {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .testimonials {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.testimonials p {
  font-size: 1.6rem;
}
.testimonials li {
  display: flex;
  justify-content: center;
}
.testimonials__card--wrapper {
  margin-bottom: 3.5rem;
  padding: 4px 2px 2.4rem;
  overflow: hidden;
}
@media (max-width: 37.5em) {
  .testimonials__card--wrapper {
    margin: 0 0px 25px;
  }
}
.testimonials__card--link {
  width: 65%;
}
@media (max-width: 75em) {
  .testimonials__card--link {
    width: 75%;
  }
}
@media (max-width: 48.125em) {
  .testimonials__card--link {
    width: 100%;
  }
}
.testimonials__card--img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
}

.why-us {
  background-image: linear-gradient(to bottom right, #1c75bc 25%, #0d3656);
  color: #fff;
  font-size: 1.6rem;
  padding: 4.8rem 14rem;
}
.why-us__text {
  font-size: 1.4rem;
}
@media (max-width: 75em) {
  .why-us {
    padding: 4.8rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .why-us {
    padding: 4rem 3.2rem;
  }
}
@media (max-width: 37.5em) {
  .why-us {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.why-us__text {
  width: 80%;
  font-size: 1.6rem;
}
@media (max-width: 37.5em) {
  .why-us__text {
    font-size: 1.4rem;
  }
}

.footer {
  padding: 4.8rem 14rem 6.4rem;
  background-image: linear-gradient(to bottom right, #1c75bc 25%, #0d3656);
}
@media (max-width: 75em) {
  .footer {
    padding: 4.8rem 10rem 6.4rem;
  }
}
@media (max-width: 62.5em) {
  .footer {
    padding: 4rem 3.2rem 5.6rem;
  }
}
@media (max-width: 37.5em) {
  .footer {
    padding: 3.2rem 1.6rem 4rem 1.6rem;
  }
}
.footer__top {
  margin-bottom: 9.6rem;
}
@media (max-width: 37.5em) {
  .footer__top {
    margin-bottom: 5.6rem;
  }
}
.footer__logo {
  margin-bottom: 8px;
}
@media (max-width: 37.5em) {
  .footer__logo {
    margin-bottom: 1.8rem;
  }
}
.footer__logo--big {
  width: 20rem;
}
@media (max-width: 75em) {
  .footer__logo--big {
    width: 18rem;
  }
}
@media (max-width: 62.5em) {
  .footer__logo--big {
    width: 17rem;
  }
}
@media (max-width: 37.5em) {
  .footer__logo--big {
    width: 15rem;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 37.5em) {
  .footer__list {
    font-size: 1.4rem;
  }
}
.footer__subtitle {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .footer__subtitle {
    font-size: 1.2rem;
  }
}
.footer__subtitle:hover {
  text-decoration: underline;
  opacity: 80%;
  -webkit-tap-highlight-color: transparent;
}
.footer__line {
  height: 1px;
  color: #fff;
  opacity: 15%;
  margin-bottom: 3.2rem;
}
@media (max-width: 37.5em) {
  .footer__line {
    margin-bottom: 2.4rem;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 37.5em) {
  .footer__bottom {
    display: none;
  }
}
.footer__bottom--hidden {
  display: none;
}
@media (max-width: 37.5em) {
  .footer__bottom--hidden {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.footer__socials {
  display: flex;
  gap: 1.6rem;
}

.copyright {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
}
@media (max-width: 37.5em) {
  .copyright {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
