@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
    
}
body {
    background-color: #DEE1E3 !important;
}

.amazingslider-wrapper {
    margin-top: 30px !important;
}



.top {
    background-color: #ada2a2;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-elements {
    width: 70%;
    display: flex;
    justify-content: space-between;
    color: white;

}

.navbar-outer {
    padding: 2%;
    border-bottom: 1px solid rgb(185, 185, 185);
    background-color: white;
    max-height: 142.09px !important;
    display: flex;
    justify-content: space-between;

}

.flags {
    
    margin-left: 5%;
    display: flex;
}

.flags span {
    font-size: small;
    margin-top: 10px;
    display:flex;
}



.flags img {
    margin-right: 20px;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 10%;
    box-shadow: 5px 3px 5px #aaaaaa;
    height: 65px;
    width: 100px;
    transition: ease-in-out;
    transition-duration: 250ms;
}

.flags img:hover {
    transform: scale(1.1);
}

.mid-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    white-space: nowrap;
    font-weight: bolder;

}

.nav-links {
    display: flex;
    
    align-items: center;
    margin-right: 5%;
}

.nav-links ul {
    display: flex;
    list-style-type: none;
}

.nav-left {
    display: flex;
    
    gap:30px;
}

.nav-links ul li {
    font-size: x-large;
    margin-right: 1.5rem;
}

.nav-links ul li a {
    color: black;
    text-decoration: none;
    transition: ease-in-out;
    transition-duration: 250ms;

}

.nav-links ul li a:hover {
    color: rgb(72, 1, 165) !important;
    letter-spacing: 2px;
    margin-left: 0.5rem;
}

/* .spinner {
    margin: 100px auto;
    width: 50px;
    height: 50px;
    position: relative;
}

.spinner>div {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner>div:nth-child(1) {
    background-color: red;
    animation-delay: -0.45s;
}

.spinner>div:nth-child(2) {
    background-color: white;
    animation-delay: -0.3s;
}

.spinner>div:nth-child(3) {
    background-color: red;
    animation-delay: -0.15s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */

