:root {
  /* Color styles */
  --main: #FB3A48;
  --dark: #262626;
  --white: #FFFFFF;
  --main-dark: #CB121F;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  color: var(--white);
  font-size: 14px;
  animation: toTop 0.6s ease-in;
}
@media screen and (min-width: 1251px) {
  .header .btn-burger {
    display: none;
  }
}
.header-row {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 35px;
  padding: 20px 0;
}
.header-row p + p {
  margin-top: 0;
}
.header-row .logo img {
  opacity: 1;
  transform: none;
}
@media screen and (max-width: 1250px) {
  .header-row {
    gap: 15px;
  }
  .header-row .logo {
    width: 100%;
  }
}
.header .container {
  position: relative;
}
.header-addresses {
  flex-grow: 1;
  line-height: 1.7;
}
.header-contacts {
  max-width: 150px;
  line-height: 1.7;
}
.header-contacts a {
  color: var(--white);
}
.header-contacts a strong {
  letter-spacing: 2px;
}
.header-contacts a:hover {
  color: var(--main);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 39px;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 1250px) {
  .header-nav {
    display: none;
  }
}
.header-nav nav {
  position: relative;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav ul a {
  color: #fff;
  white-space: nowrap;
  letter-spacing: 2px;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}
.header-nav ul a:hover {
  color: var(--main);
}
.header-nav ul .active a {
  color: var(--main);
}
.header-nav .nav-line {
  height: 1px;
  background: var(--main);
  position: absolute;
  bottom: -11px;
  transition: 0.4s;
}
.header-nav__links {
  display: flex;
  gap: 10px;
  line-height: 1.7;
}
.header-nav__lang {
  display: flex;
  gap: 10px;
  position: relative;
}
.header-nav__lang a {
  color: #fff;
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.header-nav__lang a:hover {
  color: var(--main);
}
.header-nav__lang a.active {
  color: var(--main);
}
.header-nav__lang .line-lang {
  position: absolute;
  bottom: -26px;
  height: 1px;
  background: var(--main);
  transition: 0.3s;
}

.header-nav-wrapper {
  position: absolute;
  top: 102px;
  width: 100%;
  transition: background 0.3s;
}
.header-nav-wrapper .header-nav {
  transition: 0.3s;
}
.header-nav-wrapper.fixed-top {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-nav-wrapper.fixed-top .header-nav {
  border-color: #fff0;
}

@keyframes toTop {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media screen and (max-width: 1250px) {
  .header {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 10;
  }
  .header .header-row {
    padding: 15px 0;
  }
  .header .header-contacts, .header .header-addresses, .header .btn {
    display: none;
  }
  .header .logo {
    width: 250px;
    max-width: 60%;
  }
}
.btn-burger {
  display: flex;
  flex-flow: column;
  gap: 6px;
  background: none;
  padding: 0;
  border: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 15px;
  cursor: pointer;
}
.btn-burger span {
  width: 24px;
  height: 1px;
  background: #fff;
  position: relative;
  transition: 0.4s;
  transform: rotate(0);
}

.active-menu .btn-burger span {
  position: absolute;
}
.active-menu .btn-burger span:nth-child(1) {
  transform: rotate(35deg);
}
.active-menu .btn-burger span:nth-child(2) {
  opacity: 0;
}
.active-menu .btn-burger span:nth-child(3) {
  transform: rotate(-35deg);
}

.mobile-menu {
  z-index: 12;
  height: auto;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0px;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: 0.45s;
  transform: translateY(-30px);
}
@media screen and (min-width: 1251px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .header-row {
  flex-flow: column;
  text-align: center;
  gap: 10px;
}
.mobile-menu .header-row ul {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}
.mobile-menu .header-row ul a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  display: block;
  margin-bottom: 15px;
}
.mobile-menu .header-row .btn {
  margin: 10px auto;
  width: 100%;
  max-width: 350px;
}
.mobile-menu .header-contacts, .mobile-menu .header-contacts, .mobile-menu .btn {
  display: block;
}
.mobile-menu .header-nav__links {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  align-items: center;
  padding: 10px 0 20px;
}
.mobile-menu .header-nav__lang {
  margin-top: 15px;
}

.active-menu .mobile-menu {
  padding-bottom: 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  max-height: 800px;
  transform: translateY(0px);
}

.footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
  z-index: 2;
  font-size: 14px;
  padding: 70px 0 40px;
  border-bottom: 10px solid var(--main);
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
    padding: 40px 0 20px;
  }
}
.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  padding-top: 40px;
  font-size: 14px;
  row-gap: 20px;
  margin-top: 40px;
  font-weight: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    padding-top: 20px;
    margin-top: 20px;
  }
}

