.hero{
    width: 100%;
    height: 450px;
    background-image: url('../images/single-about.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 16px;
}
.hero p:nth-child(1){
    font-size: 2.8em;
    font-weight: 700;
    color: white;
    font-family: Merriweather;
}
.hero p:nth-child(2){
    color: white;
    font-weight: 700;
    display: flex;
}
.brands{
    padding: 20px;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.5rem;
}
.brands > div{
    display: flex;
    gap: 6.5rem;
}
@media (max-width: 1500px){
    .hero{
        font-size: 14px;
    }
    .hero p:nth-child(1){
        font-size: 2em;
    }
    .hero p:nth-child(2){
        font-size: 0.9em;
    }
}
@media (max-width: 1300px){
    .brands{
        flex-direction: column;
        height: 100%;
        gap: 2rem;
    }
    .brands > div{
        gap: 2rem;
    }
}
@media (max-width: 500px){
    .brands > div{
        flex-direction: column;
    }
    .brands > div > img{
        width: 150px;
    }
}
form{
    width: 100%;
    height: 700px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}
.left-form{
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.left-form p{
    font-size: 2em;
    font-weight: 500;
}
.left-form > div{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2em;
}
.left-form > div input{
    width:100%;
    height: 50px;
    border: 1px solid rgb(182, 182, 182);
    background-color: transparent;
    border-radius: 5px;
    padding: 20px;
}
textarea{
    max-width: 100%;
    max-height: 200px;
    border: 1px solid rgb(182, 182, 182);
    background-color: transparent;
    border-radius: 5px;
    padding: 20px;

}
.left-form button{
    border-radius: 5px;
    width: 100%;
    height: 50px;
    font-size: 1.1em;
    font-weight: 500;
    color: white;
    background-color: #0C5ADB;
    cursor: pointer;
    border: 2px solid #0C5ADB;
    transition: 0.25s;
}
.left-form button:hover{
    background-color: transparent;
    color: #0C5ADB;
}
.right-form{
    background-color: #252628;
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px 50px;
}
.right-form > div{
    display: flex;
    gap: 1em;
    align-items: center;
}
.right-form > div > i{
    font-size: 2.3rem;
    color: white;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0C5ADB;
    border-radius: 5px;
}
.right-form > div > div{
    gap: 1rem;
}
.right-form > div > div p:nth-child(1){
    color: white;
    margin-bottom: 0.5em;
    font-family: Merriweather;
    font-weight: 500;
    font-size: 1.3em;
}
.right-form > div > div p:nth-child(2){
    font-weight: 500;
    color: rgba(255, 255, 255, 0.74);
}
.right-form > hr{
    border: 0.8px solid rgba(255, 255, 255, 0.246);
}
@media (max-width: 750px){
   form{
    flex-direction: column;
    height: 100%;
    padding: 50px 20px;
   }
   .left-form {
    width: 100%;
   }
   .right-form{
    width: 100%;
   }
}
@media (max-width: 350px){
    form{
        font-size: 10px;
    }
    .left-form{
        height: 500px;
    }
    .right-form{
        height: 500px;
    }
    .right-form > div > i{
        font-size: 2em;
        width: 50px;
        height: 50px;
    }
    .right-form{
       padding: 20px;
    }
 }