: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{
    padding-top: 0.5rem;
    font-size: 1.5rem;
   padding-bottom: 0.5rem;
}
h4{
    font-size: 1.25rem;
    color: var(--secondaryColor);
}
h5{
    font-size: 1.37rem;
    letter-spacing: 2px;
}
p{
    color: var(--secondaryColor);
    letter-spacing: 1px;
    line-height: 1.8rem;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 3rem;

}
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);
}
.butn{
    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;
}
.butn:hover{
    background-color: transparent;
    border: 2px solid var(--primaryColor);
}

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;
}
.form-content{
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: var(--bgColor-2);

}
form {
    left: 30%;
    position: relative;
    width: 40%;
    border-radius: 30px;
    background: #080a08;
    
    }
    .form-left-decoration,
    .form-right-decoration {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    border-radius: 20px;
    background:  #1080e2;
    }
    .form-left-decoration {
    bottom: 60px;
    left: -30px;
    }
    .form-right-decoration {
    top: 60px;
    right: -30px;
    }
    .form-left-decoration:before,
    .form-left-decoration:after,
    .form-right-decoration:before,
    .form-right-decoration:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    border-radius: 30px;
    background: #ffffff;
    }
    .form-left-decoration:before {
    top: -20px;
    }
    .form-left-decoration:after {
    top: 20px;
    left: 10px;
    }
    .form-right-decoration:before {
    top: -20px;
    right:0;
    }
    .form-right-decoration:after {
    top: 20px;
    right: 10px;
    }
    .circle {
  position: absolute;
  bottom: 80px;
  left: -55px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  }
    .form-inner {
    padding:30px 0px 30px 70px;
    }
    .form-inner .name{
        display: block;
    width: 35%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 20px;
    background: #ffffff;
    }
    .form-inner .email{
        display: block;
    width: 60%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 20px;
    background: #ffffff;
    }
    .form-inner textarea {
    display: block;
    width: 90%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 20px;
    background: #ffffff;
    }
    .form-inner textarea {
    resize: none;
    }
#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);
}

@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 > a{display: none;}
    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;
    }
    .container-texts{bottom: 0em;}

    #menu{display: block;}
    .form-box {
        left:10%;
        width: 80%;

    }
    .form-inner {
        padding:1rem 1rem 1rem 2rem;
        }
    .form-inner .name{width: 100%;}
    .form-inner .email{width: 100%;}
    .form-inner textarea{width: 100%;}
    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 > a{display: none;}
    nav ul{
        padding-top: 5rem;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 20%;
        height: 100vh;
        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;}

    #menu{display: block;}
    .form-box {
        left:10%;
        width: 80%;

    }
    .form-inner {
        padding:1rem 1rem 1rem 2rem;
    }
    .form-inner .name{width: 100%;}
    .form-inner .email{width: 100%;}
    .form-inner textarea{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 > a{display: none;}
    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;}

    #menu{display: block;}
    .form-box {
        left:20%;
        width: 60%;

    }
    .form-inner {
        padding:1rem 1rem 1rem 2rem;
    }
    .form-inner .name{width: 100%;}
    .form-inner .email{width: 100%;}
    .form-inner textarea{width: 100%;}


    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 > a{display: none;}
    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;}

    #menu{display: block;}
    .form-box {
        left:25%;
        width: 50%;

    }
    .form-inner {
        padding:1rem 1rem 1rem 2rem;
    }
    .form-inner .name{width: 100%;}
    .form-inner .email{width: 100%;}
    .form-inner textarea{width: 100%;}
    
    
    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 > a{display: none;}
    nav ul{
        padding-top: 5rem;
        display: none;
        position: fixed;
        top: 0;
        right:0;
        width: 25%;
        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;}

    #menu{display: block;}
    .form-box {
        left:10%;
        width: 80%;

    }
    .form-inner {
        padding:1rem 1rem 1rem 2rem;
    }
    .form-inner .name{width: 100%;}
    .form-inner .email{width: 100%;}
    .form-inner textarea{width: 100%;}
    
    footer .content-footer p{
        width: 100%;
    }
}
