@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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: 1290px;
  margin: auto;
}
@media (max-width: 1310px) {
  .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: 100px 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%;
}
.header.scroll .main-header::before, .header.scroll-static .main-header::before {
  background: rgba(0, 0, 0, 0.2);
}

.main-header {
  position: relative;
  z-index: 1;
}
.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: 0.5s all;
  z-index: -1;
}

.main-header__body {
  padding: 25px 0px;
  display: flex;
  align-items: center;
}

.main-header__logo {
  flex: auto;
}

.main-header__menu {
  margin: 0px 25px 0px 0px;
  display: flex;
}

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

.main-header__menu-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.main-header__phone {
  padding: 12px 25px;
  border: 2px solid #FD6220;
  border-radius: 25px;
  background: #FD6220;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.main-header__phone:hover {
  background: transparent;
  color: #FD6220;
}

.main-header__burger {
  display: none;
}

@media (max-width: 1050px) {
  .main-header__menu {
    display: none;
  }
  .main-header__phone {
    display: none;
  }
  .main-header__burger {
    display: block;
  }
}
@media (max-width: 770px) {
  .main-header__body {
    padding: 15px 0px;
  }
}
.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: #000;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}

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

.smart-header__content {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.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 #000;
  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: #000;
  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: #000;
  transform: rotate(90deg);
}

.smart-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-item {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-link {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
}

.smart-header__phone {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.smart-header__phone-link {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  color: #FD6220;
}

@media (max-width: 400px) {
  .smart-header__menu-link {
    font-size: 20px;
    line-height: 25px;
  }
}
.logo .logo__body {
  display: inline-block;
}
.logo .logo__img {
  max-width: 120px;
  width: 100%;
}
.logo .logo__img img {
  width: 100%;
}

.burger .burger__img {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img:hover {
  background: transparent;
}
.burger .burger__img:hover span,
.burger .burger__img:hover span::before,
.burger .burger__img:hover span::after {
  background: #fff;
}
.burger .burger__img span {
  width: 20px;
  height: 3px;
  display: inline-block;
  background: #fff;
  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: #fff;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -7px;
}
.burger .burger__img span::after {
  bottom: -7px;
}

.slick-track {
  display: flex;
}

.slick.services .slick-dots {
  padding: 40px 0px 0px;
  display: flex;
  justify-content: center;
}
.slick.services .slick-dots li {
  margin: 0px 10px 0px 0px;
}
.slick.services .slick-dots li:last-child {
  margin: 0;
}
.slick.services .slick-dots li.slick-active button {
  width: 12px;
  height: 12px;
  background: #FD6220;
}
.slick.services .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFC3AF;
  transition: 0.5s all;
  font-size: 0;
}
@media (max-width: 770px) {
  .slick.services .slick-dots {
    padding: 20px 0px 0px;
  }
}
.slick.gallery .slick-prev.slick-arrow,
.slick.gallery .slick-next.slick-arrow {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5) url("../img/icon/arrow-gallery.svg") center/30px 30px no-repeat;
  z-index: 1;
  font-size: 0;
}

.title {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #000;
}
.title.white {
  color: #fff;
}
@media (max-width: 770px) {
  .title {
    padding: 0;
    font-size: 30px;
    line-height: 35px;
  }
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  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: 10px;
    bottom: 10px;
  }
}

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

.social__img {
  margin: 0px 0px 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #31CA36;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.social__img img {
  width: 50%;
}
.social__img:last-child {
  margin: 0;
}
.social__img:hover {
  opacity: 0.6;
}
.social__img.active {
  border: 1.5px solid #fff;
}
@media (max-width: 770px) {
  .social__img {
    width: 50px;
    height: 50px;
  }
  .social__img img {
    width: 25px;
  }
}

.fancybox__container {
  z-index: 4000;
}

.main-modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10000;
}
.main-modal.active {
  display: block;
  left: 0;
}

.main-modal__body {
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.main-modal__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.main-modal__content {
  padding: 38px;
  max-width: 940px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 2;
}
.main-modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: -1;
}

.main-modal__exit {
  position: absolute;
  top: 20px;
  right: 20px;
}

.main-modal__exit-img {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.main-modal__exit-img span {
  width: 15px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
}
.main-modal__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: rotate(90deg);
}
.main-modal__exit-img:hover {
  opacity: 0.5;
}

.main-modal__image {
  margin: 0px 20px 0px 0px;
  max-width: 320px;
  width: 100%;
}

.main-modal__image-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.main-modal__image-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-modal__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-modal__info-title {
  margin: 0px 0px 20px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
}

