@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 100;
  src: local("ProximaNovaT-Thin"), local("Proxima NovaT Thin"), url("../fonts/ProximaNovaT-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 300;
  src: local("ProximaNova-Light"), local("Proxima Nova Light"), url("../fonts/ProximaNova-Light.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 400;
  src: local("ProximaNova-Regular"), local("Proxima Nova Regular"), url("../fonts/ProximaNova-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 600;
  src: local("ProximaNova-Semibold"), local("Proxima Nova Semibold"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 700;
  src: local("ProximaNova-Bold"), local("Proxima Nova Bold"), url("../fonts/ProximaNova-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 800;
  src: local("ProximaNova-Extrabld"), local("Proxima Nova Extrabld"), url("../fonts/ProximaNova-Extrabld.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 900;
  src: local("ProximaNova-Black"), local("Proxima Nova Black"), url("../fonts/ProximaNova-Black.woff2") format("woff2");
}
/*  */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  min-width: 1180px;
  box-sizing: border-box;
  background-color: white;
  scroll-behavior: smooth;
}
@media (max-width: 435px) {
  html {
    min-width: 375px;
  }
}

body {
  position: relative;
  margin: 0;
  font-family: "ProximaNova", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: black;
  background: white;
}

main {
  overflow: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

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

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

a {
  display: block;
  text-decoration: none;
  line-height: 1;
  color: #000000;
}

button {
  padding: 0;
  font-family: inherit;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.button-basic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 21px;
  font-weight: 500;
  color: white;
  border-radius: 3px;
  transition: 0.3s;
}
.button-basic--red {
  background-color: #d0021b;
}
.button-basic--red:hover {
  background-color: #f41e38;
}

.main__content {
  flex: 1;
}

.container {
  width: 1180px;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 435px) {
  .container {
    width: 95%;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 26px;
  border-bottom: 1px solid #D8D8D8;
}

.header__logo {
  padding-left: 18px;
}

.header__signin {
  line-height: 0;
}

.section__hero {
  padding-top: 73px;
  padding-bottom: 165px;
  border: 1px solid #E9E7E6;
  background: url("../img/content/hero-bg.png") no-repeat 78% 100%;
}

.hero__inner {
  display: flex;
  align-items: flex-start;
}

.hero__inner--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  width: 100%;
  padding: 10px 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  display: none;
}
.hero__inner--sticky .hero__nav {
  margin: 0 0 0 auto;
}

.hero__logo {
  line-height: 0;
}

.hero__nav {
  display: flex;
  justify-content: space-between;
  width: 780px;
  margin-left: auto;
  margin-top: 14px;
}

.hero__nav-link {
  position: relative;
  font-size: 16px;
  color: #6e7992;
  transition: 0.3s;
}
.hero__nav-link.active {
  color: #d0021b;
}
.hero__nav-link.active:after {
  display: none;
}
.hero__nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d0021b;
  opacity: 0;
  transition: 0.3s;
}
.hero__nav-link.active:hover {
  color: #d0021b;
}
.hero__nav-link.active:hover:after {
  opacity: 1;
}

.hero__title {
  width: 500px;
  margin-top: 100px;
  font-size: 66px;
  font-weight: 600;
  line-height: 55px;
  color: #d0021b;
}

.hero__desc {
  width: 400px;
  margin-top: 30px;
  font-size: 22px;
  line-height: 28px;
}

@media (max-width: 435px) {
  .section__hero {
    padding-top: 20px;
    padding-bottom: 285px;
    background-size: contain;
    background-position: bottom center;
  }
  .hero__inner {
    flex-direction: column;
  }
  .hero__inner--sticky {
    padding: 10px 5px 0;
  }
  .hero__logo img {
    width: 125px;
    height: 47px;
  }
  .hero__nav {
    width: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 35px;
  }
  .hero__nav-item {
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .hero__nav-link {
    display: inline-block;
    padding: 9px 8px;
    font-size: 14px;
    border: 1px solid #d0021b;
    border-radius: 16px;
  }
  .hero__nav-link:hover {
    background-color: #d0021b;
    color: #ffffff;
  }
  .hero__nav-link:hover:after {
    opacity: 0;
  }
  .hero__title {
    width: auto;
    margin-top: 31px;
    font-size: 38px;
    line-height: 90%;
  }
  .hero__desc {
    width: auto;
    margin-top: 15px;
    font-size: 17px;
    line-height: 130%;
  }
}
.insert__wrapper {
  width: 515px;
  padding-top: 21px;
  padding-bottom: 11px;
}

.insert__desc {
  font-size: 21px;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 600;
  color: #2d3039;
}
.insert__desc span {
  display: block;
}

.insert__line {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}

.insert__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 545px;
}

.insert__list-item {
  text-align: center;
}

.insert__list-pic {
  width: 66px;
  height: 45px;
  object-fit: contain;
}

.insert__list-desc {
  padding-top: 5px;
  font-size: 12px;
  line-height: 1;
  color: #93989c;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 435px) {
  .insert__wrapper {
    width: auto;
  }
  .insert__desc {
    font-size: 20px;
  }
  .insert__list {
    width: auto;
    margin-top: 10px;
  }
  .insert__list-pic {
    width: 40px;
  }
  .insert__list-desc {
    font-size: 10px;
    padding: 0;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 100px;
  width: 100px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 60%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 99;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: url("../../img/L-arrow.svg");
}
[dir=rtl] .slick-prev:before {
  content: url("../../img/R-arrow.svg");
}

.slick-next {
  right: -35px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: url("../../img/R-arrow.svg");
}
[dir=rtl] .slick-next:before {
  content: url("../../img/L-arrow.svg");
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.arguments {
  margin-top: 90px;
  background-color: #f6f6f6;
}
@media (max-width: 435px) {
  .arguments {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}

.arguments__wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
}
@media (max-width: 435px) {
  .arguments__wrapper {
    flex-direction: column;
  }
}

.arguments__list {
  width: 45%;
}
@media (max-width: 435px) {
  .arguments__list {
    width: auto;
  }
}

.argument {
  margin-top: 29px;
  position: relative;
  z-index: 99;
}
.argument:first-child {
  margin-top: 0;
}
@media (max-width: 435px) {
  .argument:first-child.active .argument__desc:after {
    display: none;
  }
}

.argument__badge {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  padding: 5px 9px;
  line-height: 2;
  color: #d0021b;
  border-radius: 3px;
  border: solid 1px #d0021b;
  margin-bottom: 11px;
  cursor: pointer;
}

.argument__desc {
  font-size: 18px;
  line-height: 1.44;
  color: #435466;
  position: relative;
  text-decoration: underline;
}
.argument__desc:hover {
  text-decoration: none;
}
.argument__desc:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  top: 15px;
  right: -50px;
  background-color: #d0021b;
  opacity: 0.5;
  z-index: 99;
  display: none;
}

.argument.active .argument__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
  text-decoration: none;
}
.argument.active .argument__desc:after {
  display: block;
}
.argument.active .argument__badge {
  transition: 0.3s;
  background-color: #d0021b;
  color: #fff;
}

.scroll__list__desc {
  font-size: 18px;
  line-height: 1.67;
  color: #2d3039;
  margin-top: 16px;
  padding-bottom: 14px;
}

.scroll__main__content {
  width: 55%;
  margin-left: 37px;
  display: flex;
}
@media (max-width: 435px) {
  .scroll__main__content {
    display: none;
  }
}

.main__content__list {
  height: 963px;
  overflow: hidden;
}
.main__content__list::-webkit-scrollbar {
  display: none;
}

.content__elem {
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  position: relative;
  transition: 0.4s;
}

.list__elem {
  font-size: 0;
}
.list__elem img {
  max-width: 100%;
}

.main__content__right {
  height: 963px;
  overflow: hidden;
}
.main__content__right img {
  max-width: 100%;
}

.promo {
  position: relative;
  padding: 0 0 72px 0;
  background: #1E1E1E;
  color: #ffffff;
  overflow: hidden;
  z-index: 0;
}
.promo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 176px;
  height: 203px;
  background: center/contain no-repeat url("../img/content/bg-promo-l.svg");
  z-index: -2;
}
.promo::before {
  mix-blend-mode: lighten;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #1E1E1E;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1550px) {
  .promo::after {
    background-size: cover;
  }
}

.promo__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.promo__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 690px;
}

.promo__title {
  position: relative;
  right: 0;
  width: auto;
  margin: 0;
  margin-bottom: 50px;
  line-height: 0;
}
.promo__title img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.promo__desc {
  position: relative;
  width: 600px;
  font-size: 24px;
  line-height: 31px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.promo__note {
  margin-top: auto;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.67);
  display: none;
}

.promo__form-content {
  display: flex;
  flex-direction: column;
  width: 444px;
  margin-top: 64px;
  padding: 40px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 20px;
}

@media (max-width: 435px) {
  .promo {
    padding: 0 0 42px;
  }
  .promo__wrapper {
    flex-direction: column;
  }
  .promo__content {
    width: auto;
    margin: 0;
  }
  .promo__title {
    width: auto;
    right: 0;
  }
  .promo__desc {
    width: auto;
    margin-top: 15px;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 0;
  }
  .promo__note {
    margin-top: 20px;
  }
  .promo__form-content {
    width: auto;
    margin-top: 0;
  }
}
.editors .insert__desc {
  width: 500px;
  font-weight: 600;
}

.editors__info {
  width: 627px;
  margin-top: 25px;
  font-size: 18px;
  line-height: 26px;
}

.editors__list {
  width: 922px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  margin: 70px auto 0;
}

.editor {
  text-align: center;
}

.editor__pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.editor__name,
.editor__position {
  font-size: 17px;
  line-height: 1;
}

.editor__name {
  margin-top: 10px;
}

.editor__position {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 900;
}

.editors__desc {
  width: 1000px;
  margin: 50px auto 10px;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #2D3039;
}

.editors__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 316px;
  height: 45px;
  margin: 26px auto 0;
  font-size: 18px;
  color: #ffffff;
  background-color: #D0021B;
  border-radius: 3px;
}

@media (max-width: 435px) {
  .editors .insert__desc {
    width: auto;
  }
  .editors__info {
    width: auto;
    margin-top: 11px;
    font-size: 16px;
    line-height: 130%;
  }
  .editors__list {
    width: auto;
    margin: 30px auto 0;
    padding-bottom: 20px;
    gap: 15px;
    overflow-y: scroll;
  }
  .editor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
  }
  .editor__name,
  .editor__position {
    font-size: 14px;
    line-height: 1;
  }
  .editor__name {
    margin-top: 10px;
  }
  .editor__position {
    width: 125px;
    margin-top: 5px;
    font-weight: 900;
  }
  .editors__desc {
    width: auto;
    margin: 10px auto 10px;
    font-size: 20px;
    line-height: 130%;
  }
  .editors__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 316px;
    height: 45px;
    margin: 26px auto 0;
    font-size: 18px;
    color: #ffffff;
    background-color: #D0021B;
    border-radius: 3px;
  }
}
.section__advice {
  margin-top: 35px;
}

