/* Fonts */
@font-face {
  font-family: "Lab Grotesque";
  font-style: normal;
  font-weight: 300;
  src: local("Lab Grotesque Light"), local("LabGrotesque-Light"), url("../../fonts/LabGrotesque-Light.woff") format("woff");
}
@font-face {
  font-family: "Lab Grotesque";
  font-style: normal;
  font-weight: 400;
  src: local("Lab Grotesque Regular"), local("LabGrotesque-Regular"), url("../../fonts/LabGrotesque-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lab Grotesque";
  font-style: normal;
  font-weight: 500;
  src: local("Lab Grotesque Medium"), local("LabGrotesque-Medium"), url("../../fonts/LabGrotesque-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Lab Grotesque";
  font-style: normal;
  font-weight: 700;
  src: local("Lab Grotesque Bold"), local("LabGrotesque-Bold"), url("../../fonts/LabGrotesque-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Lab Grotesque";
  font-style: normal;
  font-weight: 900;
  src: local("Lab Grotesque Black"), local("LabGrotesque-Black"), url("../../fonts/LabGrotesque-Black.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

html {
  min-width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Lab Grotesque", "Arial", sans-serif;
  width: 100%;
  min-width: 1200px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

main {
  overflow: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

p, input {
  padding: 0;
  margin: 0;
  font-family: inherit;
}

a {
  color: #000;
  text-decoration: none;
  display: block;
}

button {
  font-family: "Lab Grotesque", "Arial", sans-serif;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.button-basic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.3s;
}
.button-basic--red {
  background-color: #fe6818;
}
.button-basic--red:hover {
  background-color: #f55500;
}
.button-basic--red-transparent {
  background-color: trasparent;
  border: 1px solid #fe6818;
  color: #fe6818;
}
.button-basic--red-transparent:hover {
  color: #ff2306;
}
.button-basic--blue {
  background-color: #237CF9;
}
.button-basic--blue:hover {
  background-color: #3886f4;
}

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

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 27px;
  border-bottom: 1px solid #E9E7E6;
}

.header__logo {
  width: auto;
  height: 14px;
  box-sizing: content-box;
  padding-left: 18px;
}

.header__signin {
  line-height: 0;
}

.navigation {
  display: flex;
  align-items: center;
  padding: 53px 0 34px;
  font-family: "Lab Grotesque", "Arial", sans-serif;
}

.navigation__logo-link {
  display: block;
  line-height: 0;
}

.navigation__logo {
  width: 140px;
  height: auto;
}

.show-mobile-menu {
  position: relative;
  width: 37px;
  height: 37px;
  padding: 11px 7px;
  margin-left: auto;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  transition: 0.3s;
  outline: none;
  display: none;
}
.show-mobile-menu::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  box-shadow: 0 6.5px 0 #ffffff;
}
.show-mobile-menu::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: #ffffff;
}
.show-mobile-menu--active::before {
  transition: 0.3s;
  top: 50%;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #ffffff;
}
.show-mobile-menu--active::after {
  transition: 0.3s;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #ffffff;
}

.navigation__contact {
  margin-left: auto;
  line-height: 1;
  color: #1C1C1C;
}
.navigation__contact span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}

.navigation__phone-link {
  font-family: "Lab Grotesque", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1C1C1C;
}

.show-mobile-menu--active + .navigation__list {
  display: grid;
  height: 385px;
  grid-template-columns: repeat(1, 1fr);
  align-self: flex-start;
}

@media (max-width: 0) {
  .show-mobile-menu {
    display: block;
  }
  .header--menu-active {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .header--menu-active .navigation {
    padding: 20px 0 0 0;
  }
  .navigation {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .navigation__logo {
    width: 250px;
  }
  .navigation__list {
    width: 100%;
    flex-direction: column;
    display: none;
  }
  .navigation__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  .navigation__item:last-of-type {
    margin-left: 0;
    border-bottom: none;
  }
  .navigation__link {
    padding: 0;
  }
  .navigation__link:hover {
    padding-left: 5px;
  }
}
.promo {
  position: relative;
  overflow: hidden;
}

.promo__wrapper {
  padding: 30px 80px 30px 80px;
  background-color: #F7F5F3;
  color: #1C1C1C;
  border-radius: 30px;
  z-index: 1;
}

.promo__caption {
  font-size: 16px;
  font-weight: 400;
  color: rgba(28, 28, 28, 0.39);
}

.promo__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 810px;
  margin: 0 auto;
}

.promo__title {
  position: relative;
  margin: 20px 0 0 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  letter-spacing: -0.88px;
}

.promo__desc {
  position: relative;
  width: 820px;
  margin: 20px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}
.promo__desc a,
.subjects__list-link {
  display: inline-block;
  text-underline-offset: 5px;
  text-decoration: underline;
}

.promo__link {
  width: 478px;
  height: 50px;
  margin-top: 30px;
}

.promo__rules {
  width: 100%;
  margin-top: 50px;
  padding: 50px 40px 30px;
  border-radius: 20px 20px 0 0;
  background: #FFF;
  box-shadow: 0 -17px 26.5px 0 rgba(140, 138, 130, 0.08);
}

.promo__rules-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

.promo__rules-link {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #B4B4B4;
}

.subjects {
  margin-top: 33px;
}

.subjects__title {
  width: 860px;
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.subjects__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 800px;
  margin: 0 auto;
  margin-top: 20px;
}

.subjects__list-item {
  position: relative;
  padding-left: 15px;
  font-weight: 400;

  &::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #000000;
    border-radius: 50px;
  }
}

.subjects__list-link {
  line-height: 18px;
}

.documents {
  margin-top: 100px;
  padding: 100px 0;
  background-color: #F7F5F3;
}

.documents__title {
  width: 850px;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}

.documents__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.documents__content {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 50px 80px;
}

.documents__content-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.6px;
}

.documents__table,
.documents__list {
  margin-top: 50px;
}

.documents__table {
  width: 100%;
  border-collapse: collapse;
}
.documents__table th {
  padding: 0 0 10px 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  border-bottom: 1px solid #EFEFEF;
}
.documents__table th:first-of-type {
  padding-left: 0;
  width: 335px;
}
.documents__table th:nth-child(2) {
  width: 315px;
}
.documents__table td {
  padding: 10px 0 10px 50px;
  border-bottom: 1px solid #EFEFEF;
  vertical-align: top;
}
.documents__table td:first-of-type {
  padding-left: 0;
}
.documents__table td p a {
  color: #3D59E8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.documents__table tr:last-of-type td {
  border-bottom: 0;
}

.documents__list {
  display: grid;
  gap: 20px;
}
.documents__list--three-columns {
  grid-template-columns: repeat(3, 1fr);
}
.documents__list--four-columns {
  grid-template-columns: repeat(4, 1fr);
}

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

.document__item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  align-self: flex-start;
  margin-bottom: 20px;
}

.document__item-pic {
  margin-top: auto;
  filter: drop-shadow(0 0 12.9px rgba(0, 0, 0, 0.09));
}

.document__item-link {
  margin-top: 20px;
}

.documents__link-all {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  color: #B4B4B4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.recommendations {
  padding: 100px 0;
}

.recommendations__title {
  width: 850px;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}

.recommendations__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.recommendations__item {
  padding: 20px 40px;
  border-radius: 20px;
  background-color: #F7F5F3;
}

.recommendation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommendation__content {
  width: 605px;
}

.recommendation__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #1C1C1C;
}

