* {
    font-family: "Montserrat", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    transition: all .2s cubic-bezier(.34, 1.12, .68, 1.31);
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it's above other content */
}

.loader-image {
    border-radius: 10px;
    width: 150px;
    /* Adjust the width of the loader as needed */
    height: auto;
    /* Maintain aspect ratio */
}

.sec-1 {
    background-image: linear-gradient(to bottom, #000000, #00000066, #000000), url('../images/Why-exicom/4\ bg.jpg');
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gallery {
    min-height: 100vh;
    background-color: black;
    padding-bottom: 100px;
}

.gallery .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    list-style: none;
}

.gallery .controls .buttons {
    border-radius: 7px;
    border: 2px solid white;
    text-shadow: 1px 1px 1px #51c4bd;
    padding: 10px 40px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-right: 0.9rem;
    margin-bottom: 1rem;
}

.buttons:hover {
    opacity: 80%;
    box-shadow: 4px 4px 10px 0px #51c4bd;
}

.gallery .controls .buttons.active {
    color: #fff;
    border-radius: 10px;
}

.gallery .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image {
    height: 340px;
    width: 500px;
    overflow: hidden;
    box-shadow: 4px 3px 11px rgb(0, 240, 228);
    margin: 30px;
}

.gallery .image-container .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}