@font-face {
  font-family: 'Montserrat';
  src: url(assets/fonts/Montserrat-Bold.woff) format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
	font-family: 'Geometria';
	src: url(assets/fonts/Geometria-Medium.woff) format('woff');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Geometria';
	src: url(assets/fonts/Geometria-Bold.woff) format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Lato';
	src: url(assets/fonts/Lato-Light.woff) format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Lato';
	src: 
    url(assets/fonts/Lato-Regular.woff) format('woff'),
    url(assets/fonts/Lato-Regular.woff2) format('woff2'),
    url(assets/fonts/Lato-Regular.eot) format('eot'),
    url(assets/fonts/Lato-Regular.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url(assets/fonts/Lato-Medium.woff) format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src:
    url(assets/fonts/Lato-Bold.woff) format('woff'),
    url(assets/fonts/Lato-Bold.woff2) format('woff2'),
    url(assets/fonts/Lato-Bold.eot) format('eot'),
    url(assets/fonts/Lato-Bold.ttf) format('truetype');
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: 'Lato';
  src:
    url(assets/fonts/Lato-Heavy.woff) format('woff'),
    url(assets/fonts/Lato-Heavy.woff2) format('woff2'),
    url(assets/fonts/Lato-Heavy.eot) format('eot'),
    url(assets/fonts/Lato-Heavy.ttf) format('truetype');
  font-style: normal;
  font-weight: 900;
}

/* Общие стили */
body {
  display: flex;
  justify-content: center;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #121212;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  max-width: 1520px;
  width: 100%;
  margin: 0 100px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 276px;
  height: 70px;

  box-shadow: 0px 0px 8px rgba(0, 102, 161, 0.4);
  border-radius: 8px;
  background-color: #fff;

  font-family: 'Geometria';
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-decoration: none;
  color: #0066A1;
}

.btn:hover {
  cursor: pointer;
}

.section-title {
  margin: 0 auto;
  width: fit-content;
  font-family: 'Geometria';
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
  color: #292426;
}

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1104px;
    margin: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 580px) {
  .section-title {
    font-size: 20px;
    line-height: 25px;
  }
}

