*, *::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 {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 300;
  color: #181818;
  background-color: #B5D2E0;
}
@media (max-width: 991px) {
  body {
    font-size: 10px;
    line-height: 1;
    font-weight: 300;
  }
}
body:not(.home-page) {
  padding-top: 10.574vh;
}
@media (max-width: 991px) {
  body:not(.home-page) {
    padding-top: 67px;
  }
}

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

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

.container {
  max-width: 1832px;
  padding-left: 16px;
  padding-right: 16px;
}

section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 11.11vh 0;
  font-size: clamp(8px, 1.0416vw, 20px);
  line-height: clamp(8px, 1.1979vw, 23px);
  font-weight: 300;
}
section .section__wrapper {
  height: 100%;
  border-bottom: 1px solid #181818;
}
section:not(:last-of-type)::after {
  content: "";
  height: 1px;
  left: 16px;
  right: 16px;
  bottom: 0;
  position: absolute;
  background-color: #181818;
  max-width: 1832px;
  margin: auto;
}
@media (max-width: 991px) {
  section {
    height: auto;
    padding: 3.125vw 0;
  }
}
@media (max-width: 767px) {
  section {
    font-size: 2.5vw;
    line-height: 2.5vw;
  }
}

.section-title {
  font-size: clamp(16px, 4.166vw, 80px);
  line-height: clamp(16px, 5vw, 96px);
  font-weight: 400;
  color: #181818;
}
.section-title span {
  display: block;
  color: #181818;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 5vw;
    line-height: 5vw;
  }
}

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

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

.badge-with-dot {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.833vw, 16px);
  padding: clamp(1px, 0.416vw, 8px) clamp(3px, 1.041vw, 20px);
  border: 0.052083vw solid #181818;
  border-radius: 100px;
  font-size: clamp(7px, 2.083vw, 40px);
  line-height: clamp(100%, 2.447vw, 47px);
  font-weight: 400;
  width: max-content;
  position: relative;
}
.badge-with-dot::before {
  content: "";
  width: clamp(4px, 1.25vw, 24px);
  height: clamp(4px, 1.25vw, 24px);
  border-radius: 24px;
  background: #D52939;
}
@media (max-width: 767px) {
  .badge-with-dot {
    font-size: 2.1875vw;
    line-height: 100%;
  }
}

.rounded-block {
  padding: 1.25vw;
  border-radius: clamp(4px, 1.25vw, 24px);
  border: 1px solid #181818;
  display: flex;
  flex-direction: column;
}
.rounded-block.with-dot {
  padding-top: 2.526vw;
  position: relative;
  background: transparent;
  transition: 250ms ease-in-out;
}
.rounded-block.with-dot:hover {
  border: 1px solid #F1F1F1;
  background: #F1F1F1;
}
.rounded-block.with-dot::before {
  content: "";
  position: absolute;
  left: clamp(8px, 1.25vw, 24px);
  top: clamp(8px, 1.25vw, 24px);
  width: clamp(4px, 1.25vw, 24px);
  height: clamp(4px, 1.25vw, 24px);
  border-radius: 24px;
  background: #D52939;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  transition: 250ms ease-in-out;
  color: inherit;
  font-size: clamp(12px, 1.562vw, 30px);
  font-weight: 400;
  padding: clamp(7px, 0.625vw, 12px) clamp(12px, 1.041vw, 20px);
  border-radius: clamp(4px, 0.625vw, 12px);
  height: clamp(28px, 3.125vw, 60px);
  min-width: clamp(84px, 11.927vw, 229px);
}
.btn-primary {
  width: max-content;
  background-color: #D52939;
  color: #F1F1F1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.833vw, 16px);
}
.btn-primary:focus, .btn-primary:active, .btn-primary:first-child:active, .btn-primary:visited, .btn-primary:focus-visible {
  background-color: #D52939;
  color: #F1F1F1;
  border: none;
  box-shadow: none;
}
.btn-primary::after {
  content: "";
  width: clamp(16px, 1.25vw, 24px);
  height: clamp(16px, 1.25vw, 24px);
  position: relative;
  mask-image: url("../../images/icons/arrow-link.svg");
  mask-position: center;
  mask-size: contain;
  background-color: #F1F1F1;
  transition: 250ms ease-in-out;
}
.btn-primary:hover {
  background-color: #F1F1F1;
  color: #181818;
}
.btn-primary:hover::after {
  background-color: #181818;
}
@media (max-width: 991px) {
  .btn-primary:not(.mobile-icon-on)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .btn-primary {
    font-size: 3.75vw;
    padding: 2.1875vw 3.75vw;
    height: 8.75vw;
    min-width: 26.25vw;
    gap: 1.25vw;
  }
  .btn-primary::after {
    width: 5vw;
    height: 5vw;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 3.33vh 0;
  width: 100%;
  z-index: 10;
  background: #B5D2E0;
  border-bottom: 1px solid #181818;
  transition: 250ms ease-in-out;
  opacity: 0;
}
.header.loaded {
  opacity: 1;
}
.header .navbar {
  padding: 0;
  gap: 24px;
}
.header .menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .menu a {
  padding: 8px 24px;
  border-radius: 100px;
  font-size: clamp(24px, 1.66vw, 32px);
  font-weight: 400;
  color: #181818;
  background: transparent;
  transition: 250ms ease-in-out;
}
.header .menu a:hover {
  background: #F1F1F1;
}
.header.loaded.fixed {
  background: rgba(181, 210, 224, 0.5);
  backdrop-filter: blur(10px);
  padding: 1.33vh 0;
}
@media (max-width: 991px) {
  .header {
    padding: 16px 0;
    height: 64px;
  }
  .header__inner {
    background: transparent;
    height: 100%;
  }
  .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: 50px;
  }
  .header.fixed .header__inner {
    height: 50px;
  }
  .header.fixed .header__inner .header__logo {
    height: 26px;
  }
}

