@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .03rem;
}

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.form-control-feedback {
    position: absolute;
    top: .6rem;
    right: 2px;
    padding-right: 1.4rem;
    padding-left: 16px;
    z-index: 2;
    align-self: center;
    display: block;
    text-align: center;
    pointer-events: none;
    background-color: white;
}

.primary {
    background-color: #2d4ea9;
}

.primary-text {
    color: #2d4ea9;
}

.navbar-brand {
    transform: translateX(-50%);
    left: 50%;
    position: relative;
}

.navbar {
    background-color: white;
    height: 136px;
}

#logo {
    height: 136px;
}

.nav-link.active {
    background-color: #2d4ea9;
    color: white !important;
    border-radius: 4px;
    padding-left: 12px;
    padding-right: 12px;
}

#languageNavItem {
    right: 0;
    font-size: 12px;
}

.language-item {
    --bs-dropdown-link-active-bg: #2d4ea9;
}

.primary-button {
    background-color: #2d4ea9;
    color: white !important;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
}

.text-shadow {
    text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.56);
}

.text-muted {
    color: #9e9e9e !important;
}

.triangle {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #343a40;
}

.color-hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter .3s ease-in-out;
}

.color-hover:hover {
    filter: none;
    -webkit-filter: grayscale(0);
}

.nav-dropdown-item {
    transition: color .2s ease-in-out;
}

.nav-dropdown-item:hover {
    color: #a1c0ff !important;
    background-color: #2c2c29;
}

.dropdown-menu-left {
    right: auto;
    left: 50%;
    transform: translate(-10%, 0);
}

#languageDropdown {
    border-radius: 0;
    background-color: #f5f5f5;
    border: none;
    margin: 0;
    width: 96px;
    max-width: 96px;
    min-width: 96px;
}

@media (max-width: 992px) {
    #navbarSupportedContent {
        background-color: white;
        height: 100%;
    }

    .triangle {
        display: none;
    }
}

@media all and (min-width: 992px) {
    .dropdown-menu-center {
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item #aboutDropdown {
        display: none;
    }

    .navbar .nav-item:hover .nav-link {
    }

    .navbar .nav-item:hover #aboutDropdown {
        display: block;
    }

    .navbar .nav-item #aboutDropdown {
        margin-top: 24px;
    }

    .navbar .nav-item:hover #aboutDropdown::after {
        content: "";
        position: absolute;
        top: -36px;
        left: 0;
        right: 0;
        bottom: 100%;
        background-color: transparent;
    }

    .navbar .nav-item #servicesDropdown {
        display: none;
    }

    .navbar .nav-item:hover .nav-link {
    }

    .navbar .nav-item:hover #servicesDropdown {
        display: block;
    }

    .navbar .nav-item #servicesDropdown {
        margin-top: 24px;
    }

    .navbar .nav-item:hover #servicesDropdown::after {
        content: "";
        position: absolute;
        top: -36px;
        left: 0;
        right: 0;
        bottom: 100%;
        background-color: transparent;
    }
}

.grecaptcha-badge {
    z-index: 9999999999 !important;
}

@media (min-width: 992px) {
    .hide-desktop {
        display: none;
    }
}

/* Animations */
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.zoom-out-anim {
    animation: 1s ease-out 0s 1 zoomOut;
}

.zoom-in-hover-background > img:first-child {
    transition: all .5s;
}

.zoom-in-hover-background:hover > img:first-child {
    transform: scale(1.2);
}

.outline-white {
    transition: all .5s;
}

.outline-white:hover {
    background-color: white !important;
    color: black !important;
}

.staff-image {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all .3s ease-in-out;
    transform: scale(1.05);
}

.staff-image:hover {
    filter: none;
    -webkit-filter: grayscale(0);
    transform: scale(1);
}

.scale-up {
    transition: all .3s ease-in-out;
}

.scale-up:hover {
    transform: scale(1.15);
}

.text-primary-hover {
    transition: all .3s;
}

.text-primary-hover:hover {
    color: #2d4ea9;
}

.text-underline-hover {
    transition: all .3s;
}

.text-underline-hover:hover {
    text-decoration: underline;
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(200%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-from-bottom-anim {
    animation: 1s ease-out 0s 1 slideFromBottom;
}

.schedule-footer-item:hover > label {
    cursor: pointer;
    text-decoration: underline;
}