/* GLOBE */

@font-face {
  font-family: Jost;
  src: local("Jost Light"),
    url("/fonts/Jost-Light.woff2") format("woff2"),
    url("/fonts/Jost-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: local("Jost Medium"),
    url("/fonts/Jost-Medium.woff2") format("woff2"),
    url("/fonts/Jost-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: local("Jost SemiBold"),
    url("/fonts/Jost-SemiBold.woff2") format("woff2"),
    url("/fonts/Jost-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: local("Jost Regular"),
    url("/fonts/Jost-Regular.woff2") format("woff2"),
    url("/fonts/Jost-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: local("Jost Bold"),
    url("/fonts/Jost-Bold.woff2") format("woff2"),
    url("/fonts/Jost-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat Italic"),
    url("/fonts/Montserrat-Italic.woff2") format("woff2"),
    url("/fonts/Montserrat-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat Medium"),
    url("/fonts/Montserrat-Medium.woff2") format("woff2"),
    url("/fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat Light Italic"),
    url("/fonts/Montserrat-LightItalic.woff2") format("woff2"),
    url("/fonts/Montserrat-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: local("Montserrat Regular"),
    url("/fonts/Montserrat-Regular.woff2") format("woff2"),
    url("/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: local("Manrope Medium"),
    url("/fonts/Manrope-Medium.woff2") format("woff2"),
    url("/fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: local("Manrope ExtraBold"),
    url("/fonts/Manrope-ExtraBold.woff2") format("woff2"),
    url("/fonts/Manrope-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: local("Manrope Regular"),
    url("/fonts/Manrope-Regular.woff2") format("woff2"),
    url("/fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: DaysOne;
  src: local("DaysOne Regular"),
    url("/fonts/DaysOne-Regular.woff2") format("woff2"),
    url("/fonts/DaysOne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Jost", sans-serif;
  box-sizing: border-box;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: none;
}

img {
  max-width: 100%;
}

button:focus-visible {
  outline: none;
  border: none;
}

.flex {
  display: flex;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}

.container {
  max-width: 1300px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 50px;
}

input:focus-visible {
  outline: none;
}

/*preloader*/

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

.preloader__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 45%;
}

.preloader__img {
  animation: preloader-bounce 1s infinite linear;
  width: 8%;
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0.95);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}

/* HERO */

.hero {
  background-repeat: no-repeat;
  background-size: 100% 75%;
  background-position: top;
  background-image: url("/images/hero-bg-2.png");
  padding: 210px 0 40px;
}

.hero-container {
  flex-direction: column;
  align-items: center;
}

.main__subtitle {
  font-family: "DaysOne", sans-serif;
  font-size: 42px;
  font-weight: 400;
  margin: 10px;
}

.main__title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
}

.main__descr {
  margin-bottom: 72px;
  max-width: 42%;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}

.main__btn {
  margin-bottom: 81px;
  padding: 15px 5px;
  border-radius: 6px;
  background-color: #537AB2;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-image: url('/images/btn-gradient.png');
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-family: Jost;
  font-weight: 600;
  transition: background-color .3s ease-in-out;
}

.main__btn:hover:not(:focus-visible) {
  background-color: #18345a;
}

.cards-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  border: 1px solid #eeeeee;
  background: #fffefe;
  border-radius: 6px;
  box-shadow: 1px 2px 2px rgb(0, 0, 0, 0.25);
  width: 180px;
}

.card__pic {
  width: 50px;
  height: 50px;
  margin: 15px;
}

.card__title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
}

.card__descr {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: #000;
}

/* ABOUT */

.about {
  padding-top: 40px;
}

.about-container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.info {
  margin-bottom: 50px;
  width: 100%;
}

.about__title {
  margin-bottom: 28px;
  max-width: 70%;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
}

.about__descr {
  max-width: 75%;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.9px;
  color: #000;
}

.about__descr:nth-child(2) {
  margin-bottom: 18px;
}

.dop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.about__subtitle {
  margin-bottom: 6px;
  color: #537AB2;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  border-bottom: 2px solid #537AB2;
}

.about__subdescr {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #000;
}

.about__pic {
  min-width: 600px;
  transform: translateY(-50px);
}

.about__descr_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #000;
}

.about__pic_mob {
  display: none;
}

.img-wrapper-mob {
  display: none;
}

/* STEPS */

.steps {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center -270px;
  background-image: url('/images/steps-bg.png');
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps__title {
  position: relative;
  margin-bottom: 219px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.steps__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 2px;
  background-color: #537AB2;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

.steps__list {
  width: 100%;
}

.steps__list_first {
  display: flex;
  justify-content: space-between;
  margin-bottom: 132px;
  width: 100%;
}

.steps__list_second {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
}

.steps__item {
  position: relative;
  width: calc(100% / 4);
}

.steps__num, .steps__num_round {
  position: relative;
  padding: 8px 12px;
  max-width: max-content;
  background-color: #537AB2;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 20px;
}

.steps__num::after {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #537AB2;
  width: 280px;
  top: 50%;
}

.steps__num_last::after {
  display: none;
}

.steps__subdescr {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #000;
}

.steps__btn {
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #537AB2;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-image: url('/images/btn-gradient.png');
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  transition: background-color .3s ease-in-out;
}

.steps__btn:hover:not(:focus-visible) {
  background-color: #18345a;
}

.steps__pic {
  align-self: flex-end;
  transform: translate(0px, -30px);
}

.steps__list_mob {
  display: none;
}

.steps-radius {
  position: absolute;
  right: 133px;
  top: 20px;
  height: 263px;
}

/* GEOGRAPHY */

.geography {
  background: #f9f9f9;
  position: relative;
  padding-bottom: 45px;
}

.geography__title {
  position: relative;
  margin-bottom: 85px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.geography__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 2px;
  background-color: #537AB2;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

.geography-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.geography__pic_map {
  margin-right: 9px;
}

.geography__list {
  display: flex;
  flex-direction: column;
}
.geography__item {
  display: flex;
  padding: 10px;
  flex-direction: row;
  border: 1px solid #eeeeee;
  background: #fffefe;
  border-radius: 6px;
  box-shadow: 1px 2px 2px rgb(0, 0, 0, 0.25);
}

.geography__item:not(:last-child) {
  margin-bottom: 20px;
}

.geography__subtitle {
  font-size: 21px;
  font-weight: 400;
  text-align: left;
  color: #000000;
  margin-left: 20px;
}

.geography__pic {
  width: 120px;
  height: 120px;
}

.geography__item > div {
  display: flex;
  flex-direction: column;
}

.geography__subdescr {
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  display: block;
  position: relative;
  margin-left: 40px;
}

.geography__subdescr::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../images/tick.svg);
  top: 5px;
  left: -30px;
}

.edge {
  position: absolute;
  top: -71%;
  width: 100%;
  align-content: center;
  z-index: -1;
}

.form-geo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 41px 27px;
  width: 100%;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);

}

.form__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.geo-form-wrapper {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.geo-form__input {
  padding: 16px;
  width: 210px;
  border-radius: 4px;
  border: 1px solid #B0A5A5;
}

.geo-form__input::placeholder {
  font-style: italic;
  color: rgba(0, 0, 0, 0.38);
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
  letter-spacing: 0.1px;
}

.form-geo__btn {
  padding: 12px 26px;
  border-radius: 6px;
  background-color: #537AB2;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-image: url('/images/btn-gradient.png');
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  font-size: 18px;
  font-weight: 500;
  transition: background-color .3s ease-in-out;
}

.form-geo__btn:hover:not(:focus-visible) {
  background-color: #18345a;
}

.geo-form__descr {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #000;
}

/* ADVANTAGES */

.advantages {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/images/advantages-bg.png');
  position: relative;
  padding-top: 45px;
  padding-bottom: 32px;
}

.advantages__title {
  position: relative;
  margin-bottom: 85px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.advantages__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 2px;
  background-color: #537AB2;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

.advantages__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.advantages__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  width: calc((100% / 3) - 50px);
}

.advantages__item br {
  display: none;
}

.advantages__item:nth-child(3n) {
  margin-right: 0;
}

.advantages__item:nth-child(7n) {
  margin-bottom: 0;
}

.advantages__item:nth-child(8n) {
  margin-bottom: 0;
}

.advantages__item:nth-child(9n) {
  margin-bottom: 0;
}

.advantages__descr {
  color: #000;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.advantages__pic {
  margin-right: 15px;
  width: 60px;
  height: 60px;
}

/* CLIENTS */

.clients {
  padding-top: 32px;
  padding-bottom: 45px;
  background: linear-gradient(#F9F9F9, #FFFFFF);
}

.clients__title {
  position: relative;
  margin-bottom: 71px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.clients__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 2px;
  background-color: #537AB2;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}


.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.clients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 195px 30px 40px;
  width: calc((100% / 3) - 24px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  margin-bottom: 20px;
}

.clients__subtitle {
  margin-bottom: 20px;
  color: #537AB2;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.clients__subdescr {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #686868;
}

.clients-bg-1 {
  background-image: url('/images/clients-bg-1.png');
}

.clients-bg-2 {
  background-image: url('/images/clients-bg-2.png');
}

.clients-bg-3 {
  background-image: url('/images/clients-bg-3.png');
}

.clients-bg-4 {
  background-image: url('/images/clients-bg-4.png');
}

.clients-bg-5 {
  background-image: url('/images/clients-bg-5.png');
}

.clients-bg-6 {
  background-image: url('/images/clients-bg-6.png');
}

.clients__subtitle {
  color: #537AB2;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.clients__subdescr {
  color: #686868;
  text-align: center;
  font-size: 18px;
  font-family: Jost;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* CUSTOMERS */

.customers {
  padding: 45px 0;
}

.customers-container {
  position: relative;
}

.customers__title {
  position: relative;
  margin-bottom: 68px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.customers__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 2px;
  background-color: #537AB2;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

.swiper-button-prev {
  width: 60px;
  height: 60px;
  left: -28px;
  top: 200px;
  background-color: #E0E3EB;
  border-radius: 50%;
  transition: background-color .3s ease-in-out;
}

.swiper-button-prev:hover:not(:focus-visible) {
  background-color: #989898;
}

.swiper-button-next {
  width: 60px;
  height: 60px;
  right: -10px;
  top: 200px;
  background-color: #537AB2;
  border-radius: 50%;
  transition: background-color .3s ease-in-out;
}

.swiper-button-next:hover:not(:focus-visible) {
  background-color: #18345a;
}

.swiper-button-prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.swiper-button-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.galery-button-prev {
  display: none;
}

.galery-button-next {
  display: none;
}

/* GALERY */

.galery {
  padding-top: 45px;
  padding-bottom: 60px;
}

.galery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.galery__title {
  position: relative;
  margin-bottom: 90px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.galery__title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  height: 2px;
  background-color: #537AB2;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

.galery-swiper {
  margin-bottom: 25px;
  overflow: hidden;
}

.galery__slide {
  display: flex;
  justify-content: center;
  max-width: max-content;
}

.galery-pagination {
  display: flex;
  justify-content: center;
}

.galery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #e0e2eb;
}

.galery-pagination .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background-color: #3c4563;
}

/* CONTACTS */

.contacts {
  padding-top: 63px;

}

.contacts-container {
  padding-bottom: 143px;
  display: flex;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: 780px 400px;
  background-position: -75px 200px;
  background-image: url('/images/contacts-bg.png');
}

.contacts__title {
  position: relative;
  margin-bottom: 40px;
  font-size: 32px;
  font-family: Jost;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1.6px;
  color: #000;
}

.contacts__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 300px;
  height: 2px;
  background-color: #537AB2;
}

.contacts__descr {
  margin-bottom: 47px;
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}

.contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contacts-pic {
  margin-right: 20px;
}

.contacts-pic-tel {
  transform: translateX(-2px);
}

.contacts__link_tel {
  font-family: 'Manrope';
  font-size: 20px;
  font-weight: 800;
  color: #0A0A0A;
}

.contacts__link_mail {
  font-size: 16px;
  font-family: 'Manrope';
  font-weight: 500;
  opacity: 0.7;
  color: #0A0A0A;
}

.contacts-socials {
  display: flex;
}

.socials__link:not(:last-child) {
  margin-right: 10px;
}

.mb-30 {
  margin-bottom: 30px;
}

.contacts__form {
  display: flex;
  flex-direction: column;
  transform: translateY(60px);
}

.contacts__input {
  margin-bottom: 20px;
  padding: 20px;
  width: 460px;
  border-radius: 6px;
  border: 1px solid #AAA;
  background: #FFF;
}

.contacts__input::placeholder, .contacts__textarea::placeholder {
  color: #989898;
  font-size: 16px;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.contacts__textarea {
  margin-bottom: 20px;
  padding: 20px;
  max-height: 160px;
  border-radius: 6px;
  border: 1px solid #AAA;
  background: #FFF;
  resize: none;
}

.contacts__btn {
  margin-bottom: 10px;
  align-self: flex-start;
  padding: 16px 55px;
  border-radius: 6px;
  background-color: #537AB2;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-image: url('/images/btn-gradient.png');
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #FFF;
  transition: background-color .3s ease-in-out;
}

.contacts__btn:hover:not(:focus-visible) {
  background-color: #18345a;
}

.contacts-form__agreement {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: #000;
}

/* FOOTER */

.footer {
  padding-top: 57px;
  padding-bottom: 77px;
  background-color: #F0F0F0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer__text {
  font-size: 16px;
  font-family: Jost;
  font-weight: 300;
  line-height: 160%;
  opacity: 0.7;
  color: #0A0A0A;
}

.address {
  font-style: normal;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content:flex-end;
  margin-bottom: 48px;
}

.footer-contacts {
  margin-right: 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__link_tel {
  font-size: 20px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: #0A0A0A;
}

.footer__link_mail {
  font-size: 16px;
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.7;
  color: #0A0A0A;
}

.footer__btn {
  padding: 15px 60px;
  border-radius: 6px;
  background-color: #537AB2;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-image: url('/images/btn-gradient.png');
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  font-size: 20px;
  font-weight: 600;
  transition: background-color .3s ease-in-out;
}

.footer__btn:hover:not(:focus-visible) {
  background-color: #18345a;
}

.footer__agreement {
  color: var(--black, #0A0A0A);
  text-align: right;
  opacity: 0.6;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

/*SHADOW*/

.stop-scroll {
  overflow: hidden;
}

.shadow {
  z-index: 115;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.shadow--active {
  display: block;
}

/* POPUP */

.popup {
  z-index: 120;
  padding: 50px;
  position: fixed;
  top: 0;
  right: 0;
  width: 30vw;
  height: 100vh;
  background-color: #fff;
  transform: translateX(200vw);
  transition: transform .3s ease-in-out;
}

.popup--active {
  transform: translateX(0);
}

.popup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.popup__title {
  margin-bottom: 30px;
  color: #000;
  text-align: center;
  font-size: 32px;
  font-family: Jost;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

.popup__input {
  margin-bottom: 20px;
  padding: 20px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #AAA;
  background: #FFF;
}

.popup__btn {
  margin-bottom: 20px;
  padding: 12px 56px;
  background-color: #537AB2;
  border-radius: 6px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-family: Jost;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.popup__conscent {
  color: #000;
  font-size: 14px;
  font-family: Jost;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}

.popup__btn_close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
}

.popup__close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 0.7;
}

.popup__close-line:first-child {
  transform: rotate(45deg);
}

.popup__close-line:last-child {
  transform: rotate(-45deg);
}
