﻿.title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
}

    .title.associe {
        margin-left: 4px;
    }

.subtitle {
    font-weight: 600;
    max-width: 450px;
    text-transform: uppercase;
    font-size: 53px;
    line-height: 50px;
    color: var(--secondary-color);
}


.containeru {
    width: 100%;
    min-height: 55vh;
    padding: 40px 30px;
}

.containeru .topic {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.containeru .content {
    display: grid;
    grid-template-columns: .4fr 1fr;
    gap: 30px;
}

.containeru .content .list {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

.containeru .content .list .my-account-nav {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.5s ease;
    color: #333;
    z-index: 12;
    border-radius: 12px;
}


.containeru .content .list .my-account-nav:hover a {
    color: var(--primary-color);
}

.containeru .content .list .my-account-nav:hover {
    background: #f1f1f1
}

.containeru .content .list li.active a {
    color: var(--primary-color);
    font-weight: bolder;
}

.list .line {
    width: 90%;
    height: 1px !important;
    background: #dbdbdb52;
    position: relative;
    left: 15px;
}

.list li a {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    width: 100%;
    height: 100%;
    color: dimgrey;
}

    .list li a i {
        font-size: 16px;
    }

.content .text-content {
    height: fit-content;
    padding: 30px;
    background: #fdfdfd;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 12px;
}

.content .text {
    display: none;
}

.content .text .title {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.content .text p {
    text-align: justify;
}

.content .text-content .home {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-img {
    width: 50%;
    margin-top: 30px;
}

.content .fav-contentu {
    height: 100%;
    width: 100%;
}
/*background: #dbdbdb;*/
.content .fav-count {
    padding: 20px 30px;
    background: var(--primary-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.content .fav-result {
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .content .fav-result span {
        font-size: 16px;
    }

    .content .fav-result i {
        font-size: 18px;
    }


.content .fav-count p,
.content .fav-count span,
.content .fav-count i {
    color: white;
}

.content .fav-count i {
    font-size: 18px;
}

@media (max-width: 1280px) {
    .containeru .topic {
        font-size: 16px;
    }
}

@media (max-width: 890px) {
    .containeru {
        min-height: 55vh;
        padding: 25px 10px;
    }

    .content .text .title {
        font-size: 20px;
        text-align: center;
    }

    .content .text p {
        text-align: center;
    }

    .containeru .content {
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .list .line {
        width: 100%;
        left: 0;
    }

    .containeru .content .list,
    .content .text-content {
        max-width: 350px;
        width: 100%;
    }

    .containeru .topic {
        margin-bottom: 10px;
    }

    .title-img {
        margin-top: 10px;
    }
}

@media (max-width: 650px) {
    .content .text-content {
        padding: 25px 15px;
    }

    .content .text .title {
        font-size: 18px;
        text-align: center;
    }
}
