/* 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: 46px;
    row-gap: 32px;
}
.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;
}

/* video */

.video-default {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.video-default img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-default:before {
    content: "";
    background: url("../img/video-btn.svg") no-repeat center center / 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

/* Заголовоки */

.h1, h1 {
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 110%;
}
.h2, h2 {
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Montserrat", sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 16px;
}
.h3, h3 {
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 16px;
}
.small-h {
    display: block;
    width: max-content;
    color: rgba(37, 37, 37, 0.50);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 16px;
}

/* container */

.container {
    width: calc(100% - 60px);
    max-width: 1680px;
    margin: 0 auto;
}

/* padding */

.p-80-t {
    padding-top: 80px;
}
.p-80-b {
    padding-bottom: 80px;
}

/* br */

.br-46 {
    border-radius: 46px;
}
.br-32 {
    border-radius: 32px;
}
.br-20 {
    border-radius: 20px;
}
.br-24 {
    border-radius: 24px;
}
.br-16 {
    border-radius: 16px;
}

/* content */

.content ul {
    margin-bottom: 40px;
}
.content ul li {
    position: relative;
    padding-left: 20px;
}
.content ul li:not(:last-child) {
    margin-bottom: 14px;
}
.content ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
    background: #0F88D2;
}
.content p a {
    color: #0F88D2;
}
.content ol {
    counter-reset: listCounter;
}
.content ol li::before {
    content: counter(listCounter)'';
    counter-increment: listCounter;
    color: #252525;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 0px;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #E7F3FB;
}
.content ol li {
    padding-left: 56px;
    position: relative;
    min-height: 40px;
    padding-top: 8px;
}
.content ol li:not(:last-child) {
    margin-bottom: 16px;
}

/* default-form + modal */

/* defaul-form */



/* breadcrumbs */

#breadcrumbs {
    padding: 32px 0 40px 0;
}
.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: #0F88D2;
    position: absolute;
    top: 7px;
    left: 0;
}

/* button */

.button {
    border-radius: 1000px;
    background: #003A5D;
    padding: 22px 40px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    transition: .4s;
    text-align: center;
}
.button:hover {
    background: #0f88d2;
}
.white-button {
    color: #252525;
    background: #FFF;
}
.white-button:hover {
    color: #FFF;
    background: #003A5D;
}
.button.light {
    color: #252525;
    background: #E7F3FB;
}
.button.light:hover {
    background: #003A5D;
    color: #fff;
}

/* absolute-img */

.ab-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1 !important;
}

/* default-form */

/* 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: #003A5D;
}


@media (max-width: 1024px) {
	.container {
	    width: calc(100% - 50px);
	}
    #breadcrumbs {
        padding: 14px 0 24px 0;
    }
    .breadcrumbs-list li:not(:first-child):before {
        top: 6px;
    }
    .p-80-t {
        padding-top: 70px;
    }
    .p-80-b {
        padding-bottom: 70px;
    }
    .h1, h1 {
        font-size: 38px;
    }
    .h2, h2 {
        font-size: 38px;
    }
    .h3, h3 {
        font-size: 32px;
    }
    .br-46 {
        border-radius: 36px;
    }
    .br-32 {
        border-radius: 24px;
    }
    .gap {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .gap {
        gap: 16px;
    }
	.container {
	    width: calc(100% - 32px);
	}
    .p-80-t {
        padding-top: 60px;
    }
    .p-80-b {
        padding-bottom: 60px;
    }
    .h1, h1 {
        font-size: 32px;
    }
    .h2, h2 {
        font-size: 28px;
    }
    .h3, h3 {
        font-size: 24px;
    }
    .button {
        width: 100%;
        padding: 18px 32px;
        font-size: 16px;
    }
    .br-46 {
        border-radius: 22px;
    }
    .br-32 {
        border-radius: 16px;
    }
    .br-20 {
        border-radius: 12px;
    }
    .br-16 {
        border-radius: 12px;
    }
    .br-24 {
        border-radius: 12px;
    }
    .small-h {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .breadcrumbs-list li:not(:first-child):before {
        top: 7px;
        width: 6px;
        height: 6px;
    }
    .video-default:before {
        width: 40px;
        height: 40px;
    }
    .content ul li:before {
        top: 6px;
    }
    .content ul {
        margin-bottom: 20px;
    }
    .content ol li {
        padding-left: 34px;
        padding-top: 0;
    }
    .content ol li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}