.benefits {
  margin: 0 70px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title__benefits {
  margin-bottom: 70px;
}


/* контейнер с плитками */
.benefits__tile-container {
  position: relative;
  width: 100%;
  max-width: 1520px;

  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  grid-template-rows: 161px 317px;
  gap: 20px;
}

/* общие стили для всех плиток */
.benefits__tile-element {
  background: #FFFFFF;
  border: 4px solid #2FC7F7;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits__tile-text {
  font-family: 'Geometria';
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  color: #0066A1;
}
.benefits__tile-text--bold {
  font-weight: 700;
}
img {
  display: inline-block;
}

/* плитка big */
.benefits__tile-element--big {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  line-height: 38px;
}
.benefits__tile-element--big img {
  width: 177px;
  height: auto;
}
.benefits__tile-element--big .benefits__tile-text {
  margin-top: 20px;
  width: 345px;
  height: 152px;
}

/* плитка rush */
.benefits__tile-element--rush {
  justify-content: space-evenly;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.benefits__tile-element--rush img {
  width: 125px;
  height: auto;
}
.benefits__tile-element--rush .benefits__tile-text {
  font-size: 25px;
  line-height: 31px;
  width: 295px;
}

/* плитка transparent */
.benefits__tile-element--transparent {
  justify-content: space-evenly;
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}
.benefits__tile-element--transparent img {
  width: 112px;
  height: auto;
}
.benefits__tile-element--transparent .benefits__tile-text {
  width: 283px;
  font-size: 25px;
  line-height: 31px;
}

/* плитка official */
.benefits__tile-element--official {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  justify-content: space-evenly;
}
.benefits__tile-element--official img {
  width: 215px;
  height: auto;
}
.benefits__tile-element--official .benefits__tile-text {
  width: 382px;
  font-size: 36px;
  line-height: 45px;
}

/* плитка certified */
.benefits__tile-element--certified {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  flex-direction: column;
  justify-content: center;
}
.benefits__tile-element--certified img {
  width: 93px;
  height: auto;
}
.benefits__tile-element--certified .benefits__tile-text {
  width: 207px;
  font-size: 14px;
  line-height: 18px;
}



@media only screen and (max-width: 1440px) {
  .benefits__tile-container {
    max-width: 1105px;
    grid-template-rows: 117px 230px; 
  }
  .benefits__tile-element--big { /* плитка big 1440 */
    font-size: 21px;
    line-height: 26px;
  }
  .benefits__tile-element--big img {
    width: 128px;
  }
  .benefits__tile-element--rush img { /* плитка rush 1440 */
    width: 90px;
  }
  .benefits__tile-element--rush .benefits__tile-text {
    width: 213px;
    font-size: 18px;
    line-height: 23px;
  }
  .benefits__tile-element--transparent img { /* плитка transparent 1440 */
    width: 81px;
  }
  .benefits__tile-element--transparent .benefits__tile-text {
    width: 206px;
    font-size: 18px;
    line-height: 23px;
  }
  .benefits__tile-element--official img { /* плитка official 1440 */
    width: 185px;
    height: auto;
  }
  .benefits__tile-element--official .benefits__tile-text {
    width: 277px; 
    font-size: 26px;
    line-height: 33px;
  }
  .benefits__tile-element--certified img { /* плитка certified 1440 */
    width: 67px;
    height: auto;
  }
  .benefits__tile-element--certified .benefits__tile-text {
    margin-top: 25px;
    width: 150px;
    font-size: 10px;
    line-height: 13px;
  }

  .benefits { /* не плитка */
    margin: 0 13px;
  }
}


@media only screen and  (max-width: 1044px) {
  .section-title__benefits {
    margin-bottom: 47px;
  }
  .benefits__tile-element--big img { /* плитка big 1044*/
    width: 112px;
  }
  .benefits__tile-element--big .benefits__tile-text {
    margin-top: 17px;
    width: 230px;
    height: 100px;
    font-size: 20px;
    line-height: 25px;
  }
  .benefits__tile-element--rush img { /* плитка rush 1044*/
    width: 90px;
  }
  .benefits__tile-element--rush .benefits__tile-text {
    width: 189px;
    font-size: 16px;
    line-height: 20px;
  }
  .benefits__tile-element--transparent img { /* плитка transparent 1044 */
    width: 70px;
  }
  .benefits__tile-element--transparent .benefits__tile-text {
    width: 181px;
    font-size: 16px;
    line-height: 20px;
  }
  .benefits__tile-element--official img { /* плитка official 1044 */
    width: 150px;
  }
  .benefits__tile-element--official .benefits__tile-text {
    width: 254px; 
    font-size: 24px;
    line-height: 30px;
  }
  .benefits__tile-element--certified img { /* плитка certified 1044 */
    width: 56px;
    height: auto;
  }
  .benefits__tile-element--certified .benefits__tile-text {
    margin-top: 25px;
    width: 133px;
    font-size: 9px;
    line-height: 11px;
  }

}


@media only screen and  (max-width: 870px) {
  .benefits__tile-element--transparent img {
    width: 60px;
  } 
  .benefits__tile-element--transparent .benefits__tile-text {
    font-size: 12px;
    line-height: 20px;
  }
  .benefits__tile-element--official .benefits__tile-text {
    width: 90px;
  }
  .benefits__tile-element--official .benefits__tile-text {
    width: 234px; 
    font-size: 17px;
    line-height: 28px;
  }
}


@media only screen and  (max-width: 830px) {
  .benefits__tile-container {
    width: fit-content;
    grid-template-columns: 299px 263px 128px;
    grid-template-rows: 260px 94px 88px;
    gap: 15px;
  }
  .section-title__benefits {
    margin-bottom: 30px;
  }
  .benefits__tile-element--big { /* плитка big 768 */
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .benefits__tile-element--rush { /* плитка rush 768 */
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .benefits__tile-element--rush img {
    width: 79px;
  }
  .benefits__tile-element--rush .benefits__tile-text {
    width: 102px;
  }
  .benefits__tile-element--transparent { /* плитка transparent 768 */
    justify-content: space-evenly;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
  .benefits__tile-element--transparent .benefits__tile-text {
    width: 320px;
    font-size: 16px;
    line-height: 20px;
  }
  .benefits__tile-element--official { /* плитка official 768 */
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    justify-content: space-evenly;
  }
  .benefits__tile-element--official .benefits__tile-text {
    width: 234px; 
    font-size: 22px;
    line-height: 28px;
  }
  .benefits__tile-element--certified { /* плитка certified 768 */
    grid-column: 3 / 4;
    grid-row: 2 / 4;
  }
  .benefits__tile-element--certified img {
    width: 56px;
    height: auto;
  }
  .benefits__tile-element--certified .benefits__tile-text {
    margin-top: 25px;
    width: 115px;
  }

  .section-title__benefits { /* не плитка */
    margin-top: 20px;
  }
}


@media only screen and  (max-width: 720px) {
  .benefits  {
    margin: 0;
    background: linear-gradient(
      to right,
      #DBEEFF,
      #ffffff00
    )
  }

  .benefits__tile-container {
    grid-template-columns: minmax(270px, 343px);;
    grid-template-rows: 260px 220px 94px 88px 68px;
  }
  .section-title__benefits {
    margin-bottom: 35px;
  }
  .benefits__tile-element--big { /* плитка big 768 */
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .benefits__tile-element--big img {
    width: 90px;
  }
  .benefits__tile-element--big .benefits__tile-text {
    font-size: 18px;
    line-height: 23px;
    margin: 5px;
  }
  .benefits__tile-element--rush { /* плитка rush 768 */
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .benefits__tile-element--rush img {
    width: 79px;
  }
  .benefits__tile-element--rush .benefits__tile-text {
    width: fit-content;
    font-size: 16px;
    line-height: 20px;
  }
  .benefits__tile-element--transparent { /* плитка transparent 768 */
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .benefits__tile-element--transparent .benefits__tile-text {
    width: 181px;
    font-size: 16px;
    line-height: 20px;
  }
  .benefits__tile-element--official { /* плитка official 768 */
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .benefits__tile-element--official img {
    width: 107px;
  }
  .benefits__tile-element--official .benefits__tile-text {
    width: 234px; 
    font-size: 22px;
    line-height: 28px;
  }
  .benefits__tile-element--certified { /* плитка certified 768 */
    grid-column: 1 / 2;
    grid-row: 5 / 6;
    flex-direction:row;
    justify-content: space-evenly;
    align-items: center;
  }
  .benefits__tile-element--certified img {
    width: 56px;
    height: auto;
  }
  .benefits__tile-element--certified .benefits__tile-text {
    margin-top: 0;
    width: 160px;
    font-size: 9px;
    line-height: 11px;
  }
  .benefits__tile-element--certified br {
    display: none;
  }

  .benefits__tile-container { /* не плитка */
    margin-bottom: 50px;
  }
}

@media only screen and  (max-width: 580px) {
  .section-title__benefits{ /* не плитка */
    margin-top: 25px;
  }
  .section-title__benefits {
    margin-top: 20px;
  }
}


@media only screen and  (max-width: 375px) {
  .benefits {
    padding: 0 15px;
  }
  .section-title--feedback {
    width: 253px;
  }
}
.feedback {
  text-align: center;
  margin-top: 300px;
  padding-bottom: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feedback__text {
  margin-top: 40px;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #292426;
}
.feedback__eclipse-left {
  width: 320px;
  height: 382px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* изображения */
.feedback__eclipse-right-group {
  width: 865px;
  height: 680px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(170px, -360px, 0);
  z-index: -1;
}
.feedback__eclipse-blue {
  width: 390px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.feedback__eclipse-green {
  width: 611px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.feedback__cloud {
  width: 310px;
  height: auto;
  position: absolute;
  top: 0px;
  right: 50%;
  z-index: -1;
  transform: translate3d(-370px, -240px, 0);
}


/* form */
.form {
  margin-top: 75px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 493px) );
  grid-template-rows: 222px 40px 70px;
  gap: 19px;
  font-family: 'Lato';
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.feedback__form-contacts {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  /* background-color: #fff; */
  border-radius: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* inputs */
.contacts__item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 60px;
}
.feedback__form-label {
  display: block;
  font-weight: 500;
}
.feedback__form-input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #418DC2;
  font-family: 'Lato';
  font-size: 22px;
  outline: none;
  background-color: transparent;
  transition: .2s linear;
}
.feedback__form-input::placeholder {
  font-size: 18px;
  line-height: 22px;
  color: #CFCFD2;
}
.feedback__form-input.wrong-data {
  background-color: #f72f2f59;
}
.feedback__form-input.empty {
  background-color: #2fc8f759;
}

.feedback__form-textarea-container {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  text-align: left;
}
.feedback__form-textarea {
  width: 100%;
  min-height: 199px;
  padding: 0 10px;
  background: #FFFFFF;
  border: 1px solid #418DC2;
  border-radius: 8px;
  outline: none;
  font-family: 'Lato';
  font-size: 22px;
  resize: none;
}

/* form button */
.feedback__form-btn {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  background-color: #2FC7F7;
  color: #FFFFFF;
  max-width: 493px;
  width: 100%;
  border: none;
  transition: .2s linear
}
.feedback__form-btn:hover {
  border: 1px solid #7df100;
}
.feedback__form-btn.successful {
  background-color: #7df100;
  color: #000000;
}
.feedback__form-btn.fail {
  background-color: #a1a1a1;
  color: #ffffff;
}

.feedback__form-policy {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  font-size: 15px;
  line-height: 1.3;
  max-width: 493px;
  width: 100%;
}

.feedback__form-policy a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.feedback__form-policy a:hover {
  text-decoration: underline;
}


@media only screen and (max-width: 1650px) {
  .feedback__eclipse-left {
    width: 247px;
    height: 249px;
  }
}

@media only screen and (max-width: 1440px) {
  .feedback {
    margin-top: 120px;
  }
  .feedback__eclipse-right-group {
    width: 692px;
    height: 544px;
    transform: translate3d(300px, -220px, 0);
  }
  .feedback__eclipse-blue {
    width: 312px;
  }
  .feedback__eclipse-green {
    width: 489px;
  }
  .feedback__cloud {
    transform: translate3d(-340px, -50px, 0);
  }
}

@media only screen and (max-width: 1310px) {
  .feedback__cloud {
    width: 230px;
    height: auto;
    transform: translate3d(-310px, -50px, 0);
  }
}

@media only screen and (max-width: 1280px) {
  .feedback__eclipse-left {
    bottom: -90px;
  }
  .feedback__eclipse-right-group { /* изображения */
    left: 100%;
    transform: translate3d(-300px, -160px, 0px);
  }
}

@media only screen and (max-width: 992px) {
  .feedback {
    margin-top: 90px;
  }
  .feedback__text {
    font-size: 18px;
    line-height: 22px;
  }
  .feedback__form-input::placeholder {
    font-size: 16px;
    line-height: 19px;
  }

  .feedback__eclipse-right-group { /* изображения */
    width: 420px;
    height: 329px;
    left: 100%;
    transform: translate3d(-250px, -160px, 0px) rotate(20deg);
  }
  .feedback__eclipse-blue {
    width: 190px;
    height: auto;
  }
  .feedback__eclipse-green {
    width: 296px;
    height: auto;
  }
  .feedback__eclipse-left {
    bottom: -90px;
    left: -82px;
  }
}

@media only screen and (max-width: 830px) {
  .feedback__eclipse-blue {
    width: 162px;
    height: auto;
  }
  .feedback__eclipse-green {
    width: 253px;
    height: auto;
  }
  .feedback__eclipse-right-group {
    width: 321px;
    height: 336px;
  }
  .feedback__cloud {
    width: 151px;
    height: auto;
  }
}


@media only screen and (max-width: 768px) {
  .feedback__eclipse-right-group {
    width: 322px;
    height: 336px;
    left: 50%;
    transform: translate3d(150px, -160px, 0px);
  }
  .feedback__eclipse-blue {
    width: 162px;
    height: auto;
  }
  .feedback__eclipse-green {
    width: 297px;
    height: 253px;
  }
  .feedback__cloud {
    transform: translate3d(-230px, 90px, 0);
  }

  .form {
    margin-top: 75px;
    grid-template-columns: minmax(290px, 465px);
    grid-template-rows: 211px 211px 40px 70px;
    gap: 24px;
  }
  .feedback__form-contacts {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .feedback__form-textarea-container {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .feedback__form-policy {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    text-align: left;
  }
  .feedback__form-btn {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
}


@media only screen and (max-width: 720px) {
  .feedback__eclipse-right-group {
    width: 322px;
    height: 336px;
    left: 50%;
    transform: translate3d(150px, -80px, 0px);
  }
}


@media only screen and (max-width: 580px) {
  .feedback__eclipse-blue {
    width: 162px;
    height: auto;
  }
  .feedback__eclipse-green {
    width: 253px;
    height: auto;
  }
  .feedback__eclipse-right-group {
    width: 285px;
    height: 363px;
    transform: translate3d(30px, -80px, 0px);
  }
  .feedback__cloud {
    transform: translate3d(-70px, 111px, 0);
  }
} 

@media only screen and (max-width: 375px) {
  .feedback {
    padding-bottom: 115px;
  }
  .form {
    margin-top: 35px;
    gap: 25px;
  }
  .contacts__item {
    height: 45px;
  }
  .feedback__text {
    margin-top: 13px;
  }
  .feedback__form-contacts {
    text-align: center;
    font-size: 16px;
  }
  .feedback__form-label,
  .feedback__form-input {
    text-align: center;
    font-size: 18px;
  }
  .feedback__form-input::placeholder {
    text-align: center;
    font-size: 14px;
    line-height: 17px;
  }
  .feedback__form-textarea {
    font-size: 18px;
  }
  .feedback__eclipse-left {
    width: 98px;
    height: auto;
    bottom: -40px;
    left: 0;
  }
  .feedback__form-btn {
    margin-top: 18px;
  }
}
/* подсветить границы элементов */
/* .footer__container {
  background-color: rgba(255, 87, 87, 0.158);
} */

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

.footer {
  width: 100%;
  font-family: 'Lato';
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #fff;
}


.footer__google-map {
  display: none;
}
.footer__google-map.active {
  display: block;
}

.footer__contacts,
.footer__google-map {
  width: 100%;
  height: 436px;
}

.footer__contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(assets/images/footer/footer-background.png) center no-repeat;
  background-size: cover;
}

.footer__container {
  max-width: calc(1355px + 32px);
  width: 100%;
  height: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* блок с подробной информацией об офисе */
.footer__specific-item {
  display: none;
  opacity: 0;
  transition: opacity .2s linear;
}
.footer__specific-item.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
}
.footer__specific-item.opacity {
  opacity: 1;
}

.footer__phone {
  font-weight: 900;
  display: block;
  font-size: 34px;
  line-height: 41px;
  text-align: center;
}
.footer__worktime {
  text-align: center;
  font-size: 16px;
  line-height: 19px;
}

.footer__mail-group,
.footer__link {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.footer__mail-group a {
  margin-top: 4px;
}

.footer__address-group {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer__address-group span {
  margin-top: 10px;
}

.footer__address-group img,
.footer__mail-group img {
  width: 20px;
  height: auto;
}

.footer__requisites {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
}




/* блок с перечнем офисов */
.footer__offices-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 86px;
}
.footer__office-selector {
  margin: 0 20px;
  position: relative;
  text-align: left;
}
.footer__office-selector:hover {
  cursor: pointer;
}
.footer__office-selector.active {
  font-weight: 700;
}
.active.footer__office-selector::before {
  content: '';
  display: block;
  width: 12px;
  height: 14px;
  background: url(assets/images/footer/office-pointer.png) center no-repeat;
  background-size: cover;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(-20px, -50%, 0);
}



/* блок со стрелкой */
.footer__scroll {
  position: relative;
  height: 50px;
  display: flex;
  align-items: flex-end;
}
.footer__scroll img {
  padding-bottom: 5px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  transition: .2s linear;
}
.footer__scroll:hover {
  cursor: pointer;
}
.footer__scroll:hover img {
  transform: translate3d(-50%, -50%, 0);
}



@media only screen and (max-width: 992px) {
  /* перестроение */
  .footer__contacts,
  .footer__google-map {
    height: 522px;
  }
  .footer__container {
    max-width: calc(764px + 32px);
    justify-content: flex-start;
  }

  /* блок с селекторами офиса */
  .footer__offices-block {
    height: 100px;
    align-items:flex-end;
    position: absolute;
    right: 16px;
    bottom: 100px;
  }
  .active.footer__office-selector::before {
    left: auto;
    right: 0;
    transform: 
      translate3d(20px, -50%, 0)
      rotate(180deg);
  }
  /* блок с подробной информацией */
  .footer__specific-item.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: static;
    transform: none;
  }

  /* скролл */
  .footer__scroll {
    position: absolute;
    bottom: 320px;
    right: 16px;
  }
  
  /* блок с подробной информацией */
  .footer__phone {
    font-size: 35px;
    line-height: 43px;
  }
  .footer__worktime {
    margin-top: 13px;
    font-size: 22px;
    line-height: 26px;
  }

  .footer__address-group,
  .footer__mail-group,
  .footer__link {
    align-items: flex-start;
    text-align: left;
    font-size: 18px;
    line-height: 22px;
  }
  .footer__mail-group,
  .footer__address-group,
  .footer__link {
    margin-top: 37px;
  }

  .footer__specific-item.active {
    align-items: flex-start;
  }
  .footer__requisites {
    text-align: left;
    margin-top: 30px;
  }
}


@media only screen and (max-width: 810px) {
  .footer__container {
    max-width: 680px;
  }
  .footer__scroll img {
    width: 34px;
  }
}


@media only screen and (max-width: 650px) {
  /* перестроение в столбец */
  .footer__contacts,
  .footer__google-map {
    height: 627px;
  }
  .footer__container {
    max-width: calc(330px + 40px);
    justify-content: center;
    align-items: center;
  }
  /* скролл */
  .footer__scroll {
    bottom: auto;
    top: 35px;
    right: auto;
  }
  .active.footer__office-selector::before {
    left: auto;
    right: auto;
    left: -3;
    transform: 
      translate3d(-20px, -50%, 0);
  }
  /* список офисов */
  .footer__offices-block {
    padding-top: 20px;
    align-items: center;
    height: 80px;
    bottom: 34px;
    right: auto;
    font-size: 14px;
    line-height: 17px;
  }

  .footer__specific-item.active,
  .footer__address-group,
  .footer__mail-group,
  .footer__requisites {
    align-items: center;
    text-align: center;
  }

  .footer__phone {
    font-size: 23px;
    line-height: 28px;
  }

  .footer__worktime {
    margin-top: 5px;
    font-size: 16px;
    line-height: 19px;
  }

  .footer__link,
  .footer__mail-group,
  .footer__address-group  {
    margin-top: 25px;
  }


  .info__address-text {
    margin-top: 5px;
  }

  .footer__requisites {
    font-size: 14px;
    line-height: 17px;
  }

  .footer__scroll {
    font-size: 15px;
    line-height: 18px;
  }
  .footer__scroll img {
    width: 26px;
    top: 0;
  }
}
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}
.header--no-blur {
  background-color: rgba(255, 255, 255, 0.8);
}

.header__container {
  max-width: 1520px;
  width: 100%;
  margin: 0 100px;
}

.header__inner {
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.header__logo-wrapper {
  position: relative;
}
.header__logo-wrapper:hover {
  cursor: pointer;
}

.header__logo {
  display: block;
  width: 237px;
  height: auto;
  opacity: 1;
  z-index: 2;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  width: 450px;
}

.nav__link {
  font-family: 'Geometria';
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #0066A1;
  position: relative;
}
.highlight.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;

  display: block;
  width: 100%;
  height: 2px;
  background-color: #0066A1;
  z-index: 1;
}


/* мобильное меню */
.burger {
  display: none;
  width: 25px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.menu-strip {
  background-color: #0066A1;
  width: 100%;
  height: 2px;
  transition: .1s linear;
}
.header__logo--white {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  transition: .2s linear;
}
.nav-mobile {
  padding: 130px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;

  transform: translateY(-100%);
  transition: transform .2s linear;

  background-color: #292426D9;
  width: 100%;
  height: fit-content;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.nav__link-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 343px;
  height: 67px;

  font-family: 'Geometria';
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-decoration: none;
  color: #ffffff;
}
.nav__link-mobile:not(:last-child) {
  border-bottom: 1px solid #2FC7F7;
}
.nav__link-mobile:hover {
  text-decoration: underline;
}
.nav__link-mobile.highlight {
  color: #A6F056;
}

/* при нажатии на burger */
.burger.active {
  z-index: 1001;
}
.burger.active .menu-strip {
  background-color: #fff;
}
.header__logo--white.active {
  opacity: 1;
}
.nav-mobile.active {
  transform: translateY(0);
}




@media only screen and (max-width: 1440px) {
  .header__container {
    max-width: 1104px;
    margin: 0 20px;
  }
}

@media only screen and (max-width: 992px) {
  .header__container {
    max-width: 960px;
    margin: 0 16px;
  }
}

@media only screen and (max-width: 768px) {
  .header__inner {
    height: 65px;
  }
  .header__nav {
    display: none;
  }
  .header__container {
    max-width: 720px;
    margin: 0 25px;
  }
  .header__logo {
    width: 160px;
  }
  .burger {
    display: flex;
  }
  .header__logo--white { /* подключка моб. меню */
    display: block;
  }
  .header__nav {
    display: none;
  }
}

@media only screen and (max-width: 375px) {
  .header__container {
    max-width: 343px;
    margin: 0 15px;
  }
}
.intro {
  height: 1000px;
  position: relative;
  background-color: #2FC7F7;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.intro__container {
  max-width: 1520px;
  width: 100%;
  margin: 0 100px;
}

.intro__background {
  position: absolute;
  top: 0;
  left: 49%;
  height: 100%;
  z-index: 1;
}

.intro__background-img {
  height: 100%;
  width: auto;
  transform: translateX(1px);
}

.intro__background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right, 
    #2FC7F7,
    rgba(129, 222, 250, 0.5) 13%,
    rgba(255, 255, 255, .35) 20%
  );
}


.intro__inner {
  margin-top: 325px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  z-index: 2;
}

.intro__title {
  font-family: 'Geometria';
  font-weight: 700;
  font-size: 60px;
  line-height: 75px;
  color: #FFFFFF;
}

.intro__description-block {
  margin-top: 100px;
  height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.intro__text {
  display: block;
  font-family: 'Geometria';
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #FFFFFF;
}

.btn__intro {
  margin-top: 50px;
}
.btn__intro:hover {
  border: 2px solid #A6F056;
}

.intro__bitrix-logo {
  width: 693px;
  height: auto;
  position: absolute;
  top: 95px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
 

@media only screen and (max-width: 1440px) {
  .intro {
    height: 753px;
  }
  .intro__container {
    max-width: 1104px;
    margin: 0 20px;
  }
  .intro__background {
    left: 50%;
    height: 120%;
  }
  .intro__bitrix-logo {
    width: 553px;
    height: auto;
    right: -30px;
  }
  .intro__inner {
    margin-top: 195px;
  }
  .intro__title {
    width: 440px;
  }
  .intro__description-block {
    margin-top: 40px;
    height: 85px;
  }
  .intro__text {
    font-size: 28px;
  }
  .btn__intro {
    margin-top: 63px;
  }
}


@media only screen and (max-width: 992px) {
  .intro__inner {
    margin-top: 272px;
  }
  .intro__title {
    width: fit-content;
    font-size: 40px;
    line-height: 50px;
  }
  .intro__description-block {
    height: 74px;
  }
  .intro__text {
    font-size: 24px;
  }
  .btn__intro {
    margin-top: 68px;
  }
  .intro__background {
    left: 21%;
  }
  .intro__background-gradient {
    background: linear-gradient(
      to right, 
      #2FC7F7,
      rgba(129, 222, 250, 0.5) 30%,
      rgba(255, 255, 255, .35) 55%
    );
  }
  .intro__bitrix-logo {
    width: 500px;
    right: -120px;
  }
}

@media only screen and (max-width: 768px) {
  .intro {
    height: 635px;
  }
  .intro__container {
    margin: 0 25px;
  }
  .intro__inner {
    margin-top: 240px;
  }
  .intro__title {
    font-size: 38px;
    line-height: 48px;
  }
  .intro__description-block {
    height: 71px;
  }
  .intro__text {
    font-size: 22px;
  }
  .btn__intro {
    margin-top: 40px;
    width: 222px;
    height: 56px;
    font-size: 22px;
    line-height: 28px;
  }
  .intro__bitrix-logo {
    width: 450px;
    top: 65px;
    right: -100px;
  }
  .intro__background {
    left: 24%;
  }
}

@media only screen and (max-width: 490px) {
  .intro__title {
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 375px) {
  .intro {
    height: 665px;
  }
  .intro__container {
    margin: 0 14px;
    width: 100%;
  }
  .intro__inner {
    margin-top: 240px;
    width: 100%;
    align-items: center;

  }

  .intro__title {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
  }
  .intro__description-block {
    margin-top: 30px;
    height: 89px;
  }
  .intro__text {
    font-size: 18px;
    text-align: center;
  }
  .btn__intro {
    margin-top: 40px;
    width: 222px;
    height: 56px;
    font-size: 21px;
    line-height: 28px;
  }
  .intro__bitrix-logo {
    width: 370px;
    top: 90px;
    right: -100px;
  }
  .intro__background {
    left: -208px;
  }
  .intro__background-gradient {
    left: 206px;
    background: linear-gradient(
      to right, 
      #2FC7F7,
      rgba(129, 222, 250, 0.5) 40%,
      rgba(255, 255, 255, .35) 60%
    );
  }

}

.services {
  position: relative;
  height: 1050px;
  padding-top: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title__services {
  margin: 0px auto 0;
}

.services-background {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: -1;
  width: 1920px;
  height: 1109px;
  background: url(assets/images/services/services-bg-rastr-1920.png) center no-repeat;
  background-position: cover;
}

.services__tile-container {
  margin-top: 60px;
  padding: 0 20px;
  max-width: 1190px;
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 150px);
  gap: 50px;
}

.services__tile-element {
  padding: 0 10px;
  max-width: 570px;
  width: 100%;
  background: #2FC7F7;
  box-shadow: 5px 5px 10px rgba(0, 102, 161, 0.4);
  border-radius: 8px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: 'Geometria';
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.btn__services {
  margin-top: 70px;
  width: 276px;
  height: 70px;
  background-color: #A6F056;
  box-shadow: 5px 5px 10px rgba(0, 102, 161, 0.4);
  text-transform: uppercase;
  color: #292426;
}
.btn__services:hover {
  border: 2px solid #2FC7F7;
}

@media only screen and (max-width: 1440px) {
  .services {
    padding-top: 170px;
    height: 910px;
  }
  .services-background {
    width: 1440px;
    height: 938px;
    background: url(assets/images/services/services-bg-rastr-1440.png) center no-repeat;
  }
  .services__tile-container {
    margin-top: 60px ;
    padding: 0 10px;
    max-width: 1047px;
    gap: 24px;
  }
  .btn__services {
    margin-top: 40px;
  }
}


@media only screen and (max-width: 992px) {
  .services {
    padding-top: 200px;
    height: 850px;
  }
  .services-background {
    width: 992px;
    height: 813px;
    background: url(assets/images/services/services-bg-rastr-992.png) center no-repeat;
  }
  .services__tile-container {
    margin-top: 30px;
    max-width: 960px;
    grid-template-rows: repeat(2, 135px);
    gap: 20px;
  }
  .services__tile-element {
    font-size: 18px;
    line-height: 30px;
  }
}


@media only screen and (max-width: 768px) {
  .services {
    padding-top: 150px;
    height: 950px;
  }
  .services-background {
    width: 768px;
    height: 945px;
    background: url(assets/images/services/services-bg-rastr-768.png) center no-repeat;
  }
  .services__tile-container {
    margin-top: 30px;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .services__tile-element {
    padding: 0;
    max-width: 424px;
    height: 128px;
    font-size: 18px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 580px) {
  .services {
    padding-top: 65px;
    height: 865px;
  }
  .services-background {
    display: none;
  }
}

@media only screen and (max-width: 375px) {
  .services-background {
    display: none;
  }
  .services {
    padding-top: 65px;
    height: 800px;
  }
  .services__tile-container {
    margin-top: 50px;
    max-width: 485px;
    gap: 15px;
  }
  .services__tile-element {
    padding: 0;
    max-width: 424px;
    height: 110px;
    font-size: 14px;
    line-height: 20px;
  }
  .btn__services {
    margin-top: 30px;
  }
}
.slider {
  width: 100%;
  max-width: 3000px;
}

/* тут находится сам слайдер (без кнопок) */
.slider__inner {
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* окно, куда приезжает активный слайд */
.slider__frame {
  position: relative;
}
.slider__frame,
.slider__item {
  width: 1006px;
}


/* маска */
.slider__mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    #FFFFFF,
    transparent 10%,
    transparent 90%,
    #FFFFFF
  );
}
.slider__mask::before, .slider__mask::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 99.8%;
  z-index: 5;
}
.slider__mask::before {
  background: linear-gradient(
    /* to left, */
    to right,
    #FFFFFF,
    rgba(255, 255, 255, 0.6) 10%,
    rgba(255, 255, 255, 0.6) 10%,
    #FFFFFF
  );
}
.slider__mask::after {
  right: -99.8%;
  background: linear-gradient(
    /* to right,  */
    to left,
    #FFFFFF,
    rgba(255, 255, 255, 0.6) 10%,
    rgba(255, 255, 255, 0.6) 10%,
    #FFFFFF
  );
}


.slider__items-container {
  width: fit-content;
  display: flex;
  transition: .9s ease-in-out;
  transform: translateX(0px);
}
.slider__item {
  position: relative;
}
.slider__item-img {
  display: block;
  width: 100%;
  height: auto;
}
.slider__item-img--small {
  display: none;
}

/* подписи */
.slider__item__label {
  position: absolute;
  top: 70%;
  left: 0;
  width:  490px;
  height: 62px;
  background-color: #2FC7F7;
  border-radius: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: 'Geometria';
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0;

  transition: opacity .5s linear;
}
.slider__item.active .slider__item__label {
  opacity: 1;
}

.slider__item__label span {
  transform: translateX(100%);
  pointer-events: none;
}

/* кнопки */
.slider__buttons {
  margin: 78px auto 10px;
  display: flex;
  justify-content: space-around;
  /* width: 489px; */
  gap: 16px;
  width: min-content;
}

.slider__btn-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 85px;
}

.slider__btn {
  width: 100%;
  height: 5px;
  background-color: #2FC7F7;
}

.slider__btn.active {
  width: 89px;
  height: 7px;
  background-color: #A6F056;
}

.slider__btn:hover {
  width: 89px;
  height: 7px;
  cursor: pointer;
}


[data-slider-item-num="1"]::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background: url(assets/images/slider/slide-5-projects.png);
}

[data-slider-item-num="5"]::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background: url(assets/images/slider/slide-1-contact.png);
}


@media only screen and (max-width: 992px) {
  .slider__frame,
  .slider__item {
    /* width: 960px; */
    width: 100vw;
    overflow: hidden;
  }
  .slider__btn-container {
    width: 65px;
    height: 3px;
  }
  .slider__btn.active {
    width: 67px;
    height: 5px;
  }
  .slider__mask::before,
  .slider__mask::after,
  [data-slider-item-num="1"]::before,
  [data-slider-item-num="5"]::after {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .slider__frame,
  .slider__item {
    width: 696px;
  }
  .slider__btn-container {
    width: 47px;
    height: 4px;
  }
  .slider__btn.active {
    width: 67px;
    height: 6px;
  }
  .slider__inner {
    margin: 0 16px;
  }
  .slider__item__label {
    width: 357px;
    height: 45px;
  }
}

@media only screen and (max-width: 580px) {
  .slider__item__label {
    width: 276px;
    height: 45px;
    font-size: 16px;
    line-height: 20px;
  }
  .slider__buttons {
    margin: 30px auto 0;
  }
  .slider__frame,
  .slider__item {
    width: 343px;
    height: 338px;
  }
  .slider__btn-container {
    width: 47px;
    height: 3px;
  }
  .slider__btn.active {
    width: 49px;
    height: 5px;
  }
  .slider__item-img {
    display: none;
  }
  .slider__item-img--small {
    display: block;
  }
  .slider__item__label {
    width: 276px;
    height: 45px;
  }
}
/*Widget callback*/
.widget_callback {
  font-size: 14px;
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 10000;
}

.widget_callback__call-icon {
  display: block;
  background: url(assets/images/icons/phone_widget.svg) 50% center no-repeat;
  background-size: auto;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.widget_callback__opened-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.widget_callback__call-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #fd9800;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  color: white;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

.atlassin_button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: rgba(253, 152, 0, 0.5);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 10px 10px;
  cursor: pointer;
}


.margin-top {
  margin-top: 30px;
}

.display_flex_center_align {
  display: flex;
  align-items: center;
}


.widget_callback__close-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-size: auto;
  width: 95px;
  height: 36px;
  border-radius: 1px 0 0 10px;
  margin: 0;
  padding: 10px;
  background-color: #fd9800;
  position: relative;
  cursor: pointer;
  text-align: right;
  color: white;
}

.widget_callback__close-button::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  left: 10px;
  top: 13px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
}

.widget_callback__open-button {
  display: none;
  background: url(assets/images/icons/phone_widget.svg) 90% center no-repeat;
  background-size: auto;
  width: 45px;
  height: 36px;
  border-radius: 10px 0 0 10px;
  margin: 0;
  padding: 10px;
  background-color: #fd9800;
  position: relative;
  cursor: pointer;
}

.widget_callback__open-button.js-callback-widget-open::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  left: 10px;
  top: 13px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(-135deg);
}

.widget_callback__form-wrapper {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.5);
}

.widget_callback__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 350px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: white;
  padding: 20px;
  border: 2px solid #fd9800;
  border-radius: 10px;
}

.widget_callback__form-close-button {
  background: url(assets/images/burger-close.svg) 50% top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.widget_callback__form-title {
  font-size: 24px;
  font-weight: 800;
  color: #fd9800;
  padding: 10px 0;
}

.widget_callback__form-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 32px;
}

.widget_callback__phone {
  width: 50%;
  box-shadow: none;
  font-size: 16px;
  border: 1px solid #939393;
  border-radius: 2px;
  padding: 5px;
}

.widget_callback__submit-button,
.widget_callback__submit-button:hover,
.widget_callback__submit-button:focus {
  width: 50%;
  margin-left: 10px;
  border-radius: 2px;
  border: none;
  background-color: #fd9800;
  color: #FFF;
  font-size: 16px;
  text-align: center;
  outline: none;
}

.widget_callback__submit-button:disabled {
  opacity: 0.5;
  cursor: no-drop;
}

.widget_callback__form-success-sent {
  color: #49ab39;
  display: none;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.widget_callback__form-error-sent {
  display: none;
  color: #ff170b;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.widget_callback__form-error {
  border-color: #ff170b;
}

.widget_callback__form-error::placeholder {
  color: #ff170b;
}

.widget_callback__form-text {
  font-size: 16px;
}


@media only screen and (max-width: 1200px) {
  .widget_callback__opened-block {
      display: none;
  }
  .widget_callback__open-button {
      display: block;
  }
}

@media only screen and (max-width: 550px) {
  .widget_callback__form {
      width: 90vw;
      height: 70vh;
  }
}
/* стили для слайдера 
лежат в файле slider.css */

.section-title__customization {
  margin: 90px auto 80px;
}

.customization__text-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.customization__eclipse-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-700px);
  z-index: -1;
}

.customization__eclipse-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}


@media only screen and (max-width: 1440px) {
  .section-title__customization {
    margin: 90px auto 60px;
  }
}

@media only screen and (max-width: 992px) {
  .section-title__customization {
    margin: 50px auto 30px;
    font-size: 24px;
    line-height: 30px;
  }
  .customization__eclipse-top {
    width: 155px;
    height: auto;
    left: 10px;
    transform: translateX(0);
  }
  .customization__eclipse-right {
    width: 116px;
    height: 105px;
    bottom: -36px;
    right: 0;
  }
}

@media only screen and (max-width: 580px) {
  .section-title {
    font-size: 20px;
    line-height: 25px;
  }
  .section-title__customization {
    margin: 35px 0 35px;
  }
  .customization__eclipse-top {
    width: 88px;
    height: auto;
  }
  .customization__eclipse-right {
    width: 65px;
  }
}
.formSpinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .2s linear;
}

.formSpinner.active {
  opacity: 1;
  visibility: visible;
}


.formSpinner .spinnerInner {
  width: 248px;
  height: 248px;
  display: inline-block;
  position: relative;
  visibility: none;
  opacity: 0;
}
.formSpinner .spinnerInner::after,
.formSpinner .spinnerInner::before {
  content: '';  
  box-sizing: border-box;
  width: 248px;
  height: 248px;
  border-radius: 50%;
  border: 5px solid var(--color-form-spinner);
  position: absolute;
  left: 0;
  top: 0;
  animation: formSpinnerAnimation 2s linear infinite;
}
.formSpinner .spinnerInner::after {
  animation-delay: 1s;
}

.formSpinner.active .spinnerInner {
  visibility: visible;
  opacity: 1;
}

@keyframes formSpinnerAnimation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
:root {
  --deployForm-inputPadding: 11px;
  --deployForm-inputHeight: 48px;
  --deploy-contact-form-color: #ED7D31;
}

/* сброс браузерных стилей */
.deployForm, 
.deployForm *, 
.deployForm *::before, 
.deployForm *::after {
  box-sizing: border-box;
}

.deployForm input[type='number'] {
  -moz-appearance:textfield;
}
.deployForm input::-webkit-outer-spin-button,
.deployForm input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


.deployForm {
  margin: 0 auto;
  padding: 24px 58px;
  width: 100%;
  max-width: 746px;

  font-family: 'Lato';
  background-color: #fff;
  border-radius: 9px;
  position: relative;
  overflow: hidden;
}

.deployFormShowBorder {
  border: 1px solid #E9E9E9;
}

.deployForm__title {
  margin: 0;
  margin-bottom: 16px;
  color: var(--deploy-contact-form-color);
  text-align: center;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}
.deployForm__subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  color: #9E9E9E;
}


.deployForm__main-inputs-section {
  margin-bottom: 24px;
  display: flex;
  column-gap: 24px;
}

.deployForm__contacts-block,
.deployForm__textarea-block {
  width: 100%;
}


/* input item */
.deployForm__inputComponent {
  margin-bottom: 32px;
  position: relative;
}
.deployForm__inputComponent:last-child {
  margin-bottom: 0;
}
/* плейсхолдер */
.deployForm__inputComponent-label {
  padding: 0 calc(var(--deployForm-inputPadding) / 2);
  max-width: 96%;
  position: absolute;
  top: 50%;
  left: calc(var(--deployForm-inputPadding) / 2);
  z-index: 1;
  transform: translateY(-50%);

  color: #9E9E9E;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  background-color: #fff;

  pointer-events: none;
  transition: .1s linear;
}
.deployForm__inputComponent:hover:not(.deployForm__inputComponent.active) .deployForm__inputComponent-label {
  top: calc(50% - 3px);
}

.deployForm__inputComponent-input {
  padding: var(--deployForm-inputPadding);
  width: 100%;
  height: var(--deployForm-inputHeight);
  border: 1px solid #BEBEBE;
  border-radius: 3px;
  outline: none;
  font-size: 14px;
}



/* ошибки */
.deployForm__inputComponent-errorText {
  position: absolute;
  top: calc(100% + 1px);
  left: var(--deployForm-inputPadding);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #B00020;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: .1s linear;
}

.deployForm__inputComponent-errorLogo {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: .1s linear;
}


/* блок Textarea */
.deployForm__textarea-block {
  display: flex;
  position: relative;
  height: 128px;
}
.deployForm__inputComponent-input--textarea {
  height: auto;
  resize: none;
}
.deployForm__inputComponent-label--textarea {
  top: calc(var(--deployForm-inputHeight) / 2);
}
.deployForm__inputComponent:hover:not(.deployForm__inputComponent.active) .deployForm__inputComponent-label--textarea {
  top: calc(var(--deployForm-inputHeight) / 2 - 2px);
}


/* Активные items */
.deployForm__inputComponent.active .deployForm__inputComponent-label,
.deployForm__inputComponent.active .deployForm__inputComponent-label--textarea {
  top: 0%;
}

/* добавить file */

.deployForm__inputComponent-input-file {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 0;
}
.deployForm__inputFileComponent-label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  color: var(--deploy-contact-form-color);
  cursor: pointer;
  transition: 0.3s ease-out;
  font-weight: bold;
}
.deployForm__inputFileComponent-img path {
  fill: var(--deploy-contact-form-color);
}
.deployForm__inputFileComponent-text {
  padding-left: 10px;
}
.label--hidden {
  display: none;
}
.deployForm__inputFileComponent-name-container {
  position: absolute;
  display: flex;
  display: none;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  gap: 10px;
  top: 8px;
}
.file-name--visible {
  display: flex;
}
.deployForm__inputFileComponent-name {
  padding: 8px;
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;  
  background-color: #E9E9E9;
  border-radius: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.deployForm__delete-file {
  cursor: pointer;
}
/* конец стилей для добавить file */

.deployForm__agreement-wrapper {
  margin-bottom: 17px;
  display: flex;
}
.deployForm__agreement-label {
  display: inline;
  cursor: pointer;
  font-size: 14px;
  color: #535353;
  line-height: 1.2;
  transition: .1s linear;
}
.deployForm__agreement-checkbox-wrapper {
  margin: 0 17px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(1px); /* маленькая поправка на центр */
}

.deployForm__agreement-checkbox-visible {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #C4C4C4;
  border-radius: 3px;
  cursor: pointer;
  transition: .1s linear;
}
.deployForm__agreement-checkbox-visible:hover {
  border-color: #4EB857;
}

.deployForm__agreement-wrapper.active .deployForm__agreement-checkbox-visible {
  background-color: #4EB857;
  border-color: #4EB857;
}

.deployForm__agreement-checkbox-visible__check-mark {
  display: block;
  pointer-events: none;
}

.deployForm__agreement-checkbox-hidden {
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  position: absolute;
  z-index: -100;
}



/* текст политики конфиденциальности */
.deployForm__personalDataText {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.1;
  color: #818181;
  transition: .2s linear;
  overflow: hidden;
  height: 0px;
}

/* это значение захардкожено, но так быть не должно */
/* пришлось делать по-быстрому */
.deployForm__personalDataText.active {
  height: auto;
  margin-bottom: 40px;
}
.deployForm__personalDataText-inner {
  transition: .2s linear;
  transform: translateY(-100%);
  text-align: left;
}
.deployForm__personalDataText.active .deployForm__personalDataText-inner {
  transform: translateY(0%);
}

.deployForm__personalDataText-link {
  text-decoration: none;
  color: var(--deploy-contact-form-color);
  position: relative;
}
.deployForm__personalDataText-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--deploy-contact-form-color);
  pointer-events: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}


.deployForm__agreement-info {
  line-height: 1;
}

.deployForm__agreement-toggle {
  text-decoration: none;
  color: var(--deploy-contact-form-color);
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}
.deployForm__agreement-toggle::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--deploy-contact-form-color);
  pointer-events: none;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

.deployForm__submit-btn {
  margin: 0 auto;
  max-width: 332px;
  width: 100%;
  height: 55px;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lato';
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background-color: var(--deploy-contact-form-color);
  opacity: 1;
  border: none;
  outline: none;
  cursor: pointer;
  transition: .2s linear;
}

/* анти-бутстрап */
.deployForm__submit-btn:focus {
  outline: none;
}

.deployForm__submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* 1024 */
@media (max-width: 1023px) {
  .deployForm {
    padding: 24px 37px;
  }
}

@media (max-width: 767px) {
  .deployForm {
    padding: 24px 16px;
  }
}


@media (max-width: 670px) {
  .deployForm {
    width: 100%;
    max-width: 420px;
    /* border-radius: 0; */
  }
  .deployFormShowBorder {
    border: none;
  }
  .deployForm__title {
    font-size: 16px;
  }
  .deployForm__subtitle {
    margin: 0 auto 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 260px;
    font-size: 14px;
  }

  /* основные поля перестраиваются в колонку */
  .deployForm__main-inputs-section {
    flex-direction: column;
    row-gap: 24px;
  }
  .deployForm__inputComponent {
    margin-bottom: 24px;
  }
  .deployForm__textarea-block {
    height: 153px;
  }

  .deployForm__agreement-toggle {
    text-decoration: underline;
  }
  .deployForm__agreement-toggle::after {
    display: none;
  }

  .deployForm__personalDataText.active {
    height: 165px;
  }
}

/* .deployFormNotification__errorContent {
  display: none;
}
.deployFormNotification.error .deployFormNotification__successContent {
  display: none;
}
.deployFormNotification.error .deployFormNotification__errorContent {
  display: block;
} */


.deployForm__inputComponent.error .deployForm__inputComponent-input {
  border-color: #B00020;
}

.deployForm__inputComponent.error .deployForm__inputComponent-label {
  color: #B00020;
}

.deployForm__inputComponent.error .deployForm__inputComponent-errorText,
.deployForm__inputComponent.error .deployForm__inputComponent-errorLogo {
  visibility: visible;
  opacity: 1;
}

/* текст ошибок */
.deployForm__inputComponent .errorTextEmpty,
.deployForm__inputComponent .errorTextWrongValue {
  display: none;
}

.deployForm__inputComponent.error.empty .errorTextEmpty,
.deployForm__inputComponent.error.wrongValue .errorTextWrongValue {
  display: inline;
}


/* чекбокс */
.deployForm__agreement-wrapper.error .deployForm__agreement-checkbox-visible {
  border-color: #B00020;
}
.deployForm__agreement-wrapper.error .deployForm__agreement-label {
  color: #B00020;
}
/* уведомление об отправке */
.deployFormNotification {
  padding: 16px 58px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: translateY(100%);
  background-color: #fff;
  box-shadow: 0px -3px 40px rgba(0, 0, 0, 0.13);
  visibility: hidden;
  transition: .3s linear;
}

.deployFormNotification.active {
  transform: translateY(0%);
  visibility: visible;
}


.deployFormNotification__title {
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.deployFormNotification__title-img {
  margin-right: 26px;
  display: block;
}

.deployFormNotification__title-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
}

.deployFormNotification__title--success
.deployFormNotification__title-text {
  color: #4EB857;
}

.deployFormNotification__title--error {
  display: flex;
  color: #FF6B00;
}

.deployFormNotification__subtitle {
  margin-bottom: 77px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #9C9C9C;
}

.deployFormNotification__closeCross {
  position: absolute;
  top: 11px;
  right: 58px;
  z-index: 1;

  cursor: pointer;
}



@media (max-width: 670px) {
  /* плашка с информацией */
  .deployFormNotification {
    padding: 32px 16px;
  }
  .deployFormNotification__closeCross {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  .deployFormNotification__subtitle {
    font-size: 14px;
  }
}
.deployForm .submitCaptcha {
  padding: 16px 58px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: translateY(100%);
  background-color: #fff;
  box-shadow: 0px -3px 40px rgba(0, 0, 0, 0.13);
  visibility: hidden;
  transition: .3s linear;
}

.deployForm .submitCaptcha.active {
  transform: translateY(0%);
  visibility: visible;
}

.deployForm .submitCaptcha__closeCross {
  position: absolute;
  top: 11px;
  right: 58px;
  z-index: 1;
  cursor: pointer;
}


.deployForm .submitCaptcha__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #535353;
}

.deployForm .submitCaptcha__captcha-img {
  min-height: 30px;
}

.deployForm .submitCaptcha__inputs-wrapper {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.deployForm .submitCaptcha__input-component {
  margin-right: 16px;
  margin-bottom: 0;
  max-width: 308px;
  width: 100%;
}

.submitCaptcha__updateCaptcha {
  width: 21px;
  height: 21px;
  cursor: pointer;
}

.deployForm .submitCaptcha__btn {
  margin-left: 0;
  margin-right: auto;
  width: 100%;
  max-width: 308px;
}


:root {
  --callbackWidget-inputPadding: 11px;
  --callbackWidget-inputHeight: 48px;
  --callbackWidget-color: #ED7D31;
}

/* сброс браузерных стилей */
.callbackWidget, 
.callbackWidget *, 
.callbackWidget *::before, 
.callbackWidget *::after {
  box-sizing: border-box;
}

.callbackWidget input[type='number'] {
  -moz-appearance:textfield;
}
.callbackWidget input::-webkit-outer-spin-button,
.callbackWidget input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


.callbackWidget {
  margin: 0 auto;
  padding: 32px 62px;
  width: 100%;
  max-width: 560px;

  font-family: 'Lato';
  background-color: #fff;
  border-radius: 9px;
  position: relative;
  overflow: hidden;

}

.callbackWidgetShowBorder {
  border: 1px solid #E9E9E9;
}

.callbackWidget__closeCross {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.callbackWidget__title {
  margin: 0;
  margin-bottom: 16px;
  color: #535353;
  text-align: center;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}
.callbackWidget__subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  color: #9E9E9E;
  text-align: left;
}


/* input item */
.callbackWidget__inputComponent {
  margin-bottom: 32px;
  position: relative;
}

/* плейсхолдер */
.callbackWidget__inputComponent-label {
  padding: 0 calc(var(--callbackWidget-inputPadding) / 2);
  max-width: 96%;
  position: absolute;
  top: 50%;
  left: calc(var(--callbackWidget-inputPadding) / 2);
  z-index: 1;
  transform: translateY(-50%);

  color: #9E9E9E;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  background-color: #fff;

  pointer-events: none;
  transition: .1s linear;
}
.callbackWidget__inputComponent:hover:not(.callbackWidget__inputComponent.active) .callbackWidget__inputComponent-label {
  top: calc(50% - 3px);
}

.callbackWidget__inputComponent-input {
  padding: var(--callbackWidget-inputPadding);
  width: 100%;
  height: var(--callbackWidget-inputHeight);
  border: 1px solid #BEBEBE;
  border-radius: 3px;
  outline: none;
}



/* ошибки */
.callbackWidget__inputComponent-errorText {
  position: absolute;
  top: calc(100% + 1px);
  left: var(--callbackWidget-inputPadding);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #B00020;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: .1s linear;
}

.callbackWidget__inputComponent-errorLogo {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: .1s linear;
}


/* Активные items */
.callbackWidget__inputComponent.active .callbackWidget__inputComponent-label {
  top: 0%;
}



.callbackWidget__agreement-wrapper {
  margin-bottom: 17px;
  display: flex;
}
.callbackWidget__agreement-label {
  display: inline;
  cursor: pointer;
  font-size: 14px;
  color: #535353;
  transition: .1s linear;
}
.callbackWidget__agreement-checkbox-wrapper {
  margin-right: 17px;
  margin-bottom: 0; /* анти-бутстрап */
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(1px);  /* поправка на центр */
}

.callbackWidget__agreement-checkbox-visible {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #C4C4C4;
  border-radius: 3px;
  cursor: pointer;
  transition: .1s linear;
}
.callbackWidget__agreement-checkbox-visible:hover {
  border-color: #4EB857;
}

.callbackWidget__agreement-wrapper.active .callbackWidget__agreement-checkbox-visible {
  background-color: #4EB857;
  border-color: #4EB857;
}

.callbackWidget__agreement-checkbox-visible__check-mark {
  display: block;
  pointer-events: none;
}

.callbackWidget__agreement-checkbox-hidden {
  display: inline-block;
  width: 0px;
  height: 0px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}



/* текст политики конфиденциальности */
.callbackWidget__personalDataText {
  margin-bottom: 40px;
  font-size: 10px;
  line-height: 1.1;
  color: #818181;
  height: 0px;
  overflow: hidden;
  transition: .2s linear;
}

.callbackWidget__personalDataText-inner {
  transform: translateY(-100%);
  transition: .2s linear;
}

.callbackWidget__personalDataText.active {
  height: auto;
}
.callbackWidget__personalDataText.active .callbackWidget__personalDataText-inner {
  transform: translateY(0%);
}

.callbackWidget__personalDataText-link {
  text-decoration: none;
  color: var(--callbackWidget-color);
  position: relative;
}
.callbackWidget__personalDataText-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--callbackWidget-color);
  pointer-events: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}



