/* 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: 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;
}

@media (max-width: 768px) {
    .md-jc-start {
        justify-content: flex-start;
    }

    .md-jc-end {
        justify-content: flex-end;
    }

    .md-jc-between {
        justify-content: space-between;
    }

    .md-jc-center {
        justify-content: center;
    }

    .md-ai-start {
        align-items: flex-start;
    }

    .md-ai-end {
        align-items: flex-end;
    }

    .md-ai-center {
        align-items: center;
    }
}

@media (max-width: 575px) {
    .sm-jc-start {
        justify-content: flex-start;
    }

    .sm-jc-end {
        justify-content: flex-end;
    }

    .sm-jc-between {
        justify-content: space-between;
    }

    .sm-jc-center {
        justify-content: center;
    }

    .sm-ai-start {
        align-items: flex-start;
    }

    .sm-ai-end {
        align-items: flex-end;
    }

    .sm-ai-center {
        align-items: center;
    }
}

/* base */

.text-block p:not(:last-child) {
    margin-bottom: 24px;
}

.rc {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
}

.h1,
h1 {
    color: #252525;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 74px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.h2,
h2 {
    color: #252525;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.h2.sm {
    margin-bottom: 20px;
}

.h2 span {
    color: #0E0087;
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
}

.br-20 {
    border-radius: 20px;
}

.p-100-t {
    padding-top: 100px;
}

.p-100-b {
    padding-bottom: 100px;
}

.m-40 {
    margin-bottom: 40px;
}

.m-auto {
    margin: 0 auto;
}

.br-mobile {
    display: none;
}

.link {}

.py-5 {
    padding: 100px 0;
}

.button {
    background: #140C56;
    padding: 18px 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
}

.button:hover {
    background: #252525;
}

.button.white-button {
    background: #fff;
    color: #252525;
}

.button.white-button:hover {
    background: #140C56;
    color: #fff;
}

.button.border-button {
    background: transparent;
    color: #252525;
    border: 1px solid #252525;
}

.button.border-button:hover {
    background: #252525;
    color: #fff;
}

.button.white-border-button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.button.white-border-button:hover {
    background: #fff;
    color: #252525;
}

.button.color-button {
    background: transparent;
    color: #140C56;
    border: 1px solid #140C56;
}

.button.color-button:hover {
    background: #140C56;
    color: #fff;
}

/* color */

*.white {
    color: #fff;
}

*.brown {
    color: #DBA57F;
}

.dark-bg {
    background: #262626;
}

.swiper-progress-line {
    width: 100%;
    display: none;
    height: 6px;
    background: #FFF;
    border-radius: 1000px;
    margin-top: 20px;
    border-radius: 0;
    transition-duration: 0ms;
}

.swiper-progress-line .swiper-scrollbar-drag {
    background: #0E0087;
    border-radius: 0;
}

.swiper-progress-line.white-progress {
    background: #EAEAEA;
}

.next.swiper-button-disabled,
.prev.swiper-button-disabled {
    opacity: .5;
}

/* other */

.video {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #735A5B;
    overflow: hidden;
}

.video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video:before {
    content: "";
    background: url("../img/play.svg") no-repeat center center / 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    transition: .4s;
}

.video:after {
    content: "";
    background: url("../img/play-active.svg") no-repeat center center / 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    transition: .4s;
    opacity: 0;
    overflow: hidden;
}

.video:hover:before {
    opacity: 0;
}

.video:hover:after {
    opacity: 1;
}

ul li {
    position: relative;
    padding-left: 20px;
    line-height: 140%;
}

ul li:not(:last-child) {
    margin-bottom: 8px;
}

ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 7px;
    left: 0;
    background: #0E0087;
}

.white-block ul li:before {
    background: #fff;
}

#breadcrumbs {
    padding: 28px 0 40px;
}

.breadcrumbs {
    gap: 8px;
}

.breadcrumbs li {
    margin: 0 !important;
    padding-left: 16px;
}

.breadcrumbs li a,
.breadcrumbs li span {
    font-size: 18px;
}

.breadcrumbs li:first-child {
    padding-left: 0;
}

.breadcrumbs li:first-child:before {
    display: none;
}

ul.breadcrumbs li:before {
    top: 7px;
}

.breadcrumbs li span {
    color: #151042;
}

/* FORMS */