.advice {
  display: flex;
}
@media (max-width: 435px) {
  .advice {
    flex-direction: column-reverse;
  }
}

.advice__about {
  width: 530px;
  padding-top: 61px;
}
@media (max-width: 435px) {
  .advice__about {
    width: auto;
    margin: 0 auto;
    padding-top: 10px;
  }
}

.advice__about-desc {
  font-size: 18px;
  line-height: 26px;
  color: #2d3039;
}
@media (max-width: 435px) {
  .advice__about-desc {
    text-align: left;
  }
}

.advice__about-title {
  margin: 0;
  margin-top: 30px;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: #d0021b;
}

.advice__about-list {
  margin-top: 10px;
  padding-left: 20px;
}

.advice__about-item {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  list-style-type: disc;
}

.advice__access {
  width: 378px;
  margin-top: 60px;
}
@media (max-width: 435px) {
  .advice__access {
    width: auto;
    margin-top: 330px;
  }
}

.advice__pic {
  position: relative;
  width: 488px;
  margin-left: auto;
  margin-top: 23px;
  line-height: 0;
  filter: drop-shadow(-5.499px -3.928px 17.282px rgba(201, 201, 201, 0.5));
}
@media (max-width: 435px) {
  .advice__pic {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 70px;
  }
}

.experts {
  margin-top: 58px;
}

