/* Commomn styles */


:root {
    --theme-color-primary: #1a82a4;
    --theme-color-secondary: #43b97e;
    --theme-color-third: #1a82a4;
    --theme-color-primary-lite: #e2f5fe;
    --theme-color-white: #fff;
    --theme-color-dark: #323942;

    --theme-color-bg-mat: #191C21;
    --theme-color-bg-mat-secondary: #323942;
    --theme-color-bg-mat-secondary-transparent: #323942f5 ;

    --theme-color-top-header: #1a82a4;
    --theme-color-middle-header: #ffffff;
    --theme-color-menu-bar: #ffffff;

    --theme-color-heading: #1a82a4;
    --theme-color-heading-second: #1a82a4;
    --theme-color-heading-third: #1a82a4;
    --theme-color-heading-hover: #43b97e;

    --theme-color-button: #1a82a4;
    --theme-color-button-text: #ffffff;
    --theme-color-button-border: #1a82a4;
    --theme-color-button-hover: #43b97e;

    --theme-color-button-second: #1a82a4;
    --theme-color-button-text-second: var(--theme-color-primary);
    --theme-color-button-border-second: #43b97e;
    --theme-color-button-hover-second: #f28f3e;

    --theme-color-button-transparent: #ffffff00;
    --theme-color-transparent: #ffffff00;

}
body.dark-mode{
    --theme-color-primary: #337ab7;
    --theme-color-secondary: #43b97e;
    --theme-color-third: #f7e8bc;
    --theme-color-primary-lite: #f3fbf8;
    background: var(--theme-color-bg-mat);
    --theme-color-white: #323942;
    --theme-color-dark: #fff;
    transition: 0.25s -0.05s;

    --theme-color-top-header: #323942;
    --theme-color-middle-header: #000000;
    --theme-color-menu-bar: #323942;

    --theme-color-heading: #d0d0d0;
    --theme-color-heading-second: #d0d0d0;
    --theme-color-heading-third: #5dd1ff;
    --theme-color-heading-hover: #ffffff;

    --theme-color-button: #1a82a4;
    --theme-color-button-text: #ffffff;
    --theme-color-button-border: #ebfbf3;
    --theme-color-button-hover: #43b97e;

    --theme-color-button-second: #1a82a4;
    --theme-color-button-text-second: #ffffff;
    --theme-color-button-border-second: #43b97e;
    --theme-color-button-hover-second: #f28f3e;

}
body {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    transition: 0.25s -0.05s;
}
a {
    color: #000000;
    font-size: 14px;
    transition-duration: 0.4s;
}
a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
    outline: none;
    transition-duration: 0.4s;
    font-size: inherit;
}
a:focus {
    outline: none !important;
}
button,
button:visited,
button:hover,
button:active {
    outline: none !important;
}
button:focus {
    outline: none !important;
}
img {
    max-width: 100%;
}
.col-1by5 {
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.pad-none {
    padding-left: 0px;
    padding-right: 0px;
}
.pad-left-none {
    padding-left: 0;
}
.pad-right-none {
    padding-right: 0;
}
.pad-5-row {
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.pad-5-row > div {
    padding-left: 2.5px;
    padding-right: 2.5px;
}
.white-bg {
    background: #fff;
}
p {
    font-weight: 300;
    font-size: 18px;
    color: #2c2c2c;
    line-height: 23.61px;
    margin-bottom: 25px;
}
p.alt {
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 20px;
}
/*  Commomn styles end */

/* header styles start */

.started-btn {
    border: 1px solid var(--theme-color-primary);
    padding: 9px 21px !important;
    margin-top: 6px !important;
    background-color: var(--theme-color-primary);
    color: #fff !important;
}
.started-btn:hover {
    border: 1px solid var(--theme-color-primary);
    padding: 9px 21px !important;
    margin-top: 6px !important;
    background-color: var(--theme-color-primary) !important;
    color: #fff !important;
}

.login-btn {
    border: 1px solid var(--theme-color-third);
    font-size: 17px;
    color: var(--theme-color-third) !important;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 15px;
    padding: 9px 21px !important;
    margin-top: 6px !important;
}
.login-btn:hover {
    border: 1px solid var(--theme-color-primary);
    font-size: 17px;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500;
    padding: 9px 21px !important;
    margin-top: 6px !important;
    background-color: var(--theme-color-primary) !important;
}
.register-btn {
    border: 1px solid var(--theme-color-primary-lite);
    color: #fff !important;
    border-radius: 4px;
    margin-left: 15px;
    background-color: var(--theme-color-primary-lite);
    padding: 9px 21px !important;
    margin-top: 6px !important;
}
.register-btn:hover {
    border: 1px solid var(--theme-color-third);
    color: #fff !important;
    border-radius: 4px;
    margin-left: 15px;
    background-color: var(--theme-color-third) !important;
    margin-top: 6px !important;
    padding: 9px 12px !important;
}
/*  header styles end  */

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
/* banner style end */
/* webinar scroll style start */
.webinar-scroll {
    display: inline-block;
    float: left;
    width: 100%;
    background-color: #f5f6f8;
}
.breaking-caret {
    color: #fff;
    background-color: var(--theme-color-primary-lite);
    padding: 15px 5px;
    text-align: center;
}
.breaking-caret h2 {
    font-size: 18px;
    margin: 0px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breaking-caret span {
    margin-right: 3px;
}
.breaking-box {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 10px 0px;
}
.breaking-box .badge {
    display: inline-block;
    padding: 13px 21px;
    font-size: 15px;
    font-weight: 700;
    line-height: 3px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: var(--theme-color-third);
    border-radius: 145px;
    margin-right: 10px;
}
.breaking-box a {
    margin: 0px;
    color: #222222 !important;
    font-size: 17px;
    font-weight: 500;
}
/* webinar scroll style end */
/* leading-partners style start*/
.leading-partners {
    text-align: center;
    display: inline-block;
    float: left;
    width: 100%;
    margin: 40px 0px 0px 0px;
}
.leading-partners h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 35px;
    margin-top: 10px;
    font-family: "Kumbh Sans", sans-serif;
}
.leading-partners span {
    color: var(--theme-color-primary);
}
/* leading-partners style end*/
/* home-about-section style start*/
.home-about-section {
    background: #f5f6f8;
    padding: 40px 0px 130px 0px;
    text-align: center;
}
.home-about-section h1 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
}
.home-about-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 25px;
    color: #535967;
}
.about-more-btn {
    border: 1px solid var(--theme-color-button);
    background-color: var(--theme-color-button);
    padding: 10px 25px;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--theme-color-button-text) !important;
}
.about-more-btn span {
    margin-left: 7px;
}
.about-more-btn:hover {
    border: 1px solid var(--theme-color-button-hover);
    background-color: var(--theme-color-button-hover);
    color: var(--theme-color-button-text) !important;
    padding: 10px 25px;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 17px !important;
}
/* home-about-section style end*/
/*benefits-section style start */
.benefits-section {
    margin-top: 67px;
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
.feature-item {
    background: #fff;
    padding: 50px 40px;
    border-radius: 5px;
    border: 1px dashed #ddd;
    text-align: center;
    margin-top: -83px;
    transition-duration: 0.4s;
    box-shadow: 2px 8px 20px 0px rgba(87, 87, 87, 0.08);
}
.feature-item:hover {
    background: #fff;
    transition-duration: 0.4s;
    border: 1px dashed var(--theme-color-primary-lite);
    box-shadow: 8px 10px 30px 0px rgba(2, 2, 2, 0.09);
}
.feature-item:hover h3 {
    color: var(--theme-color-primary-lite);
    transition-duration: 0.4s;
}
.feature-item h3 {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    color: var(--theme-color-third);
    font-size: 22px;
    margin-top: 20px;
}
.feature-item p {
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 0px;
    color: #535967;
}
/*benefits-section style end */
/*trending-courses style start */
.trending-courses {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 20px 0px 20px 0px;
}
.trending-courses h2 {
    color: var(--theme-color-heading);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.trending-courses p {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
.course-list-section {
    border: 1px solid #f5f6f8;
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}
.course-list-section:hover h2 {
    transition-duration: 0.4s !important;
    color: var(--theme-color-heading-hover);
}
.course-list-section:hover .course-list-box img {
    transition-duration: 0.4s !important;
    opacity: 0.6;
}
.course-list-box {
    background-color: #033f95;
    position: relative;
}
.course-dtl-box {
    padding: 20px 20px;
    display: inline-block;
    float: left;
    width: 100%;
}
.course-list-section h2 {
    font-size: 19px !important;
    font-weight: 600 !important;
    margin-bottom: 11px !important;
    margin-top: 5px !important;
    text-align: left !important;
    border-bottom: 1px solid var(--theme-color-third);
    padding-bottom: 12px;
    color: var(--theme-color-heading);
}
.course-list-section h2:hover {
    color: var(--theme-color-heading-hover);
}
.course-list-section p {
    font-weight: 500 !important;
    font-size: 17px !important;
    line-height: 21px !important;
    color: var(--theme-color-third) !important;
    text-align: left !important;
    margin-bottom: 15px !important;
}
.course-price {
    background-color: rgb(2 67 140 / 80%);
    position: absolute;
    bottom: 10px;
    right: 11px;
    padding: 9px 15px;
    border-radius: 3px;
}
.course-price h3 {
    margin: 0px;
    color: #fff !important;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none !important;
}
.course-price span {
    font-size: 17px;
    text-decoration: line-through;
    padding-left: 3px;
    border-left: 1px solid #fff;
}
.new-course {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--theme-color-third);
    width: 45px;
    height: 45px;
    border-radius: 50px;
}
.selected-course {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--theme-color-primary-lite);
    width: 30px;
    height: 30px;
    border-radius: 50px;
    text-align: center;
    line-height: 31px;
    color: #fff !important;
}

.new-course h3 {
    margin: 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 44px;
}
.video-play-btn {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 42%;
    text-align: center;
}
.video-play-btn button {
    color: #fff;
    border-radius: 47px;
    width: 55px;
    height: 55px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.7);
}
.course-list-section .rating {
    color: var(--theme-color-third);
    font-size: 16px;
    margin-bottom: 17px;
}
.course-list-section .rating strong {
    color: var(--theme-color-third);
    margin-left: 10px;
    font-size: 16px;
}
.course-list-section .rating i {
    color: var(--theme-color-third);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    margin-left: 5px;
}
.add-cart-btn {
  border: 1px solid var(--theme-color-button-border);
    background-color: var(--theme-color-button-transparent);
    padding: 8px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 14px !important;
    font-weight: 600;
    color: var(--theme-color-button-text-second) !important;
    float: left;
    width: 105px;
}
.add-cart-btn:hover {
    border: 1px solid var(--theme-color-button-hover);
    background-color: var(--theme-color-button-hover);
    color: #fff !important;
}
.enrol-btn {
    border: 1px solid var(--theme-color-button);
    background-color: var(--theme-color-button);
    padding: 8px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 14px !important;
    font-weight: 600;
    color: #fff !important;
    float: right;
    width: 119px;
}
.enrol-btn:hover {
    border: 1px solid var(--theme-color-button-hover-second);
    background-color: var(--theme-color-button-hover-second);
    color: #fff !important;
}
.all-course-btn {
    border: 1px solid var(--theme-color-button);
    background-color: var(--theme-color-button-transparent);
    padding: 10px 25px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 17px !important;
    font-weight: 600;
    color: var(--theme-color-button) !important;
    margin-top: 15px;
    margin-bottom: 10px;
}
.all-course-btn:hover {
    border: 1px solid var(--theme-color-button-border);
    background-color: var(--theme-color-button-hover);
    color: #fff !important;
}
/*trending-courses style end */
/* count-section style start */
.count-section {
    background-image: url("../img/pattern-9.png");
    background-size: contain;
    background-repeat: repeat;
    padding: 40px 0px;
    background-color: #fff !important;
    display: inline-block;
    float: left;
    width: 100%;
}
.count-section h2 {
    color: var(--theme-color-heading);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.count-section p {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
.stats {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    color: var(--theme-color-primary);
    position: relative;
}
.plus {
    position: absolute;
    top: 64px;
    left: 100px;
    right: 0px;
}
.stats h4 {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    color: var(--theme-color-third);
    font-size: 22px;
    margin-top: 0px;
}
.stats .fa {
    color: #008080;
    font-size: 60px;
}
/* count-section style end */
/* not fount page style start */
.page-not-found {
    text-align: center;
    margin-top: 40px;
    display: inline-block;
    float: left;
    width: 100%;
}
.page-not-found img {
    width: 710px;
}
/* not fount page style end */
/* video-point-section style start */
.video-point-section {
    padding: 40px 0px 0px 0px;
    display: inline-block;
    float: left;
    width: 100%;
    background-color: #e2f5fe38;
}
.video-point-inner {
    background-image: url("../img/pattern-8.png");
    padding-bottom: 30px;
}
.video-section {
    position: relative;
}
.video-play-button {
    position: absolute;
    z-index: 10;
    top: 89%;
    left: 38%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 15px;
    height: 12px;
    background: #41d4dd;
    border-radius: 50%;
    padding: 9px 24px 18px 28px;
}
.video-play-button::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #ee6372;
    border-radius: 50%;
    transition: all 200ms;
    border: solid 4px #fff;
}
.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 12px solid transparent;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
.video-model .modal-content {
    position: relative;
    background-color: #16213b;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgb(22, 33, 59);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.video-model .modal-header {
    padding: 15px 15px 9px 15px;
    border-bottom: transparent;
}
.video-model .modal-body {
    position: relative;
    padding: 5px 15px 15px 15px;
}
.video-model .close {
    font-size: 20px;
    font-weight: 500;
    line-height: 0;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.9;
    border: 2px solid #fff !important;
    width: 25px;
    height: 25px;
    border-radius: 55px;
}
.main-point-section h2 {
    color: var(--theme-color-heading);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 90px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.main-point-section h3 {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 17px;
    text-align: left;
    color: var(--theme-color-primary);
    margin-top: 0px;
}
.main-point-section p {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #535967;
    text-align: left;
    margin-bottom: 20px;
}
.courses-btn {
    border: 1px solid var(--theme-color-primary-lite);
    background-color: #fff;
    padding: 10px 25px;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--theme-color-primary-lite) !important;
    margin-top: 15px;
    margin-bottom: 21px;
}
.courses-btn:hover {
    border: 1px solid var(--theme-color-button-second);
    background-color: var(--theme-color-button-second);
    color: #fff !important;
    padding: 10px 25px;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 17px !important;
    margin-top: 15px;
    margin-bottom: 21px;
}
.main-point-section ul {
    padding-left: 0px;
    list-style: none;
}
.main-point-section ul li {
    margin-top: 11px;
    padding-left: 35px;
    position: relative;
    text-align: left;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #535967;
}
.main-point-section ul li::before {
    content: "";
    background: url(../img/check.png) no-repeat;
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0;
}
/* video-point-section style end */
/* upcoming-courses style start */
.upcoming-courses {
    margin: 20px 0px 20px 0px;
}
.upcoming-courses h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.upcoming-courses p {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
/* upcoming-courses style end */
/* app-contact-section style start*/
.app-contact-section {
    padding: 20px 0px;
    background-image: url("../img/1.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
.app-contact-section h2 {
    color: var(--theme-color-third);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
    line-height: 33px;
}
.app-contact-section p {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 17px;
    text-align: left;
    color: var(--theme-color-third);
    margin-top: 0px;
}
.app-dis-section {
    margin-top: 56px;
}
.app-detail-btn {
    border: 1px solid var(--theme-color-button);
    background-color: var(--theme-color-button);
    padding: 10px 25px;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--theme-color-button-text) !important;
    margin-top: 8px;
    margin-bottom: 21px;
}
.app-detail-btn:hover {
    border: 1px solid var(--theme-color-button-hover);
    background-color: var(--theme-color-button-hover);
    color: var(--theme-color-button-text) !important;
    padding: 10px 25px;
    transition-duration: 0.4s;
    border-radius: 4px;
    font-size: 17px !important;
    margin-top: 8px;
    margin-bottom: 21px;
}
.app-contact-section h3 {
    margin-top: 17px;
    font-weight: 600;
    font-family: "Kumbh Sans", sans-serif;
    color: #3f3a76;
    margin-bottom: 11px;
    font-size: 20px;
}
.app-btn {
    width: 190px;
    padding: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 2px 3px 9px -1px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: #fff;
}
.quick-contact-form {
    background-color: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 50px 45px;
    border-radius: 8px;
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: -32px;
}
.quick-contact-form h2 {
    color: var(--theme-color-third);
    font-size: 26px;
    font-weight: 700;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
    line-height: 31px;
    margin-top: 0px;
    margin-bottom: 15px;
}
.quick-contact-form h2 span {
    color: var(--theme-color-third);
}
.quick-contact-form .form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #060606;
    background-color: var(--theme-color-primary-lite);
    background-image: none;
    border: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: none;
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: none;
}
.quick-contact-form .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #060606;
}
.quick-contact-form .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #060606;
}
.quick-contact-form .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #060606;
}
.quick-contact-form .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #060606;
}
.quick-contact-form textarea {
    height: 100px !important;
}
.quick-contact-form .btn-primary {
    border: 1px solid var(--theme-color-primary);
    padding: 11px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 19px !important;
    font-weight: 700;
    color: #fff !important;
    float: right;
    width: 100%;
    text-transform: uppercase;
    margin-top: 10px;
    background-color: var(--theme-color-primary);
}
.quick-contact-form .btn-primary:hover {
    border: 1px solid var(--theme-color-button-hover-second);
    color: #fff !important;
    background-color: var(--theme-color-button-hover-second);
}
/* app-contact-section style end */
/* blog-events-section style start */
.blog-events {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}
.blog-events h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.blog-events p {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
.blog-event-box {
    margin-bottom: 30px;
}
#blog_list .blog-event-box {
    min-height: 425px;
    max-height: 475px;
}
.lower-content {
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
}
.lower-content .post-info {
    position: relative;
    padding-left: 0px;
}
.lower-content .post-info li:first-child {
    position: relative;
    color: #ffffff;
    border-radius: 50px;
    padding: 3px 14px;
    background-color: var(--theme-color-primary);
}
.lower-content .post-info li {
    position: relative;
    color: #272626;
    font-size: 14px;
    margin-right: 15px;
    display: inline-block;
}
.lower-content h4 {
    position: relative;
    font-weight: 700;
    line-height: 1.3em;
    margin-top: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dad4d5;
}
.lower-content h4 a {
    position: relative;
    color: var(--theme-color-third);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: "Kumbh Sans", sans-serif;
}
.lower-content .more {
    position: relative;
    color: var(--theme-color-third);
    font-size: 18px;
    margin-top: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.lower-content .more:hover {
    letter-spacing: 1.5px;
    color: var(--theme-color-primary);
}
/* blog-events-section style end */
/* testimonial-section style start */
.testimonial-section {
    padding: 20px 0px 40px 0px;
    display: inline-block;
    float: left;
    width: 100%;
}
.inner-container {
    position: relative;
}
.testimonial-section .inner-container .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    height: 394px;
    background-position: center top;
    background-repeat: no-repeat;
}
.testimonial-section h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.testimonial-section p {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
.testimonial-block {
    position: relative;
    margin-bottom: 30px;
}
.testimonial-block .inner-box::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 8px;
    background-color: #ffffff;
    -ms-transform: skewY(2deg);
    transform: skewY(2deg);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-block .inner-box {
    position: relative;
    padding: 45px 25px 50px;
}
.testimonial-block .inner-box .text {
    position: relative;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 30px;
    color: #535967 !important;
    font-weight: 500;
}
.testimonial-block .inner-box .author-info {
    position: relative;
}
.testimonial-block .inner-box .author-info .info-inner {
    position: relative;
    padding-left: 82px;
    padding-top: 10px;
}
.testimonial-block .inner-box .author-info .info-inner .author-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 62px;
    height: 62px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
}
.testimonial-block .inner-box .author-info h6 {
    position: relative;
    color: #06092d;
    font-weight: 500;
    line-height: 22px;
    font-size: 21px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.testimonial-block .inner-box .author-info .designation {
    position: relative;
    color: var(--theme-color-primary);
    font-weight: 500;
    line-height: 15px;
    margin-top: 4px;
}
.testimonial-block .inner-box .quote {
    position: absolute;
    right: 22px;
    bottom: 18px;
}
.testimonial-block .inner-box .quote .fa {
    color: var(--theme-color-primary);
    font-size: 32px;
}
/* testimonial-section style end */
/* newsletter-subscription style start */
.subscription-outer {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 20px 0px 50px 0px;
}
.newsletter-subscription {
    background-image: url("../img/blue-pattern.jpg");
    background-repeat: repeat;
    background-size: contain;
    padding: 40px 40px;
}
.subheading {
    text-transform: uppercase;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--theme-color-third);
    letter-spacing: 2px;
}
.section-heading h3 {
    font-size: 38px;
    line-height: 44px;
    font-family: "Kumbh Sans", sans-serif;
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0px;
}
.subscribe-form {
    position: relative;
}
.subscribe-form .form-control {
    height: 65px;
    padding-left: 20px;
    background: #fff;
    border-color: #ddd;
    color: #495057;
    font-size: 17px;
    margin-top: 8px;
}
.subscribe-form a {
    position: absolute;
    content: "";
    right: 8px;
    background: var(--theme-color-primary-lite);
    color: #fff;
    border-color: var(--theme-color-primary-lite);
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Kumbh Sans", sans-serif;
    top: 8px;
    line-height: 23px;
}
.subscribe-form a:hover {
    background: var(--theme-color-primary);
    color: #fff;
    border-color: var(--theme-color-primary);
}
/* newsletter-subscription style end */
/* back to top */
#back-to-top {
    position: fixed;
    bottom: 164px;
    right: 35px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    background: #007dff;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    font-size: 25px;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    background: var(--theme-color-primary-lite);
}
#back-to-top.show {
    opacity: 1;
}
#content {
    height: 2000px;
}
/* back to top */
/* whatsapp chat */
.footer-whatsapp-icon {
    background-color: #36b549;
    position: fixed;
    right: 33px;
    width: 53px;
    height: 53px;
    text-align: center;
    font-size: 29px;
    color: #fff;
    border-radius: 50px;
    line-height: 50px;
    z-index: 999;
    bottom: 85px;
}
/* whatsapp chat */

