h1, h2, h3, h4 {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.rajdhani-medium {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #162948;
}

.text-dark {
    color: #162948 !important;
}

.bg-dark {
    background-color: #162948 !important;
}

.bg-light {
    background-color: #ebebeb !important;
}

a {
    color:#162948;
}

a:hover {
    color:#004ec2;
}

.btn-primary {
    color: #fff;
    background-color: #004ec2;
    border-color: #004ec2;
}

#logo {
    height: 120px;                
    position: relative;
    top: -4px;
}

#logo-text div:first-of-type {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 60px;
    line-height: 60px;
}

#logo-text div:last-of-type {
    font-size: 42px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 50px;
    letter-spacing: 3px;
}

li {
    font-size: 18px;
}

p {
    font-size: 18px;
}

#contact-logo {
    width: 300px;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.photo-gallery a {
    overflow: hidden;
    height: 300px;
    background-position: center center;
    background-size: cover;
    display: block;
    position: relative;
}

.photo-gallery a i {
    position: absolute;
    right: 0;
    bottom: 0;
    /* background: #fff; */
    padding: 16px;
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px black;
}

    .photo-gallery-more {
        font-size: 18px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

.menu {

}

    .menu a {
        text-decoration: none;
        font-size: 20px;
        white-space: nowrap;
    }

        .menu a.selected-menu {
            color:#004ec2;
            position: relative;
        }

        .menu a.selected-menu:after {
            content: "";
            position: absolute;
            border-bottom: 3px solid #004ec2;
            bottom: -20px;
            width: 100%;
            right: 0;
        }


.language-select img {
    max-width: 32px;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 100000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px;

    color: #fff;
    background: #222;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__text {
    line-height: 1.5;
}

.cookie-banner__text a {
    color: inherit;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

/*
.cookie-banner button {
    padding: 10px 18px;
    cursor: pointer;
    border: 0;
    border-radius: 4px;
}
*/
@media (max-width: 700px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-banner__buttons {
        justify-content: flex-end;
    }

    .language-select {
        display: flex;
        flex-direction: column;
    }

    .language-select img {
        width:24px;
        margin-bottom: 4px;
    }
}

@media (max-width: 992px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu a.selected-menu:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 492px) {
    #logo {
        height: 80px;                
        position: relative;
        top: -4px;
    }

    #logo-text div:first-of-type {
        font-size: 40px;
        line-height: 40px;
    }

    #logo-text div:last-of-type {
        font-size: 26px;
        line-height: 36px;
        letter-spacing: 3px
    }

    #contact-logo {
        opacity: 0.05;
        width: 250px;
        right: -20px;
        bottom: -20px;
    }
}