.tabCont {
    display: flex;
    justify-content: center;
}

.tabCont div {
    color: #6A6B6D;
    font-size: 20px;
    font-weight: 400;
    display: block;
    position: relative;
    padding: 12px 32px;
    cursor: pointer;
}

.tabCont div::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #E3E5E6;
}

.tabCont div.active {
    color: #E60039;
    pointer-events: none;
}

.tabCont div.active::after {
    background: #E60039;
}

.productCont {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}

.productCont h3 {
    color: #0175E8;
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
}

.productCont:first-child {
    margin-right: 24px;
}

#productCont {
    display: flex;
    justify-content: space-between;
}

.productCont {
    width: 100%;
    padding: 24px;
}

#customProduct {
    background: #f7f9fa;
}

.productRow {
    display: flex;
    align-items: center;
}

.tabInfo {
    margin-top: 60px;
}

.productInfo {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E3E5E6;
    padding: 16px;
}

.productInfo a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.productInfo:last-child {
    border: none;
}

.productCont .productInfo img {
    width: 80px;
    margin-right: 24px;
}

.productLink {
    width: 20px;
    height: 20px;
    background-image: url(../RJ-img/link.svg);
    background-size: cover;
}

.solutionCont {
    display: flex;
    justify-content: space-between;
}

.solutionInfo:first-child {
    margin-right: 24px;
}

.solutionInfo {
    border-radius: 8px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
}

.solutionText {
    padding: 24px;
}

.solutionText h3 {
    color: #2A2B2E;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 16px;
}

.solutionText p {
    color: #6A6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.solutionText a {
    color: #E60039;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    margin-top: 42px;
}

.solutionText a::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    background-image: url(../RJ-img/arrow.svg);
    background-size: cover;
}

@media screen and (max-width:768px) {
    #productCont {
        flex-wrap: wrap;
    }
    .productCont:first-child {
        margin-right: 0;
        margin-bottom: 24px;
    }
    .productLink {
        margin-left: 8px;
    }
    .solutionCont {
        flex-wrap: wrap;
    }
    .solutionInfo:first-child {
        margin-right: 0;
    }
    .tabCont div {
        font-size: 16px;
    }
    .overviewCont .n-project-title {
        font-size: 24px;
    }
    .n-project-info .overviewCont p {
        margin-top: 48px;
    }
}