#page {
    min-height: 100svh;
    position: relative;
    overflow-x: hidden;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
}
#main-content{
    flex: 1;
}
::-webkit-scrollbar {
    width: 0;
}

h1{
    margin-top: 20px;
    margin-bottom: 30px;
    color: #101010;
    font-size: 37px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.sert-flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.sert-card{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.sert-img-bg{
    background: #FFF;
    border-radius: 10px;    
    padding: 20px;
    width: 300px;
    position: relative;
}
.sert-load-btn {
    position: absolute;
    background: lightskyblue;
    padding: 13px 15px 11px 15px;
    border-radius: 50%;
    right: -15px;
    top: -15px;
}
.sert-name{
    width: 300px;
    text-align: center;
}

@media (max-width: 1199px){
    .sert-flex{
        justify-content: space-around;
    }
}