/* U T I L S */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,100&display=swap');

:root {
  --main-site-color: #ffffff;
  --second-site-color: #4280F8;
  --main-text-color: #000000;
  --main-item-color: #e1eafc;
}

* {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.wrapper {
  width: 1260px;
  margin: 0 auto;
}

p {
  color: var(--main-text-color);
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

h1 {
  color: var(--main-text-color);
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 82px;
  line-height: 90%;
  opacity: 0;
  transform: translateY(-100px);
}

.h1 {
  color: var(--main-text-color);
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 82px;
  line-height: 90%;
}

.h1 span {
  color: var(--second-site-color);
}

body.ready h1 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s cubic-bezier(0.0,0.0,0.2,1) .5s, transform .75s cubic-bezier(0.0,0.0,0.2,1) .5s;
}

h2 {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  margin: 0 0 100px 0;
  position: relative;
  padding-left: 16px;
}

h2 span {
  background-color: var(--second-site-color);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  left: 0;
}

h2 span.runAction {
  height: 34px;
  border-radius: 6px;
  top: 5px;
  transition: top .5s cubic-bezier(0.0,0.0,0.2,1) .25s, border-radius .5s cubic-bezier(0.0,0.0,0.2,1) .25s, height .5s cubic-bezier(0.0,0.0,0.2,1) .25s;
}

.heading__block {
  background: var(--main-site-color);
  color: var(--main-text-color);
  box-shadow: 0 -5px 100px rgba(66, 128, 248, 0.2);
  border-radius: 40px;
  padding: 40px 105px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
}

.image-container {
  width: 166px;
  height: 166px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 32px;
}

input[type="text"] {
  background: #E1EAFC;
  border-radius: 15px;
  width: 480px;
  height: 80px;
  padding-left: 20px;
  border: none;
  margin-left: 40px;
}

label {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 90%;
  display: block;
  margin: 0 0 8px 10px;
}

input[type="text"]:focus {
  border: none;
  outline: 1px solid var(--second-site-color);
}

button {
  background: var(--main-site-color);
  color: var(--main-text-color);
  outline: 1px solid var(--second-site-color);
  border-radius: 15px;
  width: 260px;
  height: 70px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 90%;
  border: none;
  cursor: pointer;
  transition: filter .5s cubic-bezier(0.4,0.0,1,1), color .3s ease, background-color .3s ease;

}

button:hover {
  color: var(--main-site-color);
  background-color: var(--second-site-color);
  transition: color .3s ease, background-color .3s ease;
}

button:active {
  color: #2b5dbd;
}

button:disabled {
  filter: grayscale(10);
  opacity: 1;
  transition: filter .5s cubic-bezier(0.0,0.0,0.2,1);
}

button:hover:disabled {
  filter: grayscale(10);
  background-color: #fff;
  color: #000;
  opacity: 1;
  transition: filter .5s cubic-bezier(0.0,0.0,0.2,1);
}

.wrapMap {
  position:relative;
  overflow:hidden;
  top: -100px;
}

.moreBtn {
  background: var(--main-site-color);
  color: var(--main-text-color);
  border-radius: 15px;
  width: 467px;
  margin: 77px auto 0;
  display: block;
  position: relative;
  transition: color .15s cubic-bezier(0.4,0.0,1,1), background-color .15s cubic-bezier(0.4,0.0,1,1);
}

.moreBtn:hover {
  color: var(--main-site-color);
  background-color: var(--second-site-color);
  transition: color .25s cubic-bezier(0.0,0.0,0.2,1), background-color .25s cubic-bezier(0.0,0.0,0.2,1);
}

.moreBtn::before,
.moreBtn::after {
  background-color: #D7E6FC;
  position: absolute;
  content:'';
  top: 33px;
  width: 340px;
  height: 5px;
  border-radius: 31px;
}

.moreBtn::before {
  left: -370px;
}

.moreBtn::after {
  right: -370px;
}

.humburger {
  display: none;
}

/* H E A D E R */
header.header {
  background: url("../img/background-01.png") no-repeat center center;
}

.up-header {
  transition: transform .35s cubic-bezier(0.0,0.0,0.2,1);
}

.hiden {
  transform: translateY(-97px);
  transition: transform .35s cubic-bezier(0.0,0.0,0.2,1);
}

.up-header.fixed {
  background: rgba(255,255,255,.95);
  position: fixed;
  width: 100%;
  z-index: 9997;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.0,0.0,0.2,1);
  box-shadow: 0 0 25px rgba(66, 128, 248, 0.15);

}

.header__upper {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

.header__upper_logo {
  position: relative;
  padding-left: 31px;
}

.header__upper_logo::after {
  background-color: var(--second-site-color);
  position: absolute;
  content: '';
  right: -20px;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: -1;
}

body.ready .header__upper_logo::after {
  transform: translateX(-237px);
  transition: transform .5s cubic-bezier(0.0,0.0,0.2,1) .25s;
}

.header__upper_phones a {
  color: var(--second-site-color);
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-decoration: none;
}

.header__upper_phones a svg {
  position: relative;top:2px;
}

.header__upper_phones a:last-child {
  font-weight: 700;
  margin-left: 44px;
}

nav.navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px 0 20px 0;
}

