/* Common */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    color: #666666;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.blocked {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #0C1D60;
    line-height: 1.18;
    margin: 0;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 70px;
}

h3 {
    font-size: 60px;
}

h4 {
    font-size: 40px;
}

h5 {
    font-size: 35px;
}

h6 {
    font-size: 30px;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0;
}

a {
    color: #0C1D60;
}

a:hover {
    text-decoration: none;
}

main.page {
    overflow-x: hidden;
}

.container {
    max-width: 1670px;
    margin: 0 auto;
    padding: 0 20px;
}

.content > * {
    margin: 15px 0;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-top: 35px;
}

.content h1,
.content h2,
.content h3,
.content h4 {
    margin-bottom: 20px;
}

.content ul,
.content ol {
    margin: 20px 0 20px 24px;
}

.content ol {
  counter-reset: counter;
}

.content ol li::before {
  counter-increment: counter;
  content: counter(counter) ".";
  color: inherit;
  margin-right: 10px;
}

.content ul li {
    position: relative;
    padding-left: 18px;
}

.content ul li + li,
.content ol li + li {
    margin-top: 8px;
}

.content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: #0C1D60;
    border-radius: 50%;
}

.content > :first-child {
    margin-top: 0;
}

.content > :last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .content h1,
    .content h2,
    .content h3,
    .content h4,
    .content h5,
    .content h6 {
        margin-top: 30px;
    }

    .content ul,
    .content ol {
            margin: 16px 0 16px 20px;
    }

    .content ul li {
        padding-left: 15px;
    }

    .content ul li + li,
    .content ol li + li {
        margin-top: 6px;
    }

    .content ul li::before {
        top: 10px;
        width: 5px;
        height: 5px;
    }
}

section .heading {
    margin-bottom: 20px;
}

/* Header */

header .top {
    background-color: #fff;
    padding: 10px 0 13px;
    position: relative;
}

/* Header Logo */

header .top .logo {
    display: block;
    line-height: 0;
    position: relative;
    bottom: -8px;
    left: -8px;
}

header .top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Header Menu */

header menu {
    margin: 0;
    padding: 0;
}

header menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}

header menu ul li {
    padding: 0;
    position: relative;
}

header menu ul li a {
    display: block;
    color: #0C1D60;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    transition: color 0.25s ease;
}

header menu ul li a:hover {
    color: #FF0019;
}

header menu ul li.parent > a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    width: 8px;
    height: 5px;
    background: url('../img/arrow_down.svg') no-repeat center center;
}

