
.mb-3{
    margin-bottom: 1rem;
}

.img-container{
    width: 100%;
    height: 50vh;
    background-color: #fff;
}

img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1{
    text-align: center;
}

form{
    width: 100%;
}

.form-title{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-title-line{
    display: flex;
    align-items: center;
}

.form-title-line i{
    margin: 0 15px;
    font-size: 32px;
    color: #FEA54D;
}

.line{
    width: 70px;
    height: 2px;
    background-color: #FEA54D;
}
.desc p{
    font-size: 18px;
}

h2{
    color: #FEA54D;
}

form label{
    display: block;
}

form input, form textarea{
    width: 100%;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #FEA54D;
    color: #fff;
}

form textarea{
    height: 200px;
    padding: 10px ;
    font-size: 16px;
    outline: 0;
}

form input{
    height: 42px;
    font-size: 16px;
    padding-left: 10px;
}

form input:focus, form textarea:focus{
    outline: 2px solid #FEA54D;
}

/* .btn-send{
    background-color: #FEA54D;
    border: 0;
    color: #fff;
    font-size: 18px;
    padding: 12px 40px;
    border-radius: 4px;
    cursor: pointer;
} */

/*hero banner */

.hero {
    width: 100%;
    height: 50vh;
    background-color: gray;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.hero .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.hero .hero-content {
    width: 100%;
    height: 50vh;
    position: absolute;
    z-index: 99;
}

.hero .hero-content .content {
    margin-top: 150px;
    text-align: center;
    align-items: center;

}

.hero .hero-content .link {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;


}

.hero .hero-content a {
    text-decoration: none;
    color: white;
}

.hero .hero-content .link u {
    background-color: transparent;
    color: #FEA53D;
}

.hero .hero-content a:hover {
    color: #FEA53D;
}

.hero .hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #FEA53D;

}

.hero .hero-content .content p {
    font-size: 25px;
    font-weight: 600px;
    margin-top: -20px;
    margin-left: 40px;
    color: #ddd;

}