.navigation__menu {
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.navigation__menu_item {
  list-style-type: none;
}

.navigation__menu_item:hover a {
  color: var(--second-site-color);
  transition: opacity .35s cubic-bezier(0.0,0.0,0.2,1);
}

.navigation__menu_item a {
  color: var(--main-text-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.1px;
  transition: opacity .25s cubic-bezier(0.4,0.0,1,1);
}

.mobileMenu {
  width: 100vw;
  height: 100vh;
  background: var(--main-site-color);
  left:0;
  top:0;
  display: none;
}

/* G A R A N T */
.garant {
  display: flex;
  transition: .35s cubic-bezier(0.0,0.0,0.2,1);
  padding-top: 40px;
}

.header .garant  {
  position: relative;
  padding-bottom: 40px;
}

.header .garant::after {
  content: '';
  display: block;
  width: 100%;
  height: 150px;
  background: url("../img/background-01-1.png") no-repeat center center;
  background-position-y: 12%;
  position: absolute;
  bottom: 0;
}

.garant__header {
  display: flex;
}

.garant__header > * {
  width: 50%;
}

.garant__header h1 {
  margin-top: 4px;
  margin-bottom: 0;
}

.garant__header h2 {
  padding-left: 25px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(-100px);
}

body.ready .header h2 {
  transition: opacity .5s cubic-bezier(0.0,0.0,0.2,1) .25s, transform .5s cubic-bezier(0.0,0.0,0.2,1) .25s;
  transform: translateX(0);
  opacity: 1;
}

body.ready .header h2 span {
  height: 34px;
  border-radius: 5px;
  transition: height .5s cubic-bezier(0.0,0.0,0.2,1) .5s, transform .5s cubic-bezier(0.0,0.0,0.2,1) 1s, border .5s cubic-bezier(0.0,0.0,0.2,1) .5s;
}

.garant__header h1 span {
  color: var(--second-site-color);
}

.garant__body {
  display: flex;
}

.garant__body_left,
.garant__body_right {
  width: 50%;
}

.garant__body_left {
  position: relative;
}

.garant__body_left::after {
  background: var(--main-item-color);
  position: absolute;
  content: '';
  top:115px;
  left:0;
  width: 494px;
  height: 494px;
  border-radius: 50%;
  z-index: -1;
  transform: scale(.1);
  transition: transform .5s cubic-bezier(0.4,0.0,1,1) .25s;
  transform-origin: 50%;
}

body.ready .garant__body_left::after {
  transform: scale(1);
  transition: transform .5s cubic-bezier(0.0,0.0,0.2,1) .25s;
}

.garant__body_left img {
  margin-left: 82px;
  margin-top: -15px;
  position: relative;
  bottom: 0;
}

.garant__body_right ul {
  padding-left: 0;
  margin: 23px 10px;
}

.garant__body_right ul > li {
  list-style-type: none;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
}

.header .garant__body ul > li {
  transform: translateY(-100px);
  opacity: 0;
}

body.ready .header .garant__body_right ul > li {
  transform: translateY(0);
  opacity: 1;
}

body.ready .header .garant__body_right ul > li:nth-child(1) {
  transition: transform .5s cubic-bezier(0.0,0.0,0.2,1) .25s, opacity .5s cubic-bezier(0.0,0.0,0.2,1) .25s;
  margin-bottom: -28px;
}

body.ready .header .garant__body_right ul > li:nth-child(2) {
  transition: transform .5s cubic-bezier(0.0,0.0,0.2,1) .50s, opacity .5s cubic-bezier(0.0,0.0,0.2,1) .50s;
  margin-bottom: -6px;
}

body.ready .header .garant__body_right ul > li:nth-child(3) {
  transition: transform .5s cubic-bezier(0.0,0.0,0.2,1) .75s, opacity .5s cubic-bezier(0.0,0.0,0.2,1) .75s;
  margin-bottom: 8px;
}

body.ready .header .garant__body_right ul > li:nth-child(4) {
  transition: transform .5s cubic-bezier(0.0,0.0,0.2,1) .75s, opacity .5s cubic-bezier(0.0,0.0,0.2,1) 1s;
}

.garant__body_right ul > li > p {
  width: calc(100% - 192px);
}

/* V O I D */

.void {
  height: 300px;
}

.void h2 {
  padding: 80px 22px 100px;
  margin-bottom: 0;
  width: 50%;
}

.void h2 span {
  top: 218px;
  left: 6px;
}

.void h2 span.runAction {
  height: 34px;
  top: 85px;

  border-radius: 6px;
  transition: top .5s cubic-bezier(0.0,0.0,0.2,1) .25s, border-radius .5s cubic-bezier(0.0,0.0,0.2,1) .25s, height .5s cubic-bezier(0.0,0.0,0.2,1) .25s;
}

  /* F A C T S */

.facts {
  background: url("../img/background-02.png") no-repeat center bottom;
  background-position-x: 10%;
  margin-top: -18px;
}

body.ready .facts .garant__body_left::after {
  content: none;
}

.question {
  background-color: var(--second-site-color);
  border: 2px solid var(--second-site-color);
  color: var(--main-site-color);
  position: relative;
  padding: 20px;
  margin-right: 0;
  margin-left: auto;
  font-size: 28px;
  line-height: 100%;
  left: -15px;
  top: -8px;
  width: 48%;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
}

.q-left {
  transform: translateX(-90px);
}

.q-right {
  transform: translateX(90px);
}

.question.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: opacity .35s cubic-bezier(0.0,0.0,0.2,1), visibility .35s cubic-bezier(0.0,0.0,0.2,1), transform .35s cubic-bezier(0.0,0.0,0.2,1);
  animation: none;
}

.question::after {
  border-top: 2px solid var(--second-site-color);
  border-right: 2px solid var(--second-site-color);
  background-color: var(--second-site-color);
  position: absolute;
  content: '';
  transform: rotate(45deg);
  right: -12px;
  top: 23px;
  width: 20px;
  height: 20px;
}

.facts .garant__body_right ul {
  margin-right: 20px;
  margin-top: 67px;
  margin-bottom: 50px;
}

.facts .garant__body_right ul > li:nth-child(1) {
  padding-bottom: 30px;
}

.facts .garant__body_right ul > li:nth-child(2) > img {
  margin-right: 20px;
}

.facts .garant__body_left img {
  margin-left: 58px;
  margin-top: 45px;
}

.garant__footer {
  background: var(--main-site-color);
  color: var(--main-text-color);
  font-family: 'Monrope', sans-serif;
  box-shadow: 0 -5px 100px rgba(66, 128, 248, 0.2);
  border-radius: 40px;
  width: 100%;
  padding: 40px 110px;
  font-weight: 700;
  font-size: 55px;
  line-height: 100%;
  position: relative;
  top: -5px;
}

.garant__footer::before {
  background-color: var(--second-site-color);
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  left: 43px;
  top: calc(50% - 16px);
  border-radius: 50%;
}

/* B R O K E R */

.broker {
  background: none;
  padding-top: 134px;
}

.broker .garant__header .question {
  margin-bottom: 0;
}

.broker .garant__body_left img {
  margin-left: 0;
  margin-top: 0;
  position: relative;
  top: 20px;
  left: -105px;
}

.broker .garant__footer {
  top: -31px;
}

.broker .garant__footer::before {
  background: url("../img/cross.png") no-repeat center center;
  width: 40px;
  height: 40px;
  left: 38px;
  top: calc(50% - 20px);
  border-radius: 0;
}

/* S E L F */

.self {
  padding-bottom: 107px;
  padding-top: 202px;
}

.self .garant__body_left img {
  margin-left: -1px;
  left:0;
  top: 20px;
}

.self .garant__body_right ul {
  margin-top: 71px;
}

.self .garant__body_right ul > li > .image-container {
  margin-left: 35px;
  margin-right: 0;
}

.self .garant__body_right ul > li:nth-child(2) {
  margin-bottom: 25px !important;
}

.self .garant__footer::before {
  background: url("../img/attention.png") no-repeat center center;
  width: 10px;
  height: 55px;
  left: 54px;
  top: calc(50% - 27px);
  border-radius: 0;
}

.self .garant__footer {
  top: 14px;
}

/* A N S W E R */

.answer {
  position: relative;
  background: url("../img/background-05-1.png") no-repeat center top;
  padding-top: 283px;
}

.answer::after {
  content: '';
  display: block;
  width: 100%;
  height: 150px;
  background: url("../img/bg-answer-bottom.png") no-repeat center center;
  /*background-position-y: 12%;*/
  position: absolute;
  bottom: 0;
}

.answer h2 {
  padding-left: 21px;
}

.answer__megaphone {
  display: flex;
}

.answer__megaphone_text {
  color: var(--main-site-color);
  background-color: var(--second-site-color);;
  font-size: 52px;
  line-height: 100%;
  padding: 47px 85px;
  border-radius: 40px;
  width: 49%;
  align-self: baseline;
  margin-top: 35px;
  position: relative;
  font-weight: 700;
}

.answer__megaphone_text::after {
  border-top: 2px solid var(--second-site-color);
  border-right: 2px solid var(--second-site-color);
  background-color: var(--second-site-color);
  position: absolute;
  content: '';
  transform: rotate(45deg);
  right: -12px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
}

.answer__megaphone img {
  margin-left: 120px;
}

.answer__block-left {
  width: 50%;
  position: relative;
}

.answer__block-left::after {
  position: absolute;
  top: -79px;
  right: 147px;
  content: '';
  width: 119px;
  height: 119px;
  border-radius: 50%;
  background-color: #E1EAFC;
  z-index: -1;
}

.answer__block-right {
  position: relative;
}

.answer__block-right::after {
  position: absolute;
  top: -43px;
  right: 418px;
  content: '';
  width: 204px;
  height: 204px;
  border-radius: 50%;
  background-color: #E1EAFC;
  z-index: -1;
}

.block-left-100::after {
  right: auto;
  left: 163px;
  top: -95px;
  width: 288px;
  height: 288px;
}

.answer__block-header {
  color: var(--second-site-color);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  margin: 69px 0 52px;
}

.answer__block-right {
  display: flex;
}

.answer__block-right > * {
  width: 50%;
}

.answer__block-item img {
  margin-top: 82px;
  margin-left: 25px;
}

.answer__block-right .answer__block-item:last-child {
  margin-left: 16px;
}

.answer__block-right .answer__block-header {
  margin-top: 55px;
}

.answer__block-left:last-child .answer__block-header {
  margin-top: -4px;
}

.block-left-100 {
  display: flex;
  width: 100%;
  margin-top: -13px;
}

.answer__block-left > .answer__block-item {
  width: 50%;
}

.answer__block-left > .answer__block-item > img {
  margin-top: 32px;
  margin-left: 8px;
}

.answer .garant__footer {
  top: -31px;
}

/* P H O N E   C A L L B A C K */

.phone-callback {
  background: url("../img/bg-callback-bottom.png") no-repeat bottom center;
  padding: 100px 0 160px;
}

.phone-callback h2 {
  margin-top: 115px;
  margin-bottom: 60px;
}

.phone-callback .form__block-right {
  margin-top: 224px;
  margin-left: 7px;
}

.phone-callback .form__block-left img {
  left: -82px;
  top: -34px;
}

.phone-callback .question {
  width: 95%;
  top: 15px;
  left: -12px;
  padding: 25px 20px;
}

.phone-callback  .question::after {
  right: auto;
  left: -13px;
}

.phone-callback img {

}

/* H E L P */
.help {
  padding: 80px 0 100px;
}

.help__side {
  display: flex;
}

.help__side > * {
  width: 50%;
}

.help__side-left {
  padding-right: 55px;
}

.help__side-left h2 {
  margin-bottom: 52px;
}

.help__side-left h2 span {
  left: 0;
}

.help__list {
  margin-top: 73px;
  padding-left: 30px;
}

.help__list-item {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 30px;
  list-style-type: none;
  position: relative;
}

.help__list-item::before {
  position: absolute;
  content: '';
  background: url("../img/Icon_48_.svg") no-repeat center center;
  width: 7px;
  height: 18px;
  left: -23px;
  top: 3px;
}

.help__side-right {
  display: flex;
  align-items: end;
}

.help__side-right img {
  margin-left: 10px;
  top: 36px;
  position: relative;
}

.help__steps {
  background: var(--main-site-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 25px;
  box-shadow: 0 -5px 100px rgba(66, 128, 248, 0.2);
  border-radius: 40px;
  position: relative;
  top: 20px;
}

.help__steps-item {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  list-style-type: none;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 40px;
}

.help__steps-item::before {
  border: 1px solid var(--second-site-color);
  background-color: var(--second-site-color);
  color: var(--main-site-color);
  position: absolute;
  left:-20px;
  top: 0;
  content: '1';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  line-height: 0;
  justify-content: center;
  align-items: center;
}

.help__steps-item:first-child::before {
  left: -18px;
}

.help__steps-item:nth-child(2) {
  margin-left: -15px;
}

.help__steps-item:nth-child(2)::before {
  margin-left: -40px;
  content: '2';
}

.help__steps-item:nth-child(3) {
  left: 13px;
}

.help__steps-item:nth-child(3)::before {
  left: -60px;
  content: '3';
}

.help__steps-item:nth-child(4) {
  left: 28px;
}

.help__steps-item:nth-child(4)::before {
  left: -61px;
  content: '4';
}

.quest {
  color: var(--second-site-color);
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 10px;
}

/* D I A L O G */

.dialog {
  margin-top: -56px;
  margin-bottom: 20px;
}

/* F O R M */

.form {
  padding-top: 17px;
  padding-bottom: 100px;
}

.interesting .question {
  top: 0;
  margin-bottom: 100px;
}

.form h2 {
  max-width: 530px;
}

.input-block {
  margin-bottom: 22px;
}

.input-block  label {
  font-size: 16px;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}

.form__block-left img {
  margin: 5px 0 0 6px;
  position: relative;
  left: 24px;
  top: 56px;
}

.mobile-left {
  display: none;
}

.input-block .politics::before {
  border: 1px solid #4280F8;
  border-radius: 5px;
  width: 18px;
  height: 18px;
  position: absolute;
  content: '';
  left: 13px;
  top: -3px;
}

.input-block input[type="checkbox"] {
  display: none;
}

.input-block input[type="checkbox"]:checked + label::after {
  color: var(--second-site-color);
  background: url(../img/check.svg) no-repeat center center;
  position: absolute;
  content: '';
  left: 18px;
  top: 2px;
  width: 10px;
  height: 10px;
}

.form__block {
  display: flex;
  position: relative;
  bottom: -5px;
  margin-bottom: 62px;
}

.form__block > * {
  width: 50%;
}

.callback {
  margin-left: -38px;
}

.form__block-right {
  margin-left: 17px;
}

.politics {
  margin: 39px 0 0 37px;
  line-height: 120%;
}

.callback .callback-btn {
  margin: 11px 0 0 40px;
}

/* A C H I E V E M E N T */

.achievement {
  padding-bottom: 100px;
  padding-top: 80px;
}

.achievement h2 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.achievement__block {
  background: var(--main-site-color);
  box-shadow: 0 -5px 100px rgba(66, 128, 248, 0.2);
  border-radius: 40px;
  padding: 40px 20px 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.achievement__block-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
}

.achievement__block-item p {
  position: relative;
}

.achievement__block-item p::before {
  position: absolute;
  left: -50px;
  top: 5px;
  content: '1';
  width: 40px;
  height: 40px;
  border: 1px solid var(--second-site-color);
  background-color: var(--second-site-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.achievement__block-item:nth-child(2) p::before {
  content: '2';
}

.achievement__block-item:nth-child(3) p::before {
  content: '3';
}

.shell {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement__stats {
  display: flex;
  margin-top: 67px;
}

.achievement__stats-left img {
  margin-left: 26px;
}

.achievement__stats-right {
  margin-top: 51px;
  margin-left: 56px;
}

.achievement__stats-right p {
  margin-bottom: 37px;
  position: relative;
  display: table;
}

.achievement__stats-right p::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #E1EAFC;
  bottom: 0;
  left: 0;
}

.achievement__stats-right p:nth-child(3) {
  margin-bottom: 51px;
}

.achievement__stats-right p span {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 78px;
  line-height: 120%;
  color: #4280F8;
  padding-right: 18px;
}

.achievement .garant__footer {
  top: -5px;
}

.achievement .garant__footer::before {
  background: url("../img/star.svg") no-repeat;
  width: 39px;
  height: 42px;
  left: 38px;
}

.modal-left img {
  position: relative;
  top: -20px;
}

.achievement .question {
  width: 48%;
  top: 0;
  left: 18px;
  margin-top: 160px;
  padding: 25px 27px;
  margin-right: auto;
  margin-left: 0;
  letter-spacing: -1.1px;
}

.achievement .question::after {
  right: auto;
  left: -13px;
}

.company {
  background: url("../img/animation-plug.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 284px;
}

.company__header {
  font-size: 50px;
  font-weight: 700;
  margin-left: 74px;
  margin-top: 62px;
  position: relative;
}

.company__header::before,
.company__header::after {
  background-color: #D7E6FC;
  position: absolute;
  content:'';
  top: 26px;
  width: 304px;
  height: 5px;
  border-radius: 31px;
}

.company__header::before {
  left: -340px;
}

.company__header::after {
  right: -340px;
}


/* D I F F E R E N C E S */


.differences h2 {
  margin-bottom: 80px;
}

.differences__block {
  width: 48%;
  margin-bottom: 105px;
}

.differences__block_header {
  display: flex;
  margin-bottom: 17px;
  min-height: 310px;
}

.block_header-left {
  display: flex;
  justify-content: center;
  width: 175px;
  height: 175px;
}

.block_header-right {
  width: 65%;
  padding: 12px 0 0 14px;
}

.differences .right-header {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 24px;
}

.differences .right-header span {
  font-weight: 800;
  font-size: 26px;
  line-height: 120%;
  color: var(--second-site-color);
}

.differences .right-text {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

.differences .differences__block_bottom {
  padding: 37px 34px;
  border: 1px solid var(--second-site-color);
  border-radius: 40px;
  position: relative;
}

.differences .differences__block_bottom::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  border-top: 1px solid var(--second-site-color);
  border-right: 1px solid var(--second-site-color);
  transform: rotate(-45deg);
  right: 61px;
  top: -17px;
  background-color: #fff;
}

.differences .block_bottom-header {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 24px;
  max-width: 420px;
}

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

.differences .question {
  top: 0;
  margin-top: 50px;
}

/* R E V I E W S */

.reviews {
  margin-top: 38px;
  padding-top: 80px;
  padding-bottom: 20px;
}

.reviews__blocks {
  display: flex;
  position: relative;
  bottom: -5px;
}

.reviews h2 {
  margin-bottom: 70px;
}

.reviews__block-image {
  margin-top: -163px;
  margin-left: 64px;
}

.reviews .garant__footer {
  padding-right: 50px;
  top: -13px;
}

.reviews .garant__footer::before {
  background: url("../img/accept.svg") no-repeat;
  width: 86px;
  height: 40px;
  left: 29px;
}

.reviews .question {
  margin-right: auto;
  margin-left: 32px;
  margin-top: 83px;
}

.reviews .question::after {
  left:-14px;
  right: auto;
}

.elements:first-child {
  margin-top: 0;
}

.elements {
  margin-top: 255px;
}

.interesting__block_left .elements:first-child img {
  position: relative;
  top: 83px;
}

/* I N T E R E S T I N G */

.interesting {
  padding: 80px 0 0;
}

.interesting h2 {
  margin-bottom: 84px;
}

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

.interesting_header {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 120%;
  color: var(--second-site-color);
  margin-bottom: 24px;
}

.interesting_text {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  color: var(--main-text-color);
}

.interesting__block_right,
.interesting__block_left {
  width: 49%;
}

.interesting__block_right {
  margin-top: 330px;
}


.interesting .question {
  margin-top: 77px;
  margin-bottom: 82px;
  top:0;
}

.interesting__block_right .elements:first-child {
  margin-top: 155px;
}

.interesting__block_right .elements img {
  margin-left: 49px;
  margin-bottom: 30px;
}

.interesting__block_right .elements:first-child {
  position: relative;
}

.interesting__block_right .elements:first-child::before {
  background: var(--main-item-color);
  position: absolute;
  content: '';
  top: -424px;
  right: 2px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: -1;
  transform-origin: 50%;
}

  /* F O O T E R */

.footer {
  background-color: var(--second-site-color);
  padding-bottom: 88px;
  margin-top: 196px;
}

.footer iframe {
  border: none;
  border-radius: 40px;
}

.footer__blocks-item > * {
  color: var(--main-site-color);
}

.item__header,
.item__header a {
  color: var(--main-site-color);
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 90%;
  text-decoration: none;
}

.item__text {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  margin-top: 25px;
  margin-bottom: 22px;
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 140%;
}

.footer__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -43px;
}

.footer__blocks-item:nth-child(2) {
  grid-column: 3/4;
  margin-left: 8px;
}

.footer__blocks-item:nth-child(3) {
  grid-column: 4/5;
  margin-left: 15px;
}

.footer__blocks-item:nth-child(4) {
  grid-column: 3/4;
  margin-left: 10px;
  margin-top: 26px;

}

.footer__blocks-item:nth-child(5) {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
}

.footer__blocks-item:nth-child(6) {
  grid-column: 1/3;
  margin-top: 41px;
  margin-left: 8px;
}

.footer__blocks-item:nth-child(5) a {
  width: 61px;
  height: 61px;
  background-color: var(--main-site-color);
  border-radius: 15px;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__blocks-item:nth-child(5) p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}

/* M O D A L */

.modal {
  width: 1260px;
  height: 640px;
  background: #FFFFFF;
  box-shadow: 0 -5px 100px rgba(66, 128, 248, 0.2);
  border-radius: 40px;
  position: fixed;
  top: calc(50vh - 320px);
  left: calc(50vw - 630px);
  z-index: 9999;
  opacity: 0;
  display: none;
}

.modal-content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 40px 92px 0;
}

.modal-close {
  position: absolute;
  background: none;
  outline: none;
  width: auto;
  height: auto;
  padding: 0;
  top: 36px;
  right: 36px;
}

.modal-close:hover, .modal-close:active {
  background: none;
  outline: none;
}

.modal .modal-right {
  margin-left: 106px;
  margin-top: 23px;
}

.modal h2 {
  margin-bottom: 55px;
}

.fadescreen {
  position: fixed;
  left:0;
  top:0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  background: rgba(4, 10, 20, 0.8);
  display: none;
  opacity: 0;
}

.arrow {
  padding-right: 0;
}

.show {
  display: flex;
  animation: show .35s ease .2s forwards;
}

.open-modal {
  cursor: pointer;
}

@keyframes show {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* slider */

.slider {
  display: flex;
  flex-direction: column;
  width: 640px;
  height: 420px
}

.slider__items {
  position: relative;
  display: flex;
  justify-content: center;
  height: 320px;
  margin-bottom: 44px;
}

.slider__item {
  opacity: 0;
  flex-shrink: 0;
  height: 320px;
  position: absolute;
  box-shadow: 5px 2px 10px rgba(66, 128, 248, 0.2);
  z-index: 96;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.slider__item.disabled-transition {
  transition: none;
}

.slider__item img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slider__item[class*="prev"], .slider__item[class*="next"], .slider__item.active {
  opacity: 1;
  top: 0;
  cursor: pointer;
}

.slider__item.active {
  z-index: 99;
  transform: scale(1);
}

.slider__item.prev-2 {
  transform: translateX(-240px) translateY(15%) scale(0.7);
  z-index: 97;
}

.slider__item.prev-1 {
  transform: translateX(-120px) translateY(7.5%) scale(0.85);
  z-index: 98;
}

.slider__item.next-1 {
  transform: translateX(120px) translateY(7.5%) scale(0.85);
  z-index: 98;
}

.slider__item.next-2 {
  transform: translateX(240px) translateY(15%) scale(0.7);
  z-index: 97;
}

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

.slider__arrow-prev, .slider__arrow-next {
  border: none;
  outline: none;
  height: auto;
  width: auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Manrope';
  font-size: 22px;
  line-height: 100%;
  color: #4280F8;
}

.slider__arrow-prev:hover, .slider__arrow-next:hover {
  color: #4280F8;
  background-color: transparent;
}

/* M E D I A */

@media screen and (max-width: 1919px) {
  .broker,.self,.facts {
    background-position-x: 50%;
  }
}

@media screen and (max-width: 1259px) {
  .modal {
    width: 96vw;
    left: 2vw;
  }

  .modal-left {
    display: none;
  }

  .wrapper {
    width: 1024px;
    padding: 0 12px;
  }

  .moreBtn::before,
  .moreBtn::after,
  .company__header::before, .company__header::after
  {
    content: none;
  }

  .navigation__menu {
    gap: 10px;
  }

  .answer__megaphone_text {
    padding: 25px 40px;
  }

  .answer .answer__megaphone img {
    width: 43%;
    margin-left: 60px;
    height: auto;
  }

  .form__block > *,
  .help__side > * {
    width: 45%;
  }

  .form__block-left img {
    width: 100%;
    height: auto;
  }

  .form__block {
    display: flex;
    align-items: flex-end;

  }

  .answer__block-item > img {
    width: 100%;
    height: auto;
  }

  .answer__block-left > .answer__block-item {
    width: 45%;
  }

  .answer__block-header {
    font-size: 42px;
  }

  p {
    font-size: 18px;
  }

  .help__side-right img {
    width: 100%;
    height: auto;
  }

  .reviews__block-image {
    margin-top: 0;
  }

  .reviews__blocks {
    flex-direction: column;
  }

  .help__side-right img {
    margin-left: 0;
  }
  .achievement__block {
    flex-direction: column;
  }

  .achievement img {
    width: 100%;
    height: auto;
  }

  .achievement__block-item {
    flex-direction: column;
    justify-content: left;
  }

  .achievement__block-item {
    width: 100%;
  }

  .achievement__block-item p {
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .achievement__block-item p::before {
    width: 26px;
    height: 26px;
    left: -10px;
  }
  .achievement__stats {
    flex-direction: column;
  }

  .achievement__stats-left {
    order: 66;
  }

  .achievement__stats-left img {
    margin-left: 0;
  }

  .achievement__stats-right {
    margin-left: 0;
  }

  .achievement__stats-right p span {
    font-size: 54px;
  }

  .achievement {
    padding-bottom: 50px;
  }
}

/* :tablet */

@media screen and (max-width: 1023px) {
  .wrapper {
    width: 100%;
    padding: 0 12px;
  }
  .navigation__menu {
    display: none;
  }

  header.header {
    background-size: cover;
  }

  .garant__header,
  .garant__body {
    flex-direction: column;
  }

  .garant__header > * {
    width: 100%;
  }

  .garant__header h1,
  .garant__header h2 {
    margin-bottom: 25px;
  }

  .garant__header {
    margin-top: 10px;
  }

  .form__block-left img {
    left: auto;
    top: auto;
  }

  .phone-callback .form__block-right {
    margin-top: 70px;
  }

  .garant__body_left, .garant__body_right {
    width: 100%;
  }

  .garant__body_left {
    order: 66;
  }

  .form__block {
    flex-direction: column;
  }

  .form__block > *, .help__side > * {
    width: 100%;
  }

  .callback {
    padding-bottom: 25px;
  }

  .garant__footer {
    padding: 40px 40px 40px 80px;
    font-weight: 700;
    font-size: 34px;
  }

  .self .garant__footer::before {
    left: 27px;
  }

  .broker .garant__footer::before {
    left: 13px;
  }

  .garant__footer::before {
    left: 15px;
  }

  .question {
    left:0;
  }

  .garant__body_left {
    display: flex;
    justify-content: center;
  }

  .broker .garant__body_left img {
    margin-right: 20px;
  }

  .self .garant__body_left img {
    margin: 0 auto;
  }

  .garant .garant__body_left img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .garant__body_left::after {
    width: 320px;
    height: 320px;
  }

  .answer__megaphone_text {
    width: 100%;
    font-size: 32px;
  }

  .answer .answer__megaphone img {
    width: 100%;
  }

  .answer__block-right,
  .answer__megaphone {
    flex-direction: column;
  }

  .answer__block-left {
    width: 100%;
  }

  .answer__block-right > * {
    width: 100%;
  }

  .block-left-100 {
    flex-direction: column;
  }

  .answer__block-left > .answer__block-item {
    width: 100%;
  }

  .garant__body_right ul > li {
    flex-direction: column;
  }

  .garant__body_right ul > li > p {
    width: 100%;
  }

  .company__header {
    margin-left: 0;
  }
  .reviews .question {
    margin-left: 15px;
  }
}

/* :mobile */

@media screen and (max-width: 767px) {
  .mobileMenu {
    position: fixed;
    z-index: 9999;
    padding: 0 10px;
    display: none;
  }

  .header__upper_logo {
    position: relative;
    width: 54%;
  }

  .header__upper_logo::before {
    border-radius: 50%;
    background: #2b5dbd;
    width: 20px;
    height: 20px;
    content: '';
    left:0;
    top:-2px;
    position: absolute;
  }

  .mobileMenu .header__upper {
    justify-content: space-between;
  }

  .mobileMenu .header__upper_logo img {
    margin-left: 0;
  }

  .modal .modal-right {
    margin-left: 0;
    width: 100%;
  }

  .mobileMenu .navigation {
    display: flex;
    position: relative;
    padding-left: 20px;
  }

  .mobileMenu .navigation::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.3);
    bottom: -20px;
    left: 0;
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 20px;
  }

  .mobileMenu .header__upper {
    margin-bottom: 60px;
  }

  .mobileMenu .mobile-social {
    display: flex;

  }

  .mobile-links a:first-child {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-decoration: none;
    margin-bottom: 30px;
    color: #4280F8;

  }

  .mobile-links a:nth-child(2) {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #4280F8;
    margin-bottom: 34px;
  }

  .mobileMenu .navigation__menu {
    flex-direction: column;
    display: block;
  }

  .mobile-social a {
    margin-right: 35px;
  }

  .mobileMenu.show {
    display: block;
  }

  .mobileMenu .navigation__menu li {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--main-text-color);
    order: 0;
    flex-grow: 0;
    margin-bottom: 35px;
    position: relative;
  }

  .mobileMenu .navigation__menu li::before {
    content: '';
    position: absolute;
    background-color: var(--second-site-color);
    width: 2px;
    height: 10px;
    border-radius: 8px;
    top: 5px;
    left: -5px;
  }

  .modal {
    padding: 30px;
  }

  main  {
    overflow-x: hidden;
  }
  .garant__footer {
    font-size: 22px;
  }

  .achievement .question {
    width: 100%;
    margin-top: 0;
    left: 0;
  }

  .header__upper_logo {
    padding-left: 0;
  }

  .header__upper_logo::after {
    content: none;
  }

  h2 {
    font-size: 30px;
  }

  h2 span {
    top: 12px;
  }

  .answer__block-item img {
    margin-left: 0;
    margin-top: 50px;
  }

  .help {
    padding-top: 0;
  }

  .help__side {
    flex-direction: column;
  }

  .help__side-left {
    padding: 0;
  }

  .help__side-right img {
    top:0;
    margin-left: 0;
  }

  .help__steps {
    top: -40px;
    flex-direction: column;
  }

  .help__steps-item {
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    margin-left: 0 !important;
    height: auto;
    justify-content: flex-start;
    left:0 !important;
    padding-left: 50px;
  }

  .help__steps-item::before {
    left:0 !important;
    top: 0 !important;
    margin-left: 0 !important;
  }

  input[type="text"] {
    width: 100%;
    margin-left: 0;
  }

  .input-block label {
    padding-left: 0;
  }

  .input-block input[type="checkbox"]:checked + label::after {
    left: -25px;
    top: 4px;
  }

  .input-block .politics::before {
    left: -30px;
    top: 0;
  }

  .garant__header > * {
    width: 95%;
    margin-left: 0;
  }

  h1, .h1 {
    font-size: 58px;
  }

  .broker .garant__body_left img {
    left:0;
  }
  .callback {
    margin: 0;
  }

  .question {
    width: 92%;
  }

  .garant__body_right ul {
    margin: 10px;
  }

  .moreBtn {
    width: 100%;
  }

  .wrapper {
    padding: 0 10px;
  }

  .humburger {
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--second-site-color);
    justify-content: center;
    align-items: center;
    margin-left: 22px;
    position: relative;
  }

  .humburger::after,
  .humburger::before {
    width: 20px;
    height: 3px;
    background-color: var(--second-site-color);
    position: absolute;
    content: '';
    top: 7px;
  }

  .humburger::before {
   top:  14px
  }

  .header__upper_logo img {
    transform: scale(.7);
  }

  .header__upper_phones a:first-child {
    display: none;
  }

  .header__upper_phones a:nth-child(2) {
    margin-left: 0;
    font-size: 14px;
  }

  .header__upper_phones a:nth-child(2) svg {
    display: none;
  }

  .up-header {
    background: var(--main-site-color);
    box-shadow: 0 0 25px rgba(66, 128, 248, 0.15);
    padding-bottom: 10px;
  }

  nav.navigation {
    display: none;
  }

  .header__upper {
    justify-content: flex-start;
  }

  .mobileMenu .header__upper {
    padding: 16px 10px 0 0;

  }

  .void h2 {
    padding: 88px 22px 50px;
  }

  .facts .garant__body_right ul > li:nth-child(1) {
    padding: 0;
  }

  .garant__body_left img {
    bottom: -25px;
  }

  .facts {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .help__steps-item:nth-child(4) {
    margin-bottom: 0;
  }

  .help__steps-item:first-child {
    margin-bottom: 35px;
  }

  .help__steps-item {
    display: flex;
    align-items: center;
    height: 40px;
  }

  .help {
    padding-bottom: 0;
  }

  .mobile-left {
    display: block;
  }

  .desctop-left {
    display: none;
  }

  h2 span {
    left: 4px;
  }

  .broker .garant__footer::before {
    left: 26px;
  }

  .form__block-right h2 {
    margin-bottom: 50px;
  }

  .callback .callback-btn {
    margin: 0;
  }

  .void h2 {
    width: 100%;
  }

  .reviews__block-slider img,
  .reviews__block-image img {
    width: 100%;
    height: auto;
  }

  .block-left-100::after {
    left: 0;
  }

  .footer__blocks {
    display: block;
  }

  .footer__blocks-item {
    margin-left: 0 !important;
  }

  .broker {
    padding-top: 0;
  }

  .reviews {
    padding-top: 0;
  }

  .footer {
    margin-top: 195px;
  }

  .differences__blocks {
    flex-direction: column;
  }

  .differences__block {
    width: 100%;
  }

  .differences__block_header {
    flex-direction: column;
  }
  .block_header-right {
    width: 100%;
  }

  .block_header-left {
    height: auto;
  }

  .differences__block_header {
    margin-bottom: 45px;
  }

  .differences .block_bottom-header,
  .differences .right-header {
    font-size: 24px;
  }

  .interesting__blocks {
    flex-direction: column;
  }

  .interesting__block_right, .interesting__block_left, .interesting__blocks img {
    width: 100%;
  }

  .interesting__block_right img:first-child {
    margin-left: 0;
    margin-top: 0;
  }

  .interesting__blocks img,
  .interesting__block_right {
    margin-top: 150px;
  }

  .image-container {
    margin: 0 !important;
  }

  p {
    text-align: center;
  }

  .garant__body_right ul > li {
    margin-bottom: 40px !important;
  }

  .header .garant::after {
    background: url(../img/background-01-1.png) no-repeat right bottom;
    background-size: cover;
    transform: translateY(60px);
  }

  .garant__footer::before {
    left: 25px;
  }

  .broker .garant__footer::before {
    left: 24px;
  }

  .garant.facts.broker.self .garant__footer::before {
    left: 38px;
  }

  .answer {
    padding-top: 80px;
    background-position-y: -60px;
  }

  .answer h2 .runAction {
    top: 0;
  }

  .answer .answer__block-left p {
    text-align: left;
  }

  .answer .answer__megaphone img {
    margin-left: 0;position: relative;
    z-index: -1;
  }

  .answer__megaphone_text {
    width: 95%;
    padding: 25px;
  }

  .answer__block-right .answer__block-item:last-child {
    margin-left: 0;
  }

  .answer__block-right::after {
    right: 0;
  }

  .answer__block-header {
    font-size: 36px;
  }

  .answer__megaphone_text.question.q-right {
    margin: 0;
  }

  .answer__block-left, .answer__block-right {
    margin-bottom: 80px;
  }

  .answer__block-item p {
    text-align: start;
  }

  .answer__block-left:last-child .answer__block-header {
    margin-top: 26px;
  }

  .achievement .garant__footer::before {
    left: 22px;
  }

  .phone-callback {
    padding-top: 0;
  }

  .phone-callback .callback {
    display: flex;
    flex-direction: column;
  }

  .phone-callback .callback .callback-btn {
    align-self: center;
  }

  .phone-callback .form__block-left.mobile-left {
    display: none;
  }

  .help__side .help__side-left p {
    text-align: left;
  }

  .help__list-item {
    font-size: 16px;
  }

  .help__list-item::before {
    top: 0;
  }

  .dialog {
    margin: 20px 0 40px;
  }

  .dialog .question.q-right {
    left: -15px;
  }

  .achievement h2  br {
    display: none;
  }

  .achievement__block-item .shell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .achievement__stats-right p {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 20px;
    align-items: center;
    margin-bottom: 20px;
  }

  .achievement__stats-right p:nth-child(3) {
    margin-bottom: 20px;
  }

  .achievement__stats-right p span {
    font-size: 36px;
  }

  .question.q-left {
    width: 92%;
    left: 20px;
  }

  .achievement .question.q-left {
    margin: 20px 0 40px;
  }

  .differences__block_header {
    align-items: center;
  }

  .differences__block_header .block_header-left {
    margin-bottom: 40px;
  }

  .differences .question.q-right {
    margin: 0 0 80px;
  }

  .reviews .garant__footer::before {
    left: 20px;
  }

  .reviews .question.q-left {
    left: 0;
  }

  .reviews__block-slider {
    margin-bottom: 80px;
  }

  .interesting h2 .runAction {
    top: 0;
  }

  .interesting .elements {
    margin: 0 0 80px !important;
  }

  .interesting .elements img {
    top: 0 !important;
    margin: 0;
    height: 200px;
    object-fit: contain;
    object-position: center;
  }

  .interesting__block_left .interesting_header br {
    display: none;
  }

  .interesting__block_right {
    margin-top: 0;
  }

  .interesting button {
    width: 72%;
    font-size: 16px;
    line-height: 100%;
  }
  .interesting .moreBtn::before, .interesting .moreBtn::after {
    background-color: #D7E6FC;
    position: absolute;
    content: '';
    top: 33px;
    width: 340px;
    height: 5px;
    border-radius: 31px;
  }

  .interesting_text {
    font-size: 18px;
  }

  .interesting .moreBtn {
    margin: 0 auto 0;
  }

  .form .form__block {
    margin: 0;
  }

  .interesting .question.q-right {
    left: -15px;
  }

  .form .callback {
    display: flex;
    flex-direction: column;
  }

  .form .callback .callback-btn {
    align-self: center;
  }

  .footer {
    margin-top: 80px;
  }

  .footer .item__header, .footer .item__header a {
    font-size: 22px;
  }

  .footer .item__text {
    margin: 40px 0 40px 10px;
    text-align: left;
  }

  .footer .footer__blocks-item:nth-child(5) {
    justify-content: space-evenly;
  }

  .footer .footer__blocks-item:nth-child(5) a {
    margin: 0;
  }

  .footer .footer__blocks-item p {
    text-align: left;
    margin-left: 10px;
  }

  .footer .footer__blocks-item .item__header {
    margin-left: 10px;
  }

  .footer .footer__blocks-item p {
    flex-grow: 1;
  }

  .slider {
    width: 100%;
  }

  .slider__items {
    height: 200px;
  }

  .slider__item {
    width: 40%;
    height: auto;
  }

  .slider__controls button {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .slider__controls button:nth-child(1) span {
    order: 1;
  }

  .slider__controls button:nth-child(1) img {
    order: 2;
  }
}

.wrapMap {
  position: relative;
  cursor: help;
  overflow: hidden;
  border: none;
}
.mapTitle {
  position: absolute;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px;
  display: none;
  padding: 5px 20px;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  border-image: initial;
}

.hide {
  display: none;
}

.gallery-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-wrapper > img {
  height: calc(100vh - 80px);
  cursor: pointer;
}

.acceptBtn:disabled,
.acceptBtn:disabled:hover {
  background-color: #96bd60;
  transition: background-color .35s cubic-bezier(0.0, 0.0, 0.2, 1);
  outline: 1px solid #96bd60;
  color: #fff;
  filter: none;
}

.acceptBtn:disabled:after {
  content: none;
}
