/* geral */

:root {
    /*colors*/
    --blue: #0d5985;
    --lighter-blue: #3C77A9;
    --bg-blue: #0071BC10;
    --pink: #9C1135;
    --mid-pink: #e88194;
    --light-pink: #f6e2e5;
    --lighter-pink: #FEFAFB;
    --yellow: #ff9900;
    --mid-yellow: #ffe2b6;
    --light-yellow: #fff7eb;
    --black-text: rgb(40, 40, 40);
    --light-grey: rgb(200, 200, 200);
    --bg-magnolia: rgb(255, 254, 252);
    --bg-grey: rgb(238, 238, 238);
    --light-dark-blue: rgb(108,123,153);
    --light-blue: rgb(223, 231, 247);
    --smooth-black-text: #383838;
    --gradient-blue-pink: linear-gradient(180deg, #2B688F 0%, #d61444 100%);
    --gradient-blue-pink-softer: linear-gradient(90deg, rgba(118, 140, 163, 0.8) 0%, rgba(203, 150, 167, 0.8) 120.77%);
    /*backdrop-filter: blur(2px);*/

    --ff-primary: 'Barlow', sans-serif;
    --ff-secondary: 'Source Sans Pro', sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500; /* não existe na Source Sans Pro */
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-black: 900;
    /*rems em relação a 16px*/

    --fs-10: 0.625rem;
    --fs-12: 0.75rem;
    --fs-14: 0.875rem; /*14px*/
    --fs-16: 1rem; /*16px*/
    --fs-18: 1.125rem; /*18px*/
    --fs-20: 1.25rem; /*20px*/
    --fs-25: 1.563rem; /*25px*/
    --fs-32: 2rem; /*32 px*/
    --fs-40: 2.5rem;
    --fs-50: 3.125rem; /*50px*/
    --fs-60: 3.75rem;
    /*tamanhos para margin e padding*/

    --size-100: 0.25rem;
    --size-200: 0.5rem;
    --size-300: 0.75rem;
    --size-400: 1rem;
    --size-500: 1.5rem;
    --size-600: 2rem;
    --size-700: 3rem;
    --size-800: 4rem;
    --size-900: 5rem;
    --size-1000: 6rem;
}
  
  

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*AOS Animation*/


/* Remove default margin */

*{
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body{
  height: 100%;
  background-color: #fff;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html,
body{
  height: 100%;
  background-color: #fff;
}

/* navbar */

.logo img{
    width: 160px;
    height: auto;
    object-fit: cover;
  }
  
  /*navigation*/
  
  .primary-header{
    padding-top: var(--size-200);
    padding-bottom: var(--size-200);
    /*background-color: white;*/
  }
  
  .container-nav {
    width: 93%;
    margin: 0 auto;
  }
  
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: var(--size-500);
    margin-right: var(--size-500);
    margin-top: var(--size-200);
  }
  
  .primary-navigation {
    padding-right: 2em;
  }
  
  .mobile-nav-toggle {
    display: none;
  }
  
  .nav-list {
    display: flex;
    gap: var(--size-800);
    font-size: var(--fs-14);
    font-family: var(--ff-secondary);
  }
  
  .nav-list a {
    text-decoration: none;
    color: #ADADAD;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
  }
  
  .nav-list a:hover, 
  .nav-list a:focus {
    color: var(--blue);
  }
  
  .active a{
    font-weight: var(--fw-semi-bold);
  }
  
  .active a:hover,
  .active a:focus {
    color:var(--light-grey);
  }
  
  .sub-menu {
    z-index: 2;
    position: absolute;
    background: white;
    border-radius: 5px;
    display: none;
    box-shadow: 0 0 .75em rgba(0, 0, 0, 0.05);
    padding: .5rem 1rem;
  }
  
  nav li:hover .sub-menu {
    display: flex;
  }
  
  .sub-menu-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .2rem;
  }
  
  .nav-list li ul li a div p{
    font-family: var(--ff-secondary);
    font-size: var(--fs-14);
    font-weight: var(--fw-medium);
  }
  
  .icon-sub-menu {
    padding: .5rem 1rem;
  }
  
  .top-button {
    cursor: pointer;
    background-color: transparent;
    color: #3E5B7C;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    letter-spacing: 0.02;
    padding: 0.6em 3.5em;
    border-radius: 10px;
    border: 3px solid #3E5B7C;
  }
  
  .top-button:hover {
    color: white;
    background-color: #3E5B7C;
  }
  
  
  
  
  @media (max-width: 65em) {
    .primary-navigation {
      display: none;
  
      position: fixed;
      padding: var(--size-700);
      inset: 7rem var(--size-600) auto;
      background-color: var(--bg-magnolia);
      border-radius: var(--size-100);
      box-shadow: 0 0 .75em rgba(0, 0, 0, 0.25);
    }
  
    .primary-header[data-overlay] {
      content: "";
      position: fixed;
      inset: 0;
      background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    }
  
    .nav-list {
      display: grid;
      gap: var(--size-600);
      text-align: center;
    }
  
    .nav-list a{
      text-decoration: none;
      color: var(--black-text);
      font-weight: var(--fw-regular);
    }
  
    .nav-list a:hover, 
    .nav-list a:focus {
      color: var(--blue);
      font-weight: var(--fw-regular);
    }
  
    .primary-navigation[data-visible] {
      display: block;
    }
  
    .mobile-nav-toggle {
      display: block;
      position: fixed;   
      right: var(--size-200);
      cursor: pointer;
      background: transparent;
      border: 0;
      padding: 1rem;
    }
    
    .mobile-nav-toggle .icon-close {
      display: none;
    }
  
    .icon-hamburger{
      color:var(--blue);
    }
  
  }
  
  /*End of header*/
  
  /*Hero*/
  
  .flex-container-hero {
      display: flex;
      flex-flow: row wrap-reverse
      ;
      width: 100%;
      margin: 0rem auto;
      justify-content: space-between;
      align-items: center;
      background-image: url(img/bg-hero-solid-06.svg);
      background-size: 75em;
      background-repeat: no-repeat;
      background-position-x: 25rem;
      padding-top: 5rem;
      padding-bottom: 4rem;
  }
  
  .left-hero {
    flex-shrink: 1;
    flex-basis: 48%;
    padding-left: 4em;
  }
  
  .right-hero {
    flex-shrink: 1;
    flex-basis: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  h1 {
      font-family: var(--ff-primary);
      font-weight: var(--fw-semi-bold);
      font-size: var(--fs-60);
      line-height: .98;
      color: var(--light-blue);
      padding-bottom: 2rem;
      max-width: 90%;
  }
  
  p {
      font-family: var(--ff-secondary);
      font-size: var(--fs-16);
  }
  
  .subtitle {
      color: var(--smooth-black-text);
      font-family: var(--ff-secondary);
      font-weight: var(--fw-semi-bold);
      font-size: var(--fs-16);
      line-height: 1.2;
      padding-bottom: 2em;
      max-width: 90%;
  }
  
  .inline-buttons {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .button-box {
    text-decoration: none;
  }
  
  .second-hero-button {
    cursor: pointer;
    padding: .6rem 2rem;
    border: 2px solid var(--blue);
    border-radius: 5px;
    color: var(--blue);
    background-color: transparent;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    line-height: 1;
    margin-top: 1rem;
  }
  
  .hero-button {
    cursor: pointer;
    padding: .6rem 2rem;
    border: 2px solid var(--blue);
    border-radius: 5px;
    color: whitesmoke;
    background-color: var(--blue);
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    line-height: 1;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .hero-button:hover {
    box-shadow: 0px 4px 20px 4px rgba(60, 119, 169, 0.4);
  }
  
  .scroll-text-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .hero-img {
    flex: 50%;
    display: flex;
    justify-content: center;
    flex-shrink: 1;
  }
  
  .img-dashboard {
    min-width: 700px;
  }
  
  @media (max-width: 85em) {
   .hero-img {
    flex: 40%;
   }
  
   .img-dashboard {
    min-width: 600px;
   }
  }
  
  
  @media (max-width: 65em) {
    .flex-container-hero {
      background-size: 58em;
      background-position-x: 20rem;
    }
  
    .left-hero {
      flex-basis: 55%;
    }
  
    .right-hero {
      flex-basis: 25%;
    }
  
    h1 {
      font-size: var(--fs-50);
    }
  
    .img-dashboard {
      min-width: 460px;
    }
  
    .padding-block-300:nth-of-type(1) {
      display: none;
    }
  }
  
  @media (max-width: 57em) {
    .left-hero {
      flex-basis: 50%;
    }
  
    .right-hero {
      flex-grow: 1;
    }
  
    .img-dashboard {
      min-width: 370px;
    }
  
    h1 {
      font-size: var(--fs-40);
    }
  }
  
  @media (max-width: 45em) {
  
    .right-hero {
      margin-bottom: 3rem;
    }
    
    .inline-buttons {
    max-width: 80%;
    margin: 1rem auto 1rem;
    gap: .5rem;
    }
  
    .products-button {
    padding: .5rem 1rem;
    margin-top: -1rem;
    font-size: 12px;
    }
  
    h1 {
      font-size: var(--fs-40);
    }
  
    .subtitle {
      font-size: var(--fs-16);
    }
  
    .last-img {
      max-width: 70%;
    }
  }
  
  
  /* fim do hero */

/* partners */

.grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 90%;
    margin: 2rem auto;
}

.proud {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    color: var(--light-grey);
    line-height: .98;
    font-size: var(--fs-20);
}

.brands {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
}

.logo-brands {
    width: auto;
    height: 50px;
    object-fit: cover;
    filter: grayscale(100%) opacity(30%);
}

@media (max-width: 85em) {
  .logo-brands {
    height: 45px;
  }
}


@media (max-width: 65em) {
  .logo-brands {
    height: 30px;
  }
}

@media (max-width: 57em) {
  .brands {
    justify-content: center;
  }

  .logo-brands {
    height: 25px;
  }
}

@media (max-width: 45em) {

  .brands {
    gap: 1rem;
  }

  .logo-brands {
    height: 25px;
  }
}

/* fim dos partners */

/* first content index */

.section-title {
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  font-size: var(--fs-16);
  color: var(--light-blue);
  font-family: var(--ff-secondary);
  max-width: 80%;
  margin: 0 auto 1rem;
}

.two-uneven-columns {
  max-width: 80%;
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto 5rem;
  gap: 5rem;
  justify-content: space-between;
}

.left-column {
  flex: 40%;
  flex-grow: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 11rem;
}

.right-column {
  flex: 45%;
  flex-grow: 0;
}

.left-column h2 {
  font-size: var(--fs-25);
  font-family: var(--ff-secondary);
  margin-bottom: 2rem;
  font-weight: var(--fw-bold);
  color: var(--smooth-black-text)
}

.left-column p {
  text-align: justify;
  font-size: var(--fs-14);
}

.img-and-text-card {
  display: flex;
  flex-flow: row nowrap;
  background-color: #fbfcff;
  border-radius: 10px;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.img-and-text-card-first {
  flex: 10%;
}

.img-and-text-card-second {
  flex: 60%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.img-and-text-card p {
  max-width: 90%;
}

.small-img-square {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.right-column ul {
  margin-bottom: 2rem;
}

.right-column ul li {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.number { 
  flex: 2%;
  font-weight: var(--fw-black);
  font-size: var(--fs-25);
  font-family: var(--ff-primary);
  color: var(--blue);
  background-image: url(img/bg-shape.svg);
  background-repeat: no-repeat;
  background-position-x: .2rem;
  background-size: 45px;
  padding-bottom: 1rem;
  text-align: center;
  padding-top: .2rem;
}

.li-text {
  flex: 80%;
  font-family: var(--ff-secondary);
  text-align: justify;
  font-weight: var(--fw-regular);
}

@media (max-width: 65em) {
  .number {
    flex: 10%;
  }

  .img-and-text-card-first {
    flex: 30%;
  }

  .img-and-text-card-second p {
    line-height: 1;
    max-width: unset;
  }
}

@media (max-width: 57em) {
  .number {
    flex: 15%;
  }
}

/* features */

/*.section-bg {
  background-image: url(img/second-container-bg.svg);
  background-repeat: no-repeat;
  background-size: 95rem;
  background-position-x: 10rem;
  background-position-y: 0rem;
}*/

.flexbox-container {
    display: flex;
    flex-flow: column wrap;
    width: 90%;
    margin: 5rem auto;
    gap: 2rem;
    border-radius: 10px;
}

.two-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 0 0 0 3rem;
}

.fourty-container {
    flex: 60%;
}

.sixty-container {
  flex: 40%;
}

.sixty-container {
  display: flex;
  flex-flow: column;
}

.turn-data-img {
  height: 420px;
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  background-color: var(--light-pink);
  position: relative;
  margin-left: 9rem;
}

.index-card-stats {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: .5rem;
  width: 20%;
  margin-left: 0rem;
  margin-top: 21rem;
}

.index-card-percentage {
  display: flex;
  flex-flow: row nowrap;
}

.index-card-text {
  font-size: var(--fs-14);
  line-height: .98;
}

h3 {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-32);
    color: var(--smooth-black-text);
    padding-bottom: 0.5em;
    padding-top: 3em;
    line-height: .98;
}

.content-subtitle {
    color: var(--smooth-black-text);
    font-weight: var(--fw-light);
    font-size: var(--fs-20);
    padding-bottom: 2em;
    max-width: 80%;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

ul li {
    list-style: none;
}

.features {
    display: flex;
    gap: 2em;
}

.feature i {
    padding: 1rem;
}

.features li {
    display: flex;
    align-items: top;
    gap: .5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    max-width: 40%;
}

.feature-tag {
    max-width: 130px;
    line-height: 1rem;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-14);
}

.check-button {
    margin-top: 1.25rem;
    margin-bottom: 5em;
    padding: 0.6em 1em;
    line-height: 1;
    border-radius: 6px;
    background-color: transparent;
    color:var(--smooth-black-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    cursor: pointer;
    border: 2px solid;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
  }
  
.check-button:hover {
    color:#355C7D;
    background-color:white;
    border: solid white;
    gap: 5rem;
    transition: 2s;
  }

.box {
  width: 400px;
  height: 350px;
  margin: 3rem 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

hr {
    width: 85%;
    margin: 0 auto;
  }

.two-container-reverse {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
}

.sixty-container-reverse {
  flex: 50%;

}

.fourty-container-reverse {
  flex: 40%;
}

.unique-img {
  width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  background-color: var(--light-blue);
}

.index-card-stats-two {
  margin-top: -25rem;
  margin-left: 18rem;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: .5rem;
  width: 20%;
}

.secure-img {
  height: 450px;
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  background-color: var(--light-pink);
  padding: 0 1rem;
  position: relative;
  margin-left: 9rem;
}

.h3-reverse {
  text-align: right;
  line-height: .98;
  max-width: 70%;
  float: right;
}

.p-reverse {
  text-align: right;
  max-width: 80%;
  float: right;
}

.features-reverse {
  display: flex;
  justify-content: flex-end;
  gap: 2em;
  margin-right: 1em;
  float: right;
}

.features-reverse li {
  display: flex;
  flex-direction: row-reverse;
  align-items: top;
  gap: .5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 40%;
  text-align: right;
}

.check-button-reverse {
  margin-top: 1.25rem;
  margin-bottom: 5em;
  padding: 0.6em 1em;
  line-height: 1;
  border-radius: 6px;
  background-color: transparent;
  color:var(--smooth-black-text);
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  cursor: pointer;
  border: 2px solid;
  font-family: var(--ff-primary);
  font-weight: var(--fw-bold);
  float: right;
}

.check-button-reverse:hover {
  color:#355C7D;
  background-color:white;
  border: solid white;
  gap: 5rem;
  transition: 2s;
}

@media (max-width: 65em) {
  .two-container {
    padding: 0;
  }

  .fourty-container {
    flex: 50%;
  }

  .turn-data-img {
    height: 380px;
  }

  .index-card-stats {
    margin-top: 19rem;
    width: 30%;
  }

  .two-container-reverse {
    padding: 0;
  }

  .fourty-container-reverse {
    flex: 50%;
  }

  .sixty-container-reverse {
  }

  .unique-img {
    width: 350px;
  }

  .index-card-stats-two {
    width: 29%;
  }

  .secure-img {
    height: 380px;
  }

  .section-bg {
    background-size: 110rem;
    background-position-x: 3rem;
    background-position-y: -5rem;
  }
}

@media (max-width: 57em) {
  .turn-data-img, .secure-img {
    margin-right: 2rem;
  }

  .index-card-stats-two {
    margin-left: 14rem;
  }

  .two-container-reverse {
    gap: 0rem;
  }

  .fourty-container-reverse {
    flex: 30%;
  }

  .sixty-container-reverse {
    flex: 50%;
    flex-grow: 1;
  }

  .unique-img {
    margin-left: -4rem;
  }

  .features-reverse li {
    max-width: 50%;
  }

  .content-subtitle, .p-reverse {
    max-width: unset;
  }
}

@media (max-width: 45em) {
  .spaceship-img {
    width: 200px;
  }

  .box {
    width: 200px;
    height: 150px;
  }

  .h3-reverse {
    max-width: 90%;
  }

  .p-reverse {
    max-width: 90%;
  }

  .feature {
    font-size: var(--fs-14);
    max-width: 80%;
  }

  .secure-img {
    width: 180px;
  }
}

/* fim das features */

/* service highlight section */

.hp-product-carousel-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.hp-highlighted-product-box {
  flex: 49%;
  flex-grow: 0;
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2rem;
}

.hp-product-img-placeholder {
  flex: 35%;
  flex-grow: 0;
  height: 100%;
  background-color: var(--bg-grey);
  border-radius: 10px;
}

.hp-highlighted-product-text {
  flex: 50%;
}

.hp-highlighted-product-title {
  font-family: var(--ff-primary);
  font-weight: var(--fw-semi-bold);
  font-size: var(--fs-32);
  color: var(--smooth-black-text);
  margin-bottom: .5rem;
}

.hp-highlighted-product-subtitle {
  font-family: var(--ff-secondary);
  font-size: var(--fs-14);
  color: var(--smooth-black-text);
  margin-bottom: 1rem;
}

.hp-highlighted-product-text ul li {
  font-family: var(--ff-secondary);
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  display: flex;
  flex-direction: row;
  gap: .4rem;
  align-items: center;
  margin-left: 1rem;
}

.hp-highlighted-product-text ul {
  margin-bottom: 1.5rem;
}

.hp-highlighted-product-quote, .hp-highlighted-product-learn-more {
  cursor: pointer;
  padding: .6rem 1rem;
  font-family: var(--ff-primary);
}

.hp-highlighted-product-quote {
  border-radius: 10px;
  border: none;
  background-color: var(--bg-blue);
  color: var(--smooth-black-text);
  font-weight: var(--fw-bold);
  font-size: var(--fs-14);
}

.hp-highlighted-product-learn-more {
  border: none;
  background-color: transparent;
  font-weight: var(--fw-semi-bold);
}

.hp-highlighted-product-learn-more:hover, .hp-highlighted-product-quote:hover {
  text-decoration: underline;
}

  /*new products sections*/
  
  .products-homepage-container {
    display: flex;
    flex-flow: row wrap;
    max-width: 90%;
    margin: 2rem auto 4rem;
    gap: 2rem;
  }
  
  .reports-and-tests-container {
    flex: 60%;
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
  }
  
  .partnership-container {
    flex: 1 1 30%;
  }
  
  .reports-box-container, .tests-box-container {
    padding: 2rem;
    border-radius: 10px;
  }
  
  .reports-box-container {
    /*background: linear-gradient(0deg, rgba(244, 244, 244, 0.4), rgba(244, 244, 244, 0.4)), linear-gradient(257.13deg, #355C7D 33.47%, rgba(168, 41, 88, 0.4) 160.06%);*/
    background-color: var(--light-blue);
  }
  
  .reports-box-container:hover {
    transform: scale(1.02);
    transition: 2s;
  }
  
  .tests-box-container {
    border: 2px solid #355C7D;
  }
  
  .tests-box-container:hover {
    transform: scale(1.02);
    transition: 2s;
  }
  
  .product-box-container-hp {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 3rem;
  }
  
  .text-product-box-container-hp {
    flex: 50%;
  }
  
  .img-product-box-container-hp {
    flex: 10%;
  }
  
  .partnership-container {
    /*background: linear-gradient(180deg, rgba(244, 244, 244, 0.6), rgba(244, 244, 244, 0.4)), linear-gradient(120deg, #355C7D 33.47%, rgba(168, 41, 88, 0.8) 160.06%);*/
    background-color: var(--bg-blue);
    backdrop-filter: blur(5px);
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 1rem;
    border-radius: 10px;
  }
  
  .partnership-container:hover {
    transform: scale(1.02);
    transition: 2s;
  }
  
  h5 {
    font-family: var(--ff-primary);
    font-weight: var(--fw-medium);
    font-size: var(--fs-32);
    margin-bottom: 2rem;
    line-height: .98;
  }
  
  .h5-subtitle {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-light);
    line-height: 1.1;
    font-size: var(--fs-20);
  }
  
  .invert-colors-h5 {
    color: var(--blue);
  }
  
  .a-partnership-container {
    padding: 2rem;
  }
  
  .img-partnerships {
    max-width: 250px;
    margin: 0 auto;
  }
  
  @media (max-width: 65em)  {
    .reports-and-tests-container {
      flex: 50%;
    }
  
    h5 {
      font-size: var(--fs-25);
    }
  
    .h5-subtitle {
      font-size: var(--fs-16);
      font-weight: var(--fw-regular);
    }
  }
  
  @media (max-width: 45em) {
  
    .reports-and-tests-container {
      flex: 100%;
    }
  
    .partnership-container {
      flex: 100%;
    }
  
    .text-product-box-container-hp {
      flex: 100%;
      text-align: center;
    }
  
    .img-product-box-container-hp {
      max-width: 200px;
      margin: 0 auto;
    }
  
    h5 {
      font-size: var(--fs-25);
    }
  
    .h5-subtitle {
      font-size: var(--fs-16);
    }
  
    .img-partnerships {
      max-width: 200px;
    }
  }
  
  
  /* fim dos products */
  
  /* cta */
  
  .cta-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 90%;
    margin: 4rem auto 2rem;
    gap: 1rem;
  }
  
  
  .no-padding {
    padding: unset;
  }
  
  .no-padding-top {
    padding-top: unset;
  }
  
  .email-and-select {
    display: flex;
    flex-flow: row wrap;
    flex-shrink: 1;
    gap: 1rem;
  }
  
  .dropdown-edit {
    padding: .5rem 1.5rem;
    font-family: var(--ff-primary);
    color: var(--light-grey);
    border: 1px solid var(--light-grey);
    border-radius: 5px;
  }
  
  .email-input-edit {
    padding: .5rem 1rem;
    color: var(--light-grey);
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    width: 21em;
  }
  
  .email-input-edit::placeholder {
    font-family: var(--ff-primary);
    font-size: var(--fs-14);
  }
  
  .submit-drop-and-email {
    cursor: pointer;
    padding: 0.5rem 4rem;
    border-style: none;
    font-family: var(--ff-primary);
    font-weight: var(--fw-semi-bold);
    border-radius: 5px;
    color: white;
    background-color: var(--blue);
    text-transform: uppercase;
  }
  
  .submit-drop-and-email:hover {
    box-shadow: 0px 4px 20px 4px rgba(60, 119, 169, 0.4);
  }
  
  
  @media (max-width: 65em) {
    .cta-container {
      gap: 2rem;
    }
    
  }
  
  @media (max-width: 45em) {
    .small-note {
      margin-top: 1rem;
    }
    
  }
  
  /* fim do cta */
  
  /* academy homepage */
  
  .index-academy-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 90%;
    margin: 0rem auto;
    gap: 3rem;
    padding: 8rem 2rem;
    border-radius: 10px;
  }
  /*
  .index-academy-bg {
    background-image: url(img/bg-academy-1-b&w.svg);
    background-repeat: no-repeat;
    background-size: 100rem;
    background-position-x: 50rem;
    background-position-y: -7rem;
  }
  */
  
  .text-academy-container {
    flex: 50%;
    flex-grow: 0;
  }
  
  .text-academy-container p {
    margin-bottom: 2rem;
    font-size: var(--fs-18);
    max-width: 90%;
    font-weight: var(--fw-regular);
    color: var(--light-grey);
    line-height: 1.1;
  }
  
  .small-logo {
    max-width: 130px;
    margin-bottom: 2rem;
  }
  
  .text-academy-container p {
    color: var(--smooth-black-text);
    font-weight: var(--fw-light);
  }
  
  .index-acad-box-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
  }
  
  .index-acad-box {
    border: 1px solid black;
    border-radius: 5px;
    flex: 25%;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
  }
  
  .index-acad-box p {
    font-size: var(--fs-14);
    margin: .5rem;
    text-align: center;
  }
  
  .index-acad-box p.bold-text {
    font-weight: var(--fw-bold);
  }
  
  .index-acad-sign-up-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .index-acad-sign-up-wrapper img {
    max-width: 350px;
    position: relative;
    border-radius: 10px;
    border: 1px solid black;
  }
  
  .index-acad-sign-up-container {
    border: 1px solid black;
    border-radius: 10px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--light-yellow);
    position: relative;
    margin-top: -30rem;
    margin-left: -20rem;
    margin-right: 18rem;
  }
  
  .check-the-programs-button {
    padding: .5rem 0rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-semi-bold);
    border-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    background-color: transparent;
  }
  
  .check-the-programs-button:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 85em) {
  
  }
  
  @media (max-width: 65em) {
    .index-academy-container {
      width: 95%;
    }
  
    /*
    .index-academy-bg {
      background-position-x: 35rem;
    }*/
  
    .text-academy-container {
      flex: 30%;
    }
  }
  
  @media (max-width: 57em) {
    .sign-up-button {
      margin-right: unset;
    }
  }
  
  /* site-map & location */
  
  .site-map {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 6rem;
  }
  
  .site-map-left {
    flex: 40%;
    flex-grow: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .questools-logo-bw {
    max-width: 50%;
  }
  
  .site-map-text {
    font-size: var(--fs-14);
    color: var(--smooth-black-text);
    font-weight: var(--fw-light);
    text-align: justify;
  }
  
  .site-map-list {
    flex: 50%;
  }
  
  .site-map-list-wrapper {
    display: flex;
    flex-flow: row wrap;
  }
  
  .site-map-1st-column,
  .site-map-2nd-column,
  .site-map-3rd-column {
    flex: 15%;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
  }
  
  
  .site-map-1st-column ul li a, .site-map-2nd-column ul li a, 
  .site-map-3rd-column ul li a {
    color: var(--smooth-black-text);
    text-decoration: none;
    font-weight: var(--fw-semi-bold);
    font-family: var(--ff-secondary);
    font-size: var(--fs-14);
  }
  
  .site-map-1st-column ul li ul li a,
  .site-map-2nd-column ul li ul li a,
  .site-map-3rd-column ul li ul li a {
    font-weight: var(--fw-light);
  }
  
  .site-map-list li {
    margin: 5px;
  }
  
  @media (max-width: 65em) {
    .site-map {
      width: 95%;
    }
  }
  
  @media (max-width: 60em) {
    .site-map {
      gap: 2rem;
    }
  
    .site-map-left {
      align-items: center;
      flex: 100%;
    }
  
    .site-map-list li {
      text-align: center;
    }
  
    .site-map-list {
      flex: 100%;
    }
  
    .questools-logo-bw {
      max-width: 70%;
    }
  
    .site-map-left p { 
      text-align: center;
      max-width: 90%;
    }
  
    .site-map-1st-column,
    .site-map-2nd-column,
    .site-map-3rd-column {
      flex: 30%;
    }
  }
  
  @media (max-width: 57em) {
    .questools-logo-bw {
      max-width: 300px;
    }
  
    .site-map {
      margin-bottom: 5rem;
    }
  }
  
  
  .location-container {
    width: 90%;
    margin: 0 auto;
  }
  
  
  .location-grid {
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
  }
  
  .location {
    padding: 1.5rem 3.25rem 1.5rem 3.25rem;
  }
  
  
  .location p {
    font-size: var(--fs-14);
    text-align: center;
  }
  
  p.city {
    font-weight: var(--fw-semi-bold);
  } 
  
  @media (max-width: 85em) {
    .location {
      flex: 20%
    }
  }
  
  @media (max-width: 60em) {
    .location-grid {
      justify-content: center;
    }
  }
  
  @media (max-width: 45em) {
  
    .location-container {
      margin-top: 4rem;
    }
  }
  
  
  /* site-map & location fim */

/* Reports, Tests & Partnership Hero */

.products-container {
    display: flex;
    flex-flow: row wrap;
    max-width: 90%;
    margin: 0 auto;
    gap: 6rem;
  }
  
  .left-products-container {
    flex: 27%;
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  
  .right-products-container {
    flex: 65%;
    flex-grow: 0;
  }
  
  .left-products-img {
    border-radius: 20px;
    position: relative;
  }
  
  .percent-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 29rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    width: 23%;
  }
  
  .percent-card-percentage {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;
  }
  
  .percentage {
    font-family: var(--ff-primary);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-32);
    padding-left: 1rem;
    color: var(--smooth-black-text);
  }
  
  .small-arrow-up {
    color: #3ECC77;
    margin-top: 1rem;
  }
  
  .percent-card-text {
    font-weight: var(--fw-semi-bold);
    max-width: 100%;
    line-height: 1;
    padding-right: 0;
    color: var(--smooth-black-text);
  }
  
  .products-tag {
    cursor: pointer;
    background-color: rgba(60, 119, 169, 0.4);
    padding: .6rem .8rem;
    border-style: none;
    color: white;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    border-radius: 5px;
    margin-right: .5rem;
    margin-top: 4rem;
  }
  
  .reports-hero-title {
    margin: 1rem 0rem;
  }
  
  .h1-subtitle {
    font-family: var(--ff-secondary);
    font-size: var(--fs-25);
    font-weight: var(--fw-light);
    color: var(--light-grey);
    line-height: .98;
    max-width: 60%;
  }
  
  .align-left {
    margin: 1rem 6rem;
    border-color: rgba(60, 119, 169, 0.4);
    height: 140px;
  }
  
  .scroll-text-button-inline {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    color: var(--lighter-blue);
  }
  
  @media (max-width: 85em) {
  
    .products-container {
      gap: 5rem;
    }
  
    .left-products-container {
      flex-shrink: 1;
      height: fit-content;
    }
  
    .left-products-img {
      max-height: 500px;
    }
  
    .percent-card {
      position: unset;
      margin: -5rem auto .5rem;
      width: fit-content;
    }
  
    .right-products-container {
      flex-shrink: 1;
      flex: 100%;
      margin: 0 auto;
    }
  
    .h1-subtitle {
      font-size: var(--fs-20);
      text-align: center;
      margin: 0 auto;
    }
  
    .buttons-inline {
      margin: 0 auto;
      text-align: center;
      height: fit-content;
      max-width: 90%;
    }
  
    .products-tag {
      margin: .2rem 0;
    }
  
    .align-left {
      margin: 1rem auto;
    }
  
    .scroll-text-button-inline {
      justify-content: center;
    }
  }

  /* fim da página de reports, testes, partnership*/

  /* Reports dedicated page */

  
