.experimental-class-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 12dvh;

    @media(min-height: 600px) and (orientation: portrait){
        width: 70%;
        height: 10dvh;
    }

    @media (max-height: 600px) and (orientation: landscape){
        width: 35%;
        height: 22dvh;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        width: 40%;
    }

    @media (min-width: 1000px){
        width: 35%;
        height: 18dvh;
    }

    @media (min-width: 1200px){
        width: 30%;
        height: 20dvh;
    }
}

.experimental-class-button{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fe6300;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;

    @media (min-width: 1000px){
        border-radius: 20px;
    }
}

.experimental-class-button:hover{
    cursor: pointer;
}

.experimental-class-button-image-container{
    display: flex;
    position: relative;
    justify-content: end;
    align-items: flex-end;
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.experimental-class-button-image-container > img{
    position: absolute;
    z-index: 3;
    height: 100%;
    object-fit: cover;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

.backgorund-effect{
    position: absolute;
    z-index: 2;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: linear-gradient(to right, #fe6300 40%, #f3efed 100%);
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

.backgorund-effect--image{
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: 100%;
    opacity: 0;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

.experimental-class-button-text{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    font-size: 1.3dvh;
    width: 65%;
    height: 100%;
    text-align: center;
    font-family: "Montserrat";
    font-weight: bold;
    color: #f3efed;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;

    @media (max-height: 600px) and (orientation: landscape){
        font-size: 1.3dvw;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        font-size: 1.3dvw;
    }

    @media (min-width: 1000px){
    
    }
}

a{
    text-decoration: none;
}

@keyframes cardImageGrowUp{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.07);
    }
}

@keyframes cardImageGrowDown{
    0%{
        transform: scale(1.07);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes cardBackgroundAppear{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 0.8;
    }
}

@keyframes cardBackgroundDisappear{
    0%{
        opacity: 0.8;
    }
    100%{
        opacity: 0;
    }
}
