@import url("https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
*, *::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;
}

html {
  scrollbar-gutter: stable;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #ffffff;
  background-color: #0A0A0C;
}

main {
  flex: 1 0 auto;
  position: relative;
  overflow: hidden;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row > * {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .row > * {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.section-title {
  display: inline-flex;
  font-size: 60px;
  font-weight: 400;
  color: #0A0A0C;
  position: relative;
}
.section-title span {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  position: relative;
  top: 0;
  padding-left: 24px;
}
@media (max-width: 1199px) {
  .section-title {
    font-size: 40px;
  }
  .section-title span {
    display: none;
  }
}

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

.animate {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (max-width: 767px) {
  .animate:not(.animate-mobile-on) {
    opacity: 1 !important;
    transform: unset !important;
  }
}

.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;
}

.delay-2 {
  transition-delay: 0.4s;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.bg-accent {
  background-color: #FF3D00 !important;
}

.title {
  color: #ffffff;
}
.title__xxl {
  font-weight: 700;
  font-size: clamp(54px, 8.4507042254vw, 120px);
  font-family: "Roboto Flex", sans-serif;
  text-transform: uppercase;
}
.title__xxl-alt {
  font-weight: 400;
  font-size: clamp(54px, 8.4507042254vw, 120px);
  font-family: "Arapey", serif;
  letter-spacing: -6px;
}
.title__xl {
  font-weight: 600;
  font-size: clamp(40px, 5.6338028169vw, 80px);
  font-family: "Roboto Flex", sans-serif;
  text-transform: uppercase;
}
.title__lg {
  font-weight: 500;
  font-size: clamp(24px, 2.5352112676vw, 36px);
  font-family: "Roboto Flex", sans-serif;
  text-transform: uppercase;
}
.title__md {
  font-weight: 400;
  font-size: clamp(18px, 1.6901408451vw, 24px);
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  transition: 250ms ease-in-out;
  column-gap: 8px;
  color: #0A0A0C;
}
.btn img {
  width: 24px;
  height: 24px;
}
.btn-primary {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 100px;
  height: 60px;
  min-width: 200px;
  width: max-content;
  background-color: #FF3D00;
  color: #0A0A0C;
}
.btn-primary:focus {
  background-color: #ffffff;
  color: #0A0A0C;
}
.btn-primary:hover {
  background-color: #ffffff;
  color: #0A0A0C;
}
@media (max-width: 991px) {
  .btn-primary--small {
    font-size: 10px;
    padding: 4px 12px;
    height: 30px;
    min-width: 98px;
  }
}
.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.btn-icon img {
  width: 24px;
  height: 24px;
}
.btn-icon:focus, .btn-icon:active, .btn-icon:first-child:active, .btn-icon:visited, .btn-icon:focus-visible {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: none;
}
.btn-icon:hover {
  background-color: #9CCBF9;
  border: 1px solid #0A0A0C;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #0A0A0C;
  transition: 250ms ease-in-out;
  opacity: 0;
}
.header__inner {
  transition: 250ms ease-in-out;
  padding: 36px 0;
}
.header.loaded {
  opacity: 1;
}
.header .navbar {
  padding: 0;
  gap: 24px;
}
.header .menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 54px;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  transition: 250ms ease-in-out;
  font-family: "Roboto", sans-serif;
}
.header .menu a:hover {
  background: #FF3D00;
  color: #0A0A0C;
  font-size: 20px;
}
.header.loaded.fixed {
  backdrop-filter: blur(10px);
}
.header.loaded.fixed .header__inner {
  padding: 1.33vh 0;
}
@media (max-width: 991px) {
  .header {
    border-bottom: 1px solid #0A0A0C;
  }
  .header__inner {
    padding: 16px 0;
  }
  .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 {
    height: 56px;
  }
  .header.fixed .header__inner {
    height: 56px;
  }
  .header.fixed .header__inner .header__logo {
    height: auto;
  }
  .header.loaded.fixed .header__inner {
    padding: 16px 0;
  }
}

.header__logo {
  width: 200px;
  height: 51px;
}
@media (max-width: 991px) {
  .header__logo {
    width: 24px;
    height: 24px;
  }
  .header__logo img {
    object-fit: contain;
    object-position: left;
  }
}

.mobile-menu {
  background-color: #0A0A0C;
  border: none;
  width: 100%;
}
.mobile-menu .header__close {
  width: 24px;
  height: 24px;
}
.mobile-menu .offcanvas-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
.mobile-menu .offcanvas-body {
  display: flex;
  padding: 40px;
}
.mobile-menu .mobile-nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 24px;
  width: 100%;
  font-size: 36px;
  line-height: 1.1111111111;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}
.mobile-menu .mobile-nav li {
  padding: 0;
  text-align: right;
}
.mobile-menu .mobile-nav a {
  color: inherit;
}

.footer__inner {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  margin-top: 60px;
}
.footer .container {
  overflow: hidden;
}
.footer .row {
  margin-left: -20px;
  margin-right: -20px;
}
.footer .row > * {
  padding-left: 20px;
  padding-right: 20px;
}
.footer__logo {
  width: 200px;
  height: 51px;
  margin-bottom: 40px;
}
.footer__navbar {
  margin-bottom: 0;
}
.footer__navbar .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__navbar .footer-menu a {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  transition: 250ms ease-in-out;
  text-transform: uppercase;
}
.footer__navbar .footer-menu a:hover {
  color: #FF3D00;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.footer__contacts > div {
  display: flex;
  flex-direction: column;
}
.footer__copy {
  font-size: 16px;
  line-height: 19px;
  max-width: 290px;
}
.footer__link {
  width: max-content;
  transition: 250ms ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  line-height: 19px;
}
.footer__link img {
  width: 24px;
  height: 24px;
}
.footer__link:hover {
  text-decoration: underline;
  color: #ffffff;
}
.footer__link:focus {
  color: inherit;
}
.footer__info {
  display: flex;
  flex-direction: column;
  max-width: 290px;
}
.footer__info div {
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 16px;
  }
  .footer__logo {
    margin-bottom: 32px;
  }
  .footer__contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
  }
  .footer__contacts > div {
    display: flex;
    flex-direction: column;
  }
  .footer__link {
    width: max-content;
    transition: 250ms ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer__link img {
    width: 24px;
    height: 24px;
  }
  .footer__link:hover {
    text-decoration: underline;
  }
  .footer__link:focus {
    color: inherit;
  }
}

.terms {
  padding: 200px 0 60px 0;
}
.terms__title {
  font-size: 60px;
  margin-bottom: 24px;
}
.terms__date {
  text-transform: uppercase;
}
.terms__content h2 {
  font-size: clamp(24px, 2.5352112676vw, 36px);
  line-height: 1.1;
  font-weight: 500;
  margin: 60px 0 20px 0;
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
}
.terms__content p {
  margin: 0 0 20px 0;
}
.terms__content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0 0 20px 0;
}
.terms__content ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 0 0 20px 0;
}
.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: 96px 0 40px 0;
  }
  .terms__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .terms__content h2 {
    font-size: 24px;
    margin: 24px 0 20px 0;
  }
}

