/* flex */
.flex {
    display: flex;
    flex-wrap: wrap;
}
.jc-start {
    justify-content: flex-start;
}
.jc-end {
    justify-content: flex-end;
}
.jc-between {
    justify-content: space-between;
}
.jc-center {
    justify-content: center;
}
.ai-start {
    align-items: flex-start;
}
.ai-end {
    align-items: flex-end;
}
.ai-center {
    align-items: center;
}
.gap {
    gap: 45px;
    row-gap: 40px;
}
.center {
    text-align: center;
}
.bold {
    font-weight: 600;
}
.upper {
    text-transform: uppercase;
}
.white-block * {
    color: #fff;
}
.obj {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Заголовоки */

.h1, h1 {
    color: #252525;
    font-size: 100px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.h2, h2 {
    font-family: "Manrope", sans-serif;
    margin-bottom: 40px;
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.h3, h3 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.h4, h4 {
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 20px;
}
.h5, h5 {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 20px;
}

/* container */

.container {
    width: calc(100% - 120px);
    max-width: 1800px;
    margin: 0 auto;
}

/* padding */

.p-100-t {
    padding-top: 100px;
}
.p-100-b {
    padding-bottom: 100px;
}
.p-60 {
    padding: 60px;
}

/* br */

.br-28 {
    border-radius: 28px;
}
.br-20 {
    border-radius: 20px;
}

/* border */

.border {
    border: 1px solid #252525;
}

/* content */

.content p {
    margin-bottom: 22px;
}
.content ul {
    margin-bottom: 40px;
}
.content ul li {
    position: relative;
    padding-left: 20px;
}
.content ul li:not(:last-child) {
    margin-bottom: 10px;
}
.content ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 0;
    background: #00BC00;
}
.content ol {
    counter-reset: listCounter;
}
.content ol li::before {
    content: counter(listCounter)'.';
    counter-increment: listCounter;
    color: #00BC00;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    top: 0px;
    left: 0;
}
.content ol li {
    padding-left: 26px;
    position: relative;
}
.content ol li:not(:last-child) {
    margin-bottom: 16px;
}
.content h3:not(:first-child) {
    margin-top: 60px;
}
.content-num-item {
    gap: 24px;
}
.content-num-item:not(:last-child) {
    margin-bottom: 16px;
}
.content-num-item p:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    background: #EEF3F7;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    margin: 0;
}
.content-num-item p {
    width: calc(100% - 58px - 24px);
}
.content-alert {
    background: #EEF3F7;
    padding: 60px;
}
.content h2 {
    margin-top: 32px;
}
.content p a,
.content li a {
    color: #00BC00;
}

/* default-form + modal */

.gslide-inline {
    background: transparent;
}
.thanks-modal {
    max-width: 100%;
    width: 845px;
    padding: 47px;
    border-radius: 28px;
    background: #FFF;
    position: relative;
}
.modal-close {
    background: url(../img/icons/close.svg) no-repeat center center / 100%;
    top: 60px;
    right: 60px;
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
}
[data-modal] .ginlined-content {
    max-width: 100%;
    width: 845px;
    padding: 47px;
    border-radius: 24px;
    background: #FFF;
    position: relative;
}
.gslide-description {
    display: none;
}
[data-modal] .modal-close {
    top: 24px;
    right: 24px;
}
.glightbox-clean .gslide-media {
    box-shadow: none;
}
.gprev,
.gnext {
    display: none;
}

/* defaul-form */

.default-form {
    gap: 16px;
}
.default-form .h3 {
    margin: 0;
}
.default-form p {
    margin-bottom: 12px;
}
.default-form-label {
    width: 100%;
    display: block;
}
.default-form-label__input {
    width: 100%;
    padding: 18px 40px;
    border-radius: 1000px;
    background: #EEF3F7;
    font-weight: 600;
    border: 1px solid transparent;
}
.default-form-label.error .default-form-label__input {
    border: 1px solid #f00;
}
.default-form-label__input::placeholder {
    color: rgba(37, 37, 37, 0.50);
}
textarea.default-form-label__input {
    resize: none;
    height: 192px;
    border-radius: 28px;
}


.default-form-accept {
    width: 100%;
}
.default-form-accept input {
    display: none;
}
.default-form-accept__span {
    display: block;
    padding-left: 40px;
    background: url("../img/check.svg") no-repeat top 1px left / 24px;
    cursor: pointer;
    min-height: 22px;
}
.default-form-accept.error .default-form-accept__span {
    color: #f00;
}
.default-form-accept__span a {
    color: #00BC00;
}
.default-form-accept input:checked + .default-form-accept__span {
    background: url("../img/check-accept.svg") no-repeat top 1px left / 24px;
}

.default-form .button {
    margin-left: auto;
}

@media (min-width: 769px) {
    .glightbox-clean .gslide-media {
        box-shadow: none;
        background: transparent;
    }
}

.gslide-inline {
    background: transparent;
}
.thanks-modal {
    max-width: 100%;
    width: 845px;
    padding: 40px;
    border-radius: 20px;
    background: #FFF;
    position: relative;
}
.modal-close {
    background: url(../img/close.svg) no-repeat center center / 100%;
    top: 50px;
    right: 45px;
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
}
[data-modal] .ginlined-content {
    max-width: 100%;
    width: 724px;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #252525;
    background: #FFF;
    position: relative;
}
.gslide-description {
    display: none;
}
[data-modal] .modal-close {
    top: 50px;
    right: 45px;
}
.ginlined-content .h2 {
    width: calc(100% - 45px);
}

/* breadcrumbs */

#breadcrumbs {
    margin-bottom: 42px;
}
.breadcrumbs-list li {
    display: inline;
}
.breadcrumbs-list li:not(:first-child) {
    padding-left: 18px;
    position: relative;
    margin-left: 8px;
}
.breadcrumbs-list li:not(:first-child):before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00BC00;
    position: absolute;
    top: 9px;
    left: 0;
}

