/* Navbar */
.menu-item-child {
    position: relative;
}


.menu-item-child::before {
    content: "\f107";
    position: absolute;
    left: 8px;
    top: 3px;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    border: 0;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    margin-top: 1px;
    font-weight: normal;
    font-weight: 900;
    transform: rotate(90deg);
    transition: transform 300ms;
}

.menu-item-child:hover::before {
    transform: rotate(-90deg);
}

.menu-item-child:hover .sub-sub-menu {
    visibility: visible;
    opacity: 1;
}

.menu-item-child .sub-sub-menu {
    position: absolute;
    right: 171px;
    top: -7px;
    background: #fff;
    padding: 5px 0;
    min-width: 147px;
    border-top: 2px solid #FF6D34;
    visibility: hidden;
    opacity: 0;
}

.sub-menu .sub-menu-lg a p {
    color: #334763;
    font-size: 0.92em;
    font-weight: 600;
    white-space: normal;
    border-bottom: 1px solid #b6b6b6;
    margin-bottom: 0;
    padding: 7px 0;
    /* min-width: 235px; */
}

.sub-menu .sub-menu-lg a p:hover {
    color: #ff6d34;
    transition: color 300ms;
}

.sub-menu .all-categories-btn {
    color: #ff6d34;
    padding-right: 15px;
    font-weight: 600;
    padding-top: 15px;
}

#notification_btn {
    cursor: pointer;
}

.notification_list {
    position: absolute;
    right: 0;
    background: #fff;
    width: 285px;
    color: #000;
    border-top: 2px solid #ff6d34;
    border-radius: 0 0 20px 20px;
    padding: 0 10px;
    max-height: 230px;
    overflow-y: auto;
    top: 37px;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms;
}

.notification_list.active {
    top: 60px;
    opacity: 1;
    visibility: visible;
}

.notification_list li:not(:last-of-type) {
    border-bottom: 2px solid #eee;
}

.notification_list li.noti_unread,
.bell_unread {
    position: relative;
}

.notification_list li.noti_unread::after,
.bell_unread::after {
    content: '';
    position: absolute;
    top: 17px;
    right: -7px;
    width: 8px;
    height: 8px;
    background-color: #ff6d34;
    border-radius: 50%;
    animation: noti_unread_color 2s infinite;
}



@keyframes noti_unread_color {
    /* 0% {
        background-color: #ff6d34;
    }
    25% {
        background-color: #ff6e348a;
    }
    50% {
        background-color: #ff6e3400;
    }
    75% {
        background-color: #ff6e348a;
    }
    100% {
        background-color: #ff6d34;
    } */
    from { background-color: #ff6d34;}
    to{ background-color: #ff6e3436;}
}

.notification_list li a {
    display: block;
    padding: 10px 8px;
    color: #000;
    text-decoration: none;
    position: relative;
}

.notification_list li a p {
    margin: 0;
}

.notification_list li a .noti_title {
    font-weight: bold;
}

.notification_list li a .noti_date {
    text-align: left;
    font-size: 13px;
    color: #b3b3b3;
}

/* ./Navbar */

/* Categories */
.categories_page .categories_section {
    padding-top: 20px!important;
    padding-bottom: 13px!important;
}
.categories_page .categories_section .content .main-box {
    max-width: 33.33%!important; /* 3 items in a row on small screens */
    flex: 33.33%!important; /* 3 items in a row on small screens */
    min-height: 185px;
}

@media (min-width: 768px) { /* For larger screens */
    .categories_page .categories_section .content .main-box {
        max-width: 25%!important; /* 4 items in a row on larger screens */
        flex: 25%!important; /* 4 items in a row on larger screens */
    }
}

.categories_page .categories_section .content .main-box .inner  {
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.categories_page .main-box .inner img {
    width: 80px!important;
}
.categories_page .categories-wrapper .category-item .item-content {
    text-align: center;
    padding: 20px 10px 10px;
    border-radius: 15px 15px 15px 15px;
    overflow: hidden;
    border: 2px solid #FF6D34;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background: #fff;
}

.categories_page .categories-wrapper .category-item .item-content:hover {
    background-color: #FF6D34;
}

.categories_page .categories-wrapper .category-item .item-content:hover p {
    color: #Fff;
}

.categories_page .categories-wrapper .category-item .img-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.categories_page .categories-wrapper .category-item .img-wrapper img {
    width: 100%;
    height: 100%;
}

.categories_page .categories-wrapper .category-item p {
    font-weight: 500;
    white-space: nowrap;
}

/* ./Categories */

.single_course_page .course-btn {
    height: 50px;
    border: none;
    border-radius: 50px;
    transition: 0.3s;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    width: 150px;
}
.single_course_page .share-btn {
    background: #FF6D34;
}

.single_course_page .share-btn:hover {
    color: #FF6D34;
    background: #fff;
}

.single_course_page .order-btn {
    background: transparent;
    border: 1.5px solid rgba(0, 189, 166, 0.5);
}

.single_course_page .order-btn:hover {
    background-color: #00BDA6;
}

.single_course_page .popup .close-icon {
    position: absolute;
    top: 15px;
    left: 10px;
}

.single_course_page .share_btns {
    display: flex;
    justify-content: space-between;
}

.single_course_page .course-buttons .popup-body a {
    color: #FF6D34;
    font-size: 16px;
}

.icons-wrapper span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    box-shadow: -6px 7px 16px #a5a5a5;
    margin-left: 15px;
}

.icons-wrapper span .icon {
    font-size: 28px;
}

.icons-wrapper #facebook {
    color: #3b5998 !important;
}

.icons-wrapper #twitter {
    color: #1da1f2 !important;
}

