#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: 17px;
}

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

.tab-content {
    display: none;
}

.active-content {
    display: block;
}

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

#gallery-box .wrapper {
}

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

#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;
    gap: 47px;
    margin-bottom: 40px;
    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;
}

#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: 0;
    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";
}
