:root{
    --primaryColor:  #1080e2;
    --secondaryColor: #ffffff;
    --lightColor: #ffffff;
    --bgColor-1 :#171a1c;
    --bgColor-2:  #22282a;
    --padding: 8%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    color: var(--lightColor);
}
h2{
    font-size: 2.2rem;
    letter-spacing: 0.12rem;
    cursor: pointer;
}
h1{
    font-size: 4.65rem;
    margin:  1.7rem 0;
}
h3{
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
}
h4{
    font-size: 1.25rem;
    letter-spacing: 0.12rem;
    color: var(--secondaryColor);
}
h5{
    margin-top: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
p{
    color: var(--secondaryColor);
    letter-spacing: 1px;
    line-height: 1.8rem;
    font-size: 1rem;
}
span{
    color: var(--primaryColor);
}
.home{
    width: 100%;
    height: 15vh;
    background-color: var(--bgColor-1);
    display: flex;
    flex-direction: column;
}


nav{
    padding-top: 2.8rem;
    padding-left: var(--padding);
    padding-right: var(--padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li{
    list-style-type: none;
    display: inline-block;
    margin: 0.8rem 1.5rem;
}
nav ul li a{
    color: var(--lightColor);
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.4s;
}
nav ul li a:hover{
    color: var(--primaryColor);
}
.btn{
    background-color: var(--primaryColor);
    color: var(--lightColor);
    text-decoration:none ;
    font-weight: bold;
    padding: 0.81rem 1.87rem;
    border-radius: 30px;
    transition: 0.4s;
    border: 2px solid transparent;
}
.btn:hover{
    background-color: transparent;
    border: 2px solid var(--primaryColor);
}
.contact{
    height: 100%;
    background-color: var(--bgColor-2);
    padding: 2rem var(--padding);
    display: flex;
    align-items: center;
    justify-content:space-around;
}
.contact .container-images{
    width: 35%;
}
.contact .container-images img{
    width:90%;
}
.contact .container-texts{
    width: 50%;
}
footer{
    padding: 2rem var(--padding);
    background-color: var(--bgColor-1);
}
footer .content-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .content-footer p{
    color: var(--lightColor);
    text-align: center;
    width: 500px;
    margin-top: 1rem;
}
footer .content-footer .end{
    color: var(--primaryColor);
    margin-top: 1rem;
}
#menu{
    display: none;
    position: relative;
    appearance: none;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    user-select: none;
}
#menu span{
    display: block;
    width: 33px;
    height: 4px;
    background-color: var(--lightColor);
    border: radius 6px;
    transform-origin: 0 0;
    transition: 0.4s;
    margin-bottom: 5px;
}
#menu.is-active span:nth-child(1){
    transform: translate(0px, -2px) rotate(45deg);
}
#menu.is-active span:nth-child(2){
    opacity: 0;
    transform: translateX(15px);
}
#menu.is-active span:nth-child(3){
    transform: translate(-3px, 3px) rotate(-45deg);
}
#menu.is-active span{
    background-color: var(--primaryColor);
}
.contact-info{
    margin: 2rem 2rem;
    display: inline;
}
.contact-info img{
    padding-top: 1rem;
    width: 10%;
    height: 10%;
}
@media screen and (max-width: 575px){
    :root{--pading :1rem;}
    html{font-size: 13px;}
    .home{
        height: 10vh;
    }
    nav{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 82px;
        padding-top: 0;
         background-color: var(--bgColor-1);
         border-bottom: 1px solid var(--bgColor-2);
         z-index: 100;
        }

    nav ul{
        padding-top: 5rem;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bgColor-2);
    }
    nav ul.is-active{
        display: block;
    }
    nav ul li{
        display: block;
        text-align: center;
        margin: 50px;
    }
    .btn{padding: 0.3rem;}
    .container-texts{bottom: 0em;}
    h3{margin-bottom: 70px;}
    #menu{display: block;}

    .contact .container-images{
        display: none;
    }
    .contact .container-texts{
        width: 100%;
    }
    .contact{
        height: 80vh;
    }
    footer .content-footer p{
        width: 100%;
    }
    footer{
        padding-top: 4rem;
    }
}
@media screen and (min-width: 576px) and (max-width: 767px){
    :root{--pading :1rem;}
    html{font-size: 13px;}
    .home{
        height: 10vh;
    }
    .content{
        padding-top: 82px;
    }
    nav{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 82px;
        padding-top: 0;
         background-color: var(--bgColor-1);
         border-bottom: 1px solid var(--bgColor-2);
         z-index: 100;
        }

    nav ul{
        padding-top: 5rem;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 20%;
        height: 100%;
        background-color: var(--bgColor-2)
    }
    nav ul.is-active{
        display: block;
    }
    nav ul li{
        display: block;
        text-align: center;
        margin: 50px;
    }
    .container-texts{bottom: 0em;}
    h3{margin-bottom: 30px;}
    #menu{display: block;}

    .contact .container-images{
        display: none;
    }
    .contact .container-texts{
        width: 100%;
    }
    
    footer .content-footer p{
        width: 100%;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    :root{--pading :1rem;}
    html{font-size: 13px;}
    .home{
        height: 10vh;
    }
    nav{
        position: fixed;
        top: 2rem;
        left: 0;
        right: 0;
        height: 82px;
        padding-top: 0;
         background-color: var(--bgColor-1);
         border-bottom: 1px solid var(--bgColor-2);
         z-index: 100;
        }

    nav ul{
        padding-top: 7rem;
        display: none;
        position: fixed;
        top: 0;
        right:0;
        width: 20%;
        height: 100%;
        background-color: var(--bgColor-2);
    }
    nav ul.is-active{
        display: block;
        
    }
    nav ul li{
        display: block;
        text-align: center;
        margin: 50px;
    }
    .container-texts{bottom: 0em;}

    h3{margin-bottom: 70px;}
    #menu{display: block;}

    .contact .container-images{
        display: none;
    }
    .contact .container-texts{
        width: 100%;
    }
    .contact{
        height: 70vh;
    }
    footer{
        padding-top: 7rem;
        padding-bottom: 5rem;
    }
    
    footer .content-footer p{
        width: 100%;
    }
}
@media screen and (min-width: 992px) and (max-width: 1279px){
    :root{--pading :1rem;}
    html{font-size: 13px;}
    .home{
        height: 10vh;
    }
    nav{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 82px;
        padding-top: 0;
         background-color: var(--bgColor-1);
         border-bottom: 1px solid var(--bgColor-2);
         z-index: 100;
        }

    nav ul{ padding-top: 5rem;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 15%;
        height: 100%;
        background-color: var(--bgColor-2);
    }
    nav ul.is-active{
        display: block;
    }
    nav ul li{
        display: block;
        text-align: center;
        margin: 50px;
    }
    .container-texts{bottom: 0em;}
    h3{margin-bottom: 70px;}
    #menu{display: block;}
    .contact{
        height:81vh;
    }

    
    .contact .container-texts{
        width: 60%;
    }
    
    
    footer .content-footer p{
        width: 100%;
    }
}


@media screen and (min-height: 340px) and (max-height: 600px){
    :root{--pading :1rem;}
    html{font-size: 13px;}
    .home{
        height: 10vh;
    }
    nav{
        position: fixed;
        top: 2rem;
        left: 0;
        right: 0;
        height: 82px;
        padding-top: 0;
         background-color: var(--bgColor-1);
         border-bottom: 1px solid var(--bgColor-2);
         z-index: 100;
        }

    nav ul{
        padding-top: 5rem;
        display: none;
        position: fixed;
        top: 0;
        right:0;
        width: 20%;
        height: 100%;
        background-color: none;
    }none
    nav ul.is-active{
        display: block;
        
    }
    nav ul li{
        display: block;
        text-align: center;
        margin: 50px;
    }
    .container-texts{bottom: 0em;}

    h3{margin-bottom: 70px;}
    #menu{display: block;}

    .contact .container-images{
        display: none;
    }
    .contact .container-texts{
        width: 100%;
    }
    .contact{
        padding-top: 25rem;
        padding-bottom: 25rem;
        height: 70vh;
    }
    
    footer .content-footer p{
        width: 100%;
    }
}