.develop {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1.7;
}
.develop svg {
  width: 104px;
  transition: 0.3s;
  height: 24px;
}
.develop:hover svg {
  color: #C7FF27;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1250px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "TikTok Sans", sans-serif;
  background-color: #fff;
  color: var(--dark);
  line-height: 1.4;
  position: relative;
  font-weight: 400;
  font-display: swap;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-image: url("../img/pattern.png");
  opacity: 0.1;
  z-index: -1;
}

img {
  max-width: 100%;
}

input, textarea, select, button {
  font-family: "TikTok Sans", sans-serif;
}

a {
  text-decoration: none;
  outline: none;
  transition: 0.4s;
}
a:focus {
  outline: none;
}

strong {
  font-weight: bold;
}

em {
  font-weight: bold;
  color: var(--main);
}

p + p {
  margin-top: 20px;
}

main {
  overflow: hidden;
}

.btn {
  padding: 25px 30px;
  border: 1px solid var(--main);
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  background: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .btn {
    font-size: 12px;
    padding: 18px 20px;
    letter-spacing: 1px;
  }
}
.btn::before {
  content: "";
  height: 100%;
  background: var(--main);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.4s;
  width: 70px;
}
.btn-small {
  padding: 15px 20px;
}
.btn-small::before {
  width: 50px;
}
.btn:hover::before {
  width: 100%;
}
.btn-full {
  width: 100%;
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}
.btn-submit svg {
  width: 40px;
  height: 6px;
  position: relative;
  z-index: 2;
  color: var(--main);
  transition: 0.4s;
}
.btn-submit:hover svg {
  color: var(--white);
  animation: arrow 1.2s infinite;
}
.btn-icons {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.btn-icons svg {
  width: 20px;
  height: 20px;
}

@keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-icon {
  padding: 15px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--main);
  color: var(--white);
  background: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  aspect-ratio: 1;
  z-index: 1;
}
.btn-icon svg {
  width: 20px;
  height: 20px;
}
.btn-icon::before {
  content: "";
  height: 100%;
  background: var(--main);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.4s;
  width: 0px;
}
.btn-icon:hover {
  color: var(--white);
}
.btn-icon:hover::before {
  width: 100%;
}
.btn-icon-big {
  width: 72px;
  height: 72px;
  padding: 0;
}
.btn-icon-big svg {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1250px) {
  .btn-icon-big {
    width: 50px;
    height: 50px;
  }
  .btn-icon-big svg {
    width: 30px;
    height: 30px;
  }
}
.btn-icon-social svg {
  width: 20px;
  height: 20px;
}
.btn-icon.simple {
  pointer-events: none;
}

