@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: #1483d5;
    height: 100vh;
    min-width: 100%;
}
/*nav start*/
header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px;
    transition: 0.6s;
}

header.sticky {
    background: #1483d5;
    padding: 15px 10px;
}

header img {
    width: 100px;
}

header .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .menu a {
    color: #ffd700;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 30px;
    padding: 0 10px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: color, background;
}

header .menu a:hover {
    color: #000;
}

header .btn {
    color: #ffd700;
    font-size: 25px;
    cursor: pointer;
    display: none;
}

@media (max-width: 1060px) {
    header .btn {
        display: block;
    }

    header .menu {
        position: fixed;
        background: #1483d5;
        flex-direction: column;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        right: -100%;
        padding: 50px 50px;
        transition: 0.5s;
        transition-property: right;
    }

    header .menu.active {
        right: 0;
    }

    header .menu .close-btn {
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
    }

    header .menu a {
        display: block;
        font-size: 15px;
        margin: 20px;
        padding: 0 15px;
    }
}

.gallery-section {
    width: 100%;
    padding: 80px 0 0 0;
    background: #1483d5;
}

.inner-width {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.gallery-section h1 {
    font-family: sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #ffd700;
}

.border {
    width: 180px;
    height: 4px;
    background: #333;
    margin: 30px auto;
}

.gallery-section .gallery {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.gallery-section .image {
    flex: 25%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-section .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.gallery-section .image:hover img {
    transform: scale(1.4) rotate(15deg);
}

@media screen and (max-width: 960px) {
    .gallery-section .image {
        flex: 33.33%;
    }
}

@media screen and (max-width: 768px) {
    .gallery-section .image {
        flex: 50%;
    }
}

@media screen and (max-width: 480px) {
    .gallery-section .image {
        flex: 100%;
    }
    footer {
        display: flex;
        flex-direction: column;
    }
    footer .motto {
        font-size: 12px;
    }
}
footer {
    position: fixed;
    height: 70px;
    width: 100%;
    background-color: #1483d5;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
footer .icons i {
    cursor: pointer;
    padding-right: 15px;
}
