
.row{
    display: flex;
    flex-wrap: wrap;
}

.col-4{
    width: 33.33%;
    padding: 0 15px;
}

section .container{
    width: 1230px;
}

.img-container{
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}


img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

img:hover{
    transform: scale(1.1);
}
/*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;

}


