*, body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Montserrat,Verdana,sans-serif;
    overflow: hidden;
    @media (max-width: 1150px) {
        overflow: scroll;
    }
}

.header{
    width: 100%;
    height: 100vh;
    position: relative;
    transition: all 0.5s ease;
    background-color: gray;
    @media (max-width: 1150px) {
        height: auto;
    }
}
.images{
    position: absolute;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.images.active{
    opacity: 1;
    transition: opacity 0.5s ease;
}
.header_top {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: white;
    z-index: 500;
    @media (max-width: 1400px) {

    }
}

.header_top_logo{
    height: 100px;
    width: 300px;
    z-index: 3;
    img{
        height: 100%;
        width: 100%;
    }
    @media (max-width: 1400px) {
        height: 80px;
        width: 200px;
    }
    @media (max-width: 600px) {
        display: none;
    }
}
.header_top_text{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5rem;
    z-index: 30;
    margin-left: -130px ;
    @media (max-width: 1400px) {
        font-size: 1rem;
        margin-left: -40px ;
    }
    @media (max-width: 600px) {
        margin-left: 10px ;
    }
}
.header_top_phones {
    position: relative;
    z-index: 60;
    padding-right: 1rem;
    a{
        text-decoration: none;
        color: white;
        font-size: 1.2rem;
        @media (max-width: 1400px) {
            font-size: 1rem;
        }
    }
}
.header_top_phones:before{
    content: '';
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url("../img/phone.png");
    background-size: contain;
    background-position: center;
    top: 0px;
    left: -35px;
    color: white;
    z-index: 500;
    @media (max-width: 1400px) {
        width: 20px;
        height: 20px;
        top: 0px;
        left: -25px;
    }

}
.header_main{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    @media (max-width: 1150px) {
        flex-direction: column;
        color: white;
        color: white;
    }
}
.header_main a {
    display: flex;
    text-decoration: none;



}
.header_main_block{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 13%;
    flex-direction: column;
    flex: 1;
    border-right: 1px solid black;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 1rem;
    @media (max-width: 1150px) {
        padding-bottom: 5rem;
        border-right: none;
        border-bottom: 1px solid black;
    }

}
.header_main_block:hover{
    transition: all 3s ease;
    .main-text{
        color: white;
    }
    .main-links{
        opacity: 1;
    }
    .main-logo{
        z-index: 1;
    }
    .main_decription{
        opacity: 1;
        margin: 1rem;
    }


}
.main-link{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0,0,0,.4);
    transition: opacity 0.3s ease;
}
.main_decription{
    opacity: 0;
    z-index: 6;
    padding: 1rem;
    background-color: rgba(0,0,0, .7);

    border-radius: 15px ;
    margin-bottom: -5%;
    transition: margin-bottom 0.3s ease;
}
.main-logo{
    width: 100%;
    height: 100px;
    z-index: 0;
    img{
        width: 100%;
        height: 100%;
    }
    @media (max-width: 1150px) {
        z-index: 1;
    }

}
.main-text{
    font-weight: 500;
    z-index: 5;
}
.main-links{
    opacity: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    @media (max-width: 1150px) {
        opacity: 1;
    }
}
.main-links a{
    color: white;
}
.main{
    height: 100vh;
    display: none;
    img{
        max-height: 100%;
        max-width: 100%;
        vert-align: middle;
    }
}
.footer{
    height: 100vh;
    display: none;
}
.page{
    transition: all 0.3s ease;
}