#gallery-box {
    text-align: center;
    padding: 20px;
}

.tab-buttons {
    margin-bottom: 41px;
}

.tab-buttons button {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 53px;
    border: 1px solid var(--Stroke, #e1e1e1);
    color: #232323;
    font-family: "poppins_medium";
    outline: none;
    font-size: 16px;
}

.tab-buttons button:hover {
    border: 1px solid var(--Primary, #b7815b);
    color: #b7815b;
}



.active-content {
    display: block;
}

#gallery-box {
    padding: 100px 0px;
}

#gallery-box .wrapper {
}

#gallery-box .wrapper .tab-buttons {display: flex;flex-wrap: wrap;justify-content: center;gap: 20px;}

#gallery-box .wrapper .tab-buttons button {
}

#gallery-box .wrapper .tab-content {
}

#gallery-box .wrapper .main-gallery {
}

#gallery-box .wrapper .main-gallery .tab-content {
}

#gallery-box .wrapper .main-platform {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

#gallery-box .wrapper .main-platform .bottom-platform {
    position: relative;
    width: 30%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gallery-box .wrapper .main-platform .bottom-platform .platform-image {
    z-index: 1;
    width: 100%;
}

#gallery-box .wrapper .main-platform .bottom-platform .platform-image img{
   /* height: 300px; */
   aspect-ratio: 3/2;
   border-radius: 10px;
   object-fit: cover;
}

#gallery-box .wrapper .main-platform .bottom-platform .hidden-platform {
    box-shadow: 7px 11px 30px 0px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    height: 0;
    width: 100%;
    overflow: hidden;
    transition: height 0.5s ease;
    z-index: 2;
    position: absolute;
    bottom: -3px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    pointer-events: none;
}

#gallery-box .wrapper .main-platform .bottom-platform:hover .hidden-platform {
    height: 85px;
}

#gallery-box .wrapper .main-platform .bottom-platform .hidden-platform .hidden-content h2 {
    font-size: 18px;
    text-align: center;
    padding: 27px;
    font-family: "poppins_medium";
}
@media all and (max-width: 1280px) {
}

@media all and (max-width: 1080px) {
    .tab-buttons button {
        font-size: 15px;
    }
    #gallery-box .wrapper .main-platform {
        display: flex;
        gap: 35px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    #gallery-box .wrapper .tab-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    #gallery-box .wrapper .main-platform .bottom-platform {
        width: 38%;
    }
}

@media all and (max-width: 980px) {
    #gallery-box .wrapper .main-platform {
        justify-content: center;
    }
    #gallery-box .wrapper .main-platform .bottom-platform {
        width: 44%;
    }
    #gallery-box .wrapper .main-platform .bottom-platform .hidden-platform .hidden-content h2 {
        font-size: 15px;
        text-align: center;
        padding: 14px;
        font-family: "poppins_medium";
    }
}

@media all and (max-width: 768px) {
    #gallery-box .wrapper .main-platform .bottom-platform:hover .hidden-platform {
        height: 55px;
    }
    #gallery-box {
        padding: 70px 0px;
    }
}

@media all and (max-width: 640px) {
    #gallery-box .wrapper .main-platform .bottom-platform {
        width: 70%;
    }
}

@media all and (max-width: 480px) {
    #gallery-box .wrapper .main-platform .bottom-platform {
        width: 85%;
    }
    #gallery-box {
        padding: 50px 0px;
    }
}

@media all and (max-width: 360px) {
    #gallery-box .wrapper .main-platform .bottom-platform {
        width: 90%;
    }
}

@media all and (max-width: 320px) {
}
