a {
    text-decoration: none;
}
ul {
    list-style: none;
    gap: 12px;
}
.custom-bg{
    background-color: #051a5b;
    color: white;
}
.custom-btn{
    background-color: #051a5b;
    color: white;
}
.custom-btn:hover{
    background-color: #0f2e8c;
    color: white;
}
.main_logo,
.flag_logo {
    width: 40px;
    height: auto;
}
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 999;
    background-color: #ffffff;
}
header>div{
    padding: 0.5rem 0;
}
.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 {
  background-color: #d4edda;
  color: #ffffff;
  padding: 0.75rem 2.5rem;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  margin-bottom: 15px;
  position: fixed;
  right: 10px;
  top: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
.close {
  cursor: pointer;
  font-size: 20px; 
}

#error-alert{
  background-color: #f15347;
}

#success-alert{
  background-color: rgb(41, 200, 65);
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.swiper-button-prev::after,.swiper-button-next::after{
    font-size: 1.8rem !important;
    font-weight: 800;
    padding: 0.7rem 1rem;
    text-align: center;
    border-radius: 50%;
    color: rgb(244, 244, 244);
  }