html {
    scroll-behavior: smooth;
  }

body{
    margin: 0;
    padding: 0;
    color:rgb(70, 70, 70);
    font-family: Arial;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color:rgb(70, 70, 70);
    transition: 0.5s;
}

a:hover{
    transition: 0.5s;
    color: #8591a5;
}

.header{
    width: 100vw;
}

.header-navigation{
    height: 10vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-navigation-menu{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 0.5s;
    height: 100%;
    margin-left: 2vw;
    z-index: 1;
}

.header-navigation-menu i{
    transition: 0.5s;
}

.header-navigation-menu-active{
    transition: 0.5s;
    transform: rotate(720deg);
    color: whitesmoke;
}

.header-navigation-menu i:hover{
    color: #8591a5;
    transition: 0.5s;
    cursor: pointer;
}

.header-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    min-height: 50vh;
    width: 100vw;
    z-index: 0;
    opacity: 0;
    transition: 0.5s;
    top: 0;
    position: absolute;
    transform: translateY(-60vh);
    font-weight: bold;
    font-size: 1.3vw;
}

.header-menu-active{
    transition: 0.5s;
    opacity: 1;
    transform: translateY(0vh);
}

.header-menu-item{
    padding: 20px;
}

.header-menu-item a{
    color: whitesmoke;
}

.header-menu-item a:hover{
    color: #8591a5;
}

.header-navigation-logo{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    margin-right: 2vw;
}

.header-navigation-logo-img{
    height: 8vh;
    margin-right: 1vw;
}

.content{
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content a{
    color: black;
}

.content a:hover{
    color: #8591a5;
}

.content-data{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 50vw;
}

.content-data-firstblock{
    line-height: 1;
    font-weight: bold;
}

.content-data-secondblock{
    margin-top: 2vh;
}

.content-data-header2{
    margin-top: 5vh;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto;
    background-image: url("../img/bg.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    font-size: 1vw;
    margin-top: 20vh;
    color: whitesmoke;
}

.footer a{
    margin-top: 2vh;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}


.footer-logo img{
    width: 7vw;
}

.footer-text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    font-weight: bold;
}

.footer-text p{
    padding: 3vw;
    color: rgb(70, 70, 70);
}

@media only screen and (max-width: 1200px) {
    .header-menu{
        width: 100vw;
        font-size: 25px;
    }

    .header-navigation-logo-img{
        height: 6vh;
        margin-right: 1vw;
    }


    .content-data{
        width: 80vw;
    }
    
    .footer{
        font-size: 15px;
        margin-top: 15vh;
        font-weight: bold;
    }
  }

  @media only screen and (max-width: 500px) {
    .header-menu{
        width: 100vw;
        font-size: 25px;
    }

    .header-navigation-logo-img{
        height: 6vh;
        margin-right: 1vw;
    }


    .content-data{
        width: 80vw;
    }
    
    .footer{
        font-size: 15px;
        margin-top: 15vh;
        flex-direction: column;
        font-weight: bold;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-logo img{
        width: 20vw;
        margin-top: 2vh;
    }
    
    .footer-text{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
    
    .footer-text p{
        padding: 0vw;
    }
  }