.success-page__content {
  padding: 120px 0 160px;
  height: 100%;
}
.success-page .success-page-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.175;
  font-weight: 400;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  .success-page .success-page-title {
    font-size: 8.625vw;
  }
}

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

.form-control {
  min-height: 40px;
  padding: 12px 16px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  background-color: transparent;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}
.form-control:focus {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: #ffffff;
}
.form-control.is-invalid {
  background-image: none;
}
.form-control.is-invalid:focus {
  box-shadow: none;
}
.form-control::placeholder {
  color: #ffffff;
  opacity: 0.5;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

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

.error__text {
  margin: 0;
  font-size: 12px;
  color: #e21e32;
}

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

.form-check-label {
  color: #ffffff;
  font-size: 16px;
}

.form-check-input[type=checkbox] {
  margin-top: 2px;
  margin-left: -32px !important;
  background-color: transparent;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 7px;
}
.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;
}

.modal-dialog {
  max-width: 872px;
}

.modal-content {
  text-align: center;
  align-items: center;
  padding: 90px 24px;
  border-radius: 24px;
  background: #232323;
  border: none;
}
.modal-content .modal-body h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
}
.modal-content .modal-body p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
.modal-content .modal-body a.btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .modal-content {
    padding: 40px 16px;
  }
  .modal-content .modal-body h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.top {
  position: relative;
}
.top__inner {
  padding-top: 125px;
  padding-bottom: 60px;
}
.top__subtitle {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.top__subtitle img {
  height: auto;
}
.top__subtitle span {
  font-size: clamp(3.25rem, 1.6951rem + 6.6341vw, 7.5rem);
  font-style: italic;
  font-family: "Arapey", serif;
  line-height: 0.9;
  letter-spacing: -6px;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top__text h1 {
  font-size: clamp(3.25rem, 1.6951rem + 6.6341vw, 7.5rem);
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
}
@media (max-width: 991px) {
  .top__inner {
    padding-top: 96px;
    padding-bottom: 40px;
  }
  .top__subtitle {
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
  }
  .top__text h1 {
    font-size: 48px;
  }
}

.about-us-banner {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 24px;
}
.about-us-banner img {
  border-radius: 24px;
  overflow: hidden;
}
.about-us-banner img:first-child {
  min-height: 160px;
}
.about-us-banner img:last-child {
  min-height: 120px;
}
@media (max-width: 768px) {
  .about-us-banner img {
    border-radius: 20px;
  }
}

.potential__inner {
  padding: 120px 0 60px 0;
}

.offer-wrapper {
  row-gap: 20px;
}

.offer__inner {
  padding: 120px 0 60px 0;
}

.offer-card {
  padding: 24px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.offer-card:nth-child(even) {
  background-color: #FF3D00;
}
@media (max-width: 991px) {
  .offer-card {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .offer-card {
    padding: 16px;
  }
}

.services__inner {
  padding: 120px 0 60px 0;
}

.why-item {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: clamp(24px, 2.5352112676vw, 36px);
  font-family: "Roboto Flex", sans-serif;
  text-transform: uppercase;
}
.why-item:last-child {
  margin-bottom: 0;
}
.why-item__title {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 16px;
}

.contact_us__box {
  padding: 180px 0 60px;
}
.contact_us__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 890px;
  margin: 0 auto;
}
.contact_us__form .form-bottom {
  grid-column: 1/3;
}
.contact_us__fields {
  width: 100%;
}
@media (max-width: 991px) {
  .contact_us__box {
    padding: 96px 0 40px 0;
  }
}

.information__inner {
  padding: 70px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.information__btn {
  display: flex;
  justify-content: center;
}

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