*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

nav 
{
    position: absolute;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

nav a 
{
    color: white;
}

nav .logo
{
    font-size: 2em;
    font-weight: bold;
}

nav ul
{
    display: flex;

}

nav ul li 
{
    margin: 0 25px;
}

nav ul li a:hover 
{
    color: rgb(20, 209, 193);
    transition: 1s;
}

nav .menu-hamburger
{
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    width: 30px;
}

.mobile-menu
{
    margin-left: 0;
}

@media screen and (max-width: 900px) {
    nav
    {
        padding: 0;
    }
    nav .menu-hamburger
    {
        display: block;
    }
    nav ul 
    {
        top: 0;
        left: 0;
        background-color: rgba(88, 88, 88, 0.2);
        backdrop-filter: blur(9px);
        width: 100%;
        height: 100vh;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-left: -100%;
        transition: all 0.5s ease;
    }
    nav ul li 
    {
        margin: 25px 0;
        font-size: 1.2em;
        text-shadow: -5px 2px 6px #000000;
    }
    nav .logo
    {
        position: absolute;
        top: 50px;
        left: 50px;
    }
}

header
{
    padding-left: 290px;
    padding-right: 200px;
    color: white;
    height: 954px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-left img
{
    height: auto;
    width: 400px;
}

header .header-right
{
    width: 897px;
}

header .header-right h5
{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

header .header-right h3
{
    margin-top: 38px;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
    text-transform: uppercase;
}


header .header-right h4
{
    margin-top: 20px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    text-transform: uppercase;
}

header .header-right p
{
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    margin-bottom: 60px;
}

header .header-right span
{
    padding: 10px;
    border : 2px solid white;
}

header .header-right span img
{
    padding-right: 10px;
}

section
{
    height: 911px ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container
{
    margin-top: 100px;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 30px 10%;
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow: 0px 10px 50px -10px #d6d6d6;
    background-color: white;
}


.container .title
{
    text-align: center;
    color: #2a2a2a;
    margin-bottom: 50px;
}

.container .title h6
{
    font-size: 1em;
}

.container .title h3
{
    font-size: 2.2em;
}

.container .title h3 span
{
    color: #1fb3bf;
}

.container form
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;
}

.container form input
{
    width: 47%;
}

.container form input:hover,
.container form textarea:hover
{
    border-bottom: 2px solid #1fb3bf;
}

.container form input,
.container form textarea
{
    margin: 10px 0;
    padding: 10px;
    border: none;
    outline: none;
    border-bottom: 2px solid #e4e4ec;
    transition: 0.2s;
}

.container form textarea
{
    width: 100%;
    margin-bottom: 20px;
    resize: none;
    height: 100px;
}



.container form button
{
    transition: 0.5s;
    width: 192px;
    height: 50px;
    border-radius: 8px;
    border: none;
    background-color: #1fb3bf;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 30px;
    outline: none;
}

.container form button:hover
{
    transition: 0.3s;
    color: #1fb3bf;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background-color: white;
    border: 1px solid #1fb3bf;
}

footer
{
    padding: 50px;
    color: white;
    font-size: 23px;
    background-color: #0A0B0F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer section
{
    height: auto;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

footer section div
{
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

footer section div span
{
    margin-top: 10px;
    font-size: 20px;
}

footer section div span a
{
    color: white;
}

footer .copy
{
    font-size: 20px;
    color: #667085;
}




@media screen and (max-width: 1858px) {
    header 
    {
        display: flex;
        justify-content: center;
    }
    header .header-left img 
    {
        margin-right: 50px;
    }
}


@media screen and (max-width: 1550px) {

    header 
        {
            padding-left: 100px;
            padding-right: 100px;
        }
}

@media screen and (max-width: 1400px) {

    header 
        {
            padding-left: 50px;
            padding-right: 50px;
        }
}




@media screen and (max-width: 1300px) {

    header .header-right p
    {
        width: 700px;
    }
    header .header-right 
    {
        margin-left: 40px;
    }

    header 
    {
        padding-left: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 1240px) {
    header .header-left img
    {
        height: 200px;
        width: auto;
    }
    header 
    {
        height: auto;
        padding-top: 30px;
    }
    header .header-left
    {
        margin-top: 12%;
    }
    header .header-right
    {
        margin-top: 15%;
    }
    header .header-right h3
    {
        font-size: 46px;
    }
    header .header-right h4
    {
        font-size: 16px;        
    }
    header .header-right p
    {
        font-size: 13px;
        width: 626px;
    }
}


@media screen and (max-width: 1050px) {
    header .header-left
    {
        display: none;
    }
}


@media screen and (max-width: 700px) {
    header .header-right {
        margin-left: 0px;
    }
}

@media screen and (max-width: 700px) {
    header .header-right p {
        width: auto;
    }
}

@media screen and (max-width: 626px) {
    .header-right
    {
        display: flex;
        flex-direction: column;
    }
    header .header-right span
    {
        border: none;
        margin-right: 0px;
        padding: 0;
        padding-bottom: 10px;
    }

    .container form 
    {
        flex-direction: column;
        width: 100%;
    }

    .container form input 
    {
        width: 100%;
    }

    .container
    {
        border-radius: 0;
        box-shadow: none;
    }
    

}

@media screen and (max-width: 600px){
    nav .logo 
    {
        left: 22px;
    }
}

@media screen and (max-width: 600px) {
    header .header-right h3 {
        font-size: 25px;
    }
    header .header-right p
    {
        margin-top: 0px;
    }
    header .header-right h4 
    {
        margin-top: 0px;
        line-height: 27px;
    }
    header .header-right h3 
    {
        margin-top: 0px;
    }   
}

@media screen and (max-width: 600px) {
        header 
        {
            padding-left: none;
        }
        header 
        {
            padding-top: 50px;
        }
        header .header-right h3
        {
            line-height: 30px;
            padding-top: 5px;
        }
}
    
@media screen and (max-width: 420px) {        
    footer section
    {
        height: auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
    }   
    footer section div 
    {
        width: 100%;
    }
            
    .container .title h3 span 
    {
        font-size: 27px;
    }
    .container .title h3
    {
        font-size: 25px;
    }
    header 
    {
        padding-top: 70px;
    }
}

@media screen and (max-width: 300px) {
    footer
    {
        padding: 7px;
        padding-top: 20px;
    } 

}