.call-icon {
    background-color: var(--theme-color-primary);
    position: fixed;
    right: 27px;
    width: 53px;
    height: 53px;
    text-align: center;
    font-size: 29px;
    color: #fff;
    border-radius: 50px;
    line-height: 34px;
    z-index: 999;
    bottom: 96px;
    border: none;
}
.call-icon:hover {
    background-color: var(--theme-color-third);
}
.call-icon:focus {
    background-color: var(--theme-color-third);
}
.call-popup .close {
    margin-top: 3px;
    color: #fff;
    border: 3px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    background-color: var(--theme-color-primary);
    margin-bottom: -9px;
    position: absolute;
    z-index: 999;
    right: -9px;
    top: -17px;
    opacity: 1;
    font-weight: 400;
}
.call-popup .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(185, 185, 185, 0.5);
    background-image: url("../img/pattern-9.png");
    border: none;
    border-radius: 5px;
}
.call-popup .modal-body {
    position: relative;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 30px 30px;
    border: 5px solid #f6f6f6;
    border-radius: 2px;
}
.call-popup .btn-default {
    border: 1px solid var(--theme-color-primary);
    background-color: var(--theme-color-primary);
    padding: 13px 28px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 16px !important;
    font-weight: 600;
    color: #fff !important;
    text-transform: uppercase;
}
.call-popup .btn-default:hover {
    border: 1px solid var(--theme-color-third);
    background-color: var(--theme-color-third);
    padding: 13px 28px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 16px !important;
    font-weight: 600;
    color: #fff !important;
    text-transform: uppercase;
}
.call-popup .modal-body p {
    font-weight: 600;
    font-size: 21px;
    color: var(--theme-color-primary);
    line-height: 23.61px;
    margin-bottom: 16px;
}
.call-popup .modal-dialog {
    /* max-width: 600px; */
    margin: 300px auto;
}
.call-popup .input-group-addon {
    padding: 6px 12px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    background-color: var(--theme-color-primary);
    border: 1px solid var(--theme-color-primary);
    /* border-right-color: rgb(2, 67, 140); */
    border-right-style: solid;
    border-right-width: 1px;
}
.call-popup .form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    font-size: 19px;
    line-height: 1.42857143;
    color: var(--theme-color-primary);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--theme-color-primary);
    border-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    font-weight: 500;
}

