.hom-header {
    height:fit-content;
}
#tests .container {
    min-height:80vh;
}
#tests .container .box .main-btn {
    margin:10px auto;
    width:100%;
}

/***********************/
/* start tests */
.tests {
    padding-top: var(--sections-padding);
    padding-bottom: var(--sections-padding);
}

.tests .container {
    display: flex;
    justify-content:center;
    gap:30px;
    flex-flow: row wrap;
}

.tests .container .box {
    background: #FFF;
    margin-top: 70px;
    padding: 40px 20px;
    width: 260px;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: var(--main-transition);
}

.tests .container .box::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 2px;
    background: var(--main-color);
    transition: var(--main-transition);
}

.tests .container .box:hover {
    transform: translateY(-10px);
}

.tests .container .box:hover::before {
    width: 100%;
}

.tests .container .box h3 {
    margin-bottom:auto;
    font-size: 24px;
    text-align: center;
    color: var(--main-color);
}
.tests .container .box a, .tests .container .box button {
    margin:10px auto;
    width:100%;
}
.tests .btn-more {
    margin-top:100px;
}
/* end tests */