@font-face {
  font-family: "Stolzl";
  src: url("/assets/font/Stolzl/stolzl_medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Soyuz Grotesk";
  src: url("/assets/font/Soyuz Grotesk/SoyuzGroteskBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Soyuz Grotesk";
  src: url("/assets/font/Soyuz Grotesk/SoyuzGroteskBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/font/Geologica/Geologica-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/font/Geologica/Geologica-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/font/Geologica/Geologica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("/assets/font/Geologica/Geologica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  --scroll-behavior: smooth !important;
  scroll-behavior: smooth !important;
  -webkit-scroll-behavior: smooth !important;
}

body {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  color: #292929;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-size: 16px;
}
@media (max-width: 2000px) {
  body {
    font-size: 1.11vw;
  }
}
@media (max-width: 1100px) {
  body {
    font-size: 1.4vw;
  }
}
@media (max-width: 770px) {
  body {
    font-size: 4.44vw;
  }
}

.container {
  width: 1160px;
  margin: 0 auto;
}
@media (max-width: 2000px) {
  .container {
    width: 80.56vw;
  }
}
@media (max-width: 770px) {
  .container {
    margin: auto 8.33vw;
    width: 83.33vw;
  }
}

.appearance {
  opacity: 0.2;
  scale: 0.85;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.appearance.show {
  opacity: 1;
  scale: 1;
}

a {
  color: #292929;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #DB0032;
}

.input__box {
  position: relative;
}
.input__box svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 2000px) {
  .input__box svg {
    width: 1.39vw;
    height: 1.39vw;
    left: 2.22vw;
  }
}
@media (max-width: 770px) {
  .input__box svg {
    width: 4.44vw;
    height: 4.44vw;
    left: 4.44vw;
  }
}
.input__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 68px;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: #E4E4E7;
}
@media (max-width: 2000px) {
  .input__box::after {
    left: 4.72vw;
    height: 2.22vw;
  }
}
@media (max-width: 770px) {
  .input__box::after {
    left: 12.78vw;
    height: 8.89vw;
  }
}

input {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px 30px 30px 84px;
  border: none;
  outline: none;
  font-size: 16px;
  border: 1px solid #D10000;
}
@media (max-width: 2000px) {
  input {
    font-size: 1.11vw;
    padding: 2.08vw 2.08vw 2.08vw 5.83vw;
  }
}
@media (max-width: 1100px) {
  input {
    font-size: 1.4vw;
  }
}
@media (max-width: 770px) {
  input {
    font-size: 3.89vw;
    padding: 5.83vw 5.83vw 5.83vw 16.67vw;
  }
}
input:hover {
  border-color: #292929;
}
input:focus {
  border-color: #292929;
}
input::placeholder {
  color: #B3B3BC;
}

button {
  font-size: 12px;
  font-weight: 500;
  background: #DB0032;
  font-family: "Stolzl", sans-serif;
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  transition: 0.3s;
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 2000px) {
  button {
    font-size: 0.83vw;
  }
}
@media (max-width: 1110px) {
  button {
    font-size: 1.2vw;
  }
}
@media (max-width: 770px) {
  button {
    font-size: 3.33vw;
  }
}
button:hover {
  opacity: 0.7;
}
button:active {
  color: #292929;
}
button:disabled:hover {
  opacity: 1;
}

header {
  width: 100vw;
  position: fixed;
  top: 40px;
  transition: 0.3s;
  z-index: 10;
}
@media (max-width: 2000px) {
  header {
    top: 2.78vw;
  }
}
@media (max-width: 770px) {
  header {
    top: 15vw;
  }
  header .menu {
    display: none;
  }
  header .social {
    display: none;
  }
  header .phone__box {
    display: none;
  }
}
header.scrolled {
  background: #F7F7F8;
  top: 0;
}
header .header__inside {
  width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 2000px) {
  header .header__inside {
    width: 80.56vw;
  }
}
@media (max-width: 770px) {
  header .header__inside {
    width: 70vw;
    justify-content: space-between;
  }
}
header .logo img {
  width: 60px;
  height: 60px;
}
@media (max-width: 2000px) {
  header .logo img {
    width: 4.17vw;
    height: 4.17vw;
  }
}
@media (max-width: 770px) {
  header .logo img {
    width: 13.33vw;
    height: 13.33vw;
  }
}

.menu {
  display: flex;
  margin: 0 auto 0 56px;
  gap: 32px;
}
@media (max-width: 2000px) {
  .menu {
    margin: 0 auto 0 3.89vw;
    gap: 2.22vw;
  }
}

.social {
  display: flex;
  margin-right: 32px;
  gap: 8px;
}
@media (max-width: 2000px) {
  .social {
    margin-right: 2.22vw;
    gap: 0.56vw;
  }
}
@media (max-width: 770px) {
  .social {
    gap: 5.33vw;
  }
}
.social a {
  background: #292929;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: 0.3s;
}
@media (max-width: 2000px) {
  .social a {
    width: 2.22vw;
    height: 2.22vw;
  }
}
@media (max-width: 1100px) {
  .social a {
    width: 2.6vw;
    height: 2.6vw;
  }
}
@media (max-width: 770px) {
  .social a {
    width: 13.33vw;
    height: 13.33vw;
  }
}
.social a svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 2000px) {
  .social a svg {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media (max-width: 1100px) {
  .social a svg {
    width: 1.4vw;
    height: 1.4vw;
  }
}
@media (max-width: 770px) {
  .social a svg {
    width: 7.67vw;
    height: 7.67vw;
  }
}
.social a svg path {
  transition: 0.3s;
}
.social a:hover {
  background: #DB0032;
}

.burger {
  display: none;
}
.burger svg {
  width: 8.89vw;
  height: 8.89vw;
}
@media (max-width: 770px) {
  .burger {
    display: block;
    background: none;
  }
}

.phone__box {
  display: flex;
  gap: 0.28vw;
  align-items: center;
  gap: 8px;
}
@media (max-width: 2000px) {
  .phone__box {
    gap: 0.28vw;
  }
}
@media (max-width: 770px) {
  .phone__box {
    gap: 1.11vw;
  }
}
.phone__box svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 2000px) {
  .phone__box svg {
    width: 1.11vw;
    height: 1.11vw;
  }
}
@media (max-width: 1100px) {
  .phone__box svg {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media (max-width: 770px) {
  .phone__box svg {
    width: 4.44vw;
    height: 4.44vw;
  }
}

.banner {
  background: url("/assets/img/photo/banners/back_banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  width: 1360px;
  height: 740px;
  margin: 24px auto 140px auto;
  border-radius: 32px;
}
@media (max-width: 2000px) {
  .banner {
    margin: 1.67vw auto 9.72vw auto;
    width: 94.44vw;
    height: 51.39vw;
  }
}
@media (max-width: 770px) {
  .banner {
    background: url("/assets/img/photo/banners/back_banner_mobile.webp");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 8.33vw;
    width: 83.33vw;
    height: auto;
    padding-bottom: 96.39vw;
  }
}
.banner.extra {
  height: 100px;
  margin: 24px auto 24px auto;
}
@media (max-width: 2000px) {
  .banner.extra {
    height: 6.94vw;
    margin: 1.67vw auto 1.67vw auto;
  }
}
@media (max-width: 770px) {
  .banner.extra {
    padding-bottom: 27vw;
    margin: 8.33vw;
  }
}
.banner .left__info {
  width: 546px;
  padding: 165px 0 0 100px;
}
@media (max-width: 2000px) {
  .banner .left__info {
    padding: 11.46vw 0 0 6.94vw;
    width: 37.92vw;
  }
}
@media (max-width: 770px) {
  .banner .left__info {
    padding: 33.33vw 6.39vw 0 6.39vw;
    width: auto;
  }
}
.banner .left__info .banner__title {
  font-size: 72px;
  line-height: 72px;
  font-family: "Soyuz Grotesk", sans-serif;
}
@media (max-width: 2000px) {
  .banner .left__info .banner__title {
    font-size: 5vw;
    line-height: 5vw;
  }
}
@media (max-width: 770px) {
  .banner .left__info .banner__title {
    font-size: 9.44vw;
    line-height: 9.44vw;
  }
}
.banner .left__info .banner__text__box {
  display: flex;
  gap: 16px;
  margin: 32px 0 40px 0;
}
@media (max-width: 2000px) {
  .banner .left__info .banner__text__box {
    gap: 1.11vw;
    margin: 2.22vw 0 2.78vw 0;
  }
}
@media (max-width: 770px) {
  .banner .left__info .banner__text__box {
    margin: 6.67vw 0 8.89vw 0;
    gap: 4.44vw;
  }
}
.banner .left__info .banner__text__box .check {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DB0032;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-top: 8px;
}
@media (max-width: 2000px) {
  .banner .left__info .banner__text__box .check {
    width: 1.39vw;
    height: 1.39vw;
    margin-top: 0.56vw;
  }
}
@media (max-width: 770px) {
  .banner .left__info .banner__text__box .check {
    width: 5vw;
    height: 5vw;
  }
}
.banner .left__info .banner__text__box .check svg {
  width: 16px;
  height: 17px;
}
@media (max-width: 2000px) {
  .banner .left__info .banner__text__box .check svg svg {
    width: 1.11vw;
    height: 1.18vw;
  }
}
@media (max-width: 770px) {
  .banner .left__info .banner__text__box .check svg {
    width: 3.89vw;
    height: 3.89vw;
  }
}
.banner .left__info .banner__text__box .banner__text {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 2000px) {
  .banner .left__info .banner__text__box .banner__text {
    font-size: 1.39vw;
    line-height: 2.08vw;
  }
}
@media (max-width: 1100px) {
  .banner .left__info .banner__text__box .banner__text {
    font-size: 1.6vw;
  }
}
@media (max-width: 770px) {
  .banner .left__info .banner__text__box .banner__text {
    font-size: 4.44vw;
    line-height: 6.67vw;
  }
}
.banner .left__info .banner__text__box .banner__text span {
  font-weight: 500;
}
.banner .left__info button {
  padding: 32px 60px;
}
@media (max-width: 2000px) {
  .banner .left__info button {
    padding: 2.22vw 4.17vw;
  }
}
@media (max-width: 770px) {
  .banner .left__info button {
    padding: 8.89vw;
    width: 100%;
  }
}
.banner .banner__image {
  width: 858px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 2000px) {
  .banner .banner__image {
    width: 59.58vw;
  }
}
@media (max-width: 770px) {
  .banner .banner__image {
    width: 108.61vw;
    right: -9.17vw;
  }
}

.overlay {
  display: block;
  position: fixed;
  background: rgba(24, 24, 27, 0.98);
  opacity: 0;
  z-index: 499;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
}

.mobile__menu {
  display: none;
  background: #F7F7F8;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: -110%;
  top: 0;
  transition: 0.3s;
  z-index: 500;
  max-height: 100vh;
  overflow-y: auto;
}
@media (max-width: 770px) {
  .mobile__menu {
    display: block;
  }
}
@media (max-width: 770px) {
  .mobile__menu .menu {
    flex-direction: column;
    padding: 26.67vw 16vw 20vw 16vw;
    gap: 8vw;
    margin: 0;
  }
}
.mobile__menu .menu .a__box {
  position: relative;
  height: 4.44vw;
}
.mobile__menu .menu .a__box .link__menu {
  position: absolute;
  top: 0;
  left: -50vw;
  width: max-content;
  transition: 0.2s;
}
.mobile__menu .menu .a__box .link__menu.active {
  left: 0;
}
.mobile__menu .close__menu {
  width: 8.89vw;
  height: 8.89vw;
  position: absolute;
  top: 8.89vw;
  right: 6.67vw;
  transition: 0.2s;
}
.mobile__menu .close__menu:hover {
  opacity: 0.7;
  cursor: pointer;
}
.mobile__menu .phone__box {
  position: relative;
  padding: 0 16vw;
  height: 5vw;
}
.mobile__menu .phone__box .inside__box {
  position: absolute;
  top: 0;
  left: -50vw;
  transition: 0.3s;
}
.mobile__menu .phone__box.active .inside__box {
  display: flex;
  align-items: center;
  gap: 4vw;
  left: 16vw;
}
.mobile__menu .social {
  position: relative;
  margin-top: 5vw;
}
.mobile__menu .social .inside__box {
  position: absolute;
  display: flex;
  gap: 2vw;
  top: 0;
  left: -50vw;
  transition: 0.2s;
}
.mobile__menu .social.active .inside__box {
  left: 16vw;
}
.mobile__menu.active {
  left: 0;
}

.main__title {
  font-size: 72px;
  line-height: 72px;
  margin-bottom: 48px;
  font-family: "Soyuz Grotesk", sans-serif;
}
@media (max-width: 2000px) {
  .main__title {
    font-size: 5vw;
    line-height: 5vw;
    margin-bottom: 3.33vw;
  }
}
@media (max-width: 770px) {
  .main__title {
    font-size: 9.44vw;
    line-height: 9.44vw;
    margin-bottom: 8.89vw;
  }
}

.title {
  font-size: 26px;
  font-weight: 700;
  font-family: "Soyuz Grotesk", sans-serif;
  line-height: 28px;
}
@media (max-width: 2000px) {
  .title {
    font-size: 1.81vw;
    line-height: 1.94vw;
  }
}
@media (max-width: 770px) {
  .title {
    font-size: 6.11vw;
    line-height: 6.67vw;
  }
}

.text {
  font-weight: 300;
  line-height: 24px;
}
@media (max-width: 2000px) {
  .text {
    line-height: 1.67vw;
  }
}
@media (max-width: 770px) {
  .text {
    line-height: 6.67vw;
  }
}
.text span {
  font-weight: 600;
}

.text2 {
  font-weight: 300;
  line-height: 26px;
  font-size: 18px;
}
@media (max-width: 2000px) {
  .text2 {
    line-height: 1.81vw;
    font-size: 1.25vw;
  }
}
@media (max-width: 1100px) {
  .text2 {
    font-size: 1.5vw;
  }
}
@media (max-width: 770px) {
  .text2 {
    line-height: 6.67vw;
    font-size: 4.6vw;
  }
}
.text2 span {
  font-weight: 600;
}

.services {
  margin: 140px 0;
}
@media (max-width: 2000px) {
  .services {
    margin: 9.72vw 0;
  }
}
@media (max-width: 770px) {
  .services {
    margin: 27.78vw 0 22.22vw 0;
  }
}
.services .services__list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  transition: 1s;
}
@media (max-width: 2000px) {
  .services .services__list {
    gap: 2.78vw;
  }
}
@media (max-width: 770px) {
  .services .services__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6.67vw;
  }
}
.services .services__list .services__box {
  background: #F7F7F8;
  border-radius: 32px;
}
.services .services__list .services__box.hide {
  display: none;
  max-height: 0px;
  overflow: hidden;
}
.services .services__list .services__box .image__box {
  margin: 16px;
  width: 328px;
  height: 220px;
  overflow: hidden;
  border-radius: 24px;
}
@media (max-width: 2000px) {
  .services .services__list .services__box .image__box {
    margin: 1.11vw;
    width: 22.78vw;
    height: 15.28vw;
  }
}
@media (max-width: 770px) {
  .services .services__list .services__box .image__box {
    margin: 4.44vw;
    width: 74.44vw;
    height: 50vw;
  }
}
.services .services__list .services__box .image__box .services__img {
  width: 328px;
  height: 220px;
  transition: 0.3s;
  scale: 1.01;
}
@media (max-width: 2000px) {
  .services .services__list .services__box .image__box .services__img {
    width: 22.78vw;
    height: 15.28vw;
  }
}
@media (max-width: 770px) {
  .services .services__list .services__box .image__box .services__img {
    width: 74.44vw;
    height: 50vw;
  }
}
.services .services__list .services__box:hover .image__box .services__img {
  scale: 1.03;
}
.services .services__list .services__box .services__box__inside {
  margin: 32px 40px 40px 40px;
}
@media (max-width: 2000px) {
  .services .services__list .services__box .services__box__inside {
    margin: 2.22vw 2.78vw 2.78vw 2.78vw;
  }
}
@media (max-width: 770px) {
  .services .services__list .services__box .services__box__inside {
    margin: 8.89vw;
  }
}
.services .services__list .services__box .services__box__inside .text {
  margin: 16px 0 46px 0;
}
@media (max-width: 2000px) {
  .services .services__list .services__box .services__box__inside .text {
    margin: 1.11vw 0 3.19vw 0;
  }
}
@media (max-width: 770px) {
  .services .services__list .services__box .services__box__inside .text {
    margin: 4.44vw 0 6.67vw 0;
  }
}
.services .services__list .services__box .services__box__inside button {
  padding: 24px 40px;
}
@media (max-width: 2000px) {
  .services .services__list .services__box .services__box__inside button {
    padding: 1.67vw 2.78vw;
  }
}
@media (max-width: 770px) {
  .services .services__list .services__box .services__box__inside button {
    padding: 6.67vw 11.11vw;
  }
}

.embody {
  padding: 120px 0;
  background: #F7F7F8;
}
@media (max-width: 2000px) {
  .embody {
    padding: 8.33vw 0;
  }
}
@media (max-width: 770px) {
  .embody {
    padding: 17.78vw 0;
  }
}
.embody.extra {
  background: #FFFFFF;
  padding: 0;
  margin: 140px 0;
}
@media (max-width: 2000px) {
  .embody.extra {
    margin: 9.72vw 0;
  }
}
@media (max-width: 770px) {
  .embody.extra {
    margin: 27.78vw 0;
  }
}
.embody .main__title {
  width: 848px;
}
@media (max-width: 2000px) {
  .embody .main__title {
    width: 58.19vw;
  }
}
@media (max-width: 770px) {
  .embody .main__title {
    width: auto;
  }
}
.embody .embody__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 2000px) {
  .embody .embody__container {
    gap: 2.78vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container {
    gap: 6.67vw;
  }
}
.embody .embody__container .embody__box {
  width: 400px;
  height: 258px;
  position: relative;
  background: #FFFFFF;
  padding: 56px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box {
    width: 27.78vw;
    height: 17.92vw;
    padding: 3.89vw;
    gap: 1.67vw;
  }
}
@media (max-width: 1100px) {
  .embody .embody__container .embody__box {
    height: 22vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box {
    width: 83.33vw;
    height: auto;
    padding: 8.89vw;
    gap: 4.44vw;
  }
}
.embody .embody__container .embody__box:nth-child(1) * {
  width: 313px;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box:nth-child(1) * {
    width: 21.74vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(1) * {
    width: auto;
  }
}
.embody .embody__container .embody__box:nth-child(1) img {
  height: auto;
  width: 386px;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box:nth-child(1) img {
    width: 26.81vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(1) img {
    width: auto;
    height: 68.89vw;
  }
}
.embody .embody__container .embody__box:nth-child(2) {
  background: #292929;
  color: #FFFFFF;
}
.embody .embody__container .embody__box:nth-child(3) {
  background: #CF0231;
  color: #FFFFFF;
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(3) {
    order: 2;
  }
}
.embody .embody__container .embody__box:nth-child(3) * {
  width: 378px;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box:nth-child(3) * {
    width: 19.31vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(3) * {
    width: auto;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(4) {
    order: 1;
  }
}
.embody .embody__container .embody__box:nth-child(4) * {
  width: 375px;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box:nth-child(4) * {
    width: 26vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(4) * {
    width: auto;
  }
}
.embody .embody__container .embody__box:nth-child(4) img {
  width: 486px;
  height: auto;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box:nth-child(4) img {
    width: 33.75vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box:nth-child(4) img {
    width: auto;
    height: 68.89vw;
  }
}
.embody .embody__container .embody__box.long {
  width: 720px;
}
@media (max-width: 2000px) {
  .embody .embody__container .embody__box.long {
    width: 50vw;
  }
}
@media (max-width: 770px) {
  .embody .embody__container .embody__box.long {
    width: 83.33vw;
    padding: 8.89vw 8.89vw 71.67vw 8.89vw;
  }
}
.embody .embody__container .embody__box img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.embody.letters .embody__container .embody__box {
  width: 560px;
}
@media (max-width: 2000px) {
  .embody.letters .embody__container .embody__box {
    width: 38.89vw;
  }
}
@media (max-width: 770px) {
  .embody.letters .embody__container .embody__box {
    width: 100%;
    padding: 8.89vw 8.89vw 71.67vw 8.89vw;
  }
}
.embody.letters .embody__container .embody__box:nth-child(1), .embody.letters .embody__container .embody__box:nth-child(4) {
  background: #F7F7F8;
}
.embody.letters .embody__container .embody__box * {
  width: 313px;
}
@media (max-width: 2000px) {
  .embody.letters .embody__container .embody__box * {
    width: 21.74vw;
  }
}
@media (max-width: 1100px) {
  .embody.letters .embody__container .embody__box * {
    width: 20vw;
  }
}
@media (max-width: 770px) {
  .embody.letters .embody__container .embody__box * {
    width: auto;
  }
}
.embody.letters .embody__container .embody__box img {
  height: 258px;
  width: auto;
}
@media (max-width: 2000px) {
  .embody.letters .embody__container .embody__box img {
    height: 17.92vw;
  }
}
@media (max-width: 770px) {
  .embody.letters .embody__container .embody__box img {
    height: 85.89vw;
    bottom: -10%;
  }
}

.swiper-container {
  overflow: hidden;
}

.cases {
  background: #F7F7F8;
}
.cases .cases__inside__container {
  width: 1360px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 100px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container {
    width: 94.44vw;
    padding: 6.94vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container {
    width: 83.33vw;
    padding: 11.11vw 6.67vw;
  }
}
.cases .cases__inside__container.extra {
  background: #F7F7F8;
}
.cases .cases__inside__container .cases__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__top {
    margin-bottom: 3.33vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__top {
    margin-bottom: 11.11vw;
    flex-direction: column;
    gap: 4.44vw;
  }
}
.cases .cases__inside__container .cases__top .main__title {
  margin: 0;
}
.cases .cases__inside__container .cases__top .cases__switch__box {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__top .cases__switch__box {
    gap: 1.67vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__top .cases__switch__box {
    gap: 4.44vw;
  }
}
.cases .cases__inside__container .cases__top .cases__switch__box .cases__numbers {
  font-size: 24px;
  font-weight: 700;
  font-family: "Soyuz Grotesk", sans-serif;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__top .cases__switch__box .cases__numbers {
    font-size: 1.67vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__top .cases__switch__box .cases__numbers {
    font-size: 5.56vw;
  }
}
.cases .cases__inside__container .cases__top .cases__switch__box button {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__top .cases__switch__box button {
    width: 3.33vw;
    height: 3.33vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__top .cases__switch__box button {
    width: 11.11vw;
    height: 11.11vw;
  }
}
.cases .cases__inside__container .cases__top .cases__switch__box button svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__top .cases__switch__box button svg {
    width: 1.67vw;
    height: 1.67vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__top .cases__switch__box button svg {
    width: 5.56vw;
    height: 5.56vw;
  }
}
.cases .cases__inside__container .cases__top .cases__switch__box button svg path {
  stroke: #FFFFFF;
}
.cases .cases__inside__container .cases__top .cases__switch__box button:disabled {
  background: #E9E9EC;
}
.cases .cases__inside__container .cases__top .cases__switch__box button:disabled svg path {
  stroke: #999999;
}
.cases .cases__inside__container .cases__main {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__main {
    gap: 5.56vw;
    margin-bottom: 1.67vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__main {
    flex-direction: column;
    gap: 8.89vw;
    margin-bottom: 8.89vw;
  }
}
.cases .cases__inside__container .cases__main .video__box {
  width: 600px;
  height: 386px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__main .video__box {
    width: 41.67vw;
    height: 26.81vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__main .video__box {
    width: 70vw;
    height: 45vw;
  }
}
.cases .cases__inside__container .cases__main .video__box img {
  width: 600px;
  height: 386px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__main .video__box img {
    width: 41.67vw;
    height: 26.81vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__main .video__box img {
    width: 70vw;
    height: 45vw;
  }
}
.cases .cases__inside__container .cases__main .info__block .text {
  margin: 24px 0 40px 0;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__main .info__block .text {
    margin: 1.67vw 0 2.78vw 0;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__main .info__block .text {
    margin: 4.44vw 0 8.89vw 0;
  }
}
.cases .cases__inside__container .cases__main .info__block .info__box {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__main .info__block .info__box {
    gap: 0.83vw;
    margin-bottom: 0.56vw;
  }
}
.cases .cases__inside__container .cases__main .info__block .info__box svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .cases__main .info__block .info__box svg {
    width: 1.67vw;
    height: 1.67vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .cases__main .info__block .info__box svg {
    width: 6.67vw;
    height: 6.67vw;
  }
}
.cases .cases__inside__container .photo__list {
  display: flex;
  gap: 24px;
  max-width: 1160px;
  overflow-x: auto;
  width: max-content;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .photo__list {
    gap: 1.67vw;
    max-width: 80.56vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .photo__list {
    gap: 2.22vw;
    max-width: none;
    flex-wrap: wrap;
    width: auto;
  }
}
.cases .cases__inside__container .photo__list .image__box {
  width: 210px;
  height: 148px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .photo__list .image__box {
    width: 14.77vw;
    height: 10.28vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .photo__list .image__box {
    width: 33.8vw;
    height: 23.33vw;
  }
}
.cases .cases__inside__container .photo__list .image__box img {
  width: auto;
  height: 148px;
  cursor: pointer;
  border-radius: 16px;
  transition: 0.3s;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .photo__list .image__box img {
    width: auto;
    height: 10.28vw;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .photo__list .image__box img {
    width: auto;
    height: 23.33vw;
  }
}
.cases .cases__inside__container .photo__list .image__box:hover img {
  scale: 1.03;
}
.cases .cases__inside__container .watch__all {
  display: flex;
  padding: 32px 46px;
  margin: 56px auto 0 auto;
}
@media (max-width: 2000px) {
  .cases .cases__inside__container .watch__all {
    padding: 2.22vw 3.19vw;
    margin: 3.89vw auto 0 auto;
  }
}
@media (max-width: 770px) {
  .cases .cases__inside__container .watch__all {
    padding: 8.89vw 12.78vw;
    margin: 11.11vw auto 0 auto;
    width: 100%;
  }
}

.about {
  background: #F7F7F8;
  padding: 140px 0;
}
@media (max-width: 2000px) {
  .about {
    padding: 9.72vw 0;
  }
}
@media (max-width: 770px) {
  .about {
    padding: 27.78vw 0;
  }
}
.about .about__top {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  margin-bottom: 42px;
}
@media (max-width: 2000px) {
  .about .about__top {
    gap: 5.56vw;
    margin-bottom: 2.92vw;
  }
}
@media (max-width: 770px) {
  .about .about__top {
    flex-direction: column;
    gap: 11.11vw;
    margin-bottom: 11.11vw;
  }
}
.about .about__top .main__title {
  margin-bottom: 24px;
}
@media (max-width: 2000px) {
  .about .about__top .main__title {
    margin-bottom: 1.67vw;
  }
}
@media (max-width: 770px) {
  .about .about__top .main__title {
    margin-bottom: 6.67vw;
  }
}
.about .about__top .about__info {
  width: 480px;
}
@media (max-width: 2000px) {
  .about .about__top .about__info {
    width: 33.33vw;
  }
}
@media (max-width: 770px) {
  .about .about__top .about__info {
    width: auto;
  }
}
.about .about__top .video__box {
  width: 600px;
  height: 386px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 2000px) {
  .about .about__top .video__box {
    width: 41.67vw;
    height: 26.81vw;
  }
}
@media (max-width: 770px) {
  .about .about__top .video__box {
    width: auto;
    height: 53.61vw;
  }
}
.about .about__bottom {
  display: flex;
  gap: 40px;
}
@media (max-width: 2000px) {
  .about .about__bottom {
    gap: 2.78vw;
  }
}
@media (max-width: 770px) {
  .about .about__bottom {
    gap: 6.67vw;
    flex-direction: column;
  }
}
.about .about__bottom .stat__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  height: 240px;
  width: 300px;
  color: #FFFFFF;
  gap: 16px;
}
@media (max-width: 2000px) {
  .about .about__bottom .stat__block {
    height: 16.67vw;
    width: 20.83vw;
    gap: 1.11vw;
  }
}
@media (max-width: 770px) {
  .about .about__bottom .stat__block {
    width: 100%;
    height: 55.56vw;
  }
}
.about .about__bottom .stat__block:nth-child(1) {
  width: 480px;
  background: #292929;
}
@media (max-width: 2000px) {
  .about .about__bottom .stat__block:nth-child(1) {
    width: 33.33vw;
  }
}
@media (max-width: 770px) {
  .about .about__bottom .stat__block:nth-child(1) {
    width: 100%;
  }
}
.about .about__bottom .stat__block:nth-child(2) {
  background: #FFFFFF;
  color: #292929;
}
.about .about__bottom .stat__block:nth-child(3) {
  background: #CF0231;
}
.about .about__bottom .stat__block .number {
  font-size: 72px;
  font-weight: 700;
}
@media (max-width: 2000px) {
  .about .about__bottom .stat__block .number {
    font-size: 5vw;
  }
}
@media (max-width: 770px) {
  .about .about__bottom .stat__block .number {
    font-size: 13.33vw;
  }
}
.about .about__bottom .stat__block .about__text {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 2000px) {
  .about .about__bottom .stat__block .about__text {
    font-size: 1.25vw;
  }
}
@media (max-width: 770px) {
  .about .about__bottom .stat__block .about__text {
    font-size: 5vw;
  }
}

.galery .galery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 2000px) {
  .galery .galery__list {
    gap: 2.78vw;
  }
}
@media (max-width: 770px) {
  .galery .galery__list {
    gap: 6.67vw;
    grid-template-columns: repeat(1, 1fr);
  }
}
.galery .galery__list .image__box {
  width: 360px;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
@media (max-width: 2000px) {
  .galery .galery__list .image__box {
    width: 25vw;
    height: 18.06vw;
  }
}
@media (max-width: 770px) {
  .galery .galery__list .image__box {
    width: 100%;
    height: 60.28vw;
  }
}
.galery .galery__list .image__box img {
  width: 360px;
  height: 260px;
  transition: 0.3s;
}
@media (max-width: 2000px) {
  .galery .galery__list .image__box img {
    width: 25vw;
    height: 18.06vw;
  }
}
@media (max-width: 770px) {
  .galery .galery__list .image__box img {
    width: 100%;
    height: 60.28vw;
  }
}
.galery .galery__list .image__box:hover img {
  scale: 1.03;
}

.wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 2000px) {
  .wrapper {
    margin-top: 3.33vw;
  }
}
@media (max-width: 2000px) and (max-width: 770px) {
  .wrapper {
    margin-top: 11.11vw;
  }
}
.wrapper button {
  padding: 32px 72px;
}
@media (max-width: 2000px) {
  .wrapper button {
    padding: 2.22vw 5vw;
  }
}
@media (max-width: 770px) {
  .wrapper button {
    padding: 8.89vw 20vw;
  }
}

.modal__img .overlay__close {
  position: fixed;
  transition: 0.3s;
  z-index: 5000;
  top: 3vw;
  right: -5vw;
  cursor: pointer;
}
@media (max-width: 770px) {
  .modal__img .overlay__close {
    top: 5vw;
    right: -10vw;
  }
}
.modal__img .overlay__close.show {
  right: 3vw;
}
.modal__img .overlay__close:hover {
  opacity: 0.7;
}
.modal__img img {
  position: fixed;
  z-index: 5000;
  width: auto;
  height: auto;
  max-height: 90vh;
  max-width: 86vw;
  margin: auto;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  overflow-y: auto;
  transition: top 0.3s;
}
.modal__img img.show {
  top: 50%;
}

.feedbak__box {
  padding-top: 0;
}

.feedback {
  width: 1360px;
  background: #DB0032;
  padding: 100px;
  color: #FFFFFF;
  border-radius: 32px;
  margin: 0 auto;
}
@media (max-width: 2000px) {
  .feedback {
    width: 94.44vw;
    padding: 6.94vw;
  }
}
@media (max-width: 770px) {
  .feedback {
    width: 83.33vw;
    padding: 11.11vw 6.67vw;
  }
}
.feedback .feedback__top {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 48px;
}
@media (max-width: 2000px) {
  .feedback .feedback__top {
    gap: 5.56vw;
    margin-bottom: 3.33vw;
  }
}
@media (max-width: 770px) {
  .feedback .feedback__top {
    flex-direction: column;
    gap: 6.67vw;
    margin-bottom: 8.89vw;
  }
}
.feedback .feedback__top .main__title {
  flex-shrink: 0;
  margin: 0;
}
.feedback .feedback__top .text2 {
  width: 414px;
}
@media (max-width: 2000px) {
  .feedback .feedback__top .text2 {
    width: 28.75vw;
  }
}
@media (max-width: 770px) {
  .feedback .feedback__top .text2 {
    width: auto;
  }
}
.feedback .main__form {
  display: flex;
  gap: 40px;
}
@media (max-width: 2000px) {
  .feedback .main__form {
    gap: 2.78vw;
  }
}
@media (max-width: 770px) {
  .feedback .main__form {
    flex-direction: column;
    gap: 4.44vw;
  }
  .feedback .main__form button {
    display: none;
  }
}
.feedback .main__form input {
  width: 413px;
}
@media (max-width: 2000px) {
  .feedback .main__form input {
    width: 28.68vw;
  }
}
@media (max-width: 770px) {
  .feedback .main__form input {
    width: 100%;
  }
}
.feedback button {
  background: #000000;
  padding: 0 90px;
  position: relative;
}
@media (max-width: 2000px) {
  .feedback button {
    padding: 0 6.25vw;
  }
}
@media (max-width: 770px) {
  .feedback button {
    width: 100%;
    height: 21.67vw;
  }
}
.feedback button::before {
  content: "";
  position: absolute;
  background: url("/assets/img/photo/back__button.webp");
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.2;
}
.feedback button:active {
  color: #808080;
}
.feedback .button__agr {
  display: none;
}
@media (max-width: 770px) {
  .feedback .button__agr {
    display: block;
  }
}

.agreement {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 2000px) {
  .agreement {
    margin-top: 2.22vw;
    gap: 1.11vw;
  }
}
@media (max-width: 770px) {
  .agreement {
    gap: 4.44vw;
    margin: 6.67vw 0 8.89vw 0;
  }
}
.agreement label {
  cursor: pointer;
}
@media (max-width: 770px) {
  .agreement label {
    font-size: 3.89vw;
  }
}
.agreement label a {
  color: #FFFFFF;
  transition: 0.3s;
}
.agreement label a:hover {
  color: #292929;
}
.agreement .input__check {
  width: 21px;
  height: 20px;
  background: #292929;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
}
@media (max-width: 2000px) {
  .agreement .input__check {
    width: 1.46vw;
    height: 1.46vw;
  }
}
@media (max-width: 770px) {
  .agreement .input__check {
    width: 5.83vw;
    height: 5.83vw;
  }
}
.agreement .input__check svg {
  width: 16px;
  height: 16px;
  opacity: 0;
}
@media (max-width: 2000px) {
  .agreement .input__check svg {
    width: 1.11vw;
    height: 1.11vw;
  }
}
@media (max-width: 770px) {
  .agreement .input__check svg {
    width: 4.44vw;
    height: 4.44vw;
  }
}
.agreement .input__check:hover {
  border-color: #DB0032;
}
.agreement .input__check.active svg {
  opacity: 1;
}

.companies .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.companies .swiper-slide img {
  max-width: 200px;
  max-height: 71px;
}
@media (max-width: 2000px) {
  .companies .swiper-slide img {
    max-width: 13.89vw;
    max-height: 4.93vw;
  }
}
@media (max-width: 770px) {
  .companies .swiper-slide img {
    max-height: 13vw;
    max-width: 35vw;
  }
}

.reviews {
  background: #F7F7F8;
  padding: 120px 0;
}
@media (max-width: 2000px) {
  .reviews {
    padding: 8.33vw 0;
  }
}
@media (max-width: 770px) {
  .reviews {
    padding: 17.78vw 0;
  }
}
.reviews .reviews__list {
  display: flex;
  gap: 38px;
  margin: 0 auto;
}
@media (max-width: 2000px) {
  .reviews .reviews__list {
    gap: 2.64vw;
  }
}
@media (max-width: 770px) {
  .reviews .reviews__list {
    gap: 3.3vw;
    flex-wrap: wrap;
  }
}
.reviews .reviews__list img {
  width: 262px;
  height: auto;
  cursor: pointer;
  border-radius: 24px;
}
@media (max-width: 2000px) {
  .reviews .reviews__list img {
    width: 18.19vw;
  }
}
@media (max-width: 770px) {
  .reviews .reviews__list img {
    width: 40vw;
  }
}
.reviews .reviews__list .video__box {
  width: 600px;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 2000px) {
  .reviews .reviews__list .video__box {
    width: 41.67vw;
    height: 25vw;
  }
}
@media (max-width: 770px) {
  .reviews .reviews__list .video__box {
    width: 100%;
    height: 53.61vw;
  }
}

footer {
  background: #F7F7F8;
}
footer .footer__insode__div {
  background: #FFFFFF;
  width: 1360px;
  margin: 0 auto 40px auto;
  border-radius: 32px;
  padding: 62px 100px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 2000px) {
  footer .footer__insode__div {
    width: 94.44vw;
    margin: 0 auto 2.78vw auto;
    padding: 4.31vw 6.94vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div {
    width: 83.33vw;
    margin: 0 auto 8.33vw auto;
    padding: 11.11vw;
    flex-direction: column;
    gap: 15.56vw;
  }
}
footer .footer__insode__div .footer__logo {
  width: 120px;
  height: auto;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__logo {
    width: 8.33vw;
    height: auto;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__logo {
    width: 22.22vw;
    height: auto;
  }
}
footer .footer__insode__div .footer__block {
  margin: 0 auto;
  display: flex;
  gap: 100px;
  font-weight: 400;
  margin-top: 15px;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__block {
    gap: 6.94vw;
    margin-top: 1.04vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__block {
    gap: 13.33vw;
    margin: 0;
  }
}
footer .footer__insode__div .footer__block .footer__pages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__block .footer__pages {
    gap: 0.56vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__block .footer__pages {
    gap: 3.33vw;
  }
}
footer .footer__insode__div .footer__right__block {
  display: flex;
  gap: 62px;
  margin-top: 15px;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__right__block {
    gap: 4.31vw;
    margin-top: 1.04vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__right__block {
    gap: 8.89vw;
    margin: 0;
    flex-direction: column;
  }
}
footer .footer__insode__div .footer__right__block .footer__info {
  display: flex;
  flex-direction: column;
}
footer .footer__insode__div .footer__right__block .footer__info .title {
  margin-bottom: 16px;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__right__block .footer__info .title {
    margin-bottom: 1.11vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__right__block .footer__info .title {
    margin-bottom: 3.33vw;
  }
}
footer .footer__insode__div .footer__right__block .footer__info .footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__right__block .footer__info .footer__social {
    gap: 0.83vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__right__block .footer__info .footer__social {
    gap: 3.33vw;
  }
}
footer .footer__insode__div .footer__right__block .footer__info .footer__social .footer__img {
  width: 32px;
  height: 32px;
  background: #292929;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__right__block .footer__info .footer__social .footer__img {
    width: 2.22vw;
    height: 2.22vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__right__block .footer__info .footer__social .footer__img {
    width: 8.89vw;
    height: 8.89vw;
  }
}
footer .footer__insode__div .footer__right__block .footer__info .footer__social .footer__img svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 2000px) {
  footer .footer__insode__div .footer__right__block .footer__info .footer__social .footer__img svg {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media (max-width: 770px) {
  footer .footer__insode__div .footer__right__block .footer__info .footer__social .footer__img svg {
    width: 5vw;
    height: 5vw;
  }
}
footer .footer__insode__div .footer__right__block .footer__info .footer__social:hover .footer__img {
  background: #DB0032;
}

.modal {
  position: fixed;
  z-index: 5000;
  width: auto;
  height: auto;
  max-height: 95vh;
  max-width: 86vw;
  margin: auto;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  transition: top 0.3s;
}
.modal.show {
  top: 50%;
}
.modal.modal__form {
  background: #F7F7F8;
  padding: 40px 60px;
  width: 620px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 2000px) {
  .modal.modal__form {
    padding: 2.78vw 4.17vw;
    width: 37.5vw;
  }
}
@media (max-width: 770px) {
  .modal.modal__form {
    width: 83.33vw;
    padding: 11.11vw 6.67vw;
  }
}
.modal .overlay__close {
  position: absolute;
  right: 1.39vw;
  top: 1.39vw;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
@media (max-width: 2000px) {
  .modal .overlay__close {
    right: 1.39vw;
    top: 1.39vw;
    width: 2.78vw;
    height: 2.78vw;
  }
}
@media (max-width: 770px) {
  .modal .overlay__close {
    width: 11.11vw;
    height: 11.11vw;
    right: 2.78vw;
    top: 2.78vw;
  }
}
.modal .overlay__close:hover {
  opacity: 0.7;
}
.modal .modal__form__title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Soyuz Grotesk", sans-serif;
}
@media (max-width: 2000px) {
  .modal .modal__form__title {
    font-size: 3.33vw;
  }
}
@media (max-width: 770px) {
  .modal .modal__form__title {
    font-size: 9.44vw;
  }
}
.modal .modal__form__text {
  margin: 20px 0 28px 0;
}
@media (max-width: 2000px) {
  .modal .modal__form__text {
    margin: 1.39vw 0 1.94vw 0;
  }
}
@media (max-width: 770px) {
  .modal .modal__form__text {
    margin: 4vw 0 6vw 0;
  }
}
.modal .input__box {
  margin-bottom: 24px;
}
@media (max-width: 2000px) {
  .modal .input__box {
    margin-bottom: 1.67vw;
  }
}
@media (max-width: 770px) {
  .modal .input__box {
    margin-bottom: 4vw;
  }
}
.modal .input__box input {
  width: 100%;
}
.modal .agreement {
  align-items: flex-start;
}
@media (max-width: 770px) {
  .modal .agreement {
    margin: 4vw 0 6vw 0;
  }
}
.modal .agreement .input__check {
  background: #DB0032;
}
.modal .agreement label {
  width: 80%;
}
.modal .agreement label a {
  color: #292929;
}
.modal .agreement label a:hover {
  color: #DB0032;
}
.modal button {
  width: 100%;
  height: 78px;
  margin-top: 32px;
}
@media (max-width: 2200px) {
  .modal button {
    height: 5.42vw;
    margin-top: 2.22vw;
  }
}
@media (max-width: 770px) {
  .modal button {
    height: 20vw;
    margin-top: 0;
  }
}

.white {
  background: #FFFFFF !important;
}

.back {
  background: #F7F7F8 !important;
}

.m__120 {
  margin: 120px auto;
}
@media (max-width: 2000px) {
  .m__120 {
    margin: 8.33vw auto;
  }
}
@media (max-width: 770px) {
  .m__120 {
    margin: 17.78vw auto;
  }
}

.p__100 {
  padding: 100px 0;
}
@media (max-width: 2000px) {
  .p__100 {
    padding: 6.94vw 0;
  }
}
@media (max-width: 770px) {
  .p__100 {
    padding: 17.78vw 0;
  }
}

.contacts .left__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 2000px) {
  .contacts .left__block {
    gap: 0.78vw;
  }
}
@media (max-width: 770px) {
  .contacts .left__block {
    gap: 2vw;
  }
}
.contacts .contacts__content {
  display: flex;
  margin: 50px 0;
  justify-content: space-between;
}
@media (max-width: 2000px) {
  .contacts .contacts__content {
    margin: 2.6vw 0;
  }
}
@media (max-width: 770px) {
  .contacts .contacts__content {
    flex-direction: column;
    gap: 4vw;
    margin: 8.33vw 0;
  }
}
.contacts .phones__block {
  display: flex;
  flex-direction: column;
}
.contacts .phones__block a {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 2000px) {
  .contacts .phones__block a {
    gap: 0.78vw;
  }
}
@media (max-width: 770px) {
  .contacts .phones__block a {
    gap: 2vw;
  }
}
.contacts .phones__block a svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 2000px) {
  .contacts .phones__block a svg {
    width: 1.3vw;
    height: 1.3vw;
  }
}
@media (max-width: 1100px) {
  .contacts .phones__block a svg {
    width: 2vw;
    height: 2vw;
  }
}
@media (max-width: 770px) {
  .contacts .phones__block a svg {
    width: 5vw;
    height: 5vw;
  }
}
.contacts .phones__block a svg path {
  fill: #DB0032;
}
.contacts .contacts__block {
  display: flex;
  align-items: center;
  gap: 0.78vw;
}
.contacts .contacts__block svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 2000px) {
  .contacts .contacts__block svg {
    width: 1.3vw;
    height: 1.3vw;
  }
}
@media (max-width: 1100px) {
  .contacts .contacts__block svg {
    width: 2vw;
    height: 2vw;
  }
}
@media (max-width: 770px) {
  .contacts .contacts__block svg {
    width: 5vw;
    height: 5vw;
  }
}
.contacts .contacts__block svg path {
  fill: #DB0032;
}
.contacts .contacts__whatsapp button {
  display: flex;
  align-items: center;
  gap: 0.63vw;
  cursor: pointer;
  transition: 0.3s;
  justify-content: flex-start;
  padding: 10px 20px;
}
@media (max-width: 2000px) {
  .contacts .contacts__whatsapp button {
    padding: 0.68vw 1.75vw;
  }
}
@media (max-width: 1100px) {
  .contacts .contacts__whatsapp button {
    padding: 0.8vw 2vw;
  }
}
@media (max-width: 770px) {
  .contacts .contacts__whatsapp button {
    gap: 2vw;
    padding: 2vw 5vw;
  }
}
.contacts .contacts__whatsapp button svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 2000px) {
  .contacts .contacts__whatsapp button svg {
    width: 1.04vw;
    height: 1.04vw;
  }
}
@media (max-width: 1100px) {
  .contacts .contacts__whatsapp button svg {
    width: 1.4vw;
    height: 1.3vw;
  }
}
@media (max-width: 770px) {
  .contacts .contacts__whatsapp button svg {
    width: 4vw;
    height: 4vw;
  }
}
.contacts .contacts__whatsapp button svg path {
  fill: #FFFFFF;
}
.contacts .contacts__whatsapp button span {
  text-align: left;
}
.contacts .schedule {
  font-weight: 600;
}
.contacts iframe {
  width: 50%;
  height: 260px;
  border: none;
  border-radius: 16px;
}
@media (max-width: 2000px) {
  .contacts iframe {
    height: 20vw;
  }
}
@media (max-width: 770px) {
  .contacts iframe {
    width: 100%;
    height: 40vw;
  }
}

.pb__50 {
  padding-bottom: 50px;
}
@media (max-width: 2000px) {
  .pb__50 {
    margin-bottom: 2.6vw;
  }
}
@media (max-width: 770px) {
  .pb__50 {
    margin-bottom: 5.21vw;
  }
}

.pt__50 {
  padding-top: 50px;
}
@media (max-width: 2000px) {
  .pt__50 {
    padding-top: 2.6vw;
  }
}
@media (max-width: 770px) {
  .pt__50 {
    padding-top: 5.21vw;
  }
}

.services__menu__box {
  position: relative;
}
.services__menu__box .services__menu {
  position: absolute;
  background: #F7F7F8;
  top: -20vw;
  opacity: 0;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 30px ;
  border: 1px solid #808080;
  text-align: start;
  font-size: 1vw;
  display:flex;
  flex-direction: column;
  gap: .5vw;
}
.services__menu__box .services__menu a {
  display: block;
  width: max-content;
}
.services__menu__box:hover .services__menu {
  top: 100%;
  opacity: 1;
}

.services__menu__mobile {
  display: flex;
  gap: 2vw;
  position: absolute;
  top: 200%;
  left: 10%;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  font-size: 4.1vw;
}

/*# sourceMappingURL=style.css.map */


.whatsapp__img {
    position: fixed;
    right: 4.17vw;
    bottom: 2.08vw;
    z-index: 999
}

.whatsapp__img img {
    width: 4.17vw;
    height: 4.17vw
}

.whatsapp__img:hover {
    opacity: .6
}

@media (max-width: 770px) {
    .whatsapp__img {
        right:3vw;
        bottom: 15vw;
        z-index: 999
    }

    .whatsapp__img img {
        width: 15vw;
        height: 15vw
    }
}

.dev__box {
    display: flex;
    justify-content: center;
    width: 100%;
}
