@font-face {
    font-family: "Gilroy";
    src: url("/fonts/Gilroy-Bold.woff2") format("woff2"),
           url("/fonts/Gilroy-Bold.ttf") format("ttf");
    font-weight: 700;
    font-display: swap;
   }
body{
    font-family: "Gilroy", sans-serif;
    background-color: #000;
    color: #fff;
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}
.main{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100vw;
    overflow: hidden;
    /*! font-family: "Gilroy", sa; */
}
.burger__button{
    position: absolute;
    right: 50px;
    top: 50px;
    background-color: transparent;
    border: none;
    height: 25px;
    width: 30px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 12;
    outline: none;
}
.burger__button span{
    display: inline-block;
    width: 100%;
    position: relative;
    height: 2px;
    background-color: #fff;
    transition: all .3s;
}
.burger__button span::before,
.burger__button span::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 2px;
    transition: all .4s;
}
.burger__button span::before{
    top: -7px;
}
.burger__button span::after{
    bottom: -7px;
}
.burger__button.active span{
    background-color: transparent;
}
.burger__button.active span::after{
    transform: rotate(-45deg);
    bottom: .5px;
}
.burger__button.active span::before{
    transform: rotate(45deg);
    top: .5px;
}
.burger__content{
    position: absolute;
    height: 100vh;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0);
    padding: 0 20px;
    z-index: 11;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .4s;
}
.burger__content.active{
    opacity: 1;
    visibility: visible;
}
.burger__content-nav{
    text-align: center;
}
.burger__content-nav__wrapper{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.burger__content-nav__item{
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 40px;
    opacity: 0.2;
    text-transform: uppercase;
}

.hover{
    position: relative;
    padding-bottom: 5px;
    transition: .3s;
    font-weight: bold;
    font-family: unset;
    /*! text-transform: uppercase; */
    /*! font-style: ; */
}
.hover::after{
    content: "";
    position: absolute;
    
    bottom: 0;
    height: 2px;
    background-color: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all .4s;
    width: 0;
}
.burger__content-nav__item:hover{
    opacity: 0.3;
    transition: .3s;
}
.burger__content-nav__item.active{
    opacity: 1;
}
.burger__content-nav__item.active{
    color: #fff;
}
.burger__content-contacts{
    text-align: left;
    list-style: none;
    margin-bottom: 50px;
    padding: 0 10px; 
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.burger__content-contacts__container {
    max-width: 355px;
}
.burger__content-contacts__item{
    margin: 0 10px;
    padding-left: 25px;
    max-width: inherit;
    position: relative;
    margin-top: 5px;
}
.burger__content-contacts__item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}
.burger__content-contacts__item.phone::before{
    background-image: url("images/phone.svg");
}
.burger__content-contacts__item.email::before{
    background-image: url("images/email.svg");
}
.burger__content-contacts__item.location::before{
    background-image: url("images/location.svg");
}
.burger__content-contacts__item.big a{
    font-weight: lighter;
    font-size: 16px;
    display: block;
}
.burger__content-contacts__item a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.logo__img{
    background-color: #000;
    position: relative;
    z-index: 10;
}

.logo__img-item{
    position: relative;
    z-index: 5;
    width: 27vw;
    max-width: 500px;
}
.logo__img:hover  .logo__text{
    transform: translate(-50%, 100%);
    opacity: 1;
}
.logo__text{
    position: relative;
    z-index: 4;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    opacity: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.1vw;
    letter-spacing: 5px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    transition: all .4s;
}
.logo__text:hover{
    transform: translate(-50%, 140%);
    opacity: 1;
}
@media(max-width: 767px){
    .burger__content-contacts{
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .burger__button{
        top: 20px;
        right: 20px;
    }
    .burger__content-nav__item{
        font-size: 26px;
    }
    .burger__content-contacts__item a{
        display: inline-block;
        font-size: 18px;
        margin-top: 5px;
    }
    .logo__img-item{
        width: 260px;
    }
    .logo__img:hover + .logo__text{
        transform: translate(-50%, 200%);
    }
    .logo__text{
        font-size: 18px;
    }
    .logo__text:hover{
        transform: translate(-50%, 200%);
    }
}