.experts__header {
  display: flex;
  justify-content: space-between;
}

.experts__header-about {
  width: 665px;
}

.experts__state {
  margin: 0;
  font-size: 30px;
  color: #d0021b;
}

.experts__desc {
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
}

.experts-stat {
  width: 247px;
  text-align: right;
}

.experts-stat__percent {
  font-size: 65px;
  line-height: 0.8;
  color: #d0021b;
}

.experts-stat__desc {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
}

.expert__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  justify-content: space-between;
  width: 1150px;
  margin: 46px auto 0;
}

.about-expert {
  position: relative;
  text-align: center;
}

.about-expert__pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.about-expert__name {
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}
.about-expert__name:hover {
  color: #0278FF;
}

.about-expert__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 540px;
  min-height: 100px;
  margin-top: 37px;
  padding: 20px 15px;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #0278FF;
  box-shadow: 0px 25px 30px rgba(0, 0, 0, 0.17);
  z-index: 99;
  display: none;
}
.about-expert__content::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 28px;
  height: 28px;
  border: 1px solid #0278FF;
  background-size: cover;
}
.about-expert__content::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 33px;
  height: 33px;
  background-color: #ffffff;
  background-size: cover;
}

.about-expert__post {
  font-size: 14px;
  font-weight: 600;
}

.about-expert__info {
  margin-top: 10px;
  font-size: 14px;
  line-height: 26px;
}

.about-expert__rating {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 500;
  color: #009E42;
}

.expert__btn-show {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 35px;
  margin: 40px auto 0;
  font-size: 16px;
  color: #0278FF;
  border: 1px solid #0278FF;
  border-radius: 3px;
  transition: 0.3s;
}
.expert__btn-show:hover {
  color: #3b97ff;
  border-color: #3b97ff;
}

@media (max-width: 435px) {
  .experts {
    margin-top: 40px;
  }
  .experts__header {
    flex-direction: column;
  }
  .experts__header-about {
    width: auto;
  }
  .experts__state {
    margin: 0;
    font-size: 22px;
    line-height: 110%;
  }
  .experts__desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 130%;
  }
  .experts-stat {
    display: flex;
    align-items: center;
    width: auto;
    padding: 10px 20px;
    margin-top: 15px;
    text-align: left;
    border-radius: 10px;
    border: 1px solid #C7C7C7;
    gap: 14px;
  }
  .experts-stat__percent {
    width: 105px;
    font-size: 55px;
  }
  .experts-stat__desc {
    font-size: 13px;
    line-height: 120%;
  }
  .expert__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    justify-content: space-between;
    width: auto;
    margin: 46px auto 0;
    display: none;
  }
  .expert__btn-show {
    display: none;
  }
}
.membership {
  margin-top: 50px;
}

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

