*, *::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: "ABeeZee", sans-serif;
  font-size: 16px;
  color: #000;
  background-color: #F0F0F0;
}

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

.container {
  max-width: 1800px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}
.container:before {
  content: "";
  width: 1px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 2;
}
.container:after {
  content: "";
  width: 1px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  position: absolute;
  left: calc(33.3% + 5px);
  top: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .container:after {
    content: "";
    width: 1px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    position: absolute;
    left: auto;
    right: 16px;
    top: 0;
    z-index: 2;
  }
}

.contact-page .container:after {
  content: none;
}
@media (max-width: 991px) {
  .contact-page .container:after {
    content: "";
    width: 1px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    position: absolute;
    left: auto;
    right: 16px;
    top: 0;
    z-index: 2;
  }
}

.terms-page .container:before {
  content: none;
}
.terms-page .container:after {
  content: none;
}

.section-title {
  display: inline-flex;
  font-size: 60px;
  font-weight: 400;
  color: #000;
  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;
  }
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  transition: 250ms ease-in-out;
  color: inherit;
}
.btn-primary {
  font-size: 20px;
  font-weight: 400;
  padding: 8px 24px;
  border-radius: 100px;
  border: 1px solid #000;
  height: 60px;
  min-width: 200px;
  width: max-content;
  background-color: #000;
  color: #fff;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:first-child:active, .btn-primary:visited, .btn-primary:focus-visible {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  box-shadow: none;
}
.btn-primary:hover {
  background-color: #9CCBF9;
  color: #000;
  border: 1px solid #000;
}
@media (max-width: 991px) {
  .btn-primary--small {
    font-size: 10px;
    padding: 4px 12px;
    height: 30px;
    min-width: 98px;
  }
}
.btn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #fff;
}
.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: #fff;
  border: 1px solid #fff;
  box-shadow: none;
}
.btn-icon:hover {
  background-color: #9CCBF9;
  border: 1px solid #000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #F0F0F0;
  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: 20px;
  font-weight: 400;
  color: #000;
  background: transparent;
  transition: 250ms ease-in-out;
}
.header .menu a:hover {
  background: #000;
  color: #fff;
}
.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 #000;
  }
  .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: 24px;
  }
  .header.loaded.fixed .header__inner {
    padding: 16px 0;
  }
}

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

.mobile-menu {
  background-color: #F0F0F0;
  border: none;
  width: 100%;
}
.mobile-menu:before {
  content: "";
  width: 1px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 2;
}
.mobile-menu:after {
  content: "";
  width: 1px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 16' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  position: absolute;
  left: auto;
  right: 16px;
  top: 0;
  z-index: 2;
}
.mobile-menu .header__close {
  width: 24px;
  height: 24px;
}
.mobile-menu .offcanvas-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
}
.mobile-menu .offcanvas-body {
  display: flex;
  padding: 40px;
}
.mobile-menu .mobile-nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
  color: #000;
}
.mobile-menu .mobile-nav li {
  padding: 0;
  text-align: right;
}
.mobile-menu .mobile-nav a {
  color: inherit;
}

.footer {
  background-color: #fff;
}
.footer__inner {
  padding: 80px 0;
}
.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: 40px;
  margin-bottom: 40px;
}
.footer__navbar {
  margin-bottom: 0;
}
.footer__navbar .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__navbar .footer-menu a {
  font-size: 24px;
  line-height: 1.3;
  font-style: italic;
  font-weight: 400;
  color: #000;
  transition: 250ms ease-in-out;
}
.footer__navbar .footer-menu a:hover {
  color: #000;
}
.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;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 290px;
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 40px 0;
  }
  .footer__logo {
    margin-bottom: 32px;
  }
  .footer__navbar {
    margin-bottom: 40px;
  }
  .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;
  }
  .footer__info {
    margin-bottom: 40px;
  }
}

.terms {
  padding: 165px 0 60px 0;
}
.terms__title {
  font-size: 60px;
  margin-bottom: 24px;
}
.terms__content h2 {
  font-size: 40px;
  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;
  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 #fff;
}
@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 16px 0;
}
.form-field:last-of-type {
  margin-bottom: 0;
}

.form-label {
  color: #000;
  padding: 0 0 8px 16px;
  font-size: 16px;
}

.form-control {
  min-height: 68px;
  padding: 24px 16px;
  border: 1px solid #000;
  border-radius: 12px;
  background-color: transparent;
  font-size: 16px;
  line-height: 1;
  color: #000;
}
.form-control:focus {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: #000;
}
.form-control.is-invalid {
  background-image: none;
}
.form-control.is-invalid:focus {
  box-shadow: none;
}
.form-control::placeholder {
  color: #000;
  opacity: 0.5;
}