.recommendation__desc {
  margin-top: 10px;
  font-size: 16px;
  line-height: 20px;
  color: #1C1C1C;
}

.recommendation__link {
  width: 346px;
}

.access {
  padding: 51px 0;
  color: white;
  background-color: black;
}
.access--bg-white {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  padding: 0;
  background-color: transparent;
  color: #000;
}
.access--bg-white .access__wrapper {
  padding: 22px 51px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 0px 23.1px 0px rgba(0, 0, 0, 0.08);
}
.access--bg-white .permission {
  position: relative;
  left: 20px;
  color: rgba(0, 0, 0, 0.66);
}
.access--bg-white .permission__rules {
  color: rgba(0, 0, 0, 0.66);
}
.access--bg-white .permission__checkmark {
  border: 1px solid #C7C7C7;
  border-radius: 3px;
}

.access__wrapper {
  position: relative;
  border-radius: 10px;
}

.access__title {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
}

.access__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  grid-gap: 0 10px;
  margin-top: 20px;
}

.access__form-label {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.access__form-input {
  height: 50px;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 16px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  transition: 0.2s;
  outline: none;
}
.access__form-input:focus {
  border: 1px solid #000;
}

.access__button {
  width: 100%;
  height: 50px;
  font-size: 18px;
}
.access__button:disabled {
  background-color: #343434;
}

.crmresult {
  width: 640px;
  margin: 20px auto 0;
  font-size: 22px;
  text-align: center;
  display: none;
}

.access__permission {
  margin-top: 20px;
}

.permission {
  position: relative;
  grid-column: 1/5;
  width: 280px;
  margin-left: auto;
  padding-left: 34px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  user-select: none;
}

.permission__label {
  cursor: pointer;
}

.permission__rules {
  display: inline;
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: rgba(255, 255, 255, 0.66);
}

.permission__checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  min-width: 24px;
  min-height: 24px;
  margin-right: 15px;
  background: #FFFFFF;
  border-radius: 3px;
}
.permission__checkmark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: none;
}

input[type=checkbox]:checked + .permission__checkmark:before {
  display: block;
  background: url("../img/icons/icon-checked.svg") no-repeat center;
  background-size: 50%;
}

.footer {
  color: #ffffff;
  background-color: #1f2229;
  border-top: 1px solid #C1C1C1;
}

.footer__wrapper {
  display: flex;
  padding: 50px 0;
  line-height: 16px;
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
}

.footer__copyright-link {
  display: flex;
  flex-direction: column;
  display: inline;
  color: #ffffff;
  text-decoration: underline;
}

.footer__policy {
  display: block;
  margin-top: 10px;
  text-decoration: underline;
  color: #ffffff;
}

.footer__callback {
  margin: 0;
  margin-left: 167px;
  font-size: 13px;
}

.footer__phone {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
}

.footer__logo-link {
  display: flex;
  align-self: flex-start;
  margin-left: auto;
}

.footer__logo {
  width: auto;
  height: 19px;
}

.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  right: 0;
  width: 100%;
  height: 85px;
  z-index: 99;
  animation: showbanner 0.3s 1s forwards;
  display: none;
}

@keyframes showbanner {
  0% {
    bottom: -150px;
  }
  100% {
    bottom: 10px;
  }
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(3, 3, 3, 0.7);
  border-radius: 23px;
}

.cookie-banner__text {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
}

.cookie-banner__permission {
  display: inline-block;
  color: #ffffff;
  text-underline-offset: 4px;
  text-decoration: underline;
}

.cookie-banner__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
  width: 303px;
  height: 60px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffffff;
  color: #000;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 1024px), (max-width: 430px) {
  .cookie-banner {
    width: 98%;
    height: auto;
    margin: 0 auto;
  }
  .cookie-banner__content {
    flex-direction: column;
    width: auto;
    height: 100%;
    gap: 10px;
    margin: 0 auto;
    padding: 15px 10px;
    border-radius: 10px;
  }
  .cookie-banner__text {
    margin: 0;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
  }
  .cookie-banner__button {
    width: 220px;
    height: 40px;
  }
}