.membership__content {
  width: 456px;
}

.membership__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  color: #d0021b;
}

.membership__desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 26px;
}

.membership__access {
  width: 357px;
  margin-top: 30px;
  font-size: 18px;
}

.membership__pic {
  position: relative;
  width: 524px;
}
.membership__pic img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}
.membership__pic::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -110px;
  width: 195px;
  height: 195px;
  background: url("../img/content/membership-access-circle.svg") no-repeat;
  z-index: 1;
}

@media (max-width: 435px) {
  .membership {
    margin-top: 10px;
    padding: 40px 0;
  }
  .membership__wrapper {
    flex-direction: column;
  }
  .membership__content {
    width: auto;
  }
  .membership__title {
    font-size: 22px;
    line-height: 110%;
  }
  .membership__desc {
    width: auto;
    margin-top: 10px;
    font-size: 18px;
    line-height: 130%;
  }
  .membership__note {
    width: auto;
    margin-top: 10px;
    font-size: 16px;
    line-height: 130%;
  }
  .membership__access {
    width: auto;
    margin-top: 30px;
    font-size: 18px;
  }
  .membership__pic {
    width: auto;
    margin-top: 15px;
  }
  .membership__pic img {
    width: 100%;
    height: auto;
  }
  .membership__pic::before {
    display: none;
  }
}
.magazines {
  margin-top: 55px;
  padding-top: 50px;
  background-color: #F6F6F6;
}

.magazines__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  line-height: 0;
}

.magazines__content {
  width: 510px;
}

.magazines__title {
  font-size: 37px;
  font-weight: 700;
  line-height: 120%;
}

.magazines__saving {
  margin-top: 15px;
  font-size: 30px;
  line-height: 120%;
}

.magazines__desc {
  margin-top: 35px;
  font-size: 23px;
  line-height: 120%;
}
.magazines__desc span {
  font-size: 25px;
  font-weight: 600;
}

.magazines__pic {
  position: relative;
  width: 540px;
}
.magazines__pic img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}
.magazines__pic::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -40px;
  width: 195px;
  height: 195px;
  background: url("../img/content/magazine-access-circle.svg") no-repeat;
  z-index: 1;
}

@media (max-width: 435px) {
  .magazines {
    margin-top: 0;
    padding-top: 20px;
  }
  .magazines__wrapper {
    flex-direction: column;
    margin-top: 10px;
    line-height: 0;
  }
  .magazines__content {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    width: auto;
  }
  .magazines__content img {
    width: 80px;
    height: auto;
  }
  .magazines__content .magazines__desc:first-of-type {
    width: calc(100% - 90px);
  }
  .magazines__title {
    font-size: 22px;
    line-height: 110%;
  }
  .magazines__saving {
    margin-top: 7px;
    font-size: 18px;
    line-height: 130%;
  }
  .magazines__desc {
    margin-top: 0;
    font-size: 16px;
    line-height: 130%;
  }
  .magazines__desc span {
    font-size: 16px;
    line-height: 130%;
  }
  .magazines__pic {
    width: auto;
    margin-top: 15px;
  }
  .magazines__pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 115px;
    height: 115px;
    background: url("../img/content/magazine-access-circle.svg") no-repeat;
    z-index: 1;
    background-size: cover;
  }
}
.publications {
  margin-top: 35px;
  padding-bottom: 55px;
}

.publications__title {
  font-size: 30px;
  text-align: center;
  font-weight: 400;
}

.publications__slider {
  display: flex;
  overflow: hidden;
}

.publications__list {
  display: flex;
  margin-top: 25px;
}

.publications__link {
  display: flex;
  height: 168px;
  width: max-content;
}
.publications__link img {
  width: 100%;
  height: 100%;
}

.publications__invite {
  margin-top: 86px;
}

.publications__invite-text {
  font-size: 35px;
  color: #2d3039;
  text-align: center;
  margin-bottom: 20px;
}

.publications__invite-link {
  width: 378px;
  margin: 0 auto;
}
.publications__invite-link:last-of-type {
  margin-top: 15px;
}

@media (max-width: 435px) {
  .publications {
    margin-top: 25px;
    padding-bottom: 40px;
  }
  .publications__title {
    font-size: 18px;
  }
  .publications__slider {
    display: flex;
    overflow: hidden;
  }
  .publications__list {
    display: flex;
    margin-top: 15px;
  }
  .publications__link {
    display: flex;
    height: 168px;
    width: max-content;
  }
  .publications__link img {
    width: 100%;
    height: 100%;
  }
  .publications__invite {
    margin-top: 25px;
  }
  .publications__invite-text {
    width: 80%;
    margin: 40px auto 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
  }
  .publications__invite-link {
    width: auto;
    margin: 0 auto;
    border-radius: 10px;
  }
  .publications__invite-link:last-of-type {
    margin-top: 15px;
  }
}
.legal-framework {
  margin-top: 73px;
  padding: 50px 0;
  background-color: #F6F6F6;
}

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