textarea.form-control {
  min-height: 68px;
  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: #000;
  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 #000;
  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: #000;
}
.form-check-input[type=checkbox]:focus {
  box-shadow: none;
  outline: none;
}

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

.modal-content {
  text-align: center;
  align-items: center;
  padding: 120px 16px;
  background: #F0F0F0;
  box-shadow: 4px 4px 10px 0 rgba(8, 40, 55, 0.1);
  border: none;
  border-radius: 24px;
}
.modal-content .modal-body h2 {
  font-size: 40px;
  margin-bottom: 12px;
}
.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;
}
.top__subtitle img {
  width: 60px;
  height: 60px;
}
.top__text h1 {
  font-size: 120px;
  font-weight: 400;
  position: relative;
}
.top__text h1 span {
  font-size: 24px;
  font-style: italic;
  position: relative;
  top: -60px;
}
@media (max-width: 1399px) {
  .top__text h1 {
    font-size: 90px;
  }
  .top__text h1 span {
    top: -50px;
  }
}
@media (max-width: 1199px) {
  .top__text h1 {
    font-size: 80px;
  }
  .top__text h1 span {
    top: -40px;
  }
}
@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;
  }
}

.potential {
  background-image: url("../../images/section-potential/potential-bg.jpg");
  background-size: cover;
  background-position: center;
}
.potential__inner {
  padding: 60px 0;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
}
.potential__inner .row {
  width: 100%;
}
@media (max-width: 991px) {
  .potential__inner {
    padding: 16px 0;
    min-height: 400px;
  }
}

