@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --blue:#1277AD;
}

body{
    font-family: 'Raleway', sans-serif;
}

.logo{
    max-height: 76px;
}


/* navbar */
/* .bg-nav{
    background-color: rgba(255, 255, 255, 0.479) !important;
    backdrop-filter: blur(10px);
} */

.navbar{
    background: #ffffffab;
    &.scrolled {

        background: #ffffff;
        transition: all 0.5s ease-in-out;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
      }
}

@media screen and (max-width: 768px) {
    .navbar{
        background-color: white;
    }
}

.navbar-nav{

    & .nav-item{
        padding: 0 5px;
        & .nav-link{
            font-weight: 500;
        }
        & .nav-link:hover{
            color:var(--blue);
        }

        & .nav-link.active{
            color:var(--blue);
        }
  
    }
}

@media screen and ( min-width: 900px ) {
 
    .navbar-nav .nav-item.dropdown.drop-hover:hover .dropdown-menu{
        display: block;
        border:none;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        /* backdrop-filter: blur(10px) !important;
        background-color: rgba(255, 255, 255, 0.582) !important; */
    }
    & .dropdown-item{
        color: var(--secondary);
    }
    
}

/* slider */
.slider{
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.title{
    font-weight: bolder;
    font-size: 2.5rem;
    color: var(--blue);
}

section .category-img{
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    & h3{
        position: relative;
        font-weight: bolder;
        color: white;
        padding: 10px 0px;
        transition: all 0.5s ease; 
        transform: translatey(280px);
        background-color: rgba(255, 255, 255, 0.219);
        backdrop-filter: blur(5px);
    }

    &:hover{
        & h3{
            transform: translatey(250px);
            transition: all 0.5s ease; 
            color: var(--secondary);
        }
    }
}

.numbering{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.582);
    & .bg-blur{
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.178);
    }
}

.cover-img{
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.link-dark {
    text-decoration: none;
    color: #000;
    &:hover{
        color: var(--blue);
    }

}
.bg-vision{
    background-color: rgb(240, 255, 248);
}
.bg-mission{
    background-color: rgb(230, 249, 255);
}

.bg-value{
    background-color: rgb(255, 245, 230);
}
.bg-back{
    background-color: rgb(244, 250, 255);
}
.list-style{
    list-style: none;
}

.footer{
    background-color: var(--blue);
    & a{
        color: rgb(211, 211, 211);
        text-decoration: none;
        transition: all 0.2s ease-in-out;
        &:hover{
            color: white;
            transition: all 0.2s ease-in-out;
            text-decoration: underline;
        }
     }
     & .bg-copyright{
        background-color: #031a5f;
     }

}


.a-link{
    text-decoration: none;
    color: white;
}

.bg-blue{
    background-color: var(--blue);
}
.text-blue{
    color: var(--blue);
}
.bg-light-blue{
    background-color: #e2f4fd;
}



/*  */

.notice-wrapper {
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    padding: 10px ;
    text-align: center;
    position: relative;
    height: 250px; /* Adjust the height accordingly */
  }
  
  .notice {
    height: 240px;
  }
  
  .border-blue{
    border: 1px solid var(--blue);
  }
  
  .btn-blue{
    background-color: var(--blue);
    color: white;
    border: 1px solid var(--blue);
  }
  .btn-blue:hover{
    background-color: white;
    color: var(--blue);
    border: 1px solid var(--blue);
  }


  @media (min-width:1000px) and (max-width: 1500px) {
    .dropdown .dropdown-menu{
      
        transition: all 0.5s ease;
    }

     .dropdown:hover .dropdown-menu {
        margin-top: 0;
        display: block;
        transition: all 0.5s ease;
      }
  }
   