/* pagination */

.pagination {
    margin-top: 46px;
    gap: 24px;
}
.pagination a,
.pagination span {
    width: 64px;
    height: 64px;
    border: 1px solid #252525;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.pagination span {
    border: 1px solid #00BC00;
    background: #00BC00;
    color: #fff;
}

/* button */

.button {
    width: max-content;
    border-radius: 1000px;
    background: #00BC00;
    padding: 18px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    border: none;
    transition: .4s;
}
.button:hover {
    background: #0bdf0b;
}
.button[disabled] {
    opacity: .5;
    pointer-events: none;
}

/* absolute-img */

.ab-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1 !important;
}

/* progress-bar */

.swiper-progress-line {
    width: 100%;
    height: 5px;
    border-radius: 1000px;
    background: #E7F3FB;;
    margin-top: 20px;
    transition-duration: 0ms;
    display: none;
}
.swiper-progress-line .swiper-scrollbar-drag {
    border-radius: 1000px;
    background: #00BC00;
}

@media (max-width: 1240px) {
    .container {
        width: calc(100% - 80px);
    }
    .p-100-b {
        padding-bottom: 80px;
    }
    .p-100-t {
        padding-top: 80px;
    }
    .h1, h1 {
        font-size: 78px;
        margin-bottom: 32px;
    }
    .h2, h2 {
        margin-bottom: 28px;
        font-size: 52px;
    }
    .h3, h3 {
        font-size: 34px;
        margin-bottom: 28px;
    }
    .h4, h4 {
        font-size: 26px;
    }
    .h5, h5 {
        font-size: 24px;
    }
    .gap {
        gap: 32px;
        row-gap: 28px;
    }
    .br-28 {
        border-radius: 24px;
    }
    .p-60 {
        padding: 40px;
    }
    .content p {
        margin-bottom: 18px;
    }
    .button {
        padding: 14px 60px;
        font-size: 18px;
    }
    #breadcrumbs {
        padding: 14px 0 24px 0;
    }
    .breadcrumbs-list li:not(:first-child):before {
        top: 6px;
    }
    .content h3:not(:first-child) {
        margin-top: 40px;
    }
    .content-alert {
        padding: 40px;
    }
    .content-num-item {
        gap: 10px;
        align-items: flex-start;
    }
    .content-num-item p:nth-child(1) {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .content-num-item p:nth-child(2) {
        width: calc(100% - 50px);
        min-height: 40px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 40px);
    }
    .p-100-b {
        padding-bottom: 60px;
    }
    .p-100-t {
        padding-top: 60px;
    }
    .h1, h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    .h2, h2 {
        margin-bottom: 20px;
        font-size: 34px;
    }
    .h3, h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .h4, h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .h5, h5 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .gap {
        gap: 24px;
        row-gap: 16px;
    }
    .br-28 {
        border-radius: 18px;
    }
    .p-60 {
        padding: 20px;
    }
    [data-modal] .ginlined-content {
        max-width: calc(100vw - 20px);
        padding: 40px 24px 24px 24px;
        border-radius: 20px;
    }
    [data-modal] .modal-close {
        width: 16px;
        height: 16px;
        top: 16px;
        right: 16px;
    }
    .content p {
        margin-bottom: 14px;
    }
    .content h2 {
        margin-top: 20px;
    }
    .button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    #breadcrumbs {
        margin-bottom: 20px;
        padding: 14px 0;
    }
    .breadcrumbs-list li:not(:first-child):before {
        top: 7px;
        width: 6px;
        height: 6px;
    }
    .pagination {
        margin-top: 20px;
        gap: 8px;
    }
    .pagination a,
    .pagination span {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .content ul li:before {
        top: 6px;
    }
    .content ul {
        margin-bottom: 20px;
    }
    .content h3:not(:first-child) {
        margin-top: 30px;
    }
    .content-alert {
        padding: 28px;
    }
    .content ol li {
        padding-left: 20px;
    }
    .content ol li::before {
        font-size: 15px;
    }
    .default-form-label__input {
        padding: 14px 24px;
    }
}