* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy";
    font-size: 0.9rem;
}

html {
    scrollbar-width: none;
    -webkit-tap-highlight-color: transparent;
}


.section_1 {
    display: flex;
    padding: 50px 200px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
}

.section_1 .image {
    width: 40%;
    padding-left: 10%;
    /* object-fit:contain; */
    margin: 20px;
    align-self: stretch;
    background-image: url(../static/images/me.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.section_1 ul {
    width: 50%;
    margin: 20px;


    list-style: none;

    li {
        font-size: 1.5rem;
        color: var(--black);
        line-height: 100%;
        position: relative;
        padding: 0 0 20px 20px;
        font-weight: 500;

        &::before {
            content: "•";
            /* Кастомный маркер (точка) */
            color: var(--bobr);
            /* Цвет маркера */
            font-size: 2rem;
            /* Размер маркера */
            position: absolute;
            left: 0;
            top: 0;
            transform: translateY(calc(-50% + 0.84rem));
        }
    }
}






/* 
.sign_up_button {
    margin-top: 20px;
    padding: 20px 50px;
    background-color: var(--dark) !important;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: calc(0.6rem + 20px);
    font-weight: 700;
    position: absolute;
    left: 50%;
    bottom: 5vw;
    transform: translateX(-50%);

    &:active {
        background-color: var(--blue_hover) !important;
    }

    @media (hover) {
        &:hover {
            background-color: var(--blue_hover) !important;
        }
    }

} */

/* .sign_up {
    padding: 2vw 10vw 5vw 10vw;
    background-color: var(--blue);
    color: #fff;
    position: relative;

    .info {

        h1 {
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 20px;
            max-width: 60%;
        }

        i {
            font-size: 2rem;
            margin: 20px 5px 20px 0;
        }

        .phone {
            display: inline-block !important;
            font-size: 1.8rem;
            font-weight: 500;
            margin: 20px 0;
            text-decoration: underline;
            cursor: pointer;
            display: flex;
            align-items: center;
            width: auto;

            &:active {
                color: var(--dark);
            }

            @media (hover) {
                &:hover {
                    color: var(--dark);
                }

            }


        }

        button {
            height: 10vh;
            background-color: var(--dark);
            border: none;
            cursor: pointer;
            border-radius: 50%;
            margin: 5px;
            width: 60px;
            height: 60px;
        }

        .whatsapp {
            height: 50%;
            transform: translate(3%, 3%);
        }

        .tg {
            height: 42%;
            transform: translate(-9%, 4%);
        }
    }

} */

button:active {
    background-color: var(--blue_hover);
}

@media (hover) {
    button:hover {
        background-color: var(--blue_hover);
    }
}




@media screen and (max-width: 1100px) {
    .sign_up {
        max-height: none !important;
        height: auto !important;
    }

    .section_1 {
        /* flex-direction: column; */
        padding: 20px;

        .image {
            padding-right: 0;
            padding-left: 0;
            width: auto;
            height: 70vh;
            align-items: center;
            background-size: contain;
        }

        ul li {
            font-size: 1.2rem
        }
    }
}

@media screen and (max-width: 600px) {
    .sign_up {
        padding: 5vw;
        text-align: center;

        h1 {
            font-size: 1.7rem !important;
            max-width: 90vw !important;
            text-align: center;
        }

        .buttons {
            text-align: center;
        }

        .info {
            text-align: center;
        }

        p {
            font-size: 1.5rem !important;
        }

        .sign_up_button {
            position: static;
            transform: none;
        }

    }

    .section_1 ul {
        width: 90%;
    }

    .section_1 .image_div {
        margin-bottom: calc(30px + 5vw) !important;
    }
}

@media screen and (max-width: 300px) {
    .sign_up h1 {
        font-size: 1.2rem !important;
    }

    .sign_up .info .phone {
        font-size: 1.2rem !important;
    }
}



a {
    color: inherit !important;
}