@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

* {
    font-family: 'Poppins', sans-serif;
}

.blur-header {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.6) !important;
}

#menu-link {
    font-size: 17px;
    color: #000000 !important;
    transition: all 0.3s ease;
}

#menu-link:hover {
    color: #0b4e7e !important;
}

.btn-custom {
    background-color: #0d66a5;
    border: 1px solid #0b4e7e;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #083d63;
    border-color: #083d63;
}

.border-primary {
    border-color: #0d66a5 !important;
}

.main-banner {
    background-image:
        linear-gradient(
            to right,
            rgb(38, 58, 97),  /* left: darkest */
            rgba(37, 61, 105, 0.75),  /* middle: medium */
            rgba(46, 64, 101, 0.4)   /* right: lightest */
        ),
        url('../../assets/img/banner.jpg');
    background-size: cover;
    background-position: top;
}

.banner-box {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.blue-pill {
    background-color: #0d66a57e !important;
    border: 1px solid #0d66a5 !important;
}

.btn-custom-white {
    background-color: #ffffff00;
    border: 1px solid #949494;
    color: #cdcdcd;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom-white:hover {
    background-color: #9494942e;
    border: 1px solid #949494;
    color: #cdcdcd;
    font-size: 15px;
    text-decoration: none;
}

.btn-custom-light {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom-light:hover {
    background-color: #9494942e;
    border: 1px solid #949494;
    color: #cdcdcd;
    font-size: 15px;
    text-decoration: none;
}

.txt-primary {
    color: #0d66a5;
}

.txt-secondary {
    color: #ff9500;
}

.txt-gradient {
    background: linear-gradient(90deg, #ff9500, #ff0000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff9500, #ff0000, #ff9500);
    background-size: 200% 100%;
    background-position: left center;
    border: 1px solid #ff9500;
    font-size: 15px;
    text-decoration: none;
    transition: background-position 0.5s ease, border 0.5s ease;
}

.btn-gradient:hover {
    background-position: right center;
    border: 1px solid #ff0000;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(90deg, #ff9500, #ff0000, #ff9500) 1;
}

.txt-banner {
    color: #083d63;
}

.border-custom {
    border-color: #083d63 !important;
}

.icon {
    background-color: #0d66a539;
    color: #0d66a5;
}

.icon-flame {
    background-color: #a54a0d20;
    color: #ff9500;
}

.icon-success {
    background-color: #0da55624;
    color: #038515;
}

.bg-gray {
    background-color: #f6f6f6;
}

.card-img {
    height: 250px;
    object-fit: cover;
}

.btn-outline-black {
    background-color: #0d66a539;
    color: #0d66a5;
}

.bg-custom {
    background-color: #083d63;
}

footer {
    border-top: 20px solid #083d63;
    background-color: #15181a;
    color: #fff;
}

.text-3-lines {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.img-hover {
    transition: transform 0.6s ease;
}

.img-wrapper:hover .img-hover {
    transform: scale(1.1);
}

.blog-wrapper {
    overflow: hidden;
    border-radius: 1rem 0 0 1rem;
}

.blog-hover {
    transition: transform 0.6s ease;
}

.blog-wrapper:hover .blog-hover {
    transform: scale(1.1);
}