.title {
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .title br {
    display: none;
  }
}
.title em {
  color: var(--main);
}
.title-page {
  font-size: 50px;
}
@media screen and (max-width: 991px) {
  .title-page {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .title-page {
    font-size: 30px;
  }
}
.title-middle {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .title-middle {
    font-size: 20px;
  }
}
.title-small {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .title-small {
    font-size: 18px;
  }
}

.row {
  display: flex;
  flex-flow: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 991px) {
  .row {
    row-gap: 20px;
  }
}

.width-1-2 {
  width: 50%;
  padding: 0 10px;
}
@media screen and (max-width: 991px) {
  .width-1-2 {
    width: 100%;
  }
}

.width-1-3 {
  width: 33.3333333333%;
  padding: 0 10px;
}
@media screen and (max-width: 991px) {
  .width-1-3 {
    width: 100%;
  }
}

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

select {
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  color: var(--white);
  background: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  select {
    padding: 15px 20px;
  }
}

.select-wrapper, .select {
  background: var(--dark);
  position: relative;
  z-index: 2;
}
.select-wrapper .select-head, .select .select-head {
  position: relative;
  z-index: 1;
  padding-right: 50px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  color: var(--white);
  background: none;
  height: 69px;
  padding: 5px 30px;
  display: flex;
  align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .select-wrapper .select-head, .select .select-head {
    height: 51px;
    padding: 5px 20px;
  }
}
.select-wrapper .select-head::after, .select .select-head::after {
  content: "";
  width: 14px;
  height: 7px;
  background-image: url("../img/sprite/check.svg");
  position: absolute;
  right: 20px;
  top: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  opacity: 0.4;
  border-radius: 0;
  margin: auto;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .select-wrapper .select-head::after, .select .select-head::after {
    right: 20px;
  }
}
.select-wrapper .select-head.open::after, .select .select-head.open::after {
  transform: rotate(180deg);
}
.select-wrapper .select-list, .select .select-list {
  position: absolute;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark);
  overflow: auto;
  z-index: 3;
  opacity: 0;
  top: calc(100% + 10px);
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  width: 100%;
}
.select-wrapper .select-list li, .select .select-list li {
  display: block;
  font-size: 14px;
  padding: 15px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}
.select-wrapper .select-list li:hover, .select .select-list li:hover {
  color: var(--main);
}
.select-wrapper .select-list li:last-child, .select .select-list li:last-child {
  border: none;
}
.select-wrapper .select-list.open, .select .select-list.open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

input, textarea {
  resize: none;
  width: 100%;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  color: var(--white);
  transition: 0.3s;
  border-radius: 0;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  input, textarea {
    padding: 15px 20px;
  }
}
input:hover, textarea:hover {
  border-color: rgba(251, 58, 72, 0.4);
}
input:focus, textarea:focus {
  border-color: rgba(251, 58, 72, 0.6);
}

textarea {
  height: 100%;
  min-height: 100px;
}

::placeholder {
  color: var(--white);
  opacity: 1;
}

.margin-bottom {
  margin-bottom: 20px;
}
.margin-bottom-small {
  margin-bottom: 10px;
}
.margin-bottom-big {
  margin-bottom: 40px;
}

label {
  display: block;
}

.label-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .label-check {
    font-size: 12px;
    gap: 10px;
  }
}
.label-check a {
  color: var(--main);
  text-decoration: underline;
}
.label-check a:hover {
  color: var(--main-dark);
}
.label-check:hover input {
  border-color: rgba(251, 58, 72, 0.4);
}
.label-check input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  position: relative;
}
.label-check input::before {
  content: "";
  width: 100%;
  height: 100%;
  background-position: center;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url("../img/sprite/check.svg");
  background-size: auto;
  opacity: 0;
  transition: 0.3s;
}
.label-check input:checked {
  border-color: #fb3a48;
}
.label-check input:checked::before {
  opacity: 1;
}

.sub-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .sub-title br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sub-title {
    letter-spacing: 1px;
  }
}

.text-center {
  text-align: center;
}

.desc-block {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .desc-block {
    font-size: 16px;
    line-height: 1.4;
  }
  .desc-block br {
    display: none;
  }
}

.line {
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, #FB3A48 0%, rgba(251, 58, 72, 0) 100%);
  display: block;
}

.line-center {
  margin-left: auto;
  margin-right: auto;
  width: 480px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FB3A48 50%, rgba(255, 255, 255, 0) 100%);
  height: 1px;
  display: block;
}