.modal {
    width: 1493px !important;
    padding: 80px 110px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.form-modal-mask {
    position: absolute !important;
    bottom: 0;
    left: 0;
}

.thanks-modal-mask {
    position: absolute !important;
    bottom: 0;
    right: 0;
}

.modal>* {
    position: relative;
    z-index: 3;
}

.modal .button {
    margin-top: 40px;
}

.modal .list {
    max-width: 1110px;
}

.modal .list li:not(:last-child) {
    margin-bottom: 32px;
}

.modal .fancybox-close-small {
    position: absolute;
    padding: 0;
    top: 40px;
    right: 40px;
    background: url("../img/close.svg") no-repeat center center / 100%;
    width: 28px;
    height: 28px;
    opacity: 1 !important;
}

.modal .fancybox-close-small svg {
    display: none;
}

.form {
    row-gap: 15px;
    z-index: 5;
}

.form-input {
    width: calc(50% - 10px);
    position: relative;
}

.form-input.w-100 {
    width: 100%;
}

.form-input input {
    border: 1px solid transparent;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(130, 130, 130, 0.16);
    transition: .2s;
}

.form-input.no-valid {
    border: 1px solid #ff3838;
}

.form-input input::placeholder {
    color: rgba(44, 44, 44, 0.50);
}

.form-input .username {
    padding-left: 124px;
}

.form-input .phone {
    padding-left: 180px;
}

.form-input .email {
    padding-left: 90px;
}

.form-input .comment {
    padding-left: 146px;
}

.form-input span {
    font-weight: 600;
    position: absolute;
    left: 28px;
    transition: .2s;
    cursor: pointer;
}

.form-input input:focus+span {
    opacity: 0;
}

.form-input input:focus {
    padding-left: 28px;
}

.form-input input.mask-disabled {
    padding-left: 28px;
}

.form-input input.mask-disabled~span {
    opacity: 0;
}

.form-input-file {
    cursor: pointer;
}

.form-input-file input {
    display: none;
}

.form-input-file {
    gap: 12px;
}

.form-input-file svg {
    width: 24px;
}

.form-input-file span {
    font-weight: 600;
}

.form-checkbox {
    width: 100%;
    margin: 5px 0 12px 0;
    cursor: pointer;
}

.form-checkbox input {
    display: none;
}

.form-checkbox span {
    display: block;
    position: relative;
    padding-left: 44px;
    padding-top: 4px;
}

.form-checkbox span a {
    text-decoration: underline !important;
}

.form-checkbox span:before {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(130, 130, 130, 0.16);
    border: 1px solid transparent;
}

.form-checkbox.no-valid span:before {
    border: 1px solid #ff3838;
}

.form-checkbox span:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #140C56;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: .4s;
    opacity: 0;
}

.form-checkbox input:checked~span:after {
    opacity: 1;
}

.form .button {
    margin-left: auto;
    margin-top: 0;
    border: none;
}

.usl-modal .modal-mask {
    position: absolute;
    right: 0;
    bottom: 0;
}

#form-modal .modal-mask {
    position: absolute;
    bottom: 0;
    left: 0;
}

#thanks-modal .modal-mask {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 1040px) {
    .form-input .username {
        padding-left: 120px;
    }

    .form-input .phone {
        padding-left: 168px;
    }

    .form-input .email {
        padding-left: 84px;
    }

    .form-input .comment {
        padding-left: 144px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .h1,
    h1 {
        font-size: 52px;
    }

    .h2,
    h2 {
        font-size: 42px;
    }

    .p-100-t {
        padding-top: 90px;
    }

    .p-100-b {
        padding-bottom: 90px;
    }

    ul li:before {
        top: 6px;
    }

    .modal {
        padding: 90px 40px 40px 40px;
    }
}


@media (max-width: 768px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .h1,
    h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .h2,
    h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .h2.sm {
        margin-bottom: 16px;
    }

    ul li:not(:last-child) {
        margin-bottom: 6px;
    }

    ul li {
        padding-left: 12px;
    }

    ul li:before {
        top: 7px;
        width: 4px;
        height: 4px;
    }

    .m-40 {
        margin-bottom: 28px;
    }

    .p-100-t {
        padding-top: 60px;
    }

    .p-100-b {
        padding-bottom: 60px;
    }

    .button {
        width: 100%;
        font-size: 14px;
        padding: 18px;
    }

    .video {
        border-radius: 11px;
    }

    .video:before {
        width: 46px;
        height: 46px;
    }

    .video:after {
        width: 46px;
        height: 46px;
    }

    #breadcrumbs {
        padding: 20px 0 24px 0;
    }

    .breadcrumbs li a,
    .breadcrumbs li span {
        font-size: 14px;
    }

    ul.breadcrumbs li:before {
        width: 6px;
        height: 6px;
        top: 6px;
    }

    .modal {
        padding: 40px 28px;
    }

    .modal .fancybox-close-small {
        top: 12px;
        right: 12px;
        width: 16px;
        height: 16px;
    }

    .modal .button {
        margin-top: 0px;
    }

    .usl-modal .modal-mask {
        position: absolute;
        right: 112px;
        bottom: -113px;
        transform: rotate(90deg) scale(1, -1);
        height: 390px;
    }

    .form-input {
        width: 100%;
    }

    .form-input input {
        height: 52px;
    }

    .form-input input:focus {
        font-size: 16px;
        padding-left: 12px;
    }

    .form-input span {
        left: 12px;
    }

    .form-input .username {
        padding-left: 96px;
    }

    .form-input .phone {
        padding-left: 144px;
    }

    .form-input .email {
        padding-left: 65px;
    }

    .form-input .comment {
        padding-left: 117px;
    }

    .form-checkbox span {
        font-size: 12px;
        padding-left: 34px;
        padding-top: 1px;
    }

    .form-input input.mask-disabled {
        padding-left: 12px;
    }

    .form-checkbox span:before {
        width: 20px;
        height: 20px;
    }

    .form-checkbox span:after {
        width: 8px;
        height: 8px;
        top: 7px;
        left: 7px;
    }
}