@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend Deca", sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    color: #888;
    background: #020008;
}


.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 120px;
}

.logo{
    width: 120px;
}

.logo img{
    width: 100%;
}

.header a.contact{
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    background: #080606;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    max-width: 200px;
}

.header a.contact:hover{
    color: #fff;
    background: #E31E24;
    border: 1px solid #E31E24;
}

.banner{
    width: 100%;
    height: 400px;
    background: url('../img/banner.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.hero{
    width: 100%;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 120px;
    color: #888;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.92)), url('../img/hero.jpg');
}

.hero h1{
    font-size: 54px;
    margin-bottom: 20px;
    color: #E31E24;
}


.hero p{
    font-size: 14px;
    line-height: 25px;
}

.hero a{
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #E31E24;
    display: inline-block;
    margin-top: 30px;
    border-radius: 3px;
}

.container{
    padding: 60px 120px;
}


.container p{
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 15px;
}

ul.list{
    list-style: none;
    padding: 0px 40px;
}

ul.list li{
    margin-bottom: 10px;
}

ul.list li i{
    margin-right: 10px;
    color: #E31E24;
}

.title{
    margin: 20px auto;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 44px;
}

.partners{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.partners div{
    width: 100%;
    background: #fff;
    padding: 10px;
    text-align: center;
}

.partners div img{
    height: 50px;
}

.copyrights{
    text-align: center;
    font-size: 12px;
    padding: 20px;
}

.copyrights a{
    text-decoration: none;
    color: #E31E24;
}

.contact{
    width: 100%;
    padding: 60px 120px;
    display: grid;
    grid-template-columns: 400px auto;
    gap: 20px;
}

.infos{
    width: 100%;
    background: #E31E24;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.infos h3{
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}

.infos p{
    font-size: 14px;
    font-weight: 300;
    color: #f0f0f0;
    display: block;
    margin-bottom: 30px;
}

.infos div{
    display: flex;
}

.infos div p{
    font-size: 14px;
    margin-top: 5px;
}

.infos div i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    margin-right: 20px;
    color: #E31E24;
}

.col-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form form{
    margin-top: 30px;
}

.form input,
.form textarea{
    width: 100%;
    padding: 10px;
    background: #070514;
    color: #fff;
    font-weight: 400;
    border: 0;
    border: 1px solid #0f0606;
    outline: 0;
    resize: none;
    font-size: 15px;
    margin-top: 0px;
}


textarea{
    min-height: 100px;
    margin-top: 20px;
}

.form button{
    display: inline-block;
    padding: 10px 40px;
    border-radius: 30px;
    border: 0;
    outline: 0;
    background: #E31E24;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}


@media (max-width: 768px) {

    .header{
        padding: 10px;
    }

    .header a.contact{
        max-width: 150px;
        font-size: 12px;
    }

    .hero
    {
        padding: 120px 20px 50px 20px;
    }

    .title{
        font-size: 32px;
    }

    .partners,
    .contact,
    .col-2{
        grid-template-columns: 1fr;
    }

    .container,
    .contact{
        padding: 30px 15px;
    }

    ul.list{
        padding: 0px 15px;
    }
}