* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--link);
    transition: all 0.6s;
}

.a_ind {
    font-size: 24px;
    text-decoration: underline;
}

a:hover {
    transition: all 0.6s;
    color: var(--link_hov);
}

@font-face {
    font-family: "Commissioner";
    src: url(/fonts/Commissioner-Regular.woff2);
}

html,
body {
    scroll-behavior: smooth;
    position: relative;
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*background-image: url('/img/fon.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: contain;*/
    scrollbar-color: var(--dark-gray) var(--dark-turquoise);
}

body {
    overflow-x: hidden;
    background-color: var(--highlight);
    font-family: "Commissioner", sans-serif;
    color: var(--white);
    background: url("/img/incognito_orn.svg") 10px 350px repeat-x;
}

.global {
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    transition: 0.6s;
    position: relative;
}

.sect_bas {
    width: 100%;
    height: auto;
    padding-bottom: 133px;
    border-bottom: var(--turquoise-opacity05) 1px solid;
}

.no_border_bottom {
    border-style: none;
}

.sect_bas-min {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
}

.sect_bas-min svg {
    margin-left: 10px;
}

.marg_min {
    margin-top: 13px;
}

.min_text {
    font-size: 12px;
    color: var(--turquoise);
    text-transform: uppercase;
}

.hleb svg {
    min-width: 15px;
}

.sect_bas_text {
    display: flex;
    margin-left: calc(157px + 11vw);
    /*		width: calc(89vw - 357px);*/
    width: 64.3%;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 60px;
    gap: 20px;
}

.marg_top60 {
    margin-top: 60px;
}

.marg_bot60 {
    margin-bottom: 60px;
}

h2 {
    font-size: 36px;
    color: var(--text-turquoise);
    line-height: 44px;
    text-indent: 11vw;
    font-weight: 500;
    text-transform: uppercase;
}

.h2_ind {
    text-indent: 0;
    text-align: center;
}
.img_titul {
    width: auto;
    height: clamp(380px, 40vw, 600px);
    object-fit: contain;
    margin: 50px auto 0 auto;
    display: block;
}

.flex_img {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20%;
    margin-top: 60px;
}

.orn {
    background: url("/img/orn_2.svg")-290px calc(800px * var(--scale)) repeat-x,
        url("/img/orn_2.svg") 0px 350px repeat-x;
}

.flex_img img {
    opacity: 0;
    object-fit: contain;
    margin-bottom: 40px;
    height: 400px;
}
#img_ind {
    height: 600px;
}
.top_text {
    width: 100%;
    font-size: 16px;
    color: var(--text-turquoise-opacity08);
    line-height: 2;
}

.top_text_ind {
    font-size: 20px;
}

.marg_b100 {
    margin-bottom: 100px;
}

.big_img {
    position: fixed;
    top: 5vh;
    left: 15vw;
    z-index: 117;
    width: 70vw;
    /* height: clamp(200px, 50vh, 600px); */
    height: 90vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    display: none;
}

.shirma {
    width: 100vw;
    height: 100vh;
    background-color: var(--black-opacity08);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    display: none;
}

@keyframes ani {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scale-up-center {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scale-out-center {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 1;
    }
}

.scale-up-center {
    animation: scale-up-center 0.4s ease-in both;
}

.scale-out-center {
    animation: scale-out-center 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.cl-btn-6 {
    position: absolute;
    /*    margin: 20px auto;*/
    width: 40px;
    cursor: pointer;
    top: 0;
    right: -50px;
    z-index: 99;
}
.cl-btn-6-in {
    width: inherit;
    text-align: center;
}
.cl-btn-6-txt {
    font-size: 8px;
    line-height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-turquoise-opacity08);
    transition: all 0.3s ease-in;
    opacity: 0;
    cursor: pointer;
}
.cl-btn-6-in:before,
.cl-btn-6-in:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 40px;
    background: var(--text-turquoise-opacity08);
    left: 0;
    transition: all 0.3s ease-in;
}
.cl-btn-6-in:before {
    top: calc(50% - 4px);
    transform: rotate(45deg);
}
.cl-btn-6-in:after {
    bottom: 50%;
    transform: rotate(-45deg);
}
.cl-btn-6:hover .cl-btn-6-txt {
    opacity: 1;
}
.cl-btn-6:hover .cl-btn-6-in:before,
.cl-btn-6:hover .cl-btn-6-in:after {
    transform: rotate(0);
}
.cl-btn-6:hover .cl-btn-6-in:before {
    top: 0;
}
.cl-btn-6:hover .cl-btn-6-in:after {
    bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
    .mt_hov:hover {
        color: var(--dark-gray);
        transition: 0.5s;
    }

    .flex_img img:hover {
        cursor: zoom-in;
    }
}

@media only screen and (min-width: 1240px) {
    h2 {
        text-indent: calc(140px * var(--scale));
    }
}

@media only screen and (max-width: 1040px) {
    .big_img {
        left: 5vw;
        width: 90vw;
    }

    .cl-btn-6 {
        right: -30px;
    }
}

@media only screen and (max-width: 795px) {
    .sect_bas-min {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .mt {
        display: none;
    }
}

@media only screen and (max-width: 660px) {
    h2 {
        width: 100%;
    }

    .flex_img {
        flex-direction: column;
        align-items: center;
    }

    .flex_img img {
        width: 100%;
        height: auto;
    }

    .img_titul {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media only screen and (max-width: 448px) {
    h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 390px) {
    h2 {
        font-size: 21px;
        line-height: 1.2;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: url("/img/dark_incognito_orn.svg") 10px 350px repeat-x;
        background-color: var(--highlight);
    }

    .orn {
        background: url("/img/dark_orn_2.svg")-290px calc(600px * var(--scale))
                repeat-x,
            url("/img/dark_orn_2.svg") 0px 100px repeat-x;
    }

    a {
        color: var(--link-dark-turquoise);
    }

    @media (hover: hover) and (pointer: fine) {
        a:hover {
            color: var(--white);
        }
    }
}

@media only screen and (min-width: 1900px) {
    .img_titul {
        height: calc(600px * var(--scale));
        margin: calc(50px * var(--scale)) auto 0 auto;
    }

    .flex_img img {
        height: calc(400px * var(--scale));
    }

    #img_ind {
        height: calc(600px * var(--scale));
    }

    .marg_b100 {
        margin-bottom: calc(100px * var(--scale));
    }

    .top_text {
        font-size: calc(16px * var(--scale));
    }

    .top_text_ind {
        font-size: calc(20px * var(--scale));
    }

    .orn {
        background-size: calc(600px * var(--scale));
    }

    body {
        background-position: 10px calc(350px * var(--scale));
        background-size: calc(1070px * var(--scale));
    }

    .flex_img img {
        margin-bottom: calc(40px * var(--scale));
    }
}