.header__logo {
  width: 143px;
  height: 40px;
}
@media (max-width: 991px) {
  .header__logo {
    width: 115px;
    height: 32px;
  }
  .header__logo img {
    object-fit: contain;
    object-position: left;
  }
}

.mobile-menu {
  background-color: #B5D2E0;
  border: none;
  width: 100%;
}
.mobile-menu .header__close {
  width: 24px;
  height: 24px;
}
.mobile-menu .offcanvas-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #181818;
}
.mobile-menu .offcanvas-body {
  display: flex;
  padding: 40px;
}
.mobile-menu .mobile-nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  width: 100%;
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
  color: #181818;
}
.mobile-menu .mobile-nav li {
  padding: 0;
  text-align: right;
}
.mobile-menu .mobile-nav a {
  color: inherit;
}

.footer {
  height: auto;
  position: relative;
  padding: 4.166vw 0 8.333vw;
  color: #181818;
  font-size: clamp(10px, 1.0416vw, 20px);
  line-height: clamp(10px, 1.1979vw, 23px);
  font-weight: 300;
  margin-top: auto;
}
.footer::after {
  content: "";
  height: 1px;
  left: 16px;
  right: 16px;
  top: 0;
  position: absolute;
  background-color: #181818;
  max-width: 1832px;
  margin: auto;
}
.footer .container {
  overflow: hidden;
}
.footer .row {
  margin-left: -20px;
  margin-right: -20px;
}
.footer .row > * {
  padding-left: 20px;
  padding-right: 20px;
}
.footer__logo {
  width: 7.4479vw;
  height: 2.0833vw;
  margin-bottom: clamp(4px, 0.833vw, 16px);
}
.footer__navbar {
  margin-bottom: 0;
}
.footer__navbar .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__navbar .footer-menu a {
  font-size: clamp(10px, 1.666vw, 32px);
  line-height: clamp(10px, 1.927vw, 37px);
  font-weight: 400;
  color: #181818;
  transition: 250ms ease-in-out;
}
.footer__navbar .footer-menu a:hover {
  color: #D52939;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: clamp(8px, 2.5vw, 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: clamp(4px, 0.4166vw, 8px);
}
.footer__link img {
  width: clamp(8px, 1.25vw, 24px);
  height: clamp(8px, 1.25vw, 24px);
}
.footer__link:hover {
  color: #D52939;
}
.footer__link:focus {
  color: inherit;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.7031vw, 13px);
}
@media (max-width: 767px) {
  .footer__logo {
    width: 22.5vw;
    height: 6.25vw;
    margin-bottom: 2.5vw;
  }
}

.terms {
  padding: 30px 0 60px 0;
  font-size: 18px;
  line-height: 1.1111111111;
  font-weight: 400;
}
.terms p {
  margin-bottom: 24px;
}
.terms__title {
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
}
.terms__date {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
}
.terms__date b {
  font-weight: 500;
}
.terms__content h2 {
  font-size: 36px;
  line-height: 1.0555555556;
  font-weight: 400;
  margin: 60px 0 20px 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 #F1F1F1;
}
@media (max-width: 991px) {
  .terms {
    padding: 42px 0;
  }
  .terms__title {
    font-size: 44px;
    line-height: 0.8181818182;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
  }
  .terms__date {
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 32px;
  }
  .terms__date b {
    font-weight: 400;
  }
  .terms__content {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 400;
  }
  .terms__content h2 {
    font-size: 18px;
    line-height: 1.0555555556;
    font-weight: 400;
  }
}