.legal-framework__content {
  width: 556px;
}

.legal-framework__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  color: #d0021b;
}

.legal-framework__desc {
  width: 504px;
  margin-top: 20px;
  font-size: 25px;
  line-height: 120%;
  font-weight: 600;
}

.legal-framework__note {
  margin-top: 20px;
  font-size: 18px;
  line-height: 26px;
}

.legal-framework__access {
  width: 357px;
  margin-top: 30px;
  font-size: 18px;
}

.legal-framework__pic {
  position: relative;
  width: 524px;
}
.legal-framework__pic img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}
.legal-framework__pic::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 195px;
  height: 195px;
  background: url("../img/content/legal-framework-access-circle.svg") no-repeat;
  z-index: 1;
}

@media (max-width: 435px) {
  .legal-framework {
    margin-top: 0;
    padding: 40px 0;
  }
  .legal-framework__wrapper {
    flex-direction: column;
  }
  .legal-framework__content {
    width: auto;
  }
  .legal-framework__title {
    font-size: 22px;
    line-height: 110%;
  }
  .legal-framework__desc {
    width: auto;
    margin-top: 10px;
    font-size: 18px;
    line-height: 130%;
  }
  .legal-framework__note {
    width: auto;
    margin-top: 10px;
    font-size: 16px;
    line-height: 130%;
  }
  .legal-framework__pic {
    width: auto;
    margin-top: 15px;
  }
  .legal-framework__pic img {
    width: 100%;
    height: auto;
  }
  .legal-framework__pic::before {
    background-size: cover;
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
  }
}
.desktop {
  padding: 50px 0;
}

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

.desktop__content {
  width: 556px;
}

.desktop__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  color: #d0021b;
}

.desktop__desc {
  width: 550px;
  margin-top: 20px;
  font-size: 25px;
  line-height: 120%;
  font-weight: 600;
}

.desktop__note {
  width: 505px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 26px;
}

.desktop__access {
  width: 357px;
  margin-top: 30px;
  font-size: 18px;
}

.desktop__pic {
  position: relative;
  width: 524px;
}
.desktop__pic img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}
.desktop__pic::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 195px;
  height: 195px;
  background: url("../img/content/desktop-access-circle.svg") no-repeat;
  z-index: 1;
}

@media (max-width: 435px) {
  .desktop {
    padding: 40px 0;
  }
  .desktop__wrapper {
    flex-direction: column;
  }
  .desktop__content {
    width: auto;
  }
  .desktop__title {
    font-size: 22px;
    line-height: 110%;
  }
  .desktop__desc {
    width: auto;
    margin-top: 10px;
    font-size: 18px;
    line-height: 130%;
  }
  .desktop__note {
    width: auto;
    margin-top: 10px;
    font-size: 16px;
    line-height: 130%;
  }
  .desktop__access {
    width: 357px;
    margin-top: 30px;
    font-size: 18px;
  }
  .desktop__pic {
    width: auto;
    margin-top: 15px;
  }
  .desktop__pic img {
    width: 100%;
    height: auto;
  }
  .desktop__pic::before {
    display: none;
  }
}
.versions {
  padding-top: 55px;
  padding-bottom: 95px;
}

.versions__title {
  font-size: 37px;
  font-weight: 700;
}

.versions__wrapper {
  margin: 0 -16px;
}

.versions__options {
  margin-top: 30px;
}

.options-table {
  border-spacing: 16px 0;
}
.options-table tr:first-of-type td {
  padding: 10px 0;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.options-table tr:first-of-type td span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 70px;
  margin: 0 10px;
  padding: 15px 5px;
  background-color: #2d2e29;
  border-radius: 5px;
  color: white;
}
.options-table tr:first-of-type td span > span {
  display: inline;
  margin: 0;
  height: auto;
  padding: 0;
  font-size: 19px;
}
.options-table tr:first-of-type td:nth-child(4) {
  border-top: 2px solid #d0021b;
}
.options-table tr:first-of-type td:nth-child(4) span {
  background-color: #d0021b;
}
.options-table tr:not(:first-of-type):nth-child(odd) td {
  background-color: rgba(208, 2, 27, 0.03);
}
.options-table tr:last-of-type td {
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 0 0 10px 10px;
}
.options-table tr:last-of-type td::before {
  display: none;
}
.options-table tr:last-of-type td:nth-child(4) {
  border-bottom: 2px solid #d0021b;
  color: #d0021b;
}
.options-table td {
  width: 222px;
  padding: 14px 20px;
  background-color: #f6f6f6;
}
.options-table td:first-of-type {
  width: auto;
}
.options-table td:nth-child(4) {
  border-left: 2px solid #d0021b;
  border-right: 2px solid #d0021b;
}
.options-table td:not(:first-of-type) {
  text-align: center;
}

