@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #4FAB9D;
  --color-accent: #6e99f5;
  --color-btn: #26408B;
  --color-warning: #f15353;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  background-image: url(../img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2);
}

body.lock {
  overflow: hidden;
}

a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-primary);
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.main__btn {
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-btn);
  color: var(--color-light);
  border: var(--color-btn);
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  background-color: rgba(181, 181, 250, 0.5);
  transform: translateX(-200%) skewX(-45deg);
  transition: all 2s ease;
}
.main__btn:hover::before {
  transform: translateX(200%) skewX(-45deg);
}

.section__title {
  max-width: 600px;
  font-size: 3rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media screen and (max-width: 1200.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}

/*  COMPONENTS  */
.btn {
  display: flex;
  align-items: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--color-dark);
  border: 0px;
}

.main__btn {
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
  background-color: #032843;
  font-weight: bold;
  color: var(--color-light);
  z-index: 2;
  transition: all 0.3s ease;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(24px);
  z-index: -1;
  transform: translateX(-350%) skewX(-45deg);
  transition: all 1s ease;
}
.main__btn:hover {
  color: var(--color-light);
}
.main__btn:hover::before {
  transform: translateX(350%) skewX(-45deg);
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  background-color: #18260B;
  padding: 12px 0;
  position: relative;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.header__logo {
  max-width: 70px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.hero {
  padding: 3rem 0;
  color: #fff;
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: 1.875rem 0;
  }
}
.hero__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4rem;
}
@media screen and (max-width: 992.98px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.hero__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .hero__list {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768.98px) {
  .hero__item {
    font-size: 14px;
  }
}
.hero__item svg {
  color: var(--color-light);
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 768.98px) {
  .hero__item svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.companies {
  padding: 1.875rem 0;
}

.company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  background-color: #183e38;
  color: var(--color-light);
  padding: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .company {
    flex-direction: column;
    max-width: 460px;
    width: 100%;
  }
}
@media screen and (max-width: 768.98px) {
  .company {
    padding: 1rem;
  }
}
.company:not(:last-child) {
  margin-bottom: 1.5rem;
}
.company__media {
  max-width: 180px;
}
.company__bonus-text {
  max-width: 270px;
  text-align: center;
}
.company__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}
.company__list {
  flex-shrink: 0;
}
.company__item p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.company__item svg {
  width: 1rem;
  height: 1rem;
  color: yellow;
}
.company__score {
  text-transform: uppercase;
  text-align: center;
}
.company__score span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.company__btn {
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid var(--color-light);
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 768.98px) {
  .company__btn {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.reviews {
  padding: 5rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .reviews {
    padding: 3rem 0;
  }
}
.reviews__title {
  margin-bottom: 1rem;
  max-width: 100%;
}
.reviews__disclaimer {
  margin-bottom: 2rem;
}
.reviews__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .reviews__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 768.98px) {
  .reviews__list {
    flex-direction: column;
  }
}
.reviews__item {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--color-primary);
  color: var(--color-light);
  background-color: #043f45;
}
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.reviews__rating svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #facc15;
}
.reviews__text {
  margin-bottom: 1.5rem;
  font-style: italic;
}
.reviews__author {
  font-weight: 700;
  font-size: 1.5rem;
}

.guide {
  padding: 5rem 0;
  color: var(--color-light);
}
.guide__inner {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background-color: #043f45;
}
.guide__heading {
  max-width: 100%;
}
.guide__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .guide__title {
    font-size: 1.375rem;
  }
}
.guide__text {
  margin-bottom: 1.5rem;
}
.guide__list {
  margin-bottom: 1.5rem;
}
.guide__list--bold {
  font-weight: 500;
}
.guide__item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.guide__suplist {
  margin-bottom: 0.5rem;
}

.responsible {
  padding: 3rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .responsible {
    padding: 1.875rem 0;
  }
}
.responsible__inner {
  border-radius: 1.5rem;
  background-color: #022c31;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.responsible__heading {
  max-width: 100%;
}
.responsible__text {
  text-align: center;
  margin-bottom: 0.5rem;
}
.responsible__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992.98px) {
  .responsible__help {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.responsible__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
}
@media screen and (max-width: 480.98px) {
  .responsible__media {
    max-width: 280px;
  }
}
.responsible__media svg {
  margin: 0 auto;
  display: block;
}

.footer {
  padding: 3rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    flex-direction: column;
  }
}
.footer__item:last-child {
  margin-left: auto;
  font-weight: 700;
  color: var(--color-warning);
}
@media screen and (max-width: 992.98px) {
  .footer__item:last-child {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__item:last-child {
    text-align: center;
  }
}
.footer__description p + p {
  margin-top: 1.5rem;
}
.footer__description b {
  font-size: 18px;
}
.footer__copy {
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  border-top: 1px solid #acacac;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #171d35;
  color: var(--color-light);
  padding: 1.5rem 1rem;
  text-align: center;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookies-banner__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-banner__btns {
    flex-direction: column;
    align-items: center;
  }
}
.cookies-banner button {
  margin: 0 5px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  max-width: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#accept-cookies {
  background-color: #1dd494;
  color: var(--color-primary-light);
  transition: transform 0.5s ease;
}

#accept-cookies:hover {
  transform: scale(1.1);
}

#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-primary-light);
  transition: transform 0.5s ease;
}

#reject-cookies:hover {
  transform: scale(1.1);
}

.service-page {
  padding: 5rem 0;
  color: var(--color-light);
}
.service-page h2 {
  margin-bottom: 0.625rem;
}
.service-page p {
  margin-bottom: 1rem;
}
.service-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.service-page ul {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  padding-left: 18px;
}
.service-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
}
.service-page__subtitle {
  text-align: center;
}
.service-page__content {
  padding: 2rem;
  border-radius: 50px;
  background: #043f45;
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */