body {
    background-color: #F5F5F5;
}

.seminar {
    text-align: center;
    padding: 50px 100px;
}

.title-seminar>h1 {
    font-family: "extra_bold";
    font-size: 28px;
    color: #2D2D2D;
}

.title-seminar>span {
    color: #7A7A7A;
    font-size: 18px;
    font-family: "light";
}

.filter-seminar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.filter-seminar>:first-child {
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
}

.filter-seminar button {
    background-color: #FFFFFF;
    border: 1px #EAEAEA solid;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    gap: 10px;
}

.filter-seminar button span {
    color: #2D2D2D;
    font-size: 14px;
    font-family: "light";
}

.filter-seminar button img {
    width: 20px;
}

.filter-seminar>:last-child {
    display: flex;
    align-items: center;
    gap: 0;
    width: 30%;
    background-color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 15px;
    border: 1px #EAEAEA solid;
    font-size: 14px;

}

.filter-seminar input {
    background-color: transparent;
    border: none;
    outline: none;
    color: #2D2D2D;
    font-size: 12px;
    font-family: "light";
    width: 100%;
    padding-right: 5px;
}

.filter-seminar input::placeholder {
    font-size: 12px;
}

.filter-seminar img {
    width: 20px;
}

@media screen and (max-width:768px) {
    .seminar {
        padding: 20px;
    }

    .filter-seminar {
        flex-wrap: wrap;
    }

    .filter-seminar>div {
        width: 100%;
    }

    .filter-seminar>:last-child {
        width: 100%;
        margin-top: 20px;
    }

    .filter-seminar>:first-child {
        justify-content: space-evenly;

    }

    .filter-seminar>:first-child>button {
        width: 45%;
    }
}





.seminar-item {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 100px 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.seminar-item>div {
    width: 350px;
    height: 250px;
    /* filter: brightness(50%); */
    border-radius: 20px;
    position: relative;

}

.seminar-item>div>a {
    /* Rectangle 50 */
    border-radius: 20px;

    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;

    background: linear-gradient(360deg, #2D2D2D 0%, rgba(45, 45, 45, 0) 100%);

    /* Inside auto layout */
    flex: 0 1 auto;
    /* This combines grow, shrink, and basis */
    justify-content: space-evenly;
    order: 1;
    z-index: 1;

}

.detail-course {
    display: flex;
    justify-content: space-evenly;
    justify-content: space-between;
}

.detail-course div {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2px 5px;
    margin: 10px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
}

.detail-course>div>span {
    font-size: 11px;
    font-family: "medium";
}

.detail-course>div>img {
    width: 16px;
}

.title-course {
    bottom: 0;
    position: absolute;
    padding: 5px 20px;
}
.comming-soon{
    position: relative;
}
.comming-soon::before{
    content: "به زودی";
    position: absolute;
    display: inline-block;
    padding: 0 5px ;
    z-index: 10;
    border-radius: 5px;
    left: -10px;
    top: -10px;
    transform: rotate(-30deg);
    background-color: #1E3A8A;
    color: #FFFFFF;
}
.float-comming{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    font-family: "bold";
    color: red;
    mix-blend-mode: normal;
    filter: none;
    z-index: 1;
}

.title-course h3 {
    color: #FFFFFF;
    font-family: "bold";
    font-size: 15px;
}

.title-course p {
    font-family: "regular";
    font-size: 11px;
    text-align: right;
    color: #FFFFFF;
}


@media screen and (max-width:1250px) {
    .seminar-item>div {
        width: 245px;
        height: 175px;
    }

    .title-course h3 {
        font-size: 10px;
    }

    .title-course p {
        font-size: 8px;
    }
}

@media screen and (max-width:950px) {
    .seminar-item {
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .seminar-item>div {
        width: 95%;
        margin-top: 30px;
    }

    .title-course h3 {
        font-size: 12px;
    }

    .title-course {
        width: 100%;
        bottom: 15px;
    }

    .title-course p {
        font-size: 11px;
        display: none;
    }

    .seminar h2 {
        font-size: 5vw;
    }

    .seminar p {
        font-size: 3.5vw;
    }
}

/* ---------------------------------- show-course ---------------------------- */

.show-course {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}

.show-course>:first-child {
    width: 70%;
}

.show-course>:last-child {
    width: 30%;
}

.description-course>img {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
}

.description-course>div {
    border-radius: 20px;
    padding: 20px;
    background-color: #FFFFFF;
}

.description-paragraph>h2 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 16px;
}

.description-paragraph>p {
    font-family: "regular";
    font-size: 14px;
    color: #454545;
    line-height: 35px;
    margin-top: 10px;
    width: 85%;
}

hr {
    color: #EAEAEA;
    height: 1px;
    width: 100%;
    margin: 30px 0;
    opacity: 0.5;
}

.suggest-user h3 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 16px;
    margin-top: 50px;
}

.suggest-user li {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.suggest-user li span {
    font-family: "regular";
    font-size: 14px;
    color: #454545;
    line-height: 35px;
    margin-top: 10px;
    width: 85%;
}


.title-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-comment h3 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 16px;
}

.comment-object {
    margin-top: 30px;
    padding: 0 20px;
}

.comment-object>div {
    margin-top: 30px;
}

.comment-object>div>:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-object img {
    width: 20px;
}

.comment-object h4 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 13px;
}