/* footer styles start */
.footer-section {
    background: #ebf4f8;
    padding: 40px 0px 0px 0px;
    display: inline-block;
    float: left;
    width: 100%;
}
.footer-bottom-section {
    padding: 20px 0px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.footer-bottom-section p {
    color: #535967;
    line-height: 30px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px;
}
.footer-link-section h2 {
    font-size: 20px;
    color: var(--theme-color-third);
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 15px;
}
.footer-link-section p {
    color: var(--theme-color-third);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 5px;
    font-family: "Kumbh Sans", sans-serif;
}
.footer-link-section p:hover {
    color: var(--theme-color-primary-lite);
}
.footer-link-section ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 15px;
}
.footer-link-section ul li {
    margin-bottom: 5px;
}
.footer-link-section ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #355375;
}
.footer-link-section ul li a:hover {
    color: var(--theme-color-primary-lite) !important;
}
.footer-link-section .logo {
    width: 150px;
    margin-bottom: 10px;
}
.social-box {
    position: relative;
}
.social-box li {
    position: relative;
    margin-right: 8px;
    display: inline-block;
}
.social-box li a {
    position: relative;
    color: #ffffff !important;
    font-size: 15px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    background-color: #55acee;
}
.social-box li.twitter a {
    background-color: #55acee;
}
.social-box li.pinterest a {
    background-color: #bd081c;
}
.social-box li.facebook a {
    background-color: #3b5999;
}
.social-box li.dribbble a {
    background-color: #ea4c89;
}
.social-box li.instagram a {
    background-color: #d12962;
}
.social-box li.linkedin a {
    background-color: #0077b0;
}
.social-box li a::before {
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    display: inline-block;
}
.social-box li a:hover::before {
    transform: rotateY(360deg);
}
/*  footer styles end  */
/************************************ Inner Pages style start ********************************************/
.inner-page-bread-crumbs-link-section {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 15px 0px;
}
.inner-page-bread-crumbs-link-section .breadcrumb {
    list-style: none;
    background-color: transparent;
    border-radius: 4px;
    padding-left: 0px;
    margin-bottom: 0px;
}
.inner-page-bread-crumbs-link-section .breadcrumb > li {
    display: inline-block;
    font-size: 15px;
    color: var(--theme-color-third);
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.inner-page-bread-crumbs-link-section .breadcrumb > .active {
    color: var(--theme-color-primary);
}
/************* About Page style start *******************/
.about-page-section {
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
}
.about-page-section h1 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.about-page-section p {
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 11px;
    color: #535967;
    text-align: justify;
}
.mission-vision {
    padding: 50px 0px 0px 0px;
}
.mission-vision h2 {
    color: var(--theme-color-primary-lite);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.mission-vision p {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 11px;
    color: #535967;
    text-align: justify;
}
/************* About Page style end *******************/
/************* Blog Page style start ******************/
.pagination-section {
    display: inline-block;
    float: right;
    width: 100%;
}
.pagination-section .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    float: right;
}
.pagination-section .pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: var(--theme-color-primary);
    border-color: var(--theme-color-primary);
}
.pagination-section .pagination > li > a,
.pagination-section .pagination > li > span {
    position: relative;
    float: left;
    padding: 8px 14px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: var(--theme-color-primary);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--theme-color-primary);
}
.pagination-section .page-link:hover {
    background-color: var(--theme-color-primary) !important;
    color: #fff !important;
}
/************ Blog Page style end ********************/
/* blog detail page style start */
.blog-event-box .blog-dist {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 25px;
    color: #535967;
    text-align: justify;
}
.recent-blog-listing-right-section h2 {
    color: var(--theme-color-third);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0px !important;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left !important;
}
/* blog detail page style end */
/* event page style start */
.events-listing {
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    box-shadow: 0px 0px 15px rgba(153, 153, 153, 0.1);
    position: relative;
    margin-bottom: 30px;
}
.event-header {
    background-color: var(--theme-color-third);
    padding: 10px 15px;
}
.event-header {
    background-color: var(--theme-color-third);
    padding: 15px 20px;
}
.blog-events .event-header h2 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: right;
    line-height: 22px;
}
.event-content-section {
    padding: 25px 20px;
    border: 1px dashed #ddd;
    display: inline-block;
    float: left;
    width: 100%;
}
.web-team-img {
    display: inline-block;
    float: left;
    width: auto;
    padding-right: 30px;
    padding-bottom: 10px;
}
.event-content-section h3 {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    color: var(--theme-color-third);
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 5px;
}
.event-content-section p {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 0px;
    color: #535967;
    text-align: left;
}
.event-img {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 29px;
    left: 25px;
    border-radius: 50px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 2px 8px 20px 0px rgba(0, 0, 0, 0.08);
}
.event-content-section .more {
    position: relative;
    color: var(--theme-color-third);
    font-size: 16px;
    margin-top: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.event-content-section .more:hover {
    letter-spacing: 1.5px;
    color: #007dff;
}
.event-content-section h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 15px;
    margin-bottom: 5px;
    text-align: left;
    color: var(--theme-color-primary);
    margin-top: 26px;
}
.event-content-section .sub-text {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    color: var(--theme-color-third);
    font-size: 20px;
    margin-top: 7px;
    margin-bottom: 1px;
}
.event-content-section ul {
    list-style: decimal-leading-zero;
    padding-left: 25px !important;
}
.event-content-section ul li {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 0px;
    color: #535967;
    text-align: left;
}
.event-details {
    border: 1px solid var(--theme-color-primary);
    background-color: var(--theme-color-primary);
    padding: 8px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 15px !important;
    font-weight: 600;
    color: #fff !important;
    margin-top: 20px;
    text-transform: uppercase;
    display: inline-block;
    outline: none;
}
.event-details:hover {
    border: 1px solid #ffcd24;
    background-color: #ffcd24;
    padding: 8px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 15px !important;
    font-weight: 600;
    color: #fff !important;
    margin-top: 20px;
    display: inline-block;
    outline: none;
    text-transform: uppercase;
}
.webinar-popup-registration .modal-content {
    background-color: #fff;
    border: none;
    border-radius: 0px;
    outline: 0;
    box-shadow: none;
}
.webinar-popup-registration .modal-body {
    padding: 20px 20px 0px 20px;
    border: 6px solid #fff;
}
.webinar-popup-registration .modal-header .close {
    margin-top: 3px;
    color: #fff;
    border: 3px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    background-color: var(--theme-color-primary);
    margin-bottom: -9px;
    position: absolute;
    z-index: 999;
    right: -9px;
    top: -17px;
    opacity: 1;
    font-weight: 400;
}
.webinar-popup-registration .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: var(--theme-color-primary);
}
.webinar-popup-registration .modal-title {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    color: #faf9ff;
    font-size: 22px;
    margin-top: 6px;
    margin-bottom: 0px;
    text-align: center;
}
.webinar-popup-registration .d-flex {
    display: -webkit-box !important;
}
.webinar-popup-registration .contact_container label {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
    color: #535967;
}
.webinar-popup-registration .form-control {
    border-radius: 0;
    border: solid 1px #ccc;
    background: none;
    height: 41px;
}
.webinar-popup-registration .country-code-list {
    width: 180px;
    padding: 6px 6px;
    border-radius: 0;
    border: solid 1px #ccc;
    background: none;
    height: 41px;
}
.webinar-popup-registration .mb-3 {
    margin-bottom: 15px;
}
.webinar-popup-registration .ps-2 {
    padding-left: 15px;
    width: 369px;
}
.webinar-popup-registration .event-details {
    margin-top: 0px;
}
.webinar-popup-registration .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #eee;
    background: #f5f6f8;
}
/* event pages style end */
/* terms conditions page style start */
.terms-conditions {
    margin: 10px 0px 40px 0px;
}
.terms-conditions p {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
    color: #535967;
    text-align: justify;
}
.terms-conditions h1 {
    color: var(--theme-color-primary);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Kumbh Sans", sans-serif;
    margin-top: 25px;
}
.terms-conditions address {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
    color: #535967;
    text-align: justify;
}
.terms-conditions h2 {
    color: var(--theme-color-third);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 25px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.terms-conditions h3 {
    color: var(--theme-color-third);
    font-size: 20px;
    margin-top: 8px;
    font-weight: 600;
}
.terms-conditions ul {
    padding-left: 20px;
    list-style: disclosure-closed;
}
.terms-conditions ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
    color: #535967;
    text-align: justify;
}
/* trems conditions page style end */
/* careers-page style start */
.careers-page-section {
    margin: 10px 0px 40px 0px;
}
.career-page-cnt h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
}
.career-page-cnt p {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 1px;
    color: var(--theme-color-dark);
}
.mail-apply {
    color: var(--theme-color-heading-third);
}
.opening-list {
    box-shadow: 0 1px 2px 0 rgba(0, 106, 194, 0.2);
    border: 1px solid #ebf0f6;
    padding: 30px 30px 30px 30px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
    position: relative;
}
.opening-list:hover {
    box-shadow: 0 3px 2px 0 rgba(0, 40, 72, 0.2);
    border: 1px solid #e3e3e3;
    padding: 30px 30px 30px 30px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
    position: relative;
}
.opening-list h2 {
    font-weight: 600;
    font-size: 17px;
    line-height: 13px;
    margin-bottom: 5px;
    text-align: left;
    color: var(--theme-color-third);
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.opening-list ul {
    list-style: none;
    padding-left: 0px;
    color: var(--theme-color-third);
    margin-bottom: 4px;
    display: inline-block;
    margin-top: 5px;
}
.opening-list ul li {
    float: left;
    margin-right: 15px;
    font-size: 15px;
}
.opening-list ul li span {
    padding-right: 4px;
}
.apply-job {
    border: 1px solid var(--theme-color-button);
    padding: 7px 15px !important;
    background-color: var(--theme-color-button);
    color: var(--theme-color-button-text) !important;
    font-size: 15px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.apply-job:hover {
    border: 1px solid var(--theme-color-button-hover);
    padding: 7px 15px !important;
    background-color: var(--theme-color-button-hover);
    color: #fff !important;
    font-size: 15px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.job-dis p {
    color: var(--theme-color-dark);
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    line-height: 21px;
    margin-bottom: 5px;
}
.job-dis p span {
    padding-right: 4px;
}
.soft-points ul li {
    margin-top: 0px;
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-color-third);
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 4px 10px;
}

.job-clsp ul {
    list-style: disclosure-closed;
    padding-left: 15px;
}
.job-clsp ul li {
    color: #536777;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    line-height: 21px;
    margin-bottom: 5px;
}
.show-less-btn {
    background-color: transparent !important;
    color: var(--theme-color-primary) !important;
    border: transparent !important;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    padding: 0px;
}
.show-less-btn:hover {
    background-color: transparent !important;
    color: var(--theme-color-primary-lite) !important;
    border: transparent !important;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    padding: 0px;
}

/* careers-page style end */
/* login page style start */
.login-page-section {
    display: inline-block;
    float: left;
    width: 100%;
    background-image: url("../img/pattern-9.png");
    margin: 30px 0px;
}
.login-signup-field-section {
    display: inline-block;
    float: left;
    width: 100%;
    /* padding: 20px 120px; */
    padding: 30px;
}
.login-page-section .register-link {
    font-size: 15px !important;
    font-weight: 600;
    background: var(--theme-color-primary);
    padding: 0.4em 1.5em;
    color: #fff !important;
    margin-bottom: 12px;
    border-radius: 8px;
}
.login-signup-field-section h1 {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 23px;
    color: var(--theme-color-third);
    margin-top: 0px;
}
.login-signup-field-section h2 {
    color: var(--theme-color-third);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    letter-spacing: 1px;
}
.login-signup-field-section p {
    font-weight: 500;
    font-size: 19px;
    color: var(--theme-color-primary);
    line-height: 23.61px;
    margin-bottom: 25px;
    font-family: "Kumbh Sans", sans-serif;
}
.login-bg {
    position: relative;
}
.overley-lg-si {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.7;
    /* background-image: linear-gradient(
        to right top,
        #720B3D,
        #0065a4,
        #0084a7,
        #00a196,
        var(--theme-color-primary-lite)
    ); */
    background-image: linear-gradient(to right top, #30abd3, #30abd3, #30abd3, #30abd3, #30abd3);
}
.lgn-overley-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.lgn-overley-text h2 {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 15px;
    color: #fff;
    margin-top: 0px;
}
.lgn-overley-text h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.md-radio {
    margin-bottom: 20px;
}
.md-radio.md-radio-inline {
    display: inline-block;
}
.md-radio input[type="radio"] {
    display: none;
}
.md-radio input[type="radio"]:checked + label:before {
    border-color: var(--theme-color-primary);;
    animation: ripple 0.2s linear forwards;
}
.md-radio input[type="radio"]:checked + label:after {
    transform: scale(1);
}
.md-radio label {
    display: inline-block;
    min-height: 20px;
    position: relative;
    padding: 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
    color: var(--theme-color-primary-lite);
    font-size: 14px;
    font-weight: 600;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
}
.md-radio label:before,
.md-radio label:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    transition: all 0.3s ease;
    transition-property: transform, border-color;
}
.md-radio label::before {
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--theme-color-primary);
}
.md-radio label:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    transform: scale(0);
    background: var(--theme-color-primary);
}
.login-page-section .form-control {
    display: block;
    width: 100%;
    height: 49px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.42857143;
    color: var(--theme-color-third);
    background-color: #fff;
    background-image: none;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: none;
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: none;
}
.login-page-section .frgt-link {
    /* float: right; */
    margin: 10px 0px;
    font-size: 15px !important;
    font-weight: 600;
    color: var(--theme-color-heading) ;
}
.login-page-section .frgt-link:hover {
    color: var(--theme-color-heading-hover);
}
.login-page-section .intl-tel-input {
    position: relative;
    display: inline-block;
    width: 100%;
}
.login-page-section #phone {
    height: 49px;
    padding: 6px 50px;
    font-size: 15px;
    line-height: 1.42857143;
    color: var(--theme-color-third);
    background-color: #fff;
    background-image: none;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    width: 100%;
}
.login-page-section .intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 13px;
}
.login-page-section .intl-tel-input .flag-container:hover .selected-flag {
    background-color: transparent;
}
.login-page-section .intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 44px;
    height: 100%;
    padding: 0 0 0 0px;
}
.login-page-section .intl-tel-input .selected-flag .iti-flag {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.login-page-section .iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px;
}
.login-page-section .intl-tel-input .selected-flag .arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: 26px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
}
.login-signup-field-section .resent-p {
    font-weight: 500;
    font-size: 16px;
    color: var(--theme-color-primary);
    line-height: 23.61px;
    margin-bottom: 2px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: right;
}
.login-signup-field-section .resent-link {
    color: var(--theme-color-primary-lite);
}
.digit-group {
    margin-bottom: 20px;
}
.digit-group input {
    width: 63px;
    height: 47px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-family: "Raleway", sans-serif;
    color: var(--theme-color-third);
    margin: 0 2px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e1e1e1;
    font-weight: 600;
}
.digit-group .splitter {
    padding: 0 5px;
    color: white;
    font-size: 24px;
}
.prompt {
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
}
.register-page-section {
    padding: 20px 70px !important;
}
/* login page style end */
/*********** Course list page style start *****************/
.course-list-page-section {
    margin: 40px 0px;
}
.sidebar-search {
    position: relative;
    margin-bottom: 30px;
}
.sidebar-search input {
    border: 1px solid #ebebeb;
    height: 40px;
    padding-left: 20px;
    border-radius: 3px;
    width: 100%;
    box-shadow: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.sidebar-search button {
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 13px;
    cursor: pointer;
    box-shadow: none;
}
.courses-selection {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}
.courses-selection h2 {
    color: var(--theme-color-third);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 17px;
    margin-top: 0px;
    padding-bottom: 7px;
    border-bottom: 1px solid #ebebeb;
}
.courses-selection ul {
    list-style: none;
    padding-left: 0px;
}
.courses-selection ul li {
    margin-bottom: 7px;
}
.courses-selection ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #535967 !important;
}
.courses-selection ul li a:hover {
    color: #007dff !important;
}
.courses-selection .bootstrap-select {
    width: 100% !important;
    border-radius: 5px !important;
    height: 45px !important;
}
.courses-selection .dropdown-toggle.bs-placeholder.btn-default {
    height: 43px;
    font-size: 16px;
    font-weight: 500;
    color: #535967 !important;
}
.courses-selection .text {
    font-size: 16px;
    font-weight: 500;
    color: #535967 !important;
}
.courses-selection .btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: none;
    background-color: transparent !important;
}
.site-sidebar .wrapper {
    width: 100%;
    display: inline-block;
    float: left;
    margin-bottom: 30px;
}
.filter-price {
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}
.price-title {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    background: var(--theme-color-primary-lite);
    padding: 10px;
    float: left;
}
.price-container {
    display: flex;
    border: 1px solid #ccc;
    padding: 4px 3px;
    width: auto;
    float: right;
}
.price-field {
    position: relative;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    padding-top: 15px;
    padding-left: 0px;
}
.price-field input[type="range"] {
    position: absolute;
}
.select-tag-section {
    display: inline-block;
    float: left;
    width: 100%;
}
.select-tag-section ul {
    list-style: none;
    padding-left: 0px;
    display: inline-block;
    margin-bottom: 5px;
}
.select-tag-section ul li {
    border: 1px solid #ebebeb;
    float: left;
    padding: 4px 10px;
    background-color: #f7f7f7;
    font-size: 15px;
    font-weight: 400;
    color: #625b66;
    margin-right: 10px;
}
.select-tag-section span {
    padding-right: 5px;
    color: var(--theme-color-third);
}
.courses-list-box-section {
    position: relative;
}
.book {
    width: 32px;
    height: 12px;
    position: absolute;
    top: calc(30% - 6px);
    left: calc(50% - 19px);
    display: block;
    zoom: 1.5;
}
.book .inner {
    width: 32px;
    height: 12px;
    position: relative;
    -webkit-transform-origin: 2px 2px;
    transform-origin: 2px 2px;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
    -webkit-animation: book 6.8s ease infinite;
    animation: book 6.8s ease infinite;
}
.book .inner .left,
.book .inner .right {
    width: 60px;
    height: 4px;
    top: 0;
    border-radius: 2px;
    background: var(--theme-color-primary-lite);
    position: absolute;
}
.book .inner .left:before,
.book .inner .right:before {
    content: "";
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: inherit;
    position: absolute;
    top: -10px;
    left: 6px;
}
.book .inner .left {
    right: 28px;
    -webkit-transform-origin: 58px 2px;
    transform-origin: 58px 2px;
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    -webkit-animation: left 6.8s ease infinite;
    animation: left 6.8s ease infinite;
}
.book .inner .right {
    left: 28px;
    -webkit-transform-origin: 2px 2px;
    transform-origin: 2px 2px;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
    -webkit-animation: right 6.8s ease infinite;
    animation: right 6.8s ease infinite;
}
.book .inner .middle {
    width: 32px;
    height: 12px;
    border: 4px solid var(--theme-color-primary-lite);
    border-top-color: rgb(67, 185, 126);
    border-top-style: solid;
    border-top-width: 4px;
    border-top: 0;
    border-radius: 0 0 9px 9px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
.book ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 50%;
    top: 0;
}
.book ul li {
    height: 4px;
    border-radius: 2px;
    -webkit-transform-origin: 100% 2px;
    transform-origin: 100% 2px;
    width: 48px;
    right: 0;
    top: -10px;
    position: absolute;
    background: var(--theme-color-primary-lite);
    -webkit-transform: rotateZ(0deg) translateX(-18px);
    transform: rotateZ(0deg) translateX(-18px);
    -webkit-animation-duration: 6.8s;
    animation-duration: 6.8s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.book ul li:nth-child(0) {
    -webkit-animation-name: page-0;
    animation-name: page-0;
}
.book ul li:nth-child(1) {
    -webkit-animation-name: page-1;
    animation-name: page-1;
}
.book ul li:nth-child(2) {
    -webkit-animation-name: page-2;
    animation-name: page-2;
}
.book ul li:nth-child(3) {
    -webkit-animation-name: page-3;
    animation-name: page-3;
}
.book ul li:nth-child(4) {
    -webkit-animation-name: page-4;
    animation-name: page-4;
}
.book ul li:nth-child(5) {
    -webkit-animation-name: page-5;
    animation-name: page-5;
}
.book ul li:nth-child(6) {
    -webkit-animation-name: page-6;
    animation-name: page-6;
}
.book ul li:nth-child(7) {
    -webkit-animation-name: page-7;
    animation-name: page-7;
}
.book ul li:nth-child(8) {
    -webkit-animation-name: page-8;
    animation-name: page-8;
}
.book ul li:nth-child(9) {
    -webkit-animation-name: page-9;
    animation-name: page-9;
}
.book ul li:nth-child(10) {
    -webkit-animation-name: page-10;
    animation-name: page-10;
}
.book ul li:nth-child(11) {
    -webkit-animation-name: page-11;
    animation-name: page-11;
}
.book ul li:nth-child(12) {
    -webkit-animation-name: page-12;
    animation-name: page-12;
}
.book ul li:nth-child(13) {
    -webkit-animation-name: page-13;
    animation-name: page-13;
}
.book ul li:nth-child(14) {
    -webkit-animation-name: page-14;
    animation-name: page-14;
}
.book ul li:nth-child(15) {
    -webkit-animation-name: page-15;
    animation-name: page-15;
}
.book ul li:nth-child(16) {
    -webkit-animation-name: page-16;
    animation-name: page-16;
}
.book ul li:nth-child(17) {
    -webkit-animation-name: page-17;
    animation-name: page-17;
}
.book ul li:nth-child(18) {
    -webkit-animation-name: page-18;
    animation-name: page-18;
}
@-webkit-keyframes page-0 {
    4% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    13%,
    54% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    63% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-0 {
    4% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    13%,
    54% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    63% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-1 {
    5.86% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    14.74%,
    55.86% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    64.74% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-1 {
    5.86% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    14.74%,
    55.86% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    64.74% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-2 {
    7.72% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    16.48%,
    57.72% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    66.48% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-2 {
    7.72% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    16.48%,
    57.72% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    66.48% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-3 {
    9.58% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    18.22%,
    59.58% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    68.22% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-3 {
    9.58% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    18.22%,
    59.58% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    68.22% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-4 {
    11.44% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    19.96%,
    61.44% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    69.96% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-4 {
    11.44% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    19.96%,
    61.44% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    69.96% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-5 {
    13.3% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    21.7%,
    63.3% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    71.7% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-5 {
    13.3% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    21.7%,
    63.3% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    71.7% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-6 {
    15.16% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    23.44%,
    65.16% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    73.44% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-6 {
    15.16% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    23.44%,
    65.16% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    73.44% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-7 {
    17.02% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    25.18%,
    67.02% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    75.18% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-7 {
    17.02% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    25.18%,
    67.02% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    75.18% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-8 {
    18.88% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    26.92%,
    68.88% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    76.92% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-8 {
    18.88% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    26.92%,
    68.88% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    76.92% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-9 {
    20.74% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    28.66%,
    70.74% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    78.66% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-9 {
    20.74% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    28.66%,
    70.74% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    78.66% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-10 {
    22.6% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    30.4%,
    72.6% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    80.4% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-10 {
    22.6% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    30.4%,
    72.6% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    80.4% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-11 {
    24.46% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    32.14%,
    74.46% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    82.14% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-11 {
    24.46% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    32.14%,
    74.46% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    82.14% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-12 {
    26.32% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    33.88%,
    76.32% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    83.88% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-12 {
    26.32% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    33.88%,
    76.32% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    83.88% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-13 {
    28.18% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    35.62%,
    78.18% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    85.62% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-13 {
    28.18% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    35.62%,
    78.18% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    85.62% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-14 {
    30.04% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    37.36%,
    80.04% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    87.36% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-14 {
    30.04% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    37.36%,
    80.04% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    87.36% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-15 {
    31.9% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    39.1%,
    81.9% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    89.1% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-15 {
    31.9% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    39.1%,
    81.9% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    89.1% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-16 {
    33.76% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    40.84%,
    83.76% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    90.84% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-16 {
    33.76% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    40.84%,
    83.76% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    90.84% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-17 {
    35.62% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    42.58%,
    85.62% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    92.58% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-17 {
    35.62% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    42.58%,
    85.62% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    92.58% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes page-18 {
    37.48% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    44.32%,
    87.48% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    94.32% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@keyframes page-18 {
    37.48% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
    44.32%,
    87.48% {
        -webkit-transform: rotateZ(180deg) translateX(-18px);
        transform: rotateZ(180deg) translateX(-18px);
    }
    94.32% {
        -webkit-transform: rotateZ(0deg) translateX(-18px);
        transform: rotateZ(0deg) translateX(-18px);
    }
}
@-webkit-keyframes left {
    4% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    10%,
    40% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    46%,
    54% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    60%,
    90% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    96% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
}
@keyframes left {
    4% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    10%,
    40% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    46%,
    54% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    60%,
    90% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    96% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
}
@-webkit-keyframes right {
    4% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
    10%,
    40% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    46%,
    54% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
    60%,
    90% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    96% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
}
@keyframes right {
    4% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
    10%,
    40% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    46%,
    54% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
    60%,
    90% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    96% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
}
@-webkit-keyframes book {
    4% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
    10%,
    40% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transform-origin: 2px 2px;
        transform-origin: 2px 2px;
    }
    40.01%,
    59.99% {
        -webkit-transform-origin: 30px 2px;
        transform-origin: 30px 2px;
    }
    46%,
    54% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    60%,
    90% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transform-origin: 2px 2px;
        transform-origin: 2px 2px;
    }
    96% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
}
@keyframes book {
    4% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
    10%,
    40% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transform-origin: 2px 2px;
        transform-origin: 2px 2px;
    }
    40.01%,
    59.99% {
        -webkit-transform-origin: 30px 2px;
        transform-origin: 30px 2px;
    }
    46%,
    54% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    60%,
    90% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transform-origin: 2px 2px;
        transform-origin: 2px 2px;
    }
    96% {
        -webkit-transform: rotateZ(-90deg);
        transform: rotateZ(-90deg);
    }
}
html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
* {
    box-sizing: inherit;
}
*:before,
*:after {
    box-sizing: inherit;
}
#loader {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    right: 0px;
    display: inline-block;
    bottom: 0px;
}
/* Reset style for input range */
.price-field input[type="range"] {
    width: 100%;
    height: 13px;
    border: transparent;
    outline: 0;
    box-sizing: border-box;
    border-radius: 10px;
    pointer-events: none;
    -webkit-appearance: none;
}
.price-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
}
.price-field input[type="range"]:active,
.price-field input[type="range"]:focus {
    outline: 0;
}
.price-field input[type="range"]::-ms-track {
    width: 188px;
    height: 2px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    pointer-events: none;
    background: transparent;
    border-color: transparent;
    color: red;
    border-radius: 10px;
}
/* Style toddler input range */
.price-field input[type="range"]::-webkit-slider-thumb {
    /* WebKit/Blink */
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -4px;
    background-color: #cfcfcf;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}
.price-field input[type="range"]::-moz-range-thumb {
    /* Firefox */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    margin-top: -5px;
    background-color: var(--theme-color-third);
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}
.price-field input[type="range"]::-ms-thumb {
    /* IE */
    position: relative;
    appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    background-color: #cfcfcf;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}
/* Style track input range */
.price-field input[type="range"]::-webkit-slider-runnable-track {
    /* WebKit/Blink */
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #cfcfcf;
    border-radius: 5px;
}
.price-field input[type="range"]::-moz-range-track {
    /* Firefox */
    width: 250px;
    height: 2px;
    cursor: pointer;
    background: #cfcfcf;
    border-radius: 5px;
}
.price-field input[type="range"]::-ms-track {
    /* IE */
    width: 250px;
    height: 2px;
    cursor: pointer;
    background: #cfcfcf;
    border-radius: 5px;
}
/* Style for input value block */
.price-wrap {
    display: inline-block;
    color: #c42427;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    float: left;
    width: 100%;
}
.price-wrap-1,
.price-wrap-2 {
    display: flex;
    margin-left: 0px;
}
.price-title {
    margin-right: 5px;
}
.price-wrap_line {
    margin: 6px 0px 5px 5px;
}
.price-wrap #one,
.price-wrap #two {
    width: 30px;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-right: 2px;
    background: 0;
    border: 0;
    outline: 0;
    color: #c42427;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
}
.price-wrap label {
    text-align: right;
    margin-top: 6px;
    padding-left: 5px;
}
/* Style for active state input */
.price-field input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #c42427;
    transition-duration: 0.3s;
}
.price-field input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #c42427;
    transition-duration: 0.3s;
}
/*********** Course list page style end *****************/
/* course detail page style start */
.course-detsil-page-section {
    padding: 50px 0px 90px 0px;
    background-image: url("../img/inner-banner-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.course-detail-bread-crumbs {
    display: inline-block;
    float: left !important;
    width: auto;
    padding: 0px !important;
}
.course-detail-bread-crumbs .breadcrumb > li {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.course-detail-bread-crumbs .breadcrumb {
    padding: 0px;
    margin-bottom: 10px;
}
.course-detail-bread-crumbs .breadcrumb > .active {
    color: #fff;
}
.offered {
    background-color: #fff;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 6px;
    margin-top: 6px;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
}
.offered img {
    width: 200px;
    padding: 10px 15px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.offered img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.offered h4 {
    margin-bottom: 4px;
    margin-top: 0px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--theme-color-primary);
    padding: 7px 9px;
}
.course-detail-banner-section h1 {
    color: #fff;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 11px;
    font-family: "Kumbh Sans", sans-serif;
}
.course-detail-banner-section .rating {
    color: var(--theme-color-third);
    font-size: 16px;
    margin-bottom: 9px;
}
.course-detail-banner-section .rating i {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    margin-left: 5px;
}
.course-detail-banner-section .rating strong {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
}
.course-detail-banner-section h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-top: 9px;
    margin-bottom: 10px;
    display: inline-block;
}
.course-detail-banner-section h2 span {
    color: var(--theme-color-primary-lite);
    padding: 7px 10px;
    border-radius: 1px;
}
.course-detail-banner-section h3 {
    font-size: 18px;
    margin-bottom: 0px;
    color: #fff;
    margin-top: 15px;
}
.course_price_wrapper {
    width: 100%;
    display: inline-block;
    margin-top: 110px;
    float: right;
    text-align: right;
}
.course_price_wrapper h2 {
    font-size: 47px;
    font-weight: 600;
    margin-top: 9px;
    margin-bottom: 10px;
    display: inline-block;
    color: #fff;
    line-height: 23px;
}
.course_price_wrapper h2 span {
    color: var(--theme-color-third);
    background-color: transparent;
    font-size: 16px;
    float: right;
    text-align: right;
    box-shadow: none;
    margin-top: 9px;
}
.course_price_wrapper h2 .disc-amount {
    font-size: 45px;
    margin-top: 16px;
    text-decoration: line-through;
    color: #012d7c;
}
.course_price_wrapper .enroll-btn {
    padding: 17px 56px;
    border-radius: 5px;
    height: max-content;
    transition: 0.3s all ease-in-out;
    background-color: var(--theme-color-button);
    border: 2px solid var(--theme-color-button);
    color: var(--theme-color-button-text) !important;
    font-size: 20px;
    line-height: 1em;
    text-align: center;
    font-weight: 700;
}
.course_price_wrapper .enroll-btn:hover {
    background-color: var(--theme-color-button-hover-second);
    border: 2px solid var(--theme-color-button-hover-second);
}
.course_price_wrapper .course-add-cart {
    padding: 17px 56px;
    border-radius: 5px;
    height: max-content;
    transition: 0.3s all ease-in-out;
    background-color: #fff;
    border: 2px solid #fff;
    color: var(--theme-color-third) !important;
    font-size: 20px;
    line-height: 1em;
    text-align: center;
    font-weight: 700;
    margin-top: 15px !important;
}
.course_price_wrapper .course-add-cart:hover {
    background-color: var(--theme-color-secondary);
    border: 2px solid var(--theme-color-secondary);
    color: #000 !important;
}
.outer-section {
    background: #ebf1f8;
    padding: 0px 0px 15px 0px;
    border-bottom: 2px solid #fff;
}
.course-details-tump-strip-section {
    background-color: #fff;
    padding: 20px 20px;
    margin-top: -40px;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
    margin-bottom: 30px;
    background-image: url("../img/pattern-9.png");
}
.feature-left .feature-icon {
    color: #4cbec5;
    display: inline-block;
    float: left;
    padding-right: 15px;
    padding-top: 0px;
}
.feature-left {
    border-right: 1px solid #cacacc;
}
.feature-left-last-ch {
    border-right: none;
}
.feature-left .feature-icon img {
    width: 45px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(
        to right top,
        #262f8a,
        #0057aa,
        #0078b1,
        #0095a6,
        #01af96
    );
}
.feature-left .feature-content {
    font-size: 20px;
}
.feature-content h2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-color-third);
    margin-top: 0px;
    margin-bottom: 2px;
    font-family: "Kumbh Sans", sans-serif;
}
.feature-content p {
    font-weight: 500;
    font-size: 16px;
    color: #222222;
    line-height: 23.61px;
    margin-bottom: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.toll-free {
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    max-height: 160px;
    top: 0;
    background: #fff;
    padding: 15px 15px 22px 15px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.toll-free p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #535967;
}
.toll-free h2 {
    font-size: 27px;
    letter-spacing: 1px;
    color: var(--theme-color-third);
    margin: 1px 0;
    font-weight: 700;
}
/* .toll-free h2::after {
    content: "";
    width: 32px;
    height: 32px;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("../img/email_icn.png");
} */
.toll-free h2::after {
    content: "";
    width: 32px;
    height: 32px;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("../img/email-icon.png");
    background-position: center;
    background-repeat: no-repeat;
}

.institute-icon {
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    max-height: 160px;
    top: 0;
    background: #fff;
    padding: 15px 15px 22px 15px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.institute-icon p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #535967;
}
.institute-icon h2 {
    font-size: 27px;
    letter-spacing: 1px;
    color: var(--theme-color-third);
    margin: 1px 0;
    font-weight: 700;
}
.institute-icon h2::after {
    content: "";
    width: 32px;
    height: 32px;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("../img/bank.png");
}
.navigation {
    width: 100%;
    padding: 0;
    /* display: table; */
    text-align: center;
    box-shadow: 0 3px 8px 0 rgba(50, 50, 50, 0.2);
    margin-bottom: 30px;
    display: flex;
}
.navigation ul {
    width: 100%;
    display: flex;
}
.navigation li {
    float: left;
    /* display: table-cell; */
    width: 100%;
    list-style: none;
}
.navigation li a {
    display: block;
    color: #fff;
    padding: 20px;
    background: var(--theme-color-primary);
    font-size: 18px;
    border-left: 1px solid var(--theme-color-third);
    font-family: "Kumbh Sans", sans-serif;
    text-decoration: none;
}
.navigation li a:hover {
    background: var(--theme-color-button);
}
.navheader {
    font-size: 12px;
}
.slide-trigger {
    display: none; /* need this */
    border: 1px solid #cccccc;
    cursor: pointer;
    margin-left: 15px;
    margin-right: 15px;
}
.slide-trigger span {
    background-image: url("/a/i/dropdown-arrows.png");
    background-position: 0 -14px;
    display: block;
    float: right;
    margin-top: 3px;
    height: 14px;
    width: 32px;
}
@media only screen and (max-width: 560px) {
    .slide-trigger {
        display: block;
    }
    .no-js .slide-trigger {
        display: none;
    }
    .navigation {
        display: none;
    }
    .no-js .navigation {
        display: block;
    }
    .navigation {
        margin: 0 15px;
        display: block;
    }
    .navigation ul {
        display: block;
    }
    .navigation li {
        float: none;
        display: block;
        width: 90%;
    }
    .navigation li a {
        border-bottom: 1px solid #fff;
    }
}
.dtl-section-box {
    background-color: #fff;
    padding: 30px 30px;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
    margin-bottom: 30px;
    border-bottom: 1px solid #dde6ed;
}
.dtl-section-box h2 {
    color: var(--theme-color-heading-third);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.dtl-section-box h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 15px;
    margin-bottom: 27px;
    text-align: left;
    color: var(--theme-color-heading-third);
    margin-top: 15px;
}
.dtl-section-box p {
    font-size: 18px;
    line-height: 1.4em;
    color: #535967;
    width: 100%;
    margin-bottom: 17px;
    font-weight: 400;
    text-align: justify;
}
.overview-sec .list-item {
    font-size: 18px;
    line-height: 1.4em;
    color: #535967;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 44px;
    position: relative;
}
.overview-sec .list-item::after {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: url("../img/check-tick.png");
    content: "";
    position: absolute;
    top: 0px;
    left: 5px;
}
.box-content {
    background: #fff;
    transition-duration: 0.4s;
    border: 1px dashed var(--theme-color-primary);
    box-shadow: 8px 10px 30px 0px rgba(113, 111, 111, 0.09);
    padding: 15px 15px;
    margin-bottom: 20px;
}
.point-item {
    font-size: 18px;
    line-height: 1.4em;
    color: #535967;
    width: 100%;
    margin-bottom: 11px;
    padding-left: 44px;
    position: relative;
}
.point-item::after {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: url("../img/check-round.png");
    content: "";
    position: absolute;
    top: 0px;
    left: 5px;
}
.certificate-img {
    margin-bottom: 15px;
    display: inline-block;
    float: left;
    padding: 15px 15px;
    background-color: var(--theme-color-primary);
}
.promo-video-section {
    background-color: #fff;
    padding: 15px 15px 15px 15px;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
    margin-bottom: 22px;
    border-bottom: 1px solid #dde6ed;
}
.promo-video-section h2 {
    color: var(--theme-color-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 16px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.promo-video-box {
    position: relative;
}
.promo-video-section .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 15px;
    height: 12px;
    background: var(--theme-color-primary);
    border-radius: 50%;
    padding: 9px 24px 18px 28px;
    z-index: 1;
}
.promo-video-section .video-play-button::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 75px;
    height: 75px;
    background: var(--theme-color-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}
.promo-video-section .video-play-button::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: var(--theme-color-third);
    border-radius: 50%;
    transition: all 200ms;
    border: solid 4px #fff;
}
.promo-video-section .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 12px solid transparent;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
.download-brochure-btn {
    background-color: var(--theme-color-primary);
    padding: 13px 15px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Kumbh Sans", sans-serif;
    color: #fff;
}
.download-brochure-btn .fa {
    padding: 15px 15px;
    background-color: #fff;
    border-radius: 42px;
    font-size: 30px;
    margin-right: 21px;
    color: var(--theme-color-third);
}
.download-brochure-btn:hover {
    background-color: var(--theme-color-third);
    color: #fff !important;
}
.ad-post {
    background-color: #fff;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
    margin-bottom: 22px;
    border-bottom: 1px solid #dde6ed;
}
.leadform {
    background-color: #fff;
    padding: 15px 30px 30px 30px;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
    margin-bottom: 22px;
    border-bottom: 1px solid #dde6ed;
}
.leadform h3 {
    color: var(--theme-color-primary);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 16px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.leadform .form-control {
    border-left: 0px;
    border-top: 0px;
    border-radius: 0px;
    border-right: 0px;
    box-shadow: none;
    padding-left: 0px;
    padding-top: 2px;
}
.leadform .form-group {
    margin-bottom: 18px;
}
.leadform .btn-default {
    border: 1px solid #720B3D;
    padding: 11px 41px !important;
    margin-top: 20px !important;
    background-color: var(--theme-color-primary);
    color: #fff !important;
    border-radius: 2px;
    text-align: center;
    font-size: 16px;
    transition-duration: 0.4s;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Kumbh Sans", sans-serif;
}
.leadform .btn-default:hover {
    border: 1px solid var(--theme-color-third);
    padding: 11px 41px !important;
    margin-top: 20px !important;
    background-color: var(--theme-color-third);
    color: #fff !important;
    transition-duration: 0.4s;
}
.detail-page-upcoming h2 {
    color: var(--theme-color-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 16px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.detail-page-video .modal-body {
    position: relative;
    padding: 0px;
    border: 6px solid #fff;
}
.detail-page-video .modal-header {
    border-bottom: none;
}
.detail-page-video .modal-content {
    border-radius: 0px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.detail-page-video .modal-title {
    color: var(--theme-color-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 16px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.detail-page-video .modal-header .close {
    padding: 0px;
    border-bottom: none;
}
.detail-page-video .modal-header .close {
    margin-top: 3px;
    color: #fff;
    border: 3px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    background-color: var(--theme-color-primary-lite);
    margin-bottom: -9px;
    position: absolute;
    z-index: 999;
    right: -9px;
    top: -17px;
    opacity: 1;
    font-weight: 400;
}
.instructors {
    background-color: #fff;
    padding: 15px 20px 20px 20px;
    box-shadow: 0px 5px 10px 0px rgba(96, 96, 96, 0.09);
    margin-bottom: 22px;
    border-bottom: 1px solid #dde6ed;
}
.instructors h2 {
    color: var(--theme-color-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 16px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.our-team-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.our-team-section:before {
    position: absolute;
    top: -0;
    left: 0;
    content: " ";
    background: url(img/service-section-bottom.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}
.our-team {
    padding: 0 0 20px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--theme-color-primary);
}
.our-team:hover {
    border-bottom: 3px solid var(--theme-color-primary-lite);
}
.our-team .pic {
    display: inline-block;
    width: 130px;
    height: 130px;
    z-index: 1;
    position: relative;
}
.our-team .pic:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #00325a;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 1;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic:before {
    height: 100%;
    background: #2f2f2f;
}
.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff00;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic::after {
    background: var(--theme-color-primary-lite);
}
.our-team .pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
    position: relative;
    z-index: 2;
}
.our-team:hover .pic img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}
.our-team .team-content {
    margin-bottom: 10px;
}
.our-team .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color-primary);
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 5px;
    margin-top: 0px;
}
.our-team .post {
    display: block;
    font-size: 15px;
    color: var(--theme-color-heading-third);
    text-transform: capitalize;
}
/* course detail page style start */
/************** contact page style start **************/
.contact-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 11px;
    color: #535967;
}
.contact-section .form-c {
    position: relative;
    border-radius: 3px;
    border: solid 1px #ccc;
    clear: both;
    will-change: margin-bottom;
    margin-bottom: 9px;
    transition: margin-bottom 0.15s ease;
}
.contact-section .form-control input,
.contact-section .form-control select,
.contact-section .form-control textarea {
    width: 100%;
    padding: 20px 10px 20px 46px !important;
    color: #4d4d4d;
    font-size: 1rem;
    transition: top 0.2s ease, font-size 0.2s ease, padding 0.2s ease;
    border: none;
    border-radius: 2px;
    outline: 0;
}
.contact_container {
    background: #fff;
    padding: 30px 0px 50px 0px;
}
.contact_container h1 {
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #2c2c2c;
    letter-spacing: 0.05em;
}
.contact_container .get_in_touch {
    border-top: 1px solid #45433c;
    border-bottom: 1px solid #9a9273;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
    color: #2c2c2c;
}
.contact_container h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.contact_container .form-group {
    margin-bottom: 21px;
    position: relative;
}
.contact_container .form-control {
    border-radius: 0;
    border: solid 1px #ccc;
    background: none;
    height: 41px;
}
.contact_container textarea.form-control {
    height: 130px;
    resize: none;
}
.contact_container textarea.adres {
    height: 114px;
}
.contact_container .input-group-addon {
    line-height: 6;
    background-color: transparent;
    border: none;
}
.contact_container input.form-control {
    transition: top 0.2s ease, font-size 0.2s ease, padding 0.2s ease;
}
.contact_container select.form-control {
    padding-left: 15px;
    font-size: 16px;
    color: var(--theme-color-dark);
    font-weight: 400;
    background-color: var(--theme-color-white);
}
.contact_container .btn-submit {
    width: 100%;
}
.contact_container .form-control::-moz-placeholder {
    color: #2c2c2c;
    opacity: 1;
}
.contact_container .form-control:-ms-input-placeholder {
    color: #2c2c2c;
}
.contact_container .form-control::-webkit-input-placeholder {
    color: #2c2c2c;
}
.contact_address {
    background: url(../img/address_icn.png);
    margin-top: 35px;
}
.contact_phone {
    background: url(../img/phone_icn.png);
}
.contact_email {
    background: url(../img/email_icn.png);
}
.contact_blocks {
    padding-left: 37px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    padding-top: 5px;
    margin-bottom: 25px;
}
.contact_blocks h3 {
    color: #161f23;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 5px;
}
.contact_blocks ul.social {
    padding-top: 45px;
}
.contact_blocks ul.social li a {
    width: 50px;
    height: 50px;
    color: #fff;
    padding: 5px !important;
    font-size: 22px;
    background: #16a085 !important;
    line-height: 40px;
}
.contact_blocks ul.social li a:hover {
    font-size: 20px;
    transition: all 0.5s ease;
}
.contact_blocks p,
.contact_blocks a {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #535967;
}
.contact_container label {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
    color: #535967;
}
.map_container {
    width: 100%;
    float: left;
}
.map_container iframe {
    float: left;
    width: 100%;
    height: 484px;
}
.padleft45 {
    padding-left: 45px;
}
.btn-submit {
    border: 1px solid var(--theme-color-button);
    padding: 11px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 19px !important;
    font-weight: 700;
    color: #ffffff !important;
    float: right;
    width: 100%;
    text-transform: uppercase;
    margin-top: 10px;
    background-color: var(--theme-color-button);
}
.btn-submit:hover {
    border: 1px solid var(--theme-color-button-hover);
    color: #fff !important;
    background-color: var(--theme-color-button-hover);
}
/************** contact page style end **************/
/* open modal style start */
.loading-popup .modal-body {
    position: relative;
    padding: 0px;
    border: 6px solid #fff;
}
.loading-popup .modal-content {
    position: relative;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-radius: 6px;
    outline: 0;
    box-shadow: none;
}
.loading-popup .modal-header {
    padding: 0px;
    border-bottom: none;
}
.loading-popup .modal-header .close {
    margin-top: 3px;
    color: #fff;
    border: 3px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    background-color: var(--theme-color-primary-lite);
    margin-bottom: -9px;
    position: absolute;
    z-index: 999;
    right: -9px;
    top: -17px;
    opacity: 1;
    font-weight: 400;
}
.loading-popup .modal-dialog {
    width: 600px;
    margin: 110px auto;
}
/* open modal style end */
/* faq page style start */
.faq-page-section {
    margin: 10px 0px 40px 0px;
}
.faq-page-section h1 {
    color: var(--theme-color-primary);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Kumbh Sans", sans-serif;
    margin-top: 25px;
}
.faq-page-section main {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 30px;
    width: 100%;
    background-color: #fff;
    margin-top: 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.faq-page-section .topic {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: solid 1px #ebebeb;
}
.faq-page-section .open {
    cursor: pointer;
    display: block;
    padding: 0px;
}
.faq-page-section .open:hover {
    opacity: 0.7;
}
.faq-page-section .expanded {
    background-color: #f5f5f5;
    transition: all 0.3s ease-in-out;
}
.faq-page-section .question {
    color: var(--theme-color-third);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
    padding-top: 30px;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
    line-height: 22px;
}
.faq-page-section .answer {
    font-size: 17px;
    line-height: 26px;
    display: none;
    margin-bottom: 30px;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    color: #535967;
}
.faq-page-section .faq-t {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    float: right;
    position: relative;
    top: -55px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: transparent;
    border-left: 2px solid var(--theme-color-third);
    border-bottom: 2px solid var(--theme-color-third);
    transition: all 0.3s ease-in-out;
}
.faq-page-section .faq-o {
    top: -50px;
    -moz-transform: rotate(-224deg);
    -ms-transform: rotate(-224deg);
    -webkit-transform: rotate(-224deg);
    transform: rotate(-224deg);
    border-left: 2px solid var(--theme-color-primary-lite);
    border-bottom: 2px solid var(--theme-color-primary-lite);
}
@media only screen and (max-width: 480px) {
    .faq-t {
        display: none;
    }
    .faq-page-section .question {
        padding-right: 0px;
    }
    .faq-page-section main {
        padding: 10px;
    }
    .faq-page-section .answer {
        margin-bottom: 30px;
        padding-left: 0px;
        padding-right: 0px;
    }
}
/* faq page style end */
/* cart page style start */
.cart-page-section {
    background: #fff;
    padding: 30px 0px 50px 0px;
}
.cart-form-section h1 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.cart-form-section input.form-control {
    transition: top 0.2s ease, font-size 0.2s ease, padding 0.2s ease;
}
.cart-form-section label {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
    color: #535967;
}
.cart-form-section .form-control {
    border-radius: 0;
    border: solid 1px #ccc;
    background: none;
    height: 41px;
}
.cart-listing-section h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
.main-heading {
    font-size: 19px;
    margin-bottom: 20px;
}
.table-cart table {
    width: 100%;
}
.table-cart thead {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 5px;
}
.table-cart thead tr th {
    padding: 8px 0 0px;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
    color: #535967;
}
.table-cart tr td {
    padding: 20px 0 27px;
    vertical-align: middle;
}
.table-cart tr td:nth-child(1) {
    width: 55%;
}
.table-cart tr td:nth-child(2) {
    width: 32%;
}
.total {
    color: #dd3434 !important;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
}
.table-cart tr td:nth-child(3) {
    width: 30%;
}
.dlt {
    display: inline-block;
    float: left;
    background-color: #dd3434;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}
.dlt .fa {
    font-size: 19px;
    color: #fff;
}
.table-cart .box-cart {
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    box-shadow: 0px 0px 15px rgba(127, 127, 127, 0.1);
}
.table-cart tr td:nth-child(4) {
    width: 8.667%;
    text-align: right;
}
.table-cart tr td .img-product {
    width: 72px;
    float: left;
    margin-left: 8px;
    margin-right: 31px;
    line-height: 63px;
}
.table-cart tr td .img-product img {
    width: 100%;
}
.table-cart tr td .name-product {
    font-size: 17px;
    color: #720B3D;
    line-height: 24px;
    width: auto;
    font-weight: 600;
}
.table-cart tr td .name-product p {
    color: var(--theme-color-primary-lite) !important;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
    text-align: left;
}
.table-cart tr td .price {
    text-align: right;
    line-height: 64px;
    margin-right: 40px;
    color: #989898;
    font-size: 16px;
    font-family: "Nunito";
}
.table-cart tr td .quanlity {
    position: relative;
}
.product-count .qtyminus,
.product-count .qtyplus {
    width: 34px;
    height: 34px;
    background: transparent;
    text-align: center;
    font-size: 19px;
    line-height: 34px;
    color: #000;
    cursor: pointer;
    font-weight: 600;
}
.product-count .qtyminus {
    line-height: 32px;
}
.product-count .qtyminus {
    border-radius: 3px 0 0 3px;
}
.product-count .qtyplus {
    border-radius: 0 3px 3px 0;
}
.product-count .qty {
    width: 60px;
    text-align: center;
    border: none;
}
.count-inlineflex {
    display: inline-flex;
    border: solid 2px #ccc;
    border-radius: 20px;
}
.cart-total-box {
    box-shadow: 0px 3px 6px #a4bbe829;
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.cart-total-box th {
    font-size: 16px;
    color: var(--theme-color-primary);
}
.cart-total-box .gp-tal {
    color: #dd3434 !important;
    font-size: 19px;
    vertical-align: baseline;
}
.cart-total-box .table-bordered {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.cart-total-box .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 1px solid #ddd;
}
.cart-back-btn {
    padding: 7px 20px !important;
    margin-top: 6px !important;
    background-color: var(--theme-color-primary);
    color: #fff !important;
    font-size: 17px;
}
.cart-back-btn:hover {
    padding: 7px 20px !important;
    margin-top: 6px !important;
    background-color: var(--theme-color-primary-lite);
    color: #fff !important;
    font-size: 17px;
}
.cart-checkout-btn {
    padding: 7px 20px !important;
    margin-top: 6px !important;
    background-color: #dd3434;
    color: #fff !important;
    font-size: 17px;
    float: right;
}
.cart-checkout-btn:hover {
    padding: 7px 20px !important;
    margin-top: 6px !important;
    background-color: var(--theme-color-primary-lite);
    color: #fff !important;
    font-size: 17px;
    float: right;
}
/* cart page style end */
/* resetpassword page style start */
.resetpassword-page label {
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
    color: #535967;
}
/* resetpassword page style start */
/* my-orders-page  style start */
.my-orders-page {
    margin: 40px 0px;
    display: inline-block;
    float: left;
    width: 100%;
    background-image: url("../img/pattern-9.png");
}
.my-orders-page h1 {
    font-weight: 600;
    font-size: 23px;
    line-height: 15px;
    margin-bottom: 23px;
    color: var(--theme-color-third);
    margin-top: 0px;
}
.my-orders-page .transaction-sec .table .thead-dark th {
    color: #fff;
    background-color: var(--theme-color-primary);
    border-color: var(--theme-color-primary);
    font-size: 16px;
    font-weight: 600;
}
.my-orders-page .transaction-sec .btn-outline-primary {
    color: #fff;
    background-color: var(--theme-color-primary);
    background-image: none;
    border-color: var(--theme-color-primary);
    cursor: pointer;
    font-size: 15px;
}
.my-orders-page .transaction-sec .btn-outline-primary:hover {
    color: #fff;
    background-color: var(--theme-color-third);
    background-image: none;
    border-color: var(--theme-color-third);
    cursor: pointer;
    font-size: 15px;
}
.my-orders-page th {
    font-size: 16px !important;
    font-weight: 600 !important;
}
.my-orders-page td {
    font-size: 16px !important;
    font-weight: 600 !important;
}
.my-orders-page .bg-white {
    background-color: #fff !important;
    padding: 25px 20px;
    border: 1px dashed #ddd;
}
/* my-orders-page style start */
/* choose-account-page-section style start */
.choose-account-page-section .login-signup-field-section {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 20px 96px;
}
.choose-account-page-section .wrap {
    display: flex;
    background: white;
    padding: 8px 10px;
    border-radius: 0.5rem;
    box-shadow: 7px 7px 30px -5px rgba(161, 150, 150, 0.1);
    margin-bottom: 1rem;
    border: 1px dashed #ddd;
    transition-duration: 0.4s;
}
.choose-account-page-section .wrap:hover {
    color: white;
    background-image: url("../img/login-img.jpg");
    background-color: #c6f6d5;
    transition-duration: 0.4s;
}
.choose-account-page-section .wrap:hover h2 {
    color: white;
}
.choose-account-page-section .text-wrap p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 0px;
    float: left;
    color: var(--theme-color-primary);
}
.choose-account-page-section .ico-wrap {
    margin-right: 15px;
}
.choose-account-page-section .mbr-iconfont {
    font-size: 4.5rem !important;
    color: #313131;
    margin: 1rem;
    padding-right: 1rem;
}
.choose-account-page-section .vcenter {
    margin: 0px;
}
.choose-account-page-section .mbr-section-title3 {
    text-align: left;
    font-weight: 600;
    line-height: 20px;
    margin-top: 21px;
    color: var(--theme-color-third);
    font-size: 20px;
    margin-bottom: 5px;
    letter-spacing: 0;
}
.choose-account-page-section .avatar {
    margin-right: 10px;
}
.choose-account-page-section .ico-wrap img {
    border-radius: 50%;
    border: 4px solid rgb(247, 249, 251);
    width: 80px;
}
/* choose-account-page-section style end */
/* my-profile-page style start*/
.my-profile-page {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 20px 0px;
}
/* Tabs panel */
.tabbable-panel {
    margin-bottom: 50px;
    display: inline-block;
    float: left;
    width: 100%;
}
/* Default mode */
.tabbable-line > .nav-tabs {
    border: none;
    margin: 0px;
}
.tabbable-line > .nav-tabs > li {
    margin-right: 15px;
}
.tabbable-line > .nav-tabs > li > a {
    border: 0;
    margin-right: 0;
    color: #202020;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
    margin-top: 0px;
    padding: 15px 0px;
}
.tabbable-line > .nav-tabs > li > a > i {
    color: #a6a6a6;
}
.tabbable-line > .nav-tabs > li.open,
.tabbable-line > .nav-tabs > li:hover {
    border-bottom: 4px solid #c6f6d5;
}
.tabbable-line > .nav-tabs > li.open > a,
.tabbable-line > .nav-tabs > li:hover > a {
    border: 0;
    background: none !important;
    color: #333333;
}
.tabbable-line > .nav-tabs > li.open > a > i,
.tabbable-line > .nav-tabs > li:hover > a > i {
    color: #a6a6a6;
}
.tabbable-line > .nav-tabs > li.open .dropdown-menu,
.tabbable-line > .nav-tabs > li:hover .dropdown-menu {
    margin-top: 0px;
}
.tabbable-line > .nav-tabs > li.active {
    border-bottom: 4px solid var(--theme-color-primary);
    position: relative;
}
.tabbable-line > .nav-tabs > li.active > a {
    border: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
    color: var(--theme-color-primary);
    margin-top: 0px;
    padding: 15px 0px;
}
.tabbable-line > .nav-tabs > li.active > a > i {
    color: #404040;
}
.tabbable-line > .tab-content {
    margin-top: -3px;
    background-color: transparent;
    border: 0;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
    border-top: 1px solid #eee;
    padding: 15px 0;
}
.portlet .tabbable-line > .tab-content {
    padding-bottom: 0;
}
.reset-password-section {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 20px 40px 20px 0px;
}
.upload-image-box {
    margin-bottom: 30px;
}
.upload-profile-img {
    width: 134px;
    height: 134px;
    background-color: #ededed;
    border-radius: 50%;
    border: 2px solid #f4f4f4;
    text-align: center;
    line-height: 122px;
    overflow: hidden;
}
.input-container {
    max-width: 400px;
    background-color: #ededed;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    margin-top: 45px;
}
input[type="file"] {
    display: none;
}
.file-info {
    font-size: 15px;
    padding: 10px 15px;
}
.browse-btn {
    background: var(--theme-color-primary-lite);
    color: #fff;
    min-height: 35px;
    padding: 10px 20px;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}
.browse-btn:hover {
    background: #4ec0b4;
}
@media (max-width: 300px) {
    button {
        width: 100%;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0;
    }
    .file-info {
        display: block;
        margin: 10px 5px;
    }
}
/* my-profile-page style end */
/* institution page style start */
.institution-detail-page-section {
    padding: 100px 0px 90px 0px;
    background-image: url("../img/institution-page-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.institutions-contact-box {
    background-color: #fff;
    padding: 30px 25px 7px 25px;
    margin-bottom: 30px;
    background-image: url("../img/pattern-9.png");
}
.institutions-contact-box h3 {
    color: var(--theme-color-primary);;
    font-size: 21px;
    margin-top: 0px;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
}
.institutions-contact-box .contact_blocks {
    margin-bottom: 20px;
    margin-top: 20px;
}
.contact_blocks {
    padding-left: 37px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    padding-top: 0px;
    margin-bottom: 25px;
}
.institutions-contact-box .contact_blocks h3 {
    font-size: 19px;
    font-weight: 600;
    text-shadow: none;
    margin-top: 0px;
    margin-bottom: 10px;
    color: var(--theme-color-primary-lite);
}
.institutions-contact-box .contact_blocks p {
    color: var(--theme-color-primary);var(--theme-color-primary);
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 8px;
    line-height: 22px;
}
.institutions-contact-box .contact_blocks a {
    color: var(--theme-color-primary);
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 8px;
    line-height: 22px;
}
.institute-course-list {
    background-image: url("../img/pattern-9.png");
    padding: 40px 0px;
}
.institute-course-list h2 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 8px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.institute-course-list p {
    font-weight: 600;
    font-size: 22px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
.head-text-box {
    display: inline-block;
    float: left;
    width: 100%;
    border: 1px dashed #ddd;
    box-shadow: 2px 8px 20px 0px rgba(87, 87, 87, 0.08);
    background-color: #fff;
    margin-bottom: 25px;
    padding: 15px 15px;
}
.head-text-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-color-primary) !important;
    margin: 0px;
    font-family: "Kumbh Sans", sans-serif;
}
/* institution page style end */
/* cart-completed-listing-section style start */
.cart-completed-listing-section h2 {
    color: var(--theme-color-third);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}
.cart-completed-listing-section p {
    font-weight: 600;
    font-size: 20px;
    line-height: 15px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--theme-color-primary);
}
.cart-completed-listing-section h3 {
    font-size: 25px !important;
    font-weight: 600;
    color: var(--theme-color-primary-lite) !important;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
}
.cart-completed-listing-section img {
    text-align: center;
    width: 80px;
    margin-bottom: 9px;
}
.cart-completed-listing-section .back-to-home-btn {
    border: 1px solid var(--theme-color-primary-lite);
    background-color: var(--theme-color-primary-lite);
    padding: 8px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 17px !important;
    font-weight: 600;
    color: #fff !important;
    float: left;
    margin-top: 20px;
}
.cart-completed-listing-section .back-to-home-btn:hover {
    border: 1px solid var(--theme-color-third);
    background-color: var(--theme-color-third);
    padding: 8px 13px;
    transition-duration: 0.4s !important;
    border-radius: 4px;
    font-size: 17px !important;
    font-weight: 600;
    color: #fff !important;
    float: left;
    margin-top: 20px;
}
/* cart-completed-listing-section style end */
/************************************ Inner Pages style end **********************************************/
/* media Query */
/* Define mobile styles */
@media (max-width: 767px) {
    .col-1by5 {
        width: 100%;
    }
    .pad-none {
        padding-left: 15px;
        padding-right: 15px;
    }
    .pad-left-none {
        padding-left: 15px;
    }
    .pad-right-none {
        padding-right: 15px;
    }
    header {
        position: static;
    }
    .loading-popup .modal-dialog {
        width: 344px;
        margin: 110px auto;
    }
    .login-signup-field-section {
        width: 100%;
        padding: 20px 8px;
    }
    .lgn-overley-text {
        bottom: 21px;
        left: 20px;
    }

    .inner-banner-strip {
        display: inline-block;
        float: left;
        width: 100%;
        padding: 66px 0px 0px 0px;
    }
    .register-page-section {
        padding: 20px 15px !important;
    }
    .digit-group input {
        width: 43px;
    }
    .started-btn {
        width: 139px;
        float: left;
        margin-right: 12px;
    }
    .mobile-cs {
        margin-top: 5px;
    }
    #back-to-top {
        bottom: 164px;
        right: 35px;
        width: 34px;
        height: 34px;
        text-align: center;
        line-height: 30px;
        text-decoration: none;
        font-size: 25px;
        opacity: 0;
    }
    .about-page-section h1 {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .newsletter-subscription {
        padding: 44px 20px;
    }
    .section-heading h3 {
        font-size: 30px;
        line-height: 30px;
        margin-top: 5px;
        margin-bottom: 0px;
    }
    .padleft45 {
        padding-left: 0px;
    }
    .contact_container h2 {
        margin-top: 20px;
    }
    .events-listing {
        display: inline-block;
        float: left;
        width: 100%;
    }
    .event-content-section .sub-text {
        font-size: 18px;
        margin-top: 7px;
    }
    .event-content-section h4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 5px;
        margin-top: 9px;
    }
    .web-team-img {
        padding-right: 0;
        padding-bottom: 20px;
    }
    .webinar-popup-registration .country-code-list {
        width: 100px;
    }
    .webinar-popup-registration .ps-2 .form-control {
        border-radius: 0;
        border: solid 1px #ccc;
        background: none;
        height: 41px;
        width: auto;
    }
    .apply-job {
        position: static;
        bottom: 15px;
        right: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .soft-points ul li {
        margin-top: 0px;
        margin-right: 10px;
        font-size: 13px;
        font-weight: 400;
        border-radius: 14px;
        padding: 4px 10px;
        margin-bottom: 5px;
    }
    .faq-page-section .answer {
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }
    .home-banner-search-caption {
        position: static;
        padding: 15px 0px;
    }
    .home-banner-search-caption h2 {
        font-size: 19px;
        margin-top: 0px;
        margin-bottom: 8px;
        font-family: "Poppins", sans-serif;
        color: var(--theme-color-third);
    }
    .home-banner-search-caption p {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .search input {
        width: 100%;
        height: 47px;
        line-height: 76px;
        font-size: 18px;
        padding: 5px 5px 6px 10px;
        border: none;
        outline: none !important;
    }
    .search button {
        position: absolute;
        font-size: 27px;
        height: 47px;
        line-height: 48px;
        width: 79px;
        padding: 0;
        border: 0;
    }
    .webinar-scroll .pad-none {
        padding-left: 0px;
        padding-right: 0px;
    }
    .breaking-caret span {
        margin-right: 0px;
    }
    .breaking-caret {
        color: #fff;
        background-color: var(--theme-color-primary-lite);
        padding: 15px 8px;
        text-align: center;
    }
    .leading-partners {
        margin: 20px 0px 0px 0px;
    }
    .leading-partners h2 {
        color: var(--theme-color-third);
        font-size: 25px;
        margin-bottom: 15px;
        margin-top: 10px;
    }
    .home-about-section {
        padding: 40px 0px 40px 0px;
    }
    .benefits-section .feature-item {
        background: #fff;
        padding: 20px 40px;
    }
    .feature-item {
        background: #fff;
        padding: 50px 40px;
        border-radius: 5px;
        border: 1px dashed #ddd;
        text-align: center;
        margin-top: 22px;
        float: left;
        width: 100%;
    }
    .trending-courses p {
        font-size: 21px;
        line-height: 18px;
        margin-bottom: 20px;
    }
    .count-section p {
        font-weight: 600;
        font-size: 23px;
        line-height: 23px;
        margin-bottom: 35px;
        text-align: center;
        color: var(--theme-color-primary);
    }
    .app-btn {
        width: 152px;
        padding: 13px;
        margin-right: 15px;
        box-shadow: 2px 3px 9px -1px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        background-color: #fff;
    }
    .quick-contact-form {
        margin-top: 20px;
        padding: 30px 24px;
    }
    .stats h4 {
        font-size: 19px;
        margin-top: 0px;
        margin-bottom: 27px;
    }
    .trending-courses {
        margin: 0px 0px 20px 0px;
    }
    .main-point-section h3 {
        font-weight: 600;
        font-size: 23px;
        line-height: 21px;
        margin-bottom: 17px;
    }
    .upcoming-courses p {
        line-height: 23px;
        margin-bottom: 17px;
    }
    .stats {
        font-size: 28px;
        color: var(--theme-color-primary-lite);
    }
    .plus {
        top: 64px;
        left: 80px;
        right: 0px;
    }
    .footer-bottom-section p {
        color: #535967;
        line-height: 19px;
        font-size: 15px;
    }
    .select-tag-section ul li {
        padding: 4px 6px;
        font-size: 15px;
        margin-right: 4px;
        margin-bottom: 10px;
    }
    /* course details style start */
    .course-detail-banner-section h1 {
        color: #fff;
        font-size: 22px;
        margin-bottom: 4px;
        margin-top: 8px;
        line-height: 27px;
    }
    .course_price_wrapper {
        width: 100%;
        margin-top: 28px;
        float: left;
        text-align: left;
    }
    .course_price_wrapper .enroll-btn {
        padding: 16px 36px;
        border-radius: 5px;
        height: max-content;
        transition: 0.3s all ease-in-out;
        background-color: var(--theme-color-third);
        border: 2px solid var(--theme-color-third);
        color: #fff !important;
        font-size: 17px;
        line-height: 1em;
        text-align: center;
        font-weight: 700;
        float: left;
    }
    .course_price_wrapper .course-add-cart {
        border-radius: 5px;
        height: max-content;
        transition: 0.3s all ease-in-out;
        background-color: #fff;
        border: 2px solid #fff;
        color: var(--theme-color-third) !important;
        font-size: 17px;
        line-height: 1em;
        text-align: center;
        font-weight: 700;
        margin-top: 0px !important;
        padding: 16px 36px;
        float: right;
    }
    .feature-left {
        border: 1px solid #f2f2f2 !important;
        margin-bottom: 15px;
        padding: 10px 15px;
    }
    .dtl-section-box p {
        text-align: left;
    }
    .download-brochure-btn {
        background-color: var(--theme-color-primary);
        padding: 13px 15px;
        font-size: 20px;
    }
    /* course details style end */
    /* cart page style start */
    .table-cart tr td .img-product {
        width: 72px;
        float: none;
        margin-left: 8px;
        margin-right: 11px;
        line-height: 63px;
    }
    .table-cart tr td .name-product {
        font-size: 15px;
        color: #720B3D;
        line-height: 19px;
        width: auto;
        font-weight: 600;
        margin-top: 5px;
    }
    .table-cart tr td .name-product p {
        color: var(--theme-color-primary-lite) !important;
        font-size: 15px;
    }
    /* cart page style end */
    .choose-account-page-section .login-signup-field-section {
        padding: 20px 0px;
    }
    .choose-account-page-section .mbr-section-title3 {
        line-height: 20px;
        margin-top: 21px;
        font-size: 16px;
        margin-bottom: 0px;
    }
    .reset-password-section {
        padding: 20px 10px 20px 0px;
    }
    .navbar-default {
        top: 150px;
        z-index: 999;
    }
    .login-btn {
        border: 1px solid var(--theme-color-third);
        font-size: 17px;
        color: var(--theme-color-third) !important;
        border-radius: 4px;
        font-weight: 500;
        margin-left: 0px;
        padding: 9px 21px !important;
        margin-top: 6px !important;
        width: 150px;
        float: left;
    }
    .register-btn {
        border: 1px solid var(--theme-color-primary-lite);
        color: #fff !important;
        border-radius: 4px;
        margin-left: 15px;
        background-color: var(--theme-color-primary-lite);
        padding: 9px 12px !important;
        margin-top: 6px !important;
    }

    /* 06-09-2021*/

    .navbar-default {
        top: 0px !important;
        z-index: 999;
        background-color: var(--theme-color-menu-bar) !important;
    }
    .search {
        position: fixed;
        top: 37px;
        right: 43px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        z-index: 999999;
    }
    .search__icon {
        width: 40px;
        height: 40px;
    }
    .search__field {
        background-color: #fff !important;
    }
    .edrona-carousel .carousel-caption {
        right: 3%;
        left: 3%;
        padding-bottom: 30px;
        bottom: 0px;
    }
    .edrona-carousel {
        margin-top: 60px;
    }
    .edrona-carousel h2 {
        font-size: 19px;
    }
    .started-learning-btn {
        border: 1px solid #720B3D;
        padding: 5px 15px !important;
        background-color: var(--theme-color-primary);
        font-size: 15px !important;
        color: #fff !important;
    }
    .started-learning-btn:hover {
        border: 1px solid var(--theme-color-primary-lite);
        padding: 5px 15px !important;
        background-color: var(--theme-color-primary-lite);
        font-size: 15px !important;
        color: #fff !important;
    }
    .arrow.bounce {
        display: none;
    }
    /* 06-09-2021*/
}

/* tablet screens */
@media all and (min-width: 768px) and (max-width: 980px) {
    .inner-page-bread-crumbs-link-section .breadcrumb > li {
        display: inline-block;
        font-size: 13px;
    }
    .inner-banner-strip {
        display: inline-block;
        float: left;
        width: 100%;
        transition-duration: 0.4s;
        padding: 40px 0px 0px 0px;
    }
    .register-page-section {
        padding: 20px 13px !important;
    }
    .login-page-section #phone {
        height: 49px;
        padding: 6px 9px 6px 50px;
    }
    #back-to-top {
        bottom: 164px;
        right: 35px;
        width: 34px;
        height: 34px;
        text-align: center;
        line-height: 30px;
        text-decoration: none;
        font-size: 25px;
        opacity: 0;
    }
    .about-page-section h1 {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .recent-blog-listing-right-section h2 {
        color: var(--theme-color-third);
        font-size: 23px;
    }
    .lower-content {
        padding: 20px 15px;
    }
    .lower-content h4 a {
        font-size: 15px;
    }
    .events-listing {
        display: inline-block;
        float: left;
        width: 100%;
    }
    .feature-item {
        background: #fff;
        padding: 34px 13px;
        margin-top: -83px;
    }
    .quick-contact-form {
        margin-top: 30px;
    }
    .search input {
        height: 59px;
        line-height: 76px;
        background: rgba(255, 255, 255, 0.8);
        font-size: 20px;
        padding: 5px 5px 5px 24px;
    }
    .search button {
        height: 59px;
        line-height: 48px;
        width: 79px;
    }
    .add-cart-btn {
        border: 1px solid var(--theme-color-primary-lite);
        background-color: #fff;
        padding: 8px 3px;
        border-radius: 4px;
        font-size: 13px !important;
        float: left;
        width: 82px;
    }
    .enrol-btn {
        border: 1px solid var(--theme-color-primary-lite);
        background-color: var(--theme-color-primary-lite);
        padding: 8px 3px;
        border-radius: 4px;
        font-size: 13px !important;
        width: 85px;
    }
    /* course detail page style start */
    .course-details-tump-strip-section {
        background-color: #fff;
        padding: 20px 20px 10px 20px;
        margin-bottom: 30px;
    }
    .feature-left {
        margin-bottom: 10px;
        border: none !important;
        padding: 8px 8px;
        background-color: #f5f6f8;
    }
    .navigation li a {
        padding: 19px 10px;
        font-size: 14px;
    }
    .select-tag-section ul li {
        margin-bottom: 7px;
    }
    .download-brochure-btn {
        padding: 10px 8px;
        font-size: 13px;
        color: #fff;
    }
    .download-brochure-btn .fa {
        padding: 9px 15px;
        border-radius: 42px;
        font-size: 16px;
        margin-right: 8px;
        color: var(--theme-color-third);
    }
    .toll-free h2 {
        font-size: 17px;
        font-weight: 700;
    }
    .course-detail-banner-section h3 {
        font-size: 18px;
        margin-top: 1px;
    }
    .leadform {
        background-color: #fff;
        padding: 15px 20px 20px 20px;
    }
    /* course detail page style end */
    .choose-account-page-section .login-signup-field-section {
        padding: 20px 25px;
    }
    .choose-account-page-section .text-wrap p {
        font-size: 14px;
        font-weight: 500;
        line-height: 16px;
    }

    /* 06-09-2021*/
    .navbar-brand > img {
        display: block;
        width: 99px;
    }
    .navbar-default .navbar-nav > li > a {
        color: var(--theme-color-third);
        font-size: 15px;
        padding: 14px 10px;
    }
    .navbar-default {
        top: -2px;
    }
    .edrona-carousel {
        margin-top: 112px;
    }
    .edrona-carousel .carousel-caption {
        right: 5%;
        left: 5%;
        padding-bottom: 30px;
        bottom: 16px;
    }
    /*06-09-2021*/
}
/* medium desktop screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .col-1by5 {
        width: 20%;
    }
    .login-signup-field-section {
        padding: 20px 20px;
    }

    .register-page-section {
        padding: 20px 30px !important;
    }
    #back-to-top {
        bottom: 164px;
        right: 35px;
        width: 34px;
        height: 34px;
        text-align: center;
        line-height: 30px;
        text-decoration: none;
        font-size: 25px;
        opacity: 0;
    }
    .events-listing {
        display: inline-block;
        float: left;
        width: 100%;
    }
    .add-cart-btn {
        border: 1px solid var(--theme-color-primary-lite);
        background-color: #fff;
        padding: 8px 3px;
        border-radius: 4px;
        font-size: 13px !important;
        float: left;
        width: 82px;
    }
    .enrol-btn {
        border: 1px solid var(--theme-color-primary-lite);
        background-color: var(--theme-color-primary-lite);
        padding: 8px 3px;
        border-radius: 4px;
        font-size: 13px !important;
        width: 85px;
    }
    .main-point-section h2 {
        margin-top: 10px;
    }
    .quick-contact-form {
        padding: 50px 24px;
        margin-top: -32px;
    }
    /* course detail page*/
    .navigation li a {
        padding: 15px;
        font-size: 18px;
    }
    .feature-content p {
        font-weight: 500;
        font-size: 15px;
        color: #222222;
        line-height: 16px;
    }
    .download-brochure-btn {
        background-color: var(--theme-color-primary);
        padding: 13px 15px;
        font-size: 16px;
    }
    /* course detail page*/
    .choose-account-page-section .login-signup-field-section {
        padding: 20px 45px;
    }
    .choose-account-page-section .mbr-section-title3 {
        font-size: 17px;
    }
    /*06-09-2021*/
    .navbar-default {
        top: 0px;
    }
    .search {
        position: fixed;
        top: 35px;
        right: -22px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        z-index: 999999;
    }
    /*006-09-2021*/
}
@media all and (max-width: 980px) {
}
/* Large screens*/
@media (min-width: 1200px) {
    .col-1by5 {
        width: 20%;
    }
    .container {
        width: 1200px;
    }
}
/*custom screen media */
@media (max-width: 359px) {
}

@media all and (min-width: 768px) and (max-width: 980px) {
}

/*exams*/
.exams-section {
    display: inline-block;

    width: 100%;
    margin: 20px 0px 20px 0px;
}
.exams-section h2 {
    color: var(--theme-color-heading);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}

.list-exams a.active {
    color: #0052cc !important;
    background-color: #e1e1e1 !important;
}
.product-content .product-deatil {
    /* border-bottom: 1px dashed rgb(223, 229, 233); */
    padding-bottom: 5px;
    padding-left: 16px;
    padding-top: 10px;
    position: relative;
    background: rgb(255, 255, 255);
}
.product-deatil {
    padding: 30px 30px 50px;
}
.product-info {
    padding-bottom: 40px;
}

.product-wrap .product-image span.hot {
    background-color: rgb(1, 46, 87);
}
.product-content .product-deatil h5 a {
    color: rgb(1, 46, 87);
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    padding-left: 0px;
    margin-left: 0px;
}
.product-wrap .product-image span.tag2 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 76px;
    height: 35px;
    padding: 8px 0px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
}
.product-deatil .exam-price {
    font-size: 24px;
    margin: 0px;
    font-weight: 300;
    text-align: left;
}
.top-trending-exams-heading {
    text-align: left;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 500;
    color: var(--theme-color-heading);
    margin-top: 40px;
    border-bottom: 1px dashed #ddd;
    display: inline-block;
    padding-bottom: 6px;
}
.product-content {
    border: 1px solid rgb(236, 236, 236) !important;
    margin-bottom: 20px !important;
    margin-top: 12px !important;
    background: rgb(255, 255, 255) !important;
    padding: 4px !important;
    box-shadow: rgb(198 198 198 / 37%) 0px 1px 6px 0px !important;
}
@media only screen and (min-width: 1024px) {
    .product-wrap div[class*="col-md-5"] {
        padding-right: 0px;
    }
    .product-image .img-responsive {
        width: 100%;
    }
}
.product-content .product-image {
    background-color: rgb(255, 255, 255);
    display: block;
    min-height: 125px;
    overflow: hidden;
    position: relative;
}
.product-image .img-responsive {
    width: 100%;
}
.product-block .product-deatil p.exam-price span,
.product-content .product-deatil p.exam-price span,
.product-entry .product-deatil p.exam-price span,
.shipping table tbody tr td p.exam-price span,
.shopping-items table tbody tr td p.exam-price span {
    color: rgb(33, 194, 248);
    font-size: 17px;
    line-height: 21px;
    font-weight: 600;
    margin-top: 15px !important;
}
.rating h2 {
    text-align: center;
    margin-bottom: 0px;
    font-size: 21px;
    font-weight: 600;
    color: rgb(2, 60, 108);
    margin-top: 5px;
}
.exam-heading {
    text-align: left;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 500;
    color: rgb(92, 184, 92);
    margin-top: 40px;
    border-bottom: 1px dashed rgb(221, 221, 221);
    display: inline-block;
    padding-bottom: 6px;
}
/*exams end*/

.lower-content h1 {
    position: relative;
    font-weight: 700;
    line-height: 1.3em;
    margin-top: 25px;
    padding-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px solid #dad4d5;
}
.blog-events h1 {
    color: var(--theme-color-third);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 9px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: center;
}

/* 18-04-2022 */

.instructors-btn {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    width: 100%;
}
.instructors-btn:hover {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    width: 100%;
}

.instructors-btn:active {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}
.instructors-btn:focus {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.instructors-popup .modal-dialog {
    width: 600px;
    margin: 104px auto;
}
.instructors-popup .close {
    margin-top: 3px;
    color: #fff;
    border: 3px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    background-color: var(--theme-color-primary-lite);
    margin-bottom: -9px;
    position: absolute;
    z-index: 999;
    right: -9px;
    top: -17px;
    opacity: 1;
    font-weight: 400;
}
.instructors-popup .modal-content {
    border-radius: 0px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.instructors-popup .modal-header {
    border-bottom: none;
    background-color: var(--theme-color-primary);
}
.instructors-popup .modal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 30px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
}
.instructors-popup .modal-header p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 0px;
    font-family: "Kumbh Sans", sans-serif;
    text-align: left;
    margin-bottom: 0px;
}

.instructors-popup .modal-body p {
    font-size: 18px;
    line-height: 1.4em;
    color: #535967;
    width: 100%;
    margin-bottom: 17px;
    font-weight: 400;
    text-align: justify;
}
.instructors-popup .pic {
    float: left;
    display: inline-block;
    width: 110px;
    height: 110px;
    z-index: 1;
    position: relative;
    margin-right: 15px;
}
.instructors-popup .pic img {
    width: 100%;
    height: 100%;
    border-radius: 58%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
    box-shadow: 0 0 0 6px #f7f5ec;
    transform: scale(0.9);
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .instructors-popup .modal-dialog {
        width: 350px;
        margin: 104px 10px;
    }
}
/* 18-04-2022 */
/* 19-04-2022  FAZil*/

p.instructor-summary {
    font-size: 18px;
    line-height: 1.4em;
    color: var(--theme-color-dark);
    width: 100%;
    margin-bottom: 17px;
    font-weight: 400;
    text-align: justify;
}
#about-course ul li {
    font-size: 17px;
}

.call-popup .modal-body {
    padding: 32px 89px;
}

/*  */
/* Define mobile styles */
@media (max-width: 767px)
{
    .apply-job:hover {
        position: unset;

    }

    .g-recaptcha{
            transform: scale(1.1) !important;
        -webkit-transform: scale(1.1) !important;
        transform-origin: 0 0 !important;
        -webkit-transform-origin: 0 0 !important;
    }
    .call-popup .modal-body {
        padding: 30px 16px;
    }
}
.page-not-found h2,h3   {
    margin: 0;
    font-weight: bold;
}
.page-not-found h2{

    text-transform: uppercase;
    color: #43b87d;
}
.page-not-found h3{
    color: #002c55;
}
.page-not-found p{
    font-weight: 500;
    color: #002c55;
}
.top-menu ul {
    background-color: var(--theme-color-top-header) !important;
    list-style: none;
    padding-left: 0px;
    display: inline-block;
    margin-bottom: 0px;
    margin-top: 0px;
    float: right;
    margin-right: 23px;
}
.new-header{
    background-color: var(--theme-color-middle-header) !important;
}
.top-menu ul li {
    display: inline-block;
    padding: 1px 5px;
}

.top-menu {
    height: 37px;
    background: var(--theme-color-top-header);
    position: fixed;
    top: 0;
    z-index: 999;
    right: 0;
    left: 0;
}

.top-menu .currency_dropdown {
    background-color: transparent;
    border: 1px solid #cfcfcf;
    padding: 2px;
    margin-left: 13px;
    box-shadow: none;
    border-radius: 4px;
    color: white !important;
    margin-top: 2px;
}
.top-menu .currency_dropdown option{
    background-color: white;
    color:black;
}



.request-call-error{
    color: red !important;
}
.btn-circle-font {
    width: 25px;
    height: 25px;
    padding: 3px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
    color: white;
    background: transparent;
}
.btn-switch-dark {
    width: 25px;
    height: 25px;
    padding: 3px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
    color: white;
    background: transparent;
}

/* readabler style start */

:root{

    --readabler-reading-mask: rgba(0, 0, 0, 0.7)

}
.mdp-readabler-tts {

    --readabler-tts-bg: rgba(236, 24, 71, 1);
    --readabler-tts-color: rgba(255, 255, 255, 1);

}

#mdp-readabler-popup-box{

    --readabler-overlay: rgba(2, 83, 238, 1);

    --readabler-bg: rgba(255, 255, 255, 1);
    --readabler-bg-dark: rgba(22, 25, 27, 1);
    --readabler-text: rgba(51, 51, 51, 1);
    --readabler-text-dark: rgba(248, 248, 248, 1);
    --readabler-color: var(--theme-color-primary);
    --readabler-color-dark: var(--theme-color-primary);
    --readabler-color-transparent: rgba(33,150,243,0.2);
    --readabler-color-transparent-dark: rgba(33,150,243,0.2);
    --readabler-border-radius: 16px;
    --readabler-animate: 600ms;
}

.mdp-readabler-trigger-button-box{

    --readabler-btn-margin: 20px;
    --readabler-btn-padding: 20px;
    --readabler-btn-radius: 50px;
    --readabler-btn-color: rgba(255, 255, 255, 1);
    --readabler-btn-color-hover: rgba(60, 60, 60, 1);
    --readabler-btn-bg: var(--theme-color-primary);
    --readabler-btn-bg-hover: rgba(192, 218, 116, 1);
    --readabler-btn-size: 24px;
    --readabler-btn-delay: 2s;

}

#mdp-readabler-keyboard-box {

    --readabler-keyboard-light-bg: rgba(236, 236, 236, 1);
    --readabler-keyboard-light-key-bg: rgba(255, 255, 255, 1);
    --readabler-keyboard-light-key: rgba(17, 17, 17, 1);
    --readabler-keyboard-dark-bg: #000000CC;
    --readabler-keyboard-dark-key-bg: rgba( 0, 0, 0, .5 );
    --readabler-keyboard-dark-key: #ffffff;

}
#mdp-readabler-trigger-button {
    width: 25px;
    height: 25px;
    padding: 3px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.42857;
    color: white;
    background: transparent;
    border: solid thin #fff;
    /* border-color: #fff; */
}
#mdp-readabler-action-useful-links{
    display: none;
}
.btn-order-desc {
    background-color: var(--theme-color-secondary);
}
.btn-order-desc:hover {
    border: 1px solid var(--theme-color-secondary);
    background-color: var(--theme-color-secondary);
    /* color: #fff !important; */
}
.drop-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.drop-area p {
    margin: 0;
}

/*  */
.mdp-readabler-accessibility-profile-item-custom {
    cursor: pointer;
    padding-left: 32px;
    padding-right: 32px
}

 .mdp-readabler-accessibility-profile-item-custom:focus {
    outline: 0
}

 .mdp-readabler-accessibility-profile-item-custom:nth-child(1) {
    margin-top: 16px
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row {
    padding: 10.6666666667px 0;
    display: flex;
    align-items: center
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row .mdp-readabler-title-box {
    margin-left: 24px
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row .mdp-readabler-profile-title {
    font-size: 19px;
    font-weight: 700
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row .mdp-readabler-profile-short {
    font-size: 16px;
    line-height: 1.4
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-profile-description {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.4;
    opacity: 0;
    padding: 0;
    transition: all .15s ease-out
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-switch {
    position: relative;
    display: inline-block;
    border-radius: 17px;
    width: 60px;
    height: 34px;
    font-size: 0;
    transition: .25s ease-out all
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-switch:hover {
    border-radius: 17px
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 34px;
    transition: .4s
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider:before {
    position: absolute;
    content: "";
    border-radius: 50%;
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    transition: .4s
}

 .mdp-readabler-accessibility-profile-item-custom .mdp-switch input:checked+.mdp-slider:before {
    transform: translateX(26px)
}

 .mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-readabler-row {
    padding: 32px 0
}

 .mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-readabler-profile-description {
    height: auto;
    margin: 0;
    padding: 16px 0 32px 0;
    opacity: 1;
    transition: all .15s ease-out;
    max-height: 600px
}

 .mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-switch .mdp-slider:before {
    background-color: #fff
}

#mdp-readabler-readable-experience-box {
    padding: 0 23.5px 0 32px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

/*  */
 .mdp-readabler-accessibility-profile-item-custom {
    cursor: pointer;
    padding-left: 32px;
    padding-right: 32px;
}
 .mdp-readabler-accessibility-profile-item-custom:focus {
    outline: 0;
}
 .mdp-readabler-accessibility-profile-item-custom:nth-child(1) {
    margin-top: 16px;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row {
    padding: 10.6666666667px 0;
    display: flex;
    align-items: center;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row .mdp-readabler-title-box {
    margin-left: 24px;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row .mdp-readabler-profile-title {
    font-size: 19px;
    font-weight: 700;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-row .mdp-readabler-profile-short {
    font-size: 16px;
    line-height: 1.4;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-readabler-profile-description {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.4;
    opacity: 0;
    padding: 0;
    transition: all 0.15s ease-out;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch {
    position: relative;
    display: inline-block;
    border-radius: 17px;
    width: 60px;
    height: 34px;
    font-size: 0;
    transition: 0.25s ease-out all;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch:hover {
    border-radius: 17px;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 34px;
    transition: 0.4s;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider:before {
    position: absolute;
    content: "";
    border-radius: 50%;
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    transition: 0.4s;
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch input:checked + .mdp-slider:before {
    transform: translateX(26px);
}
 .mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-readabler-row {
    padding: 32px 0;
}
 .mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-readabler-profile-description {
    height: auto;
    margin: 0;
    padding: 16px 0 32px 0;
    opacity: 1;
    transition: all 0.15s ease-out;
    max-height: 600px;
}
 .mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-switch .mdp-slider:before {
    background-color: #fff;
}
 .mdp-readabler-accessibility-profile-item-custom.mdp-active {
    background: var(--readabler-color-transparent);
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch:hover {
    box-shadow: 0 0 0 4px var(--readabler-bg), 0 0 0 6px var(--readabler-color-transparent);
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch input:checked + .mdp-slider {
    background-color: var(--readabler-color);
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch input:focus + .mdp-slider {
    box-shadow: 0 0 1px var(--readabler-color);
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider {
    background-color: var(--readabler-color-transparent);
}
 .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider:before {
    background-color: var(--readabler-color) !important;
}
 .mdp-readabler-accessibility-profile-item-custom:focus .mdp-switch {
    box-shadow: 0 0 0 6px var(--readabler-bg), 0 0 0 8px var(--readabler-color);
}
#mdp-readabler-popup-box.mdp-readabler-modal-shadow #mdp-readabler-popup {

    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1), 0 16px 32px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.1);
}



@media (prefers-color-scheme: dark)
{
     .mdp-readabler-accessibility-profile-item-custom.mdp-active {
        background: var(--readabler-color-transparent-dark);
    }
     .mdp-readabler-accessibility-profile-item-custom .mdp-switch:hover {
        box-shadow: 0 0 0 4px var(--readabler-bg-dark), 0 0 0 6px var(--readabler-color-transparent-dark);
    }
     .mdp-readabler-accessibility-profile-item-custom .mdp-switch input:checked + .mdp-slider {
        background-color: var(--readabler-color-dark);
    }
     .mdp-readabler-accessibility-profile-item-custom .mdp-switch input:focus + .mdp-slider {
        box-shadow: 0 0 1px var(--readabler-color-dark);
    }
     .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider {
        background-color: var(--readabler-color-transparent-dark);
    }
     .mdp-readabler-accessibility-profile-item-custom .mdp-switch .mdp-slider:before {
        background-color: #fff;
    }
     .mdp-readabler-accessibility-profile-item-custom:focus .mdp-switch {
        box-shadow: 0 0 0 6px var(--readabler-bg-dark), 0 0 0 8px var(--readabler-color-dark);
    }
}
.mdp-readabler-accessibility-profile-item-custom.mdp-active .mdp-switch .mdp-slider:before {
    background-color: #fff !important;
}
