@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Jost', sans-serif;
}

.navbar {
    background-color: #fff;
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
    margin-left: -40px;
}

.nav-link {
    color: #155153 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px !important;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }

    .nav-item.dropdown:hover>a>.dropdown-icon {
        transform: rotate(180deg);
    }
}

.btn-custom {
    background-color: white;
    color: #155153;
    border: 2px solid #155153;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background-color: #155153;
    color: #fff;
}

.navbar-collapse {
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    gap: 10px;
}

.dropdown-menu {
    min-width: 200px;
}

@media (max-width:768px) {
    .navbar-brand img {
        width: 260px;
        height: 40px;
    }

    .btn-custom {
        display: none !important;
    }
}

.footer-logo {
    width: 100%;
    max-width: 380px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-link a {
    color: white;
    text-decoration: none;
    margin-bottom: 0.4rem;
}

.footer-link a:hover {
    text-decoration: underline;
}

.footer-title {
    color: #bbb;
    font-weight: 600;
    font-size: 14px;
}

.footer-text {
    font-size: 15px;
    text-align: justify;
}

.copyright-text {
    color: #ffc107;
    font-size: 0.95rem;
}

footer {
    color: #2F2E2E !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #2E2D2D !important;
}

.col-md-4 mb-4 {
    width: 200;
}

.gap-3 {
    gap: 2rem !important;
}

.footer-link {
    justify-content: space-between;
    height: 180px;
}

@media (min-width: 768px) {
    .contain-right {
        padding-left: 0px !important;
    }
}