/*--Tab Content & Pane Fix--*/
.tab-content {
    width: 100%;
}

.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}

.tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}

.tab-content .tab-pane ul.page_links {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tab-content .tab-pane ul.page_links {
    margin-top: 2rem;
}

/*.tab-content .tab-pane ul.page_links li {
  background-color: var(--lightgrey);
  border-radius: 10%;
  padding:0 1rem;
  height:2.5rem;
  line-height: 2.5rem;
  color: var(--dark);
}*/

.tab-content .tab-pane ul.page_links li.blank {
    background: none;
}


/* Page Pagination */
.page-pagination {
    padding-top: 60px;
}

.page-pagination .pagination li {
    margin-right: 12px;
}

.page-pagination .pagination li:last-child {
    margin-right: 0;
}

.page-pagination .pagination li a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    display: block;
    -webkit-transform: all 0.3s linear;
    transform: all 0.3s linear;
    border-radius: 2px;
    background-color: var(--lightgrey);
}

@media only screen and (max-width: 575px) {
    .page-pagination .pagination li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}

.page-pagination .pagination li a.active, .page-pagination .pagination li a:hover {
    color: var(--white);
    background-color: var(--secondary);
}

/* Custom Animation */
.animation-left {
    -webkit-animation: left 5s linear 0s infinite normal forwards;
    animation: left 5s linear 0s infinite normal forwards;
}

@-webkit-keyframes left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.animation-right {
    -webkit-animation: right 5s linear 0s infinite normal forwards;
    animation: right 5s linear 0s infinite normal forwards;
}

@-webkit-keyframes right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.animation-up {
    -webkit-animation: up 5s linear 0s infinite normal forwards;
    animation: up 5s linear 0s infinite normal forwards;
}

@-webkit-keyframes up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.animation-down {
    -webkit-animation: down 5s linear 0s infinite normal forwards;
    animation: down 5s linear 0s infinite normal forwards;
}

@-webkit-keyframes down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.animation-rotate {
    -webkit-animation: rotate 5s linear 0s infinite normal forwards;
    animation: rotate 5s linear 0s infinite normal forwards;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/*----------------------------------------*/
/*  02. Elements CSS
/*----------------------------------------*/
/*--
/*  2.1 - Blockquote CSS
/*----------------------------------------*/
blockquote {
    background-color: var(--tertiary);
    text-align: center;
    padding: 40px 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 575px) {
    blockquote {
        padding: 20px 25px;
    }
}

blockquote:not(:first-child) {
    margin-top: 25px;
}

blockquote:not(:last-child) {
    margin-bottom: 25px;
}

blockquote i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 150px;
    line-height: 1;
    color: var(--white);
    opacity: 0.1;
    z-index: -1;
}

blockquote p {
    display: inline;
    font-size: 20px !important;
    font-style: italic;
    font-family: var(--serif), serif;
    color: var(--white) !important;
    line-height: 1.35;
    font-weight: 500;
}

@media only screen and (max-width: 575px) {
    blockquote p {
        font-size: 18px !important;
    }
}

blockquote .shape {
    position: absolute;
    bottom: -150px;
    left: -45px;
    z-index: -1;
}

/*--
/*  2.2 - Form CSS
/*----------------------------------------*/
label {
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: capitalize;
}

/*Input Field & Select*/
.form_styled input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]),
textarea {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--midgrey);
    border-radius: 2px;
    margin-bottom: 0;
    padding: 10px 25px;
    max-width: 100%;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    border: 1px solid rgba(10, 77, 60, 0.2);
    margin-top: 20px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color: var(--white);
}

.form_styled input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form_styled textarea {
    height: 280px;
    resize: none;
}

.form_styled select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: calc(100% - 25px) 50%;
    background-repeat: no-repeat;
    font-family: var(--sans), sans-serif;
    width: 100%;
    border: none;
    background-color: #f7f7f7;
    line-height: 24px;
    font-weight: 300;
    height: 50px;
    padding: 10px 44px 10px 21px;
    color: var(--tertiary);
    border-radius: 0;
    max-width: 500px;
}

.reviews-rating {
    margin-top: 15px;
}

.reviews-rating label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--tertiary);
    margin-bottom: 0;
}

.reviews-rating .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
}

.reviews-rating .rating li {
    font-size: 16px;
    color: #d0d0d0;
    margin: 0 2px;
    cursor: pointer;
}

.reviews-rating .rating li i {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.reviews-rating .rating li i.star, .reviews-rating .rating li i.hover {
    color: var(--tertiary);
}


/*----------------------------------------*/
/*  04. Pages CSS (All Page Styles)
/*----------------------------------------*/


/*--
/*  4.2 - Features CSS
/*----------------------------------------*/
.features-wrapper {
    margin-top: -50px;
}

.features-wrapper .row > *:nth-child(2n+2) .single-feature {
    border-left: 1px solid #f3f0ec;
    border-right: 1px solid #f3f0ec;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .features-wrapper .row > *:nth-child(2n+2) .single-feature {
        border: 0;
    }
}

.single-feature {
    text-align: center;
    padding: 0 25px;
    margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .single-feature {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

.single-feature .feature-icon span {
    width: 170px;
    height: 170px;
    line-height: 175px;
    background-color: var(--lightgrey);
    text-align: center;
    display: inline-block;
    font-size: 70px;
    color: var(--secondary);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media only screen and (max-width: 575px) {
    .single-feature .feature-icon span {
        width: 140px;
        height: 140px;
        line-height: 145px;
        font-size: 60px;
    }
}

.single-feature .feature-icon span::before {
    position: absolute;
    content: "";
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--secondary);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    z-index: -1;
}

@media only screen and (max-width: 575px) {
    .single-feature .feature-icon span::before {
        bottom: -120px;
    }
}

.single-feature .feature-icon span::after {
    position: absolute;
    content: "";
    bottom: -170px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--tertiary);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: -1;
}

@media only screen and (max-width: 575px) {
    .single-feature .feature-icon span::after {
        bottom: -140px;
    }
}

.single-feature .feature-content {
    padding-top: 35px;
}

.single-feature .feature-content .content-wrapper {
    background-color: var(--white);
}

.single-feature .feature-content .title {
    font-size: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-feature .feature-content .title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .single-feature .feature-content .title {
        font-size: 24px;
    }
}

.single-feature .feature-content p {
    margin-top: 20px;
}

.single-feature .feature-content .arrow {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--tertiary);
    color: var(--white);
    font-size: 25px;
    border-radius: 50%;
    margin-top: 35px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .single-feature .feature-content .arrow {
        opacity: 1;
        visibility: visible;
    }
}

.single-feature .feature-content .arrow:hover {
    background-color: var(--secondary);
}

.single-feature.active .feature-icon span, .single-feature:hover .feature-icon span {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    color: var(--white);
}

.single-feature.active .feature-icon span::before, .single-feature:hover .feature-icon span::before {
    bottom: 0px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.single-feature.active .feature-icon span::after, .single-feature:hover .feature-icon span::after {
    bottom: -150px;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media only screen and (max-width: 575px) {
    .single-feature.active .feature-icon span::after, .single-feature:hover .feature-icon span::after {
        bottom: -120px;
    }
}

.single-feature.active .feature-content .arrow, .single-feature:hover .feature-content .arrow {
    opacity: 1;
    visibility: visible;
}

/*--
/*  4.3 - About CSS
/*----------------------------------------*/
.about-wrapper {
    margin-top: -50px;
}

.about-wrapper .well {

}

.about-images {
    position: relative;
    margin-top: 50px;
}

.about-images::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 77, 60, 0)), color-stop(50%, rgba(10, 77, 60, 0)), to(rgba(10, 77, 60, 0.6)));
    background: linear-gradient(180deg, rgba(10, 77, 60, 0) 0%, rgba(10, 77, 60, 0) 50%, rgba(10, 77, 60, 0.6) 100%);
}

.about-images .shape {
    position: absolute;
    top: -60px;
    left: -60px;
    -webkit-animation: spin-1 8s infinite linear;
    animation: spin-1 8s infinite linear;
}

@media only screen and (max-width: 575px) {
    .about-images .shape {
        width: 100px;
        left: -20px;
        top: -20px;
    }
}

.about-images .images img {
    width: 100%;
}

.about-images .about-btn {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    text-align: center;
}

