/*-----------------GENERAL STYLES-----------------------*/
*
{
font-family: Open Sans Condensed ,Verdana, Geneva, Tahoma, sans-serif;
font-weight: 100;
scroll-behavior: smooth;
}
body
{
    margin: 0;
    background-color: #efefef;
}
ul
{
    margin: 0;
    padding: 0;
}
a
{
    text-decoration: none;
    color: #000000;
}
li
{
    list-style: none;
}
footer section
{
    text-align: center;
}
header, footer
{
    background-color: #ffffff;
    box-shadow: 0 0 0.5rem #000000;
    z-index: 100;
}
h1, h2, h3, h4, h5, h6, p
{
    margin: 0;
    padding: 0;
}
/*block with all content*/
.content
{
    width: 100vw;
    min-height: 100vh;
}
.content section{
    background-color: #ffffff;
}
.menu-list li:hover
{
    cursor: pointer;
    color: #b0cb1f;
}
/*------------------------------------------------------------------*/
/*---------------------SMARTPHONES--------------------------*/
@media screen and (max-width: 480px)
{
    /*HEADER STYLES*/
    header
    {   
        position: fixed;
        margin: 0;
        padding: 0;
        width: 100vw;
        height: auto; 
        background-color: #ffffff;
    }
    .header-logo
    {
        float: left;
        margin-left: 5vw;
        margin-top: 3px;
    }
    .header-logo img
    {
        width: 60px;
        height: 60px;
    }
    .menu-button
    {   
        padding: 0;
        border: none;
        height: 48px;
        width: 48px;
        margin-top: 6px;
        margin-right: 5vw;
        float: right;
        background-color: transparent;
    }
    .hamburger-box
    {
        display: block;
    }
    .hamburger-box span
    {
        width: 40px;
        height: 8px;
        display: block;
        margin: auto;
        margin-top: 4px;
        background-color: #000000;
        border-radius: 4px;
        transition: transform 0.5s, opacity 0.5s, margin 0.5s;
    }
    .hamburger-box span:first-child
    {
        margin-top: 0px;
    }
    .hamburger-box span:first-child.is-active
    {
        transform: rotate(45deg);
    }
    .hamburger-box span:nth-child(2).is-active
    {
        opacity: 0;
    }
    .hamburger-box span:last-child.is-active
    {
        transform: rotate(-45deg);
        margin-top: -20px;
    }
    /*END OF HEADER STYLES*/
    /*menu styles*/
    .menu-list
    {   
        display: none;
        width: 100vw;
    }
    .menu-list.is-active
    {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        display: inline-block;
        min-height: 100vh;
        background-color: rgba(255, 255,255, 0.95);
    }
    .menu-list.is-active li
    {
        font-size: 2rem;
        display: flex;
        justify-content: space-around;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }
    .flex
    {
        display: block;
    }
    .flex h3
    {
        font-size: 1.4rem;
        margin-top: 0.5rem;
    }
    .flex p
    {
        font-size: 1.05rem;
        margin-top: 0.5rem;
    }
    .copyright
    {
        display: flex;
        justify-content: center;
    }
    .copyright h5
    {
        font-size: 0.7rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }
    footer
    {
        padding-top: 10px;
    }
}
/*---------------------TABLETS----------------------*/
@media screen and (min-width: 480px)
{   
    /*HEADER STYLES*/
    header
    {   
        position: fixed;
        margin: 0;
        padding: 0;
        width: 100vw;
        height: auto; 
        background-color: #ffffff;
    }
    .header-logo
    {
        float: left;
        margin-left: 5vw;
        margin-top: 3px;
    }
    .header-logo img
    {
        width: 60px;
        height: 60px;
    }
    .menu-button
    {   
        padding: 0;
        border: none;
        height: 48px;
        width: 48px;
        margin-top: 6px;
        margin-right: 5vw;
        float: right;
        background-color: transparent;
    }
    .hamburger-box
    {
        display: block;
    }
    .hamburger-box span
    {
        width: 40px;
        height: 8px;
        display: block;
        margin: auto;
        margin-top: 4px;
        background-color: #000000;
        border-radius: 4px;
        transition: transform 0.5s, opacity 0.5s, margin 0.5s;
    }
    .hamburger-box span:first-child
    {
        margin-top: 0px;
    }
    .hamburger-box span:first-child.is-active
    {
        transform: rotate(45deg);
    }
    .hamburger-box span:nth-child(2).is-active
    {
        opacity: 0;
    }
    .hamburger-box span:last-child.is-active
    {
        transform: rotate(-45deg);
        margin-top: -20px;
    }
    /*END OF HEADER STYLES*/
    /*menu styles*/
    .menu-list
    {   
        display: none;
        width: 100vw; 
    }
    .menu-list.is-active
    {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        min-height: 100vh;
        display: inline-block;
        background-color: rgba(255, 255,255, 0.95);
    }
    .menu-list.is-active li
    {
        font-size: 2rem;
        display: flex;
        justify-content: space-around;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }
    .flex
    {
        margin-top: 10px;
        display: block;
    }
    .flex h3
    {
        font-size: 1.4rem;
        margin-top: 0.5rem;
    }
    .flex p
    {
        font-size: 1.05rem;
        margin-top: 0.5rem;
    }
    .copyright
    {
        display: flex;
        justify-content: center;
    }
    .copyright h5
    {
        font-size: 0.7rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }
    footer
    {
        padding-top: 10px;
    }
}   
/*-------LARGE TABLTS/SMARTPHONES, TABLETS HORIZONTAL--------*/
@media screen and (min-width: 780px)
{
    .flex
    {
        margin-top: 0;
        width: 40vw;
        height: 120px;
    }
    .flex h3
    {
        font-size: 1.7rem;
        margin-top: 0.5rem;
    }
    .flex p
    {
        font-size: 1.25rem;
        margin-top: 0.5rem;
    }
    .contact
    {
        margin-left: 8vw;
        float: left;
    }
    .location
    {
        margin-right: 8vw;
        float: right;
    }
    .copyright
    {
        width: 100vw;
        height: 60px;
    }
    .copyright h5
    {
        font-size: 1rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }
    footer
    {
        padding-top: 0;
    }
}
/*--------------------PC,_LARGE_TABLETS------------------*/
@media screen and (min-width: 1000px)
{
    .header-logo
    {
        margin-left: 2vw;
    }
    .menu-button
    {
        display: none;
    }
    .menu-list
    {
        display: flex;
        width: auto;
        justify-content: flex-end;
        margin-right: 2vw;
    }
    .menu-list li
    {
        display: inline-block;
        font-size: 1.5rem;
        padding: 16px;
    }
}
/*----------------------PC_HIGH_RESOLUTION-------------------------*/
@media screen and (min-width: 2560px)
{

}