.video_block iframe { width: 100%; height: 390px; }

:root {
    --font-family: 'Open Sans',Arial,sans-serif;
    --second-family: 'Open Sans',Arial,sans-serif;
    --hero-title-color: #646666;

    --light-color: #fffcfc;
    --black-color:#000;

    --gray-color: #646666;
    --red-color: #F54838;
    --white-pink-color: #EEEEEE;
    --red-bn-color: rgb(148 25 56);
    --green-color: #14931a;
    --light-green-color: #4CAF50;: ;
    --body-bg-color: rgba(255, 255, 255, 0.98);
    --bg-less-color: rgba(241, 241, 241, 0.98);
    --bg-color: #1e1e1e;
    --item-bg-color: rgba(20, 20, 20, 0.98);
    --input-bg-color: #101010;
    --company-border-color: rgba(255, 255, 255, 0.19);
    --input-border-color: #2d2828;
    --container-border-color: #27251e;
    --color-text: rgba(255, 0, 5);
    --alpha-text: #000;
    --color-bg: rgba(255, 255, 255);




}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    min-width: 390px;
    scroll-behavior: smooth;
}

.page-body {
    margin: 0;
    min-width: 390px;
    min-height: 100%;
    font-size: 16px;
    overflow-y: auto;
    background: var(--body-bg-color);
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    user-select: none !important;
    pointer-events: none !important;
}
.img{
    width: 100%;
}
b {
    font-weight: bold;
}

a {
    text-decoration: none;
}
.dis-scroll {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    overscroll-behavior: none;
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-reset {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: var(--light-color);

    &::-webkit-search-decoration,
    &::-webkit-search-cancel-button,
    &::-webkit-search-results-button,
    &::-webkit-search-results-decoration {
        display: none;
    }
}
.input {
    border: 2px solid var(--input-border-color);

    &:hover {
        border: none;
    }
    &:focus {
        border: none;
    }
}

.flex {
    display: flex;
    align-items: center;
}
.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    max-width: 1160px;
    margin-inline: auto;
    padding: 0 15px;
}

.color-text {
    background: var(    --red-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.color-text__2 {
    background: var(--black-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.black-text{
    color: var(--black-color);
}
.gray-text{
    color: var(--gray-color);
}
.bold-text{
    font-weight: 700;
}
.title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 142%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--light-color);
}
.sub-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--light-color);
}
.text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--light-color);
}

.btn {


    &::before {

    }
    &:hover::before {
    }
}


/* burger */
.burger {
    margin-left: 20px;
    display: none;
    position: relative;
    border: none;
    padding: 0;
    width: 34px;
    height: 24px;
    color: var(--light-color);
    background-color: transparent;
    cursor: pointer;
    z-index: 9;
}

.burger::before,
.burger::after {
    content: '';
    position: absolute;

    height: 4px;
    border-radius: 4px;
    background-color: currentColor;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger::before {
    top: 0;
    left: 0;
    width: 50%;
}

.burger::after {
    top: calc(100% - 3px);
    right: 0;
    width: 50%;
}

.burger__line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: currentColor;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
}

.burger--active::before {
    /* color: var(--gray-color); */
    top: 50%;
    width: 100%;
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger--active::after {
    /* color: var(--gray-color); */
    top: 50%;
    width: 100%;
    transform: rotate(-45deg);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger--active .burger__line {
    color: var(--gray-color);
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}
.line {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
}