.btns-row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1250px) {
  .btns-row {
    flex-flow: wrap;
  }
}
.btns-row .btn-icons {
  width: 22%;
}
@media screen and (max-width: 1250px) {
  .btns-row .btn-icons {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .btns-row .btn-icons {
    width: 100%;
  }
}
.btns-row .btn-submit {
  flex-grow: 1;
}

[data-animated-bottom] {
  visibility: hidden;
}
[data-animated-bottom].visible {
  visibility: visible;
  animation-name: fadeInUp;
  animation-duration: 0.95s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
::selection {
  background: var(--dark);
  color: var(--main);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  background: var(--dark);
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-track-piece {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--main);
}

::-webkit-scrollbar-corner {
  background: var(--dark);
}

::-webkit-resizer {
  background: var(--dark);
}

.parallax {
  transition: 0.3s;
}

.modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  backdrop-filter: blur(20px);
  pointer-events: none;
}
.modal-wrapper__inner {
  width: 100%;
  transform: scale(0.9);
  transition: 0.4s;
  position: relative;
}
.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.modal-wrapper.open .modal-wrapper__inner {
  transform: scale(1);
}
.modal-wrapper .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.close {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.close::before, .close::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  position: absolute;
  transform: rotate(45deg);
  transition: 0.3s;
}
.close::after {
  transform: rotate(-45deg);
}
.close:hover::before, .close:hover::after {
  background: var(--main);
}

[data-modal] {
  cursor: pointer;
}

.label-line {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 5px;
}
.label-line a {
  color: var(--main);
}

#privacy .modal-wrapper__inner {
  padding: 50px 0;
  overflow: auto;
  max-height: calc(100vh - 100px);
}
@media screen and (max-width: 575px) {
  #privacy .modal-wrapper__inner {
    padding: 20px 0;
    max-height: calc(100vh - 40px);
  }
  #privacy .modal-wrapper__inner .text-center {
    text-align: left;
  }
}

.no-scroll {
  overflow: hidden;
}

.message {
  position: fixed;
  bottom: 40px;
  right: 0;
  padding: 20px 30px;
  background: var(--main);
  color: var(--white);
  z-index: 100;
  transform: translateX(100%);
  transition: 0.55s;
}
.message.visible {
  transform: translateX(0%);
}

#thanks .form-callback {
  max-width: 560px;
  text-align: center;
  margin: auto;
}

body {
  opacity: 1;
  transition: 0.3s;
}

