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

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

button {
  border: none;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  outline: none;
}
button:focus {
  outline: none;
}

a {
  text-decoration: none;
  font-family: inherit;
}

svg:focus {
  outline: none;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  background-color: #0B0B0B;
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}

main {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: calc(1680px + 1.5rem);
}

section {
  height: 100%;
}

.section-title {
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.section-title span {
  display: block;
  color: #0B0B0B;
}
.section-title.section-title--gradient {
  font-size: clamp(60px, 6.25vw, 120px);
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 2;
  isolation: isolate;
  background-color: #DEDEDE;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at 10% 50%, #EA480E, transparent 75%);
  background-size: 417px;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
  }
  .section-title.section-title--gradient {
    background-image: radial-gradient(circle at 0% 0%, #EA480E, transparent 60%);
    background-size: 230px;
  }
}
@media (max-width: 767px) {
  .section-title.section-title--gradient {
    font-size: clamp(40px, 13.6vw, 60px);
  }
}
@media (max-width: 539px) {
  .section-title.section-title--gradient {
    font-size: clamp(30px, 10.6vw, 40px);
  }
}

.section-subtitle {
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .section-subtitle {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
  }
}

a {
  color: inherit;
  transition: 250ms ease-in-out;
}
a:hover, a:visited {
  color: inherit;
}

.text-primary {
  color: #EA480E !important;
}

.animate {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.animate--up {
  transform: translateY(100px);
}

.animate--left {
  transform: translateX(100px);
}

.animate--right {
  transform: translateX(-100px);
}

.delay-1 {
  transition-delay: 0.2s;
}

::selection {
  background: #F09574;
  color: #0B0B0B;
}

::-moz-selection {
  background: #F09574;
  color: #0B0B0B;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  transition: 250ms ease-in-out;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  height: 54px;
}
.btn-primary {
  width: max-content;
  background-color: #EA480E;
  background-image: linear-gradient(105.59deg, #EA480E 0%, #F09574 113.72%);
  color: #0B0B0B;
  position: relative;
  z-index: 1;
}
.btn-primary::after {
  content: "";
  position: absolute;
  background: #EA480E;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  transition: 250ms ease-in-out;
  opacity: 0;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:first-child:active, .btn-primary:visited, .btn-primary:focus-visible {
  background-color: #EA480E;
  color: #0B0B0B;
  border: none;
  box-shadow: none;
}
.btn-primary:hover {
  color: #0B0B0B;
  background-position: right;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary svg {
  margin-right: 12px;
}
.btn-secondary {
  width: auto;
  background-color: #EA480E;
  background-image: linear-gradient(105.59deg, #EA480E 0%, #F09574 113.72%);
  color: #EA480E;
  padding: 2px;
  position: relative;
  z-index: 1;
}
.btn-secondary span {
  border-radius: inherit;
  padding: 10px 18px;
  background: #0B0B0B;
  color: #EA480E;
  transition: 250ms ease-in-out;
}
.btn-secondary::after {
  content: "";
  position: absolute;
  background: #EA480E;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  transition: 250ms ease-in-out;
  opacity: 0;
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary:first-child:active, .btn-secondary:visited, .btn-secondary:focus-visible {
  background-color: #EA480E;
  color: #0B0B0B;
  border: none;
  box-shadow: none;
}
.btn-secondary:hover span {
  background: transparent;
  color: #0B0B0B;
}
.btn-secondary:hover::after {
  opacity: 1;
}

.btn-primary-wrapper {
  width: 154px;
  display: flex;
  overflow: hidden;
  transition: 250ms ease-in-out;
}
.btn-primary-wrapper::before {
  content: "";
  min-width: 22px;
  height: 54px;
  border-radius: 0 12px 12px 0;
  background: #EA480E;
  transition: 250ms ease-in-out;
  margin-right: 8px;
  position: relative;
  left: 0;
}
.btn-primary-wrapper:hover::before {
  left: -8px;
  min-width: 0;
  margin-right: 0;
}

.header {
  position: relative;
  padding: 40px 0;
  width: 100%;
  z-index: 10;
  background: #0B0B0B;
}
.header .navbar {
  padding: 0;
  gap: 40px;
}
.header .menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .menu a {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: #FFFFFF;
  transition: 250ms ease-in-out;
}
.header .menu a:hover {
  color: #EA480E;
}
@media (max-width: 991px) {
  .header {
    padding: 20px 0;
    height: 90px;
  }
  .header__inner {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
    height: 90px;
    padding: 20px 0.75rem;
  }
  .header__inner .closeMobileMenuBtn {
    outline: none;
    transition: 250ms ease-in-out;
  }
  .header__inner .closeMobileMenuBtn img {
    transition: 250ms ease-in-out;
  }
  .header .navbar {
    justify-content: space-between;
  }
  .header.fixed .header__inner {
    background: rgba(11, 11, 11, 0.5);
    backdrop-filter: blur(10px);
    height: 65px;
  }
  .header.fixed .header__inner .header__logo {
    transform: scale(0.5) translate(-50%, -50%);
  }
  .header.fixed .header__inner .closeMobileMenuBtn img {
    transform: scale(0.5) translate(50%, -50%);
  }
}

.header__logo {
  width: 183px;
  height: 50px;
}

.mobile-menu {
  background-color: #0B0B0B;
  border: none;
  width: 100%;
  max-width: 360px;
}
.mobile-menu .header__close {
  width: 50px;
  height: 50px;
}
.mobile-menu .offcanvas-header {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}
.mobile-menu .offcanvas-body {
  display: flex;
  padding: 110px 40px;
}
.mobile-menu .mobile-nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF;
}
.mobile-menu .mobile-nav li {
  padding: 0;
}
.mobile-menu .mobile-nav a {
  color: inherit;
}

.home-page .header {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

.footer {
  height: auto;
  position: relative;
  padding: 80px 0;
  background-color: #0B0B0B;
  color: #FFFFFF;
  border-top: 1px solid #2C2C2C;
}
.footer__logo {
  width: 183px;
  height: 50px;
  margin-bottom: 40px;
}
.footer__navbar {
  margin-bottom: 40px;
}
.footer__navbar .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__navbar .footer-menu a {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration-line: underline;
  text-decoration-thickness: 0;
  text-underline-offset: 4px;
  transition: 250ms ease-in-out;
}
.footer__navbar .footer-menu a:hover {
  color: #EA480E;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__contacts > div {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #EA480E;
  display: flex;
  flex-direction: column;
}
.footer__link {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  width: max-content;
  color: #FFFFFF;
  text-decoration-line: underline;
  text-decoration-thickness: 0;
  text-underline-offset: 4px;
  transition: 250ms ease-in-out;
}
.footer__link:hover {
  color: #EA480E;
}
.footer__link:focus {
  color: inherit;
}
.footer__copy {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}
.footer__info {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #DEDEDE;
}
.footer .section-navigate {
  outline: none;
  position: fixed;
  right: 20px;
  bottom: 60px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 5;
  transition: 250ms ease-in-out;
}
.footer .section-navigate .counter {
  padding-left: 12px;
}
.footer .section-navigate:disabled {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .footer__info {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
  .footer .section-navigate {
    display: none;
  }
  .footer__contacts {
    margin-bottom: 40px;
    gap: 20px;
  }
  .footer__info {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
  }
  .footer__copy {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}

body:not(.home-page) .section-navigate {
  display: none;
}

.terms {
  padding: 80px 0 120px 0;
}
.terms__content h2 {
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  margin: 80px 0 40px 0;
}
.terms__content p {
  margin: 0 0 20px 0;
}
.terms__content ul {
  list-style-type: disc;
  padding-left: 20px;
}
.terms__content table {
  width: 100%;
}
.terms__content table th, .terms__content table td {
  padding: 10px;
  border: 1px solid #FFFFFF;
}
@media (max-width: 991px) {
  .terms {
    padding: 40px 0 80px;
  }
  .terms__content h2 {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    margin: 40px 0 20px 0;
  }
}

.success-page__content {
  padding: 120px 0 160px;
}
.success-page__content .section-title {
  margin-bottom: 80px;
}

.form-field {
  margin: 0 0 20px 0;
}
.form-field:last-of-type {
  margin-bottom: 40px;
}

.form-label {
  color: #FFFFFF;
  margin: 0 8px;
}

.form-control {
  height: 40px;
  min-height: 40px;
  padding: 10px 8px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #FFFFFF;
  background-color: #0B0B0B;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: #FFFFFF;
}
.form-control:focus {
  background-color: #0B0B0B;
  outline: 0;
  box-shadow: none;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.form-control.is-invalid {
  background-image: none;
}
.form-control.is-invalid:focus {
  box-shadow: none;
}

textarea.form-control {
  height: 40px;
  min-height: 40px;
  scrollbar-width: none;
}

.error__text {
  margin: 4px 0 0;
  font-size: clamp(8px, 0.7291666667vw, 14px);
  color: #e21e32;
}

.form-check {
  margin: 20px 0 80px;
  padding-left: 32px;
}

.form-check-label {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.form-check-input[type=checkbox] {
  margin-top: 2px;
  margin-left: -32px !important;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 2px solid #FFFFFF;
}
.form-check-input[type=checkbox]:checked {
  background-color: transparent;
  background-image: url("../../images/icons/check.svg") !important;
  background-size: auto;
  border-color: #FFFFFF;
}
.form-check-input[type=checkbox]:focus {
  box-shadow: none;
  outline: none;
}

.top {
  height: 100vh;
  position: relative;
  background-color: #0B0B0B;
  padding-top: 18vh;
}
.top .container {
  height: 100%;
}
.top__inner {
  position: relative;
  z-index: 1;
}
.top__inner p {
  font-size: clamp(18px, 1.25vw, 24px);
  max-width: 507px;
}
.top__inner .btn-primary-wrapper {
  margin-top: 7vh;
}
.top__inner .btn-primary-wrapper .btn-primary {
  width: 154px;
}
.top__content .section-title {
  margin-bottom: 10vh;
}
.top__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  transform: translateX(0px);
  z-index: 0;
  pointer-events: none;
}
.top__img img {
  object-position: left;
}
.top__img .gradient {
  position: absolute;
  top: 20%;
  bottom: 0;
  left: -190px;
  margin: auto;
  width: 360px;
  height: 360px;
}
.top__img .gradient::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #EA480E;
  filter: blur(170px);
}
.top__img .gradient::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  background: #FA3131;
  filter: blur(100px);
}
.top__img::before {
  content: "";
  background-image: url("/images/decor/ellipses.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18.5vh;
  height: 18.5vh;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 120px;
  margin: auto;
  z-index: 1;
}
.top::before {
  content: "";
  background-image: url("/images/decor/triangles.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 13.8vh;
  height: 13.8vh;
  display: block;
  position: absolute;
  left: 40%;
  bottom: 80px;
}
@media (max-width: 991px) {
  .top__inner p {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    max-width: 86vw;
  }
  .top__inner .btn-primary-wrapper {
    margin-top: 4.1vh;
  }
  .top__content .section-title {
    margin-bottom: 4.1vh;
    padding-right: 13.6vw;
  }
  .top__img {
    width: 50%;
  }
  .top__img::before {
    z-index: 1;
    top: 15.6vh;
    right: 4.5vw;
    bottom: unset;
    width: 10.4vh;
    height: 10.4vh;
  }
  .top__img::after {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgba(11, 11, 11, 0.4), rgba(11, 11, 11, 0.4));
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .top__img .gradient {
    display: none;
  }
  .top::before {
    width: 7.8vh;
    height: 7.8vh;
    left: 22.5vw;
    bottom: 4.8vh;
  }
}
@media (max-width: 539px) {
  .top__inner p {
    font-size: clamp(16px, 4.09vw, 18px);
  }
  .top__inner .btn-primary-wrapper .btn-primary {
    width: 35vw;
    font-size: clamp(18px, 4.54vw, 20px);
  }
}

.about {
  padding-top: 200px;
  padding-bottom: 50px;
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
  background-color: #EA480E;
}
.about__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}
.about__content .content-decor img {
  width: auto;
  height: auto;
}
.about__content .content-decor:first-of-type img {
  height: 100%;
  object-fit: contain;
  width: 100%;
  object-position: top;
}
.about__content div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.about__content div img {
  width: auto;
  height: auto;
}
.about__decor {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 0;
  pointer-events: none;
}
.about__decor::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  height: 50px;
  background-image: linear-gradient(0deg, rgb(11, 11, 11) 0%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }
  .about__content {
    gap: 40px;
  }
  .about__decor {
    display: none;
  }
}
@media (max-width: 767px) {
  .about__content .content-decor:first-of-type {
    contain: size;
  }
  .about__content .content-decor:first-of-type img {
    object-position: top left;
  }
}

.offer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 280px;
  overflow: hidden;
  background-color: #EA480E;
  z-index: 0;
}
.offer__img {
  margin-right: var(--container-offset);
  margin-bottom: 80px;
}
.offer__img img {
  width: 100%;
  height: 400px;
  margin-left: auto;
}
.offer__inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}
.offer__content .slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offer__content .slider-controls .slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  color: #0B0B0B;
  background: #FFFFFF;
  transition: 250ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer__content .slider-controls .slider-btn:hover:not(.swiper-button-disabled) {
  color: #FFFFFF;
  background: #0B0B0B;
}
.offer__content .slider-controls .slider-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.offer__slider {
  overflow: hidden;
  margin-right: var(--container-offset);
}
.offer__slider .swiper {
  overflow: visible;
  padding-right: calc(100% - 507px);
}
.offer__slider .swiper-slide {
  width: 507px;
  height: 400px;
  padding: 20px;
  border-radius: 12px;
  background: #0B0B0B;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer__slider .swiper-slide img {
  width: 50px;
  height: 50px;
}
@media (max-width: 1199px) {
  .offer__inner {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(507px, 1fr);
    gap: 40px;
  }
  .offer__slider {
    margin-right: -0.75rem;
  }
}
@media (max-width: 991px) {
  .offer {
    padding: 0 0 40px;
  }
  .offer__img {
    margin-right: -0.75rem;
    margin-bottom: 40px;
  }
  .offer__img img {
    height: 200px;
  }
  .offer__inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }
  .offer__content .slider-controls {
    display: none;
  }
  .offer__slider {
    margin-right: 0;
  }
  .offer__slider .swiper {
    padding-right: 0;
  }
  .offer__slider .swiper .swiper-wrapper {
    transform: unset;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .offer__slider .swiper-slide {
    height: 300px;
    width: 100%;
  }
  .offer__slider.animate {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}
@media (max-width: 767px) {
  .offer__slider .swiper .swiper-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

.services {
  padding: 80px 0 120px;
  background: #0B0B0B;
  position: relative;
}
.services__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}
.services__inner .section-title {
  margin-bottom: 80px;
}
.services__inner .section-title span {
  color: #EA480E;
}
.services__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}
.services__content .services__item {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 40px;
}
.services__content .services__item::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url("/images/icons/check-circle.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services__decor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  z-index: 0;
  pointer-events: none;
}
.services__decor img {
  transform: rotate(180deg);
}
@media (max-width: 1199px) {
  .services__inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .services__img {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .services {
    padding: 40px 0 80px;
  }
  .services__inner {
    gap: 40px;
  }
  .services__inner .section-title {
    margin-bottom: 40px;
  }
  .services__img {
    height: 170px;
  }
  .services__content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  .services__content .services__item {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    gap: 20px;
  }
  .services__content .services__item::before {
    width: 25px;
    height: 25px;
  }
  .services__decor {
    display: none;
  }
}

.contact_us {
  padding: 80px 0 120px;
  background: #0B0B0B;
}
.contact_us__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 80px;
}
.contact_us__form .form-bottom {
  grid-column: 1/3;
}
@media (max-width: 991px) {
  .contact_us {
    padding: 40px 0 80px;
  }
  .contact_us__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact_us__form .form-img {
    display: none;
  }
}

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