@-webkit-keyframes spin-1 {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spin-1 {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.about-content {
    padding: 80px 80px;
    margin-top: 50px;
    position: relative;
}

.about-content.no_mt {
    margin-top: 0;
}

.about-content ul li {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 1rem;
    list-style: outside;
    margin-left: 1rem;
    padding-left: 1rem;
    list-style-type: circle;
}

.about-content ul.bullets li {
    font-size: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
    .about-content {
        padding: 40px;
    }
}

.about-content .shape {
    position: absolute;
    top: -30px;
    right: -50px;
}

@media only screen and (max-width: 575px) {
    .about-content .shape {
        width: 110px;
        top: -10px;
        right: -20px;
    }
}

.about-content .sub-title {
    font-family: var(--sans), sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--midgrey);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-content .main-title {
    font-size: 56px;
    line-height: 1;
    margin-top: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-content .main-title {
        font-size: 44px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .main-title {
        font-size: 44px;
    }
}

@media only screen and (max-width: 575px) {
    .about-content .main-title {
        font-size: 44px;
    }
}

.about-content .count {
    font-family: var(--sans), sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1;
    margin-top: 40px;
    display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .about-content .count {
        font-size: 24px;
    }
}

.about-content p {
    margin-top: 20px;
}


/*--
/*  4.5 - Testimonial/Awards CSS
/*----------------------------------------*/
.testimonial-section, .awards-section {
    background-color: var(--tertiary);
    position: relative;
}

.awards-section .brand-wrapper {
    padding: 150px 140px;
    background-color: transparent;
}

.awards-section .brand-wrapper .main-title {
    color: var(--tertiary_light);
}

.awards-section .brand-wrapper .sub-title, .awards-section .brand-wrapper p {
    color: var(--lightgrey);
}

.testimonial-section.residential-section {
    background-color: var(--tertiary) !important;
}

.testimonial-section .shape-01 {
    position: absolute;
    top: 100px;
    left: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-section .shape-01 {
        width: 220px;
        left: 60px;
        top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-section .shape-01 {
        width: 180px;
        left: 30px;
        top: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .awards-section .brand-wrapper {
        padding: 30px 20px;
        background-color: transparent;
    }

    .testimonial-section .shape-01 {
        width: 140px;
    }
}

.testimonial-section .shape-02 {
    position: absolute;
    top: 30%;
    right: 16%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-section .shape-02 {
        width: 97px;
        right: 12%;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-section .shape-02 {
        width: 77px;
        right: 12%;
    }
}

@media only screen and (max-width: 575px) {
    .testimonial-section .shape-02 {
        width: 57px;
    }
}

.testimonial-wrapper {
    max-width: 970px;
    margin: 70px auto 0;
}

@media only screen and (max-width: 767px) {
    .testimonial-wrapper {
        margin-top: 30px;
    }
}

.single-testimonial {
    text-align: center;
    padding: 0 30px;
}

@media only screen and (max-width: 575px) {
    .single-testimonial {
        padding: 0 15px;
    }
}

.single-testimonial .testimonial-author {
    position: relative;
    display: inline-block;
}

.single-testimonial .testimonial-author img {
    width: 85px;
    border-radius: 50%;
}

.single-testimonial .testimonial-author i {
    position: absolute;
    font-size: 56px;
    color: var(--tertiary);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -33px;
    line-height: 1;
}

.single-testimonial p {
    font-size: 25px;
    font-family: var(--serif), serif;
    color: var(--white);
    margin-top: 55px;
}

@media only screen and (max-width: 767px) {
    .single-testimonial p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .single-testimonial p {
        font-size: 16px;
    }
}

.single-testimonial .name {
    font-size: 30px;
    color: var(--white);
    margin-top: 52px;
}

@media only screen and (max-width: 767px) {
    .single-testimonial .name {
        font-size: 24px;
        margin-top: 32px;
    }
}

.single-testimonial .designation {
    font-size: 11px;
    font-weight: 500;
    color: #fca100;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.testimonial-active {
    position: relative;
}



@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .testimonial-active .arrow {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top:100px;
    }
}

.testimonial-active .swiper-button-next, .testimonial-active .swiper-button-prev {
    width: 55px;
    height: 55px;
    font-size: 15px;
    color: var(--white);
    opacity: 1;
    border-radius: 50%;
    background-color: #266151;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    bottom: 75px;
    top: auto;
    margin-top: 0;
    outline: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-active .swiper-button-next, .testimonial-active .swiper-button-prev {
        bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-active .swiper-button-next, .testimonial-active .swiper-button-prev {
        bottom: 0px;
        position: relative;
        margin: 30px 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-active .swiper-button-next, .testimonial-active .swiper-button-prev {
        bottom: 0px;
        position: relative;
        margin: 30px 10px 0;
        width: 45px;
        height: 45px;
    }
}

.testimonial-active .swiper-button-next::after, .testimonial-active .swiper-button-prev::after {
    display: none;
}

.testimonial-active .swiper-button-next::before, .testimonial-active .swiper-button-prev::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.testimonial-active .swiper-button-next:hover, .testimonial-active .swiper-button-prev:hover {
    background-color: var(--tertiary);
}

.testimonial-active .swiper-button-next:hover::before, .testimonial-active .swiper-button-prev:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(2);
    transform: scale(2);
}

.testimonial-active .swiper-button-next {
    right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-active .swiper-button-next {
        right: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .testimonial-active .swiper-button-next {
        right: 0;
    }
}

.testimonial-active .swiper-button-prev {
    left: auto;
    right: 180px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-active .swiper-button-prev {
        right: 120px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .testimonial-active .swiper-button-prev {
        right: auto;
    }
}

/*--
/*  4.6 - Brand CSS
/*----------------------------------------*/
.brand-wrapper {
    background-color: var(--lightgrey);
    padding: 150px 140px;
    position: relative;
}

@media only screen and (min-width: 1500px) {
    .brand-wrapper {
        margin-left: -140px;
        margin-right: -140px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .brand-wrapper {
        padding: 100px 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brand-wrapper {
        padding: 60px 50px;
    }
}

@media only screen and (max-width: 767px) {
    .brand-wrapper {
        padding: 40px 30px;
    }
}

.brand-wrapper .shape {
    position: absolute;
    top: 90px;
    right: -80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brand-wrapper .shape {
        width: 160px;
        top: 50px;
        right: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .brand-wrapper .shape {
        width: 100px;
        top: 30px;
        right: -40px;
    }
}

@media only screen and (max-width: 575px) {
    .brand-wrapper .shape {
        width: 70px;
        top: 15px;
        right: -20px;
    }
}

.brand-logo-wrapper {
    padding-top: 90px;
}

@media only screen and (max-width: 767px) {
    .brand-logo-wrapper {
        padding-top: 40px;
    }
}

.single-brand {
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-block;
}

.single-brand img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-brand .brand-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.single-brand:hover .brand {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.single-brand:hover .brand-hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/*--
/*  4.7 - Blog CSS
/*----------------------------------------*/
.blog-wrapper {
    padding-top: 30px;
}

@media only screen and (min-width: 1500px) {
    .blog-wrapper {
        margin-left: -30px;
        margin-right: -30px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-wrapper {
        padding-top: 10px;
    }
}

.single-blog {
    margin-top: 50px;
    background-color: var(--lightgrey);
    padding: 45px;
    height: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-blog.sticky_article {
/*    background-color: var(--tertiary_light);*/
}

.single-blog .image {
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    width: 100%;
}

.single-blog .category_wrapper {
    display: block;
    margin-bottom: 0;
}

.single-blog .category_wrapper .category {
    position: absolute;
    top: 0;
    right: 12px;
    display: block;
    padding: 0.6em 1.2em;
    margin-top: -1px;
    background-color: var(--primary);
    color: var(--white);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.single-blog:hover .category_wrapper .category {
    background-color: var(--tertiary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-blog {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .single-blog {
        padding: 20px;
    }
}


.single-blog .blog .meta {
    display: flex;
    justify-content: right;
}

.single-blog .blog .meta span {
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--white);
    margin-right: 4px;
    font-size: 12px;
}

.single-blog .blog .title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-blog .blog .title {
        font-size: 28px;
    }
}

.single-blog .blog > p {
    margin-top: 15px;
}

.single-blog:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.single-blog:hover .blog .meta span {
    background-color: var(--tertiary);
}

.single-blog:hover .blog .meta .author {
    color: var(--white);
}

.single-blog:hover .blog .meta .author a {
    color: var(--white);
}

.single-blog:hover .blog .meta ul li {
    color: var(--white);
}

.single-blog:hover .blog .meta ul li + li::before {
    background-color: var(--white);
}

.single-blog:hover .blog .title {
    color: var(--white);
}

.single-blog:hover .blog > p {
    color: var(--white);
}

.blog-wrapper-02 {
    /*margin-top: -50px;*/
}


/*--
/*  4.9 - Page Banner CSS
/*----------------------------------------*/
.page-banner-section {
    background-repeat: no-repeat;
    /*background-position: center;*/
    /*background-position-x: 80%;*/
    background-size: cover;
    /*   margin-top: 100px;*/
    /*padding-top: 100px;*/
    /*  margin-top:80px;*/
}

.page-banner-content .page-title {
    font-size: 5em;
    line-height: 1;
    font-weight: 400;
    color: var(--lightgrey);
}

.page-banner-content .page-title.ticker {
    display: inline-block;
    background-color: var(--primary);
    padding: 1rem;
}


.page-banner-content .page-subtitle {
    background-color: var(--primary);
    color: var(--light);
    font-family: var(--sans);
    display: block;
    width: fit-content;
    padding: 0.5rem 1rem;
}

.page-banner-content {
    padding-top: 135px;
    padding-bottom: 140px;
    /*    margin-top: 100px;*/
}

.page-banner-content.short {
    padding-top: 92px;
    /*    margin-top: 100px;*/
}


@media only screen and (min-width: 992px) {
    .page-banner-section {
        height: 560px;
        background-position: top;

    }

    .page-banner-section.tutors {
        background-position-y: 10%;
    }

    .page-banner-content {
        padding-top: 300px;
        padding-bottom: 120px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .page-banner-section {
        height: 400px;
        padding-top: 100px;
    }

    .page-banner-section.tutors {
        background-position-y: 10%;
    }

    .page-banner-section.finance {
        background-position-x: 50%;
    }

    .page-banner-content {
        padding-top: 34px;
        padding-bottom: 120px;
    }

}

@media only screen and (max-width: 575px) {
    .page-banner-section {
        height: 400px;
    }

    .page-banner-section.tutors {
        background-position-x: 42%;
    }

    .page-banner-section.finance {
        background-position-x: 18%;
    }

    .page-banner-section.about {
        background-position-x: 30%;
    }

    .page-banner-content.dining_club {
        padding-top: 0px;
    }

    .page-banner-content {
        padding-top: 20px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-banner-content .page-title {
        font-size: 44px;
    }
}

@media only screen and (max-width: 767px) {
    .page-banner-content .page-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {
    .page-banner-content .page-title {
        font-size: 38px;
    }

    .page-banner-content .page-subtitle {
        font-size: 22px
    }
}

.page-banner-content .breadcrumb {
    margin-bottom: 0;
    margin-top: 10px;
}

.page-banner-content .breadcrumb .breadcrumb-item {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary);
}

.page-banner-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "//";
    color: var(--primary);
}

.page-banner-content .breadcrumb .breadcrumb-item.active {
    color: var(--tertiary);
}

/*--
/*  4.10 - Our Mission CSS
/*----------------------------------------*/
.our-mission-wrapper .content .sub-title {
    font-size: 35px;
    color: var(--tertiary);
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .our-mission-wrapper .content .sub-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 575px) {
    .our-mission-wrapper .content .sub-title {
        font-size: 24px;
    }
}

.our-mission-wrapper .content .main-title {
    font-size: 57px;
    font-weight: 400;
    margin-top: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .our-mission-wrapper .content .main-title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 575px) {
    .our-mission-wrapper .content .main-title {
        font-size: 30px;
    }
}

.our-mission-wrapper .content p {
    margin-top: 25px;
}

@media only screen and (min-width: 1500px), only screen and (min-width: 1200px) and (max-width: 1499px) {
    .our-mission-wrapper .content-list {
        padding-left: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .our-mission-wrapper .content-list {
        padding-top: 40px;
    }
}

.our-mission-wrapper .content-list ul li {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .our-mission-wrapper .content-list ul li {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .our-mission-wrapper .content-list ul li {
        font-size: 16px;
        padding-left: 20px;
    }
}

.our-mission-wrapper .content-list ul li + li {
    margin-top: 28px;
}

.our-mission-wrapper .content-list ul li::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--tertiary);
    border-radius: 50%;
    top: 18px;
    left: 0;
}

@media only screen and (max-width: 575px) {
    .our-mission-wrapper .content-list ul li::before {
        width: 7px;
        height: 7px;
        top: 12px;
    }
}

.our-mission-wrapper .content-list .btn {
    margin-top: 40px;
    margin-left: 40px;
}

@media only screen and (max-width: 575px) {
    .our-mission-wrapper .content-list .btn {
        margin-left: 20px;
        margin-top: 30px;
    }
}

/*--
/*  4.11 - Instructor CSS
/*----------------------------------------*/
.instructor-wrapper {
    padding-top: 40px;
}

@media only screen and (max-width: 575px) {
    .instructor-wrapper {
        padding-top: 10px;
    }
}

.single-instructor {
    margin-top: 30px;
}

.single-instructor .instructor-images img {
    width: 100%;
}

.single-instructor .instructor-content {
    text-align: center;
    background-image: -webkit-linear-gradient(-90deg, var(--lightgrey) 0%, white 100%);
    padding-bottom: 30px;
    padding-top: 30px;
    /*-webkit-transition: all 0.3s linear;*/
    /*transition: all 0.3s linear;*/
    /*position: relative;*/
}

.single-instructor .instructor-content .social {
    padding-bottom: 25px;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    /*-webkit-transition: all 0.3s linear;*/
    /*transition: all 0.3s linear;*/
}

.single-instructor .instructor-content .social a {
    width: 45px;
    height: 45px;
    line-height: 43px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    margin: 0 7px;
    /*-webkit-transition: all 0.3s linear;*/
    /*transition: all 0.3s linear;*/
}

.single-instructor .instructor-content .social a:hover {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: var(--white);
}

.single-instructor .instructor-content .designation {
    font-size: 15px;
    color: var(--secondary);
}

.single-instructor .instructor-content .name {
    font-size: 28px;
    font-weight: 500;
    /*margin-top: 15px;*/
}

.single-instructor .instructor-content .description {
    font-size: 15px;
    line-height: 26px;
}

@media only screen and (max-width: 575px) {
    .single-instructor .instructor-content .name {
        font-size: 22px;
    }
}

.single-instructor:hover .instructor-content {
    margin-top: -70px;
    padding-top: 100px;
}

.single-instructor:hover .instructor-content .social {
    opacity: 1;
    visibility: visible;
}

.instructor-btn {
    padding-top: 60px;
    text-align: center;
}


/*--
/*  4.13 - Team CSS
/*----------------------------------------*/
.single-team {
    text-align: center;
    margin-top: 50px;
}

.single-team .team-thumb img {
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #d3ded7;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-team .team-content {
    padding-top: 15px;
}

.single-team .team-content .rating {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-team .team-content .rating .count {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.single-team .team-content .rating i {
    color: var(--tertiary);
    margin: 0 5px;
}

.single-team .team-content .rating .text {
    font-size: 13px;
    font-weight: 400;
    color: #848886;
}

.single-team .team-content .name {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-team .team-content .name {
        font-size: 16px;
    }
}

.single-team .team-content .designation {
    display: block;
    font-size: 15px;
    line-height: 15px;
    color: var(--secondary);
    margin-top: 10px;
}

.single-team:hover .team-thumb img {
    border-color: var(--secondary);
}

/*--
/*  4.14 - Blog Details CSS
/*----------------------------------------*/
.blog-details-wrapper {
    /*margin-top: 50px;*/
}

.blog-details-wrapper .details-images {
    margin-top: 1em;
    padding-bottom: 40px;
}

.blog-details-wrapper .details-images img {
    width: 100%;
}

.blog-details-wrapper .title {
    font-size: 25px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .blog-details-wrapper .title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-wrapper .title {
        font-size: 18px;
    }
}

.blog-details-admin-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .blog-details-admin-meta {
        display: block;
    }
}

.blog-details-admin-meta .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details-admin-meta .author .author-thumb a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .blog-details-admin-meta .author .author-thumb a img {
        width: 45px;
    }
}

.blog-details-admin-meta .author .author-name {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 12px;
}

.blog-details-admin-meta .author .author-name .name {
    color: #9b9ea1;
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .blog-details-admin-meta .author .author-name .name {
        font-size: 13px;
    }
}

.blog-details-admin-meta .author .author-name .name a {
    color: var(--primary);
}

.blog-details-admin-meta .author .author-name .name a:hover {
    color: var(--tertiary);
}

.blog-details-admin-meta .blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .blog-details-admin-meta .blog-meta {
        padding-left: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-admin-meta .blog-meta {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.blog-details-admin-meta .blog-meta span {
    font-size: 14px;
    font-weight: 400;
    color: var(--tertiary);
    margin-right: 40px;
    display: inline-block;
    line-height: 1;
}

@media only screen and (max-width: 575px) {
    .blog-details-admin-meta .blog-meta span {
        margin-right: 25px;
        margin-top: 10px;
    }
}

.blog-details-admin-meta .blog-meta span:last-child {
    margin-right: 0;
}

.blog-details-admin-meta .blog-meta span i {
    color: var(--tertiary);
    margin-right: 5px;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
}

.blog-details-admin-meta .blog-meta .tag a {
    width: 100px;
    height: 35px;
    line-height: 35px;
    background-color: var(--lightgrey);
    border-radius: 5px;
    font-size: 14px;
    color: var(--tertiary);
    display: inline-block;
    text-align: center;
    padding: 0 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .blog-details-admin-meta .blog-meta .tag a {
        width: 80px;
        font-size: 13px;
    }
}

.blog-details-admin-meta .blog-meta .tag a:hover {
    background-color: var(--tertiary);
    color: var(--white);
}

.blog-details-description {
    padding-top: 6px;
    padding-bottom: 20px;
}

.blog-details-description a {
    color: var(--info);
    border-bottom: 1px dotted #ccc;
}

.blog-details-description a:hover {
    color: var(--danger);
    border-bottom: 1px dotted #666;
}

.blog-details-description p {
    margin-bottom: 1em;
    font-size: 15px;
    font-weight: 400;
    /*margin-top: 25px;*/
    margin-top: 1em;
    color: var(--dark);
}

.blog-details-description ul, .blog-details-description ol {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1rem;
}

.blog-details-description ul li, .blog-details-description ol li {
    margin-bottom: 0.3em;
}

.blog-details-description h2 {
    margin-top: 1em;
    margin-bottom: 0.3em;
    padding-bottom: 0;
}

.blog-details-description h3 {
    margin-top: 30px;
    font-size: 25px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.5;
}

.blog-details-description h4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
    .blog-details-description h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-description h3 {
        font-size: 18px;
    }
}

.blog-details-description .details-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media only screen and (max-width: 575px) {
    .blog-details-description .details-img {
        margin: 0;
    }
}

.blog-details-description .details-img .dec-img {
    width: 50%;
    padding: 0 15px;
    margin-top: 30px;
}

@media only screen and (max-width: 575px) {
    .blog-details-description .details-img .dec-img {
        width: 100%;
        padding: 0;
    }
}

.blog-details-description .details-img .dec-img img {
    width: 100%;
    border-radius: 2px;
}

.blog-details-tags-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-details-tags-social .blog-details-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
}

@media only screen and (max-width: 575px) {
    .blog-details-tags-social .blog-details-label {
        display: block;
    }
}

.blog-details-tags-social .blog-details-label .label {
    font-size: 25px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 10px;
    padding-right: 20px;
}

.blog-details-tags-social .blog-details-label .tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.blog-details-tags-social .blog-details-label .tag-list li {
    padding-right: 10px;
    padding-top: 10px;
}

.blog-details-tags-social .blog-details-label .tag-list li:last-child {
    padding-right: 0;
}

.blog-details-tags-social .blog-details-label .tag-list li a {
    width: 100px;
    height: 35px;
    line-height: 35px;
    border-radius: 2px;
    color: var(--tertiary);
    text-align: center;
    display: block;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color: var(--lightgrey);
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    .blog-details-tags-social .blog-details-label .tag-list li a {
        width: auto;
        padding: 0 14px;
    }
}

.blog-details-tags-social .blog-details-label .tag-list li a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.blog-details-tags-social .blog-details-label .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-details-tags-social .blog-details-label .social li {
    padding-right: 20px;
    padding-top: 10px;
}

.blog-details-tags-social .blog-details-label .social li:last-child {
    padding-right: 0;
}

.blog-details-tags-social .blog-details-label .social li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(10, 77, 60, 0.25);
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    color: var(--dark);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-details-tags-social .blog-details-label .social li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.blog-details-tags-social .blog-details-label .social li a:hover {
    border-color: var(--tertiary);
    background-color: var(--tertiary);
    color: var(--white);
}

.blog-details-comment .title {
    font-size: 25px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.5;
}

.comment-wrapper {
    margin-top: 50px;
}

.comment-items .comment-reply {
    padding-left: 100px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .comment-items .comment-reply {
        padding-left: 0;
    }
}

.single-comment {
    padding: 30px;
    border: 1px solid rgba(10, 77, 60, 0.2);
    border-radius: 2px;
    margin-top: 30px;
    position: relative;
    background-color: var(--white);
}

.single-comment .comment-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .single-comment .comment-author {
        display: block;
    }
}

.single-comment .comment-author .author-thumb img {
    width: 90px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid rgba(10, 77, 60, 0.2);
}

.single-comment .comment-author .author-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
    padding-right: 115px;
}

@media only screen and (max-width: 767px) {
    .single-comment .comment-author .author-content {
        padding-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .single-comment .comment-author .author-content {
        padding-left: 0;
        padding-top: 20px;
    }
}

.single-comment .comment-author .author-content .name {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
}

.single-comment .comment-author .author-content .designation {
    font-size: 14px;
    color: var(--tertiary);
    display: block;
    margin-top: 5px;
}

.single-comment .comment-author .author-content .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single-comment .comment-author .author-content .meta span {
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.single-comment .comment-author .author-content .meta .designation {
    color: var(--tertiary);
}

.single-comment .comment-author .author-content .meta .designation::after {
    content: "||";
    font-size: 14px;
    font-weight: 400;
    color: var(--tertiary);
    margin: 0 8px;
}

.single-comment .comment-author .author-content .meta .time {
    color: #ff8a00;
}

.single-comment p {
    padding-top: 10px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.single-comment .reply {
    padding: 0 25px;
    height: 45px;
    line-height: 45px;
    border-radius: 2px;
    background-color: var(--lightgrey);
    color: var(--primary);
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: absolute;
    top: 30px;
    right: 30px;
}

@media only screen and (max-width: 767px) {
    .single-comment .reply {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 15px;
    }
}

.single-comment .reply i {
    margin-right: 5px;
}

.single-comment .reply:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.comment-form {
    margin-top: 50px;
}

.comment-form .form-wrapper {
    padding-top: 10px;
}

.comment-form .form-wrapper .single-form .btn {
    margin-top: 30px;
}

/*--
/*  4.15 - Registration & Login Form CSS
/*----------------------------------------*/
.register-login-wrapper {
    padding: 70px;
    padding-top: 60px;
    border-radius: 2px;
    background-color: var(--lightgrey);
}

@media only screen and (max-width: 575px) {
    .register-login-wrapper {
        padding: 30px;
    }
}

.register-login-form .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .register-login-form .title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 575px) {
    .register-login-form .title {
        font-size: 20px;
    }
}

.register-login-form .title span {
    color: var(--tertiary);
    position: relative;
}

.register-login-form .title span::before {
    position: absolute;
    content: "";
    background-image: url(../images/shape/shape-4.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 121px;
    height: 13px;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 575px) {
    .register-login-form .title span::before {
        display: none;
    }
}

.register-login-form .form-wrapper {
    padding-top: 10px;
}

.register-login-form .single-form .btn {
    margin-top: 20px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.register-login-form .single-form .btn::before {
    width: 600px;
    height: 600px;
}

.register-login-form .single-form .btn.btn-outline {
    border: 1px solid rgba(255, 163, 0, 0.2);
    line-height: 58px;
}

.register-login-form .single-form .btn.btn-outline:hover {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: var(--white);
}

.register-login-form p {
    font-size: 15px;
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
}

/*--
/*  4.16 - FAQ'S CSS
/*----------------------------------------*/
.faq-accordion {
    padding-top: 50px;
}

h2.accordion-header {
    font-family: var(--sans);
    font-weight: 500;
}

.faq-accordion .accordion-item {
    border-radius: 2px !important;
    margin-top: 20px;
    border: 1px solid #e7e2dc !important;
}

.faq-accordion .accordion-item a {
    color: var(--info);
    text-decoration: underline;
}

.faq-accordion .accordion-item button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 17px 30px;
    padding-right: 55px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--sans);
    border: 0;
    color: var(--dark);
    background-color: transparent;
    border-bottom: 1px solid #e7e2dc;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .faq-accordion .accordion-item button {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .faq-accordion .accordion-item button {
        font-size: 16px;
        padding: 12px 20px;
        padding-right: 45px;
    }
}

.faq-accordion .accordion-item button::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    /*content: "\eab9";*/
    /*font-family: IcoFont;*/
    content: "\f077";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (max-width: 575px) {
    .faq-accordion .accordion-item button::before {
        right: 20px;
    }
}

.faq-accordion .accordion-item button.collapsed {
    color: var(--dark);
    background-color: var(--lightgrey);
    border-bottom-color: transparent;
}

.faq-accordion .accordion-item button.collapsed::before {
    content: "\f077";
}

.faq-accordion .accordion-item .accordion-body {
    padding: 12px 30px 18px 30px;
}

.faq-accordion .accordion-item .accordion-body p + p {
    margin-top: 20px;
}

.faq-btn {
    padding-top: 80px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .faq-btn {
        padding-top: 40px;
    }
}

/*--
/*  4.17 - Error CSS
/*----------------------------------------*/
.error-section {
    position: relative;
    margin-top: 100px;
}

.error-section .shape {
    position: absolute;
    bottom: 0;
    left: 9%;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .error-section .shape {
        width: 260px;
        left: 5%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .error-section .shape {
        width: 210px;
        left: 2%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .error-section .shape {
        display: none;
    }
}

.error-wrapper {
    text-align: center;
}

.error-wrapper .error-content {
    max-width: 520px;
    margin: 45px auto 0;
}

.error-wrapper .error-content .title {
    font-size: 57px;
    font-weight: 500;
    color: #f03c3a;
}

@media only screen and (max-width: 575px) {
    .error-wrapper .error-content .title {
        font-size: 40px;
    }
}

.error-wrapper .error-content .sub-title {
    font-size: 30px;
    font-weight: 400;
    margin-top: 15px;
}

@media only screen and (max-width: 575px) {
    .error-wrapper .error-content .sub-title {
        font-size: 20px;
    }
}

.error-wrapper .error-content p {
    margin-top: 15px;
}

.error-wrapper .error-content .btn {
    margin-top: 40px;
}

@media only screen and (max-width: 575px) {
    .error-wrapper .error-content .btn {
        margin-top: 20px;
    }
}

/*--
/*  4.18 - Contact CSS
/*----------------------------------------*/
.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 2px;
}

@media only screen and (max-width: 575px) {
    .contact-map-wrapper iframe {
        height: 300px;
    }
}

.contact-wrapper {
    margin-top: -50px;
}

.contact-content {
    margin-top: 40px;
}

.contact-title .sub-title {
    font-size: 35px;
    font-weight: 400;
    color: var(--tertiary);
}

@media only screen and (max-width: 575px) {
    .contact-title .sub-title {
        font-size: 24px;
    }
}

.contact-title .main-title {
    font-size: 45px;
    font-weight: 400;
    margin-top: 15px;
}

@media only screen and (max-width: 575px) {
    .contact-title .main-title {
        font-size: 28px;
    }
}

.form-message {
    margin-bottom: 0;
}

.form-message.error, .form-message.success {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    background: #ddd;
    padding: 10px 15px;
    margin-top: 15px;
    margin-left: 5px;
}

.form-message.error {
    color: #ff0000;
}

.contact-form {
    padding-top: 25px;
}

.contact-form .single-form .btn {
    margin-top: 20px;
}

.contact-information {
    padding-left: 40px;
    margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .contact-information {
        padding-left: 0;
    }
}

.contact-information .information-wrapper {
    background-color: var(--primary);
    padding: 80px 85px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-information .information-wrapper {
        padding: 80px 50px;
    }
}

.contact-information .information-wrapper .shape {
    position: absolute;
    top: -130px;
    right: -260px;
    z-index: -1;
}

.contact-information .information-wrapper .single-info + .single-info {
    margin-top: 45px;
}

.contact-information .information-wrapper .single-info .info-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--tertiary);
    padding-bottom: 20px;
}

.contact-information .information-wrapper .single-info p {
    font-size: 19px;
    font-weight: 500;
    color: var(--white);
}

@media only screen and (max-width: 575px) {
    .contact-information .information-wrapper {
        padding: 30px;
    }

    .contact-information .information-wrapper .single-info .info-title {
        font-size: 24px;
    }

    .contact-information .information-wrapper .single-info p {
        font-size: 16px;
    }
}

/*--
/*  4.19 - Courses Enroll CSS
/*----------------------------------------*/
.courses-enroll-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.courses-video-player {
    width: 71.8%;
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-video-player {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .courses-video-player {
        padding-bottom: 60px;
    }
}

.courses-video-player .vidcontainer {
    background: #010101;
    position: relative;
    height: 690px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-video-player .vidcontainer {
        height: 490px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-video-player .vidcontainer {
        height: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-video-player .vidcontainer {
        height: 420px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-video-player .vidcontainer {
        height: 340px;
    }
}

.courses-video-player video {
    width: 100%;
    height: 690px;
    text-align: center;
    display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-video-player video {
        height: 490px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-video-player video {
        height: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-video-player video {
        height: 420px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-video-player video {
        height: 340px;
    }
}

.courses-video-player .video-play-bar {
    background-color: rgba(33, 40, 50, 0.8);
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    padding: 20px 40px;
    z-index: 13;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

@media only screen and (max-width: 575px) {
    .courses-video-player .video-play-bar {
        left: 20px;
        right: 20px;
        padding: 15px 15px;
    }
}

.courses-video-player .topControl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

.courses-video-player .topControl .progress {
    width: calc(100% - 110px);
    height: 3px;
    position: relative;
    cursor: pointer;
    background-color: #7a8088;
}

@media only screen and (max-width: 575px) {
    .courses-video-player .topControl .progress {
        width: calc(100% - 100px);
    }
}

.courses-video-player .topControl .progress span {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.courses-video-player .topControl .progress .timeBar {
    z-index: 10;
    width: 0;
    background-color: #ff0000;
}

.courses-video-player .topControl .progress .bufferBar {
    z-index: 5;
    width: 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.courses-video-player .topControl .time {
    white-space: nowrap;
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
}

.courses-video-player .controllers {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 8px;
    margin-left: -5px;
    margin-right: -5px;
}

.courses-video-player .controllers .controllers-right {
    white-space: nowrap;
    text-align: right;
}

.courses-video-player .controllers button {
    border: 0;
    background: none;
    color: var(--white);
    margin: 0 10px;
    outline: none;
    font-size: 15px;
    display: inline-block;
    padding: 0;
}

@media only screen and (max-width: 575px) {
    .courses-video-player .controllers button {
        font-size: 14px;
    }
}

.courses-video-player .controllers .btnPlay:after {
    content: "\f04b";
    font-family: "FontAwesome";
}

.courses-video-player .controllers .paused:after {
    content: "\f04c";
}

.courses-video-player .controllers .sound:after {
    content: "\f027";
    font-family: "FontAwesome";
}

.courses-video-player .controllers .sound2:after {
    content: "\f028";
}

.courses-video-player .controllers .muted:after {
    content: "\f026";
}

.courses-video-player .controllers .volume {
    position: relative;
    cursor: pointer;
    width: 70px;
    height: 5px;
    background-color: #7a8088;
    display: inline-block;
    margin-bottom: 2px;
}

.courses-video-player .controllers .volume .volumeBar {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff0000;
    z-index: 10;
}

.courses-video-player .controllers .speedcnt {
    display: none;
    position: absolute;
    right: 60px;
    bottom: 46px;
    background-color: var(--white);
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.courses-video-player .controllers .speedcnt li {
    text-align: center;
    font-weight: 400;
    font-size: 11px;
    padding: 5px 20px;
    cursor: pointer;
    display: block;
    border-bottom: 1px solid rgba(255, 163, 0, 0.2);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: var(--tertiary);
}

.courses-video-player .controllers .speedcnt li:last-child {
    border-bottom: 0;
}

.courses-video-player .controllers .speedcnt li.selected {
    font-weight: 500;
    background-color: var(--tertiary);
    color: var(--white);
}

.courses-video-player .controllers .btnFS:after {
    content: "\f065";
    font-family: "FontAwesome";
}

.courses-video-player .controllers .disabled {
    pointer-events: none;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.5);
}

.courses-video-player .bigplay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 11;
    color: var(--white);
    font-size: 90px;
    line-height: 90px;
    text-align: center;
    cursor: pointer;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 575px) {
    .courses-video-player .bigplay {
        font-size: 45px;
    }
}

.courses-video-player .bigplay i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.courses-video-player .loading {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.courses-video-player .loading .spinner {
    border-color: var(--white);
    border-right-color: transparent;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
}

.courses-video-player:hover .video-play-bar {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.courses-enroll-content {
    padding: 0 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-enroll-content {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content {
        padding: 0 20px;
    }
}

.courses-enroll-content .courses-enroll-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-enroll-content .courses-enroll-title {
        display: block;
    }
}

.courses-enroll-content .courses-enroll-title .title {
    max-width: 760px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 0;
    margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-title .title {
        max-width: 380px;
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content .courses-enroll-title .title {
        font-size: 18px;
    }
}

.courses-enroll-content .courses-enroll-title p {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}

.courses-enroll-content .courses-enroll-title p i {
    color: #ff4200;
    margin-right: 3px;
}

.courses-enroll-content .courses-enroll-title p span {
    color: #ff4200;
}

.courses-enroll-content .courses-enroll-tab {
    background-color: var(--lightgrey);
    padding: 5px 15px 15px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .courses-enroll-content .courses-enroll-tab {
        display: block;
    }
}

.courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav {
    margin-left: -7px;
    margin-right: -7px;
}

.courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav li {
    padding: 10px 7px 0;
}

.courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav li button {
    border: 1px solid #eae5e0;
    background-color: var(--white);
    border-radius: 50px;
    padding: 0 23px;
    height: 45px;
    line-height: 41px;
    text-align: center;
    display: block;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    white-space: nowrap;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav li button {
        font-size: 14px;
        padding: 0 13px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav li button {
        font-size: 14px;
        padding: 0 13px;
    }
}

.courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav li button.active, .courses-enroll-content .courses-enroll-tab .enroll-tab-menu .nav li button:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.courses-enroll-content .courses-enroll-tab .enroll-share {
    padding-top: 10px;
}

.courses-enroll-content .courses-enroll-tab .enroll-share a {
    border: 1px solid #eae5e0;
    background-color: var(--white);
    border-radius: 50px;
    padding: 0 25px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    white-space: nowrap;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-tab .enroll-share a {
        font-size: 14px;
        padding: 0 20px;
    }
}

.courses-enroll-content .courses-enroll-tab .enroll-share a i {
    margin-right: 5px;
    font-size: 20px;
    color: var(--tertiary);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.courses-enroll-content .courses-enroll-tab .enroll-share a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.courses-enroll-content .courses-enroll-tab .enroll-share a:hover i {
    color: var(--white);
}

.courses-enroll-content .courses-enroll-tab-content {
    border: 1px solid #eae5e0;
    padding: 10px 50px 35px;
    border-radius: 10px;
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-tab-content {
        padding: 1px 40px 25px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content .courses-enroll-tab-content {
        padding: 1px 20px 15px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-title {
    padding-top: 20px;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-title .title {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-title .title {
        font-size: 20px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content {
    padding-top: 25px;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content p {
    font-size: 15px;
    font-weight: 400;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .table {
    border-top: 1px solid #eae5e0;
    margin-bottom: 25px;
    margin-top: 25px;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .table tbody tr th {
    width: 170px;
    border-color: #eae5e0;
    padding: 12px 30px;
    padding-right: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .table tbody tr th {
        font-size: 14px;
        padding: 8px 15px;
        padding-right: 0;
        min-width: 90px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .table tbody tr th span {
    display: block;
    float: right;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .table tbody tr td {
    border-color: #eae5e0;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 400;
    color: var(--tertiary);
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .table tbody tr td {
        font-size: 14px;
        padding: 8px 15px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .text {
    font-weight: 500;
    color: var(--primary);
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor {
    border-bottom: 1px solid #eae5e0;
    position: relative;
    overflow: hidden;
    padding: 25px 0 20px;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor:first-child {
    padding-top: 0;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author {
        display: block;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-thumb {
    position: relative;
    display: inline-block;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-thumb img {
    display: block;
    width: 90px;
    border: 1px solid #eae5e0;
    border-radius: 50%;
    padding: 8px;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
}

@media only screen and (max-width: 575px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content {
        padding-left: 0;
        padding-top: 20px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .designation {
    font-size: 14px;
    font-weight: 400;
    color: #81858a;
    margin-top: 5px;
    display: block;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .rating-star {
    position: relative;
    margin-top: 5px;
    display: inline-block;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .rating-star::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #d0d0d0;
    font-size: 14px;
    letter-spacing: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .rating-star::before {
        font-size: 13px;
        letter-spacing: 1px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .rating-star .rating-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    display: inline-block;
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .rating-star .rating-bar::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: var(--tertiary);
    font-size: 14px;
    letter-spacing: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor .review-author .author-content .rating-star .rating-bar::before {
        font-size: 13px;
        letter-spacing: 1px;
    }
}

.courses-enroll-content .courses-enroll-tab-content .enroll-tab-content .single-instructor p {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}

.courses-video-playlist {
    width: 28.2%;
    background-color: var(--lightgrey);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-video-playlist {
        width: 100%;
    }
}

.courses-video-playlist .playlist-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 30px 25px;
    background-color: #ece6e0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-video-playlist .playlist-title {
        padding: 15px 40px 25px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-video-playlist .playlist-title {
        padding: 5px 20px 15px;
    }
}

.courses-video-playlist .playlist-title .title {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--sans), sans-serif;
    color: var(--primary);
    margin-bottom: 0;
    margin-top: 10px;
}

@media only screen and (max-width: 575px) {
    .courses-video-playlist .playlist-title .title {
        font-size: 18px;
    }
}

.courses-video-playlist .playlist-title span {
    font-size: 18px;
    font-weight: 500;
    color: var(--tertiary);
    display: inline-block;
    margin-top: 10px;
}

@media only screen and (max-width: 575px) {
    .courses-video-playlist .playlist-title span {
        font-size: 16px;
    }
}

.courses-video-playlist .video-playlist .accordion-item {
    text-align: left;
    border: 0;
    margin-bottom: 0;
    background: none;
}

.courses-video-playlist .video-playlist .accordion-item button {
    border: 0;
    background: none;
    text-align: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid #cde9d7;
    padding: 8px 30px;
    padding-right: 50px;
    background-color: #f1ece7;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-video-playlist .video-playlist .accordion-item button {
        padding: 8px 40px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-video-playlist .video-playlist .accordion-item button {
        padding: 8px 20px;
        padding-right: 40px;
    }
}

.courses-video-playlist .video-playlist .accordion-item button .lesson {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--tertiary);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    max-width: 420px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
    .courses-video-playlist .video-playlist .accordion-item button .lesson {
        font-size: 14px;
    }
}

.courses-video-playlist .video-playlist .accordion-item button::before {
    /*content: "\eaa1";*/
    /*font-family: IcoFont;*/
    font-size: 20px;
    color: var(--tertiary);
    position: absolute;
    top: 8px;
    right: 30px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (max-width: 575px) {
    .courses-video-playlist .video-playlist .accordion-item button::before {
        right: 20px;
    }
}

.courses-video-playlist .video-playlist .accordion-item button.collapsed {
    background-color: var(--lightgrey);
}

.courses-video-playlist .video-playlist .accordion-item button.collapsed .lesson {
    color: var(--dark);
}

.courses-video-playlist .video-playlist .accordion-item button.collapsed::before {
    content: "\eab2";
    color: var(--dark);
}

.courses-video-playlist .video-playlist .total-duration {
    font-size: 13px;
    font-weight: 400;
    color: #848886;
    margin-top: 6px;
    display: block;
}

.courses-video-playlist .video-playlist .vids a {
    display: block;
    padding: 8px 80px;
    padding-right: 30px;
    border-bottom: 1px solid #cde9d7;
    position: relative;
}

.courses-video-playlist .video-playlist .vids a::before {
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 13px;
    left: 48px;
}

.courses-video-playlist .video-playlist .vids a p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
    .courses-video-playlist .video-playlist .vids a p {
        font-size: 13px;
    }
}

.courses-video-playlist .video-playlist .vids a.playing::before {
    border-color: var(--tertiary);
}

.courses-video-playlist .video-playlist .vids a.playing p {
    color: var(--tertiary);
}

/*--
/*  4.20 - Courses Admin CSS
/*----------------------------------------*/
.sidebar-wrapper {
    background-color: #13634f;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 991;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sidebar-wrapper {
        position: fixed;
        height: auto;
        width: 100%;
        top: auto;
        bottom: 0;
    }
}

.sidebar-wrapper .menu-list {
    padding: 40px 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sidebar-wrapper .menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .sidebar-wrapper .menu-list {
        padding: 10px;
    }
}

.sidebar-wrapper .menu-list a {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sidebar-wrapper .menu-list a {
        margin: 0 10px;
        width: 45px;
        height: 45px;
    }
}

@media only screen and (max-width: 575px) {
    .sidebar-wrapper .menu-list a {
        margin: 0 7px;
    }
}

.sidebar-wrapper .menu-list a::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 25px;
    background-color: var(--white);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    top: 50%;
    left: -24px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sidebar-wrapper .menu-list a::before {
        width: 25px;
        height: 4px;
        left: 50%;
        top: auto;
        bottom: -17px;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
}

@media only screen and (max-width: 575px) {
    .sidebar-wrapper .menu-list a::before {
        bottom: -12px;
    }
}

.sidebar-wrapper .menu-list a + a {
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sidebar-wrapper .menu-list a + a {
        margin-top: 0;
    }
}

.sidebar-wrapper .menu-list a.active, .sidebar-wrapper .menu-list a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.sidebar-wrapper .menu-list a.active::before, .sidebar-wrapper .menu-list a:hover::before {
    opacity: 1;
    visibility: visible;
}

.page-content-wrapper {
    padding-left: 100px;
    padding-top: 40px;
    padding-bottom: 80px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .page-content-wrapper {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .page-content-wrapper {
        padding-bottom: 60px;
    }
}

.page-content-wrapper .custom-container {
    padding: 0 15px;
}

@media only screen and (min-width: 1500px) {
    .page-content-wrapper .custom-container {
        padding: 0 50px;
    }
}

.page-content-wrapper .message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #fdf0ea;
    border-radius: 10px;
    padding: 26px 40px;
}

@media only screen and (max-width: 767px) {
    .page-content-wrapper .message {
        padding: 26px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .page-content-wrapper .message {
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .page-content-wrapper .message {
        padding: 26px 30px;
    }
}

.page-content-wrapper .message .message-icon {
    margin-top: 3px;
}

.page-content-wrapper .message .message-content {
    padding-left: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media only screen and (max-width: 767px) {
    .page-content-wrapper .message .message-content {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .page-content-wrapper .message .message-content {
        padding-left: 0;
        padding-top: 15px;
    }
}

.admin-courses-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 35px;
}

@media only screen and (max-width: 767px) {
    .admin-courses-tab {
        display: block;
    }
}

.admin-courses-tab .title {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary);
    padding-top: 20px;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .admin-courses-tab .title {
        font-size: 26px;
    }
}

.admin-courses-tab .courses-tab-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
}

@media only screen and (max-width: 767px) {
    .admin-courses-tab .courses-tab-wrapper {
        display: block;
    }
}

.admin-courses-tab .courses-tab-wrapper > * {
    margin: 0 10px;
}

.admin-courses-tab .courses-tab-wrapper .courses-select {
    padding-top: 20px;
}

.admin-courses-tab .courses-tab-wrapper .courses-select .nice-select {
    float: none;
    display: inline-block;
    padding: 0 40px 0 20px;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 163, 0, 0.2);
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .admin-courses-tab .courses-tab-wrapper .courses-select .nice-select {
        display: block;
    }
}

.admin-courses-tab .courses-tab-wrapper .courses-select .nice-select::after {
    width: 6px;
    height: 6px;
    border-color: var(--dark);
    right: 20px;
}

@media only screen and (max-width: 767px) {
    .admin-courses-tab .courses-tab-wrapper .courses-select .nice-select .list {
        width: 100%;
    }
}

.admin-courses-tab .courses-tab-wrapper .courses-select .nice-select .list li {
    min-height: 35px;
    line-height: 35px;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    .admin-courses-tab .courses-tab-wrapper .nav {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.admin-courses-tab .courses-tab-wrapper .nav li {
    margin-right: 20px;
    padding-top: 20px;
}

.admin-courses-tab .courses-tab-wrapper .nav li:last-child {
    margin-right: 0;
}

.admin-courses-tab .courses-tab-wrapper .nav li button {
    width: 50px;
    height: 50px;
    line-height: 48px;
    border: 1px solid rgba(48, 146, 86, 0.2);
    text-align: center;
    padding: 0;
    background-color: var(--white);
    font-size: 20px;
    color: var(--primary);
    border-radius: 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .admin-courses-tab .courses-tab-wrapper .nav li button {
        width: 45px;
        height: 45px;
        line-height: 43px;
        font-size: 14px;
    }
}

.admin-courses-tab .courses-tab-wrapper .nav li button.active, .admin-courses-tab .courses-tab-wrapper .nav li button:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.admin-courses-tab .courses-tab-wrapper .tab-btn {
    padding-top: 20px;
}

.admin-courses-tab .courses-tab-wrapper .tab-btn .btn {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .admin-courses-tab .courses-tab-wrapper .tab-btn .btn {
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .admin-courses-tab .courses-tab-wrapper .tab-btn .btn {
        padding: 0 15px;
        width: 100%;
    }
}

.admin-courses-tab .courses-tab-wrapper .tab-btn .btn::before {
    width: 500px;
    height: 500px;
}

.courses-item {
    border: 1px solid #e0dddb;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-item {
        padding: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-item {
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .courses-item {
        padding: 15px;
    }
}

.courses-item .item-thumb a img {
    border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-item .item-thumb a img {
        width: 130px;
    }
}

.courses-item .content-title {
    max-width: 445px;
    padding-left: 45px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-item .content-title {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-item .content-title {
        max-width: 460px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-item .content-title {
        padding-left: 0;
        padding-top: 20px;
    }
}

.courses-item .content-title .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.courses-item .content-title .meta .action {
    height: 18px;
    line-height: 18px;
    padding: 0 13px;
    border-radius: 50px;
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
}

.courses-item .content-title .meta .action + .action {
    margin-left: 10px;
}

.courses-item .content-title .meta .action:nth-of-type(1) {
    background-color: #ff6e30;
    color: var(--white);
}

.courses-item .content-title .meta .action:nth-of-type(2) {
    background-color: #dff5ef;
    color: #06b284;
}

.courses-item .content-title .meta .action:nth-of-type(3) {
    background-color: #e1e6fa;
    color: #0066ff;
}

.courses-item .content-title .title {
    margin-bottom: 0;
}

.courses-item .content-title .title a {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 18px;
    display: block;
    line-height: 1.5;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-item .content-title .title a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-item .content-title .title a {
        font-size: 16px;
    }
}

.courses-item .content-title .title a:hover {
    color: var(--tertiary);
}

.courses-item .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: -18px;
    margin-right: -18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (max-width: 767px) {
    .courses-item .content-wrapper {
        margin-left: -7px;
        margin-right: -7px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-item .content-wrapper {
        margin-left: -10px;
        margin-right: -10px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-item .content-wrapper {
        margin-left: -5px;
        margin-right: -5px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .courses-item .content-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.courses-item .content-wrapper > * {
    margin: 15px 18px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (max-width: 767px) {
    .courses-item .content-wrapper > * {
        margin: 15px 7px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .courses-item .content-wrapper > * {
        margin: 15px 10px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-item .content-wrapper > * {
        margin: 15px 5px 0;
    }
}

.courses-item .content-wrapper .content-box {
    width: 180px;
    padding: 15px 25px;
    border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-item .content-wrapper .content-box {
        width: 150px;
        padding: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-item .content-wrapper .content-box {
        width: 143px;
        padding: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-item .content-wrapper .content-box {
        padding: 15px;
        width: auto;
    }
}

.courses-item .content-wrapper .content-box p {
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-item .content-wrapper .content-box p {
        font-size: 14px;
    }
}

.courses-item .content-wrapper .content-box .count {
    font-size: 22px;
    font-weight: 700;
    margin-top: 3px;
    display: block;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-item .content-wrapper .content-box .count {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-item .content-wrapper .content-box .count {
        font-size: 16px;
    }
}

.courses-item .content-wrapper .content-box .count .rating-star {
    position: relative;
}

.courses-item .content-wrapper .content-box .count .rating-star::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #bfbfbf;
    font-size: 13px;
    letter-spacing: 1px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-item .content-wrapper .content-box .count .rating-star::before {
        font-size: 12px;
    }
}

.courses-item .content-wrapper .content-box .count .rating-star .rating-bar {
    position: absolute;
    top: -2px;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.courses-item .content-wrapper .content-box .count .rating-star .rating-bar::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #ff9600;
    font-size: 13px;
    letter-spacing: 1px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-item .content-wrapper .content-box .count .rating-star .rating-bar::before {
        font-size: 12px;
    }
}

.courses-item .content-wrapper .content-box:nth-of-type(1) {
    background-color: #e5ecff;
}

.courses-item .content-wrapper .content-box:nth-of-type(1) .count {
    color: #0f42cd;
}

.courses-item .content-wrapper .content-box:nth-of-type(2) {
    background-color: #def2e6;
}

.courses-item .content-wrapper .content-box:nth-of-type(2) .count {
    color: #309255;
}

.courses-item .content-wrapper .content-box:nth-of-type(3) {
    background-color: #ffe8df;
}

.courses-item .content-wrapper .content-box:nth-of-type(3) .count {
    color: #ff6e30;
}

.courses-item .content-wrapper .courses-select .nice-select {
    float: none;
    display: inline-block;
    padding: 0 40px 0 20px;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 163, 0, 0.2);
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
}

.courses-item .content-wrapper .courses-select .nice-select::after {
    width: 6px;
    height: 6px;
    border-color: var(--dark);
    right: 20px;
}

.courses-item .content-wrapper .courses-select .nice-select .list li {
    min-height: 35px;
    line-height: 35px;
    font-size: 14px;
}

.courses-resources {
    background-color: var(--lightgrey);
    padding: 70px 100px;
    border-radius: 10px;
    margin-top: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-resources {
        padding: 70px 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .courses-resources {
        padding: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-resources {
        margin-top: 60px;
        padding: 50px 40px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-resources {
        padding: 20px 20px;
    }
}

.courses-resources .title {
    font-size: 25px;
    font-weight: 500;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-resources .title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .courses-resources .title {
        font-size: 20px;
    }
}

.single-resources {
    text-align: center;
    margin-top: 30px;
}

.single-resources .resources-icon {
    border: 1px solid #d3e4df;
    display: inline-block;
    padding: 13px;
    border-radius: 50%;
}

.single-resources .resources-icon a {
    position: relative;
    display: inline-block;
    background-color: #def1ec;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-resources .resources-icon a img {
    border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (max-width: 575px) {
    .single-resources .resources-icon a img {
        width: 60px;
    }
}

.single-resources .resources-icon a .hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.single-resources .title {
    margin-bottom: 0;
}

.single-resources .title a {
    font-size: 22px;
    font-weight: 500;
    margin-top: 28px;
    display: inline-block;
}

@media only screen and (max-width: 575px) {
    .single-resources .title a {
        font-size: 18px;
    }
}

.single-resources:hover .resources-icon a {
    background-color: var(--secondary);
}

.single-resources:hover .resources-icon a img {
    opacity: 0;
    visibility: hidden;
}

.single-resources:hover .resources-icon a .hover {
    opacity: 1;
    visibility: visible;
}

/* --- CSS ----*/
.admin-tab-menu {
    padding: 40px 30px;
    background-color: var(--lightgrey);
    position: absolute;
    top: 0;
    left: 99px;
    z-index: 9;
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .admin-tab-menu {
        height: auto;
        left: 0;
        position: relative;
    }
}

.admin-tab-menu a {
    display: block;
    width: 280px;
    height: 55px;
    line-height: 53px;
    border-radius: 10px;
    padding: 0 50px 0 20px;
    border: 1px solid #e0dddb;
    background-color: #f0ede9;
    text-align: left;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    color: var(--primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .admin-tab-menu a {
        width: 230px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .admin-tab-menu a {
        width: 205px;
        font-size: 14px;
        padding: 0 45px 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .admin-tab-menu a {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .admin-tab-menu a {
        font-size: 14px;
        padding: 0 45px 0 15px;
    }
}

.admin-tab-menu a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .admin-tab-menu a::before {
        left: 15px;
    }
}

.admin-tab-menu a + a {
    margin-top: 20px;
}

.admin-tab-menu a.active, .admin-tab-menu a:hover {
    padding-left: 40px;
    font-weight: 500;
    background-color: var(--white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .admin-tab-menu a.active, .admin-tab-menu a:hover {
        padding-left: 25px;
    }
}

.admin-tab-menu a.active::before, .admin-tab-menu a:hover::before {
    opacity: 1;
    visibility: visible;
}

.main-content-wrapper {
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: 340px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .main-content-wrapper {
        padding-left: 289px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-content-wrapper {
        padding-left: 266px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .main-content-wrapper {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .main-content-wrapper {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 1500px) {
    .main-content-wrapper .container-fluid {
        padding: 0 60px;
    }
}

.admin-top-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .admin-top-bar {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .admin-top-bar.students-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.overview-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .overview-box {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (max-width: 767px) {
    .overview-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
    }
}

.overview-box .single-box {
    border-radius: 10px;
    padding: 15px 30px;
    width: 200px;
    margin: 20px 20px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .overview-box .single-box {
        margin: 20px 10px 0;
        width: 175px;
        padding: 15px 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .overview-box .single-box {
        margin: 20px 10px 0;
        width: 185px;
        padding: 15px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .overview-box .single-box {
        margin: 20px 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .overview-box .single-box {
        width: 100%;
        margin: 20px 0 0;
    }
}

.overview-box .single-box .title {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .overview-box .single-box .title {
        font-size: 14px;
    }
}

.overview-box .single-box .count {
    font-size: 30px;
    font-weight: 500;
    margin-top: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 768px) and (max-width: 991px) {
    .overview-box .single-box .count {
        font-size: 20px;
    }
}

.overview-box .single-box .count .rating-star {
    position: relative;
}

.overview-box .single-box .count .rating-star::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #d0d0d0;
    font-size: 13px;
    letter-spacing: 1px;
}

.overview-box .single-box .count .rating-star .rating-bar {
    position: absolute;
    top: -2px;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.overview-box .single-box .count .rating-star .rating-bar::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: var(--tertiary);
    font-size: 13px;
    letter-spacing: 1px;
}

.overview-box .single-box p {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-top: 3px;
}

.overview-box .single-box p span {
    color: var(--tertiary);
}

.overview-box .single-box:nth-of-type(1) {
    background-color: #e5ecff;
}

.overview-box .single-box:nth-of-type(1) .count {
    color: #0f42cd;
}

.overview-box .single-box:nth-of-type(2) {
    background-color: #def2e6;
}

.overview-box .single-box:nth-of-type(2) .count {
    color: #309255;
}

.overview-box .single-box:nth-of-type(3) {
    background-color: #ffe8df;
}

.overview-box .single-box:nth-of-type(3) .count {
    color: #ff6e30;
}

.graph {
    padding: 25px 70px 45px;
    border-radius: 10px;
    border: 1px solid #ebe6e1;
    margin-top: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .graph {
        padding: 15px 30px 25px;
    }
}

.graph .graph-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .graph .graph-title {
        display: block;
    }
}

.graph .graph-title .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
    padding-top: 15px;
    line-height: 1.4;
    font-family: var(--sans), sans-serif;
}

@media only screen and (max-width: 575px) {
    .graph .graph-title .title {
        font-size: 18px;
    }
}

.graph .graph-content {
    margin-top: 20px;
}

.graph .graph-btn {
    text-align: center;
    margin-top: 20px;
}

.graph .graph-btn .btn {
    border-radius: 10px;
}

.student-box {
    border-radius: 10px;
    padding: 25px 30px;
    width: 180px;
    margin-top: 20px;
    background-color: #def2e6;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .student-box {
        margin: 20px 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .student-box {
        width: 100%;
        margin: 20px 0 0;
    }
}

.student-box .title {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary);
    font-family: var(--sans), sans-serif;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .student-box .title {
        font-size: 14px;
    }
}

.student-box .count {
    font-size: 32px;
    font-weight: 700;
    margin-top: 5px;
    color: #309255;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .student-box .count {
        font-size: 20px;
    }
}

.students-wrapper {
    padding-top: 10px;
}

.single-student {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ebe6e1;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-student {
        padding: 15px;
    }
}

.single-student .student-images img {
    width: 85px;
    border-radius: 50%;
    border: 1px solid #ebe6e1;
    padding: 7px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-student .student-images img {
        padding: 4px;
    }
}

.single-student .student-content {
    padding-left: 30px;
    max-width: 220px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-student .student-content {
        padding-left: 15px;
        max-width: 200px;
    }
}

.single-student .student-content .name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-student .student-content .name {
        font-size: 16px;
    }
}

.single-student .student-content .country {
    color: var(--tertiary);
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: 7px;
}

.single-student .student-content .country img {
    width: 15px;
    margin-top: -6px;
}

.single-student .student-content p {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-student .student-content .date {
    font-size: 13px;
    font-weight: 400;
    color: #838785;
    display: block;
    margin-top: 2px;
}

.single-student .student-content .date i {
    color: var(--tertiary);
    margin-right: 5px;
}

.single-student:hover {
    border-color: var(--secondary);
}

.single-student:hover .student-images img {
    border-color: var(--secondary);
}

.students-active {
    position: relative;
}

.students-active .students-arrow {
    text-align: center;
    margin-top: 30px;
}

.students-active .swiper-button-next, .students-active .swiper-button-prev {
    opacity: 1;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid #ebe6e1;
    color: var(--dark);
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
    top: 0;
    margin-top: 0;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 575px) {
    .students-active .swiper-button-next, .students-active .swiper-button-prev {
        width: 35px;
        height: 35px;
        line-height: 32px;
    }
}

.students-active .swiper-button-next::after, .students-active .swiper-button-prev::after {
    display: none;
}

.students-active .swiper-button-next:hover, .students-active .swiper-button-prev:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.students-active .swiper-button-prev {
    left: 0;
}

.students-active .swiper-button-next {
    right: 0;
}

.students-map {
    padding: 30px 45px;
    border: 1px solid #ebe6e1;
    border-radius: 10px;
    margin-top: 50px;
}

@media only screen and (max-width: 575px) {
    .students-map {
        padding: 30px 20px;
    }
}

.students-map .title {
    font-size: 20px;
    font-weight: 500;
    background-color: var(--lightgrey);
    border: 1px solid #daebe0;
    border-radius: 10px;
    text-align: center;
    padding: 16px;
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

@media only screen and (max-width: 575px) {
    .students-map .title {
        font-size: 16px;
    }
}

.students-map .map {
    margin-top: 30px;
}

.students-map .map #vmap {
    height: 530px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .students-map .map #vmap {
        height: 470px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .students-map .map #vmap {
        height: 340px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .students-map .map #vmap {
        height: 340px;
    }
}

.single-student-widget {
    padding: 25px 30px;
    border-radius: 10px;
    margin-top: 50px;
}

@media only screen and (max-width: 575px) {
    .single-student-widget {
        padding: 25px 15px;
    }
}

.single-student-widget.widget-color-01 {
    background-color: var(--white) 6 f1;
}

.single-student-widget.widget-color-01 .widget-title {
    background-color: #f9d9c7;
}

.single-student-widget.widget-color-01 .single-item .item-bar {
    background-color: #f9d9c7;
}

.single-student-widget.widget-color-01 .single-item .item-bar .bar-line {
    background-color: #ff6c00;
}

.single-student-widget.widget-color-01 .single-item .item-percentage p span {
    color: #ff6c00;
}

.single-student-widget.widget-color-01 .page-pagination .pagination li a {
    border: 1px solid #e1d0c4;
}

.single-student-widget.widget-color-01 .page-pagination .pagination li a.active, .single-student-widget.widget-color-01 .page-pagination .pagination li a:hover {
    color: var(--white);
    background-color: #ff6c00;
    border-color: #ff6c00;
}

.single-student-widget.widget-color-02 {
    background-color: #eefbf3;
}

.single-student-widget.widget-color-02 .widget-title {
    background-color: #cdedd9;
}

.single-student-widget.widget-color-02 .single-item .item-bar {
    background-color: #c6e7d3;
}

.single-student-widget.widget-color-02 .single-item .item-bar .bar-line {
    background-color: #309255;
}

.single-student-widget.widget-color-02 .single-item .item-percentage p span {
    color: #309255;
}

.single-student-widget.widget-color-02 .page-pagination .pagination li a {
    border: 1px solid #e1d0c4;
}

.single-student-widget.widget-color-02 .page-pagination .pagination li a.active, .single-student-widget.widget-color-02 .page-pagination .pagination li a:hover {
    color: var(--white);
    background-color: #309255;
    border-color: #309255;
}

.single-student-widget.widget-color-03 {
    background-color: #ecf1ff;
}

.single-student-widget.widget-color-03 .widget-title {
    background-color: #d3dfff;
}

.single-student-widget.widget-color-03 .single-item .item-bar {
    background-color: #b7d7fc;
}

.single-student-widget.widget-color-03 .single-item .item-bar .bar-line {
    background-color: #0f42cd;
}

.single-student-widget.widget-color-03 .single-item .item-percentage p span {
    color: #0f42cd;
}

.single-student-widget.widget-color-03 .page-pagination .pagination li a {
    border: 1px solid #c8d4f2;
}

.single-student-widget.widget-color-03 .page-pagination .pagination li a.active, .single-student-widget.widget-color-03 .page-pagination .pagination li a:hover {
    color: var(--white);
    background-color: #0f42cd;
    border-color: #0f42cd;
}

.single-student-widget .widget-title {
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    padding: 14px;
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

.single-student-widget .widget-items {
    padding-top: 25px;
}

.single-student-widget .single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-right: 85px;
    margin-top: 15px;
    height: 37px;
}

.single-student-widget .single-item .item-flag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-student-widget .single-item .item-flag .flag {
    padding-right: 15px;
}

@media only screen and (max-width: 575px) {
    .single-student-widget .single-item .item-flag .flag {
        padding-right: 8px;
    }
}

.single-student-widget .single-item .item-flag .flag img {
    width: 35px;
    height: 35px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
}

@media only screen and (max-width: 575px) {
    .single-student-widget .single-item .item-flag .flag img {
        width: 30px;
        height: 30px;
    }
}

.single-student-widget .single-item .title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: var(--tertiary);
    white-space: nowrap;
}

.single-student-widget .single-item .item-bar {
    width: calc(100% - 145px);
    height: 5px;
    border-radius: 50px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .single-student-widget .single-item .item-bar {
        width: calc(100% - 130px);
    }
}

.single-student-widget .single-item .item-bar .bar-line {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.single-student-widget .single-item .item-percentage {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-student-widget .single-item .item-percentage p {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
    margin-bottom: 0;
}

.single-student-widget .single-item .item-percentage p span {
    font-size: 12px;
    margin-right: 3px;
}

.single-student-widget .page-pagination {
    padding-top: 40px;
}

.single-student-widget .page-pagination .pagination li a {
    border: 1px solid #daebe0;
    width: 35px;
    height: 35px;
    line-height: 33px;
    font-size: 14px;
}

.single-student-widget .page-pagination .pagination li a.active, .single-student-widget .page-pagination .pagination li a:hover {
    color: var(--white);
    background-color: var(--tertiary);
}

.new-courses {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 100px 50px;
    margin-top: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .new-courses {
        padding: 0 50px 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .new-courses {
        padding: 0 50px 50px;
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .new-courses {
        padding: 0 30px 50px;
    }
}

.new-courses::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 77, 60, 0.95);
    z-index: -1;
}

.new-courses .new-courses-title {
    margin-top: 45px;
}

.new-courses .new-courses-title .title {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.5;
    font-family: var(--sans), sans-serif;
}

@media only screen and (max-width: 575px) {
    .new-courses .new-courses-title .title {
        font-size: 18px;
    }

    .new-courses .new-courses-title .title br {
        display: none;
    }
}

.new-courses .new-courses-btn {
    margin-top: 50px;
}

.engagement-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 5px;
}

.engagement-meta .meta {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 50px;
    padding-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .engagement-meta .meta {
        margin-right: 30px;
        font-size: 14px;
    }
}

.engagement-meta .meta img {
    margin-right: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .engagement-meta .meta img {
        width: 16px;
    }
}

.engagement-meta .meta:last-child {
    margin-right: 0;
}

.courses-select {
    padding-top: 20px;
}

.courses-select .nice-select {
    float: none;
    display: inline-block;
    padding: 0 50px 0 30px;
    height: 60px;
    line-height: 58px;
    border-radius: 10px;
    border: 1px solid #ebe6e1;
    font-weight: 500;
    font-size: 20px;
    color: var(--primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-select .nice-select {
        padding: 0 40px 0 20px;
        height: 50px;
        line-height: 48px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-select .nice-select {
        display: block;
    }
}

.courses-select .nice-select::after {
    width: 8px;
    height: 8px;
    border-color: var(--primary);
    right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-select .nice-select::after {
        right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .courses-select .nice-select .list {
        width: 100%;
    }
}

.courses-select .nice-select .list li {
    font-size: 15px;
}

.courses-select .title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 25px;
    font-family: var(--sans), sans-serif;
}

.months-select {
    padding-top: 20px;
}

.months-select .nice-select {
    float: none;
    display: inline-block;
    padding: 0 40px 0 20px;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
    border: 1px solid #ebe6e1;
    background-color: #f0ede9;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .months-select .nice-select {
        display: block;
    }
}

.months-select .nice-select::after {
    width: 7px;
    height: 7px;
    border-color: var(--dark);
    right: 20px;
}

@media only screen and (max-width: 767px) {
    .months-select .nice-select .list {
        width: 100%;
    }
}

.months-select .nice-select .list li {
    font-size: 15px;
}

.engagement-courses {
    padding-top: 40px;
    padding-left: 1px;
    padding-right: 1px;
}

.engagement-courses .courses-top {
    background-color: var(--lightgrey);
    border: 0;
    border-radius: 10px;
}

.engagement-courses .courses-top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-top ul {
        display: block;
        text-align: center;
    }
}

.engagement-courses .courses-top ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    padding: 15px;
    white-space: nowrap;
    display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .engagement-courses .courses-top ul li {
        font-size: 14px;
    }
}

.engagement-courses .courses-top ul li:nth-of-type(1) {
    width: 500px;
    padding-left: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .engagement-courses .courses-top ul li:nth-of-type(1) {
        width: 430px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .engagement-courses .courses-top ul li:nth-of-type(1) {
        padding-left: 50px;
        width: 280px;
    }
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-top ul li:nth-of-type(1) {
        padding-left: 0;
        width: auto;
    }
}

.engagement-courses .courses-top ul li:nth-of-type(2) {
    width: 170px;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .engagement-courses .courses-top ul li:nth-of-type(2) {
        width: auto;
    }
}

.engagement-courses .courses-top ul li:nth-of-type(3) {
    width: 170px;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .engagement-courses .courses-top ul li:nth-of-type(3) {
        width: auto;
    }
}

.engagement-courses .courses-list ul li {
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ebe6e1;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .engagement-courses .courses-list ul li {
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li {
        display: block;
        text-align: center;
    }
}

.engagement-courses .courses-list ul li .courses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li .courses {
        display: block;
    }
}

.engagement-courses .courses-list ul li .courses .thumb img {
    width: 100px;
    border-radius: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .engagement-courses .courses-list ul li .courses .thumb img {
        width: 70px;
    }
}

.engagement-courses .courses-list ul li .courses .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
    max-width: 330px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .engagement-courses .courses-list ul li .courses .content {
        padding-left: 15px;
        width: 285px;
    }
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li .courses .content {
        padding-left: 0;
        padding-top: 25px;
        margin: 0 auto;
    }
}

.engagement-courses .courses-list ul li .courses .content .title {
    margin-bottom: 0;
}

.engagement-courses .courses-list ul li .courses .content .title a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    display: inline-block;
    line-height: 1.5;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 575px) {
    .engagement-courses .courses-list ul li .courses .content .title a {
        font-size: 14px;
    }
}

.engagement-courses .courses-list ul li .courses .content .title a:hover {
    color: var(--tertiary);
}

.engagement-courses .courses-list ul li .taught span, .engagement-courses .courses-list ul li .student span {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    display: block;
    padding: 0 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 575px) {
    .engagement-courses .courses-list ul li .taught span, .engagement-courses .courses-list ul li .student span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li .taught span, .engagement-courses .courses-list ul li .student span {
        padding-top: 20px;
    }
}

.engagement-courses .courses-list ul li .button {
    margin-left: auto;
}

@media only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li .button {
        padding-top: 20px;
    }
}

.engagement-courses .courses-list ul li .button .btn {
    border: 1px solid #ebe6e1;
    padding: 0 30px;
    border-radius: 10px;
    white-space: nowrap;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .engagement-courses .courses-list ul li .button .btn {
        font-size: 13px;
        padding: 0 20px;
    }
}

.engagement-courses .courses-list ul li > *:nth-of-type(1) {
    width: 500px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li > *:nth-of-type(1) {
        width: auto;
    }
}

.engagement-courses .courses-list ul li > *:nth-of-type(2) {
    width: 170px;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li > *:nth-of-type(2) {
        width: auto;
    }
}

.engagement-courses .courses-list ul li > *:nth-of-type(3) {
    width: 170px;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .engagement-courses .courses-list ul li > *:nth-of-type(3) {
        width: auto;
    }
}

.filter-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.filter-check .courses-select {
    padding-top: 0px;
}

.filter-check > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    margin-top: 10px;
    white-space: nowrap;
}

.filter-check > li:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .filter-check > li {
        margin-right: 26px;
    }
}

.filter-check > li label {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter-check > li input {
    display: none;
}

.filter-check > li input + label {
    cursor: pointer;
}

.filter-check > li input + label span {
    width: 18px;
    height: 18px;
    border: 1px solid #8691a1;
    border-radius: 2px;
    display: inline-block;
    margin-right: 13px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.filter-check > li input + label span::before {
    position: absolute;
    /*content: "\eed6";*/
    /*font-family: IcoFont;*/
    color: var(--white);
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: -1px;
    line-height: 17px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.filter-check > li input:checked + label {
    font-weight: 500;
}

.filter-check > li input:checked + label span {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.filter-check > li input:checked + label span::before {
    opacity: 1;
    visibility: visible;
}

.rating-select .nice-select {
    float: none;
    display: inline-block;
    padding: 0 15px 0 0px;
    height: auto;
    line-height: 1;
    border-radius: 0;
    border: 0;
    font-weight: 500;
    font-size: 17px;
    color: var(--primary);
    margin-left: 8px;
}

@media only screen and (max-width: 767px) {
    .rating-select .nice-select {
        display: block;
    }
}

.rating-select .nice-select::after {
    width: 6px;
    height: 6px;
    border-color: var(--primary);
    right: 2px;
}

@media only screen and (max-width: 767px) {
    .rating-select .nice-select .list {
        width: 100%;
    }
}

.rating-select .nice-select .list li {
    font-size: 15px;
}

.top-bar-filter-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

@media only screen and (max-width: 767px) {
    .top-bar-filter-right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.top-bar-filter-right > * {
    margin: 0 10px;
}

.top-bar-filter-right .filter-btn {
    padding-top: 20px;
}

.top-bar-filter-right .filter-btn .btn {
    font-size: 15px;
    padding: 0 20px;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
}

.newest-select {
    padding-top: 20px;
}

.newest-select .nice-select {
    float: none;
    display: inline-block;
    padding: 0 40px 0 20px;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
    border: 1px solid #ebe6e1;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
}

@media only screen and (max-width: 767px) {
    .newest-select .nice-select {
        display: block;
    }
}

.newest-select .nice-select::after {
    width: 7px;
    height: 7px;
    border-color: var(--dark);
    right: 20px;
}

@media only screen and (max-width: 767px) {
    .newest-select .nice-select .list {
        width: 100%;
    }
}

.newest-select .nice-select .list li {
    font-size: 15px;
}

.newest-select .title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 25px;
}

.courses-rating-wrapper {
    padding-top: 15px;
}

.single-courses-rating {
    border: 1px solid #e0dddb;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.single-courses-rating .courses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .single-courses-rating .courses {
        display: block;
        text-align: center;
    }
}

.single-courses-rating .courses .courses-thumb a {
    display: block;
}

.single-courses-rating .courses .courses-thumb a img {
    border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-courses-rating .courses .courses-thumb a img {
        width: 130px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-courses-rating .courses .courses-thumb a img {
        width: 100px;
    }
}

.single-courses-rating .courses .courses-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 550px;
    padding-left: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-courses-rating .courses .courses-content {
        padding-left: 30px;
        max-width: 370px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-courses-rating .courses .courses-content {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .single-courses-rating .courses .courses-content {
        padding-left: 0;
        padding-top: 25px;
        margin: 0 auto;
    }
}

.single-courses-rating .courses .courses-content .title {
    margin-bottom: 0;
}

.single-courses-rating .courses .courses-content .title a {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--sans), sans-serif;
    line-height: 1.4;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-courses-rating .courses .courses-content .title a {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-courses-rating .courses .courses-content .title a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .single-courses-rating .courses .courses-content .title a {
        font-size: 16px;
    }
}

.single-courses-rating .courses .courses-content .title a:hover {
    color: var(--tertiary);
}

.single-courses-rating .courses .courses-content .average-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .single-courses-rating .courses .courses-content .average-rating {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.single-courses-rating .courses .courses-content .average-rating .label {
    font-size: 15px;
    font-weight: 400;
    display: block;
    color: var(--primary);
    white-space: nowrap;
    padding-right: 10px;
}

.single-courses-rating .courses .courses-content .average-rating .count {
    font-size: 22px;
    font-weight: 700;
    color: #ff6e30;
    display: block;
}

@media only screen and (max-width: 575px) {
    .single-courses-rating .courses .courses-content .average-rating .count {
        font-size: 18px;
    }
}

.single-courses-rating .courses .courses-content .average-rating .count .rating-star {
    position: relative;
}

.single-courses-rating .courses .courses-content .average-rating .count .rating-star::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #d0d0d0;
    font-size: 13px;
    letter-spacing: 1px;
}

.single-courses-rating .courses .courses-content .average-rating .count .rating-star .rating-bar {
    position: absolute;
    top: -3px;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.single-courses-rating .courses .courses-content .average-rating .count .rating-star .rating-bar::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: var(--tertiary);
    font-size: 13px;
    letter-spacing: 1px;
}

.single-courses-rating .courses .courses-btn {
    margin-left: auto;
    margin-top: 0;
}

@media only screen and (max-width: 767px) {
    .single-courses-rating .courses .courses-btn {
        margin: 20px auto 0;
    }
}

.single-courses-rating .courses .courses-btn .btn {
    border: 1px solid #e0dddb;
    padding: 0 20px;
    height: 50px;
    line-height: 48px;
    border-radius: 5px;
}

.single-courses-rating .courses .courses-btn .btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.single-courses-rating .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--lightgrey);
    margin-top: 20px;
}

@media only screen and (max-width: 575px) {
    .single-courses-rating .rating {
        display: block;
        padding: 20px;
    }
}

.single-courses-rating .rating .rating-author img {
    width: 70px;
    border-radius: 50%;
}

.single-courses-rating .rating .rating-content {
    padding-left: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .single-courses-rating .rating .rating-content {
        padding-left: 0;
        padding-top: 25px;
    }
}

.single-courses-rating .rating .rating-content .name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

@media only screen and (max-width: 575px) {
    .single-courses-rating .rating .rating-content .name {
        font-size: 20px;
    }
}

.single-courses-rating .rating .rating-content .date {
    color: #8e9298;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.single-courses-rating .rating .rating-content .average-rating {
    margin-top: 10px;
}

.single-courses-rating .rating .rating-content .average-rating .rating-star {
    position: relative;
}

.single-courses-rating .rating .rating-content .average-rating .rating-star::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #d0d0d0;
    font-size: 15px;
    letter-spacing: 2px;
}

.single-courses-rating .rating .rating-content .average-rating .rating-star .rating-bar {
    position: absolute;
    top: -2px;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.single-courses-rating .rating .rating-content .average-rating .rating-star .rating-bar::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: var(--tertiary);
    font-size: 15px;
    letter-spacing: 2px;
}

.single-courses-rating .rating .rating-content .btn {
    border: 1px solid #e0dddb;
    padding: 0 20px;
    background-color: var(--white);
    color: #309255;
    height: 45px;
    line-height: 41px;
    margin-top: 20px;
    border-radius: 10px;
}

.single-courses-rating .rating .rating-content .btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.single-courses-rating .rating .waving {
    position: absolute;
    top: 27px;
    right: 25px;
    color: var(--dark);
    font-size: 20px;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-courses-rating .rating .waving:hover {
    color: var(--tertiary);
}

.question-answer {
    border-top: 1px solid #e0dddb;
    margin-top: 20px;
}

.answer-user-list {
    padding: 20px 0;
}

.single-user {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    border: 1px solid #e0dddb;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-user {
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 575px) {
    .single-user {
        padding: 10px;
    }
}

.single-user .user-author img {
    width: 70px;
    border-radius: 50px;
}

@media only screen and (max-width: 575px) {
    .single-user .user-author img {
        width: 50px;
    }
}

.single-user .user-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 20px;
    position: relative;
    max-width: 175px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-user .user-content {
        max-width: 160px;
        padding-left: 10px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .single-user .user-content {
        max-width: 150px;
        padding-left: 10px;
    }
}

.single-user .user-content .name {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--sans), sans-serif;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-user .user-content .name {
        font-size: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .single-user .user-content .name {
        font-size: 13px;
    }
}

.single-user .user-content p {
    color: var(--tertiary);
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-user .user-content p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .single-user .user-content p {
        font-size: 12px;
    }
}

.single-user .time {
    color: #8e9298;
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    bottom: 30px;
    right: 17px;
    background-color: var(--white);
    padding: 0 3px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-user .time {
        right: auto;
        left: 80px;
        bottom: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .single-user .time {
        font-size: 8px;
        right: 8px;
        bottom: auto;
        top: 10px;
    }
}

.single-user.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.single-user.active .user-content .name {
    color: var(--white);
}

.single-user.active .user-content p {
    color: #d4efde;
}

.single-user.active .time {
    color: #d4efde;
    background-color: var(--secondary);
}

.answer-message-wrapper {
    border-top: 1px solid #e0dddb;
    padding-top: 10px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 1500px), only screen and (min-width: 1200px) and (max-width: 1499px) {
    .answer-message-wrapper {
        border-left: 1px solid #e0dddb;
        padding-left: 30px;
        border-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .answer-message-wrapper {
        padding-bottom: 60px;
    }
}

.answer-message-wrapper ul {
    border-bottom: 1px solid #e0dddb;
}

.answer-message-wrapper ul li + li .single-message {
    border-top: 1px solid #e0dddb;
}

.answer-message-wrapper ul li ul {
    border-bottom: 0;
}

.answer-message-wrapper ul li ul li .single-message {
    border-top: 1px solid #e0dddb;
}

.answer-message-wrapper ul li .message-replay {
    padding-left: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .answer-message-wrapper ul li .message-replay {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .answer-message-wrapper ul li .message-replay {
        padding-left: 70px;
    }
}

@media only screen and (max-width: 575px) {
    .answer-message-wrapper ul li .message-replay {
        padding-left: 0;
    }
}

.answer-message-wrapper .loadmore {
    border: 1px solid #e0dddb;
    background-color: var(--lightgrey);
    height: 55px;
    line-height: 53px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    display: block;
    padding: 0 20px;
    text-align: center;
    margin-top: 40px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
}

@media only screen and (max-width: 575px) {
    .answer-message-wrapper .loadmore {
        height: 45px;
        line-height: 43px;
        font-size: 14px;
    }
}

.answer-message-wrapper .loadmore:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.single-message {
    padding: 30px 0;
}

.single-message .message-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-right: 218px;
}

@media only screen and (max-width: 575px) {
    .single-message .message-author {
        display: block;
        padding-right: 0;
    }
}

.single-message .message-author .author-images img {
    width: 70px;
    border-radius: 50%;
}

.single-message .message-author .author-content {
    padding-left: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media only screen and (max-width: 575px) {
    .single-message .message-author .author-content {
        padding-left: 0;
        padding-top: 15px;
    }
}

.single-message .message-author .author-content .name {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

.single-message .message-author .author-content .name strong {
    margin-right: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .single-message .message-author .author-content .name strong {
        margin-right: 15px;
    }
}

.single-message .message-author .author-content .name span {
    display: inline-block;
}

.single-message .message-author .author-content .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
    line-height: 1.4;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .single-message .message-author .author-content .title {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-message .message-author .author-content .title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .single-message .message-author .author-content .title {
        font-size: 16px;
    }
}

.single-message .message-author .author-content .time {
    font-size: 12px;
    font-weight: 400;
    color: #8e9298;
}

.single-message .message-author .author-content .instructor {
    background-color: #e7f3eb;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #309255;
    padding: 6px 12px;
}

.single-message .message-author .author-content * + * {
    margin-top: 10px;
    display: block;
}

.single-message .message-author .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}

@media only screen and (max-width: 575px) {
    .single-message .message-author .meta {
        display: inline-block;
        text-align: center;
    }
}

.single-message .message-author .meta .view {
    color: #309255;
    font-size: 12px;
    font-weight: 400;
    margin-right: 20px;
}

@media only screen and (max-width: 575px) {
    .single-message .message-author .meta .view {
        display: block;
        margin-right: 0;
    }
}

.single-message .message-author .meta .view i {
    margin-right: 8px;
}

.single-message .message-author .meta .answer {
    font-size: 12px;
    font-weight: 400;
    border: 1px solid #d6e9dd;
    background-color: #edfaf2;
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (max-width: 575px) {
    .single-message .message-author .meta .answer {
        margin-top: 10px;
        height: 35px;
        line-height: 33px;
        padding: 0 15px;
    }
}

.single-message .message-author .meta .answer i {
    margin-right: 8px;
}

.single-message .message-author .meta .answer:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.single-message p {
    margin-top: 20px;
    margin-bottom: 0;
}

.message-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}

@media only screen and (max-width: 575px) {
    .message-form {
        display: block;
    }
}

.message-form .auhtor img {
    width: 70px;
    border-radius: 50%;
}

.message-form .message-input {
    padding-left: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media only screen and (max-width: 575px) {
    .message-form .message-input {
        padding-left: 0;
        padding-top: 20px;
    }
}

.message-form .message-input textarea {
    padding: 20px 30px;
    height: 200px;
    border: 1px solid #e0dddb;
    border-radius: 5px;
    font-family: var(--sans), sans-serif;
    font-weight: 400;
    color: var(--tertiary);
    margin-top: 0;
}

@media only screen and (max-width: 575px) {
    .message-form .message-input textarea {
        padding: 15px 20px;
    }
}

.message-form .message-input .message-btn {
    text-align: center;
    margin-top: 20px;
}

.message-form .message-input .message-btn .btn {
    width: 120px;
    height: 50px;
    line-height: 50px;
    margin: 0 8px;
    padding: 0 20px;
    border-radius: 10px;
}

@media only screen and (max-width: 575px) {
    .message-form .message-input .message-btn .btn {
        width: 90px;
        height: 45px;
        line-height: 45px;
        font-size: 13px;
        padding: 0 20px;
    }
}

.message-form .message-input .message-btn .btn.btn-light {
    background-color: #ffe4e0;
    color: var(--primary);
}

/*----------------------------------------*/
/*  05. Widget CSS
/*----------------------------------------*/
/*--
/*  5.1 - Sidebar Widget CSS
/*----------------------------------------*/
.sidebar-widget {
    margin-top: 12px;
}


.sidebar-widget.widget-information {
    background-color: var(--white);
    padding: 0 18px;
    border-radius: 2px;
}

@media only screen and (min-width: 992px) {
    .sidebar-widget.widget-information {
        background-color: var(--lightgrey);
        margin-top: 12px;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .sidebar-widget.widget-information {
        /*background-color: var(--lightgrey);*/
        margin-top: 0;
        margin-bottom: 24px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 575px) {
    .sidebar-widget.widget-information {
        margin-top: 0;
        margin-bottom: 24px;
        padding-top: 0;
    }
}

.sidebar-widget .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sidebar-widget .social li {
    padding-top: 10px;
    margin-right: 20px;
}

.sidebar-widget .social li:last-child {
    margin-right: 0;
}

.sidebar-widget .social li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 48px;
    border: 1px solid rgba(10, 77, 60, 0.25);
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    color: var(--dark);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar-widget .social li a {
        width: 45px;
        height: 45px;
        line-height: 43px;
    }
}

.sidebar-widget ul.course_dates {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.sidebar-widget ul.course_dates li a {
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Mini dates for course cards */
ul.mini_course_dates {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2px;
}

ul.mini_course_dates li {
    font-size: 12px;
    padding-top: 3px;
    text-transform: uppercase;
    line-height: 12px;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light);
    border: 1px solid var(--secondary_mid);
    margin-right: 5px;
    position: relative;
}

ul.mini_course_dates li small {
    font-size: 11px;
}

ul.mini_course_dates li.offer {
    color: red;
    border-color: red !important;
    z-index: 99;
    cursor: pointer;
}

ul.mini_course_dates li.offer.spring_sale {
    border-color: springgreen;
}

ul.mini_course_dates li.offer::before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f890";
    font-weight: 600;
    position: absolute;
    top: -2px;
    right: -2px;
}

@media only screen and (max-width: 575px) {
    .sidebar-widget ul.course_dates li a {
        margin-right: 12px;
        margin-bottom: 32px;
    }
}

.sidebar-widget ul.course_dates li a:hover {
    background-color: var(--white);
    animation: pulse;
    animation-duration: 1s;
}

.sidebar-widget ul.course_dates li span#month {
    margin-top: 0;
    padding-top: 2px;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    font-weight: bolder;
}

.sidebar-widget ul.course_dates li a {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light);
    border: 4px solid var(--secondary_light);
}

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

    .sidebar-widget ul.course_dates li a {
        background-color: var(--light);
        border: 2px solid var(--secondary);
        margin-right: 8px;
    }

    .sidebar-widget ul.course_dates li a:hover {
        background-color: var(--white);
    }

}

.sidebar-widget ul.course_dates li span#day_name {
    display: block;
    margin: 0;
    padding: 0;
    padding-top: 6px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    color: var(--dark)
}

.sidebar-widget ul.course_dates li.offer span#day_name {
    color: red;
}

.sidebar-widget ul.course_dates li span#day {
    margin-top: -2px;
    padding-top: 0;
    display: block;
    /* padding-top: 12px; */
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    font-weight: normal;
    color: var(--dark);
}

.sidebar-widget ul.course_dates li.offer span#day {
    color: red;
}

.sidebar-widget ul.course_dates li.booked span {
    color: #ccc !important;
}

.sidebar-widget ul.course_dates li.booked a {
    border: 2px solid #ccc;
}

ul.mini_course_dates li.booked, .sidebar-widget ul.course_dates li.booked {
    color: #ccc;
    border-color: var(--secondary_light);
    opacity: 0.5;
}

.sidebar-widget ul.course_dates li.offer a {
    color: red;
    border-color: red;
}

.sidebar-widget ul.course_dates li img.flowers {
    position: absolute;
    top: -8px;
    right: -8px;
    height: 48px
}

.sidebar-widget ul.course_dates li.offer.spring_sale a {
    color: green;
    border-color: green;
}

.sidebar-widget ul.course_dates li.offer.autumn_sale a {
    color: saddlebrown;
    border-color: saddlebrown;
}

.sidebar-widget ul.course_dates li.offer .badge {
    z-index: 20;
    width: 100%;
    position: absolute;
    bottom: 2px;
    left: -2px;
    background-color: red;
    cursor: pointer;
}

.sidebar-widget ul.course_dates li.offer .badge.spring_sale {
    background-color: green;
}

.sidebar-widget ul.course_dates li.offer .badge.autumn_sale {
    background-color: saddlebrown;
}

.sidebar-widget ul.course_dates li.offer.spring_sale span#day {
    color: green;
}

.sidebar-widget ul.course_dates li.offer.autumn_sale span#day {
    color: saddlebrown;
}

.sidebar-widget ul.course_dates li.offer.spring_sale span#day_name {
    color: green;
}

.sidebar-widget ul.course_dates li.offer.autumn_sale span#day_name {
    color: saddlebrown;
}


.sidebar-widget ul.course_dates li {
    position: relative;
}

.booking_main .course_dates .offer div {
    /*background-color: var(--secondary_light);*/
    /*color: var(--light);*/
}

.booking_main ul.course_dates li.offer a {
    border-color: var(--secondary_light) !important;
}


.widget-information.student {
    background-color: #cfe6f0;
    background-image: url('/assets/images/international/englishicon.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-position-x: 95%;
    background-position-y: 5%;
    background-size: 48px;
}

@media only screen and (min-width: 969px) {
    .widget-information.student {
        background-image: url('/assets/images/international/student_english.jpg');
        background-repeat: no-repeat;
        background-position: right;
        background-position-x: 10%;
        background-size: cover;
        padding-right: 9rem;
    }
}

@media only screen and (min-width: 767px) and (max-width: 968px) {
    .widget-information.student {
        background-image: url('/assets/images/international/student_english.jpg');
        background-repeat: no-repeat;
        background-position: right;
        background-position-x: 60%;
        background-size: 140%;
        padding-right: 9rem;
    }
}


.sidebar-widget .social li a:hover {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: var(--white);
}

.widget-title {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: -7px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget-information {
        padding: 30px 30px 40px;
    }
}

.crab {
    background-image: url('https://acs-45zn.stream.prepr.io/w_500/h_511/1l22s6kbokts-crab-white.png');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position-y: -10%;
    background-position-x: 120%;
}


@media only screen and (min-width: 576px) and (max-width: 991px) {
    .crab {
        background-image: url('https://acs-45zn.stream.prepr.io/w_250/h_255/1l22s6kbokts-crab-white.png');
        background-size: 42%;
        background-position-y: -10%;
        background-position-x: 120%;
    }
}

@media only screen and (max-width: 576px) {
    .crab {
        background-image: none;
    }
}

.onion {
    background-image: url('/assets/images/shape/onion.png');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position-y: 80%;
    background-position-x: 105%
}

.herb {
    background-image: url('/assets/images/shape/herb.png');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position-y: 80%;
    background-position-x: 110%
}

.rosemary {
    background-image: url('/assets/images/shape/rosemary.png');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position-y: 80%;
    background-position-x: 110%
}

.rosemary2 {
    background-image: url('/assets/images/shape/rosemary.png');
    background-position: bottom right;
    background-position-x: 105%;
    background-position-y: 105%;
    background-blend-mode: multiply;
    background-size: 20%;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 575px) {
    .rosemary2 {
        background-size: 50%;
    }
}

.garlic {
    background-image: url('/assets/images/shape/garlic.png');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position-y: 40%;
    background-position-x: 140%
}

.bg_chef {
    background-repeat: no-repeat;
    background-position: 110% 105%;
    background-size: 42%;
}

.widget-information .info-price {
    text-align: center;
}

.widget-information .info-price .price {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.widget-information .info-price .price i.pence {
    font-size: 50%;
    vertical-align: text-top;
}

.widget-information .info-price p {
    color: var(--midgrey);
    font-size: 18px;
}

.widget-information .info-price .price .month {
    font-weight: 500;
    font-size: 70%;
}

.widget-information .info-list ul {
    /*border-top: 1px solid #d1e6d9;*/
    /*margin-top: 35px;*/
}

.widget-information .info-list ul li {
    border-bottom: 1px dotted #d1e6d9;
    padding: 15px 0;
}

.widget-information .info-list ul li.two_lines {
    height: 5em
}

.widget-information .info-list ul li:first-child {
    border-top: none;
}

.widget-information .info-list ul li i {
    color: var(--secondary);
    margin-right: 3px;
    font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget-information .info-list ul li i {
        font-size: 15px;
    }
}

.widget-information .info-list ul li strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget-information .info-list ul li strong {
        font-size: 15px;
    }
}

.widget-information .info-list ul li span {
    color: var(--dark);
    display: block;
    float: right;
    font-size: 16px;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget-information .info-list ul li span {
        font-size: 15px;
    }
}

.widget-information .info-btn {
    text-align: center;
    margin-top: 40px;
}

.widget-search {
    position: relative;
}

.widget-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]) {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(10, 77, 60, 0.2);
    border-radius: 2px;
    padding: 0 20px;
    padding-right: 60px;
    outline: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 15px;
    font-weight: 400;
    color: var(--tertiary);
    background-color: var(--white);
    margin-top: 0;
}

.widget-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder {
    opacity: 1;
}

.widget-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-moz-placeholder {
    opacity: 1;
}

.widget-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-moz-placeholder {
    opacity: 1;
}

.widget-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-ms-input-placeholder {
    opacity: 1;
}

.widget-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):focus {
    border-color: var(--secondary);
}

.widget-search button {
    position: absolute;
    width: 48px;
    height: 48px;
    line-height: 48px;
    padding: 0;
    text-align: center;
    border-radius: 2px;
    background-color: var(--secondary);
    border: 0;
    top: 6px;
    right: 6px;
    font-size: 16px;
    color: var(--white);
}

.widget-category {
    padding: 35px;
    border-radius: 2px;
    margin-top: 30px;
    background-color: var(--lightgrey);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .widget-category {
        padding: 25px;
    }
}

.widget-category .category-list li + li {
    margin-top: 10px;
}

.widget-category .category-list li a {
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    display: block;
    color: var(--tertiary);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color: var(--white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget-category .category-list li a {
        font-size: 14px;
    }
}

.widget-category .category-list li a span {
    display: block;
    float: right;
}

.widget-category .category-list li a:hover {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.widget-post {
    /*padding: 35px;*/
    border: 1px solid var(--lightgrey);
    border-radius: 2px;
    margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .widget-post {
        /*padding: 25px;*/

    }
}

.widget-post .post-items li {
    border-bottom: 4px solid var(--lightgrey);
    padding: 12px;
    background-color: var(--white);
}

.widget-post .post-items li:hover {
    background-color: var(--highlight);
}

.post-items li:hover img {
    animation: pulse;
    animation-duration: 1s;
}

.widget-post .post-items li:first-child {
    /*padding-top: 0;*/
}

.widget-post .post-items li:last-child {
    /*padding-bottom: 0;*/
    border-bottom: 0;
}

.widget-post .single-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.widget-post .single-post.left {
    text-align: left;
}

.widget-post .single-post .post-thumb {
    display: block;
}

.widget-post .single-post .post-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .widget-post .single-post .post-thumb img {
        width: 60px;
        height: 60px;
    }
}

.widget-post .single-post .post-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .widget-post .single-post .post-content {
        padding-left: 20px;
    }
}

.widget-post .single-post .post-content .title {
    margin-bottom: 0;
}

.widget-post .single-post .post-content .title a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    font-family: var(--sans), sans-serif;
    line-height: 1.4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .widget-post .single-post .post-content .title a {
        font-size: 14px;
    }
}

.widget-post .single-post .post-content .title a:hover {
    color: var(--tertiary);
}

.widget-post .single-post .post-content .date {
    font-size: 13px;
    color: var(--dark);
    margin-top: 5px;
    display: block;
}

.widget-post .single-post .post-content .date i {
    color: var(--tertiary);
}

.widget-tags {
    padding: 35px;
    border: 1px solid rgba(10, 77, 60, 0.2);
    border-radius: 2px;
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .widget-tags {
        padding: 25px;
    }
}

.widget-tags .tags-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
    margin-top: -10px;
}

.widget-tags .tags-list li {
    padding: 10px 5px 0;
}

.widget-tags .tags-list li a {
    height: 45px;
    line-height: 43px;
    padding: 0 35px;
    font-size: 15px;
    background-color: var(--lightgrey);
    display: block;
    color: var(--tertiary);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .widget-tags .tags-list li a {
        font-size: 14px;
        padding: 0 22px;
    }
}

@media only screen and (max-width: 767px) {
    .widget-tags .tags-list li a {
        padding: 0 20px;
    }
}

.widget-tags .tags-list li a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}


/* TERMS & POLICIES */
.terms-section .tab-content ol {
    list-style-type: lower-latin;
    padding-left: 2rem;
}

.terms-section .tab-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.terms-section .tab-content li {
    margin-bottom: 8px;
}

.terms-section .details-tab-menu a.btn {
    padding-top: 2px;
}


.terms-section p {
    padding-left: 2px;
}

.terms-section .well {
    padding: 1rem;
    background-color: #f0f0f0;
    margin-top: 1rem;
}

.terms-section h1, .terms-section h2, .terms-section h3 {
    margin-top: 0.8rem;
}

/* Dining Club Menu */
.dining_menu h3 {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 18px;
}

/*
Modals
 */
.modal .modal-body {
    color: var(--primary);
    line-height: 125%;
}

/* Random Bits */
span.dietary {
    font-size: 10px;
    font-weight: bold;
    width: 24px;
    line-height: 24px;
    background-color: var(--light);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    float: right;
}

.no_pad_y {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.no_pad_x {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.smaller {
    font-size: 11px;
    vertical-align: text-top;
}

/* calendar icon */
.fc-loading-button.fc-button.fc-button-primary {
    border-color: white !important;
    background-color: var(--secondary);
    color: white !important;
}

/* klarna logo course pages */
.klarna {
    height: 40px;
    width: 100%;
    background: url('/assets/images/finance/klarna/klarna-banner.png') no-repeat;
    background-position: center;
    background-size: contain;
}

/*footer popup ad */
#footer_popup i {
    position: absolute;
    top: 1em;
    right: 1em;
}

#footer_popup {
    height: 200px;
    box-shadow: 0 -1px 6px 0 rgb(0, 0, 0, 0.4);
    background-color: #046673;
    background-position: right top;
    background-position-x: 180%;
    background-size: contain;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 767px) {
    #footer_popup {
        height: 160px;
        background-position: left top, right top;

    }

    #footer_popup.gift_vouchers {
        background-image: url('https://acs-45zn.stream.prepr.io//beh5vlhnryi-xmas-footer-left.jpg'), url('https://acs-45zn.stream.prepr.io//3i1musx6348p-xmas-footer-right.jpg');
    }

}

#footer_popup.gift_vouchers {
    background-image: url('https://acs-45zn.stream.prepr.io//3i1musx6348p-xmas-footer-right.jpg');
}


#footer_popup.mothers_day {
   /* background-color: #471e38;*/
    /*background-image: url('/assets/images/promos/mothers_day/bg_tile_blue.jpg');*/
    /*background-repeat:repeat;*/
}

#footer_popup.mothers_day .container {
    padding: 12px 6px 6px 120px;
}

#footer_popup.mothers_day img {
    position: absolute;
    left: -12px;
    bottom: -2px;
    height: 180px
}

@media only screen and (min-width: 767px) {
    #footer_popup.mothers_day img {
        position: absolute;
        left: 0;
        bottom: -2px;
        height: 200px
    }
}

/*block on course page */
.sidebar-widget.gift-card {
    height: 160px;
    background-position: right top;
    background-image: url('https://acs-45zn.stream.prepr.io//3i1musx6348p-xmas-footer-right.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #046673;
}

.sidebar-widget.spring_sale {
    height: 160px;
    background-image: url('/assets/images/promos/spring_sale/spring_footer_right.jpg'), url('/assets/images/promos/spring_sale/spring_footer_bg.jpg');
    background-position: right, left;
    background-repeat: no-repeat, repeat-x;
    background-size: contain;
}

.sidebar-widget.summer_sale {
    height: 160px;
    background-image: url('/assets/images/promos/summer_sale/summer_footer_right.jpg'), url('/assets/images/promos/summer_sale/summer_footer_bg.jpg');
    background-position: right, left;
    background-repeat: no-repeat, repeat-x;
    background-size: contain;
}

.sidebar-widget.autumn_sale {
    height: 160px;
    background-image: url('/assets/images/promos/autumn_sale/sidebar_ad_right.jpg'), url('/assets/images/promos/autumn_sale/sidebar_ad_bg.jpg');
    background-position: right, left;
    background-repeat: no-repeat, repeat-x;
    background-size: contain;
}
.sidebar-widget.autumn_sale p {
    color: white;
}


/* Spring Sale */

#footer_popup.spring_sale {
    background-image: url('/assets/images/promos/spring_sale/spring_footer_left.jpg'), url('/assets/images/promos/spring_sale/spring_footer_bg.jpg');
    background-position: left top, center;
    background-repeat: no-repeat, repeat-x;
    padding-left: 64px;
}

#footer_popup.spring_sale h2 {
    font-size: 72px;
}

#footer_popup.spring_sale p {
    font-size: 18px;
}

/*.swiper-slide.spring_sale {
    background-color: #722e1e;
    background-image: url('https://acs-45zn.stream.prepr.io//al69c2ngo3w-spring-sale-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}*/

.swiper-slide.spring_sale h1.main-title {
    font-size: 148px;
}

.header_strip {
    background-color: var(--tertiary);
    background-size: cover;
    height: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0 !important;
}

.header_strip h2, .header_strip p {
    line-height: 40px;
}