.hero-wrapper {
  position: relative;
  min-height: 100vh;
  padding-top: 250px;
  color: var(--white);
  margin-bottom: 130px;
}
@media screen and (max-width: 1250px) {
  .hero-wrapper {
    padding-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .hero-wrapper {
    margin-bottom: 80px;
    padding-top: 100px;
  }
}
.hero-wrapper__image {
  width: 100%;
  height: calc(100% - 70px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 290px), 0% 100%);
}
@media screen and (max-width: 1250px) {
  .hero-wrapper__image {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 150px), 0% 100%);
  }
}
@media screen and (max-width: 5750px) {
  .hero-wrapper__image {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0% 100%);
  }
}
.hero-wrapper__image::before {
  content: "";
  width: 100%;
  height: 440px;
  background: linear-gradient(180deg, #262626 0%, rgba(38, 38, 38, 0) 100%);
  position: absolute;
  left: 0;
  z-index: 1;
  top: 0;
}
.hero-wrapper__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(121deg, #262626 7.91%, rgba(38, 38, 38, 0) 92.24%);
}
.hero-wrapper__image img {
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
  object-position: center;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.hero-wrapper .container {
  position: relative;
  z-index: 2;
}
.hero-wrapper__desc {
  font-weight: 100;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 40px 0;
}
@media screen and (max-width: 991px) {
  .hero-wrapper__desc {
    font-size: 16px;
    margin: 20px 0;
  }
}
.hero-wrapper-content {
  width: 58.3333333333%;
}
@media screen and (max-width: 991px) {
  .hero-wrapper-content {
    width: 100%;
  }
}

.list-advantages {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .list-advantages {
    font-size: 12px;
  }
}
.list-advantages span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list-advantages span::after {
  content: "";
  width: 14px;
  height: 14px;
  font-weight: 100;
  background-image: url("../img/sprite/plus.svg");
  opacity: 1;
  background-position: center;
  background-size: contain;
}
.list-advantages span:last-child::after {
  display: none;
}

.hero-form {
  margin-top: 80px;
  transform: none;
  transition: 0.6s;
}
.hero-form.visible {
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 1250px) {
  .hero-form {
    margin-top: 40px;
  }
}
.hero-form__top {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
  padding: 40px;
  background: rgba(38, 38, 38, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
@media screen and (max-width: 1250px) {
  .hero-form__top {
    gap: 20px;
    padding: 20px;
  }
}
.hero-form__advantage {
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: center;
  line-height: 1.7;
  width: calc(33.3333333333% - 33.3333333333px);
}
@media screen and (max-width: 1250px) {
  .hero-form__advantage {
    width: calc(33.3333333333% - 13.3333333333px);
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .hero-form__advantage {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .hero-form__advantage {
    width: 100%;
  }
}

.form-callback {
  padding: 60px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  color: var(--white);
}
@media screen and (max-width: 1250px) {
  .form-callback {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .form-callback {
    padding: 20px;
  }
}
.form-callback::after {
  content: "";
  width: calc(100% - 120px);
  position: absolute;
  height: 10px;
  background: var(--main);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -11px;
}
@media screen and (max-width: 768px) {
  .form-callback::after {
    width: calc(100% - 40px);
    height: 6px;
    bottom: -7px;
  }
}
.form-callback__head {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form-callback__head {
    margin-bottom: 20px;
  }
}
.form-callback__head::before, .form-callback__head::after {
  position: absolute;
  left: 0;
  height: 1px;
  width: 25%;
  background: linear-gradient(90deg, rgba(251, 58, 72, 0) 0%, #FB3A48 100%);
}
.form-callback__head::after {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}
.form-callback__head .title {
  width: calc(50% - 10px);
  text-align: right;
  line-height: 1.4;
  padding-left: 0%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .form-callback__head .title {
    width: 100%;
    text-align: left;
  }
  .form-callback__head .title br {
    display: none;
  }
}
.form-callback__head .title::before {
  content: "";
  left: 0;
  height: 1px;
  width: auto;
  flex-grow: 1;
  background: linear-gradient(90deg, rgba(251, 58, 72, 0) 0%, #FB3A48 100%);
}
@media screen and (max-width: 991px) {
  .form-callback__head .title::before {
    display: none;
  }
}
.form-callback__head .head-desc {
  width: calc(50% - 10px);
  line-height: 1.7;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-flow: row-reverse;
}
@media screen and (max-width: 991px) {
  .form-callback__head .head-desc {
    width: 100%;
    flex-flow: column-reverse;
    align-items: flex-start;
  }
  .form-callback__head .head-desc br {
    display: none;
    text-align: left;
  }
}
.form-callback__head .head-desc::before {
  content: "";
  right: 0;
  height: 1px;
  flex-grow: 1;
  width: auto;
  background: linear-gradient(90deg, rgba(251, 58, 72, 0) 0%, #FB3A48 100%);
  transform: rotate(180deg);
}
@media screen and (max-width: 991px) {
  .form-callback__head .head-desc::before {
    display: block;
    width: 100%;
  }
}
.form-callback .header-nav__links {
  justify-content: flex-end;
  text-align: right;
  align-items: center;
}
.form-callback .header-nav__links p {
  margin-right: 10px;
}

.about-wrapper {
  overflow: hidden;
  padding-bottom: 130px;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .about-wrapper {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 575px) {
  .about-wrapper {
    padding-bottom: 40px;
  }
}

.crisper-wrapper {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 60px 0 200px;
  width: 83.3333333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .crisper-wrapper {
    flex-flow: wrap;
    gap: 25px;
    align-items: initial;
    margin: 30px auto 100px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper {
    margin-bottom: 40px;
  }
}
.crisper-wrapper::before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  inset: 0;
  background-image: url("../img/circle.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  animation: rotate 50s infinite;
}
@media screen and (max-width: 768px) {
  .crisper-wrapper::before {
    height: 100%;
    aspect-ratio: initial;
    top: -50px;
  }
}
.crisper-wrapper__image {
  width: 100%;
  pointer-events: none;
  order: 0;
  transition: 0.4s;
}
.crisper-wrapper__image::after {
  content: "";
  width: 100%;
  height: 350px;
  background-image: url("../img/shadow.png");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  background-size: contain;
  bottom: -250px;
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__image::after {
    height: 150px;
    bottom: -110px;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__image {
    order: 1;
  }
}
.crisper-wrapper__image img {
  width: calc(100% + 72px);
  max-width: none;
  transform: translateY(-30px) scale(0.9);
  opacity: 0;
  transition: 0.5s;
}
.crisper-wrapper__image img.visible {
  opacity: 1;
  transform: translateY(-30px) scale(1);
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__image img {
    width: 100%;
    transform: none;
  }
}
.crisper-wrapper__item {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  line-height: 1.4;
  background: var(--dark);
  position: absolute;
  z-index: 4;
  transition: 0.4s;
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item {
    padding: 15px;
    font-size: 13px;
    order: 1;
    width: calc(50% - 7.5px);
    width: 100%;
    flex-grow: 1;
  }
  .crisper-wrapper__item br {
    display: none;
  }
}
.crisper-wrapper__item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 72px 0 0;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  transform: rotateY(180deg);
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item::before {
    border-width: 20px 42px 0 0;
  }
}
.crisper-wrapper__item:nth-child(1) {
  top: 40px;
  left: 10px;
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item:nth-child(1) {
    top: 0;
    left: 0;
  }
}
.crisper-wrapper__item:nth-child(2) {
  top: 160px;
  right: -50px;
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item:nth-child(2) {
    top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item:nth-child(2) {
    top: auto;
    right: auto;
  }
}
.crisper-wrapper__item:nth-child(2)::before {
  left: auto;
  right: 0;
  transform: none;
}
.crisper-wrapper__item:nth-child(3) {
  bottom: 180px;
  left: -50px;
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item:nth-child(3) {
    bottom: 130px;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item:nth-child(3) {
    left: auto;
    bottom: auto;
    order: 3;
  }
}
.crisper-wrapper__item:nth-child(3)::before {
  top: auto;
  bottom: 100%;
  transform: rotate(180deg);
}
.crisper-wrapper__item:nth-child(4) {
  bottom: 60px;
  right: -50px;
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item:nth-child(4) {
    max-width: 300px;
  }
  .crisper-wrapper__item:nth-child(4) br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item:nth-child(4) {
    bottom: auto;
    right: auto;
    max-width: none;
    order: 3;
  }
}
.crisper-wrapper__item:nth-child(4)::before {
  top: auto;
  bottom: 100%;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item:nth-child(4)::before {
    right: 0;
    left: auto;
    transform: rotateX(180deg);
  }
}
.crisper-wrapper__item:nth-child(5) {
  bottom: -40px;
  left: 70px;
}
@media screen and (max-width: 991px) {
  .crisper-wrapper__item:nth-child(5) {
    left: 0;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item:nth-child(5) {
    bottom: auto;
    left: auto;
    max-width: none;
    order: 3;
  }
}
.crisper-wrapper__item:nth-child(5)::before {
  top: auto;
  right: 0;
  left: auto;
  bottom: 100%;
  transform: rotateX(180deg);
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item:nth-child(5)::before {
    left: 0;
    right: auto;
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 768px) {
  .crisper-wrapper__item {
    position: relative;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.consult-about {
  margin-bottom: 10px;
}
.consult-about__inner {
  width: 66.6666666667%;
}
@media screen and (max-width: 768px) {
  .consult-about__inner {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .consult-about__inner .btn {
    width: 100%;
  }
}
.consult-about::before {
  content: "";
  width: 100%;
  position: absolute;
  right: -50px;
  height: calc(100% + 100px);
  top: -50px;
  background-image: url("../img/about/callback.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .consult-about::before {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .consult-about::before {
    display: none;
  }
}

.services-wrapper {
  position: relative;
  z-index: 1;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .services-wrapper .form-callback .width-1-3 .margin-bottom {
    margin-bottom: 0;
  }
}

.services-list {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  padding: 60px 20px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .services-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.services-list__col {
  width: calc(25% - 15px);
  display: flex;
  flex-flow: column;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .services-list__col {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 575px) {
  .services-list__col {
    width: 100%;
  }
}
.services-list__col:nth-child(2n+2) .services-list__item:nth-child(1) .service-image {
  aspect-ratio: 455/445;
}
.services-list__col:nth-child(2n+2) .services-list__item:nth-child(2) .service-image {
  aspect-ratio: 455/345;
}
.services-list__item {
  color: var(--white);
  display: flex;
  flex-flow: column;
  position: relative;
}
.services-list__item:last-child {
  flex-grow: 1;
}
.services-list__item:nth-child(2) .service-image {
  aspect-ratio: 455/445;
}
@media screen and (max-width: 768px) {
  .services-list__item:nth-child(2) .service-image {
    aspect-ratio: auto;
  }
}
.services-list__item:hover .service-image img {
  transform: scale(1.08);
}
@media screen and (max-width: 768px) {
  .services-list__item {
    clip-path: polygon(calc(100% - 40px) 0, 100% 20px, 100% 100%, 0 100%, 0 0);
  }
  .services-list__item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .services-list__item:nth-child(1) {
    grid-area: 1/1/3/2;
  }
  .services-list__item:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .services-list__item:nth-child(3) {
    grid-area: 2/2/3/3;
  }
  .services-list__item:nth-child(4) {
    grid-area: 3/1/4/2;
  }
  .services-list__item:nth-child(5) {
    grid-area: 3/2/4/3;
  }
  .services-list__item:nth-child(6) {
    grid-area: 4/1/5/2;
  }
  .services-list__item:nth-child(7) {
    grid-area: 5/1/6/2;
  }
  .services-list__item:nth-child(8) {
    grid-area: 4/2/6/3;
  }
}
.services-list .service-content {
  padding: 20px;
  flex-grow: 1;
  background: var(--dark);
}
@media screen and (max-width: 768px) {
  .services-list .service-content {
    padding: 10px;
    position: absolute;
    left: 0;
    background: none;
    width: 100%;
    bottom: 0;
    z-index: 2;
  }
}
.services-list .service-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .services-list .service-title {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
  }
}
.services-list .service-title::before {
  content: "";
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, #FB3A48 0%, rgba(251, 58, 72, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .services-list .service-title::before {
    display: none;
  }
}
.services-list .service-desc {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .services-list .service-desc {
    display: none;
  }
}
.services-list .service-image {
  width: 100%;
  margin-bottom: -1px;
  aspect-ratio: 455/345;
  position: relative;
  overflow: hidden;
  clip-path: polygon(calc(100% - 72px) 0, 100% 40px, 100% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 768px) {
  .services-list .service-image {
    aspect-ratio: auto;
    clip-path: none;
    height: 100%;
  }
}
.services-list .service-image::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 72px 0 0;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 0%;
  right: 0;
  transform: rotateX(180deg);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .services-list .service-image::before {
    border-width: 20px 40px 0 0;
  }
}
.services-list .service-image img {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: 0.6s;
  transform: scale(1);
}

#service_modal {
  display: flex;
  align-items: center;
  justify-content: center;
}
#service_modal .service-title {
  padding-right: 40px;
}

.row-service {
  position: relative;
  z-index: 3;
}

.process-wrapper {
  position: relative;
  padding: 270px 0 240px;
  background: #3A3A3A;
  color: var(--white);
  clip-path: polygon(0px 270px, 100% 0px, 100% 100%, 0% 100%);
  margin-top: -270px;
  scroll-margin-top: -300px;
}
@media screen and (max-width: 768px) {
  .process-wrapper {
    clip-path: polygon(0px 100px, 100% 0px, 100% 100%, 0% 100%);
    margin-top: -130px;
    padding: 140px 0;
  }
}
.process-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../img/circle-two.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  top: -130px;
  left: -250px;
}
.process-wrapper__inner {
  width: 50%;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .process-wrapper__inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .process-wrapper__inner {
    padding-top: 60px;
  }
}
.process-wrapper::before {
  width: 100%;
  height: calc(100% - 270px);
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../img/process.png");
  background-size: cover;
  background-position: top center;
  z-index: 0;
}
.process-wrapper__image {
  width: 100%;
  position: absolute;
  height: calc(100% - 270px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.process-wrapper__image img {
  position: relative;
  opacity: 1;
  transform: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  bottom: -100px;
}

.process-list {
  display: flex;
  flex-flow: column;
  gap: -20px;
  margin-top: 60px;
}
.process-list__item {
  padding: 20px;
  background: rgba(38, 38, 38, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  gap: 20px;
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  transform: translate3d(0, calc(clamp(1.4666666674rem, 2.2222222222vw, 2.1333333344rem) * 1), 0);
}
.process-list__item.visible {
  transform: rotate(0deg) translate3d(0, 0, 0);
}
.process-list__item:nth-child(2n+1) {
  transform: rotate(0deg) translate3d(0, calc(clamp(1.4666666674rem, 2.2222222222vw, 2.1333333344rem) * 1), 0);
}
.process-list__item:nth-child(2n+1).visible {
  transform: rotate(-2deg) translate3d(0, 0, 0);
}
.process-list .process-title {
  font-size: 16px;
}

.guarantie-wrapper {
  padding: 50px 120px 120px;
  margin: -120px -120px 0;
  background: var(--white);
  box-shadow: 0 0 100px -30px #00000069;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1250px) {
  .guarantie-wrapper {
    padding: 40px;
    margin: -80px -40px 0;
    overflow: hidden;
  }
}
.guarantie-wrapper__inner {
  display: flex;
  align-items: center;
  flex-flow: wrap-reverse;
  gap: 20px;
  row-gap: 0;
}
.guarantie .quarantie-image {
  width: calc(41.6666666667% - 10px);
  text-align: right;
  padding-left: 60px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .guarantie .quarantie-image {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .guarantie .quarantie-image img {
    max-width: 250px;
  }
}
.guarantie .quarantie-image::before {
  content: "";
  width: calc(100% + 120px);
  aspect-ratio: 1;
  position: absolute;
  inset: 0;
  left: -80px;
  top: 80px;
  background-image: url("../img/circle-three.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  animation: rotate 50s infinite;
}
@media screen and (max-width: 991px) {
  .guarantie .quarantie-image::before {
    width: calc(100% + 20px);
    left: -40px;
  }
}
.guarantie .quarantie-text {
  padding-left: 60px;
  width: calc(58.3333333333% - 10px);
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 1250px) {
  .guarantie .quarantie-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .guarantie .quarantie-text {
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.questions-form {
  position: relative;
}
.questions-form::before {
  content: "";
  width: 690px;
  height: 300px;
  background-image: url("../img/questions.png");
  position: absolute;
  top: -60px;
  right: -50px;
}
@media screen and (max-width: 1250px) {
  .questions-form::before {
    display: none;
  }
}
.questions-form .link-mail {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 300;
  text-decoration: underline;
}
.questions-form .link-mail:hover {
  color: var(--main);
}

.quote {
  font-size: 16px;
  margin-top: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1250px) {
  .quote {
    margin-top: 20px;
  }
}
.quote svg {
  width: 67px;
  height: 52px;
}

.contacts-wrapper {
  padding-top: 120px;
}

.contacts-row {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-top: 60px;
}
.contacts-row__content {
  width: calc(35% - 10px);
  padding: 40px;
  background: var(--dark);
  color: var(--white);
}
@media screen and (max-width: 991px) {
  .contacts-row__content {
    width: 100%;
  }
  .contacts-row__content:nth-child(1) {
    order: 0;
  }
  .contacts-row__content:nth-child(4) {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .contacts-row__content {
    padding: 20px;
  }
  .contacts-row__content img {
    max-width: 250px;
  }
}
.contacts-row__map {
  width: calc(65% - 10px);
  position: relative;
}
@media screen and (max-width: 991px) {
  .contacts-row__map {
    width: 100%;
    min-height: 400px;
  }
  .contacts-row__map:nth-child(2) {
    order: 1;
  }
  .contacts-row__map:nth-child(3) {
    order: 3;
  }
}
.contacts-row__map .contact-image {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;
  height: 240px;
  object-fit: cover;
  z-index: 2;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .contacts-row__map .contact-image {
    display: none;
  }
}

.link-icon {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1.6;
}
.link-icon .btn-icon {
  padding: 10px;
}
.link-icon:hover .btn-icon::before {
  width: 100%;
}
.link-icon.simple {
  pointer-events: none;
}

.links-contact {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.map-detail {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(38, 38, 38, 0.1);
}
/*# sourceMappingURL=main.css.map */
