a {
    text-decoration: none;
}
ul {
    list-style: none;
    gap: 12px;
}
.custom-bg{
    background-color: #005f73;
    color: white;
}
.custom-btn{
    background-color: #0099b8;
    color: white;
}
.custom-btn:hover{
    background-color: #0099b892;
    color: white;
}
.main_logo,
.flag_logo {
    width: 40px;
    height: auto;
}
header {
    background: url(../img/cover.png) no-repeat bottom right;
    min-height: 114px !important;
    background-size: auto 150px !important;
}
.nav-item{
   padding: 0rem 1rem;
}
nav .nav-link {
    color: white;
}
.custom-nav,
.banner-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
}

.custom-nav button,
.banner-nav button {
    background: #005f73;
    color: white;
    border: none;
    padding: 16px 12px;
    cursor: pointer;
}
.owl-carousel {
    position: relative;
}

.banner {
    position: relative;
    height: 360px;
    overflow: hidden;
}
img.banner-image {
    height: 360px;
    width: 100%;
}
.caption-text{
    position: absolute;
    right: 0;
    top: 5%;
    padding: 4px 12px;
    color: #fff;
    background-color: #005f73;
    opacity: 75%;
}
main{
    position: relative;
}
.custom-alert {
    position: absolute; 
    top: 10px;     
    right: 20px;   
    background-color: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
    padding: 15px; 
    border-radius: 5px; 
    z-index: 1000;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    animation: slideIn 0.5s; 
}

.close {
    cursor: pointer; 
    margin-left: 15px; 
    font-size: 20px; 
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}