.options-table__data {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.options-table__data p {
  position: relative;
  padding-left: 15px;
}
.options-table__data p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #000000;
  border-radius: 50%;
}
.options-table__data--vip {
  background-color: #d0021b;
}
.options-table__data--price {
  font-size: 20px;
}
.options-table__data--price span {
  font-size: 30px;
  font-weight: 700;
}

.versions__note {
  margin-top: 75px;
  font-size: 30px;
  line-height: 130%;
}
.versions__note span {
  font-weight: 700;
  color: #d0021b;
}

.versions__link-wrapper {
  display: flex;
  margin-top: 35px;
}

.versions__link {
  width: 445px;
  height: 50px;
  margin: 0 auto;
  font-weight: 500;
}

.versions__list {
  display: none;
}

@media (max-width: 435px) {
  .versions {
    padding-bottom: 40px;
  }
  .versions__wrapper {
    display: none;
  }
  .versions__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .version {
    padding: 20px;
    background-color: #F6F6F6;
    border-radius: 10px;
  }
  .version__title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 15px 40px;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    font-weight: 700;
    border-radius: 10px;
    color: #fff;
    background-color: #2D2E29;
  }
  .version__title--vip {
    background-color: #D0021B;
  }
  .version__option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
  .version-option {
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
  }
  .version-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: url("../img/icon/icon-check.svg") no-repeat center;
    background-size: cover;
  }
  .version-option__list-about {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
    font-weight: 400;
    margin-top: 10px;
  }
  .version-option__list-about li {
    list-style-type: disc;
  }
  .version__price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    padding: 5px 20px;
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    gap: 10px;
    border-radius: 10px;
    background-color: #F5EFEF;
  }
  .version__price-desc {
    display: block;
    width: 200px;
  }
  .version__price {
    font-size: 30px;
    text-transform: uppercase;
  }
  .version__price span {
    font-size: 20px;
    font-weight: 400;
  }
  .version__price--vip {
    color: #D0021B;
  }
  .versions__note {
    margin-top: 40px;
  }
  .versions__note {
    font-size: 20px;
    text-align: center;
  }
  .versions__note span {
    display: block;
  }
  .versions__link-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .versions__link {
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
  }
}
.section__features {
  background: #f6f6f6;
  padding-top: 47px;
  padding-bottom: 70px;
}
@media (max-width: 435px) {
  .section__features {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features__title {
  font-size: 35px;
  color: #2d3039;
}

.features__desc {
  font-size: 18px;
  color: #000;
  line-height: 1.44;
}

.features__toggle {
  margin-top: 20px;
  display: flex;
  border-radius: 5px;
}

.ability__title {
  font-size: 21px;
  font-weight: 500;
  color: #2d3039;
}

.ability__content {
  display: flex;
  margin: 53px -20px 0;
  flex-wrap: wrap;
}
@media (max-width: 435px) {
  .ability__content {
    margin: 30px 0 0 0;
    gap: 11px;
  }
}

.ability__elem {
  width: calc(50% - 40px);
  display: flex;
  justify-content: space-between;
  background: #fff;
  color: #000;
  padding: 28px 20px 21px 28px;
  border: solid 1px #e9e7e6;
  display: flex;
  margin: 0 20px 33px;
}
.ability__elem:first-child {
  padding-top: 14px;
  padding-bottom: 0;
}
.ability__elem:first-child .ability__pic {
  margin-left: 0;
  margin-right: 10px;
}
@media (max-width: 435px) {
  .ability__elem {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 10px 13px 0;
    border-radius: 10px;
  }
  .ability__elem:first-child {
    line-height: 0;
  }
  .ability__elem .ability__pic {
    max-width: 148px;
    margin-right: 0;
  }
  .ability__elem .ability__pic img {
    width: 100%;
    height: auto;
  }
}

.ability__cap {
  font-size: 22px;
  line-height: 1.23;
  color: #d0021b;
  font-weight: 500;
}
.ability__cap span {
  display: block;
}
@media (max-width: 435px) {
  .ability__cap {
    width: 150px;
    font-size: 16px;
    line-height: 120%;
    font-weight: 600;
  }
}

.ability__text {
  font-size: 16px;
  line-height: 1.38;
  margin-top: 15px;
  font-weight: normal;
  color: #2d3039;
}
.ability__text span {
  display: block;
}
@media (max-width: 435px) {
  .ability__text {
    font-size: 10px;
    line-height: 120%;
    margin-top: 5px;
  }
}

.ability__pic {
  margin-left: 34px;
  font-size: 0;
}
@media (max-width: 435px) {
  .ability__pic {
    width: 150px;
    margin-left: 0;
  }
  .ability__pic img {
    max-width: 100%;
  }
}

.features__access {
  width: 360px;
  margin: 70px auto 0;
}
@media (max-width: 435px) {
  .features__access {
    width: 100%;
    margin: 10px;
    border-radius: 10px;
  }
}

.specialist {
  padding-top: 74px;
  padding-bottom: 67px;
}
.specialist .insert__wrapper {
  width: auto;
}
.specialist .insert {
  display: flex;
  justify-content: space-between;
}
.specialist .insert__desc {
  width: 500px;
}
@media (max-width: 435px) {
  .specialist {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .specialist .insert {
    flex-direction: column;
  }
  .specialist .insert__desc {
    width: auto;
  }
}

.container {
  position: relative;
}

.specialist__wrapper {
  margin-top: 20px;
}
@media (max-width: 435px) {
  .specialist__wrapper {
    display: none;
  }
}

.specialist__header-title {
  width: 535px;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  color: #e50000;
}

.specialist__header-desc {
  width: 627px;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 435px) {
  .specialist__header-desc {
    min-height: auto;
    margin-left: 0;
    margin-top: 14px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 26px;
  }
}

.specialist__list {
  margin-top: 20px;
}

.specialist__list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 435px) {
  .specialist__list-item {
    margin: 0 15px;
  }
}

.specialist__pic {
  width: 158px;
  height: 206px;
  margin: 0 auto;
  object-fit: contain;
}
.specialist__pic--min {
  width: 96px;
  height: 126px;
}
.specialist__pic--min--medium {
  width: 135px;
  height: 180px;
}
@media (max-width: 435px) {
  .specialist__pic--min {
    width: 141px;
    height: 183px;
  }
}

.specialist__name {
  min-width: 161px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.64;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

.specialist__desc {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.specialist__about {
  display: none;
}

.specialist__about-box {
  z-index: 99;
  position: absolute;
  width: 540px;
  transform: translateX(-28%);
  min-height: max-content;
  margin-top: 37px;
  padding: 20px 15px;
  font-size: 15px;
  line-height: 130%;
  background: #FFFFFF;
  border: 1px solid #0278FF;
  box-shadow: 0px 25px 30px rgba(0, 0, 0, 0.17);
}
.specialist__about-box::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 28px;
  height: 28px;
  border: 1px solid #0278FF;
  background-size: cover;
}
.specialist__about-box::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 33px;
  height: 33px;
  background-color: #ffffff;
  background-size: cover;
}

.slick-current {
  transform: scale(1);
}

.section__review {
  background-color: #f6f6f6;
}

.review {
  padding-top: 64px;
  padding-bottom: 84px;
  align-self: center;
}
@media (max-width: 435px) {
  .review {
    padding-top: 10px;
  }
}

.review__title {
  font-size: 35px;
  text-align: center;
}
.review__title span {
  display: block;
}
@media (max-width: 435px) {
  .review__title {
    font-size: 16px;
    line-height: normal;
    text-align: left;
  }
}

.review__desc {
  font-size: 18px;
  text-align: center;
  color: #979797;
  margin: 30px 0;
}
.review__desc span {
  display: block;
}
@media (max-width: 435px) {
  .review__desc {
    margin: 20px 0 0 0;
    font-size: 16px;
    line-height: normal;
    text-align: left;
  }
  .review__desc span {
    display: inline-block;
  }
}

.review__list {
  width: 994px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 435px) {
  .review__list {
    width: auto;
    flex-wrap: wrap;
    margin: 0;
  }
}

.review__list-item {
  border: 1px solid #e3dfdd;
  border-radius: 3px;
  padding: 13px 27px 20px 14px;
  margin: 10px;
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  display: none;
}
.review__list-item.showReview {
  display: flex;
}
.review__list-item.firstReview {
  display: flex;
}
.review__list-item.active {
  display: flex;
}
@media (max-width: 435px) {
  .review__list-item {
    width: 100%;
    margin: 10px 0;
    padding: 12px 14px 20px 14px;
  }
}

.user-review__wrapper {
  display: flex;
  align-items: center;
  color: #2d3039;
}

.user-review__pic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 7px;
}

.user-review__name {
  font-size: 15px;
}

.user-review__rating {
  position: relative;
  min-width: 115px;
  margin-left: auto;
  padding-left: 30px;
  font-size: 24px;
  text-align: right;
}
.user-review__rating::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  left: 0;
  width: 25px;
  height: 25px;
  background: url("../img/icon/icon-star.png") no-repeat center;
  background-size: contain;
}