header menu .submenu {
    display: block;
    position: absolute;
    z-index: 1000;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

header menu .submenu ul {
    display: block;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 18px;
    margin-top: 10px;
}

header menu ul li:hover .submenu,
header menu .submenu:hover {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

header menu .submenu li {
    margin: 2px 0;
}

header menu .submenu li a {
    font-size: 20px;
    white-space: nowrap;
}

header .navbar,
header .navbar-toggle {
    display: none;
}

/* Header Banner */

.header-banner {
    background: url('../img/header_bg.jpg') no-repeat bottom left;
    background-size: cover;
    min-height: 662px;
    position: relative;
}

.header-banner .wrap {
    width: calc(50% + 30px);
    height: 100%;
    position: relative;
    padding: 140px 50px 128px 0;
}

.header-banner.slim .wrap {
    padding: 82px 50px 82px 0;
}

.header-banner .heading {
    color: #fff;
    font-size: 70px;
    margin: 0;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header-banner .content {
    margin-top: 22px;
    color: #F5F5F5;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header-banner .btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: bold;
    margin-top: 42px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.header-banner .btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #092FC1;
    text-shadow: none;
}

.header-banner .image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(50% - 30px);
    object-fit: cover;
    object-position: top center;
}

/* slim banner */

.header-banner.slim {
    background-position: top left;
    min-height: 0;
}

.header-banner.slim .wrap {
    padding: 82px 50px 82px 0;
}

.header-banner.default {
    background-position: top left;
    min-height: 0;
}

/* default banner */

.header-banner.default .wrap {
    padding: 52px 0 62px 0;
    width: 100%;
    min-height: 0;
}

.header-banner.default .content {
    margin-top: 12px;
}

@media screen and (max-width: 1200px) {
    .header-banner {
        min-height: 0;
    }

    .header-banner .wrap {
        padding: 100px 50px 98px 0;
    }

    .header-banner .heading {
        font-size: 60px;
    }

    .header-banner .btn {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .header-banner .content {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header-banner {
        background: none;
        min-height: 0;
    }

    .header-banner .container {
        background: url(../img/header_bg.jpg) no-repeat top left;
        background-size: cover;
    }

    .header-banner .image {
        position: relative;
        height: auto;
        width: 100%;
        display: block;
    }

    .header-banner .content {
        display: none;
    }

    .header-banner .btn {
        display: none;
    }

    .header-banner .wrap {
        width: 100%;
        height: auto;
        padding: 28px 0 28px 0;
        text-align: center;
    }

    .header-banner .heading {
        font-size: 36px;
    }

    /* slim banner */

    .header-banner.slim .image {
        display: none;
    }

    .header-banner.slim .wrap {
        padding: 39px 0px 38px 0;
    }

    /* default banner */

    .header-banner.default .image {
        display: none;
    }

    .header-banner.default .wrap {
        padding: 39px 0px 38px 0;
    }
}

/* Form */

.form .control {
    line-height: 0;
}

.form .control + .control {
    margin-top: 38px;
}

.form .control .name {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 14px;
    color: #0C1D60;
    line-height: 1.3;
}

.form input[type="text"],
.form input[type="email"],
.form textarea,
.form .file {
    display: block;
    height: 40px;
    width: 100%;
    border: 1px solid #D9D9D9;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    transition: border-color 0.25s ease;
}

.form textarea {
    min-height: 80px;
    padding: 16px;
    resize: vertical;
}

.form input[type="text"].error,
.form input[type="email"].error,
.form textarea.error {
    border-color: red;
    outline: none;
}

.form .file {
    cursor: pointer;
    position: relative;
    height: auto;
    min-height: 40px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 50px;
}

.form .file input {
    pointer-events: none;
    opacity: 0;
    position: absolute;
}

.form .file .uploads {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    overflow: hidden;
}

.form .file .item {
    background-color: #eeeeee;
    padding: 5px 10px 4px;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 4px;
    position: relative;
    flex: 0 0 auto;
}

.form .file .remove {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: none;
}

.form .file.active .remove {
    display: block;
}

.form .file .remove svg path {
    fill: red
}

.form .file .remove:hover {
    opacity: .6;
}

.form .checkboxes {
    display: flex;
    gap: 0 205px;
}

.form .checkbox {
    display: flex;
    position: relative;
    align-items: center;
    cursor: pointer;
}

.form .checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    pointer-events: none;
}

.form .checkbox .input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-right: 11px;
    border: 1px solid #bebebe;
    position: relative;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.form .checkbox input:checked + .input::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background-color: #092FC1;
}

.form .checkbox .label {
    color: #1E1E1E;
    font-size: 16px;
    transition: color 0.25s ease;
}

.form .checkbox input.error ~ .input {
    border-color: red;
}

.form .checkbox input.error ~ .label {
    color: red;
}

.form select {
    appearance: none;
    color: #1E1E1E;
    font-size: 16px;
    padding: 0 36px 0 12px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    appearance: none;
    width: 340px;
    max-width: 100%;
    height: 40px;
    background: #fff url('../img/select_arrow.png') no-repeat right 12px center;
    transition: border-color 0.25s ease;
}

.form select.error {
    border-color: red;
}

.form .range {
    position: relative;
}

.form .range .input {
    padding: 7px 0;
    overflow: hidden;
    outline: 1px solid transparent;
    margin-bottom: -4px;
    margin-right: 60px;
}

.form .range .input.error {
    transition: outline 0.25s ease;
    outline-color: red;
} 

.form .range .value {
    position: absolute;
    font-size: 18px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f1f1f1;
    overflow: hidden;
    display: flex;
    gap: 4px;
    line-height: 1.4;
    border-radius: 4px;
    color: #1E1E1E;
    width: 50px;
    height: 44px;
    align-items: center;
    justify-content: center;
    display: flex;
    /* display: none; */
}

/* .form .range .value.active {
    display: flex;
} */

.form input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #E6E6E6;
  border-radius: 4px;
  outline: none; 
  display: block;
  margin: 0;
  padding: 0;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.form input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px; /* Height of the track */
  background: #E6E6E6; /* Color of the track */
  border-radius: 4px; /* Rounded corners */
  cursor: pointer;
}

/* Firefox */
.form input[type="range"]::-moz-range-track {
  width: 100%;
  height: 6px;
  background: #E6E6E6;
  border-radius: 4px;
  cursor: pointer;
}

/* Internet Explorer */
.form input[type="range"]::-ms-track {
  width: 100%;
  height: 6px;
  background: transparent; /* Must be transparent for IE to show fill */
  border-color: transparent;
  border-width: 16px 0; /* Adjust for thumb size */
  color: transparent;
  cursor: pointer;
}

/* WebKit browsers */
.form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 16px; /* Size of the thumb */
  width: 16px;
  background: #2C2C2C; /* Color of the thumb */
  border-image:
    linear-gradient(90deg, #2C2C2C 50%, #E6E6E6 0)
    0 1 /
    calc(50% - 3px)
    100vw/0 100vw;
  border-radius: 50%; /* Make it circular */
  cursor: pointer;
  margin-top: -5px; /* Adjust to center vertically on the track */
}

/* Firefox */
.form input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: #2C2C2C;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Internet Explorer */
.form input[type="range"]::-ms-thumb {
  height: 16px;
  width: 16px;
  background: #2C2C2C;
  border-radius: 50%;
  cursor: pointer;
}

/* Firefox */
.form .range-input::-moz-range-progress {
  height: 6px;
  border-radius: 5px;
  background-color: #2C2C2C;
}

.form .button {
    padding: 17px 45px 17px;
    background-color: #092FC1;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background-color 0.25s ease;
    margin-top: 36px;
    text-decoration: none;
    position: relative;
}

.form .button.center {
    left: 50%;
    transform: translateX(-50%);
}

.form .button:hover {
    background-color: #0D1F68;
}

.form .button-arrow {
    display: block;
    margin: 45px auto 0;
    cursor: pointer;
    border: none;
    width: 100px;
    height: 100px;
    background: url('../img/btn_arrow.svg') no-repeat center center;
    background-size: contain;
    overflow: hidden;
    text-indent: 999px;
}

@media screen and (max-width: 768px) {
    .form .control .name {
        font-size: 20px;
        line-height: 1.4;
    }

    .form select {
        width: 100%;
    }

    .form .checkboxes {
        gap: 52px;
    }

    .form .button-arrow {
        margin-top: 25px;
    }

    .form .button {
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        padding: 16px 40px 16px;
    }

    .form .range .value {
        font-size: 16px;
        width: 46px;
        height: 40px;
    }
}

/* Section Services */

.services {
    padding: 110px 0;
}

body.inner .services {
    background-color: #F1F2F7;
}

.services .row {
    display: flex;
    align-items: center;
}

.services .row .col {
    flex: 1 1 0;
}

.services .row .col + .col {
    width: 790px;
    flex: 0 0 auto;
}

.services .wrap .caption {
    font-size: 24px;
    font-weight: 700;
    color: #092FC1;
}

.services .wrap .heading {
    font-size: 56px;
}

.services .wrap .caption + .heading {
    margin-top: 14px;
}

.services .list {
    display: flex;
    align-items: center;
}

.services .list .image {
    flex: 0;
}

.services .list li {
    display: flex;
    align-items: center;
}

.services .list li + li {
    margin-top: 42px;
}

.services .list li:nth-child(1),
.services .list li:nth-child(5) {
    margin-left: -180px;
}

.services .list li:nth-child(2),
.services .list li:nth-child(4) {
    margin-left: -30px;
}

.services .list li:nth-child(2),
.services .list li:nth-child(5) {
    margin-top: 32px;
}

.services .list li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-right: 20px;
    width: 80px;
    height: 80px;
    background: #092FC1;
    border-radius: 50%;
}

