@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
:root {
  --black: #333333;
  --blue: #0167B0;
}

@keyframes header {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0%);
  }
}
.header {
  color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  transition: 0.2s;
}
.header__logo {
  padding-left: 80px;
  line-height: 0;
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1279.8px) {
  .header__logo {
    flex: 0 0 93px;
    height: 22px;
    padding-left: 0;
  }
}
.header__close {
  width: 30px;
  aspect-ratio: 1/1;
  background: transparent;
  position: absolute;
  z-index: 101;
  right: 20px;
  top: 18px;
  align-items: center;
  justify-content: center;
  display: none;
}
.header__content {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media (max-width: 1279.8px) {
  .header__content {
    gap: 15px;
  }
}
.header__menu-login {
  background: transparent;
  width: 100%;
  height: 44px;
  flex: 0 0 44px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 50px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  display: none;
}
.header__nav-body {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
@media (max-width: 1279.8px) {
  .header__nav-body {
    gap: 15px;
  }
}
.header__login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 110px;
  height: 36px;
  border: 1px solid #FFFFFF;
  background: transparent;
  border-radius: 50px;
}
@media (max-width: 1279.8px) {
  .header__login {
    flex: 0 0 100px;
  }
}
.header__link {
  position: relative;
}
.header__link {
  background: transparent;
}
.header__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  bottom: -5px;
  left: 0;
  transition: 0.2s;
  transform: scale(0, 1);
}
.header__link:hover::before {
  transform: scale(1);
}
@media (max-width: 1023.8px) {
  .header {
    padding: 15px 0;
  }
  .header__content {
    justify-content: flex-start;
    gap: 10px;
    height: 36px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    height: 100vh;
    padding: 66px 20px 20px;
    transition: transform 0.3s;
    background: #FFFFFF;
    color: var(--black);
    font-weight: 800;
    font-size: 20px;
    transform: translate(-100%, 0);
    overflow-y: auto;
  }
  .header__menu-login {
    display: flex;
    font-weight: 400;
  }
  .header__menu-login span {
    color: var(--blue);
  }
  .header__nav-body {
    overflow-y: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .header__nav-body button {
    text-align: left;
    font-weight: inherit;
  }
  .header__nav-body::before {
    content: "";
    flex: 1 1 auto;
  }
  .header__link {
    padding: 10px 0;
    width: 100%;
  }
  .header__link:not(:last-child) {
    border-bottom: 1px solid var(--black) 25;
  }
  .header__link::before {
    display: none;
  }
  .header__close {
    display: flex;
  }
  .header__login {
    position: absolute;
    right: 0;
    width: 110px;
  }
}
@media (max-width: 300px) {
  .header__logo {
    flex: 0 0 83px;
  }
  .header__login {
    width: 90px;
  }
}

.header.fixed {
  position: fixed;
  background: #FFFFFF;
  color: var(--black);
  animation: header 0.2s linear forwards;
}
.header.fixed .header__login {
  color: var(--blue);
  border: 1px solid var(--blue);
}
.header.fixed .header__loginIcon {
  fill: var(--blue);
}
.header.fixed .header__logoIcon {
  fill: var(--blue);
}
.header.fixed .header__link:hover::before {
  background: var(--black);
}
.header.fixed .burger .burger__body {
  width: 25px;
  height: 15px;
}
.header.fixed .burger .burger__body::before {
  background: var(--blue);
}
.header.fixed .burger .burger__body::after {
  background: var(--blue);
}
.header.fixed .burger span {
  background: var(--blue);
}

.burger {
  padding: 7.5px 2.5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.burger__body {
  width: 25px;
  height: 15px;
  position: relative;
  transition: 0.2s;
}
.burger__body::before, .burger__body::after {
  transition: inherit;
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 1px;
  background: #FFFFFF;
}
.burger__body::before {
  top: 0px;
}
.burger__body::after {
  top: 13px;
  width: 15px;
}
.burger span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 25px;
  height: 1px;
  background: #FFFFFF;
  transition: inherit;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.header.menu-open {
  position: fixed;
  pointer-events: none;
}
.header.menu-open .header__close,
.header.menu-open .header__nav,
.header.menu-open .header__logo,
.header.menu-open .burger {
  pointer-events: all;
}
.header.menu-open .burger .burger__body {
  width: 25px;
  height: 15px;
}
.header.menu-open .burger .burger__body::before {
  background: var(--blue);
}
.header.menu-open .burger .burger__body::after {
  background: var(--blue);
}
.header.menu-open .burger span {
  background: var(--blue);
}
.header.menu-open .header__nav {
  transform: translate(0, 0);
}
.header.menu-open .header__logoIcon {
  fill: var(--blue);
}
.header.menu-open .header__login {
  z-index: -9999;
}
.header.menu-open .header__link:hover, .header.menu-open .header__link:active {
  color: var(--blue);
}

@keyframes arrow {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0, 50%);
  }
}
.cover {
  min-height: 100vh;
  min-height: 100svh;
  background: url(../img/main_image.jpg) 50%/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}