@media (max-width: 435px) {
  .rating__score {
    font-size: 18px;
  }
}

.user-review__message {
  flex: 1;
  margin-top: 24px;
  margin-bottom: 13px;
  min-height: 100px;
  font-size: 16px;
  line-height: 1.25;
  opacity: 0.8;
}
@media (max-width: 435px) {
  .user-review__message {
    font-size: 14px;
  }
}

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

.social__icon {
  width: 22px;
  height: 22px;
}

.comment__time {
  display: none;
  font-size: 14px;
  color: #2d3039;
}

.review__btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn__link {
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 3px;
  border: 1px solid #808080;
}

.access {
  color: white;
  padding-top: 45px;
}

.access__wrapper {
  position: relative;
  padding: 0;
  background-color: #ffffff;
  border-radius: 10px;
  color: #474d5e;
}
@media (max-width: 1260px) {
  .access__wrapper .access__wrapper {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 8px;
  }
  .access__wrapper .access__wrapper:before, .access__wrapper .access__wrapper:after {
    display: none;
  }
  .access__wrapper .access__wrapper--light {
    padding-bottom: 65px;
    color: #474d5e;
    background-color: #F9F9F9;
  }
}

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

.access__title {
  width: auto;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}

.access-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  grid-gap: 10px;
  margin-top: 20px;
  margin-left: 0;
}
.access-form--promo {
  grid-template-columns: repeat(1, 1fr);
  margin-top: 0;
  border-radius: 20px;
}
.access-form--promo .access__button {
  width: auto;
  height: 46px;
  background-color: #ED614E;
}
.access-form--promo .access-form-title,
.access-form--promo .permission {
  grid-column: 1/1;
  width: auto;
}
.access-form--promo .access-form-title {
  font-size: 30px;
}
.access-form--promo .access-form-desc {
  font-size: 16px;
  line-height: 20px;
}

