:root {
    --navBg: #40475F;
    --sYellow: #FFE802;
    --sRed: #FF0000;
    --fontColor: #404040;
}



.rightSide {
    flex: 4;

    display: flex;
    flex-direction: column;
    overflow: hidden;

    padding: 0 1rem;
}

.rightSide .rightTop {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(128, 128, 128, 0.347);

    margin-bottom: 1rem;

}

.rightSide .rightTop p {
    padding: 0;
    margin: 0;
}

.rightSide .rightTop a {
    text-decoration: none;
    color: var(--fontColor);
    font-size: .8rem;
}

.rightSide .products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}


.rightSide .products .prodBox {
    display: flex;
    flex-direction: column;
    text-align: center;

    width: 120px;
    height: 120px;


}

.rightSide .products .prodBox img {
    width: 100%;
    object-fit: cover;

    border: 1px solid rgba(128, 128, 128, 0.284);

    cursor: pointer;
}

.rightSide .products .prodBox span {
    font-size: .8rem;
    color: grey;
    text-align: start;
}


/* BANNER */


.rightSide .banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 650px;

    margin: 2rem auto;

}

.rightSide .banner button {
    position: absolute;
    right: 10px;
    font-size: .8rem;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}



/* MENU */

.menu {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    padding: 0 1rem;
}

.menu>span {
    border-bottom: 1px solid rgba(128, 128, 128, 0.389);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.menu .menuBox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.menu .menuBox .menuBox-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;

    width: 140px;

}

.menu .menuBox .menuBox-item i {
    font-size: 1.2rem;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.menu .menuBox .menuBox-item a {
    font-size: .7rem;
    color: var(--fontColor);
    text-decoration: none;
}



/* PROJECTHOME */

.homeProjects {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.homeProjects .homeProjectBox {
    background-color: white;
    border: 1px solid rgba(128, 128, 128, 0.396);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    cursor: pointer;

    /* padding: 1rem; */

    flex: 1;
    gap: 1rem;
}

.homeProjects .homeProjectBox .homeProject-text {
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.homeProjects .homeProjectBox .homeProject-text>span {
    color: var(--navBg);
}

.homeProjects .homeProjectBox .homeProject-text .info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 1rem;
}

.homeProjects .homeProjectBox .homeProject-text .info span {
    color: grey;
    font-weight: 100;
    font-size: .8rem;
}

.homeProjects .homeProjectBox .homeProject-text .info span:last-child {
    border: 1px solid black;
    padding: .2rem;
}



/* POPULAR PRODS */

.popular .prodBox {
    cursor: pointer;
}


.popular .prodBox span {
    font-size: .7rem !important;
    color: #013399 !important;
    margin-top: .5rem;
}



/* ADS */

.ads {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    margin: 3.5rem 0;
}

.ads iframe {
    flex: 2;
}

.ads .adsBanner {
    flex: 1;
    cursor: pointer;
}



/* LINKS SEARCHED */

.searchedLinks {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 1rem;

    margin-bottom: 4rem;
}

.searchedLinks a {
    color: grey;
    font-size: .7rem;
    border: 1px solid grey;
    border-radius: 7px;
    padding: .2rem .5rem;
    text-decoration: none;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.searchedLinks a:hover {
    text-decoration: underline;
}






@media screen and (max-width:1024px) {
    .rightSide .banner {
        display: none;
    }

    .menu .menuBox {

        flex-wrap: wrap;
        gap: 1rem;
    }

    .homeProjects {
        display: none;
    }

    .rightTop.homep {
        display: none;
    }

    .ads {
        flex-direction: column;
    }

    .products {
        justify-content: center !important;
    }

    .products.popular {
        justify-content: center;

    }

    .products.popular .prodBox {
        margin: 1rem;
    }

}