.single-report-hero {
    width: 90%;
    margin: 2rem auto 5rem;
  }
  
  .tag-container-report {
    background-color: var(--bg-blue);
    border-radius: 10px;
    max-width: 15%;
    padding: .5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: var(--ff-primary);
    font-size: var(--fs-14);
    color: var(--lighter-blue);
    font-weight: var(--fw-bold);
  }
  
  .single-report-hero-title {
    max-width: 60%;
    font-weight: var(--fw-bold);
    color: var(--smooth-black-text);
  }
  
  .single-report-hero-subtitle {
    color: var(--light-grey);
    max-width: 55%;
  }
  
  .two-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 3rem 0 0;
    align-items: center;
  }
  
  .button-text-icon {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: .5rem 1rem;
    border: none;
    background-color: var(--lighter-blue);
    border-radius: 20px;
    color: white;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-16);
  }
  
  .button-no-bg-blue {
    cursor: pointer;
    background-color: var(--bg-blue);
    color: var(--lighter-blue);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    border: none;
    font-size: var(--fs-16);
    padding: .5rem 1rem;
    border-radius: 20px;
  }
  
  .two-even-images {
    width: 90%;
    margin: 0 auto 5rem;
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
  }
  
  .grey-placeholder {
    background-color: var(--bg-grey);
    height: 500px;
    flex: 45%;
    border-radius: 10px;
  }
  
  .section-title-and-button {
    width: 90%;
    margin: 0 auto 2rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .report-goals-title {
    font-weight: var(--fw-bold);
    color: var(--smooth-black-text);
    font-size: var(--fs-32);
    font-family: var(--ff-secondary);
  }
  
  .report-goals-subtitle {
    color: var(--light-grey);
    max-width: 60%;
  }
  
  .section-top-button-and-tags {
    display: flex;
    flex-flow: column wrap;
    gap: 1rem;
    align-items: flex-end;
  }
  
  .rounded-button-blue {
    cursor: pointer;
    padding: .5rem 1rem;
    border-radius: 20px;
    border: none;
    background-color: var(--lighter-blue);
    color: white;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-16);
  }
  
  .small-button-tags {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
  }
  
  .small-grey-text {
    color: var(--light-grey);
    font-size: var(--fs-12);
  }
  
  .report-goals-wrapper {
    width: 90%;
    margin: 0 auto 5rem;
    background-color: var(--bg-grey);
    border-radius: 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 2.5rem 3rem;
  }
  
  .goal-column-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .goal-title-and-icon-box {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 30px;
  }
  
  .goal-title-box {
    padding: .5rem 1rem;
  }
  
  .goal-title {
    font-weight: var(--fw-semi-bold);
  }
  
  .goal-icon-box {
    background-color: var(--lighter-blue);
    width: 40px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .goal-achiever-box {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    /*width: 219.58px;*/
    width: 250px;
    border-radius: 10px;
  }
  
  .goal-achiever-title-wrapper {
    display: flex;
    flex-flow: row nowrap;
    gap: .8rem;
  }
  
  .side-colored-slash {
    width: 10px;
    height: 48px;
    background-color: var(--bg-blue);
    border-radius: 5px;
  }
  
  .goal-achiever-title {
    font-weight: var(--fw-bold);
  }
  
  .goal-achiever-subtitle {
    font-size: var(--fs-14);
  }
  
  .goal-achiever-img-placeholder {
    background-color: var(--light-grey);
    border-radius: 10px;
    height: 100px;
  }
  
  .goal-achiever-end-slash {
    height: 10px;
    background-color: var(--bg-grey);
    border-radius: 10px;
  }
  
  .report-faqs-wrapper {
    width: 90%;
    margin: 0 auto 5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  
  .report-faqs-text {
    flex: 45%;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .report-faqs-accordion {
    flex: 55%;
    flex-grow: 0;
  }
  
  .no-bg-blue {
    cursor: pointer;
    margin-top: 2rem;
    border: none;
    padding: .5rem 0;
    background-color: transparent;
    color: var(--lighter-blue);
    font-size: var(--fs-16);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
  }
  
  .faqs-report-container {
    border-bottom: 1px solid var(--light-grey);
    margin-bottom: 1rem;
    padding: 1rem;
    position: relative;
  }
  
  .faqs-report-label {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
  }
  
  .faqs-report-content p {
    font-size: var(--fs-14);
    color: var(--light-grey);
  }
  
  .img-text-two-columns {
    display: flex;
    flex-flow: row wrap;
    width: 90%;
    margin: 0 auto 5rem;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
  }
  
  .img-left-column {
    flex: 30%;
    flex-grow: 0;
  }
  
  .text-right-column {
    flex: 60%;
    flex-grow: 0;
  }
  
  .graphs-card-report {
    border-radius: 10px;
    background-color: var(--bg-blue);
    padding: 1rem 0 0 2rem;
  }

  /* end of reports dedicated page */

/* ACADEMY */

/* Academy Hero */

.academy-hero-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    justify-content: space-between;
  }
  
  .left-wrapper-academy {
    margin-bottom: 2rem;
    flex: 50%;
  }
  
  .right-wrapper-academy {
    flex: 40%;
  }
  
  .acad-hero-h1 {
    color: var(--smooth-black-text);
  }
  
  .acad-hero-button-1, .acad-hero-button-2 {
    padding: .5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-semi-bold);
    border-style: none;
    margin-top: 1rem;
  }
  
  .acad-hero-button-1 {
    background-color: var(--yellow);
    border: 1px solid black;
  }
  
  .acad-hero-button-2 {
    background-color: transparent;
  }
  
  .acad-hero-button-2:hover, .acad-hero-button-1:hover {
    text-decoration: underline;
  }
  
  .academy-hero-box-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    margin-top: 7rem;
  }
  
  .acad-hero-box {
    max-width: 25%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid black;
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  .acad-hero-box-img {
    max-width: 80px;
  }
  
  .acad-hero-box p {
    font-size: var(--fs-14);
    text-align: center;
  }
  
  .acad-hero-img {
    height: 450px;
    width: auto;
    object-fit: cover;
    margin: 0 auto 1rem;
    border-radius: 10px;
    position: relative;
    border: 1px solid black;
  }
  
  .acad-hero-img-and-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .acad-hero-card-1, .acad-hero-card-2 {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid black;
    padding: 1rem;
    display: flex;
    flex-flow: row nowrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    position: absolute;
  }
  
  .acad-hero-card-1 {
    margin-top: 2rem;
    margin-right: 22rem;
    width: 18%;
  }
  
  .acad-hero-card-2 {
    margin-top: 26rem;
    margin-left: 22rem;
    width: 15%;
  }
  
  .acad-card-number {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-20);
  }
  
  .card-subtitle {
    font-family: var(--ff-secondary);
    font-size: var(--fs-14);
    line-height: 1.1;
  }
  
  .right-acad-hero-text {
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  .right-acad-hero-title {
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-18);
  }
  
  .right-acad-hero-subtitle {
    font-weight: var(--fw-light);
    max-width: 100%;
  }
  
  /* Academy Stats */
  
  .academy-numbers-wrapper {
    width: 90%;
    margin: 3rem auto;
    display: flex;
    flex-flow: row wrap;
    opacity: .2;
    gap: 3rem;
    justify-content: center;
  }
  
  .acad-number-text-wrapper {
    flex: 15%;
    flex-grow: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  
  .acad-big-number {
    font-size: var(--fs-40);
    font-weight: var(--fw-bold);
    font-family: var(--ff-primary);
  }
  
  .acad-big-number-sub {
    font-size: var(--fs-14);
    text-align: center;
    max-width: 90%;
  }
  
  /* Academy How Does it Work? */
  
  .acad-section-title {
    font-size: var(--fs-32);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    text-align: center;
    margin-top: 8rem;
  }
  
  .acad-section-subtitle {
    font-size: var(--fs-16);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-light);
    text-align: center;
  }
  
  .vertical-tab-wrapper {
    width: 80%;
    margin: 3rem auto 4rem;
  }
  
  .tab {
    float: left;
    border: 1px solid #ccc;
    border-radius: 10px 0 0 10px;
    background-color: var(--light-yellow);
    width: 30%;
  }
  
  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 1rem;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--ff-primary);
    font-size: var(--fs-20);
    font-weight: var(--fw-semi-bold);
  }
  
  .tab button:nth-of-type(1) {
    border-radius: 10px 0 0 0;
  }
  
  .tab button:nth-of-type(4) {
    border-radius: 0 0 0 10px;
  }
  
  .tab button:hover {
    background-color: var(--mid-yellow);
  }
  
  .tab button.active {
    background-color: var(--mid-yellow);
    border: 1px solid black;
  }
  
  .tabcontent {
    display: none;
    float: left;
    padding: 0px 12px;
    border: 1px solid #ccc;
    border-radius: 0 10px 10px 0;
    width: 70%;
    border-left: none;
    height: 228px;
  }
  
  .tab-content-wrapper {
    display: flex;
    flex-flow: row nowrap;
    padding: 2rem;
    align-items: center;
    height: 228px;
  }
  
  .tab-content-title {
    font-size: var(--fs-20);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
  }
  
  .tab-content-subtitle {
    font-weight: var(--fw-light);
    max-width: 90%;
    margin-top: .5rem;
  }
  
  .tab-acad-button {
    padding: .5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-semi-bold);
    border-style: none;
    margin-top: 2rem;
    border: 1px solid black;
    background-color: transparent;
  }
  
  .tab-acad-button:hover {
    text-decoration: underline;
  }
  
  .tab-content-img {
    flex: 30%;
  }
  
  .certificate-tab-img {
    max-width: 70%;
    float: right;
  }
  
  /* Academy Programs */
  
  .three-even-columns {
    width: 90%;
    margin: 3rem auto;
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .acad-program-box {
    flex: 25%;
    flex-grow: 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid black;
    border-radius: 10px;
  }
  
  .acad-program-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .acad-program-button-1, .acad-program-button-2 {
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-semi-bold);
    border-style: none;
  }
  
  .acad-program-button-1:hover, .acad-program-button-2:hover {
    text-decoration: underline;
  }
  
  .acad-program-button-1 {
    background-color: var(--yellow);
    border: 1px solid black;
    padding: .5rem 1rem;
  }
  
  .acad-program-button-2 {
    background-color: transparent;
    padding: 1rem;
  }
  
  
  ul.acad-program-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  .acad-program-features li {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    font-family: var(--ff-secondary);
    font-size: var(--fs-14);
  }
  
  /* Enroll Academy */
  
  .acad-enroll-form-wrapper {
    width: 90%;
    margin: 4rem auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid black;
    border-radius: 10px;
    padding: 1rem;
    gap: 1rem;
  }
  
  .acad-enroll-form-img {
    flex: 30%;
    flex-grow: 0;
    background-color: var(--light-yellow);
  }
  
  .acad-enroll-form-img img {
    border-radius: 10px 0 0 10px;
    opacity: 1;
  }
  
  .acad-enroll-form {
    flex: 25%;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  
  .acad-enroll-form-title {
    font-size: var(--fs-32);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    text-align: center;
  }
  
  .acad-enroll-form-subtitle {
    font-size: var(--fs-16);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-light);
    text-align: center;
  }
  
  .social-container{
    margin: 20px 0;
  }
  
  .social-container a{
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    color: black;
  }
  
  .acad-enroll-form form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .name-input-edit-bigger {
    padding: .55rem 1rem;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    width: 21em;
    font-family: var(--ff-primary);
  }
  
  .name-input-edit-bigger::placeholder {
    font-size: var(--fs-14);
  }
  
  .acad-submit-edit{
    padding: .5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-semi-bold);
    border-style: none;
    margin-top: 1rem;
    background-color: var(--yellow);
    border: 1px solid black;
  }
  
  .acad-submit-edit:hover {
    text-decoration: underline;
  }

