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

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


.contacts {
    display: flex;
    justify-content: space-around;
    padding: 2vw 10vw 5vw 10vw;
    background-color: var(--bg);
    color: #fff;
    position: relative;

    .contact {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--blue);

        i {
            font-size: 4rem;
        }

        p {
            font-size: 1.2rem;
            margin: 10px 0;
            color: var(--black_bold)
        }

        button a {
            display: flex !important;
            justify-content: center !important;
            width: 100% !important;
            text-align: center;
            height: 100%;
            align-items: center;
        }

        .phone {
            font-size: 1rem;
            font-weight: 300;
            margin: 10px 5px;
            color: var(--black_bold);
            text-decoration: underline;
            cursor: pointer;
            display: flex;
            align-items: center;
            width: auto;

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

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


        .other {
            display: flex;
            flex-wrap: wrap;
            justify-content: center !important;

            a{
                font-weight: 700;
                font-size: 1rem;
                color: var(--blue);
                text-decoration: underline;
                margin: 10px 5px;
            }

            span{
                display: flex;
            }

            

            p {
                font-size: 1rem;
                font-weight: 600;
                margin: 10px 5px;
                color: var(--black);
                cursor: pointer;
                display: flex;
                align-items: center;
                width: auto;
                text-align: center;
                max-width: 250px;
            }

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

            .tg {
                height: 42%;
                transform: translate(-8%, 0%);
            }
            .phone{
                width: 100%;
                text-align: center;
                display: inline-block;
                font-size: 1rem;
            }
            .inst{
                height: 52%;
            }

            .b17{
                width: 65%;
                transform: translate(4%, 0);
            }
            .vk{
                height: 60%;
                transform: translate(-5%, 0);
            }
        }
    }

}


/* 
.sign_up .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) !important;
}

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




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

    .contacts {
        flex-wrap: wrap;

        .contact {
            min-width: 300px;
            margin-bottom: 40px;
        }
    }

}

@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;
        }

    }

}

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

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

    .contact {
        min-width: 0 !important;
        width: 90% !important;

        i {
            font-size: 3rem !important;
        }

        p {
            font-size: 1.2rem !important;
            text-align: center;
            ;
        }

        .other {
            display: flex;
            flex-wrap: wrap;
            justify-content: center !important;
        }

        a {
            display: flex !important;
            justify-content: center !important;
            width: 100% !important;
            text-align: center;
        }

        .other p {
            font-size: 0.9rem !important;
        }
    }
}


a {
    color: inherit;
}