.icons-wrapper #instagram {
    color: #c32aa3 !important;
}

.icons-wrapper #whatsapp {
    color: #25d366 !important;
}

.icons-wrapper #linkedIn {
    color: #0077b5!important;
}

.icons-wrapper #linkedIn:hover span{
    background-color: #0077b5 !important;
    color: #fff !important;
    border: none
}

.icons-wrapper #facebook:hover span {
    background-color: #3b5998 !important;
    color: #fff !important;
    border: none
}

.icons-wrapper #twitter:hover span {
    background-color: #1da1f2 !important;
    color: #fff !important;
    border: none
}

.icons-wrapper #instagram:hover span {
    background-color: #c32aa3 !important;
    color: #fff !important;
    border: none
}

.icons-wrapper #whatsapp:hover span {
    background-color: #25d366 !important;
    color: #fff !important;
    border: none
}

.icons-wrapper #facebook:hover .facebook-text,
.icons-wrapper #twitter:hover .twitter-text,
.icons-wrapper #instagram:hover .insta-text,
.icons-wrapper #whatsapp:hover .whats-text {
    display: none;
}

.single_course_page .modal-content-order {
    width: auto;
}

.single_course_page .submit_order_btn {
    padding: 10px 35px;
    border-radius: 10px;
    background-color: #FF6D34;
    color: #fff;
    border: none;
    transition: transform 300ms;
}

.single_course_page .submit_order_btn:hover {
    transform: scale(1.2);
}

@media (width > 920px) {
    .single_course_page .modal-content-order {
        width: 900px;
    }
}

/* evaluation_methodology */
.quality_policy .title {
    color: #eee;
    font-weight: bold;
    font-size: 1.5rem;
    background-color: #FF6D34;
    padding: 10px 15px;
}

.quality_policy .title-details {
    padding: 10px 19px;
    font-size: 18px;
    color: #2d2d2d;
    line-height: 1.7;
    letter-spacing: 0.6px;
}

.quality_policy .accordion-button,
.quality_policy .accordion-button:focus,
.quality_policy .accordion-button:active {
    outline: 0;
    box-shadow: none;
}

.quality_policy .accordion-button {
    font-size: 20px;
    font-weight: 600;
}

.quality_policy .accordion-button:not(.collapsed) {
    background-color: #f1f1f1;
    color: #000;
}

.quality_policy .accordion-button::after {
    margin-right: 10px;
}

.quality_policy .accordion-header .icon {
    color: #00bda6;
    margin-left: 14px;
    font-size: 23px;
}

.quality_policy .accordion-body {
    font-size: 17px;
    letter-spacing: 0.8px;
    font-weight: 600;
    color: #464646;
}
/* ./evaluation_methodology */

/* certification */

.certification p {
    padding: 0;
    margin: 0;
}

.certification .sidebar {
    display: flex;
    flex-direction: column;
    border: 2px solid #f1f1f1;
    padding: 0;
    background-color: #c2efea;
}

.certification .sidebar button {
    padding: 21px 10px;
    font-weight: 600;
    text-align: center;
    background-color: transparent;
    color: #000;
}

.certification .sidebar button.active {
    color: #FF6D34;
    background-color: transparent;
}

.certification .sidebar a:not(:last-of-type) {
    border-bottom: 2px solid #f1f1f1;
}

.certification  .certification_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c2efea;
    padding: 0 10px;
}

.certification  .certification_header p {
    font-size: 18px;
    font-weight: 600;
}

.certification  .certification_header .logo_wrapper {
    width: 80px;
    height: 80px;
}

.certification  .certification_header .logo_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certification .certification_content .tab-content {
    border-bottom: 2px solid #eee;
}

.certification  .section_title {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    color: #FF6D34;
}

.certification  .section_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #FF6D34;
}

.certification .section_img_wrapper {
    width: 100%;
    height: 250px;
}

.certification .section_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certification .text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}
.certification #support_section .logo_wrapper {
    width: 80px;
    height: 80px;

}

.certification #support_section .logo_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certification #support_section .icon {
    color: rgb(2, 143, 2);
    font-size: 16px;
    margin-left: 5px;
}

.certification  #contact_section .img_wrapper {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: -1px 3px 20px #929292;

}

