@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.btn {
  padding: 10px 20px;
  font-family: "Montserrat", Verdana, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
}
.btn__icon {
  margin-left: 10px;
  width: 0.8em;
  height: 0.8em;
  stroke: #fff;
  transition: transform 0.3s linear, stroke 0.3s ease-in-out;
}
.btn:hover {
  color: #daff01;
  border-color: #daff01;
}
.btn:hover .btn__icon {
  stroke: #daff01;
  transform: rotate(45deg);
}
.btn:active {
  color: #fff;
  border-color: #fff;
}
.btn:active .btn__icon {
  stroke: #fff;
}
.btn-fill {
  color: #7db9fe;
  border-color: #7db9fe;
}
.btn-fill .btn__icon {
  stroke: #7db9fe;
}
.btn-fill:active {
  color: #7db9fe;
  border-color: #7db9fe;
}
.btn-fill:active .btn__icon {
  stroke: #7db9fe;
}
.btn-dark {
  color: #000;
  border-color: #000;
}
.btn-dark .btn__icon {
  stroke: #000;
}
.btn-dark:active {
  color: #000;
  border-color: #000;
}
.btn-dark:active .btn__icon {
  stroke: #000;
}
.btn-reverse {
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.btn-reverse .btn__icon {
  transform: scaleX(-1);
}
.btn-reverse:hover .btn__icon {
  transform: scaleX(-1) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
  }
}
input,
textarea {
  padding: 10.5px 15px;
  border: 1px solid #000;
  border-radius: 50px;
  font-family: "Montserrat", Verdana, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  outline: none;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #000;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: 1;
}

textarea {
  height: 150px;
  border-radius: 25px;
  resize: none;
}

@media screen and (max-width: 768px) {
  input,
  textarea {
    padding: 8px 10px;
    font-size: 14px;
  }
  textarea {
    height: 100px;
  }
}
.custom-select {
  width: 80px;
  position: relative;
  z-index: 1;
}
.custom-select .select-trigger {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-select .select-trigger.active {
  border-color: #7db9fe;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}
.custom-select .select-text {
  color: #fff;
}
.custom-select .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
  stroke: #fff !important;
  fill: #fff;
  transition: transform 0.3s ease;
}
.custom-select .select-options {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #7db9fe;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
}
.custom-select .select-options.active {
  max-height: 280px;
  opacity: 1;
  overflow-y: auto;
  border-top: 1px solid #7db9fe;
}
.custom-select .select-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  font-size: 15px;
}
.custom-select .select-option:hover {
  background: #f0f2ff;
  color: #667eea;
}
.custom-select .select-option.selected {
  color: #3055cf;
}
.custom-select .select-option:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.custom-select .result {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  color: #666;
  font-size: 14px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-select .result.has-value {
  color: #333;
  font-weight: 500;
}

.burger {
  flex-shrink: 0;
  margin-left: 10px;
  padding: 0;
  width: 34px;
  height: 22px;
  position: relative;
  z-index: 20;
  cursor: pointer;
  background-color: transparent;
}
.burger__line {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  background-color: #fff;
}
.burger__line:nth-child(1) {
  top: 0;
  transform: translateX(-50%) translateY(0);
  transition: top 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87) 0.3s, transform 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87);
}
.burger__line:nth-child(2) {
  top: 50%;
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 0.3s;
}
.burger__line:nth-child(3) {
  top: 100%;
  transform: translateX(-50%) translateY(-100%);
  transition: top 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87) 0.3s, transform 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87);
}

.burger_open .burger__line:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: top 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87), transform 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87) 0.3s;
}
.burger_open .burger__line:nth-child(2) {
  opacity: 0;
}
.burger_open .burger__line:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transition: top 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87), transform 0.3s cubic-bezier(0.21, 0.83, 0.26, 0.87) 0.3s;
}

