header{
    background-color: var(--sub) !important;
    padding: 15px 50px;
}
header .links a{
    color: var(--w);
}

.categories{
    background: linear-gradient(75deg, var(--main) 55%, var(--sub) 45%);
    padding-bottom: 80px;
}

.categ-box{
    position: relative;
    width: 370px;
    height: 260px;
}

.categ-box .grdnt45{
    width: 220px;
    height: 160px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    border: 2px solid var(--sub);
}

.categ-box img{
    width: 90%;
    border-radius: 20px;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 4;
    aspect-ratio: 4 / 2.7;
    display: block;
}

.categ-box:hover img{
    cursor: pointer;
    top: 15px;
    left: 15px;
}

.categ-box:hover .grdnt45{
    width: 100%;
    height: 100%;
}

.categ-box .btn{
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 6;
    border-radius: 20px !important;
}

.text{
    width: 520px;
    text-align: justify;
    font-weight: 500;
}

.text p{
    margin: 12px 0;
    font-size: 18px;
}

.adv{
    width: 360px;
    aspect-ratio: 4 / 2.66;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: var(--main);
    text-shadow: 0 0 3px var(--shd);
    overflow: hidden;
}

.advices{
    padding-top: 50px;
}

.layer{
    background-color: var(--shd);
}

.adv p{
    color: var(--w);
    font-size: 18px;
}

.adv:hover{
    transform: scale(1.1);
    cursor: pointer;
}