.access-form__label {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #474D5E;
}

.access-form__input {
  height: 60px;
  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: 280px;
  height: 60px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
}
.access__button:disabled {
  background-color: #343434;
}
.access__button:disabled:hover {
  cursor: no-drop;
}

.permission {
  position: relative;
  grid-column: 1/5;
  width: 280px;
  margin-left: auto;
  padding-left: 34px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 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(0, 0, 0, 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: 1px solid #c7c7c7;
  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/icon/icon-checked.svg") no-repeat center;
  background-size: 50%;
}

.access--short {
  margin-bottom: 60px;
}
.access--short .access__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 55px 58px;
  background-color: #F6F6F6;
  border-radius: 20px;
  border: none;
}
.access--short .access__wrapper .access__title {
  width: 435px;
  font-size: 25px;
  font-weight: 400;
  text-align: left;
}
.access--short .access__wrapper .access__title span {
  font-size: 30px;
  font-weight: 700;
}
.access--short .access__wrapper .access-form {
  grid-template-columns: repeat(1, 1fr);
  width: 558px;
  padding: 57px 70px;
  background-color: #ffffff;
  border-radius: 10px;
  gap: 15px;
}
.access--short .access__wrapper .access-form__input {
  margin-top: 0;
  height: 50px;
}
.access--short .access__wrapper .permission {
  width: auto;
  grid-column: 1/1;
}
.access--short .access__wrapper .access__button {
  width: 100%;
}

@media (max-width: 435px) {
  .access {
    padding-top: 20px;
  }
  .access__title {
    font-size: 25px;
  }
  .access-form {
    grid-template-columns: repeat(1, 1fr);
  }
  .access__permission {
    width: auto;
    grid-column: 1/1;
  }
  .access-form__input {
    width: 100%;
  }
  .access__button {
    width: 100%;
    margin-top: 20px;
  }
  .access--promo {
    position: static;
  }
  .access--short .access__wrapper {
    flex-direction: column;
    padding: 30px 10px;
  }
  .access--short .access__wrapper .access-form {
    width: auto;
    padding: 10px 5px;
  }
  .access--short .access__wrapper .access__title {
    width: auto;
  }
  .crmresult {
    width: auto;
  }
}
.footer {
  background-color: #424040;
  padding: 47px 0 77px 0;
  color: #ffffff;
}

.footer__wrapper {
  display: flex;
  align-items: flex-start;
  line-height: 16px;
}

.footer__copyrights {
  width: 440px;
  font-size: 13px;
}

.terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.terms__link {
  text-decoration: underline;
  color: #ffffff;
}

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

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

.footer__logo {
  margin-left: auto;
}

.rights__link {
  display: inline;
  text-decoration: underline;
  color: #ffffff;
}

@media (max-width: 435px) {
  .footer {
    padding: 37px 0 42px;
  }
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__copyrights {
    width: 100%;
    align-items: center;
  }
  .terms {
    flex-direction: column;
  }
  .footer__callback {
    margin-left: 0;
    margin-top: 15px;
  }
  .footer__logo {
    margin-left: 0;
    margin-top: 20px;
  }
}
.section__banner {
  padding: 50px 0;
}
.section__banner .container {
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}
.section__banner .container .banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 900px;
  height: 300px;
}
.section__banner .container .banner img {
  max-width: 100%;
  min-width: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  right: 0;
  width: 100%;
  height: 126px;
  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.4);
  border-radius: 23px;
}

.cookie-banner__text {
  font-size: 18px;
  line-height: 22px;
  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: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .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;
  }
}