.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;
}
.success-page .rounded-block {
  padding: 109px 24px;
  max-width: 890px;
  margin: 0 auto;
  border-color: #F1F1F1;
  background: #F1F1F1;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 10px rgba(8, 40, 55, 0.1);
}
.success-page .rounded-block p {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .success-page .success-page-title {
    font-size: 8.625vw;
  }
  .success-page .rounded-block {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .success-page .rounded-block.with-dot::before {
    top: 12px;
    left: 12px;
    width: 12px !important;
    height: 12px !important;
  }
  .success-page .rounded-block p {
    margin-bottom: 20px;
  }
}

.form-field {
  height: 84px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid #181818;
  border-radius: 24px;
  margin: 0 0 12px 0;
}
.form-field:last-of-type {
  margin-bottom: 0;
}

.form-label {
  color: #181818;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.form-control {
  height: 21px;
  min-height: 21px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #181818;
}
.form-control:focus {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: #181818;
}
.form-control.is-invalid {
  background-image: none;
}
.form-control.is-invalid:focus {
  box-shadow: none;
}
.form-control::placeholder {
  color: #181818;
  opacity: 0.5;
}

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

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

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

.form-check-label {
  color: #181818;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}

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

.top {
  height: 100vh;
  position: relative;
  padding-top: 12.592vh;
  padding-bottom: 5.55vh;
}
.top .container {
  height: 100%;
}
.top .badge-wrapper {
  padding: clamp(4px, 1.25vw, 24px) clamp(4px, 1.25vw, 24px) clamp(4px, 1.25vw, 24px) 0;
  background: #B5D2E0;
  border-radius: 0 0 clamp(4px, 2.083vw, 40px) 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.top .badge-wrapper::before {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  left: 100%;
  top: 0;
  bottom: 0;
  transform: rotate(-90deg);
}
.top .badge-wrapper::after {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  top: 100%;
  left: 0;
  transform: rotate(-90deg);
}
@media (max-width: 1199px) {
  .top .badge-wrapper::before {
    left: calc(100% - 1px);
    top: -1px;
  }
  .top .badge-wrapper::after {
    top: calc(100% - 1px);
  }
}
.top .section-title {
  font-size: clamp(20px, 6.255vw, 120px);
  line-height: clamp(26px, 9.333vw, 170px);
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.top .section-title span {
  display: block;
  width: max-content;
  background: #B5D2E0;
  padding-right: clamp(7px, 2.083vw, 40px);
}
.top .section-title span:first-of-type {
  position: relative;
  top: 2px;
  border-radius: 0 clamp(4px, 2.083vw, 40px) clamp(4px, 2.083vw, 40px) 0;
}
.top .section-title span:first-of-type::after {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  left: 0;
  bottom: 100%;
  transform: rotate(-180deg);
}
.top .section-title span:last-of-type {
  position: relative;
  top: 1px;
}
.top .section-title span:last-of-type::before {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  left: 100%;
  top: 0;
  transform: rotate(-90deg);
}
.top .section-title span:last-of-type::after {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  left: 100%;
  bottom: 0;
  transform: rotate(-180deg);
}
@media (max-width: 1199px) {
  .top .section-title span:first-of-type::after {
    left: -1px;
    bottom: calc(100% - 1px);
  }
  .top .section-title span:last-of-type::before {
    top: -1px;
    left: calc(100% - 1px);
  }
  .top .section-title span:last-of-type::after {
    left: calc(100% - 1px);
    bottom: -1px;
  }
}
.top .btn-primary-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #B5D2E0;
  padding: clamp(7px, 1.66vw, 32px) 0 clamp(0px, 1.66vw, 32px) clamp(8px, 2.083vw, 40px);
  border-radius: clamp(4px, 2.083vw, 40px) 0 0;
}
.top .btn-primary-wrapper::before {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  right: 0;
  bottom: 100%;
  transform: rotate(90deg);
}
.top .btn-primary-wrapper::after {
  content: "";
  background-image: url("../../images/decor/inset-corner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: clamp(10px, 3.083vw, 40px);
  height: clamp(10px, 3.083vw, 40px);
  right: 100%;
  bottom: 0;
  transform: rotate(90deg);
}
@media (max-width: 1199px) {
  .top .btn-primary-wrapper {
    right: -1px;
    bottom: -1px;
  }
  .top .btn-primary-wrapper::before {
    right: -1px;
    bottom: calc(100% - 1px);
  }
  .top .btn-primary-wrapper::after {
    bottom: -1px;
    right: calc(100% - 1px);
  }
}
@media (max-width: 991px) {
  .top .btn-primary-wrapper {
    padding: clamp(7px, 1.66vw, 32px) 0 0 clamp(8px, 2.083vw, 40px);
  }
}
.top__inner {
  height: 100%;
  position: relative;
  z-index: 1;
}
.top__img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 clamp(4px, 2.083vw, 40px) 0 0;
  overflow: hidden;
}
.top__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .top {
    height: 100vw;
    padding-top: 67px;
    padding-bottom: 3.125vw;
    max-height: 100vh;
  }
}

.about {
  display: flex;
  align-items: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}
.about .badge-with-dot {
  margin-bottom: 2.592vh;
}
.about .section-title {
  margin-bottom: 3.703vh;
}
@media (max-width: 991px) {
  .about .section-title em {
    display: block;
  }
  .about .rounded-block {
    border: 0;
    padding: 0;
  }
  .about .rounded-block p {
    margin-bottom: 22px;
  }
}

.offer {
  padding: 5.55vw 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.offer .offer__video {
  height: 100%;
  border-radius: clamp(4px, 2.083vw, 40px);
  filter: drop-shadow(4px 4px 10px rgba(8, 40, 55, 0.1));
  overflow: hidden;
}
.offer .offer__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer .we-offer__img {
  border-radius: clamp(4px, 2.083vw, 40px);
  filter: drop-shadow(4px 4px 10px rgba(8, 40, 55, 0.1));
}
.offer .section-title {
  margin-bottom: 2.22vh;
}
.offer .btn-primary {
  margin-top: 5.555vh;
}
@media (max-width: 767px) {
  .offer {
    padding: 3.125vw 0;
  }
  .offer .rounded-block {
    padding: 3.75vw;
  }
  .offer .section-title {
    margin-bottom: 3.75vw;
  }
  .offer .btn-primary {
    margin-top: 3.75vw;
  }
}

.services {
  position: relative;
}
.services__column {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.0416vw, 20px);
  height: 100%;
}
.services__column .rounded-block {
  justify-content: flex-end;
}
.services__column .rounded-block.pt-sm {
  padding-top: 4.7916vw;
}
.services__column .rounded-block .services-subtitle {
  font-size: clamp(10px, 1.66vw, 32px);
  line-height: clamp(10px, 1.927vw, 37px);
  font-weight: 400;
  margin-bottom: clamp(2px, 0.625vw, 12px);
}
.services .section-title {
  margin-bottom: 1.354vw;
}
@media (max-width: 767px) {
  .services {
    gap: 3.75vw;
  }
  .services .section-title {
    margin-bottom: 3.75vw;
  }
  .services .rounded-block {
    padding: 7.5vw 2.5vw 2.5vw;
  }
  .services .rounded-block p {
    margin-bottom: 0;
  }
  .services .rounded-block .services-subtitle {
    font-size: 3.125vw;
    line-height: 3.125vw;
    margin-bottom: 1.25vw;
  }
}

.contact_us {
  height: auto;
  padding: 70px 0 120px;
}
.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 {
    padding: 24px 0 40px;
  }
  .contact_us .section-title {
    font-size: 34px !important;
    line-height: 1 !important;
  }
}

.different {
  height: auto;
  position: relative;
}
.different .rounded-block {
  padding: clamp(5px, 1.30208vw, 25px) clamp(8px, 1.666vw, 32px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(8px, 1.666vw, 32px);
  min-height: clamp(20px, 6.40625vw, 124px);
  font-size: clamp(8px, 1.666vw, 32px);
  line-height: clamp(8px, 1.927vw, 37px);
  font-weight: 400;
}
.different .rounded-block.with-dot::before {
  position: relative;
  left: 0;
  top: 0;
}
.different .rounded-block:not(:last-of-type) {
  margin-bottom: clamp(5px, 1.0416vw, 20px);
}
.different .section-title {
  margin-bottom: 1.354vw;
}
.different::after {
  bottom: 1px;
}
@media (max-width: 767px) {
  .different .row {
    gap: 2.5vw 0;
  }
  .different .section-title {
    margin-bottom: 2.5vw;
  }
  .different .rounded-block {
    padding: 1.5625vw 2.5vw;
    gap: 2.5vw;
    min-height: 6.25vw;
    font-size: 2.5vw;
    line-height: 2.5vw;
    font-weight: 300;
  }
  .different .rounded-block:not(:last-of-type) {
    margin-bottom: 1.5625vw;
  }
}

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