body {
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Abril Fatface', cursive;
}
.navbar {
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.98);
}
.navbar-nav {
    padding-top: 40px;
    gap: 15px;
    padding-top: 40px;
    text-align: center;
}
.navbar-brand {
    font-weight: 700;
    transition: all 0.2s ease;
}
.navbar-brand:hover, 
.navbar-brand:focus
.nav-link:hover, 
.nav-link:focus {
    color: rgba(46, 173, 128, 1);
}
.navbar-large {
    padding: 30px 1rem;
}
.navbar-small {
    padding: 10px 1rem;
}
.nav-link {
    font-size: 20px;
    font-weight: 700 !important;
}
.dropdown-item {
    padding: 15px 1.5rem;
}
.dropdown-menu {
    padding: 20px 0;
    font-size: 20px;
    text-align: center;
}
.social-logo-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    justify-content: center;
    gap: 50px;
    position: relative;
    padding: 20px;
    margin: 1rem 0;
}
.social-logo-container i {
    font-size: 35px;
    color: rgba(46, 173, 128, 1); ;
    transition: all 0.2s ease;
}
.social-logo-container i:hover {
    font-size: 35px;
    color: black;
}
.close-center-button {
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #5B0F28;
    color: #fafafa;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.closecenter-button:hover, .mobile-center-button:active {
    background-color: #000;
    color: #fff;
}
.accreditation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjust the spacing between items as needed */
    justify-content: center;
}
.accreditation-item {
    width: 125px;
    height: 75px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 8px;
}
.accreditation-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media screen and (min-width: 992px) {
    .navbar-nav {
        padding-top: initial;
        gap: initial;
        padding-top: initial;
        text-align: initial;
    }
    .dropdown-item {
        padding: .25rem 1.5rem;
    }
    .dropdown-menu {
        top: 52px;
        left: -20px;
        border: none;
        border-radius: 0;
        font-size: 16px;
        padding: .5rem 0;
        text-align: left;
    }
    .social-logo-container::before,
    .social-logo-container::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 18vw;
        height: 2px; 
        background-color: rgba(46, 173, 128, 1); 
    }
    .social-logo-container::before {
        left: 15%; 
    }
    .social-logo-container::after {
        right: 15%; 
    }
    .accreditation-item {
        width: 166px;
        height: 100px;
    }
}