.callbackWidget__agreement-info {
  line-height: 1.2;
}

.callbackWidget__agreement-toggle {
  text-decoration: none;
  color: var(--callbackWidget-color);
  position: relative;
  font-size: 14px;
  cursor: pointer;
}
.callbackWidget__agreement-toggle::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--callbackWidget-color);
  pointer-events: none;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

.callbackWidget__submit-btn {
  margin: 0 auto;
  max-width: 332px;
  width: 100%;
  height: 55px;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lato';
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background-color: var(--callbackWidget-color);
  opacity: 1;
  border: none;
  cursor: pointer;
  transition: .2s linear;
}
.callbackWidget__submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* анти-бутстрап */
.callbackWidget__submit-btn:focus {
  outline: none;
}


@media (max-width: 635px) {
  .callbackWidget {
    padding: 32px 16px 24px;
    width: 100%;
    max-width: 320px;
  }
  .callbackWidget__title {
    font-size: 16px;
  }
  .callbackWidget__subtitle {
    margin: 0 auto 24px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 14px;
  }

  .callbackWidget__inputComponent {
    margin-bottom: 24px;
  }

  .callbackWidget__personalDataText {
    margin-bottom: 24px;
  }

  .callbackWidget__agreement-toggle {
    text-decoration: underline;
  }
  .callbackWidget__agreement-toggle::after {
    display: none;
  }
}
.callbackWidget__inputComponent.error .callbackWidget__inputComponent-input {
  border-color: #B00020;
}