.cover__title {
  font-size: 48px;
  font-weight: 800;
}
.cover__text {
  margin-top: 20px;
  max-width: 500px;
  line-height: 1.4;
}
.cover__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 40px;
  background: transparent;
}
.cover__info img {
  margin-top: 14px;
  animation: 0.9s ease-in-out arrow infinite alternate;
}
.cover__send {
  width: 150px;
  height: 36px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #FFFFFF;
  color: var(--black);
}
.cover__send:visited {
  color: var(--black);
}
@media (max-width: 767.8px) {
  .cover {
    background: url(../img/main_image.jpg) 100% 50%/cover no-repeat;
  }
  .cover__text {
    margin-top: 10px;
  }
  .cover__send {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .cover {
    background: url(../img/main_image.jpg) 80% 50%/cover no-repeat;
  }
}
@media (max-width: 400px) {
  .cover {
    background: url(../img/main_image_mobile.jpg) 50%/cover no-repeat;
  }
}
@media (max-height: 380px) {
  .cover__info {
    display: none;
  }
}

.optimization {
  padding: 150px 0;
}
.optimization__body {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.optimization__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  gap: 20px;
}
.optimization__right {
  flex: 0 0 643px;
}
.optimization__text {
  line-height: 1.4;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
  .optimization__body {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1279.8px) {
  .optimization {
    padding: 135px 0;
  }
}
@media (max-width: 1023.8px) {
  .optimization {
    padding: 110px 0;
  }
}
@media (max-width: 767.8px) {
  .optimization {
    padding: 100px 0 11%;
  }
}

.devices img {
  height: 100%;
  width: 100%;
}
.devices__macbook {
  position: relative;
  aspect-ratio: 643/393;
}
.devices__macbook-image {
  position: absolute;
  z-index: -1;
  width: 81.9%;
  height: 86.7%;
  left: 9%;
  top: 2.2%;
}
.devices__iphone {
  position: absolute;
  z-index: 3;
  bottom: -18%;
  right: 11%;
  width: 172px;
  width: 26%;
  aspect-ratio: 172/350;
  transform: rotate(35deg);
}
.devices__iphone-image {
  position: absolute;
  top: 1.8%;
  left: 4.5%;
  width: 90.7%;
  height: 96.1%;
  z-index: -1;
  border-radius: 6%;
  overflow: hidden;
}
.devices__swiper {
  height: 100%;
}
@media (max-width: 1279.8px) {
  .devices {
    flex: 0 0 543px;
  }
}
@media (max-width: 1023.8px) {
  .devices {
    flex: 0 0 443px;
  }
}
@media (max-width: 900px) {
  .devices {
    flex: 1 1 auto;
    margin: 0 -20px;
    overflow-x: clip;
    overflow-y: visible;
  }
}

.arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}
.arrows > button {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrows__arrow_right {
  transform: rotate(180deg);
}
.arrows__info {
  margin-left: 10px;
  font-size: 12px;
}

.service {
  text-align: center;
  padding: 50px 0 90px;
}
.service__info {
  margin-top: 20px;
}
.service__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__image {
  border-radius: 10px;
  overflow: hidden;
}
.service__text {
  display: block;
  margin-top: 10px;
}
.service .arrows {
  display: none;
  margin-top: 36px;
}
.service__slider {
  margin-top: 20px;
  display: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  margin-right: -20px;
}
.service__slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 260/170;
  border-radius: 10px;
}
.service__slider swiper-slide {
  overflow: hidden;
}
.service__slider .service__text {
  display: flex;
  justify-content: center;
}
@media (max-width: 1279.8px) {
  .service {
    padding: 40px 0 80px;
  }
}
@media (max-width: 1023.8px) {
  .service {
    padding: 30px 0 70px;
  }
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.8px) {
  .service {
    padding: 100px 0;
    text-align: left;
  }
  .service__grid {
    display: none;
  }
  .service__slider {
    display: block;
  }
  .service .arrows {
    display: flex;
  }
}

.info {
  padding: 150px 0;
  background: url("../img/info_section_main.jpg") 50%/cover no-repeat;
  color: #FFFFFF;
}
.info__text {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.info__slider {
  display: none;
}
.info .arrows {
  margin-top: 40px;
  display: none;
}
.info .arrows__arrow_left, .info .arrows__arrow_right {
  border: 1px solid #FFFFFF;
}
.info .arrows swiper-container {
  min-width: 0;
  margin-left: 10px;
}
@media (max-width: 1279.8px) {
  .info {
    padding: 120px 0;
  }
}
@media (max-width: 1023.8px) {
  .info {
    padding: 100px 0;
  }
}
@media (max-width: 767.8px) {
  .info {
    padding: 70px 0;
    background: url("../img/info_section_main.jpg") 40% 50%/cover no-repeat;
  }
  .info__text {
    display: none;
  }
  .info__slider {
    display: block;
  }
  .info .arrows {
    display: flex;
  }
}

.tariff {
  padding: 150px 0;
  text-align: center;
}
.tariff img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tariff__info {
  max-width: 740px;
  margin: 20px auto 0;
}
.tariff__flex {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.tariff__item {
  flex: 1 1 33.333%;
  padding: 0 20px;
  background: #F8F9FA;
  border-radius: 10px;
  text-align: left;
}
.tariff__name {
  font-weight: 800;
  font-size: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1098039216);
}
.tariff__service {
  padding-left: 16px;
  margin-top: 20px;
  position: relative;
}
.tariff__service::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 6px;
  left: 0;
  background: var(--blue);
  border-radius: 50%;
}
.tariff__button {
  width: 160px;
  height: 36px;
  margin-top: 40px;
  border-radius: 50px;
  background: var(--blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tariff__image {
  margin-top: 25px;
  aspect-ratio: 313/155;
  display: flex;
  justify-content: center;
}
@media (max-width: 1279.8px) {
  .tariff {
    padding: 120px 0;
  }
}
@media (max-width: 1023.8px) {
  .tariff {
    padding: 100px 0;
  }
}
@media (max-width: 767.8px) {
  .tariff {
    padding: 100px 0 0;
    text-align: left;
  }
  .tariff__flex {
    flex-direction: column;
    gap: 10px;
  }
  .tariff__button {
    height: 40px;
    width: 100%;
    margin-top: 20px;
  }
  .tariff__image {
    margin-top: 40px;
  }
}

.team {
  padding: 50px 0 150px;
}
.team img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team__body {
  display: flex;
  gap: 50px;
}
.team__text {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}
.team__right {
  flex: 0 0 58%;
}
.team__image {
  aspect-ratio: 643/393;
}
@media (max-width: 1279.8px) {
  .team {
    padding: 40px 0 120px;
  }
}
@media (max-width: 1023.8px) {
  .team {
    padding: 30px 0 100px;
  }
  .team__body {
    gap: 20px;
  }
}
@media (max-width: 767.8px) {
  .team {
    padding: 100px 0;
  }
  .team__body {
    flex-direction: column;
    gap: 50px;
  }
}

.system {
  padding: 50px 0 150px;
  overflow: hidden;
}
.system img {
  width: 100%;
  height: 100%;
}
.system__body {
  margin: 0 -20px;
}
.system__pc {
  position: relative;
  max-width: 833px;
  aspect-ratio: 833/640;
  margin: 0 auto;
}
.system__phone {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 21%;
  aspect-ratio: 172/350;
  transform: rotate(30deg);
}
@media (max-width: 1279.8px) {
  .system {
    padding: 40px 0 120px;
  }
}
@media (max-width: 1023.8px) {
  .system {
    padding: 30px 0 100px;
  }
  .system__body {
    padding-right: 18%;
  }
  .system__phone {
    left: 82%;
    bottom: 6%;
    width: 30%;
  }
}
@media (max-width: 767.8px) {
  .system {
    padding: 0;
  }
}

.documents {
  padding: 50px 0 110px;
  text-align: center;
}
.documents__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.documents__document {
  background: #F8F9FA;
  border-radius: 10px;
  flex: 0 0 207px;
  padding: 30px 20px;
}
.documents__name {
  margin-top: 30px;
}
.documents .arrows {
  display: none;
  margin-top: 20px;
}
.documents__slider {
  display: none;
  margin-top: 20px;
}
.documents swiper-slide a {
  display: block;
  background: #F8F9FA;
  border-radius: 10px;
  padding: 30px 20px;
  height: 230px;
}
@media (max-width: 480px) {
  .documents {
    text-align: left;
  }
  .documents .arrows {
    display: flex;
  }
  .documents__slider {
    display: block;
  }
  .documents__flex {
    display: none;
  }
  .documents__flex, .documents__slider {
    text-align: center;
  }
}
@media (max-width: 1279.8px) {
  .documents {
    padding: 40px 0 90px;
  }
}
@media (max-width: 1023.8px) {
  .documents {
    padding: 30px 0 70px;
  }
  .documents__flex {
    margin-top: 20px;
  }
}
@media (max-width: 767.8px) {
  .documents {
    padding: 100px 0 0;
  }
}

.questions {
  padding: 50px 0 150px;
}
.questions__body {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
  grid-template-areas: "title button" "list list";
}
.questions img {
  transition: 0.3s;
}
.questions__title {
  grid-area: title;
  align-self: center;
}
.questions__send-question {
  height: 36px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 50px;
  width: 220px;
  grid-area: button;
}
.questions__items {
  font-weight: 800;
  grid-area: list;
}
.questions__item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1843137255);
  cursor: pointer;
}
.questions__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.questions__answer {
  font-weight: 400;
  max-width: 50%;
  transition: 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.questions__item.open .questions__answer {
  margin-top: 10px;
}
.questions__item.open img {
  transform: rotate(180deg);
}
@media (max-width: 1279.8px) {
  .questions {
    padding: 40px 0 130px;
  }
}
@media (max-width: 1023.8px) {
  .questions {
    padding: 30px 0 110px;
  }
  .questions__answer {
    max-width: 100%;
  }
}
@media (max-width: 1023.8px) {
  .questions {
    padding: 100px 0;
  }
}
@media (max-width: 767.8px) {
  .questions__send-question {
    width: 100%;
    height: 44px;
  }
  .questions__body {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "list" "button";
  }
}

.footer {
  background: var(--blue);
  padding: 40px 0 20px;
  color: #FFFFFF;
}
.footer__up {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.footer__up::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -20px;
  left: 0;
  background: rgba(255, 255, 255, 0.2274509804);
}
.footer__logo {
  width: 109px;
}
.footer__logo-container {
  flex: 1 1 auto;
}
.footer__tel span, .footer__mail span {
  font-size: 20px;
  font-weight: 800;
}
.footer__tel img, .footer__mail img {
  display: none;
}
.footer__down {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__down > span:nth-child(3) {
  flex: 1 1 auto;
}
@media (max-width: 767.8px) {
  .footer {
    padding: 20px 0;
  }
  .footer__up span {
    display: none;
  }
  .footer__up img {
    display: block;
  }
  .footer__down {
    gap: 10px;
    flex-direction: column;
    margin-top: 40px;
  }
  .footer__down > span:nth-child(1) {
    order: 1;
  }
  .footer__down > span:nth-child(2) {
    order: 3;
  }
  .footer__down > span:nth-child(3) {
    order: 2;
  }
  .footer__privacy-policy {
    margin-top: 10px;
    width: -moz-max-content;
    width: max-content;
    order: 4;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6431372549);
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.modal__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal__content {
  flex-direction: column;
  background: #FFFFFF;
  position: relative;
  padding: 30px;
  border-radius: 10px;
  flex: 0 1 560px;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.modal__icon {
  width: 60px;
  height: 60px;
  background: var(--blue);
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__title {
  margin-top: 16px;
}
.modal__text {
  max-width: 400px;
  margin: 10px auto 0;
}
.modal__form {
  max-width: 320px;
  margin: 40px auto 0;
}
.modal__form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__input {
  background: #F8F9FA;
  flex: 0 0 44px;
  padding: 0 20px;
  border-radius: 10px;
}
.modal__input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.2588235294);
}
.modal__input::placeholder {
  color: rgba(51, 51, 51, 0.2588235294);
}
.modal__submit {
  flex: 0 0 44px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #FFFFFF;
}
.modal__input.error {
  border: 1px solid red;
}
@media (max-width: 767.8px) {
  .modal__form {
    margin-top: 20px;
  }
  .modal__content {
    padding: 15px;
  }
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  position: relative;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.4;
}

section .container > div {
  scroll-margin-top: 66px;
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1176px;
  padding: 0 30px;
  margin: auto;
}
@media (max-width: 1023.8px) {
  .container {
    padding: 0 20px;
  }
}

h2, .modal__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 767.8px) {
  h2, .modal__title {
    font-size: 24px;
  }
}

/* Consent Access */
.consent_container {
  position: fixed;
  display: none;
  opacity: 0;
  z-index: 99;
  bottom: 0%;
  width: 100%;
  background: rgba(1, 103, 176, 0.8);
}

.consent_container.block {
  display: block;
}

.consent_content {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: between;
  padding: 1rem 0;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .consent_content {
    display: block;
  }
}

.consent_content a {
  text-decoration: underline;
}

.consent_content_left {
  padding: 0 5rem 0 0;
}

@media (max-width: 640px) {
  .consent_content_left {
    padding: 0.5rem 0;
    text-align: center;
  }
}

.consent_content_right {
  padding: 0 0 0 5rem;
}

@media (max-width: 640px) {
  .consent_content_right {
    padding: 0.5rem 0;
  }
}

.consent_btn_accept {
  display: block;
  padding: 10px 50px;
  border-radius: 50px;
  background: #FFFFFF;
  color: var(--black);
}

@media (max-width: 640px) {
  .consent_btn_accept {
    width: 100%;
  }
}