
body {
    background-color: white;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;

}

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

* {
    margin: 0;
    padding: 0;
}


h1 {
    font-size: 50px;
        text-transform: uppercase;
        font-weight: 700;
}
.logo {
    max-width: 200px;

}
.content_wrap {
    width: 100%;
    min-height: 100vh;
    background: #333 url(winter.jpg) center;
    background-size: cover;
    position: relative;
}

.content_wrap:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: .5;
    left: 0;
    top: 0;
    z-index: 1; /* Псевдоэлемент будет под контентом */
}

.content_wrap > * {
    position: relative;
    z-index: 2; /* Контент будет над псевдоэлементом */
}
.content {

    color: #fff;
}

.desk {
        font-size: 22px;
}
.link_btn {

    text-decoration: none;
    border-radius: 8px;
    padding: 15px 50px;
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    font-weight: 600;
    background: #f54e04;
    border: 1px solid #f54e04;
}

.link_btn:hover {
    opacity: .9;
}

.header {
    padding-top: 30px;
    margin-bottom: 70px;
}
.phone {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    display: block;
    float: right;
}

.form_main {
    margin: 60px 0;
    width: 100%;
    max-width: 520px;
    background: #0000007a;
    padding: 60px;
    border-radius: 10px;
}

.phone:before {
        content: "";
        background: url(tel.svg) no-repeat;
        background-size: 100%;
        width: 32px;
        height: 32px;

        display: inline-block;
        margin:  0 10px -7px 0;
}


.form_title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 26px;
    text-align: left;
}

.br_768 {
    display: none;
}

.input-control {
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    max-width: 100%;
    width: 100%;
    min-height: 60px;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid #6c6c6c;
    min-height: 50px;
    color: #fff;
}

 .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 2px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    color: #fff;
    border-radius: 8px;
    background-color: #f44e04;
    min-height: 60px;
    width: 100%;
    margin-top: 25px;
        font-size: 15px;
    font-weight: 600;
    -webkit-transition: opacity ease-in-out 0.2s, border-color ease-in-out 0.2s, background-color ease-in-out 0.2s, color ease-in-out 0.2s;
    transition: opacity ease-in-out 0.2s, border-color ease-in-out 0.2s, background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}


.social-icons {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .social-icons a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-size: cover;
        }

        .social-icons a:hover{
            opacity: .8;
        }

        .vk {
            background-image: url('path_to_vk_icon.svg'); /* Замените на путь к вашей иконке ВК */
        }

        .dzen {
            background-image: url('path_to_dzen_icon.svg'); /* Замените на путь к вашей иконке Дзен */
        }

        .youtube {
            background-image: url('path_to_youtube_icon.svg'); /* Замените на путь к вашей иконке YouTube */
        }

        .telegram {
            background-image: url('path_to_telegram_icon.svg'); /* Замените на путь к вашей иконке Telegram */
        }


@media (max-width: 768px) {


    .logo {
    max-width: 120px;

}

.header {
        margin-bottom: 0;
}


.form_main {

    padding: 36px;
}


.content {
    margin-top: 80px;
}

.phone:before {
    width: 26px;
    height: 26px;
}

.phone {
    font-size: 18px;
}


    h1 {
        font-size: 30px;
    
    }

    .br_768 {
        display: block;
    }
}

