body {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --white: #ffffff;
  --lightBlue: #e6eaf9;
  --red: #ff3b77;
  --blue: #1f3281;
  --dark: #0a1029;
  --mainFont: "Work Sans",
                  system-ui,
                  -apple-system,
                  BlinkMacSystemFont,
                  "Segoe UI",
                  Roboto,
                  Oxygen,
                  Ubuntu,
                  Cantarell,
                  "Open Sans",
                  "Helvetica Neue",
                  sans-serif;
  --titleFont: REM,
                  system-ui,
                  -apple-system,
                  BlinkMacSystemFont,
                  "Segoe UI",
                  Roboto,
                  Oxygen,
                  Ubuntu,
                  Cantarell,
                  "Open Sans",
                  "Helvetica Neue",
                  sans-serif;
}

html {
  color: var(--dark);
  font-family: var(--mainFont);
  font-size: 4.44445vw;
  background-color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (min-width: 600px) {
  html {
    font-size: 2.66665vw;
    font-size: 2.5vw;
    overflow-x: initial;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 1.1112vw;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 20px;
  }
}

body {
  padding: 0.625rem;
}
@media (min-width: 600px) {
  body {
    padding: 1rem;
  }
}
@media (min-width: 1000px) {
  body {
    padding: 1.25rem;
  }
}

@media (min-width: 1800px) {
  main {
    max-width: 1800px;
    margin: 0 auto;
  }
}

@font-face {
  font-family: "Work Sans";
  src: url("./fonts/WorkSans-Regular.woff2") format("woff2"), url("./fonts/WorkSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "REM";
  src: url("./fonts/REM-Light.woff2") format("woff2"), url("./fonts/REM-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "REM";
  src: url("./fonts/REM-Regular.woff2") format("woff2"), url("./fonts/REM-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "REM";
  src: url("./fonts/REM-Medium.woff2") format("woff2"), url("./fonts/REM-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 1.25rem;
  aspect-ratio: 9/16;
  border-radius: 1.75rem;
  background-color: var(--red);
  background-image: radial-gradient(75% 75% at 60% -1%, #eb4d79 0%, rgba(36, 50, 125, 0.8509803922) 100%), radial-gradient(75% 75% at -50% 67%, #eb4e78 0%, rgba(35, 50, 124, 0.768627451) 100%), linear-gradient(0deg, #eb4e78 0%, #ea3a69 100%);
  background-size: 200% 150%;
}
@media (min-width: 600px) {
  .header {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 1000px) {
  .header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 8rem;
    padding: 2.5rem;
    padding-top: 1.25rem;
    aspect-ratio: 16/8;
    animation: gradient 10s ease infinite;
    animation-direction: alternate;
  }
}
@media (min-width: 1800px) {
  .header {
    max-width: 1800px;
    margin: 0 auto;
    margin-bottom: 8rem;
  }
}

.header__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10rem;
}

@media (min-width: 600px) {
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.header__caption {
  margin-bottom: 1.875rem;
}
@media (min-width: 600px) {
  .header__caption {
    margin-bottom: 0;
  }
}

.header__buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
}
@media (min-width: 1000px) {
  .header__buttons {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.logo {
  display: block;
  max-width: 10rem;
  opacity: 1;
  transition: all 0.25s ease-out;
}

@media (hover: hover) {
  .logo:hover {
    opacity: 0.5;
  }
}

.logo svg {
  width: 100%;
}

.main-nav {
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: top right;
  transform: scale(0);
  z-index: 3;
  padding: 2.5rem;
  padding-top: 5.25rem;
  width: 100%;
  border-radius: 1.25rem;
  background-color: var(--white);
  opacity: 0.25;
  overflow: hidden;
  transition: all 0.25s ease-out;
}
@media (min-width: 600px) {
  .main-nav {
    width: 20rem;
  }
}
@media (min-width: 1000px) {
  .main-nav {
    position: relative;
    transform: scale(1);
    display: flex;
    align-items: center;
    gap: 10rem;
    width: auto;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
}
.main-nav.open {
  transform: scale(1);
  opacity: 1;
}

.main-nav__close {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  display: flex;
  line-height: 1;
  border: none;
  appearance: none;
  background-color: transparent;
}
@media (min-width: 1000px) {
  .main-nav__close {
    display: none;
  }
}

.main-nav__close-x {
  margin-left: 0.25rem;
  font-size: 1.25rem;
  font-weight: 300;
}

.main-nav__menu {
  margin-bottom: 4rem;
}
@media (min-width: 1000px) {
  .main-nav__menu {
    margin-bottom: 0;
  }
}

.main-nav__contacts {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1000px) {
  .main-nav__contacts {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
}

.main-nav__social {
  display: flex;
  gap: 1.375rem;
  margin-top: 1rem;
}
@media (min-width: 1000px) {
  .main-nav__social {
    margin-top: 0;
    gap: 0.75rem;
  }
}
.main-nav__social svg {
  fill: var(--blue);
}
@media (min-width: 1000px) {
  .main-nav__social svg {
    fill: var(--white);
  }
}

ul.main-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1000px) {
  ul.main-menu {
    flex-direction: row;
    padding: 0.3125rem 0.375rem;
    gap: 0;
    border-radius: 1.25rem;
    background-color: rgba(255, 255, 255, 0.6980392157);
  }
}

.main-menu__item {
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .main-menu__item {
    line-height: 1.1875;
  }
}

.main-menu__active {
  color: var(--dark);
}
@media (min-width: 1000px) {
  .main-menu__active {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0.3125rem 1rem;
    padding-bottom: 0.375rem;
    color: var(--white);
    user-select: none;
    transition: all 0.25s ease-out;
  }
}

.main-menu__link {
  color: var(--dark);
  text-decoration: none;
}
@media (min-width: 1000px) {
  .main-menu__link {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0.3125rem 1rem;
    padding-bottom: 0.375rem;
    transition: all 0.25s ease-out;
  }
}

@media (min-width: 1000px) {
  .main-menu__link:hover {
    color: var(--white);
  }
}

.main-menu__separator {
  height: 1px;
  background-color: var(--blue);
}
@media (min-width: 1000px) {
  .main-menu__separator {
    display: none;
  }
}

.main-menu__tracker {
  display: none;
}
@media (min-width: 1000px) {
  .main-menu__tracker {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 0.9375rem;
    height: 1.875rem;
    background-color: var(--blue);
    transition: all 0.25s ease-out;
  }
}

.social {
  display: block;
  height: 2.25rem;
  font-size: 0;
  opacity: 1;
  transition: all 0.25s ease-out;
}
@media (min-width: 1000px) {
  .social {
    height: 1.5rem;
  }
}

@media (hover: hover) {
  .social:hover {
    opacity: 0.5;
  }
}

.social svg {
  height: 100%;
}

.email {
  color: var(--blue);
  text-decoration: none;
  opacity: 1;
  transition: all 0.25s ease-out;
}
@media (min-width: 1000px) {
  .email {
    color: var(--white);
  }
}

.email:hover {
  opacity: 0.5;
}

.menu-button {
  padding: 0.625rem 2rem;
  border: none;
  border-radius: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.1875;
  background-color: rgba(255, 255, 255, 0.6980392157);
}
@media (min-width: 1000px) {
  .menu-button {
    display: none;
  }
}

.main-title {
  color: var(--white);
  font-family: var(--titleFont);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.225;
}
@media (min-width: 600px) {
  .main-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1000px) {
  .main-title {
    font-size: 3rem;
    font-weight: 500;
  }
}

.main-subtitle {
  margin-top: 1rem;
  color: var(--white);
  font-family: var(--titleFont);
  font-weight: 300;
}
@media (min-width: 1000px) {
  .main-subtitle {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}

.main-subtitle a {
  color: var(--white);
}

.ghost-button {
  position: relative;
  transform: translateY(0);
  z-index: 2;
  padding: 0.75rem 2rem;
  border: 0.125rem solid var(--white);
  border-radius: 2rem;
  color: var(--white);
  font-family: var(--titleFont);
  font-size: 1.5rem;
  line-height: 1.225;
  text-align: center;
  text-decoration: none;
  appearance: none;
  transition: all 0.25s ease-out;
}
@media (min-width: 1000px) {
  .ghost-button {
    display: flex;
  }
}

.ghost-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 0;
  border-radius: 2rem;
  background-color: var(--white);
  transition: all 0.25s ease-out;
  opacity: 0;
}

@media (hover: hover) {
  .ghost-button:hover {
    color: var(--blue);
    background-color: var(--white);
    box-shadow: 0px 0.625rem 0.625rem 0px rgba(31, 50, 129, 0.25);
  }
}

@media (hover: hover) {
  .ghost-button:hover::before {
    left: 0;
    right: auto;
    width: 100%;
    opacity: 1;
  }
}

@media (hover: hover) {
  .ghost-button:active {
    transform: translateY(0);
    box-shadow: none;
  }
}

.ghost-button__deco {
  position: relative;
  transform: rotate(0deg);
  transform-origin: center center;
  margin-left: 0.5rem;
  transition: all 0.5s ease-out;
}

@media (hover: hover) {
  .ghost-button:hover .ghost-button__deco {
    color: var(--red);
    transform: translate(1rem, -1rem) rotate(155deg) scale(3);
  }
}

.cta-button {
  padding: 0.75rem 2.25rem;
  border: 0.125rem solid var(--white);
  border-radius: 2rem;
  color: var(--blue);
  font-family: var(--titleFont);
  font-size: 1.5rem;
  line-height: 1.225;
  text-align: center;
  text-decoration: none;
  background-color: var(--white);
  box-shadow: 0px 0.625rem 0.625rem 0px rgba(31, 50, 129, 0.25);
}

.section {
  position: relative;
  margin-bottom: 6rem;
}
@media (min-width: 1000px) {
  .section {
    margin-bottom: 8rem;
    padding-left: 2.5rem;
  }
}

@media (min-width: 1000px) {
  .section--flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1000px) {
  .section--flex .section__header {
    position: sticky;
    top: 5rem;
  }
}

.section--blue {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background-color: var(--lightBlue);
}
@media (min-width: 1000px) {
  .section--blue {
    padding: 2.5rem;
    padding-bottom: 8rem;
    padding-right: 7.375rem;
    padding-top: 3.5rem;
  }
}

.section__header {
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .section__header {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1000px) {
  .section__header {
    flex-basis: 25rem;
  }
}

@media (min-width: 1000px) {
  .section__content {
    padding-top: 8rem;
  }
}

.section__content--t-pb {
  padding-bottom: 4rem;
}

@media (min-width: 1000px) {
  .section__content--np {
    padding-top: 1.5rem;
  }
}

.title {
  color: var(--blue);
  font-family: var(--titleFont);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.225;
}

.subtitle {
  margin-top: 2rem;
  line-height: 1.225;
}

.subtitle strong {
  font-family: var(--titleFont);
  font-weight: 400;
  font-size: 1.5rem;
}

.type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  height: 24rem;
  color: var(--blue);
  border-radius: 1.25rem;
  background-color: var(--lightBlue);
}
@media (min-width: 600px) {
  .type-card {
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .type-card {
    overflow: hidden;
  }
}

@media (min-width: 1000px) {
  .type-card::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -100%;
    transform: rotate(45deg);
    height: 60rem;
    box-shadow: 0 0 100px 40px rgba(255, 255, 255, 0.5333333333);
    transition: 0.7s all;
  }
}

@media (min-width: 1000px) {
  .type-card:hover::before {
    top: -100%;
    left: 200%;
  }
}

@media (min-width: 1000px) {
  .type-card:hover .type-card__image {
    transform: scale(1.125);
  }
}

@media (min-width: 600px) {
  .type-card:nth-of-type(2n) {
    margin-top: -2rem;
  }
}
@media (min-width: 1000px) {
  .type-card:nth-of-type(2n) {
    margin-top: 0;
  }
}

@media (min-width: 1000px) {
  .type-card:nth-of-type(3n + 2) {
    margin-top: -2rem;
  }
}

.type-card__image {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 8rem;
}
@media (min-width: 1000px) {
  .type-card__image {
    transition: all 0.5s ease-out;
  }
}

.type-card__image img {
  width: 100%;
}

.type-card__title {
  margin-bottom: 1rem;
  font-family: var(--titleFont);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.225;
}
@media (min-width: 1000px) {
  .type-card__title {
    font-size: 1.5rem;
    font-weight: 400;
  }
}

.type-card__text {
  line-height: 1.225;
}

.gradient-card {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
  color: var(--blue);
  overflow: hidden;
}
@media (min-width: 600px) {
  .gradient-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 18rem;
    margin-bottom: 0;
    padding: 2.25rem;
  }
}

@media (min-width: 600px) {
  .gradient-card--1 {
    grid-area: one;
  }
  .gradient-card--2 {
    grid-area: two;
  }
  .gradient-card--3 {
    padding-top: 9.5rem;
    grid-area: three;
    align-self: center;
  }
  .gradient-card--mt {
    justify-content: flex-start;
    margin-top: -3rem;
    margin-bottom: 3rem;
  }
  .gradient-card--5 {
    grid-column: 2;
    justify-content: flex-end;
  }
}
.gradient-card::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -25%;
  bottom: -25%;
  left: -25%;
  z-index: -2;
  display: block;
  background-image: linear-gradient(-45deg, #ff3b77 0%, #ff3b77 30%, rgba(255, 59, 119, 0.5333333333) 40%, #1f3281 70%, #1F3281 100%);
  overflow: hidden;
  transition: all 1s ease-out;
}

.gradient-card::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  z-index: -1;
  display: block;
  border-radius: calc(1.5rem - 2px);
  background-color: var(--lightBlue);
  overflow: hidden;
}

@media (min-width: 1000px) {
  .gradient-card:hover::before {
    transform: rotate(180deg);
  }
}

.gradient-card__number {
  color: var(--red);
  font-family: var(--titleFont);
  font-size: 3rem;
  font-weight: 500;
}

.gradient-card__title {
  font-family: var(--titleFont);
  font-size: 1.5rem;
  font-weight: 400;
}

.gradient-card__text {
  margin-top: 1rem;
  line-height: 1.225;
}

.promo {
  position: relative;
  z-index: 3;
  margin-bottom: 6rem;
  margin-top: -10rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background-color: var(--red);
  background-image: radial-gradient(75% 75% at 60% -1%, #eb4d79 0%, rgba(36, 50, 125, 0.8509803922) 100%), radial-gradient(75% 75% at -50% 67%, #eb4e78 0%, rgba(35, 50, 124, 0.768627451) 100%), linear-gradient(0deg, #eb4e78 0%, #ea3a69 100%);
  background-size: 200% 150%;
}
@media (min-width: 600px) {
  .promo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
    margin-bottom: 8rem;
    margin-top: -9rem;
    padding: 2.5rem;
    padding-top: 8rem;
    width: 35rem;
  }
}
@media (min-width: 1000px) {
  .promo {
    width: 72rem;
    margin-top: -13rem;
    animation: gradient 10s ease infinite;
    animation-direction: alternate;
  }
}

.promo__title {
  margin-bottom: 8rem;
  color: var(--white);
  font-family: var(--titleFont);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.225;
}
@media (min-width: 600px) {
  .promo__title {
    margin-bottom: 0;
    font-size: 1.75rem;
    font-weight: 500;
  }
}
@media (min-width: 1000px) {
  .promo__title {
    font-size: 3rem;
  }
}

.promo__buttons {
  display: flex;
  flex-direction: column;
}

.feature-table tr {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--blue);
}
@media (min-width: 600px) {
  .feature-table tr {
    display: grid;
    align-items: center;
    grid-template-columns: 4rem 1fr;
    grid-template-areas: "number heading" "text text";
    gap: 1rem;
  }
}
@media (min-width: 1000px) {
  .feature-table tr {
    display: flex;
    margin-bottom: 0;
    padding: 1.5rem 0;
  }
}

.feature-table td {
  display: block;
}

.feature-table__number {
  margin-bottom: 0.5rem;
  color: var(--red);
  font-family: var(--titleFont);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.225;
}
@media (min-width: 600px) {
  .feature-table__number {
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .feature-table__number {
    flex-basis: 26rem;
    flex-shrink: 0;
    padding-left: 5rem;
  }
}

.feature-table__feature {
  margin-bottom: 2rem;
  color: var(--blue);
  font-family: var(--titleFont);
  font-size: 1.5rem;
  line-height: 1.225;
}
@media (min-width: 600px) {
  .feature-table__feature {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
}
@media (min-width: 1000px) {
  .feature-table__feature {
    flex-basis: 30rem;
    flex-shrink: 0;
    flex-grow: 0;
    font-size: 1.5rem;
  }
}

.feature-table__text {
  line-height: 1.225;
}
@media (min-width: 600px) {
  .feature-table__text {
    grid-area: text;
  }
}
@media (min-width: 1000px) {
  .feature-table__text {
    padding-right: 7.5rem;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  color: var(--blue);
  background-color: var(--lightBlue);
}
@media (min-width: 600px) {
  .feature-card {
    margin-bottom: 0;
    height: 24rem;
  }
}
@media (min-width: 1000px) {
  .feature-card {
    padding: 2.25rem;
  }
}

@media (min-width: 600px) {
  .feature-card:nth-of-type(2n) {
    margin-top: -2rem;
  }
}

.feature-card__title {
  margin-bottom: 2rem;
  font-family: var(--titleFont);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.225;
}

.feature-card__text {
  line-height: 1.225;
}

.footer {
  margin: -0.625rem;
  padding: 2.375rem;
  color: var(--white);
  background-color: var(--blue);
}
@media (min-width: 600px) {
  .footer {
    margin: -1rem;
  }
}
@media (min-width: 1000px) {
  .footer {
    margin: -1.25rem;
    padding: 6.25rem 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.footer__top {
  margin-bottom: 3rem;
}
@media (min-width: 1000px) {
  .footer__top {
    display: flex;
    justify-content: space-between;
  }
}

.footer__logo {
  margin-bottom: 3rem;
}
@media (min-width: 1000px) {
  .footer__logo {
    flex-basis: 21rem;
    flex-shrink: 0;
  }
}

.footer__menues {
  margin-bottom: 3rem;
}
@media (min-width: 1000px) {
  .footer__menues {
    display: flex;
    flex-grow: 10;
    margin-bottom: 0;
  }
}

.footer__menu {
  margin-bottom: 3rem;
}

@media (min-width: 1000px) {
  .footer__text {
    flex-basis: 21rem;
  }
}

@media (min-width: 1000px) {
  .footer__contacts {
    flex-basis: 15rem;
    flex-shrink: 0;
  }
}
.footer__contacts .email {
  color: var(--white);
}
.footer__contacts svg {
  fill: var(--white);
}

.footer__social {
  display: flex;
  gap: 1.375rem;
  margin-top: 1rem;
}

.footer__title {
  margin-bottom: 1rem;
  font-family: var(--titleFont);
  font-size: 1.5rem;
  font-weight: 400;
}

.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 600px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copy {
  margin-top: 1rem;
}

@media (min-width: 1000px) {
  .footer__menu {
    flex-basis: 15rem;
  }
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1000px) {
  .footer-menu--d-row {
    flex-direction: row;
  }
}

.footer-menu__link {
  color: var(--white);
  text-decoration: none;
  opacity: 1;
  transition: all 0.25s ease-out;
}

.footer-menu__link:hover {
  opacity: 0.5;
}

.types-cards {
  display: none;
}
@media (min-width: 600px) {
  .types-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1000px) {
  .types-cards {
    grid-template-columns: repeat(3, 21rem);
    gap: 1.25rem;
  }
}

@media (min-width: 600px) {
  .roles-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "one three" "two three";
    gap: 1.25rem;
  }
}
@media (min-width: 1000px) {
  .roles-cards {
    grid-template-columns: repeat(2, 21rem);
  }
}

@media (min-width: 600px) {
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }
}
@media (min-width: 1000px) {
  .feature-cards {
    grid-template-columns: repeat(2, 21rem);
  }
}

@media (min-width: 600px) {
  .step-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-top: 2rem;
    margin-bottom: -2rem;
  }
}
@media (min-width: 1000px) {
  .step-cards {
    grid-template-columns: repeat(2, 21rem);
  }
}

ul.payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 600px) {
  ul.payments {
    gap: 4rem;
  }
}
@media (min-width: 1000px) {
  ul.payments {
    gap: 7.5rem;
    padding-right: 7.5rem;
  }
}

.payments__item {
  height: 3.3125rem;
}

.payments__item--wire {
  height: 4.9375rem;
}

.payments__item img {
  height: 100%;
}

.policy {
  margin-bottom: 8rem;
  margin-top: -4rem;
  padding: 1.25rem;
}
.policy h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: var(--titleFont);
  font-weight: 500;
  text-transform: uppercase;
}
.policy p b {
  font-family: var(--titleFont);
  font-weight: 500;
}
.policy p a {
  color: var(--blue);
}

@keyframes gradient {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

@media (min-width: 600px) {
  .glide {
    display: none;
  }
}

.glide__bullets {
  bottom: -2rem;
}

.glide__bullet {
  box-shadow: none;
  background-color: var(--lightBlue);
  opacity: 1;
}

.glide__bullet--active {
  background-color: var(--blue);
}