.potential-box {
  color: #000;
  position: relative;
}
.potential-box__title {
  font-size: 60px;
  font-weight: 400;
}
.potential-box__title span {
  display: block;
  background-color: #fff;
}
.potential-box__title span:first-of-type {
  width: calc(100% - 90px);
  padding: 24px 24px 0 24px;
  border-radius: 24px 24px 0 0;
  position: relative;
}
.potential-box__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: 24px;
  height: 24px;
  left: 100%;
  bottom: 0;
  transform: rotate(-180deg);
}
.potential-box__title span:last-of-type {
  padding: 0 24px 24px 24px;
  border-radius: 0 24px 0 0;
}
.potential-box__btn {
  padding: 100px 24px 24px 24px;
  background-color: #fff;
  border-radius: 0 0 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.potential-box__btn img {
  width: 60px;
  height: 60px;
}
@media (max-width: 1399px) {
  .potential-box__title {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .potential-box__title {
    font-size: 30px;
    font-weight: 400;
  }
  .potential-box__title span {
    display: block;
    background-color: #fff;
  }
  .potential-box__title span:first-of-type {
    width: calc(100% - 44px);
    padding: 10px 10px 0 10px;
    border-radius: 12px 12px 0 0;
    position: relative;
  }
  .potential-box__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: 12px;
    height: 12px;
    left: 100%;
    bottom: 0;
    transform: rotate(-180deg);
  }
  .potential-box__title span:last-of-type {
    padding: 0 12px 12px 12px;
    border-radius: 0 12px 0 0;
  }
  .potential-box__btn {
    padding: 48px 10px 10px 10px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .potential-box__btn img {
    width: 30px;
    height: 30px;
  }
}

.about__inner {
  padding: 120px 0;
}
.about__inner .section-title {
  margin-bottom: 36px;
}
.about__btn {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.about .anchor-list {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .about__inner {
    padding: 40px 0;
  }
  .about__inner .section-title {
    margin-bottom: 24px;
  }
  .about__btn {
    margin-top: 24px;
    align-items: flex-start;
    gap: 24px;
  }
  .about .anchor-list {
    display: flex;
    gap: 16px;
  }
}

.offer {
  background-color: #fff;
}
.offer__inner {
  padding: 60px 0;
}
.offer__img {
  width: 100%;
  height: 500px;
  position: relative;
}
.offer__img img {
  border-radius: 24px;
}
.offer__img .text-badge {
  background-color: #fff;
  padding: 30px 62px 24px 30px;
  border-radius: 0 0 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
}
.offer__img .text-badge:before {
  content: "";
  background-image: url(../../images/decor/inset-corner.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 100%;
  transform: rotate(-90deg);
}
.offer__img .text-badge:after {
  content: "";
  background-image: url(../../images/decor/inset-corner.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 100%;
  top: 0;
  transform: rotate(-90deg);
}
.offer__img .icon-badge {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 0 24px 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer__img .icon-badge img {
  width: 60px;
  height: 60px;
}
.offer__img .icon-badge:before {
  content: "";
  background-image: url(../../images/decor/inset-corner.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: -24px;
  transform: rotate(-180deg);
}
.offer__img .icon-badge:after {
  content: "";
  background-image: url(../../images/decor/inset-corner.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 100%;
  bottom: 0;
  transform: rotate(-180deg);
}
.offer__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .offer__inner {
    padding: 40px 0;
  }
  .offer__img {
    height: 400px;
  }
  .offer__img img {
    border-radius: 20px;
  }
  .offer__img .text-badge {
    background-color: #fff;
    padding: 24px 48px 20px 30px;
    border-radius: 0 0 20px 0;
  }
  .offer__img .text-badge:before {
    width: 20px;
    height: 20px;
  }
  .offer__img .text-badge:after {
    width: 20px;
    height: 20px;
  }
  .offer__img .icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 0 20px 0 0;
  }
  .offer__img .icon-badge img {
    width: 60px;
    height: 60px;
  }
  .offer__img .icon-badge:before {
    width: 20px;
    height: 20px;
    top: -20px;
  }
  .offer__img .icon-badge:after {
    width: 20px;
    height: 20px;
    left: 100%;
  }
  .offer__content {
    margin-top: 20px;
    gap: 20px;
  }
}

.services__inner {
  padding: 120px 0 60px 0;
}
.services .section-title {
  margin-bottom: 40px;
}
.services .services-box {
  overflow-y: auto;
}
.services .services-box__inner {
  display: flex;
  gap: 20px;
}
.services .services-box__item {
  height: auto;
  min-height: 350px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  position: relative;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 40px;
}
.services .services-box__item:before {
  content: "";
  width: calc(100% - 90px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 24px 24px 0 24px;
  background-color: #fff;
}
.services .services-box__item:after {
  content: "";
  width: 90px;
  height: calc(100% - 90px);
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0 24px 24px 0;
  background-color: #fff;
  z-index: -1;
}
.services .services-box__item:hover:before {
  background-color: #9CCBF9;
}
.services .services-box__item:hover:after {
  background-color: #9CCBF9;
}
.services .services-box__item:hover .services-box__icon:before {
  filter: none;
}
.services .services-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 24px;
}
.services .services-box__icon img {
  width: 60px;
  height: 60px;
}
.services .services-box__icon:before {
  content: "";
  background-image: url(../../images/decor/inset-corner-blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  bottom: 0;
  transform: rotate(-180deg);
  filter: brightness(1000%) grayscale(100%);
}
.services .services-box__title {
  position: relative;
  font-size: 40px;
  padding-right: 90px;
}
.services .services-box__description {
  position: relative;
}
.services .services-box__btn {
  position: relative;
}
.services .services-box .simplebar-track {
  background: #fff;
  border-radius: 6px;
}
.services .services-box .simplebar-track.simplebar-horizontal {
  height: 12px;
}
.services .services-box .simplebar-scrollbar {
  opacity: 1 !important;
}
.services .services-box .simplebar-scrollbar:before {
  background: #000;
  opacity: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
@media (max-width: 1199px) {
  .services .services-box__title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .services__inner {
    padding: 40px 0 40px 0;
  }
  .services .section-title {
    margin-bottom: 16px;
  }
  .services .services-box {
    overflow-y: auto;
  }
  .services .services-box__inner {
    display: flex;
    gap: 20px;
  }
  .services .services-box__item {
    min-height: 172px;
    min-width: 288px;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 32px;
  }
  .services .services-box__item:before {
    width: calc(100% - 44px);
    border-radius: 12px 12px 0 12px;
  }
  .services .services-box__item:after {
    content: "";
    width: 44px;
    height: calc(100% - 44px);
    position: absolute;
    border-radius: 0 12px 12px 0;
  }
  .services .services-box__icon {
    width: 44px;
    height: 44px;
    border-radius: 0 0 0 12px;
  }
  .services .services-box__icon img {
    width: 30px;
    height: 30px;
  }
  .services .services-box__icon:before {
    width: 12px;
    height: 12px;
  }
  .services .services-box__title {
    font-size: 20px;
    padding-right: 44px;
  }
  .services .services-box__description {
    font-size: 8px;
  }
}

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

.different__inner {
  padding: 120px 0 100px 0;
}
.different .rounded-block {
  padding: 0 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 12px;
  min-height: 76px;
}
.different .section-title {
  margin-bottom: 1.354vw;
}
.different::after {
  bottom: 1px;
}
@media (max-width: 767px) {
  .different__inner {
    padding: 40px 0 20px 0;
  }
  .different .section-title {
    margin-bottom: 24px;
  }
}

.information {
  background-color: #fff;
}
.information__inner {
  padding: 60px 0;
}
.information__inner .section-title {
  font-size: 120px;
  font-weight: 400;
}
.information__btn {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.information h3 {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
}
@media (max-width: 1199px) {
  .information__inner .section-title {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .information__inner {
    padding: 40px 0;
  }
  .information__btn {
    align-items: start;
  }
  .information h3 {
    display: none;
  }
}