.comment-object span {
    color: #7A7A7A;
}

.comment-object p {
    color: #454545;
    margin-top: 10px;
    font-family: "regular";
    font-size: 13px;
}

.detail-course-show {
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 20px;

}

.title-course-show h1 {
    font-family: "extra_bold";
    font-size: 25px;
}

.title-course-show span {
    color: #7A7A7A;
}

.pricing-course {
    text-align: left;
    margin-top: 20px;
}

.pricing-course>p>:last-child {
    background-color: #FFD301;
    font-family: "light";
    font-size: 13px;
    color: #000000;
    padding: 2px 5px;
    border-radius: 20px;
}

.pricing-course>:first-child {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.pricing-course>p>:first-child {
    font-size: 14px;
    color: #7a7a7a;
    text-decoration: line-through;
}

.pricing-course>:nth-child(2) {
    font-family: "bold";
    font-size: 18px;
    color: #2D2D2D;
}

.pricing-course>a {
    background-color: #1E3A8A;
    color: #FFFFFF;
    display: block;
    padding: 5px 20px;
    font-family: "bold";
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    border-radius: 10px;
}

.rate-count-course {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 20px;
}

.rate-count-course>:first-child {
    font-family: "bold";
    color: #2D2D2D;
}

.rate-count-course img {
    width: 20px;
}

.rate-count-course>:last-child {
    color: #7A7A7A;
    font-size: 13px;
}

.publisher-course {
    margin-top: 20px;
}

.publisher-course>h3 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 14px;
}

.detail-course-information {
    line-height: 35px;
}

.detail-course-information>h3 {

    color: #2D2D2D;
    font-family: "bold";
    font-size: 14px;
}

.detail-course-information ul {
    margin-top: 10px;
}

.detail-course-information ul li {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-course-information img {
    width: 20px;
}

.option-course-show {
    margin-top: 20px;
}

.option-course-show span {
    font-family: "medium";
    font-size: 14px;
    color: #454545;
}

.option-course-show li {
    display: flex;
    align-items: center;
    justify-content: start;
}

.logo-publisher {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
}

.logo-publisher img {
    width: 50%;
}

.logo-publisher h2{
    font-family: "bold";
    font-size: 18px;
}

@media screen and (max-width:768px) {
    .show-course {
        flex-wrap: wrap-reverse;
        padding: 20px;
    }

    .show-course>:last-child {
        width: 100%;
    }

    .show-course>:first-child {
        width: 100%;
    }
    .logo-publisher{
        align-items: start;
    }
    .logo-publisher>div{
        max-width: 45%;
    }
    .logo-publisher img {
        width: 30%;
    }
    
    .logo-publisher h2{
        font-family: "bold";
        font-size: 12px;
    }
}