.services .list li .text {
    font-weight: bold;
    font-size: 24px;
    color: #0C1D60;
    line-height: 1.18;
    margin-top: -2px;
}

@media screen and (max-width: 1300px) {
    .services .list .image {
        max-width: 334px;
    }

    .services .row .col + .col {
        width: 640px;
    }

    .services .wrap .heading {
        font-size: 44px;
    }
    .services .list li .text {
        font-size: 20px;
        line-height: 1.3;
    }
}

@media screen and (max-width: 1200px) {
    .services {
        padding: 80px 0;
    }
}

@media screen and (max-width: 1100px) {
    .services .row {
        gap: 60px;
    }

    .services .row .col + .col {
        width: 380px;
    }

    .services .list .image {
        display: none;
    }

    .services .list li + li {
        margin-top: 31px;
    }

    .services .list li:nth-child(1),
    .services .list li:nth-child(5) {
        margin-left: 0;
    }

    .services .list li:nth-child(2),
    .services .list li:nth-child(4) {
        margin-left: 0;
    }

    .services .list li:nth-child(2),
    .services .list li:nth-child(5) {
        margin-top: 31px;
    }
}

@media screen and (max-width: 992px) {
    .services .row .col + .col {
        width: 340px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 25px 0;
    }

    .services:last-child {
        padding-bottom: 36px;
    }

    .services .wrap .caption {
        font-size: 20px;
        text-align: center;
    }

    .services .wrap .heading {
        font-size: 36px;
        text-align: center;
    }

    .services .wrap .caption + .heading {
        margin-top: 10px;
    }

    .services .row {
        display: block;
        gap: 0;
    }

    .services .row .col {
        width: 100%;
    }

    .services .row .col + .col {
        width: 100%;
    }

    .services .list {
        max-width: 330px;
        margin: 46px auto 0;
    }

    .services .list li .icon {
        width: 70px;
        height: 70px;
    }

    .services .list li .icon img {
        max-width: 28px;
    }

    .services .list li:nth-child(even) .icon {
        order: 2;
        margin-left: 20px;
        margin-right: 0;
    }

    .services .list li:nth-child(even) .text {
        order: 1;
    }

    body.inner .services {
        background: none;
    }
}