.certification  #contact_section .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification  .contact_info p {
    font-size: 16px;
    font-weight: 500;
}

.text-orange {
    color: #FF6D34;
}

/* End certification */

/* Services & details */
.services p {
    margin: 0;
    padding: 0;
}

.services .help_you {
    background-color: #00bda6;
    color: #fff;
    padding: 20px 18px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.services .help_you .title {
    font-weight: 500;
}

.services .help_you .contact {
    background-color: #ff6d34;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    display: block;
    margin: 10px auto;
}

.services .company {
    background-color: #00BDA6;
    padding: 10px 10px;
    color: #fff;
    cursor: pointer;
    transition: background 300ms;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
}

.services .company:hover {
    background-color: #ff6d34;
}

.services .testimonials {
    margin: 20px 0;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
}

.services .testimonials .item {
    padding: 20px 10px 32px 10px;
    border: 4px solid #eee;

}

.services .testimonials .item::after {
    content: "";
    width: 16px;
    height: 16px;
    background: #f8fbff;
    position: absolute;
    bottom: -13px;
    border: 4px solid #eee;
    right: 40px;
    border-top-color: #f8fbff;
    border-radius: 38px 60px 27px 78px;
}

.services .testimonials .item .icon {
    position: absolute;
    bottom: -6px;
    right: 0;
    font-size: 45px;
    color: #ff6d34;
}

.services .testimonials .user {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.services .testimonials .user .img_wrapper {
    width: 70px;
    height: 70px;
    
}

.services .testimonials .user .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services .latest_news .title  {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
}

.services .latest_news .news_item {
    border-bottom: 2px solid #eee;
    padding: 10px 5px;
}

.services .latest_news .news_item .content {
    font-weight: 500;
}

.services .latest_news .news_item .icon {
    color: #ff6d34;
}

.services .service_card {
    margin-bottom: 30px;
}

.services .service_card .img_wrapper {
    width: 255px;
    height: 180px;
    position: relative;
}

.services .service_card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .service_card .img_wrapper::after {
    content: "";
    background: #ff6d34;
    width: 86px;
    height: 5px;
    display: block;
    margin-bottom: 10px;
    margin-top: 15px;
}

.services .service_card .img_wrapper:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.services .service_card .img_wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 33px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms;
}

.services .service_card .card_body {
    padding-top: 34px;
}

.services .service_card .card_body .title  {
    font-weight: 500;
    font-size: 18px;
}

.services .service_card .card_body .info {
    padding: 13px 0;
    color: #606060;
    font-size: 14px;
}

.services .details .img_wrapper {
    width: 100%;
    height: 300px;
}

.services .details .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .details .content .title {
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0;
    cursor: default;
}

.services .details .content .title::after {
    content: "";
    width: 50px;
    height: 3px ;
    background-color: #ff6d34;
    display: block;
    transition: width 300ms;
}

.services .details .content .title:hover::after {
    width: 100px;
}

.services .details .content .info {
    color: #464646;
    font-size: 16px;
}

.services .details .features .img_wrapper {
    width: 100%;
    height: 75px;
}

.services .details .features .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services .details .feature_border:not(:last-of-type){
    border-left: 2px solid #eee;
    border-bottom: none;
}

@media (width < 576px) {
    .services .details .feature_border:not(:last-of-type){
        border-bottom: 2px solid #eee;
        border-left: none;
    }   
}

.services .details .features .feature_item .header {
    line-height: 1.2;
    margin-top: 5px;
}

.services .details .features .feature_item .info {
    color: #606060;
}

.services .details .contact-us {
    border: 2px solid #eee;
    padding: 20px 20px;
    background-color: #f9f9f9;
    box-shadow: 1px 4px 13px #bbb;
    border-radius: 10px;
    margin-top: 50px;
}

.services .details .contact-us .title {
    color: #3b5998;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.services .details .contact-us .title::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #334763;
    display: block;
    margin: 5px auto;
}

.services .details .contact-us .submit {
    border: none;
    background-color: #3b5998;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

/* End Services & details*/

/* About_center page  */
.choose_about .advantages {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.choose_about .advantage_item {
    width: 20%;
}

.choose_about .advantage {
    min-height: 203px;
}

@media (width < 768px) {
    .choose_about .advantage_item {
        width: 25%;
    }   
}

@media (width < 600px) {
    .choose_about .advantage_item {
        width: 50%;
    }   
}
@media (width < 500px) {
    .choose_about .advantage_item {
        width: 100%;
    }   
}

/* End About_center page  */

/* Blog */
.blog .share_btns {
    margin: 30px 0 0;
    padding: 20px;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog .share_btns a {
    background-color: transparent!important;
}

.blog .share_btns a:hover {
    background-color: transparent!important;
}

/* End Blog */

.select2-selection__choice {
    overflow: initial!important;
}

.newsletter_section  {
    padding: 18px 23px !important;
}

.select2-selection.select2-selection--multiple {
    position: relative!important;
}
.select2-search.select2-search--inline {
    position: absolute!important;
}