.callbackWidget__inputComponent.error .callbackWidget__inputComponent-label {
  color: #B00020;
}

.callbackWidget__inputComponent.error .callbackWidget__inputComponent-errorText,
.callbackWidget__inputComponent.error .callbackWidget__inputComponent-errorLogo {
  visibility: visible;
  opacity: 1;
}

/* текст ошибок */
.callbackWidget__inputComponent .errorTextEmpty,
.callbackWidget__inputComponent .errorTextWrongValue {
  display: none;
}

.callbackWidget__inputComponent.error.empty .errorTextEmpty,
.callbackWidget__inputComponent.error.wrongValue .errorTextWrongValue {
  display: inline;
}


/* чекбокс */
.callbackWidget__agreement-wrapper.error .callbackWidget__agreement-checkbox-visible {
  border-color: #B00020;
}
.callbackWidget__agreement-wrapper.error .callbackWidget__agreement-label {
  color: #B00020;
}
.callbackWidgetMask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -10;

  display: flex;
  justify-content: center;
  align-items: center;

  visibility: hidden;
  opacity: 0;
  /* transition: background-color .3s linear, opacity .3s linear; */
  background-color: rgba(0, 0, 0, 0.6);
}

.callbackWidgetMask.active {
  visibility: visible;
  opacity: 1;
  z-index: 100;
  transition: background-color .3s linear, opacity .3s linear;
}
.callbackWidgetBtn, 
.callbackWidgetBtn *,
.callbackWidgetBtn *::before,
.callbackWidgetBtn *::after {
  box-sizing: border-box;
}