.accordion {
  max-width: 1050px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.accordion__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.accordion__item.open .accordion__icon {
  stroke: #3055cf;
  transform: scaleY(-1);
}
.accordion__item.open .accordion__content {
  margin-top: 20px;
  opacity: 1;
}
.accordion__btn {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0;
  transition: background 0.3s ease-in-out;
  will-change: background, border;
}
.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 10px;
  stroke: #000;
  transition: all 0.3s linear;
}
.accordion__content {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  color: #24383b;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: max-height, margin-top;
  transition: all 0.3s ease-out;
  box-sizing: content-box;
}
.accordion__content > *:not(:first-child) {
  margin-top: 7px;
}
.accordion__content a {
  font-size: 13px;
  font-weight: 600;
  color: #3055cf;
}
.accordion__content p {
  line-height: 1.4;
}
.accordion__content ul {
  list-style-position: inside;
}

@media screen and (max-width: 768px) {
  .accordion {
    gap: 25px;
  }
  .accordion__item {
    padding-bottom: 15px;
  }
  .accordion__btn {
    font-size: 18px;
  }
  .accordion__content {
    font-size: 16px;
  }
  .accordion__item.open .accordion__content {
    margin-top: 15px;
  }
}
.animation {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: none;
}
.animation.animated {
  opacity: 1;
}
.animation.animated.fadeInLeft {
  animation-name: fadeInLeft;
}
.animation.animated.fadeInRight {
  animation-name: fadeInRight;
}
.animation.animated.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.tooltip {
  position: fixed;
  z-index: 1;
  right: 30px;
  bottom: 100px;
}
.tooltip__btn {
  width: 50px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237db9fe' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cpath d='M461.913,83.478H50.087C22.467,83.478,0,105.974,0,133.565v244.87c0,27.622,22.498,50.087,50.087,50.087h411.826 c27.578,0,50.087-22.453,50.087-50.087v-244.87C512,105.984,489.543,83.478,461.913,83.478z M460.563,116.87 c-8.494,8.494-186.871,186.871-192.757,192.758c-6.527,6.526-17.085,6.526-23.612,0C238.303,303.735,59.927,125.36,51.437,116.87 H460.563z M33.391,377.085V146.046l115.519,115.519L33.391,377.085z M62.567,395.13l109.954-109.954l48.061,48.061 c19.526,19.528,51.304,19.529,70.834,0l48.061-48.061L449.432,395.13H62.567z M478.609,377.085L363.089,261.565l115.519-115.519 V377.085z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.tooltip__btn.send {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.8 4C1.86451 4 1.0468 4.46923 0.544325 5.16792C0.20074 5.64567 0 6.23499 0 6.86667V17.1333C0 18.682 1.21964 20 2.8 20H11.2C11.7523 20 12.2 19.5523 12.2 19C12.2 18.4477 11.7523 18 11.2 18H2.8C2.39214 18 2 17.6466 2 17.1333V7.94766L7.77948 14.3096C8.96986 15.6199 11.0301 15.6199 12.2205 14.3096L18 7.94766V13.1333C18 13.6856 18.4477 14.1333 19 14.1333C19.5523 14.1333 20 13.6856 20 13.1333V6.86667C20 6.235 19.7993 5.64567 19.4557 5.16792C18.9532 4.46923 18.1355 4 17.2 4H2.8ZM9.25983 12.9647L2.9327 6H17.0673L10.7402 12.9647C10.3434 13.4015 9.65662 13.4015 9.25983 12.9647ZM22.7894 16.6139C23.1284 16.178 23.0499 15.5497 22.6139 15.2106C22.178 14.8716 21.5497 14.9501 21.2106 15.3861L17.2268 20.5081L15.6941 19.0302C15.2966 18.6468 14.6635 18.6583 14.2802 19.0559C13.8968 19.4534 13.9083 20.0865 14.3059 20.4698L16.6392 22.7198C16.8434 22.9167 17.1216 23.0177 17.4045 22.9975C17.6875 22.9773 17.9485 22.8379 18.1227 22.6139L22.7894 16.6139Z' fill='%237db9fe'/%3E%3C/svg%3E");
}
.tooltip__body {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.tooltip.open .tooltip__body {
  right: 60px;
  opacity: 1;
  visibility: visible;
}
.tooltip__input {
  width: 200px;
  height: 32px;
  font-size: 16px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #7db9fe;
}
.tooltip__input::-moz-placeholder {
  font-size: 16px;
}
.tooltip__input::placeholder {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Verdana, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 0.97;
  letter-spacing: 0;
  text-align: left;
  color: #fff;
}

section {
  padding: 50px 0;
}

.wrapper {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1350px;
}

h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

.sprite {
  display: none;
}

.title {
  margin: 50px 0 100px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.title__text {
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  color: #3055cf;
}
.title__subtext {
  font-size: 140px;
  font-weight: 800;
  color: #f0f0f0;
  text-transform: uppercase;
  position: absolute;
  z-index: -5;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.disable-scroll {
  overflow-y: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.overlay {
  position: fixed;
  z-index: 5;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: opacity 0.3s ease-in-out, visibility 0.3s linear;
}

.js-validate-error-label {
  display: none;
}

.section-btns {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.section-btns .section-btn {
  width: 50px;
  height: 50px;
  opacity: 0.6;
  box-shadow: 0 0 1px #3055cf;
  border: 2px solid #7db9fe;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.section-btns .section-btn:disabled {
  cursor: auto;
}
.section-btns .section-btn:not(:disabled):hover {
  opacity: 1;
}
.section-btns .section-btn--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237db9fe' viewBox='0 0 32 32'%3E%3Cpath d='m15.29 10.29-8 8L8.7 19.7l7.3-7.29 7.29 7.29 1.41-1.41-8-8a1 1 0 0 0-1.41 0z'/%3E%3C/svg%3E");
}
.section-btns .section-btn--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237db9fe' viewBox='0 0 32 32'%3E%3Cpath d='m16 19.59-7.29-7.3-1.42 1.42 8 8a1 1 0 0 0 1.41 0l8-8-1.41-1.41z'/%3E%3C/svg%3E");
}

@media screen and (max-width: 1400px) {
  .title__subtext {
    font-size: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .title__subtext {
    font-size: 120px;
  }
}
@media screen and (max-width: 992px) {
  .title {
    margin-top: 15px;
  }
  .title__subtext {
    font-size: 90px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  section {
    padding: 25px 0;
  }
  .title {
    margin-bottom: 60px;
  }
  .title__text {
    font-size: 52px;
  }
  .title__subtext {
    display: none;
  }
  .section-btns {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .title {
    margin-bottom: 40px;
  }
  .title__text {
    font-size: 42px;
  }
}
.header {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: auto;
  padding: 30px 0 20px;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.1));
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s linear;
}
.header.hide {
  transform: translateY(-100%);
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .wrapper:not(:has(.nav.open)) .overlay {
  opacity: 0;
  visibility: hidden;
}
.header .logo__img {
  filter: drop-shadow(0 4px 10px rgba(48, 85, 207, 0.3));
  transition: filter 0.25s ease-in-out;
}
.header .logo__img:hover {
  filter: drop-shadow(0 4px 10px #daff01);
}
.header .nav:not(.open) .nav__btn {
  display: none;
}
.header .nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.header .nav__link {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 1px #000;
}
.header .nav__btn {
  font-size: 18px;
}
.header .btn-lg {
  padding: 10px 30px;
}
.header__btns {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

@media screen and (min-width: 1261px) {
  .burger,
  .header .nav .nav__btn {
    display: none;
  }
}
@media screen and (min-width: 1260px) {
  .nav__link {
    background: linear-gradient(to right, #daff01, #daff01) 0 100% no-repeat;
    background-size: 0 1px;
    transition: 0.3s ease-in-out;
  }
  .nav__link:hover {
    color: #daff01;
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 1260px) {
  .nav {
    position: fixed;
    z-index: 15;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: right 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav.open {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .header .nav__list {
    flex-direction: column;
    row-gap: 25px;
  }
  .btn-lg {
    display: none;
  }
  .header .wrapper:has(.nav.open) .overlay {
    opacity: 1;
    visibility: visible;
  }
  .header__btns {
    margin-left: auto;
    margin-right: 15px;
  }
  .custom-select {
    width: 70px;
  }
  .custom-select .select-trigger {
    padding: 8px 30px 8px 12px;
  }
  .custom-select .select-arrow {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  .header .logo__img {
    width: 182px;
  }
  .custom-select {
    width: 60px;
  }
  .custom-select .select-trigger {
    padding: 6px 25px 6px 10px;
  }
  .custom-select .select-option {
    padding: 10px 16px;
  }
}
.banner {
  min-height: 100vh;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
}
.banner__video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner__sound {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 50px;
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.15838 13.9306C2.44537 12.7423 2.44537 11.2577 3.15838 10.0694V10.0694C3.37596 9.70674 3.73641 9.45272 4.1511 9.36978L5.84413 9.03117C5.94499 9.011 6.03591 8.95691 6.10176 8.87788L8.17085 6.39498C9.3534 4.97592 9.94468 4.26638 10.4723 4.45742C11 4.64846 11 5.57207 11 7.41928L11 16.5807C11 18.4279 11 19.3515 10.4723 19.5426C9.94468 19.7336 9.3534 19.0241 8.17085 17.605L6.10176 15.1221C6.03591 15.0431 5.94499 14.989 5.84413 14.9688L4.1511 14.6302C3.73641 14.5473 3.37596 14.2933 3.15838 13.9306V13.9306Z' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M15 15L21 9' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 15L15 9' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  cursor: pointer;
}
.banner__sound.active {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.15838 13.9306C2.44537 12.7423 2.44537 11.2577 3.15838 10.0694V10.0694C3.37596 9.70674 3.73641 9.45272 4.1511 9.36978L5.84413 9.03117C5.94499 9.011 6.03591 8.95691 6.10176 8.87788L8.17085 6.39498C9.3534 4.97592 9.94468 4.26638 10.4723 4.45742C11 4.64846 11 5.57207 11 7.41928L11 16.5807C11 18.4279 11 19.3515 10.4723 19.5426C9.94468 19.7336 9.3534 19.0241 8.17085 17.605L6.10176 15.1221C6.03591 15.0431 5.94499 14.989 5.84413 14.9688L4.1511 14.6302C3.73641 14.5473 3.37596 14.2933 3.15838 13.9306V13.9306Z' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M15.5355 8.46447C16.4684 9.39732 16.9948 10.6611 17 11.9803C17.0052 13.2996 16.4888 14.5674 15.5633 15.5076' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M19.6569 6.34314C21.1494 7.83572 21.9916 9.85769 21.9999 11.9685C22.0083 14.0793 21.182 16.1078 19.7012 17.6121' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.banner__title {
  margin: 0;
  max-width: 1150px;
  font-weight: 800;
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: 1%;
  text-shadow: 0 0 2px #000;
}
.banner__subtitle {
  margin-top: 16px;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: 1%;
  text-shadow: 0 0 1px #000;
}
.banner__links {
  margin-top: 40px;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.banner__links .btn-fill {
  padding: 29px 40px;
  font-size: 28px;
  border-width: 2px;
}

@media screen and (max-width: 1100px) {
  .banner__title {
    font-size: 48px;
  }
  .banner__links .btn-fill {
    padding: 20px 30px;
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    padding-bottom: 60px;
  }
  .banner__title {
    font-size: 42px;
  }
  .banner__subtitle {
    font-size: 18px;
  }
  .banner__links .btn-fill {
    font-size: 20px;
  }
  .banner__sound {
    width: 30px;
    height: 30px;
    right: 15px;
    bottom: 25px;
  }
}
@media screen and (max-width: 576px) {
  .banner__title {
    font-size: 36px;
  }
  .banner__links {
    margin-top: 25px;
  }
  .banner__links .btn-fill {
    padding: 15px;
    font-size: 16px;
  }
}
.about {
  padding-top: 0;
  overflow-x: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), center/cover no-repeat url("../img/about-bg.avif");
}
.about .wrapper {
  display: flex;
}
.about .wrapper > * {
  flex-basis: 50%;
}
.about .innovation {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 20px;
}
.about .innovation::before {
  content: "";
  position: absolute;
  z-index: -5;
  left: -60px;
  width: calc(100% + 60px);
  height: 100%;
}
.about .innovation__title {
  font-size: 58px;
  font-weight: 800;
}
.about .innovation__subtitle {
  max-width: 500px;
  font-size: 22px;
  font-weight: 500;
}
.about .innovation .btn {
  margin-top: 20px;
}
.about .options {
  padding: 98px 0 98px 94px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.about .options__item {
  padding: 25px 35px;
  font-size: 32px;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 50px;
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.about .options__item:nth-child(1) {
  transition-delay: 0s;
}
.about .options__item:nth-child(2) {
  transition-delay: 0.1s;
}
.about .options__item:nth-child(3) {
  transition-delay: 0.2s;
}
.about .options__item:nth-child(4) {
  transition-delay: 0.3s;
}
.about .options__item:nth-child(5) {
  transition-delay: 0.4s;
}
.about .options__item:nth-child(6) {
  transition-delay: 0.5s;
}
.about .options.animated .options__item {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 1300px) {
  .about .innovation__title {
    font-size: 46px;
  }
  .about .options {
    padding: 60px 0 60px 50px;
  }
  .about .options__item {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .about .wrapper {
    flex-direction: column;
  }
  .about .innovation {
    padding: 150px 0;
  }
  .about .innovation::before {
    left: -15px;
    width: calc(100% + 30px);
  }
  .about .innovation__subtitle {
    max-width: none;
  }
  .about .options {
    padding: 50px 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .about .innovation__title {
    font-size: 40px;
  }
  .about .innovation__subtitle {
    font-size: 18px;
  }
  .about .options {
    padding: 50px 20px 0;
  }
  .about .options__item {
    font-size: 24px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 576px) {
  .about .innovation {
    padding: 100px 0 80px;
  }
  .about .innovation__title {
    font-size: 32px;
  }
  .about .options {
    padding: 30px 0 0;
  }
  .about .options__item {
    padding: 15px 20px;
    font-size: 20px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.project .marquee__item img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  border-radius: 25px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.project .marquee__text {
  width: 100%;
  max-width: 95%;
  padding: 0 10px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  color: white;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  white-space: normal;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .project .marquee__item img {
    border-radius: 18px;
  }
  .project .marquee__text {
    font-size: 20px;
  }
}
.why__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.why .benefit {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.why .benefit:nth-child(2n) {
  flex-direction: row-reverse;
}
.why .benefit .benefit__descr {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.why .benefit .benefit__descr::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), center/cover no-repeat url("../img/benefits/3.avif");
  border-radius: inherit;
  transition: left 0.35s ease-in-out;
}
.why .benefit .benefit__descr::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(100% + 8px);
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), center/cover no-repeat url("../img/benefits/3.avif");
  border-radius: inherit;
  transition: left 0.35s ease-in-out;
  filter: blur(2px);
}
.why .benefit .benefit__descr:hover::before {
  left: calc(-100% - 8px);
}
.why .benefit .benefit__descr:hover::after {
  left: 0;
}
.why .benefit:nth-child(1) .benefit__info {
  background-color: #3055cf;
}
.why .benefit:nth-child(1) .benefit__info .benefit__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='39' viewBox='0 0 25 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.2031 1.5C18.1144 1.5 22.9071 6.29193 22.9072 12.2031C22.9072 15.0762 21.7766 17.6826 19.9336 19.6064L19.876 19.667L19.8242 19.7334C16.6869 23.8433 15.7001 27.7018 15.4941 31.042H8.91211C8.70615 27.7018 7.71935 23.8433 4.58203 19.7334L4.53125 19.667L4.47266 19.6064L4.13574 19.2373C2.4932 17.3553 1.5 14.8965 1.5 12.2031C1.50014 6.29202 6.29202 1.50014 12.2031 1.5Z' stroke='white' stroke-width='3'/%3E%3Cpath d='M8.45752 35.0424H12.2033H15.949' stroke='white' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M9.45752 38.0424H12.2033H14.949' stroke='white' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}
.why .benefit:nth-child(1) .benefit__descr::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), center/cover no-repeat url("../img/benefits/1.avif");
  background-position: center 10%;
}
.why .benefit:nth-child(1) .benefit__descr::after {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), center/cover no-repeat url("../img/benefits/1.avif");
  background-position: center 10%;
}
.why .benefit:nth-child(2) .benefit__info {
  background-color: #7db9fe;
}
.why .benefit:nth-child(2) .benefit__info .benefit__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='21' viewBox='0 0 34 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 18.9599L10.133 10.8269C10.9141 10.0458 12.1804 10.0458 12.9614 10.8269L16.6531 14.5185C17.4341 15.2996 18.7004 15.2996 19.4815 14.5185L32 2M32 2H21.2885M32 2V12.7115' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.why .benefit:nth-child(2) .benefit__descr::before {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), center/cover no-repeat url("../img/benefits/2.avif");
  background-position: 50% 25%;
}
.why .benefit:nth-child(2) .benefit__descr::after {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), center/cover no-repeat url("../img/benefits/2.avif");
  background-position: 50% 25%;
}
.why .benefit:nth-child(3) .benefit__info {
  background-color: #000;
}
.why .benefit:nth-child(3) .benefit__info .benefit__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='31' viewBox='0 0 28 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.9999 14V8.39999C6.9999 6.54348 7.7374 4.763 9.05016 3.45025C10.3629 2.13749 12.1434 1.39999 13.9999 1.39999C15.8564 1.39999 17.6369 2.13749 18.9497 3.45025C20.2624 4.763 20.9999 6.54348 20.9999 8.39999V14M13.9999 19.4V23.9M4.1999 14H23.7999C25.3463 14 26.5999 15.2536 26.5999 16.8V26.6C26.5999 28.1464 25.3463 29.4 23.7999 29.4H13.9999H4.1999C2.65351 29.4 1.3999 28.1464 1.3999 26.6V16.8C1.3999 15.2536 2.65351 14 4.1999 14Z' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.why .benefit:nth-child(3) .benefit__descr {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.why .benefit:nth-child(3) .benefit__descr::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), center/cover no-repeat url("../img/benefits/3.avif");
}
.why .benefit:nth-child(3) .benefit__descr::after {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), center/cover no-repeat url("../img/benefits/3.avif");
}
.why .benefit__info, .why .benefit__descr {
  padding: 40px 20px 40px 35px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
}
.why .benefit__info .benefit__title, .why .benefit__descr .benefit__title {
  margin: 50px 0 25px;
}
.why .benefit__info {
  flex-basis: 33.3333333333%;
}
.why .benefit__descr {
  flex-basis: 66.6666666667%;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why .benefit__icon {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.why .benefit__title {
  font-size: 32px;
  font-weight: 800;
}

@media screen and (max-width: 992px) {
  .why .benefit__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .why__content {
    row-gap: 10px;
  }
  .why .benefit {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .why .benefit__icon {
    width: 28px;
    height: 28px;
    background-size: 14px;
  }
  .why .benefit:nth-child(1) .benefit__icon {
    background-size: 12px;
  }
  .why .benefit:nth-child(2) .benefit__icon {
    background-size: 16px;
  }
  .why .benefit__title {
    font-size: 22px;
  }
  .why .benefit__info .benefit__title,
  .why .benefit__descr .benefit__title {
    margin: 30px 0 15px;
  }
  .why .benefit__info,
  .why .benefit__descr {
    padding: 20px 10px 20px 25px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 576px) {
  .why__content {
    row-gap: 5px;
  }
  .why .benefit {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .why .benefit__title {
    font-size: 18px;
  }
  .why .benefit__info,
  .why .benefit__descr {
    padding: 15px 10px 15px 15px;
    border-radius: 12px;
  }
  .why .benefit__info .benefit__title,
  .why .benefit__descr .benefit__title {
    margin: 20px 0 12px;
  }
  .benefit__text {
    font-size: 12px;
  }
}
.portfolio .event {
  display: flex;
  color: #fff;
  background: center/cover no-repeat;
}
.portfolio .event:nth-child(2n) {
  flex-direction: row-reverse;
}
.portfolio .event:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/portfolio/1.avif");
}
.portfolio .event:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/portfolio/2.avif");
}
.portfolio .event:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/portfolio/3.avif");
}
.portfolio .event__content {
  flex-shrink: 0;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
}
.portfolio .event__header {
  padding: 60px 32px 50px 60px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #7db9fe;
}
.portfolio .event__title {
  font-size: 36px;
  font-weight: 800;
}
.portfolio .event__subtitle {
  margin-top: 10px;
}
.portfolio .event__descr {
  padding: 70px 20px 70px 60px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.portfolio .event__player {
  flex: 1;
  position: relative;
  z-index: 0;
}
.portfolio .event__video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 992px) {
  .portfolio .event__content {
    max-width: none;
    flex-direction: row;
  }
  .portfolio .event,
  .portfolio .event:nth-child(2n) {
    flex-direction: column;
  }
  .portfolio .event__video {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .portfolio .event {
    background-size: 100% auto;
    background-position: center bottom 0;
  }
  .portfolio .event__descr {
    padding: 50px 60px 45px;
    background-color: rgba(0, 0, 0, 0.95);
  }
  .portfolio .event__header {
    min-height: 150px;
    padding: 50px 60px 45px;
  }
  .portfolio .event__content {
    flex-direction: column;
  }
  .portfolio .event__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .portfolio .event__title {
    font-size: 26px;
  }
  .portfolio .event__header, .portfolio .event__descr {
    padding: 35px 40px 30px;
  }
}
.marquee__item:hover,
.marquee img:hover {
  cursor: grabbing;
}

.blog {
  padding-bottom: 80px;
}
.blog__content {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 15px;
}
.blog__link {
  flex-shrink: 0;
  max-width: 445px;
  height: 300px;
  padding: 30px 40px 40px;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}
.blog__link .link__icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: center/15px no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.06055 15.9L15.4605 1.5M15.4605 1.5H2.26056M15.4605 1.5V14.7' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
  border: 1px solid #fff;
  border-radius: 50%;
}
.blog__link .link__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.blog__link .link__date {
  font-size: 16px;
}
.blog__link .link__title {
  margin-top: auto;
  font-size: 32px;
  font-weight: 800;
  text-shadow: 0 0 1px #000;
}
.blog__link .link__descr {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-shadow: 0 0 1px #000;
}
.blog .btn {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 30px auto 0;
  color: #3055cf;
  border-color: #3055cf;
  text-transform: uppercase;
}
.blog .btn .btn__icon {
  stroke: #3055cf;
}
.blog .btn:hover {
  color: #daff01;
  border-color: #daff01;
}
.blog .btn:hover .btn__icon {
  stroke: #daff01;
}
.blog .btn:active {
  color: #3055cf;
  border-color: #3055cf;
}
.blog .btn:active .btn__icon {
  stroke: #3055cf;
}
.blog .btn.blog-btn--reverse .btn__icon {
  margin-left: 0;
  margin-right: 10px;
  transform: scaleX(-1);
}
.blog .btn.blog-btn--reverse:hover .btn__icon {
  transform: scaleX(-1) rotate(45deg);
}

@media screen and (max-width: 992px) {
  .blog {
    padding-bottom: inherit;
  }
}
@media screen and (max-width: 768px) {
  .blog__link {
    padding: 20px 30px 30px;
    border-radius: 18px;
  }
  .blog__link .link__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 576px) {
  .blog__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .blog__link {
    padding: 20px 25px 25px;
    height: 250px;
    row-gap: 15px;
  }
  .blog__link .link__title {
    font-size: 22px;
  }
}
.request {
  padding: 50px 0 60px;
  background: linear-gradient(to right, #3055cf, #3055cf 50%, #fff 50%, #fff);
}
.request .wrapper {
  display: flex;
  align-items: flex-start;
}
.request .wrapper > * {
  flex-basis: 50%;
}
.request__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 24px;
}
.request__contacts .logo {
  width: -moz-fit-content;
  width: fit-content;
}
.request__contacts .social__link {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.request__contacts .social__link_ig {
  background-image: url("../img/social/insta.svg");
}
.request__contacts .social__link_in {
  background-image: url("../img/social/linkedin.svg");
}
.request__contacts .social__link_fb {
  background-image: url("../img/social/fb.svg");
}
.request .contacts__title {
  margin: 15px 0 5px;
  font-size: 32px;
  font-weight: 600;
}
.request .contacts__email {
  color: #fff;
}
.request .contacts__social {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.request .contacts__line {
  width: 80%;
  max-width: 530px;
  height: 1px;
  color: #fff;
  background-color: #fff;
}
.request .contacts__copy {
  font-size: 16px;
}
.request .address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  font-size: 18px;
}
.request .address__email {
  margin-top: 10px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.request .address__email .link-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9.92704V7C12 5.34315 13.3431 4 15 4H41C42.6569 4 44 5.34315 44 7V33C44 34.6569 42.6569 36 41 36H38.0174' stroke='%23fff' stroke-width='4'/%3E%3Crect x='4' y='10' width='34' height='34' rx='3' fill='transparent' stroke='%23fff' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M18.4396 23.1098L23.7321 17.6003C25.1838 16.1486 27.5693 16.1806 29.0604 17.6717C30.5515 19.1628 30.5835 21.5483 29.1319 23L27.2218 25.0228' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.4661 28.7469C12.9558 29.2573 11.9006 30.2762 11.9006 30.2762C10.4489 31.7279 10.4095 34.3152 11.9006 35.8063C13.3917 37.2974 15.7772 37.3294 17.2289 35.8777L22.3931 31.1894' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.6631 28.3283C17.9705 27.6357 17.5927 26.7501 17.5321 25.8547C17.4624 24.8225 17.8143 23.7774 18.5916 23' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22.3218 25.8611C23.8129 27.3522 23.8449 29.7377 22.3932 31.1894' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.request .address__email .link-icon.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5H3z'/%3E%3Cpath d='m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0z'/%3E%3C/svg%3E");
}
.request .address__link {
  text-decoration: underline;
  color: #fff;
}
.request .address__number {
  color: #fff;
}
.request__form {
  padding-left: 115px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: rgba(51, 51, 51, 0.6);
}
.request__form .form__row {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.request__form .form__btns {
  margin-top: 9px;
  text-align: center;
}
.request__form .form__btn {
  margin-left: 45px;
  padding: 8px 30px;
  font-size: 24px;
}
.request .policy {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.request .policy__link {
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .request {
    padding-bottom: 25px;
    background: none;
  }
  .request .contacts__title {
    margin-top: 10px;
  }
  .request__form {
    padding-left: 0;
  }
  .request__form .form__btn {
    margin-left: inherit;
  }
  .request__contacts {
    position: relative;
    align-items: stretch;
  }
  .request__contacts::before {
    content: "";
    position: absolute;
    z-index: -5;
    top: -20px;
    right: -15px;
    bottom: -25px;
    left: -15px;
    background-color: #3055cf;
  }
  .request .wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    row-gap: 50px;
  }
  .request .wrapper > * {
    flex-basis: 100%;
  }
  .request .contacts__line {
    width: 100%;
    max-width: none;
  }
  .contacts__logo {
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  .contacts__logo {
    width: 172px;
  }
  .request {
    padding-top: 25px;
  }
  .request .contacts__title {
    margin: 5px 0;
    font-size: 24px;
  }
  .request .address {
    font-size: 18px;
  }
  .request__contacts .social__link {
    width: 32px;
    height: 32px;
  }
  .request__form .form__btn {
    font-size: 18px;
  }
  .form__row label {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .request .contacts__title {
    font-size: 20px;
  }
  .request__contacts {
    row-gap: 15px;
  }
  .request .address {
    font-size: 16px;
  }
  .request__contacts .social__link {
    width: 28px;
    height: 28px;
  }
  .request .contacts__line {
    height: 0;
  }
  .request__form .form__btn {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */