.sec_title {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
}

.sec_archive {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.1em;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 100px;
    padding: 8px 14px 8px 12px;
    display: inline-block;
    margin: 0 auto 20px auto;
}

.sec_archive:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    transition: 0.5s;
    background-image: url(../../uploads/icon/arrow-narrow-left-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

#intro {
    background-color: var(--primary-color);
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 700px;
}

#intro:after {
    content: '';
    display: block;
    position: absolute;
    height: 100px;
    z-index: 1;
    top: -80px;
    background-color: var(--primary-color);
    left: 0;
    width: 100%;
}

#intro .container {
    padding: 50px 0;
}

#intro h1 {
    text-align: center;
    color: var(--light-color);
    font-size: 3em;
}

#intro .container .courses {
    text-align: center;
    margin: 80px 0;
}

#intro .container .courses:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--light-color);
    z-index: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}


#intro .container .courses .arrow {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    transition: 0.5s;
    background-image: url(../../uploads/icon/arrow-narrow-left-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#intro .container .courses a {
    background-color: var(--secondary-color);
    padding: 12px 25px;
    margin: 0 auto;
    display: inline-block;
    border-radius:150px;
    color: #fff;
    z-index: 1;
    font-weight: 500;
}


#intro .container .links {
    display: flex;
    justify-content: space-between;
}

#intro .container .links .items {
    width: 30%;
    min-width: 300px;
    border-radius: var(--radius);
    padding:40px 20px 20px 20px;
    align-content: end;
    box-shadow: 0 4px 4px #00000025;
}

#intro .container .links .items:nth-child(1) {
    background-color: var(--custom1-color);
}

#intro .container .links .items:nth-child(2) {
    background-color: var(--custom3-color);

}

#intro .container .links .items:nth-child(3) {
    background-color: var(--custom2-color);

}


#intro .container .links .items .title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: bold;
    color: var(--light-color);
    font-size: 1.3em;
}

/*#intro .container .links .items:nth-child(1) img {*/
/*    width: 70%;*/
/*}*/

/*#intro .container .links .items:nth-child(3) img {*/
/*    width: 70%;*/
/*}*/


#intro .container .links .items img {
    width: 80%;
}
#intro .container .links .items:nth-child(3) img ,
#intro .container .links .items:nth-child(2) img {
    width: 90%;
}


#blogs {
    padding: 120px 0;
}

#blogs .items {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
}

#blogs .items .item {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--light-color);

}


#blogs .items .item .details {
    padding: 30px;
}

#blogs .items .item .date {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 10px;

}

#blogs .items .item .date:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    width: 20px;
    height: 20px;
    background: url(../../uploads/icon/calendar.svg) center no-repeat;
    background-size: contain;
}

#blogs .items .item .title {
    color: var(--title-color);
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: bold;
}


#blogs .items .item .cover {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    width: 100%;
    overflow: hidden;
}

#blogs .items .item .cover:hover {
    -webkit-transform: scale(1.05) rotate(2deg);
    transform: scale(1.05) rotate(2deg);
    opacity: .8;
}


#blogs .items .item .desc {
    color: var(--gray-color);
    font-size: 1em;
    margin-bottom: 20px;
}

#blogs .items .item .link {
    font-size: 1em;
    font-weight: 500;

}


#blogs .items .item a {
    color: var(--title-color);
    transition: var(--transition);
    align-content: center;
}


#blogs .items .item .link a .arrow {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    transition: 0.5s;
    background-image: url(../../uploads/icon/arrow-narrow-left-yellow.svg);
    background-image: url(../../uploads/icon/arrow-narrow-left-green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#blogs .items .item .link:hover a .arrow {
    background-image: url(../../uploads/icon/arrow-narrow-left-yellow.svg);
}

#blogs .items .item .link:hover a {
    color: var(--secondary-color);
}


#satisfied {
    background-color: var(--primary-color);
    height: 700px;
}

#satisfied .container {
    z-index: 1;
    padding: 150px 0;
}

#satisfied .container .details {
    width: 45%;
}

#satisfied .container .sec_title {
    color: var(--light-color);
    margin-bottom: 20px;
}

#satisfied .sub_title {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.1em;
    background-color: #ffffff33;
    color: #fff;
    border-radius: 100px;
    padding: 8px 14px 8px 12px;
    display: inline-block;
    margin: 0 auto 20px auto;
}

#satisfied:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 58%;
    background-image: url(../../uploads/bg/satisfied.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#satisfied .item {
    background-color: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 40px 40px 50px 40px;
}
#satisfied .item .persons {
    display: flex;
    align-items: center;
}

#satisfied .item .persons .img{
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: 10px;
    overflow: hidden;
}
#satisfied .item .persons .name{
    color: var(--primary-color);
    font-weight: 500;
}
#satisfied .item .persons .info{
    color: var(--secondary-color);
    font-weight: 500;
}
#satisfied .desc {
    color: var(--gray-color);
    font-size: 1em;
    margin-top: 20px;
    min-height: 50px;
}

#satisfied items .item {
    -ms-flex: 0 0 31.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 31.333333%;
    max-width: 31.333333%;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--light-color);
}

#colleagues {
    background-color: var(--light-color);
    padding: 180px 0 120px 0;
}

#colleagues .container {
    display: flex;
    justify-content: space-around;
}

#colleagues .container .cover {
    width: 60%;
    font-size: 0;
}

#colleagues .container .cover img {
    border-radius: var(--radius);
}
#colleagues .container .cover:first-child img {
    top: -50px;
}
#colleagues .container .info {
    width: 30%;
}

#colleagues .container .desc {
    color: var(--gray-color);
    font-size: 1em;
    margin-bottom: 20px;
}

#colleagues .container .txt {
    color: var(--title-color);
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--primary-color);
}

#colleagues .container .txt {

}

#workshop {
    padding: 150px 0;
}

#workshop .slider_container {
    margin-top: 35px;
}


#workshop .items {
    display: flex;
    vertical-align: top;
    /*width: 310px;*/
    overflow: hidden;
    align-items: center;
    background-color: var(--light-color);
    border-radius: var(--radius);
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#workshop .items .details {
    width: 100%;
}

#workshop .items .cover {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    filter: brightness(1);
    overflow: hidden;
    margin: 0 auto;
    font-size: 0;
    min-height: 250px;
}

#workshop .items .cover img {
    width: 100%;
    height: auto;
}

#workshop .items .info {
    margin-bottom: 10px;
}

#workshop .items .info .title a,
#workshop .items .info .title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

#workshop .items .info .sub_title {
    color: var(--title-color);
    font-size: 1em;
    font-weight: 400;
    padding-top: 2px;
}

#workshops_page .items .item {
    color: var(--primary-color);
    margin-bottom: 10px;
}

#workshop .items .items_row {
    display: flex;
    justify-content: space-between;
    color: var(--title-color);
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
    align-items: center;
}


#workshop .items .time strong {
    font-weight: 500;
}


#workshop .items .price {
    display: flex;
    justify-content: space-between;
    color: var(--title-color);
    font-weight: bold;
}

#workshop .items .price .discounted {
    font-weight: normal;
}


#workshop .items .price .discounted:after {
    content: "";
    height: 1px;
    background: var(--title-color);
    width: 100%;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
}

#workshop .items .price .discounted_price {
    color: var(--red-color);
    font-weight: bold;
}


#workshop .items .btn_main {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-top: 20px;
}

#workshop .items .btn_main.owner {
    background-color: var(--secondary-color);
}

#workshop .items .btn_main.disabled {
    background-color: var(--light-gray-color);
}




#workshop .owl-carousel .owl-nav {
    top: 60% !important;
}

#workshop .owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-size: 50px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: .7;
    transition: all .3s;
    top: -20px;
}

#workshop .owl-carousel .owl-nav button.owl-prev {
    background-image: url(../../uploads/icon/slider_prev.png);
    left: 0 !important;
}

#workshop .owl-carousel .owl-nav button.owl-next {
    background-image: url(../../uploads/icon/slider_next.png);
    right: 0 !important;
}

.owl-carousel .owl-nav button:hover {
    opacity: 1 !important;
}

.owl-carousel .owl-dots {
    bottom: -40px !important;
}

.owl-carousel .owl-dots .owl-dot span {
    background: var(--light-color) !important;

}

.owl-carousel .owl-dot.active span, .owl-carousel .owl-dot:hover span {
    background: var(--primary-color) !important;
}


@media only screen and (max-width: 1220px) {


}

@media only screen and (max-width: 1000px) {
    #workshop {
        padding: 100px 0;
    }

    #blogs {
        padding: 100px 0;
    }
    #satisfied{
        height: auto;
        padding-top: 100px;
    }
    #satisfied .container {
        padding: 50px 0 100px 0;
    }
    #satisfied:before {
        position: relative;
        display: block;
        width: 80%;
        height: 500px;
        margin: 0 auto;
        border-radius: var(--radius);
    }
    #satisfied .container .details{
        width: 100%;
        text-align: center;
    }
    #satisfied .container .slider {
        max-width: 700px;
        margin: 0 auto;
        text-align: right;
    }
    #intro h1 {
        font-size: 2em;
    }

    #intro {
        height: auto;
    }

    #intro .container .links {
        justify-content: center;
        flex-wrap: wrap;
    }

    #intro .container .links .items {
        width: 30%;
        margin: 20px;
    }

    #colleagues {
        background-color: var(--light-color);
        padding:100px 0;
    }
    #colleagues .container{
        flex-wrap: wrap;
    }
    #colleagues .container .info,
    #colleagues .container .cover{
        width: 100%;
        text-align: center;
    }
    #colleagues .container .cover img{
        width: 700px;
        top: 0 !important;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 850px) {

}

@media only screen and (max-width: 768px) {
    #blogs .items{
        max-width: 90%;
        margin:35px auto 0 auto;
    }
}

@media only screen and (max-width: 550px) {

    .owl-carousel.owl-rtl .owl-item {
        text-align: center;
    }

    #workshop .items {
        max-width: 300px;
        margin: 0 auto;
    }
}
