:root {
  --color-white: #fff;
  --color-primary-text-dark: #001e31;
  --color-primary-button: #b61919;
  --color-secondary-dark-blue: #6d93b4;
  --color-secondary-light-blue: #93afc8;
  --color-section-bg: #6d93b414;
  --color-border: #0003;
  --color-border-2: #14141433;
  --lg: linear-gradient(180deg, #93afc8 0%, #6d93b4 100%);
  --items: 1;
  --gap: 10px;
  --transition--l100: 0.1s linear;
  --transition--l200: 0.2s linear;
  --transition--l300: 0.3s linear;
  --transition--e100: 0.1s ease;
  --transition--e200: 0.2s ease;
  --transition--e300: 0.3s ease;
  --transition--e800: 0.8s ease;
}

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

* {
  border: none;
  margin: 0;
  padding: 0;
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  display: block;
}

img {
  vertical-align: top;
}

ol,
ul,
li {
  list-style: none;
}

a,
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button[disabled] {
  cursor: auto;
}

input,
button,
textarea,
select {
  background-color: #0000;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
  font-weight: inherit;
}

.cardset,
.btn-burger .burger-box,
.loader__backdrop {
  display: flex;
}

.btn-burger .burger-box,
.loader__backdrop {
  justify-content: center;
  align-items: center;
}

.cardset {
  flex-wrap: wrap;
}

.btn-burger .burger-box,
.lds-roller {
  position: relative;
}

.btn-burger .burger-line,
.lds-roller div:after,
.visually-hidden {
  position: absolute;
}

.loader__backdrop {
  position: fixed;
  inset: 0;
}

button,
a {
  cursor: pointer;
}

.lds-roller div:after {
  border-radius: 50%;
}

*,
:before,
:after {
  transition: var(--transition--l100);
}

html {
  --plr: 20px;
  --header-h: 60px;
  --scroll-padding-top: var(--header-h, 40px);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  height: 100%;
  scroll-padding-top: var(--scroll-padding-top);
}

body {
  height: 100%;
  color: var(--color-primary-text-dark);
  background-color: var(--color-white);
  flex-direction: column;
  display: flex;
}

body.isLoading,
body.modalIsOpen,
body.burgerMenuIsOpen {
  overflow-y: hidden;
}

main {
  contain: paint;
  position: relative;
}

footer {
  margin-top: auto;
}

svg {
  pointer-events: none;
}

.section {
  padding: 40px 0;
}

.container {
  width: 100%;
  padding: 0 var(--plr);
  margin: 0 auto;
}

.page-title {
  font-size: 40px;
  font-weight: 700;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
}

.section-subtitle {
  letter-spacing: 0.2px;
  width: fit-content;
  color: var(--color-secondary-light-blue);
  text-align: right;
  letter-spacing: 0.2px;
  backdrop-filter: blur(10.15px);
  border: 1px solid;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 400;
  line-height: 86%;
  display: flex;
}

.title-box {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.title-box--center h1,
.title-box--center h2,
.title-box--center h3,
.title-box--center p {
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-box-wrap {
  gap: var(--gap, 10px);
  flex-direction: column;
  display: flex;
}

.section-box {
  width: 100%;
}

.visually-hidden {
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}

.cardset {
  gap: var(--gap);
}

.cardset__item {
  flex-basis: calc(
    (100% - var(--gap, 16px) * (var(--items, 1) - 1)) / var(--items, 1)
  );
  width: calc(
    (100% - var(--gap, 16px) * (var(--items, 1) - 1)) / var(--items, 1)
  );
}

.hover-line {
  position: relative;
}

.hover-line:before {
  content: "";
  width: 100%;
  max-width: 0;
  height: 1px;
  transition: var(--transition--l100);
  background-color: currentColor;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.hover-line:hover:before {
  max-width: 100%;
}

.icircle {
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 16px;
  display: flex;
}

.icircle svg {
  width: 100%;
  height: 100%;
}

.icircle-before:before {
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.border-gray {
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.license-details {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.license-details .license-details__title {
  font-size: 14px;
  line-height: 1;
}

.license-details .license-details__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.color-accent-primary {
  color: var(--color-accent-primary);
}

.available {
  width: fit-content;
  color: var(--color-black);
  background-color: var(--color-accent-secondary);
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

.available:before {
  content: "";
  background-color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  display: block;
}

@media (width >= 450px) {
  .container {
    width: 450px;
  }
}

@media (width >= 768px) {
  html {
    --plr: 32px;
  }

  .container {
    width: 768px;
  }
}

@media (width >= 1440px) {
  html {
    --plr: 50px;
    --header-h: 70px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 100px 0;
  }

  .container {
    width: 1440px;
  }

  .page-title {
    font-size: 96px;
  }

  .section-title {
    font-size: 64px;
  }

  .section-subtitle {
    letter-spacing: 0.32px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .title-box {
    gap: 30px;
  }
}

.loader__backdrop {
  background-color: var(--color-secondary-light-blue);
  opacity: 1;
  z-index: 50;
  width: 100vw;
  height: 100vh;
}

.isHidden .loader__backdrop {
  display: none;
}

.lds-roller {
  width: 80px;
  height: 80px;
  display: inline-block;
}

.lds-roller div {
  transform-origin: 40px 40px;
  animation: 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite lds-roller;
}

.lds-roller div:after {
  content: " ";
  background-color: var(--color-primary-text-dark);
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -4px;
  display: block;
}

.lds-roller div:first-child {
  animation-delay: -0.036s;
}

.lds-roller div:first-child:after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.logo {
  width: 100%;
  max-width: fit-content;
  height: auto;
  display: block;
}

.logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.header__logo {
  width: 93px;
  height: 24px;
}

.footer__logo {
  width: 217px;
  height: 54px;
}

@media (width <= 1439px) {
  .header__logo {
    margin-bottom: auto;
  }
}

@media (width >= 1440px) {
  .header__logo {
    width: 194px;
    height: 50px;
  }

  .footer__logo {
    width: 198px;
    height: 50px;
  }
}

.btn,
.btn-fly,
.btn--action {
  will-change: color, background-color, border-color;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: all 0.2s linear;
  display: flex;
}

.btn svg,
.btn-fly svg,
.btn--action svg,
.btn span,
.btn-fly span,
.btn--action span {
  will-change: color, background-color, border-color;
  transition: all 0.2s linear;
}

.btn--action {
  background-color: #0000;
  border-radius: 10px;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 50px;
  padding: 5px 5px 5px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.btn--action span {
  aspect-ratio: 1;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.btn--action svg {
  aspect-ratio: 1;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn--fill-white {
  color: var(--color-primary-text-dark);
  background-color: var(--color-white);
}

.btn--fill-white span {
  background-color: var(--color-primary-button);
}

.btn--fill-white svg {
  fill: var(--color-white);
}

.btn--fill-white:hover {
  color: var(--color-white);
  background-color: var(--color-primary-button);
}

.btn--fill-white:hover span {
  background-color: var(--color-white);
}

.btn--fill-white:hover svg {
  fill: var(--color-primary-button);
}

.btn--fill-white:active {
  color: var(--color-primary-text-dark);
  background-color: var(--color-white);
}

.btn--fill-white:active span {
  background-color: var(--color-primary-button);
}

.btn--fill-white:active svg {
  fill: var(--color-white);
}

.btn--fill-dark-blue {
  color: var(--color-white);
  background-color: var(--color-secondary-dark-blue);
}

.btn--fill-dark-blue:hover {
  background-color: #4376a2;
}

.btn--fill-dark-blue:active {
  background-color: var(--color-secondary-dark-blue);
}

.btn--fill-primary-button {
  color: var(--color-white);
  background-color: var(--color-primary-button);
  border: 1px solid var(--color-primary-button);
}

.btn--fill-primary-button span {
  background-color: var(--color-white);
}

.btn--fill-primary-button svg {
  fill: var(--color-primary-button);
}

.btn--fill-primary-button:hover {
  color: var(--color-primary-button);
  background-color: var(--color-white);
}

.btn--fill-primary-button:hover span {
  background-color: var(--color-primary-button);
}

.btn--fill-primary-button:hover svg {
  fill: var(--color-white);
}

.btn--fill-primary-button:active {
  color: var(--color-white);
  background-color: var(--color-primary-button);
}

.btn--fill-primary-button:active span {
  background-color: var(--color-white);
}

.btn--fill-primary-button:active svg {
  fill: var(--color-primary-button);
}

.btn--fill-primary-button:disabled {
  pointer-events: none;
  background: #b619191a;
  border-color: #b619191a;
}

.btn--stroke-primary-button {
  color: var(--color-primary-button);
  border: 1px solid var(--color-primary-button);
  background-color: var(--color-white);
}

.btn--stroke-primary-button span {
  background-color: var(--color-primary-button);
}

.btn--stroke-primary-button svg {
  fill: var(--color-white);
}

.btn--stroke-primary-button:hover {
  color: var(--color-white);
  background-color: var(--color-primary-button);
}

.btn--stroke-primary-button:hover span {
  background-color: var(--color-white);
}

.btn--stroke-primary-button:hover svg {
  fill: var(--color-primary-button);
}

.btn--stroke-primary-button:active {
  color: var(--color-primary-button);
  background-color: var(--color-white);
}

.btn--stroke-primary-button:active span {
  background-color: var(--color-primary-button);
}

.btn--stroke-primary-button:active svg {
  fill: var(--color-white);
}

.btn--stroke-border {
  color: var(--color-primary-text-dark);
  border: 1px solid var(--color-border-2);
}

.btn--stroke-border span {
  background-color: var(--color-primary-button);
}

.btn--stroke-border svg {
  fill: var(--color-white);
}

.btn--stroke-border:hover {
  color: var(--color-white);
  background-color: var(--color-primary-button);
  border-color: var(--color-primary-button);
}

.btn--stroke-border:hover span {
  background-color: var(--color-white);
}

.btn--stroke-border:hover svg {
  fill: var(--color-primary-button);
}

.btn--stroke-border:active {
  color: var(--color-primary-button);
  border-color: var(--color-primary-button);
  background-color: #0000;
}

.btn--stroke-border:active span {
  background-color: var(--color-primary-button);
}

.btn--stroke-border:active svg {
  fill: var(--color-white);
}

.btn--stroke-light-blue {
  color: var(--color-primary-text-dark);
  background: var(--color-white);
  border: 1px solid #6b90b1;
}

.btn--stroke-light-blue:hover {
  color: var(--color-white);
  background: #4376a2;
}

.btn--stroke-light-blue:active {
  color: #4376a2;
  background: var(--color-white);
}

.btn-burger .burger-box {
  pointer-events: none;
  width: 24px;
  height: 24px;
}

.btn-burger .burger-line {
  pointer-events: none;
  background-color: currentColor;
  width: 20px;
  height: 2px;
  transition-property: height, opacity, transform;
  transition-duration: 0.4s;
}

.btn-burger .burger-line:first-child {
  transform: translateY(-5px);
}

.btn-burger .burger-line:last-child {
  transform: translateY(5px);
}

.btn-burger.active .burger-line:first-child {
  transform: rotate(-45deg);
}

.btn-burger.active .burger-line:nth-child(2n) {
  opacity: 0;
}

.btn-burger.active .burger-line:last-child {
  transform: rotate(45deg);
}

.btn-fly-box {
  bottom: 0;
  left: calc(100% - var(--plr, 20px));
  z-index: 3;
  width: 0;
  height: 0;
  position: sticky;
}

.btn-fly-box.isHidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.btn-fly {
  background-color: #4878a1;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  right: 0;
}

.btn-fly svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
  transform-origin: center;
  animation: 2.2s ease-in-out infinite phone-wiggle;
}

.btn-fly:hover {
  background-color: #1f66a3;
}

.btn-fly:active {
  background-color: #6d93b4;
}

.actions {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

@media (width >= 1440px) {
  .actions {
    flex-direction: row;
    gap: 16px;
  }

  .btn-fly {
    width: 72px;
    height: 72px;
  }
}

@keyframes phone-wiggle {
  0% {
    transform: rotate(0) translate(0);
  }

  20% {
    transform: rotate(-2deg) translate(-1px);
  }

  40% {
    transform: rotate(2deg) translate(1px);
  }

  60% {
    transform: rotate(-1.5deg) translate(-0.5px, 1px);
  }

  80% {
    transform: rotate(1.5deg) translate(0.5px, -1px);
  }

  100% {
    transform: rotate(0) translate(0);
  }
}

.contact-link {
  color: inherit;
  gap: 8px;
  line-height: 1;
  display: flex;
}

.contact-link svg {
  aspect-ratio: 1;
  fill: currentColor;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-link .contact-link__icon {
  aspect-ratio: 1;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-link--phone {
  align-items: center;
}

.contact-link--location svg {
  margin-bottom: auto;
}

.nav {
  height: 100%;
}

.nav__list {
  align-items: center;
  height: 100%;
  display: flex;
}

.header__nav .nav__list {
  gap: 24px;
}

.footer__nav .nav__list {
  flex-direction: column;
  gap: 8px;
}

.burger-menu .nav__list {
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.nav__item {
  align-items: center;
  height: 100%;
  display: flex;
}

.nav__link {
  cursor: pointer;
  font-weight: 400;
}

.header__nav .nav__link {
  text-align: center;
  letter-spacing: 0.32px;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  display: flex;
}

.footer__nav .nav__link {
  text-align: center;
  letter-spacing: 0.28px;
  font-size: 14px;
  line-height: 20px;
}

.burger-menu .nav__link {
  letter-spacing: 0.32px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 20px;
}

.nav__link--dropdown {
  position: relative;
}

.nav__link--dropdown p {
  align-items: center;
  gap: 5px;
  display: flex;
}

.nav__link--dropdown svg {
  fill: currentColor;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.nav__link--dropdown:hover svg {
  transform: rotate(180deg);
}

.nav__link--dropdown .nav__sublist {
  z-index: 1;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  cursor: pointer;
  background: #4878a187;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  min-width: 240px;
  padding: 10px;
  display: flex;
  position: absolute;
}

body.dark .header .nav__link--dropdown .nav__sublist {
  background-color: #f3f6f9;
}

.nav__link--dropdown:hover .nav__sublist {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.nav__link--dropdown .nav__subink {
  text-align: start;
  padding: 8px 0;
  font-size: 14px;
  line-height: 10px;
  display: block;
}

.nav__link--dropdown .nav__subink.active {
  font-weight: 700;
}

.header__nav .nav__link--dropdown {
  height: 100%;
}

.header__nav .nav__link--dropdown .nav__sublist {
  top: 100%;
}

.burger-menu .nav__link--dropdown .nav__sublist {
  align-items: flex-end;
  right: 0;
}

.burger-menu .nav__item--dropdown {
  flex-direction: column;
}

.burger-menu .nav__link--dropdown {
  align-items: center;
  gap: 4px;
  margin-left: auto;
  display: flex;
}

.burger-menu .nav__link--dropdown svg {
  transform: none;
}

.burger-menu [data-accordion-box].active svg {
  transform: rotate(180deg);
}

.burger-menu .nav__sublist {
  text-align: end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 8px;
  margin-bottom: 2px;
  display: flex;
}

.burger-menu .nav__subink {
  text-align: end;
  color: #fff;
  letter-spacing: 0.32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.footer__nav .nav__sublist {
  background: #4878a1;
}

@media (width <= 1439px) {
  .header__nav {
    display: none;
  }

  .footer__nav .nav__link--dropdown .nav__sublist {
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__nav .nav__link--dropdown:hover svg {
    transform: none;
  }

  .footer__nav .nav__link--dropdown:hover .nav__sublist {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .footer__nav [data-footer-dropdown-btn].active svg {
    transform: rotate(180deg);
  }

  .footer__nav [data-footer-dropdown-btn].active + .nav__sublist {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}

@media (width >= 1440px) {
  .footer__nav .nav__list {
    align-items: flex-start;
  }

  .footer__nav .nav__sublist,
  .header__nav .nav__sublist {
    padding-left: 20px;
  }
}

.burger-menu-btn {
  background-color: #0000;
  width: 24px;
  height: 24px;
  padding: 0;
  position: relative;
}

.header .burger-menu-btn {
  margin-left: auto;
}

.burgerMenuIsOpen .burger-menu-btn {
  z-index: 10;
}

@media (width >= 1440px) {
  .header .burger-menu-btn {
    display: none;
  }
}

.burger-menu {
  z-index: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
}

.burger-menu.isHidden,
.burger-menu.isHidden button,
.burger-menu.isHidden a {
  pointer-events: none;
  visibility: hidden;
}

@media (width >= 1440px) {
  .burger-menu {
    display: none;
  }
}

.burger-menu__backdrop {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.burger-menu__backdrop:before {
  content: "";
  z-index: -1;
  opacity: 0.7;
  background: #000;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.isHidden .burger-menu__backdrop:before {
  opacity: 0;
}

.burger-menu__container {
  margin-top: var(--scroll-padding-top);
  pointer-events: none;
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}

.burger-menu__body {
  width: 300px;
  max-width: fit-content;
  transition: var(--transition--l200);
  pointer-events: initial;
  background: linear-gradient(#93afc8 0%, #6d93b4 100%);
  border-radius: 10px;
  margin-left: auto;
  padding: 20px 24px 20px 20px;
  display: flex;
}

.isHidden .burger-menu__body {
  transform: translateY(-101%);
}

.header {
  z-index: 2;
  color: var(--color-white);
  width: 100%;
  height: var(--header-h);
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.header--dark {
  color: var(--color-primary-text-dark);
}

.header--dark .btn-burger {
  color: var(--color-secondary-dark-blue);
}

.header__container {
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  height: 100%;
  display: flex;
}

.header__content {
  height: var(--header-h);
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 100px;
  flex-grow: 1;
  align-items: center;
  padding-right: 20px;
  display: flex;
}

.header__actions {
  align-items: center;
  gap: 24px;
  display: flex;
}

.header__cta {
  width: fit-content;
  height: 40px;
  padding: 10px 24px;
}

@media (width <= 1439px) {
  .header__cta,
  .header__contact-link-phone {
    display: none;
  }
}

.footer {
  color: var(--color-white);
  background-color: var(--color-secondary-dark-blue);
  padding: 40px 0 20px;
}

.footer__top .footer__container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

.footer__bottom .footer__container {
  justify-content: space-between;
  gap: 16px;
  display: flex;
}

.footer__created-by {
  letter-spacing: -0.28px;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-weight: 500;
  line-height: 110%;
  display: flex;
}

.footer__created-by img {
  object-fit: cover;
  border-radius: 5px;
  width: 40px;
  height: 40px;
}

.footer__created-by p {
  flex-direction: column;
  display: flex;
}

.footer__created-by span {
  align-items: center;
  gap: 4px;
  display: flex;
}

.footer__cta {
  width: fit-content;
  height: 40px;
  padding: 10px 24px;
}

.footer__contact-link-box {
  justify-content: space-between;
  gap: 10px;
  display: flex;
}

.footer__contact-link-box div {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer__contact-link-box p {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.footer__contact-link-box .phone-link-box {
  flex-shrink: 0;
}

@media (width <= 1439px) {
  .footer__top {
    border-bottom: 1px solid #d3d3d380;
    margin-bottom: 40px;
    position: relative;
  }

  .footer__top:before {
    content: "";
    background-color: #ffffff80;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 138px;
    left: 0;
  }

  .footer__contact-link-box {
    order: 5;
    margin-top: 20px;
    padding: 40px 0;
  }
}

@media (width <= 344px) {
  .footer__top:before {
    bottom: 112px;
  }
}

@media (width >= 768px) {
  .footer__contact-link-box {
    gap: 40px;
    max-width: 372px;
  }
}

@media (width >= 1440px) {
  .footer__top .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
  }

  .footer__top .footer__box:first-child {
    margin-right: auto;
  }

  .footer__top .footer__contact-link-box {
    gap: 40px;
    max-width: 372px;
  }

  .footer__top .contact-link__text {
    letter-spacing: 0.28px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .footer__top .contact-link__icon {
    width: 20px;
    height: 20px;
  }

  .footer__bottom .footer__container {
    align-items: flex-end;
  }
}

.modal {
  z-index: 3;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
}

.modal.isHidden {
  pointer-events: none;
  visibility: hidden;
}

.modal__backdrop {
  z-index: -1;
  opacity: 0.9;
  background: #000;
  flex-direction: column;
  flex-grow: 1;
  transition: all 0.5s;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal.isHidden .modal__backdrop {
  opacity: 0;
}

.modal__content {
  pointer-events: none;
  flex-direction: column;
  flex-grow: 1;
  width: fit-content;
  transition: all 0.3s;
  display: flex;
  position: relative;
}

.modal--left .modal__content,
.modal--right .modal__content {
  max-width: 320px;
}

.modal--right .modal__content {
  margin-left: auto;
}

.modal--top .modal__content {
  max-height: 320px;
}

.modal--in .modal__content {
  flex-grow: 0;
  margin: auto;
}

.isHidden.modal--left .modal__content {
  transform: translateX(-101%);
}

.isHidden.modal--right .modal__content {
  transform: translateX(101%);
}

.isHidden.modal--top .modal__content {
  transform: translateY(-101%);
}

.isHidden.modal--in .modal__content {
  opacity: 0;
  transform: scale(0.7);
}

.modal__container {
  pointer-events: initial;
  padding-top: 40px;
  padding-bottom: 40px;
}

.modal__btn-close {
  z-index: 1;
  color: inherit;
  pointer-events: initial;
  position: absolute;
  top: 8px;
  right: 8px;
}

.modal__box-wrap {
  flex-direction: column;
  gap: 30px;
  transition: all 0.1s linear;
  display: flex;
}

.isHidden .modal__box-wrap {
  opacity: 0;
}

.modal__box {
  flex-direction: column;
  gap: 30px;
  width: 100%;
  display: flex;
}

.modal__title-wrap {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.modal__title {
  line-height: 90%;
}

.modal__msg-box {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.modal-get-pricing .modal__container {
  color: var(--color-white);
  background: var(--lg);
  border-radius: 20px;
}

.modal-get-pricing .modal__btn-close {
  color: var(--color-white);
}

.modal-get-pricing .btn__submit {
  color: #4878a1;
}

.modal-get-pricing .btn__submit:hover {
  color: #fff;
}

.modal-get-pricing .btn__submit:active {
  color: #4878a1;
}

.modal-get-pricing-plan .modal__container {
  color: var(--color-primary-text-dark);
  background: var(--color-white);
  border-radius: 20px;
}

.modal-get-pricing-plan .modal__btn-close {
  color: var(--color-primary-text-dark);
}

.modal-get-pricing-plan .modal__msg-box {
  flex-direction: row;
  gap: 12px;
}

.modal-get-pricing-plan .modal__msg {
  max-width: 160px;
}

.modal-get-pricing-plan .contact-link {
  flex-shrink: 0;
}

.modal-get-pricing-plan .contact-link__icon {
  background-color: #6d93b4;
  width: 30px;
  height: 30px;
}

.modal-get-pricing-plan .contact-link__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
}

.modal-get-pricing-plan .rating-service__title {
  color: var(--color-white);
}

.modal-get-pricing-plan .btn__submit {
  margin-top: 0;
}

@media (width <= 1439px) {
  .modal-get-pricing-plan .modal__msg-box {
    justify-content: space-between;
  }
}

@media (width <= 767px) {
  .modal__title,
  .modal__text {
    text-align: center;
  }
}

@media (width >= 768px) {
  .modal__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .modal__btn-close {
    top: 16px;
    right: 16px;
  }

  .modal__box-wrap {
    flex-direction: row;
  }

  .modal-get-pricing-plan .modal__msg-box {
    order: 3;
  }
}

@media (width >= 1440px) {
  .modal-get-pricing .modal__content {
    border-radius: 20px;
  }

  .modal__btn-close {
    top: 16px;
    right: 16px;
  }

  .modal__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .modal__box-wrap {
    flex-direction: row;
  }

  .modal__msg-box {
    flex-direction: row;
    gap: 20px;
  }

  .modal__msg {
    max-width: 190px;
    font-weight: 500;
    line-height: 100%;
  }

  .contact-link__icon {
    width: 40px;
    height: 40px;
  }

  .contact-link__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
  }

  .modal-get-pricing .modal__box--desc {
    gap: 0;
  }

  .modal-get-pricing .modal__msg-box {
    width: 495px;
    margin-top: auto;
    margin-bottom: 48px;
  }

  .modal-get-pricing .reviews-rating-box {
    width: fit-content;
    position: relative;
  }

  .modal-get-pricing .reviews-rating-box:before {
    content: "";
    background-color: #ffffff40;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
  }

  .modal-get-pricing .rating-services {
    flex-direction: row;
  }

  .modal-get-pricing-plan .modal__box-wrap {
    gap: 79px;
  }

  .modal-get-pricing-plan .modal__box--desc {
    justify-content: space-between;
    max-width: 478px;
  }

  .modal-get-pricing-plan .modal__title-wrap {
    gap: 30px;
  }

  .modal-get-pricing-plan .modal__text {
    max-width: 300px;
    font-size: 21px;
    font-weight: 500;
    line-height: 100%;
  }

  .modal-get-pricing-plan .modal__msg-box {
    order: 3;
  }

  .modal-get-pricing-plan .btn__submit {
    height: 67px;
    margin-top: 0;
  }
}

.accordion__content {
  grid-template-rows: 0fr;
  display: grid;
}

[data-accordion-box].active .accordion__content {
  grid-template-rows: 1fr;
}

.accordion__content-inner {
  overflow: hidden;
}

:root {
  --swiper-navigation-size: 50px;
  --swiper-pagination-color: var(--color-secondary-dark-blue);
  --swiper-pagination-bullet-inactive-color: var(--color-section-bg);
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.swiper-wrap {
  position: relative;
}

.swiper-btn-wrap {
  --swiper-btn-d: 50px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.swiper-btn {
  width: var(--swiper-btn-d);
  height: var(--swiper-btn-d);
  background: var(--color-secondary-dark-blue);
  border-radius: 9px;
}

.swiper-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.swiper-btn.swiper-btn-prev svg {
  transform: rotate(180deg);
}

.swiper-btn:hover {
  transform: scale(1.04);
}

.swiper-btn:disabled {
  opacity: 0.5;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.stars {
  --gap: 1px;
  align-items: center;
  gap: var(--gap);
  display: flex;
}

.stars svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.rating-services {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.rating-service {
  width: fit-content;
}

.rating-service__link {
  backdrop-filter: blur(5px);
  background: #4878a187;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  font-size: 10px;
  display: flex;
}

.rating-service__img-wrap {
  background-color: var(--color-white);
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.rating-service__img {
  aspect-ratio: 1;
  object-fit: contain;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.rating-service__title {
  width: 40px;
  font-weight: 500;
  line-height: 12px;
}

.rating-service__desc {
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  display: flex;
}

.rating-service__text {
  color: #ffffffb3;
}

@media (width <= 1439px) {
  .reviews-rating-box .stars svg {
    width: 10px;
    height: 10px;
  }
}

@media (width >= 450px) and (width <= 1439px) {
  .rating-services {
    flex-direction: row;
    align-items: center;
  }
}

@media (width >= 1440px) {
  .rating-services {
    flex-direction: column;
    gap: 6px;
  }

  .rating-service {
    gap: 16px;
  }

  .rating-service__img-wrap {
    width: 50px;
    height: 50px;
  }

  .rating-service__img {
    width: 32px;
    height: 32px;
  }

  .rating-service__title {
    width: 58px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .rating-service__desc {
    height: 44px;
  }

  .rating-service__text {
    font-size: 14px;
  }
}

.form {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  display: flex;
}

.input,
.textarea {
  background-color: #0000;
  border-radius: 4px;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 8px 10px 8px 20px;
  font-weight: 700;
  display: flex;
}

.input:focus-within,
.textarea:focus-within {
  outline: 1px solid var(--color-primary-text-dark);
}

.textarea {
  resize: none;
  align-items: flex-start;
  width: 100%;
  height: 120px;
}

.btn__submit {
  border-radius: 4px;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
}

.input--stroke-dark-blue {
  border: 1px solid var(--color-secondary-dark-blue);
}

.input--fill-white {
  color: var(--color-primary-text-dark);
  border: 1px solid var(--color-white);
  background-color: #f6f8fa;
}

.contact-form__btn-submit {
  color: var(--color-white);
  background-color: var(--color-accent-primary);
  margin-top: 24px;
}

.contact-form__btn-submit svg {
  fill: var(--color-white);
}

.frbox {
  background: var(--color-section-bg);
  border-radius: 10px;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 14px;
  display: flex;
}

.frbox input {
  color: #92a0a9;
  text-align: justify;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}

.frbox button {
  justify-content: center;
}

.frbox__title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.frbox__title span {
  color: #001e3166;
}

.frbox__title--2 span {
  color: #6d93b4;
}

.frbox__row {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.custom-select {
  cursor: pointer;
  position: relative;
}

.custom-select .custom-select__header {
  color: #001e31;
  background: #fff;
  align-self: stretch;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 20px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
}

.custom-select .custom-select__body {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
}

.custom-select.active .custom-select__body {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.custom-select .custom-select__item {
  cursor: pointer;
  padding: 10px 20px;
}

.range-wrap {
  --rh: 10px;
  --rth: 16px;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.range-wrap input {
  height: var(--rh);
}

.range-value {
  top: calc(20px + var(--rth) / 2);
  white-space: nowrap;
  background: #fff;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 500;
  transition: none;
  position: absolute;
  left: 0;
  transform: translateX(-50%);
}

input[type="range"] {
  height: var(--rh);
  -webkit-appearance: none;
  background: linear-gradient(#4878a1b3 0 0) no-repeat, #fff;
  background-size: var(--value, 0%) 100%;
  border-radius: 16px;
  width: 100%;
  transition: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: var(--rh);
  background: none;
  border-radius: 16px;
}

input[type="range"]::-moz-range-track {
  height: var(--rh);
  background: #fff;
  border-radius: 16px;
}

input[type="range"]::-moz-range-progress {
  height: var(--rh);
  background: #4878a1b3;
  border-radius: 16px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--rth);
  height: var(--rth);
  cursor: pointer;
  margin-top: calc((var(--rth) - var(--rh)) / 2 * -1);
  background: #4878a1;
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  width: var(--rth);
  height: var(--rth);
  cursor: pointer;
  background: #4878a1;
  border-radius: 50%;
}

@media (width >= 1440px) {
  .input,
  .textarea {
    border-radius: 8px;
    height: 75px;
  }

  .btn__submit {
    border-radius: 10px;
    height: 96px;
    margin-top: 20px;
    font-size: 19px;
  }

  .frbox {
    padding: 20px 20px 20px 30px;
  }

  .frbox input {
    height: 42px;
  }

  .frbox__row {
    flex-direction: row;
  }

  .range-wrap {
    --rh: 16px;
    --rth: 28px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }

  .range-wrap input {
    height: var(--rh);
  }
}

.hero {
  --p-top: 50px;
  min-height: var(--vh, 100vh);
  padding-top: calc(var(--scroll-padding-top) + var(--p-top));
  color: var(--color-white);
  background: var(--bg-hero-url, url("assets/images/bg-hero-home.webp"));
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  padding-bottom: 24px;
  display: flex;
}

.hero__container {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}

.hero__box-wrap {
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  display: flex;
}

.hero__cta-box {
  backdrop-filter: blur(5px);
  background: #4878a166;
  border-radius: 10px;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
  display: flex;
}

.hero__cta-box strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

.hero__cta-box p {
  font-size: 18px;
  line-height: 100%;
}

.hero__btn-cta {
  border-radius: 6px;
  width: fit-content;
  height: 40px;
  margin: 16px auto 0;
  padding: 10px 24px;
}

@media (width <= 1439px) {
  .hero__title {
    text-align: center;
    letter-spacing: -1.6px;
    flex-direction: column;
    gap: 10px;
    line-height: 86%;
    display: flex;
  }

  .hero__title .sp {
    letter-spacing: -0.32px;
    font-size: 16px;
    font-weight: 500;
    line-height: 90%;
  }
}

@media (width <= 767px) {
  .hero__cta-box {
    margin-bottom: 20px;
  }
}

@media (width >= 768px) {
  .hero__box--cta {
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    display: flex;
  }

  .hero__cta-box {
    max-width: 326px;
  }

  .rating-services {
    flex-direction: column;
  }
}

@media (width >= 1440px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero__title {
    letter-spacing: -3.84px;
    gap: 44px;
    line-height: 86%;
    display: flex;
  }

  .hero__title .mp {
    width: fit-content;
  }

  .hero__title .sp {
    letter-spacing: -0.6px;
    flex-shrink: 0;
    margin-top: 26px;
    font-size: 30px;
    font-weight: 500;
    line-height: 90%;
  }

  .hero__box--cta {
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    display: flex;
  }

  .hero__cta-box {
    gap: 24px;
    max-width: 326px;
  }

  .hero__btn-cta {
    display: none;
  }
}

.all-you-need__container {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.all-you-need__list {
  --gap: 20px;
}

.allyouneed-card {
  background: var(--color-section-bg);
  border-radius: 20px;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 20px;
  display: flex;
}

.allyouneed-card__img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 295px;
}

.allyouneed-card__img--2 {
  height: 243px;
}

.allyouneed-card__title {
  margin-bottom: 17px;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
}

.allyouneed-card__text {
  font-weight: 500;
  line-height: 150%;
}

.allyouneed-card__btn {
  height: 40px;
  margin-top: auto;
}

.allyouneed-card__btn span {
  width: 30px;
  height: 30px;
}

.allyouneed-card__btn svg {
  width: 14px;
  height: 14px;
}

@media (width >= 768px) {
  .all-you-need__list {
    --items: 2;
  }
}

@media (width >= 1440px) {
  .all-you-need {
    padding-bottom: 0;
  }

  .all-you-need__container {
    gap: 62px;
  }

  .all-you-need__title {
    max-width: 888px;
  }

  .all-you-need__list {
    --items: 3;
  }

  .allyouneed-card__img {
    height: 390px;
  }

  .allyouneed-card__img--2 {
    height: 322px;
  }

  .allyouneed-card__btn {
    height: 60px;
  }

  .allyouneed-card__btn span {
    width: 50px;
    height: 50px;
  }

  .allyouneed-card__btn svg {
    width: 20px;
    height: 20px;
  }
}

.ideal-for__container {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.ideal-for__list {
  counter-reset: item;
  gap: 20px;
  display: grid;
}

.ifori {
  background: var(--color-section-bg);
  border-top: 1px solid #14141400;
  border-bottom: 1px solid #14141400;
  border-radius: 20px;
  flex-direction: column;
  gap: 20px;
  min-height: 150px;
  padding: 20px;
  display: flex;
}

.ifori svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary-button);
  flex-shrink: 0;
}

.ifori:before {
  color: var(--Secondary-Dark-Blue, #6d93b4);
  font-size: 24px;
  font-weight: 700;
  line-height: 106%;
}

.ideal-for__list--numbers .ifori:before {
  counter-increment: item;
  content: "0" counter(item);
}

.ideal-for__list--numbers .ifori svg {
  display: none;
}

.ideal-for__list--numbers .ifori .ifori__img {
  order: -1;
}

.ifori--main {
  padding: 24px;
}

.ifori__title {
  margin-top: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 106%;
}

.ifori__img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 244px;
}

.ideal-for__actions {
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
  display: flex;
}

@media (width <= 1439px) {
  .ideal-for__actions button {
    max-width: 190px;
    height: 40px;
  }

  .ideal-for__actions button span {
    width: 30px;
    height: 30px;
  }

  .ideal-for__actions button svg {
    width: 15px;
    height: 15px;
  }
}

@media (width >= 768px) and (width <= 1439px) {
  .ideal-for__list {
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto;
  }

  .ifori {
    min-height: 169px;
  }

  .ifori:first-child {
    grid-area: 1 / 1 / 2 / 3;
  }

  .ifori:nth-child(2),
  .ifori:nth-child(3),
  .ifori:nth-child(4) {
    grid-column: 1 / 2;
  }

  .ifori:nth-child(5),
  .ifori:nth-child(6),
  .ifori:nth-child(7) {
    grid-column: 2 / 3;
  }

  .ifori:nth-child(5) {
    grid-row: 2 / 3;
  }

  .ifori:nth-child(6) {
    grid-row: 3 / 4;
  }

  .ifori__img {
    height: 320px;
  }

  .ideal-for__actions {
    flex-direction: row;
    gap: 12px;
  }

  .ideal-for__actions button {
    width: 237px;
  }
}

@media (width >= 1440px) {
  .ideal-for {
    padding: 120px 0;
  }

  .ideal-for__title {
    max-width: 888px;
  }

  .ideal-for__list {
    grid-template-rows: auto auto auto;
    grid-template-columns: 543px 375px 375px;
  }

  .ifori {
    min-height: 169px;
  }

  .ifori:first-child {
    grid-area: 1 / 1 / 4 / 2;
  }

  .ifori:nth-child(2),
  .ifori:nth-child(3),
  .ifori:nth-child(4) {
    grid-column: 2 / 3;
  }

  .ifori:nth-child(5),
  .ifori:nth-child(6),
  .ifori:nth-child(7) {
    grid-column: 3 / 4;
  }

  .ifori:nth-child(5) {
    grid-row: 1 / 2;
  }

  .ifori:nth-child(6) {
    grid-row: 2 / 3;
  }

  .ifori__title {
    font-size: 24px;
    line-height: 120%;
  }

  .ifori__img {
    height: 100%;
  }

  .ideal-for__actions {
    flex-direction: row;
    gap: 12px;
  }

  .ideal-for__actions button {
    width: 237px;
  }
}

.gallery__container {
  --gap: 40px;
  gap: var(--gap);
  flex-direction: column;
  display: flex;
}

.gallery-item__img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 230px;
}

.gallery-pagination {
  margin-top: 20px;
}

.gallery-swiper {
  overflow: visible;
}

@media (width <= 1439px) {
  .gallery__title-box h2,
  .gallery__title-box p {
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-swiper-btn-wrap {
    display: none;
  }
}

@media (width >= 768px) {
  .gallery-item__img {
    height: 496px;
  }
}

@media (width >= 1440px) {
  .gallery {
    padding: 0;
  }

  .gallery__container {
    --gap: 40px;
  }

  .gallery-item {
    width: fit-content;
  }

  .gallery-item__img {
    width: auto;
    max-width: 585px;
    height: auto;
    max-height: 496px;
  }

  .gallery-pagination {
    display: none;
  }

  .gallery-swiper-btn-wrap {
    top: calc((var(--gap) + var(--swiper-btn-d)) * -1);
    position: absolute;
    right: 0;
  }
}

.models__container,
.models__box-wrap {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.models-box {
  --p: 20px;
  padding: var(--p);
  background: var(--color-section-bg);
  border-radius: 20px;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  display: flex;
  position: relative;
}

.models-box svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.models-box--slide svg {
  fill: var(--color-white);
}

.models-box--features svg {
  fill: var(--color-primary-button);
}

.models-box__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}

.models-box__list {
  flex-direction: column;
  display: flex;
  position: relative;
}

.models-box-item__img {
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  border-radius: 20px;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -230px;
  right: 0;
}

.models-box-item:first-of-type .models-box-item__img {
  opacity: 1;
}

.models-box-item__text {
  color: #001e31cc;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
  line-height: 150%;
}

.models-box-item__text span {
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  display: flex;
}

.models-box-item__text span svg {
  width: 16px;
}

.models-box-item__text.init,
.models-box-item__text.active {
  color: #fffc;
}

.models-box-item__text.init span,
.models-box-item__text.active span {
  background: var(--color-secondary-light-blue);
  padding-left: 20px;
  padding-right: 20px;
}

.models-box-item__text.init + .models-box-item__img,
.models-box-item__text.active + .models-box-item__img {
  opacity: 1;
}

.models-box--features .models-box__list {
  gap: 10px;
}

.models-box--features .models-box-item {
  align-items: center;
  gap: 14px;
  display: flex;
}

.models-box--slide .models-box__list {
  margin-top: 210px;
}

.models-box--slide .models-box-item__text {
  padding: 5px 0;
}

.models-box--slide .models-box-item:last-child .models-box-item__text {
  padding-bottom: 0;
}

.models-box--slide .models-box-item:first-child .models-box-item__text {
  padding-top: 0;
}

@media (width <= 1439px) {
  .models-box--features {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (width >= 768px) and (width <= 1439px) {
  .models-box__title {
    text-align: start;
  }

  .models-box__list {
    position: static;
  }

  .models-box--slide .models-box__list {
    max-width: 256px;
    margin-top: 0;
  }

  .models-box-item__img {
    top: var(--p);
    right: var(--p);
    width: 390px;
    height: calc(100% - var(--p) * 2);
  }

  .models-box-item__text.init + .models-box-item__img,
  .models-box-item__text.active + .models-box-item__img {
    opacity: 1;
  }
}

@media (width >= 1440px) {
  .models__box-wrap {
    flex-direction: row;
    gap: 24px;
  }

  .models-box:last-of-type {
    max-width: 520px;
  }

  .models-box__title {
    text-align: start;
    font-size: 24px;
  }

  .models-box__list {
    position: static;
  }

  .models-box--slide .models-box__list {
    max-width: 256px;
    margin-top: 0;
  }

  .models-box-item__text {
    font-size: 24px;
  }

  .models-box-item__img {
    top: var(--p);
    right: var(--p);
    width: 476px;
    height: calc(100% - var(--p) * 2);
  }

  .models-box-item__text.init + .models-box-item__img,
  .models-box-item__text.active + .models-box-item__img {
    opacity: 1;
  }
}

.faq {
  padding-top: 0;
}

.faq__container {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.faq__list {
  background-color: var(--color-section-bg);
  border-radius: 20px;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
}

.faq__item {
  border-bottom: 1px solid #0003;
}

.faq__btn {
  text-align: start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  display: flex;
}

.faq__icon {
  pointer-events: none;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  position: relative;
}

.faq__icon:before,
.faq__icon:after {
  content: "";
  background-color: #757575;
  border-radius: 4px;
  flex-shrink: 0;
  width: 14px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

.faq__icon:before {
  transform: translate(-50%, -50%);
}

.faq__icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

[data-accordion-box].active .faq__icon {
  transform: rotate(45deg);
}

.faq__desc {
  color: #001e31b3;
  padding-top: 4px;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 150%;
}

@media (width >= 1440px) {
  .faq__container {
    gap: 60px;
  }

  .faq__list {
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq__btn {
    align-items: center;
    font-size: 24px;
  }

  .faq__desc {
    font-size: 24px;
  }
}

.contacts {
  color: var(--color-white);
}

.contacts__box-wrap {
  flex-direction: column;
  gap: 30px;
  padding: 40px 0 95px;
  display: flex;
}

.contacts__box {
  flex-direction: column;
  gap: 30px;
  width: 100%;
  display: flex;
}

.contacts__msg-box {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.contacts__msg-box .contact-link {
  letter-spacing: 0.36px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.contacts__msg-box .contact-link__icon {
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: 8px;
  width: 30px;
  height: 30px;
}

.contacts__msg-box .contact-link__icon svg {
  fill: #7095b5;
  width: 14px;
  height: 14px;
}

.contacts__msg {
  letter-spacing: 0.32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

@media (width <= 1439px) {
  .contacts {
    background: linear-gradient(#93afc8 0%, #6d93b4 100%);
    margin: 40px 0;
    padding: 0;
  }

  .contacts .reviews-rating-box {
    order: 3;
  }
}

@media (width >= 768px) and (width <= 1439px) {
  .contacts__box-wrap {
    flex-direction: row;
    padding: 80px 0;
  }

  .contacts__box--desc {
    justify-content: space-between;
  }

  .rating-services {
    align-items: flex-start;
  }
}

@media (width >= 1440px) {
  .contacts__box-wrap {
    background: linear-gradient(#93afc8 0%, #6d93b4 100%);
    border-radius: 20px;
    flex-direction: row;
    padding: 80px 50px;
  }

  .contacts__box--desc {
    justify-content: space-between;
  }

  .contacts__title {
    max-width: 450px;
  }

  .contacts__msg-box {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .contacts__msg {
    letter-spacing: 0.36px;
    max-width: 190px;
    font-size: 18px;
  }
}


@media(max-width: 768px) {
    .rating-services {
        flex-direction: row;
        justify-content: space-between;
    }
}