*, *:before, *:after{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

h2 {
    color: rgb(80, 80, 80);
    font-size: 2.4rem;
    text-transform: uppercase;
    padding-top: 10px;
    text-align: center;
}

h3 {
    color: #fff;
    font-size: 2.4rem;
    text-transform: uppercase;
    padding-top: 10px;
    text-align: center;
    z-index: 5;
}

.wrapper {}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

.header:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(0, 0, 0);
z-index: 2;

}

.container {
    max-width: 900px;
    margin: 0px auto;
    padding: 0px 10px;
}

.underline {
    margin: 0 auto;
    margin-bottom: 40px;
    width: 40%;
    border-bottom: 1px solid rgb(251, 200, 10);
}

.header__body {
    position: relative;
    /* z-index: 2; */
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}
.header__lang{
        color: #fff;
            text-transform: uppercase;
            /* переводим все букві в верхний регистр */
            font-size: 18px;
            text-decoration: none;
            /* убираем подчеркивание */
}

.header__logo {
    flex: 0 0 50px; /* Задаем размер для изображения */
    border-radius: 10%;
    overflow: hidden;
    z-index: 3;
}

.header__logo img {
    max-width: 100%;
    display: block; /* чтобы изображение не обрезалось */
}

.header__burger {
    display: none;
}

.header__menu {}

.header__list {
    display: flex;
    position: relative;
    z-index: 2;
}

.header__list li {
    list-style: none; /* убираем точки слева от списка */
    margin: 0px 20px 0px 20px;
    padding: 10px;
}

.header__link {
    color: #fff;
    text-transform: uppercase; /* переводим все букві в верхний регистр */
    font-size: 18px;
    text-decoration: none; /* убираем подчеркивание */
}

.header__link:hover {
    color: rgb(251, 200, 10);

}

.conttent {
    background: #000;
    padding: 80px 0px 0px 0px; /* отступ сверху, чтобы текст не перекрывался хидером*/
}

.content__main{
    position: relative;
        width: 100%;
        height: 100vh;
         /*min-height: 100%; */

        background-image: url("img/road.jpg");
        background-position:top;
        background-size: auto 100vh;
        background-attachment: fixed;
        z-index: 0;
}
.content__main_shadow {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.contant__main_logo{
    position: absolute;
        top: 40%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        font-weight: 600;
        text-align: center;
    color: #fff;
    z-index: 2;
}

.content__main_info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    z-index: 4;
}
.content__aboutus{
    background-color: #fff;
        display:flex;
        flex-direction: column;
        /* flex-wrap: wrap; */
        justify-content: center;
        align-items: center;
}
.content__aboutus p, li{
    padding: 0px 10px 10px 10px;

}
.content__aboutus_img{
    max-width: 600px;
}

.content__contacts {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
}

.content__text {
    font-size: 18px;
    line-height: 25px;

}

.content__text p{
    margin: 0px 0px 20px 0px;
}

@media (max-width:767px) {
body.lock{
    overflow: hidden; /* когда открыто меню блокирую прокрутку текста под ним */
}

    .conttent{
        padding: 50px 0px 0px 0px;
        /* отступ сверху, чтобы текст не перекрывался хидером*/
    }

        .container {

            padding: 0px 0px;
        }

    .header__body{
        height: 50px;
        padding: 0px 10px;
    }

    .header__logo{
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
         flex: 0 0 40px; /*Задаем размер для изображения*/
    }

    .header__burger {
        display: block;
        /* display: ; */
        position: relative;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 3;
        }
    .header__burger span {
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.3s ease 0s;
    }
    .header__burger:before, .header__burger:after{
        content: '';
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header__burger:before {
        top:0;
    }
    .header__burger::after {
        bottom: 0;
    }

    .header__burger.active:before{
        transform: rotate(45deg);
        top: 9px;
    }

    .header__burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header__burger.active span {
        transform: scale(0);
    }

    .header__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        overflow: auto; /* чтобы пункты меню можно было скролить, если они не взазят на страницу*/
        background-color: rgb(35, 70, 120, 0.8);
        padding: 90px 10px 20px 10px; /* опустил ниже хидера*/
        transition: all 0.3s ease 0s;
    }

        .header__menu.active{
            top: 0;
        }

    .header__list{
        display: block;

    }

    .header__list li{
        margin: 0px 0px 20px 0px;
    }

    .header__link{
        font-size: 24px;
    }
    
    .content__main{

        background-size: auto;
        /*background-attachment: fixed;*/
       
}

        .contant__main_logo {

            font-weight: 100;
            width: 90%;

        }
        .underline {
            margin-bottom: 20px;
            width: 60%;
        }
    
}
/* / */