/* Help Page */

/* FAQS */

.support-title {
    font-size: var(--fs-32);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    display: flex;
    flex-flow: row nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }
  
  .faqs-wrapper {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .faqs-section-title {
    font-size: var(--fs-14);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
  }
  
  .accordion {
    cursor: pointer;
    padding: .5rem 1rem 1rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    color: var(--smooth-black-text);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-14);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid var(--bg-grey);
    border-radius: 5px;
    margin: 1rem 0rem;
  }
  
  .panel {
    padding: .2rem 2rem 1rem;
    background-color: white;
    display: none;
    overflow: hidden;
  }
  
  .panel p {
    font-size: var(--fs-14);
    color: var(--light-grey);
  }
  
  .faqs-separator {
    width: 100%;
    opacity: .1;
  }
  

/* SUPPORT CONTACT FORM */

.contact-support-container {
    width: 80%;
    margin: 0 auto;
    background-color: var(--bg-grey);
    border-radius: 5px;
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: space-between;
  }
  
  .contact-support-form {
    display: flex;
    flex-flow: column;
    gap: 2rem;
    padding: 3rem 3rem;
    flex: 60%;
  }
  
  .support-contacts-container {
    background: var(--gradient-blue-pink-softer);
    border-radius: 0px 5px 5px 0;
    flex: 30%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem;
  }
  
  .prefix-and-name {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    align-items: stretch;
  }
  
  .form-support-subtitle {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-14);
    margin-bottom: .5rem;
  }
  
  .name-input-edit {
    padding: .55rem 1rem;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    font-family: var(--ff-primary);
  }
  
  .name-input-edit::placeholder {
    font-size: var(--fs-14);
  }
  
  .textarea-edit {
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    padding: .55rem 1rem;
  }
  
  .submit-support-form-edit {
    cursor: pointer;
    padding: .55rem 2rem;
    border: 1px solid var(--light-grey);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semi-bold);
    color: var(--smooth-black-text);
    background-color: white;
    border-radius: 5px;
  }
  
  .phone-contact {
    color: white;
    font-family: var(--ff-secondary);
    font-size: var(--fs-32);
    font-weight: var(--fw-semi-bold);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .phone-number-columns {
    display: flex;
    flex-flow: column;
    gap: 1rem;
  }
  
  .support-phone-img {
    max-width: 30%;
    margin-bottom: 2rem;
  }
  
  .phone-number-edit, .book-a-call-submit{
    padding: .55rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--light-grey);
  }
  
  .book-a-call-submit {
    cursor: pointer;
    font-family: var(--ff-secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-semi-bold);
    margin-bottom: 2.5rem;
    background-color: transparent;
    color: white;
  }
  
  .book-a-call-submit:hover {
    background-color: white;
    color: var(--blue);
  }
  
  /* Utility classes */

