#hero{
    position: relative;
    /* padding: 0; */
    display: flex;
    justify-content: center;
    height: auto;
    margin: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


#hero img{
    height: auto;
    width: 100vw;
    animation: fadeIn 0.5s ease-in-out;
}

#hero .image{
    display: none;
    opacity: 0;
}

#hero .image-active{
    display: block !important;
    opacity: 1;
}

#hero .home-carousel{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

#hero .home-carousel .detail{
    max-width: 1320px;
    height: 100%;
    background:none !important;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: end;
    padding: 25px 10px;
}
@media(max-width:991px){
    #hero{
        margin-top: 0px !important;
        padding-top: 70px;
    }
    #hero .home-carousel .detail{
        padding-top: 70px;
        padding-bottom: 10px;
    }
}

#hero .home-carousel .detail .slide{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100%;
    gap: 8px;
}

#hero .home-carousel .detail .button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#hero .home-carousel .detail .button button{
    border-radius: 100%;
    padding: 8px;
    width: 45px;
    height: 45px;
    border: 2px solid white;
    background: none
}

#hero .home-carousel .detail .button button i{
    color: white;
}
@keyframes slide {
    0% {
        width: 8px;
    }
    100%{
        width: 30px;
    }
}
@keyframes slideout {
    0% {
        width: 30px;
    }
    100%{
        width: 8px;
    }
}
#hero .home-carousel .detail .slide .slide-button{
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 0;
    animation: slideout 0.2s ease-in-out;
}

#hero .home-carousel .detail .slide .slide-active{
    width: 30px;
    background: #243F90;
    border-radius: 4px;
    animation: slide 0.2s ease-in-out;
}


#why .box{
    padding: 8px;
    /* height: 100%; */
    display: grid;
}

#why .box .content{
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    padding: 16px;
    gap: 32px;
}
#why .box .content img{
    width: 64px;
}

#why .container .title{
    margin: 0;
}

#why .content .title{
    gap: 0;
}

#why .container{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#why .button{
    display: flex;
    gap: 16px;
}

#why .button button{
    width: 220px;
    padding: 12px 0
}

#why .button .contact-btn{
    /* padding: 12px 48px; */
    border: 0;
    background: #E76E1B;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

#why .button .learn-btn{
    /* padding: 12px 48px; */
    border: 2px solid #E76E1B;
    background: white;
    border-radius: 100px;
    color: #E76E1B;
    font-weight: 600;
    font-size: 16px;
}
#service .content .box{
    display: grid;
    justify-content: center;
    padding: 16px;
}
#service .content .detail img{
    width: 70vw;
    max-width: 280px;
    height: 70vw;
    max-height: 280px;
}
#service .content .detail .title{
    gap: 16px;
}

#service .content .detail .title li{
    color: #5E6666;
}

#service .content .detail{
    display: flex;
    flex-direction: column;
    gap: 24px;
    
}

#service .content .box .detail{
    height: 100%;
    display: flex;
    align-items: start;
    width: min-content;
}
#service .content .box .more{
    width: auto;
    /* height: 100%; */
    display: flex;
    align-items: end;
    
}
#service .content .box .more a{
    color:#E76E1B;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}



#client .content{
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    justify-content: center;
}
#client .content img{
    height: 70px;
}




#blog .box{
    display: grid;
    padding: 12px;
}
#blog .boxs{
    display: grid;
}

#blog .card{
    border: 0;
    height: 100%;
}

#blog .card .card-body{
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: auto;

}

#blog .card .date{
    font-weight: 400;
    font-size: 14px;
}

#blog .card .main{
    height: 100%;
}

#blog .card .more a{
    display: flex;
    align-items: center;
    text-decoration: none;
    border-bottom: 2px solid #E76E1B;
    color: #5E6666;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}
#blog .card .more {
    display: flex;
    align-items: end;
    height: 100%;
}
#blog .card .more a i{
    color: #E76E1B;
}
#blog .boxs .card img{
    height: 200px;
}



#tapa .container{
    display: flex;
    align-items: center;
    gap: 32px;
}

#tapa .title{
    display: flex;
    align-items: center;
    margin: 0;
}

@media(max-width:515px){
    #tapa .container img{
        width: 100%;
    }
}