@media screen and (max-width: 380px) {
    .services .list {
        max-width: 100%;
    }
}

/* Section About */

.about {
    background-color: #FAFAFA;
}

.about .row {
    padding: 100px 0 90px;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 175px;
}

.about .container .wrap {
    flex: 1 1 auto;
}

.about .image {
    flex: 0 0 auto;
    max-width: 450px;
    line-height: 0;
}

.about .row + .row {
    padding: 34px 0 38px;
}

@media screen and (max-width: 1300px) {
    .about .container {
        gap: 90px;
    }
}

@media screen and (max-width: 1200px) {
    .about .row {
        padding: 80px 0 80px;
    }
}

@media screen and (max-width: 1200px) {
    .about .row {
        padding: 80px 0 80px;
    }

    .about .image {
        max-width: 320px;
    }
}

@media screen and (max-width: 992px) {
    .about .container {
        gap: 50px;
    }
    
    .about .image {
        max-width: 290px;
    }
}

@media screen and (max-width: 768px) {
    .about {
        background: none;
        padding: 3px 0;
    }

    .about .container {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .about .row {
        padding: 22px 0;
    }

    .about .row:first-child .image {
        display: none;
    }

    .about .row + .row {
        padding: 22px 0;
    }

    .about .row + .row .image {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .about .row + .row .wrap {
        width: 100%;
    }
}

/* Section Connection */

.process {
    padding: 110px 0;
}

.process .steps {
    display: flex;
    flex-wrap: wrap;
    padding: 0 120px;
    margin-bottom: -30px;
    margin-top: 50px;
}

.process .steps .item {
    width: 25%;
    text-align: center;
    position: relative;
    margin: 24px 0;
    line-height: 1.3;
    min-height: 251px;
}

.process .steps .item .wrap {
    transition: opacity 0.25s ease;
}

.process .steps .item .popup {
    background-color: #fff;
    font-size: 18px;
    color: #0C1D60;
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.process .steps .item .popup p {
    margin: 0;
    max-width: 200px;
    max-height: 100%;
    overflow-y: auto;
    background: #fff;
}

.process .steps .item:hover .popup {
    opacity: 1;
    pointer-events: all;
}

.process .steps .item:hover .wrap {
    opacity: 0;
}

.process .steps .item .name {
    margin: 22px auto 0;
    color: #0C1D60;
    font-weight: 800;
    max-width: 200px;
}

.process .steps .item .caption {
    display: block;
    color: #0C1D60;
    max-width: 200px;
    margin: 0 auto;
}

.process .steps .item:after {
    content: '';
    display: block;
    position: absolute;
    top: 100px;
    right: 0;
    transform: translateX(50%);
    width: 129px;
    height: 38px;
    background: url('../img/process_arrow.svg') no-repeat top right;
}

.process .steps .item:nth-child(4):after {
    display: none;
}

.process .steps .item:nth-child(5):after {
    display: none;
}

.process .steps .item:nth-child(6):after,
.process .steps .item:nth-child(7):after,
.process .steps .item:nth-child(8):after {
    transform: translateX(50%) rotate(180deg);
}

.process .steps .item:nth-child(4):before,
.process .steps .item:nth-child(8):before {
    content: '';
    display: block;
    position: absolute;
    top: 116px;
    transform: translateX(50%);
    width: 149px;
    height: 318px;
    background: url('../img/process_bottom_left_arrow.svg') no-repeat center center;
}

.process .steps .item:nth-child(4):before {
    right: -10px;
}

.process .steps .item:nth-child(8):before {
    left: -10px;
    transform: scaleX(-1) translateX(50%);
}

.process .steps .item:last-child:after {
    display: none;
}

.process .steps .item .icon {
    width: 114px;
    height: 114px;
    background-color: #092FC1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.process .steps .item .icon img {
    mix-blend-mode: screen;
}

.process .steps .item:nth-child(1) {
    order: 1;
}

.process .steps .item:nth-child(2) {
    order: 2;
}

.process .steps .item:nth-child(3) {
    order: 3;
}

.process .steps .item:nth-child(4) {
    order: 4;
}

.process .steps .item:nth-child(5) {
    order: 8;
}

.process .steps .item:nth-child(6) {
    order: 7;
}

.process .steps .item:nth-child(7) {
    order: 6;
}

.process .steps .item:nth-child(8) {
    order: 5;
}

.process .steps .item:nth-child(9) {
    order: 9;
}

.process .steps .item:nth-child(10) {
    order: 10;
}

.process .steps .item:nth-child(11) {
    order: 11;
}

@media screen and (max-width: 1400px) {
    .process .steps .item:after,
    .process .steps .item:nth-child(5):after {
        width: 50px;
    }

    .process .steps .item:nth-child(4):before {
        right: -44px;
    }

    .process .steps .item:nth-child(8):before {
        left: -44px;
    }
}

@media screen and ((max-width: 1200px) and (min-width: 769px)) {
    .process {
        padding: 80px 0;
    }

    .process .steps .item {
        width: 33.3%;
        font-size: 20px;
        min-height: 0;
        margin: 38px 0;
        padding: 0 10px;
    }

    .process .steps .item .name {
        max-width: 100%;
    }
    
    .process .steps .item:after,
    .process .steps .item:nth-child(4):after,
    .process .steps .item:nth-child(5):after {
        display: block;
        top: 47px;
        width: 35px;
        transform: translateX(50%);
        height: 24px;
        background: url(../img/process_arrow_mini.svg) no-repeat center center;
    }

    .process .steps .item:nth-child(6):after, 
    .process .steps .item:nth-child(7):after, 
    .process .steps .item:nth-child(8):after {
        transform: translateX(50%);
    }

    .process .steps .item:nth-child(4):before,
    .process .steps .item:nth-child(8):before {
        display: none;
    }

    .process .steps .item:nth-child(1) {
        order: 1;
    }

    .process .steps .item:nth-child(2) {
        order: 2;
    }

    .process .steps .item:nth-child(3) {
        order: 3;
    }

    .process .steps .item:nth-child(4) {
        order: 6;
    }

    .process .steps .item:nth-child(5) {
        order: 5;
    }

    .process .steps .item:nth-child(6) {
        order: 4;
    }

    .process .steps .item:nth-child(7) {
        order: 7;
    }

    .process .steps .item:nth-child(8) {
        order: 8;
    }

    .process .steps .item:nth-child(9) {
        order: 9;
    }

    .process .steps .item:nth-child(10) {
        order: 11;
        
    }

    .process .steps .item:nth-child(11) {
        order: 10;
        margin-left: auto;
    }

    .process .steps .item:nth-child(3):after,
    .process .steps .item:nth-child(6):after,
    .process .steps .item:nth-child(9):after,
    .process .steps .item:nth-child(12):after,
    .process .steps .item:nth-child(15):after {
        content: '';
        display: block;
        position: absolute;
        transform: rotate(90deg);
        left: 50%;
        top: auto;
        bottom: -44px;
        margin-left: -17px;
    }

    .process .steps .item:nth-child(4):after,
    .process .steps .item:nth-child(5):after,
    .process .steps .item:nth-child(10):after {
        transform: rotate(180deg);
        right: auto;
        left: 0;
        margin-left: -17px;
    }

    .process .steps .item .popup {
        width: auto;
        left: 20px;
        right: 20px;;
    }

    .process .steps .item .popup p {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .process .steps {
        padding: 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .process {
        padding: 25px 0;
    }

    .process .steps {
        padding: 0;
        margin: 15px -10px -10px;
    }

    .process .steps .item {
        width: 50%;
        font-size: 20px;
        min-height: 0;
        margin: 38px 0;
        padding: 0 10px;
    }

    .process .steps .item .name {
        max-width: 100%;
    }
    
    .process .steps .item:after,
    .process .steps .item:nth-child(5):after {
        display: block;
        top: 47px;
        width: 35px;
        height: 24px;
        background: url(../img/process_arrow_mini.svg) no-repeat center center;
    }

    .process .steps .item:nth-child(4):before,
    .process .steps .item:nth-child(8):before {
        display: none;
    }

    .process .steps .item:nth-child(1) {
        order: 1;
    }

    .process .steps .item:nth-child(2) {
        order: 2;
    }

    .process .steps .item:nth-child(3) {
        order: 4;
    }

    .process .steps .item:nth-child(4) {
        order: 3;
    }

    .process .steps .item:nth-child(5) {
        order: 5;
    }

    .process .steps .item:nth-child(6) {
        order: 6;
    }

    .process .steps .item:nth-child(7) {
        order: 8;
    }

    .process .steps .item:nth-child(8) {
        order: 7;
    }

    .process .steps .item:nth-child(9) {
        order: 9;
    }

    .process .steps .item:nth-child(10) {
        order: 10;
    }

    .process .steps .item:nth-child(11) {
        order: 11;
        margin-left: auto;
    }

    .process .steps .item:nth-child(2):after,
    .process .steps .item:nth-child(4):after,
    .process .steps .item:nth-child(6):after,
    .process .steps .item:nth-child(8):after,
    .process .steps .item:nth-child(10):after {
        content: '';
        display: block;
        position: absolute;
        transform: rotate(90deg);
        left: 50%;
        top: auto;
        bottom: -44px;
        margin-left: -17px;
    }

    .process .steps .item:nth-child(3):after,
    .process .steps .item:nth-child(7):after {
        transform: rotate(180deg);
        right: auto;
        left: 0;
        margin-left: -17px;
    }

    .process .steps .item .popup {
        width: auto;
        left: 20px;
        right: 20px;;
    }

    .process .steps .item .popup p {
        max-width: 100%;
    }
}

@media screen and (max-width: 430px) {
    .process .steps .item .icon {
        width: 90px;
        height: 90px;
    }
    .process .steps .item .icon img {
        max-width: 48px;
    }
    .process .steps .item:after,
    .process .steps .item:nth-child(5):after {
        top: 33px;
    }
}

/* Section Calculator */

.calculator {
    padding: 110px 0;
    background-color: #FAFAFA;
}

.calculator .container {
    display: flex;
    gap: 7%;
}

.calculator .wrap {
    width: auto;
}

.calculator .form {
    min-width: 41.5%;
    margin: 8px auto -42px;
}

.calculator .results {
    display: none;
    opacity: 1;
    transition: opacity .25s;
}

.calculator .results.loading {
    opacity: 0.5;
}

.calculator .results .wrap {
    background: #f3f3f3;
    padding: 20px 24px 24px;
    margin-top: 40px;
}

.calculator .results .top {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    color: #0C1D60;
    line-height: 1.4;
}

.calculator .results .text {
    font-size: 22px;
}

.calculator .results .price {
    font-size: 26px;
    font-weight: bold;
    flex: 0 0 auto;
    position: relative;
    bottom: -2px;
}

.calculator .results a {
    color: #0C1D60;
}

.calculator .results a:hover {
    text-decoration: none;
}

.calculator .results .note {
    font-size: 15px;
    margin-top: 15px;
}

body.inner .calculator .form {
    max-width: 1436px;
    padding: 0 18px;
}

body.inner .calculator .container {
    display: block;
}

body.inner .calculator .form {
    margin-top: 100px;
}


@media screen and (max-width: 1200px) {
    .calculator {
        padding: 80px 0;
    }

    .calculator .form .checkboxes {
        gap: 0 65px;
    }

    body.inner .calculator .form {
        margin-top: 80px;
    }
}

@media screen and (max-width: 992px) {
    .calculator .container {
        flex-wrap: wrap;
        gap: 0;
    }

    .calculator .form {
        margin-top: 50px;
        margin-bottom: 0;
        min-width: 100%;
        padding: 0 18px;
    }
}

@media screen and (max-width: 768px) {
    .calculator {
        padding: 25px 0;
        background: none;
    }

    .calculator .form {
        margin-top: 30px;
    }

    .calculator .form .control .name {
        text-align: center;
    }

    .calculator .results .text {
        font-size: 18px;
    }

    .calculator .results .price {
        font-size: 22px;
    }

    body.inner .calculator .form {
        margin-top: 40px;
    }
}

/* Section FAQ */

.faq {
    padding: 110px 0;
}

.faq .heading {
    margin-bottom: 60px;
}

.faq .list .item + .item {
    margin-top: 4px;
}

.faq .list .item .control {
    background: #092FC1;
    color: #fff;
    padding: 24px 64px 24px 32px;
    font-size: 23px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.25s ease;
}

.faq .list .item .control .arrow {
    position: absolute;
    top: calc(50% - 5px);
    right: 38px;
    width: 17px;
    height: 11px;
    transition: transform 0.25s ease;
}

.faq .list .item.active .control .arrow {
    transform: rotate(180deg);
}

.faq .list .item.active .control .arrow path {
    stroke: #092FC1;
}

.faq .list .item.active .control {
    color: #092FC1;
    background-color: #fff;
}

.faq .list .item .inner {
    display: none;
    padding: 0 32px 32px;
}

@media screen and (max-width: 1200px) {
    .faq {
        padding: 80px 0;
    }

    .faq .heading {
        margin-bottom: 40px;
    }

    .faq .list .item .control {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 25px 0;
    }

    .faq .heading {
        margin-bottom: 20px;
    }

    .faq .list .item .control {
        font-size: 16px;
        padding-left: 30px;
    }

    .faq .list .item .control .arrow {
        right: 30px;
    }
}

/* Section Contacts */

.contacts {
    padding: 110px 0;
}

.faq + .contacts {
    padding: 0 0 110px;
}

.contacts .container {
    display: flex;
    max-width: 1100px;
    gap: 32px;
}

.contacts .col {
    width: 45%;
}

.contacts .col + .col {
    width: 55%;
}

.contacts .heading {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
    align-items: center;
    font-size: 64px;
    margin-bottom: 40px;
}

.contacts .heading .icon {
    margin-left: -6px;
    margin-top: -6px;
}

.contacts .heading span {
    position: relative;
    top: -4px;
}

.contacts .info .section + .section {
    margin-top: 38px;
}

.contacts .info .section .name {
    font-weight: bold;
    color: #092FC1;
    font-size: 24px;
    margin-bottom: 20px;
}

.contacts .info .section .data a {
    color: #6B6B6B;
    text-decoration: none;
}

.contacts .info .section .data a:hover {
    text-decoration: underline;
}

.contacts .form .control .name {
    margin-bottom: 9px;
}

.contacts .form .control + .control {
    margin-top: 24px;
}

.contacts .form .button {
    margin-top: 24px;
}

@media screen and (max-width: 1200px) {
    .contacts {
        padding: 80px 0;
    }

    .faq + .contacts {
        padding: 0 0 80px;
    }

    .contacts .heading {
        font-size: 60px;
    }

    .contacts .heading {
        gap: 0 20px;
    }

    .contacts .heading .icon {
        max-width: 80px;
    }
}

@media screen and (max-width: 992px) {
    .contacts .col {
        width: 50%;
    }

    .contacts .col + .col {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .contacts {
        padding: 25px 0;
    }

    .contacts .container {
        flex-wrap: wrap;
    }

    .contacts .col,
    .contacts .col + .col {
        width: 100%;
    }

    .contacts .heading {
        font-size: 36px;
        display: block;
        margin-bottom: 10px;
    }

    .contacts .heading span {
        top: 0;
    }

    .contacts .heading .icon {
        display: none;
    }

    .contacts .info .section + .section {
        margin-top: 23px;
    }

    .contacts .info .section .name {
        text-align: center;
        font-size: 22px;
        margin-bottom: 7px;
    }

    .contacts .info .section {
        font-size: 20px;
    }

    .contacts .form .control + .control {
        margin-top: 22px;
    }

    .faq + .contacts {
        padding: 25px 0;
    }
}

/* Section Projects */

.projects {
    background: #FAFAFA;
    padding: 90px 0;
}

.projects:last-child {
    padding-bottom: 0;
}

.projects .heading {
    text-align: center;
    margin-bottom: 55px;
}

.projects .map {
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.projects .map iframe {
    margin-top: -60px;
    margin-bottom: -16px;
    width: 100%;
    height: 580px;
    border: 0;
}

@media screen and (max-width: 1200px) {
    .projects {
        padding: 80px 0;
    }

    .projects:last-child {
        padding-bottom: 0;
    }

    .projects .heading {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 992px) {
    .projects .map {
        margin-left: -20px;
        margin-right: -20px;
    }

    .projects .heading {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 768px) {
    .projects {
        padding: 28px 0;
    }

    .projects:last-child {
        padding-bottom: 0;
    }

    .projects .heading {
        margin-bottom: 18px;
    }

    .projects .map {
        min-height: 345px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .projects .map > img {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Section Contentbox */

.contentbox {
    padding: 110px 0;
}

.contentbox:first-child {
    padding-top: 80px;
}

@media screen and (max-width: 1200px) {
    .contentbox {
        padding: 80px 0;
    }
    .contentbox:first-child {
        padding-top: 80px;
    }
}

@media screen and (max-width: 992px) {
    
}

@media screen and (max-width: 768px) {
    .contentbox {
        padding: 25px 0;
    }
    .contentbox:first-child {
        padding-top: 30px;
    }
}

/* Popup */

.popup {
    display: none;
}

/* Footer */

footer {
    background: #000828 url(../img/footer_bg.png) no-repeat center center;
    padding: 74px 0 45px;
    color: #fff;
    font-weight: 400;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .row {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
    gap: 40px;
}

footer .row .col {
    padding: 20px 15px;
    flex: 1 1 0;
}

footer .row .col:nth-child(1) {
    max-width: 380px;
}

footer .row .col:nth-child(2) {
    max-width: 385px;
}

footer .row .col:nth-child(3) {
    max-width: 240px;
}

footer .logo {
    display: block;
    margin-bottom: 10px;
    position: relative;
    left: -6px;
} 

footer .image {
    margin-bottom: 10px;
} 

footer .links .title {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 10px;
}

footer .links ul li + li {
    margin-top: 6px;
}
footer .dev {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 1200px) {
    footer .row {
        gap: 0;
        flex-wrap: wrap;
    }

    footer .row .col:nth-child(1),
    footer .row .col:nth-child(2),
    footer .row .col:nth-child(3),
    footer .row .col:nth-child(4) {
        max-width: 50%;
        min-width: 50%;
    }
}

@media screen and (max-width: 768px) {
    footer {
        font-size: 20px;
        padding: 8px 0 12px;
    }

    footer .content {
        line-height: 1.4;
    }

    footer .row .col {
        position: relative;
    }

    footer .row .col:nth-child(1),
    footer .row .col:nth-child(2),
    footer .row .col:nth-child(3),
    footer .row .col:nth-child(4) {
        max-width: 100%;
        min-width: 100%;
    }

    footer .row .col:nth-child(3) {
        display: none;
    }

    footer .row .col:nth-child(2) {
        padding-top: 10px;
    }

    footer .logo {
        text-align: center;
    }

    footer .image {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }


}

/* Requisites */

.requisites .title {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 10px;
}

.requisites ul li + li {
    margin-top: 6px;
}

.requisites ul li {
    display: flex;
    align-items: baseline;
}

.requisites ul li a {
    color: inherit;
    text-decoration: none;
}

.requisites ul li a:hover {
    text-decoration: underline;
}

.requisites ul li svg {
    position: relative;
    margin-right: 7px;
    display: block;
    content: '';
    flex: 0 0 auto;
}

.requisites ul li svg.phone {
    top: 1px;
}

.requisites ul li svg.mail {
    top: 2px;
}

.requisites ul li svg.files {
    top: 1px;
}

.requisites ul li svg.marker {
    top: 2px;
}

/* Media */

@media screen and (max-width: 1300px) {
    header .top .logo {
        max-width: 250px;
        bottom: -5px;
    }
    header menu ul li a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 60px;
    }

    h3 {
        font-size: 50px;
    }

    h4 {
        font-size: 40px;
    }

    h5 {
        font-size: 35px;
    }

    h6 {
        font-size: 30px;
    }
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 50px;
    }

    h3 {
        font-size: 40px;
    }

    h4 {
        font-size: 35px;
    }

    h5 {
        font-size: 30px;
    }

    h6 {
        font-size: 25px;
    }

    header .top {
        height: 68px;
    }
    header .top .logo {
        max-width: 167px;
        bottom: -4px;
    }
    header menu {
        display: none;
    }

    /* Navbar toggle */

    header .navbar-toggle {
        display: block;
        position: absolute;
        color: #1D1B20;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        width: 38px;
        height: 38px;
        border: none;
        background: none;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }
    header .navbar-toggle .inner {
        position: absolute;
        display: block;
        height: 2px;
        top: 50%;
        left: 10px;
        right: 10px;
        margin-top: -1px;
        background-color: #1D1B20;
        transform: rotate(0);
        transition: all ease .32s;
    }
    header .navbar-toggle .inner:before, 
    header .navbar-toggle .inner:after {
        content: '';
        position: absolute;
        display: block;
        height: 2px;
        left: 0;
        right: 0;
        background-color: #1D1B20;
        transition: top .32s ease, opacity .32s ease;
        opacity: 1;
        top: -5px;
    }
    header .navbar-toggle .inner:after {
        top: auto;
        bottom: -5px;
        transform: rotate(0);
        transition: bottom .32s ease, transform .32s ease;
    }
    header .navbar-toggle.active .inner {
        transform: rotate(225deg);
    }
    header .navbar-toggle.active .inner:before {
        opacity: 0;
    }
    header .navbar-toggle.active .inner:after {
        transform: rotate(-90deg);
        bottom: 0;
    }

    /* Navbar */

    header .navbar {
        height: calc(100dvh - 68px);
        width: 100%;
        position: fixed;
        top: 68px;
        left: -100%;
        background-color: #fff;
        z-index: 99;
        transition: left .5s ease;
        padding: 40px 16px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: auto;
    }
    header .navbar.active {
        left: 0;
    }
    header .navbar menu {
        display: block;
    }
    header .navbar menu ul {
        display: block;
    }
    header .navbar menu ul li + li {
        margin-top: 12px;
    }
    header .navbar menu ul li a {
        font-size: 24px;
        display: inline;
    }
    header .navbar .requisites {
        color: #0C1D60;
        font-size: 22px;
    }
    header .navbar .requisites .title {
        font-size: 24px;
        margin-top:10px;
    }
    header .navbar .requisites ul li svg path {
        fill: #0C1D60;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 24px;
    }

    h6 {
        font-size: 20px;
    }

    .container {
        padding: 0 16px;
    }

    section .heading {
        margin-bottom: 13px;
    }

    .content {
        line-height: 1.8;
    }

    /* body.inner section:first-child .caption {
        display: none;
    }

    body.inner section:first-child .heading {
        display: none;
    }

    body.inner section:first-child .row + .row .heading {
        display: block;
    } */
}