.gallery-box {
    margin-top: 75px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    background: url('../Gallery/bg.jpg');
}

.images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.images img {
    height: 270px;
    width: 270px;
    border: 2px solid black;
    border-radius: 20px;
    cursor: pointer;
}

/* Display Box */

.displayBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.displayBoxShow {
    display: flex;
}

.components {
    background: #191717;
    color: #fff;
    border-radius: 10px;
}

.components .header {
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 55px;
}

.components .header h1 {
    letter-spacing: 0.8px;
}

.components .header i {
    font-size: 2rem;
    cursor: pointer;
}

.components .carousel {
    padding: 0 20px 40px 20px;
}

.components .carousel .image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.components .carousel .image i {
    background: #fff;
    color: #000;
    border-radius: 50%;
    cursor: pointer;
}

i.fa-arrow-left,
i.fa-arrow-right {
    padding: 10px;
}

.components .carousel .image img {
    height: 400px;
    width: 400px;
    padding: 0;
    border-radius: 10px;
    border: 2px solid white;
}

@media (max-width:900px) {

    .gallery-box {
        margin-top: 62px;
    }

    .images img {
        height: 150px;
        width: 150px;
    }
}

@media screen and (max-width:600px) {
    .components .header h1 {
        font-size: 1.3rem;
    }

    .components .header i {
        font-size: 1.3rem;
    }

    .components .header {
        padding: 10px 0 5px 0;
    }

    .components .carousel {
        padding: 5px 10px 30px 10px;
    }

    .components .carousel .image img {
        height: 350px;
        width: 350px;
    }
}

@media (max-width:450px) {
    .gallery-box {
        padding: 5px 0;
    }

    .images img {
        height: 110px;
        width: 110px;
        border: 0.5px solid black;
        border-radius: 5px;
    }

    .components .carousel .image img {
        height: 250px;
        width: 250px;
    }
}