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:#3b6ab4;
}

#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(3, 1fr);
    column-gap: 24px;
}

.photo-gallery a {
    overflow: hidden;
    height: 400px;
    background-position: center center;
    background-size: cover;
    display: block;
    margin-bottom: 24px;
    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;
}

@media (max-width: 992px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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;
    }
}