@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

.wrapper {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.header {
  z-index: 3000;
}

.main {
  z-index: 1000;
}

.footer {
  z-index: 1500;
}

.container {
  padding: 0px 0px;
  width: 1200px;
  margin: auto;
}
@media (max-width: 1230px) {
  .container {
    padding: 0px 20px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .container {
    padding: 0px 10px;
  }
}

.body.no-scroll {
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.padding-header {
  padding: 100px 0px 0px;
}
@media (max-width: 770px) {
  .padding-header {
    padding: 92px 0px 0px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.main-header {
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.main-header__body {
  padding: 12px 0px;
  display: flex;
  align-items: center;
}
.main-header__body .main-footer__social .main-footer__social-link {
  border: 2px solid #000000;
}
@media (max-width: 960px) {
  .main-header__body .main-footer__social .main-footer__social-link {
    min-width: 40px;
    height: 40px;
    border-radius: 5px;
  }
}

.main-header__logo {
  flex: auto;
}

.main-header__menu {
  margin: 0px 50px 0px 0px;
  display: flex;
  align-items: center;
}

.main-header__menu-item {
  margin: 0px 30px 0px 0px;
}
.main-header__menu-item:last-child {
  margin: 0;
}

.main-header__menu-link {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000000;
}

.main-header__phone {
  display: flex;
  align-items: center;
  transition: 0.5s all;
}
.main-header__phone:hover .main-header__phone-text::before {
  width: 100%;
}

.main-header__phone-icon {
  margin: 0px 7px 0px 0px;
}
.main-header__phone-icon svg {
  max-width: 100%;
}

.main-header__phone-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.main-header__burger {
  display: none;
}

@media (max-width: 1050px) {
  .main-header__menu {
    margin: 0px 30px 0px 0px;
  }
  .main-header__menu-item {
    margin: 0px 20px 0px 0px;
  }
}
@media (max-width: 960px) {
  .main-header__menu {
    display: none;
  }
  .main-header__phone {
    margin: 0px 10px 0px 0px;
  }
  .main-header__phone-icon {
    margin: 0px;
    min-width: 40px;
    height: 40px;
    border: 2px solid #000000;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-header__phone-icon svg {
    width: 17px;
  }
  .main-header__phone-text {
    display: none;
  }
  .main-header__burger {
    display: block;
  }
}
.smart-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: inline;
  overflow-y: auto;
  z-index: 10000;
  transition: 1s all;
}
.smart-header.active {
  right: 0;
}
.smart-header.active .container::before {
  right: 0;
  opacity: 0.5;
}
.smart-header.active .smart-header__content {
  right: 0;
}
.smart-header .container {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}
.smart-header .container::before {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000000;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}

.smart-hedaer__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
}

.smart-header__content {
  padding: 80px 20px 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.smart-header__menu-title {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: start;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}

.smart-header__exit {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: end;
}

.smart-header__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.smart-header__exit-img span {
  width: 20px;
  height: 2px;
  background: #000000;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
}
.smart-header__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: rotate(90deg);
}

.smart-header__menu {
  flex: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.smart-header__menu-item {
  margin: 0px 0px 10px;
  width: 100%;
  border-radius: 10px;
  background: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.smart-header__menu-item:last-child {
  margin: 0;
}
.smart-header__menu-item.submenu {
  position: relative;
}

.smart-header__menu-link {
  padding: 20px;
  width: 100%;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  background: #e5e5e5;
  display: inline-block;
  text-align: end;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.logo .logo__body {
  display: inline-block;
}
.logo .logo__img {
  max-width: 115px;
  width: 100%;
  transition: 0.5s all;
}
.logo .logo__img img {
  width: 100%;
}
@media (max-width: 770px) {
  .logo .logo__img {
    max-width: 100px;
  }
}

.burger .burger__img {
  min-width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
}
.burger .burger__img:hover {
  opacity: 0.5;
}
.burger .burger__img span {
  width: 20px;
  height: 3px;
  display: inline-block;
  background: #000000;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img span::before,
.burger .burger__img span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -7px;
}
.burger .burger__img span::after {
  bottom: -7px;
}

.slick-track {
  display: flex;
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0%;
  height: 1px;
  background: #000000;
  transition: 1s all;
}
.text-hover:hover::before {
  width: 100%;
}

.social {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 1600;
}
@media (max-width: 770px) {
  .social {
    right: 20px;
    bottom: 15px;
  }
}

.social__body {
  display: flex;
  flex-direction: column;
}

.social__link {
  margin: 0px 0px 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #53C644;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.social__link:last-child {
  margin: 0;
}
.social__link img {
  width: 50%;
}
.social__link:hover {
  scale: 0.9;
  opacity: 0.6;
}
@media (max-width: 770px) {
  .social__link {
    width: 50px;
    height: 50px;
  }
  .social__link img {
    width: 25px;
  }
}

.fancybox__container {
  z-index: 4000;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.message {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10000;
}
.message.active {
  animation: messageSlide 5s ease-in-out forwards;
}
@keyframes messageSlide {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  15% {
    bottom: 20px;
    opacity: 1;
  }
  70% {
    bottom: 20px;
    opacity: 1;
  }
  100% {
    bottom: -200px;
    opacity: 0;
  }
}

.message__body {
  background: #4caf50;
  padding: 16px 24px;
  border-radius: 8px;
}

.message__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: white;
}

.banner-home {
  margin: 140px 0px 60px;
}

.banner-home__body {
  display: flex;
  flex-direction: column;
}

.banner-home__banner {
  padding: 60px 40px 40px;
  border-radius: 30px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(68.17% 136.35% at 50% 0%, #F7C8BE 0%, #742617 100%), linear-gradient(283.95deg, rgba(226, 146, 130, 0) 35%, rgba(216, 182, 175, 0.5) 100%), linear-gradient(108.44deg, rgba(255, 30, 30, 0.25) -21.41%, rgba(177, 0, 246, 0.25) 12.98%, rgba(15, 52, 216, 0.25) 44.97%, rgba(49, 248, 255, 0.25) 76.46%, rgba(11, 255, 96, 0.25) 104.96%, rgba(243, 253, 178, 0.25) 144.95%), radial-gradient(79.46% 79.46% at 51.62% 8.13%, rgba(225, 144, 144, 0) 0%, #C06C3A 100%);
  background-blend-mode: saturation, normal, lighten, normal;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.banner-home__content {
  display: flex;
  flex-direction: column;
}

.banner-home__content-icon {
  margin: 0px 0px 15px;
}
.banner-home__content-icon svg {
  opacity: 0.5;
}

.banner-home__content-title {
  margin: 0px 0px 30px;
  font-family: "Exo 2", sans-serif;
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  color: #ffffff;
}

.banner-home__content-text {
  margin: 0px 0px 15px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
}
.banner-home__content-text:last-child {
  margin: 0;
}

.banner-home__img-background {
  position: absolute;
  bottom: -100px;
  right: -100px;
  max-width: 60%;
  z-index: -1;
}
.banner-home__img-background img {
  max-width: 100%;
}

.banner-home__img-text {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
}

@media (max-width: 1100px) {
  .banner-home__content-title br {
    display: none;
  }
}
@media (max-width: 770px) {
  .banner-home {
    margin: 110px 0px 50px;
  }
  .banner-home__banner {
    padding: 60px 30px 140px;
    border-radius: 10px;
  }
  .banner-home__content-icon {
    margin: 0px 0px 10px;
    width: 40px;
  }
  .banner-home__content-icon svg {
    width: 100%;
  }
  .banner-home__content-title {
    margin: 0px 0px 20px;
    font-size: 25px;
    line-height: 30px;
  }
  .banner-home__content-text {
    margin: 0px 0px 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .banner-home__content-text p {
    margin: 0px 0px 10px;
  }
  .banner-home__content-text p:last-child {
    margin: 0;
  }
  .banner-home__img-background {
    bottom: -50;
    right: -50;
    max-width: 400px;
  }
  .banner-home__img-text {
    width: 250px;
  }
  .banner-home__img-text img {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .banner-home__banner {
    padding: 60px 20px 140px;
  }
}
.advantages-home {
  margin: 0px 0px 60px;
}

.advantages-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.advantages-home__block {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
}

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

.advantages-home__column {
  margin: 0px 30px 0px 0px;
  width: 100%;
}

.advnatages-home__column-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advantages-home__column-title {
  margin: 0px 0px 15px;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000000;
}

.advantages-home__column-text {
  margin: 0px 0px 25px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #8E8E8E;
}

.advantages-home__column-list {
  padding: 30px 25px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
}

.advantages-home__column-list-item {
  margin: 0px 0px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advantages-home__column-list-item:last-child {
  margin: 0;
}
.advantages-home__column-list-item:hover .advantages-home__column-list-icon {
  margin: 0px 15px;
}

.advantages-home__column-list-text {
  max-width: 200px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #7E8081;
}
.advantages-home__column-list-text.left {
  text-align: end;
}

.advantages-home__column-list-icon {
  margin: 0px 25px;
  min-width: 70px;
  height: 70px;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}

@media (max-width: 1150px) {
  .advantages-home__column-title {
    font-size: 20px;
    line-height: 25px;
  }
  .advantages-home__column-title br {
    display: none;
  }
  .advantages-home__column-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 990px) {
  .advantages-home__row {
    flex-direction: column;
  }
  .advantages-home__column {
    margin: 0px 0px 30px;
  }
  .advantages-home__column:last-child {
    margin: 0;
  }
  .advantages-home__column-title {
    margin: 0px 0px 10px;
  }
  .advantages-home__column-text {
    margin: 0px 0px 15px;
  }
}
@media (max-width: 770px) {
  .advantages-home {
    margin: 0px 0px 50px;
  }
  .advantages-home__column-list {
    border-radius: 10px;
  }
}
@media (max-width: 500px) {
  .advantages-home__column-list {
    padding: 30px 10px;
  }
  .advantages-home__column-list-item {
    margin: 0px 0px 15px;
  }
  .advantages-home__column-list-text {
    font-size: 14px;
    line-height: 20px;
  }
  .advantages-home__column-list-icon {
    margin: 0px 15px;
    min-width: 50px;
    height: 50px;
  }
  .advantages-home__column-list-icon img {
    width: 20px;
  }
}
@media (max-width: 360px) {
  .advantages-home__column-list-item {
    margin: 0px 0px 30px;
    flex-direction: column;
  }
  .advantages-home__column-list-item:hover .advantages-home__column-list-icon {
    margin: 0px 0px 10px;
  }
  .advantages-home__column-list-text.left {
    margin: 0px 0px 10px;
    text-align: center;
    order: 2;
  }
  .advantages-home__column-list-text.right {
    text-align: center;
    order: 3;
  }
  .advantages-home__column-list-icon {
    margin: 0px 0px 10px;
    min-width: 70px;
    height: 70px;
    order: 1;
  }
  .advantages-home__column-list-icon img {
    width: 30px;
  }
}
.info-home {
  margin: 0px 0px 60px;
}

.info-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-home__title {
  margin: 0px 0px 30px;
  width: 100%;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000000;
}

.info-home__row {
  padding: 0px 0px 15px;
  width: calc(100% + 0px);
  display: flex;
  overflow-x: auto;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.info-home__row::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.info-home__row::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0px;
}
.info-home__row::-webkit-scrollbar-track {
  background: #8E8E8E;
}

.info-home__column {
  margin: 0px 10px 0px 0px;
  min-width: calc(100% - 200px);
}
.info-home__column:last-child {
  margin: 0;
}

.info-home__column-body {
  padding: 60px 40px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.info-home__column-content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.info-home__column-content-icon {
  margin: 0px 0px 15px;
}
.info-home__column-content-icon svg {
  opacity: 0.5;
}

.info-home__column-content-title {
  margin: 0px 0px 40px;
  font-family: "Exo 2", sans-serif;
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  color: #ffffff;
}

.info-home__column-content-text {
  max-width: 500px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
}
.info-home__column-content-text p {
  margin: 0px 0px 10px;
}
.info-home__column-content-text p:last-child {
  margin: 0;
}
.info-home__column-content-text ul {
  margin: 0px 0px 10px;
}
.info-home__column-content-text ul:last-child {
  margin: 0;
}
.info-home__column-content-text ul li {
  margin: 0px 0px 10px;
  padding: 0px 0px 0px 20px;
  position: relative;
}
.info-home__column-content-text ul li:last-child {
  margin: 0;
}
.info-home__column-content-text ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.info-home__column-content-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  pointer-events: none;
  z-index: -1;
}
.info-home__column-content-img img {
  max-width: 100%;
}

@media (max-width: 1000px) {
  .info-home__column {
    min-width: calc(100% - 100px);
  }
}
@media (max-width: 770px) {
  .info-home__column-body {
    padding: 40px 30px 150px;
    border-radius: 10px;
  }
  .info-home__column-content-icon {
    margin: 0px 0px 10px;
  }
  .info-home__column-content-icon svg {
    width: 40px;
  }
  .info-home__column-content-title {
    margin: 0px 0px 15px;
    font-size: 25px;
    line-height: 30px;
  }
  .info-home__column-content-text {
    font-size: 16px;
    line-height: 22px;
  }
  .info-home__column-content-text ul li {
    margin: 0px 0px 5px;
  }
}
@media (max-width: 550px) {
  .info-home__column {
    min-width: 300px;
  }
  .info-home__column-body {
    padding: 30px 20px 100px;
  }
  .info-home__column-content-img {
    max-width: 180px;
  }
}
.whom-home {
  margin: 0px 0px 60px;
}

.whom-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.whom-home__block {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
}

.whom-home__icon {
  margin: 0px 0px 15px;
  width: 100%;
}

.whom-home__title {
  margin: 0px 0px 50px;
  width: 100%;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000000;
}

.whom-home__subtitle {
  margin: 0px 0px 25px;
  width: 100%;
  font-family: "Exo 2", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  color: #000000;
}

.whom-home__row {
  margin: 0px 0px 50px;
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}
.whom-home__row:last-child {
  margin: 0;
}

.whom-home__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.whom-home__column-body {
  padding: 16px;
  width: 100%;
  height: 100%;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  display: flex;
  align-items: start;
  transition: 0.5s all;
}
.whom-home__column-body:hover {
  margin: -10px 0px 0px;
}

.whom-home__column-img {
  margin: 0px 15px 0px 0px;
  min-width: 65px;
  height: 65px;
}
.whom-home__column-img img {
  width: 100%;
  height: 100%;
}

.whom-home__column-content {
  display: flex;
  flex-direction: column;
}

.whom-home__column-content-title {
  margin: 0px 0px 8px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.whom-home__column-content-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #8E8E8E;
}

@media (max-width: 1000px) {
  .whom-home__row {
    padding: 0px 0px 15px;
    width: calc(100% + 0px);
    display: flex;
    overflow-x: auto;
  }
  .whom-home__row::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .whom-home__row::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 0px;
  }
  .whom-home__row::-webkit-scrollbar-track {
    background: #8E8E8E;
  }
  .whom-home__column {
    margin: 0px 10px 0px 0px;
    padding: 0px;
    min-width: 250px;
    width: 100%;
  }
  .whom-home__column:last-child {
    margin: 0;
  }
  .whom-home__column-body {
    flex-direction: column;
    align-items: center;
  }
  .whom-home__column-body:hover {
    margin: 0px 0px 0px;
  }
  .whom-home__column-img {
    margin: 0px 0px 15px;
  }
  .whom-home__column-content {
    align-items: center;
  }
  .whom-home__column-content-title {
    text-align: center;
  }
  .whom-home__column-content-text {
    text-align: center;
  }
}
@media (max-width: 770px) {
  .whom-home__icon {
    margin: 0px 0px 10px;
  }
  .whom-home__icon svg {
    width: 40px;
  }
  .whom-home__title {
    margin: 0px 0px 20px;
    font-size: 25px;
    line-height: 30px;
  }
  .whom-home__subtitle {
    font-size: 20px;
    line-height: 25px;
  }
  .whom-home__row {
    margin: 0px 0px 25px;
  }
}
.trust-home {
  margin: 0px 0px 60px;
}
.trust-home .container {
  width: 100%;
}

.trust-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.trust-home__block {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
}

.trust-home__title {
  margin: 0px 0px 40px;
  width: 1200px;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000000;
}

.trust-home__infinete {
  width: 100%;
  display: flex;
}

.trust-home__row {
  gap: 20px;
  display: flex;
  animation: scroll 10s linear infinite;
  transition: 0.5s all;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.trust-home__column {
  gap: 20px;
  display: flex;
  align-items: center;
}

.trust-home__column-icon {
  width: auto;
  height: 50px;
}
.trust-home__column-icon img {
  max-height: 100%;
}

@media (max-width: 1230px) {
  .trust-home__title {
    width: 100%;
  }
}
@media (max-width: 770px) {
  .trust-home {
    margin: 0px 0px 50px;
  }
  .trust-home__title {
    margin: 0px 0px 25px;
    font-size: 25px;
    line-height: 30px;
  }
}
.content-home {
  margin: 0px 0px 60px;
}

.content-home__body {
  display: flex;
  flex-direction: column;
}

.content-home__title {
  margin: 0px 0px 30px;
  width: 1200px;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000000;
}

.content-home__content {
  display: flex;
  flex-direction: column;
}

.content-home__row {
  margin: 0px 0px 30px;
  display: flex;
}

.content-home__column {
  margin: 0px 30px 0px 0px;
  width: 100%;
  min-height: 340px;
}
.content-home__column:last-child {
  margin: 0;
}

.content-home__column-body {
  padding: 25px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #676767;
  background-image: radial-gradient(100% 256% at 100% 0%, #D8D8D8 0%, #595959 100%);
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  z-index: 1;
}
.content-home__column-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content-home__column-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.content-home__column-title {
  flex: auto;
  font-family: "Exo 2", sans-serif;
  font-size: 50px;
  line-height: 55px;
  font-weight: 600;
  color: #ffffff;
  z-index: 2;
}

.content-home__column-link {
  padding: 15px 30px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background: #ffffff;
  display: flex;
  align-items: center;
  transition: 0.5s all;
}
.content-home__column-link:hover {
  background: transparent;
}
.content-home__column-link:hover .content-home__column-link-icon path {
  stroke: #ffffff;
  fill: #ffffff;
}
.content-home__column-link:hover .content-home__column-link-text {
  color: #F7F7F7;
}

.content-home__column-link-icon {
  margin: 0px 10px 0px 0px;
}
.content-home__column-link-icon svg {
  max-width: 100%;
}
.content-home__column-link-icon path {
  transition: 0.5s all;
}

.content-home__column-link-text {
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.contnet-home__social {
  display: flex;
}

.content-home__social-column {
  margin: 0px 30px 0px 0px;
  width: 100%;
  min-height: 250px;
}
.content-home__social-column:last-child {
  margin: 0;
}
.content-home__social-column:nth-child(1) .contnet-home__social-column-body {
  background-color: #71E65C;
  background-blend-mode: multiply;
  background-image: radial-gradient(100% 256% at 100% 0%, #D8D8D8 0%, #595959 100%);
}
.content-home__social-column:nth-child(2) .contnet-home__social-column-body {
  background-color: #82E4C0;
  background-blend-mode: multiply;
  background-image: radial-gradient(100% 256% at 100% 0%, #D8D8D8 0%, #595959 100%);
}
.content-home__social-column:nth-child(3) .contnet-home__social-column-body {
  background-color: #86D8F3;
  background-blend-mode: multiply;
  background-image: radial-gradient(100% 256% at 100% 0%, #D8D8D8 0%, #595959 100%);
}

.contnet-home__social-column-body {
  padding: 25px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}

.content-home__social-column-icon {
  position: absolute;
  bottom: 25px;
  right: 25px;
  opacity: 0.2;
}

.content-home__social-column-title {
  flex: auto;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  color: #ffffff;
}

.content-home__social-column-link {
  display: inline-block;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
}
.content-home__social-column-link:hover {
  opacity: 0.5;
}

@media (max-width: 1000px) {
  .content-home__row {
    margin: 0px 0px 20px;
  }
  .content-home__column {
    margin: 0px 20px 0px 0px;
  }
  .content-home__column-body {
    padding: 20px;
    z-index: 1;
  }
  .content-home__column-body::before {
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }
  .content-home__column-img {
    z-index: -2;
  }
  .content-home__column-title {
    font-size: 25px;
    line-height: 30px;
  }
  .content-home__column-link {
    padding: 10px 20px;
  }
  .content-home__social-column {
    margin: 0px 20px 0px 0px;
  }
  .contnet-home__social-column-body {
    padding: 20px;
  }
  .content-home__social-column-title {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 770px) {
  .content-home {
    margin: 0px 0px 50px;
  }
  .content-home__title {
    margin: 0px 0px 25px;
    font-size: 25px;
    line-height: 30px;
  }
  .content-home__row {
    margin: 0px 0px 10px;
    flex-direction: column;
  }
  .content-home__column {
    margin: 0px 0px 10px;
    min-height: auto;
  }
  .content-home__column-body {
    min-height: 250px;
  }
  .contnet-home__social {
    flex-direction: column;
  }
  .content-home__social-column {
    margin: 0px 0px 10px;
    min-height: auto;
  }
  .contnet-home__social-column-body {
    min-height: 150px;
  }
  .content-home__social-column-icon {
    bottom: 0px;
    right: 10px;
    max-width: 100px;
  }
  .content-home__social-column-icon svg {
    width: 100%;
  }
}
.faq-home {
  margin: 0px 0px 60px;
}

.faq-home__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.faq-home__block {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
}

.faq-home__info {
  flex: 0 0 calc(50% - 10px);
  width: 100%;
}

.faq-home__info-title {
  margin: 0px 0px 25px;
  max-width: 400px;
  width: 100%;
  width: 1200px;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000000;
}

.faq-home__info-text {
  margin: 0px 0px 25px;
  max-width: 400px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #8E8E8E;
}
.faq-home__info-text p {
  margin: 0px 0px 10px;
}
.faq-home__info-text p:last-child {
  margin: 0;
}

.faq-home__info-list {
  display: flex;
  flex-direction: column;
}

.faq-home__info-list-item {
  margin: 0px 0px 20px;
}
.faq-home__info-list-item:last-child {
  margin: 0;
}

.faq-home__info-list-link {
  display: inline-flex;
  align-items: center;
}
.faq-home__info-list-link:hover .faq-home__info-list-text::before {
  width: 100%;
}

.faq-home__info-list-icon {
  margin: 0px 15px 0px 0px;
  width: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-home__info-list-icon svg {
  max-width: 100%;
}

.faq-home__info-list-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.faq-home__info-list-text::before {
  background: #FF0000;
}

.faq-home__content {
  flex: 0 0 calc(50% - 10px);
  width: 100%;
}

.faq-home__content-row {
  gap: 15px;
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(2, 1fr);
}

.faq-home__content-column {
  width: 100%;
}

.faq-home__content-column-body {
  width: 100%;
  height: 100%;
}

.faq-home__content-column-title {
  padding: 15px 60px 15px 25px;
  border-radius: 10px;
  background: #F2F2F2;
  cursor: pointer;
  position: relative;
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.faq-home__content-column-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("../img/icon/arrow-faq.svg") center/100% 100% no-repeat;
  transition: 0.5s all;
}
.faq-home__content-column-title.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.faq-home__content-column-title.active::before {
  transform: rotate(180deg);
}

.faq-home__content-column-text {
  padding: 10px 25px;
  border-top: 2px solid #e5e5e5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #F2F2F2;
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #8E8E8E;
}

@media (max-width: 880px) {
  .faq-home__body {
    flex-direction: column;
  }
  .faq-home__info {
    margin: 0px 0px 25px;
  }
  .faq-home__info-title {
    margin: 0;
    max-width: 100%;
  }
  .faq-home__info-text {
    max-width: 100%;
  }
}
@media (max-width: 770px) {
  .faq-home {
    margin: 0px 0px 50px;
  }
  .faq-home__info-title {
    font-size: 25px;
    line-height: 30px;
  }
  .faq-home__content-row {
    gap: 10px;
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
}
.footer {
  background: #000000;
}

.main-footer__body {
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
}

.main-footer__loge {
  margin: 0px 0px 40px;
  display: flex;
  align-items: end;
}

.main-footer__logo-img {
  margin: 0px 30px 0px 0px;
}
.main-footer__logo-img svg {
  max-width: 100%;
}

.main-footer__logo-text {
  max-width: 350px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #e5e5e5;
}

.main-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-footer__contact {
  display: flex;
  align-items: center;
}

.main-footer__contact-item {
  margin: 0px 30px 0px 0px;
}
.main-footer__contact-item:last-child {
  margin: 0;
}

.main-footer__contact-link {
  display: flex;
  align-items: center;
  transition: 0.5s all;
}
.main-footer__contact-link:hover {
  opacity: 0.5;
}

.main-footer__contact-icon {
  margin: 0px 10px 0px 0px;
  display: flex;
  align-items: center;
}
.main-footer__contact-icon svg {
  max-width: 100%;
}

.main-footer__contact-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #e5e5e5;
}

.main-footer__social {
  display: flex;
  align-items: center;
}

.main-footer__social-item {
  margin: 0px 10px 0px 0px;
}
.main-footer__social-item:nth-child(2) .main-footer__social-link {
  background: transparent;
}

.main-footer__social-link {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.main-footer__social-link:hover {
  opacity: 0.5;
}

@media (max-width: 1000px) {
  .main-footer__row {
    flex-direction: column;
  }
  .main-footer__contact {
    margin: 0px 0px 20px;
  }
}
@media (max-width: 770px) {
  .main-footer__loge {
    margin: 0px 0px 25px;
    flex-direction: column;
    align-items: center;
  }
  .main-footer__logo-img {
    margin: 0px 0px 15px;
  }
  .main-footer__logo-text {
    text-align: center;
  }
  .main-footer__contact {
    flex-direction: column;
  }
  .main-footer__contact-item {
    margin: 0px 0px 15px;
  }
  .main-footer__contact-item:last-child {
    margin: 0;
  }
}
.policy-footer__body {
  padding: 20px 0px;
  border-top: 2px solid rgba(142, 142, 142, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-footer__logo {
  margin: 0px 0px 0px 0px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-weight: 500;
  color: #e5e5e5;
}
.policy-footer__logo a {
  display: inline-block;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-weight: 500;
  color: #ffffff;
}
.policy-footer__logo a:hover {
  opacity: 0.5;
}

.policy-footer__policy {
  margin: 0px 0px 0px 0px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-weight: 500;
  color: #e5e5e5;
}

@media (max-width: 770px) {
  .policy-footer__body {
    padding: 15px 0px;
    flex-direction: column;
  }
  .policy-footer__logo {
    margin: 0px 0px 10px;
  }
}