@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
:root {
  --color-primary-light: #ffffff;
  --color-primary-dark: #2b061e;
  --color-primary: #E4572E;
  --color-accent: #F3A712;
  --color-btn: #16697A;
  --color-warning: #f87171;
}

*,
*::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%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-primary-light);
  background-color: #0D0221;
  background-image: url(../img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
body:after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

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;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--color-primary-dark);
}

.main__btn {
  width: 180px;
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-btn);
  color: #fff;
  border: var(--color-btn);
}
.main__btn:hover {
  color: var(--color-accent);
}
.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;
  }
}

/*  STRUCTURE  */
.header {
  padding: 10px 0;
  position: absolute;
  height: 100px;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  max-width: 200px;
  width: 100%;
}
.logo {
  max-width: 80px;
}
.hero {
  padding: calc(4rem + 80px) 0 4rem;
  position: relative;
  background-image: url(../img/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.hero:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  z-index: -1;
}
.hero__title {
  font-size: 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 1200.98px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480.98px) {
  .hero__title {
    font-size: 1.875rem;
  }
}
.hero__subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.hero__about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1200.98px) {
  .hero__about {
    flex-direction: column;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-green {
  color: green;
}

.text-yellow {
  color: yellow;
}

.text-purple {
  color: purple;
}

.companies {
  padding: 4rem 0;
  position: relative;
}
.companies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  z-index: -1;
}
.companies__title {
  margin-bottom: 1.5rem;
}
.companies__subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
  max-width: 900px;
}
.companies__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.companies__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(46, 3, 30, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media screen and (max-width: 992.98px) {
  .companies__item {
    flex-direction: column;
    max-width: 460px;
    margin: 0 auto;
    gap: 40px;
  }
}
.companies__media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.companies__media-img {
  max-width: 200px;
}
.companies__media-rating {
  display: flex;
  align-items: center;
}
.companies__media-rating span {
  margin-right: 0.5rem;
  font-size: 700px;
  font-size: 2rem;
}
.companies__media-rating svg {
  color: yellow;
}
.companies__media-votes {
  font-size: 14px;
}
.companies__content {
  text-align: center;
}
.companies__content-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  max-width: 480px;
}
@media screen and (max-width: 1200.98px) {
  .companies__content-text {
    font-size: 1.25rem;
  }
}
.companies__content-title {
  font-size: 1.25em;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1200.98px) {
  .companies__content-title {
    font-size: 1.125rem;
  }
}
.companies__content-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  max-width: 300px;
  margin: 0 auto;
}
.companies__disclaimer {
  border-radius: 1rem;
  background-color: rgba(127, 29, 29, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3019607843);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  margin: 2rem auto 0;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  color: var(--color-warning);
  display: flex;
}

.info {
  padding: 4rem 0;
}
.info__inner {
  padding: 2rem;
  background-color: rgba(46, 3, 30, 0.7);
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.info__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768.98px) {
  .info__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768.98px) {
  .info__text {
    font-size: 0.875rem;
  }
}
.info__list {
  margin-bottom: 0.75rem;
}
.info__list li + li {
  margin-top: 0.5rem;
}
.info__list a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
.info__list a:hover {
  color: var(--color-primary);
}
.info__text:not(:last-child) {
  margin-bottom: 1.25em;
}

.responsible {
  padding: 4rem 0;
}
.responsible__content {
  max-width: 900px;
  border-radius: 1rem;
  background-color: rgba(127, 29, 29, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3019607843);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  margin: 0 auto 2rem;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.responsible__content svg {
  flex-shrink: 0;
  color: var(--color-warning);
}
.responsible__content-title {
  margin-bottom: 1rem;
  color: var(--color-warning);
}
.responsible__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.responsible__link {
  max-width: 150px;
  width: 100%;
}
.responsible__link:last-child {
  max-width: 167px;
}

.footer {
  padding: 3rem 0 1rem;
}
.footer__inner {
  display: flex;
  gap: 1.875rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #26408B;
}
@media screen and (max-width: 768.98px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__list {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    text-align: center;
  }
}
.footer__link {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: var(--color-primary);
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__copy {
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--color-primary-dark);
  color: var(--color-primary-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: var(--color-accent);
  color: var(--color-primary-light);
  transition: transform 0.5s ease;
}

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

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

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

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