.grey-hl {
    color: black;
    -webkit-filter: opacity(10%);
  }
  
  .drop-shadow-below {
    box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.13);
  }
  
  .drop-shadow-up {
    box-shadow: 0px -4px 4px 1px rgba(0,0,0,0.13);
  }
  
  .line-height {
    line-height: .98;
  }
  
  .blue-background {
    background-color: #0A4364;
  }
  
  .pink-bg {
    background-color: var(--pink);
  }
  
  .mid-pink-bg {
    background-color: var(--mid-pink);
  }
  
  .yellow-bg {
    background-color: var(--yellow);
  }
  
  .mid-yellow-bg {
    background-color: var(--mid-yellow);
  }
  
  .smooth-black-bg {
    background-color: var(--smooth-black-text);
  }
  
  .no-border {
    border-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  .no-max-width {
    max-width: unset;
  }
  
  .max-width-60 {
    max-width: 60%;
  }
  
  .gradient-pink-text {
    background: linear-gradient(144.24deg, rgba(156, 17, 53, 0.7) 6.44%, rgba(156, 92, 17, 0.15) 170.28%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .gradient-text-title {
    background: linear-gradient(93.56deg, #A82958 -5%, #DC8173 113.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .gradient-text-icon {
    background: linear-gradient(93.56deg, #A82958 -15.83%, #DC8173 130%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .bold-text {
    font-weight: var(--fw-bold);
  }
  
  .semi-bold-text {
    font-weight: var(--fw-semi-bold);
  }
  
  .regular-text {
    font-weight: var(--fw-regular);
  }
  
  .light-text {
    font-weight: var(--fw-light);
  }
  
  .white-text {
      color: white;
  }
  
  .light-blue-text {
    color: var(--light-blue);
  }
  
  .smooth-black-text {
    color: var(--smooth-black-text);
  }
  
  .lighter-blue-text { 
    color: var(--lighter-blue);
  }
  
  .text-light-grey{
    color: var(--light-grey);
  }
  
  .blue-text {
    color: var(--blue);
  }
  
  .black-text {
    color: var(--black-text);
  }
  
  .pink-text {
    color: var(--pink);
  }
  
  .mid-pink-text {
    color: var(--mid-pink);
  }
  
  .light-pink-text {
    color: var(--light-pink);
  }
  
  .yellow-text {
    color: var(--yellow);
  }
  
  .mid-yellow-text {
    color: var(--mid-yellow);
  }

  .green-text {
    color: #3ECC77;
  }
  
  .centered-text {
    text-align: center;
  }
  
  .small-text {
    font-size: var(--fs-14);
  }
  
  .padding-block-900{
      padding-block: var(--size-900);
    }
    
  .padding-block-700{
      padding-block: var(--size-700);
    }
    
  .padding-block-300{
      padding-block: var(--size-300);
    }
  
  .padding-block-400{
    padding-block: var(--size-400);
  }
  
  .padding-block-500{
    padding-block: var(--size-500);
  }
  
  .padding-block-600{
    padding-block: var(--size-600);
  }
  
  .padding-block-700{
    padding-block: var(--size-700);
  }
  
  .padding-block-1000 {
      padding-block: var(--size-1000);
  }
    
  .bg-gradient-quest{
      background-color: var(--gradient-blue-pink);
    }
    
  .bg-gradient-quest-soft{
      background-color: var(--gradient-blue-pink-softer);
    }
  
  .grey-background {
    background-color: var(--bg-grey);
  }
  
  .footer-background-color {
    background-color: #8d99ae;
  }
  
  .hero-background-color {
    background-color: #fbfcff;
  }
  
  .light-yellow-bg {
    background-color: var(--light-yellow);
  }
  
  .light-pink-bg {
    background-color: var(--light-pink);
  }

  .bg-light-blue {
      background-color: var(--light-blue)
  }
  
  .lighter-pink-bg {
    background-color: var(--lighter-pink);
  }
  
    .fw-black{
      font-weight: var(--fw-black);
    }
    
    .fw-bold{
      font-weight: var(--fw-bold);
    }
    
    .fw-semi-bold{
      font-weight: var(--fw-semi-bold);
    }
    
    .fw-regular{
      font-weight: var(--fw-regular);
    }
    
    .fw-light{
      font-weight: var(--fw-light);
    }
    
    .ff-primary{
      font-family: var(--ff-primary);
    }
    
    .ff-secondary{
      font-family: var(--ff-secondary);
    }
  
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
  
    .display-small-none{
      display: none;
    }
    
  @media (min-width: 65em) {
    .display-medium-inline-flex {
        display: inline-flex;
      }
  }
  
  @media (max-width: 60em) {
    .do-not-display-mobile {
      display: none;
    }
  }