.callbackWidgetBtn {
  height: 86px;
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 5;

  font-family: 'Lato';
  color: #fff;
}


.callbackWidgetBtn__order {
  padding: 10px;
  width: 178px;
  height: 50px;
  /* display: none; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.1;
  font-weight: 600;

  font-size: 16px;

  background-color: var(--callbackWidget-color);
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
}
.callbackWidget__phone-icon {
  display: block;
  width: 25px;
  height: auto;
  pointer-events: none;
}
.callbackWidgetBtn__order-text {
  pointer-events: none;
  font-size: 16px;
  font-family: 'Lato';
}


.callbackWidgetBtn__collapse {
  margin-left: auto;
  padding: 10px;
  width: 95px;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Lato';
  text-align: right;

  font-size: 14px;
  color: #fff;
  background-color: var(--callbackWidget-color);
  position: relative;
  cursor: pointer;
  border-radius: 1px 0 0 10px;
}

.callbackWidgetBtn__collapse-arrow {
  width: 8px;
  height: 8px;
  left: 10px;
  top: 13px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg) ;
  pointer-events: none;
}
.callbackWidgetBtn__collapse-text {
  pointer-events: none;
  font-size: 14px;
  font-family: 'Lato';
}


.callbackWidgetBtn__expand {
  margin: 0 0 0 auto;
  padding: 0;
  width: 45px;
  height: 36px;
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 0 10px;
  background-color: var(--callbackWidget-color);
  cursor: pointer;
}


.callbackWidgetBtn.active .callbackWidgetBtn__order,
.callbackWidgetBtn.active .callbackWidgetBtn__collapse {
  display: flex;
}

.callbackWidgetBtn.active .callbackWidgetBtn__expand {
  display: none;
}


@media (max-width: 1200px) {
  .callbackWidgetBtn__expand {
    display: flex;
  }
  .callbackWidgetBtn__order,
  .callbackWidgetBtn__collapse {
      display: none;
  }
}
/* уведомление об отправке */
.callbackWidgetNotification {
  padding: 16px 58px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: translateY(100%);
  background-color: #fff;
  box-shadow: 0px -3px 40px rgba(0, 0, 0, 0.13);
  visibility: hidden;
  transition: .3s linear;
}

.callbackWidgetNotification.active {
  transform: translateY(0%);
  visibility: visible;
}

.callbackWidgetNotification__title {
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.callbackWidgetNotification__title-img {
  margin-right: 26px;
  display: block;
}

.callbackWidgetNotification__title-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
}

.callbackWidgetNotification__subtitle {
  margin-bottom: 77px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #9C9C9C;
}

.callbackWidgetNotification__closeCross {
  position: absolute;
  top: 11px;
  right: 58px;
  z-index: 1;

  cursor: pointer;
}



@media (max-width: 670px) {
  /* плашка с информацией */
  .callbackWidgetNotification {
    padding: 32px 16px;
  }
  .callbackWidgetNotification__closeCross {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  .callbackWidgetNotification__subtitle {
    font-size: 14px;
  }
}
.callbackWidget .submitCaptcha {
  padding: 16px 58px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: translateY(100%);
  background-color: #fff;
  box-shadow: 0px -3px 40px rgba(0, 0, 0, 0.13);
  visibility: hidden;
  transition: .3s linear;
}

.callbackWidget .submitCaptcha.active {
  transform: translateY(0%);
  visibility: visible;
}

.callbackWidget .submitCaptcha__closeCross {
  position: absolute;
  top: 11px;
  right: 58px;
  z-index: 1;
  cursor: pointer;
}


.callbackWidget .submitCaptcha__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #535353;
}

.callbackWidget .submitCaptcha__captcha-img {
  min-height: 30px;
}

.callbackWidget .submitCaptcha__inputs-wrapper {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.callbackWidget .submitCaptcha__input-component {
  margin-right: 16px;
  margin-bottom: 0;
  max-width: 308px;
  width: 100%;
}

.callbackWidget .submitCaptcha__updateCaptcha {
  width: 21px;
  height: 21px;
  cursor: pointer;
}

.callbackWidget .submitCaptcha__input-component {
  max-width: 308px;
}


.callbackWidget .submitCaptcha__btn {
  margin-left: 0;
  margin-right: auto;
  width: 100%;
  max-width: 308px;
}
/*
ttf	   TrueType
otf    OpenType
woff   Web Open File Format
woff2  Web Open File Format
*/


/* Montserrat */
@font-face { 
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-100-Thin.ttf) format('TrueType');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-100-ThinItalic.ttf) format('TrueType');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-200-ExtraLight.ttf) format('TrueType');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-200-ExtraLightItalic.ttf) format('TrueType');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-300-Light.ttf) format('TrueType');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-300-LightItalic.ttf) format('TrueType');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-400-Regular.ttf) format('TrueType');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-400-RegularItalic.ttf) format('TrueType');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-500-Medium.ttf) format('TrueType');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-500-MediumItalic.ttf) format('TrueType');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-400-Regular.ttf) format('TrueType');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-400-RegularItalic.ttf) format('TrueType');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-500-Medium.ttf) format('TrueType');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-500-MediumItalic.ttf) format('TrueType');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-600-SemiBold.ttf) format('TrueType');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-600-SemiBoldItalic.ttf) format('TrueType');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-700-Bold.ttf) format('TrueType');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-700-BoldItalic.ttf) format('TrueType');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-800-ExtraBold.ttf) format('TrueType');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-800-ExtraBoldItalic.ttf) format('TrueType');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-900-Black.ttf) format('TrueType');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url(_/_/reusable/fonts/Montserrat/Montserrat-900-BlackItalic.ttf) format('TrueType');
  font-weight: 900;
  font-style: italic;
}