.main-modal__info-text {
  margin: 0px 0px 20px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

.main-modal__info-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.main-modal__form-row {
  margin: 0px 0px 20px;
  width: 100%;
  display: flex;
}

.main-modal__form-row-column {
  margin: 0px 20px 0px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-modal__form-row-column:last-child {
  margin: 0;
}

.main-modal__form-row-label {
  margin: 0px 0px 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.main-modal__form-row-input {
  padding: 12px 24px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.main-modal__form-row-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #fff;
}
.main-modal__form-row-input::placeholder {
  transition: 0.5s all;
  color: #fff;
}
.main-modal__form-row-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.main-modal__form-row-input:focus::placeholder {
  opacity: 0.5;
}

.main-modal__form-textarea {
  margin: 0px 0px 20px;
  padding: 12px 24px;
  width: 100%;
  max-height: 92px;
  height: 100%;
  min-height: 92px;
  border: 1px solid #fff;
  border-radius: 10px;
  resize: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.main-modal__form-textarea::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #fff;
}
.main-modal__form-textarea::placeholder {
  transition: 0.5s all;
  color: #fff;
}
.main-modal__form-textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
.main-modal__form-textarea:focus::placeholder {
  opacity: 0.5;
}

.main-modal__form-submit {
  display: flex;
  align-items: start;
}

.main-modal__form-submit-input {
  margin: 0px 20px 0px 0px;
  padding: 12px 24px;
  border: 2px solid #FD6220;
  border-radius: 10px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.main-modal__form-submit-input:hover {
  background: transparent;
  color: #FD6220;
}

.main-modal__form-submit-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}

@media (max-width: 880px) {
  .main-modal__image {
    max-width: 280px;
  }
}
@media (max-width: 770px) {
  .main-modal__image {
    display: none;
  }
}
@media (max-width: 550px) {
  .main-modal__content {
    padding: 40px 20px;
  }
  .main-modal__info-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .main-modal__info-text {
    font-size: 14px;
    line-height: 20px;
  }
  .main-modal__info-form {
    overflow-y: scroll;
  }
  .main-modal__form-row {
    flex-direction: column;
  }
  .main-modal__form-row-column {
    margin: 0px 0px 20px;
  }
  .main-modal__form-submit {
    flex-direction: column;
  }
  .main-modal__form-submit-input {
    order: 2;
  }
  .main-modal__form-submit-text {
    margin: 0px 0px 10px;
  }
}
.end-modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10000;
}
.end-modal.active {
  display: block;
  left: 0;
}

.end-modal__body {
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.end-modal__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.end-modal__content {
  padding: 38px;
  max-width: 940px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.end-modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: -1;
}

.end-modal__content-exit {
  position: absolute;
  top: 20px;
  right: 20px;
}

.end-modal__content-exit-img {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.end-modal__content-exit-img span {
  width: 15px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
}
.end-modal__content-exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: rotate(90deg);
}
.end-modal__content-exit-img:hover {
  opacity: 0.5;
}

.end-modal__content-img {
  margin: 0px 0px 45px;
}

.end-modal__content-title {
  margin: 0px 0px 14px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
}

.end-modal__content-text {
  margin: 0px 0px 80px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}

.end-modal__content-submit {
  padding: 14px 50px;
  border: 2px solid #FD6220;
  border-radius: 10px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
}
.end-modal__content-submit:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 770px) {
  .end-modal__content {
    padding: 40px 20px;
  }
  .end-modal__content-img {
    margin: 0px 0px 20px;
  }
  .end-modal__content-title {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 35px;
  }
  .end-modal__content-text {
    margin: 0px 0px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .end-modal__content-submit {
    padding: 14px 20px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .end-modal__content-img {
    max-width: 100px;
    width: 100%;
  }
  .end-modal__content-img img {
    width: 100%;
  }
  .end-modal__content-title {
    font-size: 25px;
    line-height: 30px;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.fullscreen-home {
  margin: 0px 0px 80px;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.fullscreen-home .container {
  height: 100%;
}

.fullscreen-home__body {
  padding: 0px 0px 60px 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.fullscreen-home__fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.fullscreen-home__fullscreen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-home__content {
  max-width: 700px;
  z-index: 3;
}

.fullscreen-home__content-title {
  margin: 0px 0px 24px;
  font-family: "Inter", sans-serif;
  font-size: 80px;
  line-height: 85px;
  font-weight: 600;
  color: #fff;
}

.fullscreen-home__content-text {
  padding: 20px;
  max-width: 570px;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.fullscreen-home__content-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: -1;
}

@media (max-width: 770px) {
  .fullscreen-home {
    margin: 0px 0px 50px;
  }
  .fullscreen-home__content-title {
    font-size: 40px;
    line-height: 45px;
  }
  .fullscreen-home__content-text {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (max-width: 550px) {
  .fullscreen-home__content-title {
    font-size: 30px;
    line-height: 35px;
  }
}
.why-home {
  margin: 0px 0px 50px;
}

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

.why-home__title {
  margin: 0px 0px 40px;
  width: 100%;
}

.why-home__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.why-home__column {
  padding: 0px 15px 30px;
  width: 100%;
}
.why-home__column.color1 .why-home__column-body {
  background: rgba(31, 237, 203, 0.11);
}
.why-home__column.color2 .why-home__column-body {
  background: rgba(253, 98, 32, 0.17);
}
.why-home__column.color3 .why-home__column-body {
  background: rgba(31, 79, 237, 0.15);
}

.why-home__column-body {
  padding: 24px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.why-home__column-title {
  margin: 0px 0px 12px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #141414;
}

.why-home__column-text {
  flex: auto;
  margin: 0px 0px 10px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #3B3B3B;
}

.why-home__column-img {
  max-width: 200px;
  width: 100%;
}
.why-home__column-img img {
  width: 100%;
}

@media (max-width: 1000px) {
  .why-home {
    margin: 0px 0px 60px;
  }
  .why-home__row {
    width: calc(100% + 20px);
  }
  .why-home__column {
    padding: 0px 10px 20px;
  }
  .why-home__column-body {
    padding: 20px;
  }
}
@media (max-width: 770px) {
  .why-home {
    margin: 0px 0px 50px;
  }
  .why-home__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .why-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .why-home__column {
    padding: 0px 0px 20px;
  }
  .why-home__column:last-child {
    padding: 0;
  }
  .why-home__column-title {
    font-size: 20px;
    line-height: 25px;
  }
  .why-home__column-text {
    font-size: 16px;
    line-height: 20px;
  }
}
.services-home {
  margin: 0px 0px 80px;
  padding: 80px 0px 50px;
  background: #F5F5F5;
}

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

.services-home__title {
  margin: 0px 0px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-home__title-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: underline;
  color: #FD6220;
}

.services-home__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

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

.services-home__column-body {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
}
.services-home__column-body:hover .services-home__column-img img {
  scale: 1.1;
}

.services-home__column-img {
  padding-bottom: 70%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.services-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

.services-home__column-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0px 27px 17px;
  width: 100%;
}

.services-home__column-content-text {
  padding: 20px;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
}
.services-home__column-content-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

@media (max-width: 1000px) {
  .services-home {
    padding: 80px 0px 60px;
  }
  .services-home__row {
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .services-home__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .services-home {
    margin: 0px 0px 50px;
    padding: 50px 0px;
  }
  .services-home__row {
    width: calc(100% + 10px);
  }
  .services-home__column {
    padding: 0px 5px 10px;
  }
  .services-home__column-content {
    padding: 0px 15px 15px;
  }
  .services-home__column-content-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .services-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .services-home__column {
    padding: 0px 0px 15px;
  }
  .services-home__column:last-child {
    padding: 0;
  }
}
@media (max-width: 400px) {
  .services-home__title {
    flex-direction: column;
  }
  .services-home__title-title {
    margin: 0px 0px 10px;
  }
}
.about-home {
  margin: 0px 0px 80px;
}

.about-home__body {
  padding: 60px 40px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.about-home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-home__content {
  padding: 40px;
  max-width: 670px;
  border-radius: 20px;
  background: rgba(64, 64, 64, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 2;
}

.about-home__content-title {
  margin: 0px 0px 24px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #fff;
}

.about-home__content-text {
  margin: 0px 0px 24px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.about-home__contnet-link {
  padding: 14px 20px;
  border: 2px solid #FD6220;
  border-radius: 10px;
  background: #FD6220;
  display: inline-block;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
}
.about-home__contnet-link:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 770px) {
  .about-home {
    margin: 0px 0px 50px;
  }
  .about-home__body {
    padding: 150px 10px 10px;
  }
  .about-home__content {
    padding: 20px;
  }
  .about-home__content-title {
    margin: 0px 0px 10px;
    font-size: 20px;
    line-height: 25px;
  }
  .about-home__content-text {
    font-size: 14px;
    line-height: 25px;
  }
  .about-home__contnet-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.gallery-home {
  margin: 0px 0px 80px;
  padding: 80px 0px;
  background: #F5F5F5;
}

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

.gallery-home__title {
  margin: 0px 0px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-home__title-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: underline;
  color: #FD6220;
}

.gallery-home__row {
  width: calc(100% + 30px);
  position: relative;
}
.gallery-home__row .slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: calc(0% + 70px);
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 770px) {
  .gallery-home__row .slick-prev.slick-arrow {
    left: calc(0% + 30px);
  }
}
.gallery-home__row .slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  right: calc(0% + 70px);
  transform: translateY(-50%);
}
@media (max-width: 770px) {
  .gallery-home__row .slick-next.slick-arrow {
    right: calc(0% + 30px);
  }
}

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

.gallery-home__column-body {
  padding: 60px 30px 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.gallery-home__column-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.gallery-home__column-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-home__column-content {
  padding: 16px;
  max-width: 320px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.gallery-home__column-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.gallery-home__column-content-subtitle {
  margin: 0px 0px 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.gallery-home__column-content-content {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.gallery-home__column-content-title {
  margin: 0px 0px 20px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}

.gallery-home__column-content-text {
  margin: 0px 0px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.gallery-home__column-content-link {
  padding: 14px 25px;
  border: 2px solid #FD6220;
  border-radius: 10px;
  background: #FD6220;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.gallery-home__column-content-link:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 770px) {
  .gallery-home {
    margin: 0px 0px 50px;
    padding: 50px 0px;
  }
  .gallery-home__column-content-title {
    margin: 0px 0px 10px;
    font-size: 20px;
    line-height: 25px;
  }
  .gallery-home__column-content-text {
    font-size: 14px;
    line-height: 20px;
  }
  .gallery-home__column-content-link {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .gallery-home__title {
    flex-direction: column;
  }
  .gallery-home__title-title {
    margin: 0px 0px 10px;
  }
  .gallery-home__column-body {
    padding: 100px 15px 15px;
  }
}
.create-home {
  margin: 0px 0px 50px;
}

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

.create-home__title {
  margin: 0px 0px 40px;
  width: 100%;
}

.create-home__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

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

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

.create-home__column-img {
  padding-bottom: 110%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.create-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.create-home__column-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0px 16px 16px;
  width: 100%;
}

.create-home__column-content-body {
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.create-home__column-content-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.create-home__column-content-title {
  margin: 0px 0px 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
}

.create-home__column-content-text {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

@media (max-width: 1000px) {
  .create-home {
    margin: 0px 0px 60px;
  }
  .create-home__row {
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .create-home__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .create-home {
    margin: 0px 0px 50px;
  }
  .create-home__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .create-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .create-home__column {
    padding: 0px 0px 20px;
  }
  .create-home__column:last-child {
    padding: 0;
  }
  .create-home__column-content {
    padding: 0px 10px 10px;
  }
  .create-home__column-content-body {
    padding: 15px;
  }
  .create-home__column-content-title {
    font-size: 18px;
    line-height: 22px;
  }
  .create-home__column-content-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.bid-home {
  margin: 0px 0px 80px;
}

.bid-home__body {
  padding: 60px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bid-home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bid-home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bid-home__content {
  padding: 40px;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bid-home__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  z-index: -1;
}

.bid-home__content-title {
  margin: 0px 0px 24px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #fff;
}

.bid-home__content-text {
  margin: 0px 0px 24px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}

.bid-home__content-bid {
  padding: 13px 65px;
  border: 2px solid #FD6220;
  border-radius: 50px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.bid-home__content-bid:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 770px) {
  .bid-home {
    margin: 0px 0px 50px;
  }
  .bid-home__body {
    padding: 40px;
  }
  .bid-home__content-title {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 35px;
  }
  .bid-home__content-text {
    font-size: 14px;
    line-height: 24px;
  }
  .bid-home__content-bid {
    padding: 13px 30px;
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .bid-home__body {
    padding: 20px;
  }
  .bid-home__content {
    padding: 20px;
  }
  .bid-home__content-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.client-home {
  margin: 0px 0px 80px;
}

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

.client-home__title {
  margin: 0px 0px 40px;
  width: 100%;
}

.client-home__row {
  width: calc(100% + 20px);
}
.client-home__row .slick-list.draggable {
  overflow: hidden;
}

.client-home__column {
  padding: 0px 10px;
  width: 100%;
}

.client-home__column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #ECECEC;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.client-home__column-img {
  max-width: 100%;
}
.client-home__column-img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 770px) {
  .client-home {
    margin: 0px 0px 50px;
  }
  .client-home__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .client-home__row {
    width: calc(100% + 10px);
  }
  .client-home__column {
    padding: 0px 5px;
  }
}
.fullscreen-sport {
  margin: 0px 0px 80px;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.fullscreen-sport .container {
  height: 100%;
}

.fullscreen-sport__body {
  padding: 20px 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.fullscreen-sport__fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fullscreen-sport__fullscreen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-sport__content {
  padding: 20px 40px;
  max-width: 820px;
  border: 1px solid rgba(255, 255, 255, 0.49);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  z-index: 1;
}
.fullscreen-sport__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.fullscreen-sport__content-title {
  margin: 0px 0px 24px;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  line-height: 65px;
  font-weight: 600;
  color: #fff;
}

.fullscreen-home__contnet-text {
  margin: 0px 0px 24px;
  max-width: 600px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

.fullscreen-home__content-bid {
  padding: 13px 25px;
  border: 2px solid #FD6220;
  border-radius: 50px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
}
.fullscreen-home__content-bid:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 770px) {
  .fullscreen-sport {
    margin: 0px 0px 50px;
  }
  .fullscreen-sport__content {
    padding: 20px;
  }
  .fullscreen-sport__content-title {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 35px;
  }
  .fullscreen-home__contnet-text {
    font-size: 14px;
    line-height: 20px;
  }
  .fullscreen-home__content-bid {
    font-size: 14px;
  }
}
.streets-home {
  margin: 0px 0px 80px;
  padding: 80px 0px 50px;
  background: #F5F5F5;
}
.streets-home.no-background {
  padding: 0;
  background: transparent;
}

.streets-home__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.streets-home__title {
  margin: 0px 0px 40px;
  width: 100%;
}

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

.streets-home__column {
  padding: 0px 15px 30px;
}
.streets-home__column.placeholder {
  visibility: hidden;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.streets-home__column-body {
  width: 100%;
  height: 100%;
  border: 1px solid #ECECEC;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  position: relative;
}
.streets-home__column-body:hover .streets-home__column-img img {
  scale: 1.2;
}

.streets-home__column-img {
  padding-bottom: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.streets-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

.streets-home__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 10px 25px;
  width: 100%;
}

.streets-home__column-content-body {
  padding: 10px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.streets-home__column-content-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.streets-home__column-content-title {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1200px) {
  .streets-home__column-content-title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1000px) {
  .streets-sport {
    padding: 80px 0px 60px;
  }
  .streets-home__row {
    margin: 0px 0px 20px;
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  }
  .streets-home__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .streets-home {
    margin: 0px 0px 50px;
    padding: 50px 0px 40px;
  }
  .streets-home__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .streets-home__row {
    width: calc(100% + 10px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .streets-home__column {
    padding: 0px 5px 10px;
  }
  .streets-home__column-content {
    padding: 0px 10px 10px;
  }
  .streets-home__column-content-title {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 400px) {
  .streets-home {
    padding: 50px 0px 50px;
  }
  .streets-home__row {
    margin: 0px 0px 40px;
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .streets-home__column {
    padding: 0px 0px 15px;
  }
  .streets-home__column:last-child {
    padding: 0;
  }
}
.content-sport {
  margin: 0px 0px 80px;
}
.content-sport.right .content-sport__body {
  align-items: end;
}

.content-sport__body {
  padding: 60px 40px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.content-sport__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.content-sport__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contnet-sport__content {
  padding: 38px;
  max-width: 520px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.contnet-sport__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: -1;
}

.content-sport__content-title {
  margin: 0px 0px 40px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #fff;
}

.content-sport__content-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

@media (max-width: 770px) {
  .content-sport {
    margin: 0px 0px 50px;
  }
  .content-sport__content-title {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 35px;
  }
  .content-sport__content-text {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (max-width: 500px) {
  .content-sport__body {
    padding: 50px 20px;
  }
  .contnet-sport__content {
    padding: 20px;
  }
}
.bid-sport {
  margin: 0px 0px 80px;
}

.bid-sport__body {
  padding: 60px 30px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bid-sport__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bid-sport__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bid-sport__content {
  padding: 38px;
  max-width: 470px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bid-sport__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.bid-sport__content-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bid-sport__content-form-title {
  margin: 0px 0px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  color: #fff;
}

.bid-sport__content-form-row {
  margin: 0px 0px 20px;
  display: flex;
  justify-content: space-between;
}

.bid-sport__content-form-input {
  margin: 0px 20px 0px 0px;
  padding: 12px 20px;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 50px;
  background: transparent;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
}
.bid-sport__content-form-input:last-child {
  margin: 0;
}
.bid-sport__content-form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #fff;
}
.bid-sport__content-form-input::placeholder {
  transition: 0.5s all;
  color: #fff;
}
.bid-sport__content-form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.bid-sport__content-form-input:focus::placeholder {
  opacity: 0.5;
}

.bid-sport__content-form-submit {
  padding: 12px 24px;
  border: 2px solid #FD6220;
  border-radius: 50px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.bid-sport__content-form-submit:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 770px) {
  .bid-sport {
    margin: 0px 0px 50px;
  }
  .bid-sport__body {
    padding: 50px 20px;
  }
  .bid-sport__content-form-title {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .bid-sport__content {
    padding: 30px 20px;
  }
  .bid-sport__content-form-row {
    flex-direction: column;
  }
  .bid-sport__content-form-input {
    margin: 0px 0px 20px;
  }
}
.services-childrens {
  margin: 0px 0px 50px;
}

.services-childrens__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-childrens__title {
  margin: 0px 0px 40px;
  width: 100%;
}

.services-childrens__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(2, 1fr);
}

.services-childrens__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.services-childrens__column-body {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.services-childrens__column-img {
  padding-bottom: 70%;
  width: 100%;
  position: relative;
}
.services-childrens__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-childrens__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 10px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-childrens__column-content-body {
  padding: 20px;
  min-width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.services-childrens__column-content-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.services-childrens__column-content-title {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1000px) {
  .services-childrens {
    margin: 0px 0px 60px;
  }
  .services-childrens__row {
    width: calc(100% + 20px);
  }
  .services-childrens__column {
    padding: 0px 10px 20px;
  }
  .services-childrens__column-content-body {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 770px) {
  .services-childrens {
    margin: 0px 0px 50px;
  }
  .services-childrens__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .services-childrens__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .services-childrens__column {
    padding: 0px 0px 15px;
  }
  .services-childrens__column:last-child {
    padding: 0;
  }
  .services-childrens__column-content-body {
    padding: 10px;
  }
  .services-childrens__column-content-title {
    font-size: 16px;
    line-height: 22px;
  }
}
.services-saf {
  margin: 0px 0px 80px;
  padding: 80px 0px;
  background: #F5F5F5;
}

.services-saf__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-saf__title {
  margin: 0px 0px 40px;
  width: 100%;
}

.services-saf__row {
  width: calc(100% + 30px);
}
.services-saf__row .slick-list.draggable {
  overflow: hidden;
}

.services-saf__column {
  padding: 0px 15px;
  width: 100%;
}

.services-saf__column-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.services-saf__column-img {
  padding-bottom: 110%;
  width: 100%;
  position: relative;
}
.services-saf__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-saf__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 16px 18px;
  width: 100%;
}

.services-saf__column-content-body {
  padding: 20px 10px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.services-saf__column-content-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.services-saf__column-contnet-title {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1000px) {
  .services-saf__row {
    width: calc(100% + 20px);
  }
  .services-saf__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .services-saf {
    margin: 0px 0px 50px;
    padding: 50px 0px;
  }
  .services-saf__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .services-saf__row {
    width: calc(100% + 10px);
  }
  .services-saf__column {
    padding: 0px 5px;
  }
  .services-saf__column-img {
    padding-bottom: 120%;
  }
  .services-saf__column-content {
    padding: 0px 10px 10px;
  }
  .services-saf__column-content-body {
    padding: 15px;
  }
  .services-saf__column-contnet-title {
    font-size: 16px;
    line-height: 22px;
  }
}
.fullscreen-services {
  margin: 0px 0px 80px;
  position: relative;
}
.fullscreen-services.contact .fullscreen-services__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fullscreen-services.contact .fullscreen-services__content-title {
  margin: 0;
  width: 100%;
}

.fullscreen-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullscreen-services__top {
  height: 94px;
}

.fullscreen-services__fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fullscreen-services__fullscreen img {
  width: 100%;
  height: 100%;
  transform: scale(-1, 1);
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-services__content {
  padding: 100px 0px;
}

.fullscreen-services__content-body {
  padding: 30px;
  max-width: 780px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.fullscreen-services__content-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.fullscreen-services__content-title {
  margin: 0px 0px 24px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  line-height: 65px;
  font-weight: 600;
  color: #fff;
}

.fullscreen-services__content-text {
  max-width: 600px;
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

@media (max-width: 770px) {
  .fullscreen-services {
    margin: 0px 0px 50px;
  }
  .fullscreen-services__top {
    height: 70px;
  }
  .fullscreen-services__content {
    padding: 50px 0px;
  }
  .fullscreen-services__content-body {
    max-width: 500px;
  }
  .fullscreen-services__content-body {
    padding: 20px;
  }
  .fullscreen-services__content-title {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 35px;
  }
  .fullscreen-services__content-text {
    font-size: 14px;
    line-height: 25px;
  }
}
.project-services {
  margin: 0px 0px 80px;
}

.project-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-services__title {
  margin: 0px 0px 40px;
  width: 100%;
}

.project-services__row {
  width: calc(100% + 30px);
  display: flex;
}

.project-services__column {
  padding: 0px 15px;
  width: 100%;
}

.project-services__column-body {
  padding: 50px 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}

.project-services__column-text {
  margin: 0px 0px 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #141414;
}
.project-services__column-text:last-child {
  margin: 0;
}
.project-services__column-text p {
  margin: 0px 0px 20px;
}
.project-services__column-text p:last-child {
  margin: 0;
}

.project-services__column-list {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
}
.project-services__column-list:last-child {
  margin: 0;
}

.project-services__column-item {
  margin: 0px 0px 12px;
  padding: 0px 0px 0px 23px;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #141414;
}
.project-services__column-item:last-child {
  margin: 0;
}
.project-services__column-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FD6220;
}

.project-services__column-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-services__column-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-services__column-link {
  padding: 12px 24px;
  border: 2px solid #FD6220;
  border-radius: 10px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.project-services__column-link:hover {
  background: transparent;
  color: #FD6220;
}

@media (max-width: 1000px) {
  .project-services__row {
    width: calc(100% + 0px);
    flex-direction: column;
  }
  .project-services__column {
    padding: 0px 0px 15px;
  }
  .project-services__column:last-child {
    padding: 0;
  }
  .project-services__column:nth-child(2) {
    height: 350px;
  }
}
@media (max-width: 770px) {
  .project-services {
    margin: 0px 0px 50px;
  }
  .project-services__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .project-services__column-text {
    margin: 0px 0px 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .project-services__column-text p {
    margin: 0px 0px 10px;
  }
  .project-services__column-list {
    margin: 0px 0px 10px;
  }
  .project-services__column-item {
    padding: 0px 0px 0px 18px;
    font-size: 14px;
    line-height: 24px;
  }
  .project-services__column-item::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }
  .project-services__column-link {
    font-size: 14px;
  }
}
.content-services {
  margin: 0px 0px 80px;
}
.content-services.order .content-services__content {
  order: 2;
}

.content-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-services__title {
  margin: 0px 0px 40px;
  width: 100%;
}

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

.content-services__content {
  flex: 0 0 calc(50% - 15px);
  padding: 90px 20px;
  width: 100%;
  border-radius: 10px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.content-services__content-text {
  margin: 0px 0px 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #141414;
}
.content-services__content-text:last-child {
  margin: 0;
}
.content-services__content-text p {
  margin: 0px 0px 20px;
}
.content-services__content-text p:last-child {
  margin: 0;
}

.content-services__content-list {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
}
.content-services__content-list:last-child {
  margin: 0;
}

.content-services__content-item {
  margin: 0px 0px 12px;
  padding: 0px 0px 0px 23px;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #141414;
}
.content-services__content-item:last-child {
  margin: 0;
}
.content-services__content-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FD6220;
}

.content-services__content-link {
  padding: 12px 24px;
  border: 2px solid #FD6220;
  border-radius: 10px;
  background: #FD6220;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.content-services__content-link:hover {
  background: transparent;
  color: #FD6220;
}

.content-services__image {
  flex: 0 0 calc(50% - 15px);
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.content-services__image-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
}
.content-services__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1000px) {
  .content-services__content {
    flex: 0 0 calc(50% - 10px);
  }
  .content-services__image {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 770px) {
  .content-services {
    margin: 0px 0px 50px;
  }
  .content-services__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .content-services__row {
    flex-direction: column;
  }
  .content-services__content {
    order: 2;
  }
  .content-services__image {
    margin: 0px 0px 20px;
  }
  .content-services__content {
    padding: 50px 20px;
  }
  .content-services__content-text {
    margin: 0px 0px 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .content-services__content-text p {
    margin: 0px 0px 10px;
  }
  .content-services__content-list {
    margin: 0px 0px 10px;
  }
  .content-services__content-item {
    padding: 0px 0px 0px 18px;
    font-size: 14px;
    line-height: 24px;
  }
  .content-services__content-item::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }
  .content-services__content-link {
    font-size: 14px;
  }
}
.content-project {
  margin: 0px 0px 50px;
}

.content-project__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-project__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.content-project__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.content-project__column-body {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-project__column-body:hover .content-project__column-img img {
  scale: 1.1;
}

.content-project__column-img {
  padding-bottom: 110%;
  width: 100%;
  position: relative;
}
.content-project__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

@media (max-width: 1000px) {
  .content-project__row {
    width: calc(100% + 20px);
  }
  .content-project__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .content-project {
    margin: 0px 0px 50px;
  }
  .content-project__row {
    width: calc(100% + 10px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .content-project__column {
    padding: 0px 5px 10px;
  }
}
.content-newsBlog .container {
  width: 800px;
}
@media (max-width: 850px) {
  .content-newsBlog .container {
    width: 100%;
  }
}

.content-newsBlog__body {
  padding: 0px 0px 80px;
}

.content-newsBlog__imgs {
  margin: 0px 0px 30px;
}

.content-newsBlog__img {
  max-height: 400px;
}
.content-newsBlog__img img {
  width: 100%;
  max-height: 400px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-newsBlog__title {
  margin: 0px 0px 20px;
  text-align: center;
}
.content-newsBlog__title::before {
  left: 50%;
  transform: translateX(-50%);
}

.content-newsBlog__content {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #141414;
}

@media (max-width: 770px) {
  .content-newsBlog__body {
    padding: 50px 0px;
  }
  .content-newsBlog__title {
    margin: 0px 0px 30px;
  }
  .content-newsBlog__content {
    font-size: 14px;
    left: 20px;
  }
}
.content-contact {
  margin: 0px 0px 80px;
}

.content-contact__body {
  display: flex;
  padding: 150px 20px 80px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.content-contact__content {
  z-index: 100;
}

.content-contact__contnet-body {
  padding: 24px;
  max-width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.content-contact__contnet-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: -1;
}

.content-contact__content-title {
  margin: 0px 0px 20px;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
  color: #fff;
}

.content-contact__content-subtitle {
  margin: 0px 0px 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
}

.content-contact__contnet-link {
  margin: 0px 0px 20px;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.content-contact___iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.content-contact___iframe iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 770px) {
  .content-contact {
    margin: 0px 0px 50px;
  }
  .content-contact__body {
    padding: 0;
    flex-direction: column;
  }
  .content-contact__content {
    margin: 0px 0px 20px;
  }
  .content-contact__contnet-body {
    max-width: 100%;
  }
  .content-contact__content-title {
    font-size: 25px;
    line-height: 30px;
  }
  .content-contact__content-subtitle {
    margin: 0px 0px 6px;
  }
  .content-contact__contnet-link {
    margin: 0px 0px 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .content-contact___iframe {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
  }
}
.footer {
  background: #141414;
}

.main-footer__body {
  padding: 30px 0px;
  display: flex;
  justify-content: space-between;
}

.main-footer__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-footer__content-title {
  margin: 0px 0px 10px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
}

.main-footer__content-list {
  margin: 0px 0px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-footer__content-list:last-child {
  margin: 0;
}

.main-footer__content-item {
  margin: 0px 0px 8px;
}
.main-footer__content-item:last-child {
  margin: 0;
}

.main-footer__content-link {
  transition: 0.5s all;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.main-footer__content-link:hover {
  color: #FD6220;
}

.main-footer__logo {
  max-width: 210px;
  width: 100%;
}

.main-footer__logo-img {
  width: 100%;
}
.main-footer__logo-img img {
  width: 100%;
}

.main-footer__content-social {
  display: flex;
}

.main-footer__contnet-social-link {
  margin: 0px 10px 0px 0px;
  display: inline-block;
}
.main-footer__contnet-social-link:last-child {
  margin: 0;
}
.main-footer__contnet-social-link span {
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: 0.5s all;
}
.main-footer__contnet-social-link:nth-child(1) span {
  background: url("../img/icon/footer-instagram.svg") 0 0/100% 100% no-repeat;
}
.main-footer__contnet-social-link:nth-child(1) span:hover {
  background: url("../img/icon/footer-instagram-active.svg") 0 0/100% 100% no-repeat;
}
.main-footer__contnet-social-link:nth-child(2) span {
  background: url("../img/icon/footer-whatsapp.svg") 0 0/100% 100% no-repeat;
}
.main-footer__contnet-social-link:nth-child(2) span:hover {
  background: url("../img/icon/footer-whatsapp-active.svg") 0 0/100% 100% no-repeat;
}

@media (max-width: 660px) {
  .main-footer__body {
    flex-direction: column;
    align-items: center;
  }
  .main-footer__content:nth-child(1) {
    order: 2;
  }
  .main-footer__logo {
    margin: 0px 0px 30px;
    order: 1;
  }
  .main-footer__content:nth-child(3) {
    order: 3;
  }
  .main-footer__content {
    margin: 0px 0px 20px;
    align-items: start;
  }
  .main-footer__content:last-child {
    margin: 0;
  }
  .main-footer__content-list {
    margin: 0px 0px 20px;
    align-items: start;
  }
}
.policy-footer {
  border-top: 2px solid #3A3A3A;
}

.policy-footer__body {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policy-footer__logo {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.policy-footer__logo a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}