*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'aquire-bold';
    src: url('fonts/AquireBold-8Ma60.ttf') format('truetype');;
 }

 @font-face {
    font-family: 'sfpro';
    src: url('fonts/SFPRODISPLAYBOLD.ttf') format('truetype');;
 }

 a{
     text-decoration: none;
 }

 .nav{
    background-color: #4c4b4e;
    height: 200px;
    padding: 20px;
}

 #x-logo{
    font-family: 'aquire-bold';
    font-size: 25px;
    color: rgb(103, 255, 172);
 }

 #text-logo1{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-left: 10px;
    color: white;
}

#text-logo2{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 300;
    margin-left: 10px;
    color: rgb(103, 255, 172);
}

h1{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: white;
}

h2{
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
    margin: auto;
    padding: 0px 50px;
}

h3{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgb(103, 255, 172);
}

.container{
    text-align: center;
    padding-top: 50px;
    font-size: 25px;
    max-width: 768px;
    margin: auto;
}

.input{
    display: block;
    margin: 15px 50px;
    border: solid grey 1px;
    border-radius: 30px;
    height: 30px;
    width: 85%;
    padding: 10px;
    transition-duration: 0.3s;
}

.input:hover{
    transition: 0.3s ease-out;
    border: solid rgb(103, 255, 172) 1.5px;
}

textarea:hover{
    transition: 0.3s ease-out;
    border: solid rgb(103, 255, 172) 1.5px;
}

.container p{
    font-size: 25px;
    padding: 15px 50px;
    font-family: "sfpro";
    text-align: justify;
}

p:nth-child(3){
    color: rgb(103, 255, 172);
}

#terms{
    font-size: 12px;
    padding-top: 0;
    opacity: 40%;
}

textarea{
    display: block;
    margin: 15px 50px;
    border: solid grey 1px;
    border-radius: 30px;
    max-width: 85%;
    min-width: 85%;
    min-height: 150px;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    transition-duration: 0.2s;
}

#terms2{
    font-size: 12px;
    padding-top: 0;
    opacity: 40%;
}

b{
    opacity: 100%;
    color: rgb(255, 0, 0);
}

button:last-child{
    width: 70px;
    height: 40px;
    opacity: 70%;
}

button:last-child:hover{
    opacity: 100%;
    cursor: pointer;
}

.footer{
    background-color: #4c4b4e;
    width: 100%;
    margin-top: 60px;
    color: white;
    text-align: center;
    padding: 40px 0;
}

#logo-footer{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-right: 10px;
}

#logo-footer span{
    font-weight: 300;
}

#all-rights{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: auto;
}

.links-container{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding: 20px;
}

.link{
    color: #869FB2;
    padding: 30px;
}

.links-container span{
    color: #869FB2;
}

.social img{
    width: 35px;
    padding: 5px;
}

@media (max-width:1366px)
{
    .footer{
        margin-top: 90px;
    }
}






