﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');



::selection {
    background: #fff;
    color: #FFF;
}



.container .topic {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(13, 110, 253, 1);
}

/*.content input  {
    display: none;
}
*/
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .content .list {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 40%;
        margin-right: 50px;
    }

        .content .list label {
            cursor: pointer;
            height: 60px;
            line-height: 60px;
            font-size: 22px;
            font-weight: 500;
            /*color: rgba(255, 255, 255, 0.5);*/
            padding-left: 25px;
            transition: all 0.5s ease;
            z-index: 10;
        }

#Strictly:checked ~ .list label.Strictly,
#Performance:checked ~ .list label.Performance,
#Functional:checked ~ .list label.Functional,
#Targeting:checked ~ .list label.Targeting,
#Social:checked ~ .list label.Social {
    color: black;
}

.content .slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: rgba(13, 110, 253, 1);
    color: white;
}

#Strictly:checked ~ .list .slider {
    top: 0;
}

#Performance:checked ~ .list .slider {
    top: 60px;
}

#Functional:checked ~ .list .slider {
    top: 120px;
}

#Targeting:checked ~ .list .slider {
    top: 180px;
}

#Social:checked ~ .list .slider {
    top: 240px;
}

.content .text-content {
    width: 80%;
    height: 100%;
    /*color: rgba(255, 255, 255, 0.7);*/
}

.content .text {
    display: none;
}

    .content .text .title {
        font-size: 25px;
        margin-bottom: 10px;
        font-weight: 500;
    }

.container .text p {
    text-align: justify;
}

.content .text-content .Strictly {
    display: block;
}

#Strictly:checked ~ .text-content .Strictly,
#Performance:checked ~ .text-content .Performance,
#Functional:checked ~ .text-content .Functional,
#Targeting:checked ~ .text-content .Targeting,
#Social:checked ~ .text-content .Social {
    display: block;
}

#Performance:checked ~ .text-content .Strictly,
#Functional:checked ~ .text-content .Strictly,
#Targeting:checked ~ .text-content .Strictly,
#Social:checked ~ .text-content .Strictly {
    display: none;
}

.content .list label:hover {
    color: black;
}

/////////////////////////////////

