:root {
  --font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  color: #242424;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

strong {
  font-weight: 900;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#217bd3), to(#0040af));
  background: linear-gradient(180deg, #217bd3 0%, #0040af 100%);
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.btn-light {
  background: #fff;
  color: #0040af;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  background-color: #fff;
  padding: clamp(32px, 4.8vw, 44px) clamp(24px, 3.733vw, 32px);
  border-radius: 10px;
}
.form .form-tttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
}
.form .form-group label {
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form .form-group input {
  width: 100%;
  border: 1px solid #217bd3;
  padding: clamp(14px, 2.267vw, 20px) 20px;
  border-radius: 10px;
}

.section {
  padding: clamp(60px, 10.667vw, 100px) 0;
}

.title {
  color: #002f81;
  font-size: clamp(30px, 4.8vw, 40px);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: clamp(24px, 5.067vw, 44px);
  position: relative;
}
.title:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  content: "";
  width: clamp(100px, 16.667vw, 150px);
  bottom: -12px;
  height: 4px;
  left: 0;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#0040AF), to(#217BD3));
  background: linear-gradient(90deg, #0040AF 0%, #217BD3 100%);
}

.swp-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-top: clamp(20px, 4vw, 40px);
  gap: clamp(24px, 4.267vw, 40px);
}

.nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  background-color: #fff;
  border-radius: 50px;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border: none;
}
@media (max-width: 768px) {
  .nav-btn {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
  }
  .nav-btn img {
    width: 8px;
  }
}
.nav-btn:nth-child(3) img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.nav-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto !important;
  position: inherit;
}
.nav-pagination .swiper-pagination-bullet {
  opacity: 1 !important;
  background-color: #C0CFE2;
}
.nav-pagination .swiper-pagination-bullet-active {
  background-color: #002F81;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 5px 0px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 30;
}
.header .logo img {
  width: 100%;
  max-width: 90px;
}
.header .logo span {
  color: #101240;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 140%;
  font-size: 30px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .logo img {
    max-width: 60px;
  }
  .header .logo span {
    font-size: 12px;
    line-height: 120%;
  }
}
.header .hnav .hnav__htels {
  display: none;
}
.header .hnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
.header .hnav ul li a {
  color: #242424;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .hnav ul li a:hover {
  color: #0547B3;
}
@media (max-width: 1200px) {
  .header .hnav ul {
    gap: 24px;
  }
}
.header .hburger {
  display: none;
}
.header .htels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header .htels .ccitm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  gap: 12px;
  background-color: #115FC2;
  padding: 8px 15px 8px 8px;
  border-radius: 10px;
}
.header .htels .ccitm__ic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 47, 129, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 47, 129, 0.15);
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .header .hburger {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background-color: #115FC2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    padding: 0;
    position: relative;
    z-index: 30;
  }
  .header .hburger span {
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header > .container > .htels {
    display: none;
  }
  .header .hnav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
    padding: 110px 28px 40px 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 20;
  }
  .header .hnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .header .hnav ul li a {
    font-size: 24px;
  }
  .header .hnav .hnav__htels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 12px;
  }
}
.header.menu-open .hnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header.menu-open .hburger span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.header.menu-open .hburger span:nth-child(2) {
  opacity: 0;
}
.header.menu-open .hburger span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  background-color: #dde6f0;
  padding: 60px 0 100px 0;
}
.hero .container {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.hero .hero-box {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-image: url(../img/hero-vert.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 140px 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero .hero-box::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.4;
}
.hero .hero-box * {
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .hero .hero-box {
    padding: 100px 40px;
  }
}
.hero .hero-title {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
}
.hero .hero-list {
  margin-top: 44px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.hero .hero-list p {
  color: #fff;
  font-size: 20px;
  line-height: 120%;
}
.hero .hero-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.hero .hero-list li::before {
  position: relative;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-check2-circle' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8a5.5 5.5 0 0 1 8.25-4.764.5.5 0 0 0 .5-.866A6.5 6.5 0 1 0 14.5 8a.5.5 0 0 0-1 0 5.5 5.5 0 1 1-11 0'/%3E%3Cpath d='M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
}
.hero .wedone {
  color: #fff;
  margin-top: 44px;
  font-style: italic;
  font-size: 20px;
}
.hero .hero-form {
  width: 40%;
}
.hero .hero-form__title {
  font-size: 26px;
  font-weight: 600;
}
.hero .form {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .hero {
    padding: 40px 0px;
    padding-bottom: 80px;
  }
  .hero .container {
    gap: 30px;
  }
  .hero .hero-box {
    padding: 60px 24px;
  }
  .hero .hero-title {
    font-size: 42px;
  }
  .hero .hero-form {
    min-width: 340px;
  }
}
@media (max-width: 860px) {
  .hero {
    background-image: url(../img/hero-vert.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000000;
    opacity: 0.7;
  }
  .hero .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero .hero-box {
    background-image: none;
    width: 100%;
    padding: 0;
    border-radius: 0px;
  }
  .hero .hero-box::after {
    display: none;
  }
  .hero .hero-form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero .hero-list {
    margin-top: 44px;
    gap: 20px;
  }
  .hero .hero-list p {
    font-size: 18px;
  }
  .hero .hero-list li {
    gap: 10px;
  }
  .hero .hero-list li::before {
    min-width: 22px;
    max-width: 22px;
    height: 22px;
  }
}

.another-serv {
  background-color: #dde6f0;
}
.another-serv .title {
  text-align: center;
}
.another-serv .title:after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.another-serv__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.another-serv .another-serv-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 16px 16px 24px 16px;
  border-radius: 20px;
}
.another-serv .another-serv-item div {
  width: 100%;
}
.another-serv .another-serv-item__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 16px;
  margin-bottom: 12px;
}
.another-serv .another-serv-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
.another-serv .another-serv-item__title {
  color: #242424;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .another-serv__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .another-serv__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.bur-price .title {
  text-align: center;
}
.bur-price .title:after {
  left: 0px;
  right: 0;
  margin: 0 auto;
}
.bur-price__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.bur-price .bur-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bur-price .bur-price-item__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}
.bur-price .bur-price-item__image img {
  width: 100%;
  max-width: 200px;
}
.bur-price .bur-price-item__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 12px;
  text-align: center;
}
.bur-price .bur-price-item p {
  font-size: 16px;
  text-align: center;
  line-height: 130%;
  opacity: 0.7;
}
.bur-price .bur-price-item__price {
  color: #002f81;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 24px;
  margin-top: 24px;
}
@media (max-width: 992px) {
  .bur-price__list {
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 24px;
  }
  .bur-price .bur-price-item__image img {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  .bur-price__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 44px;
    padding-bottom: 40px;
  }
  .bur-price .bur-price-item__image {
    margin-bottom: 12px;
  }
  .bur-price .bur-price-item__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .bur-price .bur-price-item__price {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

.pricing {
  background-color: #dde6f0;
}
.pricing .title {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.pricing .title::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.pricing__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(30px, 4.8vw, 44px);
  margin-top: clamp(40px, 6.667vw, 60px);
}
.pricing__main {
  width: 50%;
  background-image: url(../img/bur-car.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.pricing__main::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #000;
  content: "";
  opacity: 0.6;
}
.pricing__mainwrap {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.pricing__title {
  color: #fff;
  font-size: clamp(18px, 2.667vw, 22px);
  font-weight: 600;
  line-height: 140%;
}
.pricing ul {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.pricing ul li {
  color: #fff;
  font-size: 16px;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.pricing ul li::before {
  position: relative;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  top: 2px;
}
.pricing__box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 2.667vw, 24px);
}
.pricing__box div {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 992px) {
  .pricing__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pricing__main {
    width: 100%;
  }
  .pricing__box {
    width: 100%;
  }
}

.advantage .title {
  text-align: center;
}
.advantage .title::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.advantage__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 44px;
  margin-top: 40px;
}
.advantage .advantage-item {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.advantage .advantage-item svg {
  color: #0F5CC0;
  min-width: clamp(38px, 5.333vw, 44px);
  max-width: clamp(38px, 5.333vw, 44px);
  height: clamp(38px, 5.333vw, 44px);
}
@media (max-width: 768px) {
  .advantage__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .advantage__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .advantage .advantage-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.burdet {
  background-color: #dde6f0;
}
.burdet .title {
  text-align: center;
}
.burdet .title::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.burdet__pretitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 140%;
}
.burdet__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(30px, 4.667vw, 40px);
}
.burdet .burdet-item {
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
}
.burdet .burdet-item__ic {
  background-color: #EEF2F7;
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
}
.burdet .burdet-item__ic svg {
  width: 28px;
  height: 28px;
  color: #0F5CC0;
}
.burdet .burdet-item__title {
  margin-bottom: 12px;
  font-weight: 600;
  color: #002F81;
  line-height: 130%;
  font-size: 17px;
}
.burdet .burdet-item p {
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 992px) {
  .burdet__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .burdet__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.burdet-obl {
  padding-top: 0;
  background-color: #dde6f0;
}
.burdet-obl .title {
  text-align: center;
}
.burdet-obl .title::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.burdet-obl__list {
  margin-top: clamp(60px, 9.333vw, 80px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(48px, 7.467vw, 62px) 32px;
  counter-reset: burdet-obl-counter;
}
.burdet-obl .burdet-obl-item {
  counter-increment: burdet-obl-counter;
  background: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 44px 24px 32px 24px;
  position: relative;
}
.burdet-obl .burdet-obl-item__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #105BBF;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.burdet-obl .burdet-obl-item__num::before {
  content: counter(burdet-obl-counter) "";
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.burdet-obl .burdet-obl-item__title {
  color: #002f81;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 576px) {
  .burdet-obl__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.service .title {
  text-align: center;
}
.service .title::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.service__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service .service-item {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  background-color: #fff;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service .service-item__name {
  text-align: center;
  color: #002f81;
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  margin-bottom: 16px;
}
.service .service-item__image {
  width: 100%;
  margin-bottom: 16px;
}
.service .service-item__image img {
  width: 100%;
  border-radius: 16px;
}
.service .service-item__title {
  text-align: center;
  font-size: 18px;
  color: #002f81;
  font-weight: 600;
  margin-bottom: 24px;
}
.service .service-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #eef5ff;
  padding: 24px 12px;
  border-radius: 12px;
  gap: 12px;
  font-size: 16px;
  line-height: 130%;
}
.service .service-item ul li {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.service .service-item ul li::before {
  position: relative;
  bottom: -2px;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23002F81' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.service .service-item__price {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin-top: 24px;
}
.service .service-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 12px;
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  .service__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .service__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.whyneed .title {
  text-align: center;
}
.whyneed .title::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.whyneed__box {
  margin-top: clamp(40px, 6.667vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(30px, 6vw, 60px);
}
.whyneed__main {
  width: 50%;
  max-width: 520px;
}
.whyneed__title {
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 120%;
  font-size: clamp(18px, 2.667vw, 22px);
}
.whyneed__list {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.whyneed .whyneed-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(12px, 2.4vw, 24px);
  font-size: 16px;
  line-height: 140%;
}
.whyneed .whyneed-item img {
  min-width: clamp(35px, 5.333vw, 45px);
  max-width: clamp(35px, 5.333vw, 45px);
}
.whyneed__image {
  width: 50%;
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.whyneed__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .whyneed__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .whyneed__main {
    width: 100%;
    max-width: 100%;
  }
  .whyneed__image {
    width: 100%;
    min-height: 300px;
  }
}

.steps {
  background-color: #dde6f0;
}
.steps .title {
  text-align: center;
}
.steps .title:after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.steps__box {
  margin-top: clamp(40px, 6.933vw, 60px);
}
.steps .steps-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  counter-reset: steps-counter;
}
.steps .steps-item {
  counter-increment: steps-counter;
  width: calc(33.33% - 16px);
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
}
.steps .steps-item:nth-child(4) {
  width: calc(50% - 12px);
}
.steps .steps-item:nth-child(5) {
  width: calc(50% - 12px);
}
.steps .steps-item__num {
  background-color: #dde6f0;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 12px;
  color: #105BBF;
  font-weight: 700;
  font-size: 16px;
}
.steps .steps-item__num::before {
  content: counter(steps-counter, decimal-leading-zero);
}
.steps .steps-item__title {
  color: #002f81;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 140%;
}
.steps .steps-item p {
  font-size: 16px;
  line-height: 140%;
}
.steps .olasht {
  margin-top: 60px;
}
.steps .olasht__title {
  color: #002f81;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
}
.steps .olasht__list {
  margin-top: clamp(22px, 4.667vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.steps .olasht .olasht-item {
  width: 33.33%;
}
.steps .olasht .olasht-item__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 300px;
}
.steps .olasht .olasht-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
.steps .olasht .olasht-item p {
  font-size: 16px;
  line-height: 140%;
  margin-top: 12px;
}
@media (max-width: 992px) {
  .steps .olasht .olasht-item__image {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .steps .steps-item {
    width: calc(50% - 12px);
  }
  .steps .steps-item:nth-child(5) {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .steps .steps-item {
    width: 100% !important;
  }
  .steps .olasht__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .steps .olasht .olasht-item {
    width: 100%;
  }
}

.cta-txt {
  background: -webkit-gradient(linear, left top, right top, from(#0040AF), to(#217BD3));
  background: linear-gradient(90deg, #0040AF 0%, #217BD3 100%);
  padding: 60px 0px;
}
.cta-txt .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.cta-txt__box {
  max-width: 900px;
}
.cta-txt p {
  color: #fff;
  line-height: 130%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.cta-txt .btn {
  font-size: 18px;
}

.cta-txt-2 p {
  font-size: clamp(24px, 3.467vw, 28px);
}
.cta-txt-2 .container {
  position: relative;
}
.cta-txt-2 .prcimg {
  position: absolute;
  left: calc(50% - 50px);
  top: -100px;
  width: 100%;
  max-width: 80px;
}

.works {
  background-color: #dde6f0;
}
.works .works-item {
  position: relative;
  overflow: hidden;
  border-radius: clamp(10px, 2.267vw, 20px);
  height: 500px;
}
.works .works-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
@media (max-width: 992px) {
  .works__box {
    margin-top: 40px;
  }
  .works .works-item {
    height: 400px;
  }
}

.faq .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(30px, 6vw, 60px);
}
.faq__main {
  width: 40%;
}
.faq__box {
  width: 60%;
}
.faq__list {
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 2.667vw, 24px);
}
.faq .faq-item {
  background-color: #eef2f7;
  border: 2px solid #eef2f7;
  border-radius: clamp(15px, 2.267vw, 20px);
}
.faq .faq-item__top {
  padding: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq .faq-item__top::after {
  content: "";
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23002f81' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
  display: block;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faq .faq-item__title {
  color: #002f81;
  font-weight: 600;
  font-size: clamp(18px, 2.667vw, 22px);
  line-height: 120%;
}
.faq .faq-item__content {
  font-size: 16px;
  line-height: 140%;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
  border: 4px solid #eef2f7;
  border-bottom: 8px solid #eef2f7;
  display: none;
}
.faq .faq-item.active .faq-item__top::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 992px) {
  .faq .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq__main {
    width: 100%;
    max-width: 100%;
  }
  .faq__box {
    width: 100%;
  }
}

.footer {
  background-color: #dde6f0;
  padding: clamp(60px, 9.333vw, 80px) 0px;
}
.footer .footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 4.267vw, 44px);
}
.footer .footer-main__sc1 {
  width: 50%;
}
.footer .footer-main__title {
  color: #002f81;
  font-size: clamp(34px, 4.667vw, 40px);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 44px;
  position: relative;
}
.footer .footer-main__title:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  content: "";
  width: clamp(100px, 16.667vw, 150px);
  bottom: -12px;
  height: 4px;
  left: 0;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#0040AF), to(#217BD3));
  background: linear-gradient(90deg, #0040AF 0%, #217BD3 100%);
}
.footer .footer-main p {
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
}
.footer .footer-main__sc2 {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .footer-main__sc2 .form {
  width: 100%;
  max-width: 500px;
}
.footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(40px, 6.667vw, 60px);
  gap: clamp(40px, 6.667vw, 60px) 20px;
}
.footer .footer-bottom-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.footer .fcontacts {
  width: 100%;
}
.footer .ff-title {
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 26px);
  margin-bottom: 20px;
}
.footer .ccitm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #242424;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  gap: 16px;
}
.footer .ccitm__ic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 47, 129, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 47, 129, 0.15);
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 8px;
}
.footer .ccitm-loc {
  font-size: 18px;
}
@media (max-width: 1100px) {
  .footer .ccitm {
    font-size: 22px;
  }
  .footer .ccitm-loc {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .footer .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-main__sc1 {
    width: 100%;
    max-width: 100%;
  }
  .footer .footer-main__sc2 {
    width: 100%;
    max-width: 100%;
  }
  .footer .footer-main__sc2 .form {
    max-width: 100%;
  }
  .footer .footer-bottom-col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .footer .ccitm {
    font-size: 20px;
  }
  .footer .ccitm-loc {
    font-size: 16px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.modal .modal-wrap {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  overflow: auto;
  padding-top: 40px;
  padding-bottom: 100px;
  padding-left: 16px;
  padding-right: 16px;
}
.modal .modal-box {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: 498px;
  position: relative;
}
.modal .modal-box .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal .modal-box .modal-close svg {
  width: 24px;
  height: 24px;
  color: #000;
}
.modal .modal-top {
  padding-bottom: 16px;
  padding-right: 18px;
}
.modal .modal-top__title {
  font-size: 26px;
  color: #000;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 20px;
}
.modal .modal-top__text {
  margin-top: 6px;
  font-size: 14px;
  color: #6C7280;
  line-height: 130%;
  margin-bottom: 0 !important;
}
.modal .form {
  padding: 0;
}

.thankyou {
  padding: clamp(60px, 12vw, 140px) 0;
}
.thankyou .title::after {
  display: none;
}
.thankyou__box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.thankyou__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4px;
}
.thankyou p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 140%;
  color: var(--black);
}
.thankyou__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}