/*======================================================================= 2. Typography ========================================================================*/
body {
    font-family: var(--font_family_body);
    font-size: var(--font_family_body_size);
    line-height: var(--font_family_body_line-height);
    color: var(--color_text_body);
    font-weight: var(--font_family_body_weight);
    height: 100%;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #ffffff;
    overflow-x: hidden;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

a {
    color: var(--color_text_heading);
}

p {
    margin: 0 0 20px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font_family_heading);
    margin: 0 0 20px 0;
    font-weight: 600;
    color: #161616;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 10px;
    background-image: url(../img/select-arrow.png) !important;
    background-repeat: no-repeat;
    background-position: 95%;
    width: 100%;
    padding: 7px;
}

h1 {
    font-size: 40px;
    line-height: 46px;
}

h2 {
    font-size: 36px;
    line-height: 40px;
}

h3 {
    font-size: 28.44px;
    line-height: 32px;
}

h4 {
    font-size: 22.63px;
    line-height: 33px;
}

h5 {
    font-size: 20.31px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

/*======================================================================= 3. Global =========================================================================*/
a {
    text-decoration: none;
}

a:active,
a:hover,
a:focus {
    outline: 0 none;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.inline-list {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.block-list {
    padding: 0;
    margin: 0;
    display: block;
    list-style: none;
}

@media (min-width: 1440px) {
    .col-xxl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.row.gutters-1 {
    margin-left: -0.5px;
    margin-right: -0.5px;
}

.row.gutters-1>[class^="col-"] {
    padding-left: 0.5px;
    padding-right: 0.5px;
}

.row.gutters-3 {
    margin-left: -1.5px;
    margin-right: -1.5px;
}

.row.gutters-3>[class^="col-"] {
    padding-left: 1.5px;
    padding-right: 1.5px;
}

.row.gutters-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.row.gutters-15>[class^="col-"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row.gutters-20 {
    padding-left: 5px;
    padding-right: 5px;
}

.row.gutters-20>[class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.row.gutters-50 {
    margin-left: -25px;
    margin-right: -25px;
}

.row.gutters-50>[class^="col-"] {
    padding-left: 25px;
    padding-right: 25px;
}

@media (min-width: 1230px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 992px){
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm {
        max-width: 1200px;
    }
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-position-center {
    background-position: center;
}

.bg-size-cover {
    background-size: cover;
}

@media (min-width: 1800px) {
    .box-layout {
        padding-left: 185px;
        padding-right: 185px;
    }
}

.slick-slide {
    margin-left: 15px;
    margin-right: 15px;
}

.slick-carousel {
    margin-left: -15px;
    margin-right: -15px;
}

.form-response .alert-danger,
.form-response .alert.alert-info,
.form-response .alert.alert-success {
    margin-top: 5px;
    margin-bottom: 30px;
}

.form-response .alert-danger p,
.form-response .alert.alert-info p,
.form-response .alert.alert-success p {
    margin-bottom: 0;
}

.primary-color {
    color: var(--color_primary);
}

.secondary-color {
    color: var(--color_secondary);
}

/*----------------------------------------------- Button -----------------------------------------------*/
.btn-fill {
    display: inline-block;
    background-color: var(--color_primary);
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid var(--color_primary);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill:hover {
    color: var(--color_primary);
    background-color: transparent;
}

.quiz-modal-btn-cancel:hover, 
.quiz-modal-btn-back:hover, 
.tutor-login-form-wrap .login-submit .tutor-button:hover,
.form-submit .btn-fill.style-1:hover {
    color:var(--color_primary);
    background-color: transparent;
    border-color: var(--color_primary);
}

.tutor-button:hover,
.tutor-btn:hover{
    color:var(--color_primary) !important;
    background-color: transparent !important;
    border-color: var(--color_primary) !important;
}
.btn-fill i {
    margin-left: 10px;
}

.btn-fill:focus {
    outline: none;
}

.btn-fill.style-1 {
    display: inline-block;
    background-color: var(--color_primary);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid var(--color_primary);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-1:hover {
    color: #ffffff;
    background-color: transparent;
    border-color: white;
}

.btn-fill.style-1 i {
    margin-left: 10px;
}

.btn-fill.style-2 {
    display: inline-block;
    background-color: #edf6ff;
    color: var(--color_primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid #edf6ff;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-2:hover {
    color: #ffffff;
    background-color: var(--color_primary);
    border: 1px solid var(--color_primary);
}

.btn-fill.style-3 {
    display: inline-block;
    background-color: var(--color_secondary);
    color: #161616;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid var(--color_secondary);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-3:hover {
    color: #161616;
    background-color: transparent;
}

.btn-fill.style-4 {
    display: inline-block;
    background-color: #ffffff;
    color: var(--color_primary);
    padding: 7px 25px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid #ffffff;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-4:hover {
    color: #ffffff;
    background-color: transparent;
}

.btn-fill.style-5 {
    display: inline-block;
    background-color: #edf6ff;
    color: var(--color_text_heading);
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid #edf6ff;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-5:hover {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-fill.style-6 {
    display: inline-block;
    background-color: var(--color_secondary);
    color: #161616;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid var(--color_secondary);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-6:hover {
    color: #161616;
    background-color: transparent;
}

.btn-fill.style-7 {
    display: inline-block;
    background-color: var(--color_primary);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font_family_heading);
    font-size: 16px;
    border: 1px solid var(--color_primary);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-fill.style-7:hover {
    color: var(--color_primary);
    background-color: transparent;
}

.btn-fill.style-7 i {
    margin-left: 10px;
}

.btn-text {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    color: #8d8d8d;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-text:hover {
    color: var(--color_primary);
}

.btn-text i {
    margin-left: 10px;
}

.btn-text.style-2 {
    display: inline-block;
    padding: 5px 0;
    font-size: 16px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    color: var(--color_primary);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-text.style-2:hover {
    color: var(--color_secondary);
}

.btn-text.style-3 {
    padding: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color_primary);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font_family_heading);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-text.style-3 i {
    margin-left: 10px;
    margin-bottom: -5px;
    transition: all 0.3s ease-in-out;
}

.btn-text.style-3:hover i {
    margin-left: 15px
}

.btn-text.style-3:hover {
    color: var(--color_secondary);
}

.btn-text.style-4 {
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    color: #161616;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-text.style-4:hover {
    color: var(--color_primary);
}

.btn-ghost {
    border: 1px solid var(--color_primary);
    padding: 12px 35px;
    font-size: 16px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    border-radius: 4px;
    color: var(--color_primary);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-ghost:hover {
    background-color: var(--color_primary);
    color: #ffffff;
}

.isotop-btn-layout1 {
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #edf6ff;
    margin-bottom: 50px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .isotop-btn-layout1 {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.isotop-btn-layout1 a.nav-item {
    font-family: var(--font_family_heading);
    padding: 5px 10px;
    display: inline-block;
    color: #585858;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.isotop-btn-layout1 a.nav-item:before {
    position: absolute;
    z-index: 1;
    bottom: -10px;
    height: 2px;
    width: 0;
    background-color: var(--color_primary);
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .isotop-btn-layout1 a.nav-item:before {
        display: none;
    }
}

.isotop-btn-layout1 a.nav-item:hover {
    color: var(--color_primary);
}

.isotop-btn-layout1 a.nav-item.current {
    color: var(--color_primary);
}

.isotop-btn-layout1 a.nav-item.current:before {
    width: 100%;
}

.isotop-btn-layout2 {
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.isotop-btn-layout2 a.nav-item {
    font-family: var(--font_family_heading);
    margin: 0 5px 5px;
    padding: 7px 15px;
    border-radius: 5px;
    display: inline-block;
    color: #585858;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.isotop-btn-layout2 a.nav-item:hover {
    color: #ffffff;
    background-color: var(--color_primary);
}

.isotop-btn-layout2 a.nav-item.current {
    color: #ffffff;
    background-color: var(--color_primary);
}

/*----------------------------------------------- Preloader -----------------------------------------------*/
.preloader {
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99;
}

.loaders {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

.loader-1 .loader-outter {
    position: absolute;
    border: 4px solid var(--color_primary);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader-1 .loader-inner {
    position: absolute;
    border: 4px solid #000000;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-1-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-1-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-1-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-1-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*----------------------------------------------- Section Heading -----------------------------------------------*/

@media (max-width: 767px) {
    .section-heading.style-1 {
        margin-bottom: 20px;
    }
}

.section-heading.style-1 .title {
    padding: 0 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-heading.style-1 .title:after {
    content: "";
    height: 3px;
    width: 30px;
    background-color: #ffc221;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

.section-heading.style-1 .title:before {
    content: "";
    height: 3px;
    width: 30px;
    background-color: #ffc221;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

@media (max-width: 767px) {
    .section-heading.style-2 {
        margin-bottom: 20px;
    }
}

.section-heading.style-2 .description {
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-3 .title {
    font-weight: 600;
    margin-bottom: 0;
}

.section-heading.style-4 {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-heading.style-4 {
        margin-bottom: 20px;
    }
}

.section-heading.style-4 .title {
    font-weight: 500;
    max-width: 400px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 40px;
}

.section-heading.style-5 {
    margin-bottom: 40px;
    text-align: center;
}

.section-heading.style-5 .title {
    color: #ffffff;
    font-weight: 600;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    font-size: 40px;
}

.section-heading.style-5 .description {
    color: #ffffff;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-6 {
    margin-bottom: 40px;
    text-align: left;
}

@media (max-width: 767px) {
    .section-heading.style-6 {
        margin-bottom: 20px;
    }
}

.section-heading.style-6 .title {
    font-weight: 600;
    max-width: 460px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 40px;
}

.section-heading.style-6 .description {
    max-width: 460px;
    width: 100%;
}

.section-heading.style-7 {
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 767px) {
    .section-heading.style-7 {
        margin-bottom: 20px;
    }
}

.section-heading.style-7 .sub-title {
    font-family: var(--font_family_heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color_primary);
    margin-bottom: 10px;
}

.section-heading.style-7 .title {
    font-weight: 600;
    max-width: 460px;
    width: 100%;
    margin-bottom: 30px;
    font-size: 40px;
}

.section-heading.style-7 .description {
    max-width: 460px;
    width: 100%;
    margin-bottom: 50px;
}

.section-heading.style-8 {
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 767px) {
    .section-heading.style-8 {
        margin-bottom: 20px;
    }
}

.section-heading.style-8 .title {
    font-weight: 500;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    font-size: 40px;
}

.section-heading.style-9 {
    margin-bottom: 10px;
    text-align: center;
}

.section-heading.style-9 .title {
    font-weight: 500;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    font-size: 40px;
}

.section-heading.style-10 {
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 767px) {
    .section-heading.style-10 {
        margin-bottom: 20px;
    }
}

.section-heading.style-10 .title {
    font-weight: 500;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    font-size: 40px;
}

.section-heading.style-10 .title span {
    color: var(--color_primary);
    font-style: italic;
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
}

.section-heading.style-11 {
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 767px) {
    .section-heading.style-11 {
        margin-bottom: 40px;
    }
}

.section-heading.style-11 .title {
    font-weight: 500;
    font-size: 36px;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

.section-heading.style-11 .description {
    max-width: 580px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-12 {
    margin-bottom: 45px;
    text-align: center;
}

@media (max-width: 767px) {
    .section-heading.style-12 {
        margin-bottom: 35px;
    }
}

.section-heading.style-12 .sub-title {
    font-family: var(--font_family_heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--color_primary);
}

.section-heading.style-12 .title {
    font-weight: 500;
    max-width: 600px;
    width: 100%;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.inner-section-heading {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 22px;
}

/*Zoom meeting*/
.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-timer .dpn-zvc-timer-cell {
    background-color: var(--color_primary);
    border-radius: 5px;
    font-family: var(--font_family_heading);
}

.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-tile {
    background-color: var(--color_primary);
}

.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-content .dpn-zvc-sidebar-content-list span strong {
    font-family: var(--font_family_heading);
}

.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn-join-link, .dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn-start-link {
    background-color: var(--color_primary);
    font-family: var(--font_family_heading);
    border: 1px solid var(--color_primary);
    border-radius: 5px;
}

.dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn-join-link:hover, .dpn-zvc-single-content-wrapper .dpn-zvc-sidebar-wrapper .dpn-zvc-sidebar-box .join-links .btn-start-link:hover {
    color: var(--color_primary);
    background-color: transparent;
}

/*----------------------------------------------- Breadcrumb -----------------------------------------------*/

/*----------------------------------------------- Modal -----------------------------------------------*/
.modal {
    padding-left: 17px;
}

@media (min-width: 576px) {
    .modal .modal-dialog {
        max-width: 890px;
    }
}

.modal .modal-content {
    border-radius: 15px;
}

.modal .modal-header {
    border-bottom: 0;
}

.modal .modal-header .close:focus {
    outline: none;
}

.modal .modal-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal .modal-body .content-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 45px;
}

.modal .modal-body .content-box .sub-title {
    color: var(--color_primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--font_family_heading);
}

@media (max-width: 575px) {
    .modal .modal-body .content-box .sub-title {
        font-size: 16px;
    }
}

.modal .modal-body .content-box .title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .modal .modal-body .content-box .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .modal .modal-body .content-box .title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .modal .modal-body .content-box .title {
        font-size: 24px;
    }
}

.modal .modal-body .content-box .description {
    color: #161616;
    font-family: var(--font_family_heading);
    font-size: 15px;
}

.modal .modal-body .content-box .description i {
    margin-right: 10px;
    color: #807f7f;
}

.modal .modal-body .figure-box {
    max-width: 330px;
    width: 100%;
    padding: 0 30px 0 50px;
}

@media (max-width: 1199px) {
    .modal .modal-body .figure-box {
        padding: 0 20px 0 40px;
    }
}

@media (max-width: 991px) {
    .modal .modal-body .figure-box {
        padding: 0 10px 0 20px;
    }
}

@media (max-width: 767px) {
    .modal .modal-body .figure-box {
        display: none;
    }
}

.modal form {
    margin-bottom: 30px;
}

.modal .form-control {
    padding: 5px 20px;
    height: 60px;
    border-color: #f1f1f1;
    color: #000000;
    border-radius: 3px;
    background-color: #f1f1f1;
    margin-bottom: 10px;
}

.modal .form-control:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .modal .form-control {
        height: 51px;
    }
}

@media (max-width: 575px) {
    .modal .form-control {
        height: 41px;
    }
}

.modal .submit-btn {
    width: 100%;
    color: #ffffff;
    font-size: 15px;
    font-family: var(--font_family_heading);
    font-weight: 600;
    letter-spacing: 2px;
    padding: 15px 30px;
    background-color: var(--color_primary);
    border: 1px solid var(--color_primary);
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.modal .submit-btn:hover {
    background-color: #ffffff;
    color: var(--color_primary);
}

.modal .submit-btn:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .modal .submit-btn {
        padding: 13px 30px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .modal .submit-btn {
        padding: 9px 15px;
        font-size: 13px;
    }
}

.modal input.form-control::-webkit-input-placeholder {
    letter-spacing: 2px;
    font-size: 15px;
    color: #939393;
}

/*----------------------------------------------- Pagination -----------------------------------------------*/
.pagination-style-1 {
    margin-top: 30px;
}

.pagination-style-1 .pagination {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.pagination-style-1 .pagination .page-link {
    margin: 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease-in-out;
    margin-right: 6px;
    background: transparent;
}

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

.pagination-style-1 .pagination .page-link a {
    display: block;
    font-size: 20px;
    font-family: var(--font_family_heading);
    color: var(--color_primary);
    font-weight: 500;
    border: 1px solid #dbdbdb;
    padding: 12px 22px;
    transition: all 0.3s ease-in-out;
}

.pagination-style-1 .pagination .page-link:focus {
    box-shadow: none;
}

.pagination-style-1 .pagination .page-link.active a,
.pagination-style-1 .pagination .page-link:hover a{
    background-color: var(--color_primary);
}

.pagination-style-1 .pagination .page-link.active a,
.pagination-style-1 .pagination .page-link:hover a {
    color: #ffffff;
    border: 1px solid transparent;
}

.instructor-wrap .content-box{
    margin-top: 30px;
}

div#instructor_archive_pagination{
    padding-top: 30px;
}

div#instructor_archive_pagination ul.page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
}

div#instructor_archive_pagination ul.page-numbers li a,
div#instructor_archive_pagination ul.page-numbers li span {
    display: block;
    font-size: 20px;
    font-family: var(--font_family_heading);
    color: var(--color_primary);
    font-weight: 500;
    border: 1px solid #dbdbdb;
    padding: 12px 22px;
    transition: all 0.3s ease-in-out;
}

div#instructor_archive_pagination ul.page-numbers li{
    position: relative;
    display: block;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    margin-right: 6px;
    padding: 0;
    border: none;
    transition: all 0.3s ease-in-out;
}

div#instructor_archive_pagination ul.page-numbers li:last-child{
    margin-right: 0;
}

div#instructor_archive_pagination ul.page-numbers li:hover a {
    color: #ffffff;
    border: 1px solid transparent;
    background-color: var(--color_primary);
}

div#instructor_archive_pagination ul.page-numbers li span {
    background-color: var(--color_primary);
    color: #fff;
    border-color: var(--color_primary);
}

/*----------------------------------------------- Select2 Custom -----------------------------------------------*/
.select2-container {
    box-shadow: none;
    border-radius: 0px;
}

.select2-container ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 0;
    background-color: rgba(0, 113, 220, 0.3);
}

.select2-container ::-webkit-scrollbar {
    border-radius: 4px;
    width: 14px;
    height: 10px;
    background-color: rgba(0, 113, 220, 0.1);
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #c7c7c7;
    border-radius: 0px;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid transparent;
    border-radius: 0px;
}

.select2-search--dropdown {
    display: none;
}

.select2-results {
    background-color: transparent;
    padding: 5px 0 0;
    box-shadow: none;
}

.select2-results__option {
    font-size: 16px;
    color: #000000;
    padding: 5px 10px;
    margin-right: 0;
}

.select2-container--classic .select2-selection--single {
    border: 1px solid transparent;
    background-image: none;
    height: 60px;
    background-color: transparent;
    box-shadow: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .select2-container--classic .select2-selection--single {
        background-color: #fff;
        margin-bottom: 10px;
    }
}

.select2-container--classic .select2-selection--single .select2-selection__rende#c7c7c7 {
    font-size: 16px;
    color: #c7c7c7;
    font-weight: 300;
    background-color: transparent;
    border-radius: 0px;
    line-height: 1.4;
    padding: 15px 10px 13px 20px;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    background-image: none;
    border-radius: 0px;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: transparent;
    background-image: none;
    border-left: 0;
    height: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 7px;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 7px;
    background-color: transparent;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #c7c7c7 transparent transparent transparent;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-width: 7px 6px 0 6px;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #c7c7c7 transparent;
    border-width: 0 6px 7px 6px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    background-image: none;
    border-top: 1px solid #c7c7c7;
}

.select2-container--classic .select2-dropdown--below {
    border-top: 1px solid #c7c7c7;
}

.select2-container--classic .select2-dropdown {
    background-color: #ffffff;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #0071dc;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #c7c7c7;
    padding: 5px 10px;
    border-radius: 0px;
    color: #000000;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid transparent;
    border-radius: 0px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

/*----------------------------------------------- Filter Area -----------------------------------------------*/
.filter-wrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.filter-wrap .title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    margin-right: 30px;
}

.filter-wrap .title span {
    color: var(--color_secondary);
}

.filter-box.style-1 button {
    padding: 2px 20px;
    background-color: #f2f3f4;
    border: 0;
    color: var(--color_text_heading);
    border: 1px solid rgba(231, 233, 234, 0.28);
    border-radius: 5px;
    font-size: 18px;
    font-family: var(--font_family_heading);
}

.filter-box.style-1 button:after {
    position: relative;
    top: 2px;
}

.filter-box.style-1 button:focus {
    outline: none;
}

.filter-box.style-1 .dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

.filter-box.style-1 .dropdown-menu .dropdown-item {
    color: #000000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.filter-box.style-1 .dropdown-menu .dropdown-item:hover {
    color: #ffffff;
    background-color: var(--color_primary);
}

.filter-box.style-2 {
    position: inherit;
}

.filter-box.style-2 button {
    font-weight: 500;
    padding: 2px 15px;
    background-color: #f2f3f4;
    border: 0;
    color: var(--color_text_heading);
    border: 1px solid rgba(231, 233, 234, 0.28);
    border-radius: 5px;
    font-size: 18px;
    font-family: var(--font_family_heading);
}

.filter-box.style-2 button:after {
    position: relative;
    top: 2px;
}

.filter-box.style-2 button:focus {
    outline: none;
}

.filter-box.style-2 .filter-form {
    display: none;
    position: absolute;
    z-index: 3;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    padding: 0;
    border: 0;
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    -webkit-transform: inherit !important;
    -ms-transform: inherit !important;
    transform: inherit !important;
    top: 60px !important;
}

.filter-box.style-2 .filter-form .filter-row {
    padding: 40px 30px 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filter-box.style-2 .filter-form .filter-row>li {
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .filter-box.style-2 .filter-form .filter-row>li {
        width: 33.3333%;
    }
}

@media (max-width: 991px) {
    .filter-box.style-2 .filter-form .filter-row>li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .filter-box.style-2 .filter-form .filter-row>li {
        width: 100%;
    }
}

.filter-box.style-2 .filter-form .widget-title {
    font-size: 18px;
    font-weight: 500;
}

.filter-box.style-2 .filter-form .widget-filter .radio label {
    font-size: 15px;
}

.filter-box.style-2 .filter-form .widget-filter .radio label::before {
    top: 5px;
}

.filter-box.style-2 .filter-form .widget-filter .radio label::after {
    top: 5px;
}

.layout-switcher {
    margin-right: 15px;
}

.layout-switcher ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.layout-switcher ul li {
    line-height: 1;
    margin-right: 12px;
}

.layout-switcher ul li:last-child {
    margin-right: 0;
}

.layout-switcher ul li a {
    color: #d1d3d5;
}

.layout-switcher ul li a i {
    font-size: 18px;
}

.layout-switcher ul li.active a {
    color: var(--color_primary);
}

.grid-box .list-item {
    display: none !important;
}

.list-box [class^="col-"] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.list-box .grid-item {
    display: none !important;
}

/*======================================================================= 4. Header Area =========================================================================*/
header {
    width: 100%;
    position: relative;
    z-index: 5;
}
.admin-bar header{
    margin-top: 32px;
}
@media only screen and (max-width: 991px) {
    header {
        display: none;
    }
}

header .site-branding {
    max-width: 150px;
}

header .site-branding a {
    display: inline-block;
}

nav.template-main-menu ul.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav.template-main-menu ul.menu li.menu-item {
    position: relative;
    font-size: 17px;
    font-family: var(--font_family_heading);
    font-weight: 500;
}

nav.template-main-menu ul.menu li.menu-item a {
    display: inline-block;
    color: #000000;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

nav.template-main-menu ul.menu li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 36px 25px;
    font-family: var(--font_family_heading);
}

nav.template-main-menu ul.menu li.menu-item a:hover {
    color: var(--color_primary);
}

nav.template-main-menu ul.menu li.menu-item a:focus {
    outline: none;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu {
    background-color: #ffffff;
    list-style: none;
    padding: 20px 0;
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    margin-left: 0px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item {
    margin-bottom: 5px;
    font-size: 16px;
    padding: 0 30px;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item:last-child {
    margin-bottom: 0;
}

.menu-vertical-container>ul>li>a i {
    padding-right: 10px;
    font-size: 20px;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item a {
    position: relative;
    z-index: 1;
    padding: 3px 0;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.current-menu-parent>a {
    color: var(--color_primary);
}
nav.template-main-menu .menu-vertical-container ul.menu li.menu-item ul.sub-menu li.menu-item a{
  font-size:16px;
}
nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.current-menu-parent a:before {
    width: 100%;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item a:before {
    content: "";
    height: 2px;
    width: 0;
    bottom: 3px;
    right: 0;
    background-color: var(--color_primary);
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item a:hover {
    color: var(--color_primary);
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu li.menu-item a {
    font-size: 15px;
    font-weight: 400;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item a:hover:before {
    width: 100%;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item {
    position: relative;
}

#menu-vertical .sub-menu .menu-item-has-children:after {
    font-style: normal;
    font-size: 12px;
    content: "\f054";
    position: absolute;
    z-index: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    top: 3px;
    right: 25px;
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.menu-item ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 100%;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}

nav.template-main-menu ul.menu li.menu-item.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

nav.template-main-menu ul.menu li.menu-item.menu-item-has-children:hover ul.sub-menu li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

nav.template-main-menu ul.menu>li.current-menu-parent>a {
    color: var(--color_primary);
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.current-menu-item>a {
    color: var(--color_primary);
}

nav.template-main-menu ul.menu li.menu-item ul.sub-menu li.current-menu-item>a:before {
    width: 100%;
}

nav.template-main-menu ul.menu>li.menu-item>a {
    padding: 36px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
}

nav.template-main-menu1>ul.menu>li.menu-item>a {
    font-size: 18px;
}

@media (max-width: 1199px) {
    nav.template-main-menu>ul.menu>li.menu-item>a {
        padding: 36px 10px;
    }
}

header.header-style-2 .navbar-wrap {
    box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.05);
}

header.header-style-4 {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.admin-bar header.header-style-4 {
    top: 32px;
}

header.header-style-4 .navbar-wrap {
    background-color: rgba(0, 0, 0, 0.21);
}

header.header-style-4 nav.template-main-menu>ul.menu>li.menu-item>a {
    color: #ffffff;
}

header.sticky-on.sticky .navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header.sticky-on.sticky.header-style-4 .navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: none;
}

.nav-label {
    display: inline-block;
}

.nav-label i {
    margin-left: 10px;
    font-size: 12px;
    color: #818080;
}

.nav-wrap>li {
    margin-right: 3px;
    padding-right: 3px;
    position: relative;
    z-index: 1;
}

.nav-wrap>li:after {
    position: absolute;
    content: "";
    height: 30px;
    width: 1px;
    background-color: #cfcfd0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.nav-wrap>li:last-child {
    margin-right: 0;
}

.nav-wrap>li:last-child:after {
    display: none;
}

.nav-wrap .category-nav .item-icon {
    padding: 26px 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #161616;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav-wrap .category-nav .item-icon path {
    fill: #161616;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav-wrap .category-nav .item-icon:hover {
    color: var(--color_primary);
}

.nav-wrap .category-nav .item-icon:hover path {
    fill: var(--color_primary);
}

.nav-wrap .category-nav .category-label {
    margin-left: 10px;
    font-weight: 500;
    font-size: 17px;
    font-family: var(--font_family_heading);
}

.header-style-1 .header-action-items {
    margin-left: 20px;
}

.header-action-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header-action-items li {
    margin-right: 20px;
}

.header-action-items li:last-child {
    margin-right: 0;
}

.header-action-items li .item-icon {
    font-size: 20px;
    display: inline-block;
    color: #818284;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-action-items li .item-icon:hover {
    color: var(--color_primary);
}

.search-wrap.style-1 {
    max-width: 600px;
    width: 100%;
}

.search-wrap.style-1 form {
    border: 1px solid #ececec;
    border-radius: 4px;
}

.search-wrap.style-1 input {
    max-width: 288px;
    width: 100%;
    color: #000000;
    border: 0;
    height: 50px;
    padding: 5px 15px;
    background-color: transparent;
}

.search-wrap.style-1 input:focus {
    outline: none;
}

.search-wrap.style-1 .search-btn {
    height: 50px;
    padding: 5px 20px;
    background-color: transparent;
    border: 0;
    color: #818284;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-wrap.style-1 .search-btn:focus {
    outline: none;
}

.search-wrap.style-1 .search-btn:hover {
    color: var(--color_primary);
}

.search-wrap.style-1 input::-webkit-input-placeholder {
    color: #818284;
}

.search-wrap.style-1 input::-moz-placeholder {
    color: #818284;
}

.search-wrap.style-1 input:-moz-placeholder {
    color: #818284;
}

.search-wrap.style-1 input:-ms-input-placeholder {
    color: #818284;
}

.search-wrap.style-2 form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.search-wrap.style-2 input {
    max-width: 143px;
    width: 100%;
    color: #ffffff;
    border: 0;
    height: 50px;
    padding: 5px 15px;
    background-color: transparent;
}

.search-wrap.style-2 input:focus {
    outline: none;
}

.search-wrap.style-2 .search-btn {
    height: 50px;
    padding: 5px 20px;
    background-color: transparent;
    border: 0;
    color: #ffffff;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-wrap.style-2 .search-btn:focus {
    outline: none;
}

.search-wrap.style-2 .search-btn:hover {
    color: var(--color_primary);
}

.search-wrap.style-2 input::-webkit-input-placeholder {
    color: #ffffff;
}

.search-wrap.style-2 input::-moz-placeholder {
    color: #ffffff;
}

.search-wrap.style-2 input:-moz-placeholder {
    color: #ffffff;
}

.search-wrap.style-2 input:-ms-input-placeholder {
    color: #ffffff;
}

.search-wrap.style-3 form {
    border: 1px solid #ececec;
    border-radius: 4px;
}

.search-wrap.style-3 input {
    color: #000000;
    border: 0;
    height: 50px;
    padding: 5px 15px;
    background-color: transparent;
}

.search-wrap.style-3 input:focus {
    outline: none;
}

.search-wrap.style-3 .search-btn {
    height: 50px;
    padding: 5px 20px;
    background-color: transparent;
    border: 0;
    color: #818284;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-wrap.style-3 .search-btn:focus {
    outline: none;
}

.search-wrap.style-3 .search-btn:hover {
    color: var(--color_primary);
}

.search-wrap.style-3 input::-webkit-input-placeholder {
    color: #818284;
}

.search-wrap.style-3 input::-moz-placeholder {
    color: #818284;
}

.search-wrap.style-3 input:-moz-placeholder {
    color: #818284;
}

.search-wrap.style-3 input:-ms-input-placeholder {
    color: #818284;
}

.cart-wrap {
    position: relative;
    z-index: 1;
}

.cart-wrap:hover .cart-body {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cart-wrap .item-icon {
    font-size: 24px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.cart-wrap .cart-quantity {
    position: absolute;
    z-index: 1;
    right: -10px;
    top: -8px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--color_primary);
    color: #ffffff;
    height: 20px;
    width: 20px;
    font-size: 15px;
    font-family: var(--font_family_heading);
    border-radius: 50%;
}

.cart-wrap.style-1 {
    padding: 30px 0;
    margin-right: 25px;
}

.cart-wrap.style-1 .item-icon {
    color: var(--color_text_heading);
}

.cart-wrap.style-1 .item-icon:hover {
    color: var(--color_primary);
}

.cart-wrap.style-2 {
    padding: 30px 0;
    margin-right: 30px;
}

.cart-wrap.style-2 .item-icon {
    color: #ffffff;
}

.cart-wrap.style-2 .item-icon:hover {
    color: var(--color_primary);
}

.cart-wrap.style-3 {
    padding: 30px 0;
    margin-right: 30px;
}

.cart-wrap.style-3 .item-icon {
    color: var(--color_text_heading);
}

.cart-wrap.style-3 .item-icon:hover {
    color: var(--color_primary);
}

.action-wrap.style-2 .item-icon {
    color: #ffffff;
}

.topbar.style-1 {
    background-color: #031f42;
    color: #dfdfdf;
}

.topbar.style-1 a {
    color: #dfdfdf;
}

.topbar.style-1 a:after,
.topbar.style-1 a:before {
    color: #dfdfdf;
}

.topbar.style-1 .topbar-row {
    padding: 5px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topbar.style-1 .topbar-row ul li {
    margin-right: 28px;
    display: inline-block;
    font-size: 14px;
    position: relative;
}

.topbar-row .action-btn ul li:not(:last-child):after {
    content: "|";
    right: -16px;
    position: absolute;
}

.topbar.style-1 .topbar-row ul li i {
    margin-right: 8px;
}

.topbar.style-1 .topbar-row ul li:last-child {
    margin-right: 0;
}

.topbar.style-1 .topbar-row .language-select button {
    padding: 4px 10px 2px;
    background-color: transparent;
    border: 0;
    color: #dfdfdf;
    border: 1px solid rgba(231, 233, 234, 0.28);
    border-radius: 4px;
}

.topbar.style-1 .topbar-row .language-select button:after {
    position: relative;
    top: 2px;
}

.topbar.style-1 .topbar-row .language-select button:focus {
    outline: none;
}

.topbar.style-1 .topbar-row .language-select .dropdown-menu .dropdown-item {
    color: #000000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-1 .topbar-row .language-select .dropdown-menu .dropdown-item:hover {
    color: #ffffff;
    background-color: var(--color_primary);
}

.topbar.style-1 .topbar-row .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-1 .topbar-row .social a {
    font-size: 13px;
    margin-right: 5px;
    padding: 0 5px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.topbar.style-1 .topbar-row .social a:last-child {
    margin-right: 0;
}

.topbar.style-1 .topbar-row .social a:hover {
    color: var(--color_primary);
}

.topbar.style-1 .topbar-row .action-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-1 .topbar-row .action-btn a {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-1 .topbar-row .action-btn a:after {
    content: "|";
    padding: 0 5px 0 8px;
}

.topbar.style-1 .topbar-row .action-btn a:last-child:after {
    display: none;
}

.topbar.style-1 .topbar-row .action-btn a:hover {
    color: var(--color_primary);
}

.topbar.style-1 .topbar-row.for-mobile-menu {
    padding: 8px 15px;
}

.topbar.style-1 .topbar-row.for-mobile-menu ul li {
    margin: 2px 15px;
}

.topbar.style-1 .topbar-row.for-mobile-menu ul li:last-child {
    margin-right: 10px;
}

.topbar.style-2 {
    background-color: #f4f4f4;
    color: #585858;
}

.topbar.style-2 a {
    color: #585858;
}

.topbar.style-2 a:after,
.topbar.style-2 a:before {
    color: #585858;
}

.topbar.style-2 .left-box i {
    color: var(--color_primary);
}

.topbar.style-2 .topbar-row {
    padding: 5px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topbar.style-2 .topbar-row ul li {
    margin-right: 28px;
    display: inline-block;
    font-size: 14px;
    position: relative;
}

.topbar.style-2 .topbar-row ul li i {
    margin-right: 8px;
}

.topbar.style-2 .topbar-row ul li:last-child {
    margin-right: 0;
}

.topbar.style-2 .topbar-row .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-2 .topbar-row .social a {
    font-size: 13px;
    margin-right: 5px;
    padding: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-2 .topbar-row .social a:last-child {
    margin-right: 0;
}

.topbar.style-2 .topbar-row .social a:hover {
    color: var(--color_primary);
}

.topbar.style-2 .topbar-row .action-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-2 .topbar-row .action-btn a {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-2 .topbar-row .action-btn a:after {
    content: "|";
    padding: 0 5px 0 8px;
}

.topbar.style-2 .topbar-row .action-btn a:last-child:after {
    display: none;
}

.topbar.style-2 .topbar-row .action-btn a:hover {
    color: var(--color_primary);
}

.topbar.style-3 {
    background-color: var(--color_primary);
    color: #ffffff;
}

.topbar.style-3 a {
    color: #ffffff;
}

.topbar.style-3 a:after,
.topbar.style-3 a:before {
    color: #ffffff;
}

.topbar.style-3 .topbar-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topbar.style-3 .topbar-row ul li {
    margin-right: 28px;
    display: inline-block;
    font-size: 14px;
}

.topbar.style-3 .topbar-row ul li i {
    margin-right: 8px;
}

.topbar.style-3 .topbar-row ul li:last-child {
    margin-right: 0;
}

.topbar.style-3 .topbar-row .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-3 .topbar-row .social a {
    font-size: 13px;
    margin-right: 5px;
    padding: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-3 .topbar-row .social a:last-child {
    margin-right: 0;
}

.topbar.style-3 .topbar-row .social a:hover {
    color: var(--color_hover_light);
}

.topbar.style-3 .topbar-row .action-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-3 .topbar-row .action-btn a {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-3 .topbar-row .action-btn a:after {
    content: "|";
    padding: 0 5px 0 8px;
}

.topbar.style-3 .topbar-row .action-btn a:last-child:after {
    display: none;
}

.topbar.style-3 .topbar-row .action-btn a:hover {
    color: var(--color_primary);
}

.topbar.style-4 {
    background-color: rgba(0, 0, 0, 0.21);
    color: #d4d2d2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar.style-4 a {
    color: #d4d2d2;
}

.topbar.style-4 a:after,
.topbar.style-4 a:before {
    color: #d4d2d2;
}

.topbar.style-4 .topbar-row {
    padding: 5px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topbar.style-4 .topbar-row ul li {
    margin-right: 28px;
    display: inline-block;
    font-size: 14px;
}

.topbar.style-4 .topbar-row ul li i {
    margin-right: 8px;
}

.topbar.style-4 .topbar-row ul li:last-child {
    margin-right: 0;
}

.topbar.style-4 .topbar-row .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-4 .topbar-row .social a {
    font-size: 13px;
    margin-right: 5px;
    padding: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-4 .topbar-row .social a:last-child {
    margin-right: 0;
}

.topbar.style-4 .topbar-row .social a:hover {
    color: var(--color_hover_light);
}

.topbar.style-4 .topbar-row .action-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.topbar.style-4 .topbar-row .action-btn a {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topbar.style-4 .topbar-row .action-btn a:after {
    content: "|";
    padding: 0 5px 0 8px;
}

.topbar.style-4 .topbar-row .action-btn a:last-child:after {
    display: none;
}

.topbar.style-4 .topbar-row .action-btn a:hover {
    color: var(--color_primary);
}

.middle-bar.for-mobile-menu {
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2px 15px;
}

.middle-bar.for-mobile-menu ul li {
    margin: 3px 8px;
}

.search-wrap.for-mobile-menu form {
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-wrap.for-mobile-menu input {
    color: #000000;
    border: 0;
    height: 40px;
    padding: 5px 15px;
    background-color: transparent;
}

.search-wrap.for-mobile-menu input:focus {
    outline: none;
}

.search-wrap.for-mobile-menu .search-btn {
    height: 40px;
    padding: 5px 20px;
    background-color: transparent;
    border: 0;
    color: #818284;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-wrap.for-mobile-menu .search-btn:focus {
    outline: none;
}

.search-wrap.for-mobile-menu .search-btn:hover {
    color: var(--color_primary);
}

.search-wrap.for-mobile-menu input::-webkit-input-placeholder {
    color: #818284;
}

.search-wrap.for-mobile-menu input::-moz-placeholder {
    color: #818284;
}

.search-wrap.for-mobile-menu input:-moz-placeholder {
    color: #818284;
}

.search-wrap.for-mobile-menu input:-ms-input-placeholder {
    color: #818284;
}

.btn-ghost.for-mobile-menu {
    border: 1px solid var(--color_primary);
    padding: 8px 20px;
    font-size: 16px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    border-radius: 4px;
    color: var(--color_primary);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-ghost.for-mobile-menu:hover {
    background-color: var(--color_primary);
    color: #ffffff;
}

.action-btn.for-mobile-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}

.action-btn.for-mobile-menu a {
    color: var(--color_text_heading);
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.action-btn.for-mobile-menu a:after {
    content: "|";
    padding: 0 5px 0 8px;
}

.action-btn.for-mobile-menu a:last-child:after {
    display: none;
}

.action-btn.for-mobile-menu a:hover {
    color: var(--color_primary);
}
/*Offscreen menu*/
.offscreen-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.offscreen-navigation .sub-menu {
    display: none;
    background-color: #ffffff;
}
.offscreen-navigation ul li {
  position: relative;
}
.offscreen-navigation .menu>li {
  border-bottom: 1px solid #e9e9e9;
}
.offscreen-navigation .menu>li:last-child {
    border-bottom: 0;
}
.offscreen-navigation ul li span {
    position: absolute;
    right: 0;
    top: 0;
    height: 55px;
    width: 50px;
    z-index: 9;
    cursor: pointer;
}
.offscreen-navigation li>a {
    display: block;
    position: relative;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    background-color: #f3f3f3;
    padding: 12px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.offscreen-navigation .sub-menu li>a {
    border-top: 1px solid #f1f1f1;
    padding-left: 50px;
    font-size: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}
.offscreen-navigation li.menu-item-has-children> a:after {
    content: '\f067';
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    transition: .1s;
    right: 15px;
    position: absolute;
    font-size: 13px;
}

.offscreen-navigation li.menu-item-has-children> a.opened:after {
    content: '\f068';
}
.rt-slide-nav {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    top: 100%;
    z-index: 99;
}

.rt-header-menu {
    padding: 0px;
    border-bottom: 1px solid rgba(81, 81, 81, 0.15);
}

@media (min-width: 991px) {
    .rt-header-menu {
        display: none;
    }
}

.mean-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 15px;
}

.mean-bar img {
    max-width: 100px;
}

body .sidebarBtn {
    display: block;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar {
    background: #000000;
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar:nth-child(2),
body .sidebarBtn .bar:nth-child(3) {
    width: 25px;
    margin-left: 5px;
}

body .sidebarBtn .bar:last-child {
    margin-bottom: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(2),
body.slidemenuon .sidebarBtn .bar:nth-child(3) {
    opacity: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
}

body.slidemenuon .sidebarBtn .bar:nth-child(4) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
    -ms-transform: rotate(-45deg) translate(8px, -8px);
    transform: rotate(-45deg) translate(8px, -8px);
}

/*======================================================================= 5. Main Banner Area =========================================================================*/
.main-banner-wrap-style-1 {
    background-color: #eaf9f6;
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

@media (max-width: 1199px) {
    .main-banner-wrap-style-1 {
        padding-bottom: 15px;
    }
}

.main-banner-wrap-style-1:before {
    content: "";
    position: absolute;
    bottom: -105px;
    width: 100%;
    z-index: 0;
    border-top: 105px solid #eaf9f6;
    border-left: 100vw solid transparent;
    right: 0;
}

.main-banner-wrap-style-1 .right-full-width {
    padding-left: calc((100% - 1170px) / 2);
}

.main-banner-box.style-1 {
    padding-left: 30px;
    padding-right: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .main-banner-box.style-1 {
        display: block;
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .main-banner-box.style-1 .content-box {
        margin-bottom: 50px;
        text-align: center;
    }

    .main-banner-box.style-1 .content-box .title {
        margin-left: auto;
        margin-right: auto;
    }

    .main-banner-box.style-1 .content-box .description {
        margin-left: auto;
        margin-right: auto;
    }

    .main-banner-box.style-1 .content-box .info-list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.main-banner-box.style-1 .content-box .sub-title {
    color: var(--color_primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font_family_heading);
    margin-bottom: 5px;
}

.main-banner-box.style-1 .content-box .title {
    font-weight: 500;
    max-width: 500px;
    width: 100%;
    margin-bottom: 25px;
    font-size: 60px;
}

.main-banner-box.style-1 .content-box .description {
    font-size: 20px;
    max-width: 500px;
    width: 100%;
    margin-bottom: 25px;
}

.main-banner-box.style-1 .content-box .info-list {
    margin-bottom: 55px;
}

.main-banner-box.style-1 .content-box .info-list li {
    font-family: var(--font_family_heading);
    margin-right: 20px;
    font-weight: 600;
    font-size: 18px;
}

.main-banner-box.style-1 .content-box .info-list li i {
    margin-right: 10px;
}

.main-banner-box.style-1 .content-box .info-list li:last-child {
    margin-right: 0;
}

.main-banner-box.style-1 .content-box .info-list li.color-1 i {
    color: #3ad532;
}

.main-banner-box.style-1 .content-box .info-list li.color-2 i {
    color: #ffbb00;
}

.main-banner-box.style-1 .content-box .info-list li.color-3 i {
    color: #ee4158;
}

.main-banner-box.style-1 .content-box .btn-download {
    background-color: #ffffff;
    padding: 13px 30px;
    color: var(--color_primary);
    border: 0;
    font-family: var(--font_family_heading);
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-box.style-1 .content-box .btn-download i {
    margin-right: 10px;
}

.main-banner-box.style-1 .content-box .btn-download:hover {
    background-color: var(--color_primary);
    color: #ffffff;
}

.main-banner-box.style-1 .content-box .btn-download:focus {
    outline: none;
}

.main-banner-box.style-1 .element-box {
    margin-left: 50px;
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

@media (max-width: 991px) {
    .main-banner-box.style-1 .element-box {
        margin-left: 0;
    }
}

.main-banner-box.style-1 .element-box .main-bottom-shape {
    position: absolute;
    top: 25px;
    left: 50px;
    right: -30px;
    z-index: -1;
}

.main-banner-box.style-1 .element-box .course-box {
    max-width: 320px;
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
}

@media (max-width: 1199px) {
    .main-banner-box.style-1 .element-box .course-box {
        display: none;
    }
}

.main-banner-box.style-1 .element-box .course-box .figure-box {
    position: relative;
    z-index: 2;
}

.main-banner-box.style-1 .element-box .course-box .figure-box a {
    display: block;
    height: 166px;
}

.main-banner-box.style-1 .element-box .course-box .figure-box .price {
    background-color: var(--color_primary);
    padding: 2px 15px;
    border-radius: 5px;
    display: inline-block;
    color: #ffffff;
    position: absolute;
    z-index: 1;
    bottom: -15px;
    left: 20px;
}

.main-banner-box.style-1 .element-box .course-box .content-box {
    padding: 30px 20px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.main-banner-box.style-1 .element-box .course-box .content-box:before {
    content: "";
    position: absolute;
    z-index: 1;
    border-top: 40px solid #ffffff;
    border-left: 320px solid transparent;
    width: 100%;
    top: 99%;
    left: 0;
}

.main-banner-box.style-1 .element-box .course-box .content-box .title {
    font-size: 24px;
    margin-bottom: 10px;
}

.main-banner-box.style-1 .element-box .course-box .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-box.style-1 .element-box .course-box .content-box .title a:hover {
    color: var(--color_primary);
}

.main-banner-box.style-1 .element-box .course-indicator {
    position: absolute;
    z-index: 2;
    left: -200px;
    bottom: 0;
}

@media (max-width: 1199px) {
    .main-banner-box.style-1 .element-box .course-indicator {
        display: none;
    }
}

.main-banner-box.style-1 .element-box .chat-btn {
    position: absolute;
    z-index: 1;
    bottom: -50px;
    left: 0;
    right: 200px;
    margin: 0 auto;
    background-color: #0bd28e;
    font-size: 40px;
    color: #ffffff;
    height: 120px;
    width: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-box.style-1 .element-box .chat-btn:hover {
    background-color: #16e99f;
}

@media (max-width: 1199px) {
    .main-banner-box.style-1 .element-box .chat-btn {
        display: none;
    }
}

@media (max-width: 1199px) {
    .main-banner-box.style-1 .element-box .shape-list {
        display: none;
    }
}

.main-banner-box.style-1 .element-box .shape-list li {
    position: absolute;
    z-index: -2;
}

.main-banner-box.style-1 .element-box .shape-list li.shape-1 {
    top: -50px;
    right: 20%;
}

.main-banner-box.style-1 .element-box .shape-list li.shape-2 {
    bottom: -150px;
    right: 10%;
}

.main-banner-wrap-style-2 {
    overflow: hidden;
    min-height: calc(100vh - 121px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.main-banner-wrap-style-2:before {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
}

.main-banner-wrap-style-2 .shape-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 991px) {
    .main-banner-wrap-style-2 .shape-list {
        display: none;
    }
}

.main-banner-wrap-style-2 .shape-list li {
    position: absolute;
    z-index: 1;
}

.main-banner-wrap-style-2 .shape-list li.shape-1 {
    right: 70px;
    bottom: 70px;
}

.main-banner-box.style-2 .content-box .sub-title {
    padding: 5px 20px 5px 5px;
    background-color: #edf6ff;
    font-size: 16px;
    font-family: var(--font_family_heading);
    color: var(--color_primary);
    margin-bottom: 20px;
    border-radius: 45px;
    display: inline-block;
    font-weight: 500;
}

.main-banner-box.style-2 .content-box .sub-title span {
    background-color: var(--color_primary);
    padding: 5px 15px;
    margin-right: 10px;
    border-radius: 45px;
    color: #ffffff;
    display: inline-block;
}

@media (max-width: 767px) {
    .main-banner-box.style-2 .content-box .sub-title {
        padding: 5px 15px;
    }

    .main-banner-box.style-2 .content-box .sub-title span {
        display: none;
    }
}

.main-banner-box.style-2 .content-box .title {
    max-width: 600px;
    width: 100%;
    font-size: 50px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 27px;
    line-height: 1.3;
}

@media (max-width: 1199px) {
    .main-banner-box.style-2 .content-box .title {
        font-size: 46px;
    }
}

@media (max-width: 1199px) {
    .main-banner-box.style-2 .content-box .title {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .main-banner-box.style-2 .content-box .title {
        font-size: 36px;
    }
}

@media (max-width: 1199px) {
    .main-banner-box.style-2 .content-box .title {
        font-size: 34px;
    }
}

.main-banner-box.style-2 .content-box .description {
    max-width: 540px;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 45px;
}

.main-banner-box.style-2 .content-box form {
    max-width: 520px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    padding: 0 5px 0 0;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .main-banner-box.style-2 .content-box form {
        display: block;
        background-color: transparent;
        max-width: 100%;
        padding: 0 0 0;
    }
}

.main-banner-box.style-2 .content-box form input,
.main-banner-box.style-2 .content-box form select {
    background-color: transparent;
    height: 60px;
    border: 0;
    border-radius: 0;
    padding: 5px 20px;
}

@media (max-width: 575px) {

    .main-banner-box.style-2 .content-box form input,
    .main-banner-box.style-2 .content-box form select {
        border-radius: 5px;
        background-color: #ffffff;
    }
}

.main-banner-box.style-2 .content-box form input:focus,
.main-banner-box.style-2 .content-box form select:focus {
    box-shadow: none;
    outline: none;
}

.main-banner-box.style-2 .content-box form select {
    -webkit-appearance: none;
    -moz-appearance: window;
    border: none;
    background-image: url("../../media/elements/element40.png");
    background-repeat: no-repeat;
    background-position: 50% center;
}

@media (max-width: 575px) {
    .main-banner-box.style-2 .content-box form select {
        border-radius: 5px;
        background-position: center right 20px;
        margin-bottom: 10px;
    }
}

.main-banner-box.style-2 .content-box form input {
    border-right: 1px solid #dddddd;
}

@media (max-width: 575px) {
    .main-banner-box.style-2 .content-box form input {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        margin-bottom: 10px;
    }
}

.main-banner-box.style-2 .content-box form .item-btn {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: var(--color_primary);
    color: #ffffff;
    border: 2px solid var(--color_primary);
    font-size: 17px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-box.style-2 .content-box form .item-btn:focus {
    outline: none;
}

.main-banner-box.style-2 .content-box form .item-btn:hover {
    background-color: transparent;
    color: var(--color_primary);
}

@media (max-width: 575px) {
    .main-banner-box.style-2 .content-box form .item-btn {
        width: 100%;
    }
}

.main-banner-wrap-style-3 {
    padding-top: 0;
    overflow: hidden;
}

.main-banner-wrap-style-3 .right-full-width {
    padding-left: calc((100% - 1170px) / 2);
}

@media (max-width: 1229px) {
    .main-banner-wrap-style-3 .right-full-width {
        padding-left: calc((100% - 1115px) / 2);
    }
}

@media (max-width: 1199px) {
    .main-banner-wrap-style-3 .right-full-width {
        padding-left: calc((100% - 935px) / 2);
    }
}

@media (max-width: 991px) {
    .main-banner-wrap-style-3 .right-full-width {
        padding-left: 0;
    }
}

@media (max-width: 1199px) {
    .main-banner-wrap-style-3 {
        padding-bottom: 0;
    }
}

.main-banner-box.style-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .main-banner-box.style-3 {
        -webkit-box-align: inherit;
        -webkit-align-items: inherit;
        -ms-flex-align: inherit;
        align-items: inherit;
    }
}

@media (max-width: 991px) {
    .main-banner-box.style-3 {
        display: block;
    }
}

.main-banner-box.style-3 .content-box {
    max-width: 550px;
    width: 100%;
    margin-right: 50px;
}

@media (max-width: 1199px) {
    .main-banner-box.style-3 .content-box {
        padding: 105px 0 110px;
    }
}

@media (max-width: 991px) {
    .main-banner-box.style-3 .content-box {
        padding: 95px 15px 100px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .main-banner-box.style-3 .content-box {
        padding: 85px 15px 90px;
    }
}

@media (max-width: 575px) {
    .main-banner-box.style-3 .content-box {
        padding: 75px 15px 80px;
    }
}

.main-banner-box.style-3 .content-box .sub-title {
    font-size: 16px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    color: var(--color_primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-banner-box.style-3 .content-box .title {
    font-weight: 500;
    margin-bottom: 25px;
}

.main-banner-box.style-3 .content-box .description {
    color: #4b4b4b;
    font-size: 20px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .main-banner-box.style-3 .content-box .description {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .main-banner-box.style-3 .content-box .description {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .main-banner-box.style-3 .content-box .description {
        margin-bottom: 35px;
    }
}

.main-banner-box.style-3 .figure-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 1;
}

.main-banner-box.style-3 .figure-box .mask-box {
    margin-top: -1px;
    margin-right: -1px;
    -webkit-mask-image: url(../../media/svg/svg1.svg);
    mask-image: url(../../media/svg/svg1.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    position: relative;
    z-index: 1;
    display: block;
}

.main-banner-box.style-3 .figure-box .play-btn {
    margin: 0 auto;
    height: 120px;
    width: 120px;
    background-color: white;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color_primary);
    font-size: 30px;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-box.style-3 .figure-box .play-btn:hover {
    color: var(--color_secondary);
}

@media (max-width: 767px) {
    .main-banner-box.style-3 .figure-box .play-btn {
        height: 110px;
        width: 110px;
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .main-banner-box.style-3 .figure-box .play-btn {
        height: 80px;
        width: 80px;
        font-size: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-banner-box.style-3 .figure-box .shape-list {
        display: none;
    }
}

@media (max-width: 575px) {
    .main-banner-box.style-3 .figure-box .shape-list {
        display: none;
    }
}

.main-banner-box.style-3 .figure-box .shape-list li {
    position: absolute;
}

.main-banner-box.style-3 .figure-box .shape-list .shape1 {
    z-index: 2;
    top: 30px;
    left: 10%;
}

.main-banner-box.style-3 .figure-box .shape-list .shape2 {
    z-index: -1;
    top: 25%;
    left: -8%;
}

.main-banner-box.style-3 .figure-box .shape-list .shape3 {
    z-index: -1;
    bottom: -2%;
    left: 4%;
}

.main-banner-box.style-3 .figure-box .shape-list .shape4 {
    z-index: 2;
    bottom: 3%;
    right: 25%;
}

.main-banner-wrap-style-4 {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.main-banner-wrap-style-4 .swiper-container {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.main-banner-wrap-style-4 .banner-figure {
    height: 100vh;
    width: 100%;
}

.main-banner-wrap-style-4 .banner-figure .swiper-wrapper {
    position: relative;
    z-index: 1;
}

.main-banner-wrap-style-4 .banner-figure .swiper-wrapper:before {
    position: absolute;
    z-index: 1;
    content: "";
    background-color: rgba(0, 0, 0, 0.45);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.main-banner-wrap-style-4 .banner-figure .swiper-slide {
    background-size: cover;
    background-position: center;
}

.main-banner-wrap-style-4 .banner-text {
    padding: 100px 0;
    width: 70%;
    height: auto;
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .main-banner-wrap-style-4 .banner-text {
        padding: 100px 0;
        width: 80%;
    }
}

.main-banner-wrap-style-4 .banner-text .swiper-slide {
    opacity: 0 !important;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.main-banner-wrap-style-4 .banner-text .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.main-banner-wrap-style-4 .banner-text .swiper-slide.swiper-slide-active .title {
    -webkit-animation: fadeInDownCustom 1.5s forwards;
    animation: fadeInDownCustom 1.5s forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.main-banner-wrap-style-4 .banner-text .swiper-slide.swiper-slide-active .description {
    -webkit-animation: fadeInDownCustom 1.5s forwards;
    animation: fadeInDownCustom 1.5s forwards;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.main-banner-wrap-style-4 .banner-text .swiper-slide.swiper-slide-active .btn-wrap {
    -webkit-animation: fadeInDownCustom 1.5s forwards;
    animation: fadeInDownCustom 1.5s forwards;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes fadeInDownCustom {
    0% {
        opacity: 0 !important;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    100% {
        opacity: 1 !important;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownCustom {
    0% {
        opacity: 0 !important;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    100% {
        opacity: 1 !important;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.main-banner-wrap-style-4 .title {
    color: #ffffff;
    line-height: 1.1;
    font-weight: 600;
    max-width: 750px;
    font-size: 70px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .main-banner-wrap-style-4 .title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .main-banner-wrap-style-4 .title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .main-banner-wrap-style-4 .title {
        font-size: 42px;
        line-height: 1.3;
    }
}

@media (max-width: 575px) {
    .main-banner-wrap-style-4 .title {
        font-size: 36px;
    }
}

.main-banner-wrap-style-4 .description {
    color: #ffffff;
    max-width: 550px;
    font-size: 22px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .main-banner-wrap-style-4 .description {
        display: none;
    }
}

.main-banner-wrap-style-4 .swiper-pagination {
    position: relative;
    z-index: 2;
    bottom: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-banner-wrap-style-4 .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    z-index: 2;
    width: 12px;
    height: 12px;
    margin: 0 10px !important;
    border-radius: 50%;
    color: transparent;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-wrap-style-4 .swiper-pagination-bullet:before {
    opacity: 0;
    content: "";
    position: absolute;
    z-index: 1;
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-banner-wrap-style-4 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 0.25;
}

.main-banner-wrap-style-4 .swiper-pagination-bullet:focus {
    outline: none;
}

/*======================================================================= 6. About Area =========================================================================*/
.about-wrap-style-1 {
    padding-top: 195px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .about-wrap-style-1 {
        padding-bottom: 72px;
    }
}

@media (max-width: 991px) {
    .about-wrap-style-1 {
        padding-top: 150px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .about-wrap-style-1 {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .about-wrap-style-1 {
        padding-top: 130px;
        padding-bottom: 50px;
    }
}

.about-wrap-style-1 .shape-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-wrap-style-1 .shape-wrap li {
    position: absolute;
    z-index: 1;
}

.about-wrap-style-1 .shape-wrap li.shape-left {
    left: 15%;
    bottom: 70px;
}

.about-wrap-style-1 .shape-wrap li.shape-right {
    right: 100px;
    top: 260px;
}

@media (max-width: 1700px) {
    .about-wrap-style-1 .shape-wrap {
        display: none;
    }
}

.about-wrap-style-2 {
    overflow: hidden;
    padding-bottom: 105px;
    padding-top: 160px;
}

@media (max-width: 1199px) {
    .about-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .about-wrap-style-2 {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .about-wrap-style-2 {
        padding-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .about-wrap-style-2 {
        padding-bottom: 30px;
    }
}

.about-wrap-style-3 {
    background-color: #f7fbff;
    padding-top: 115px;
    padding-bottom: 90px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .about-wrap-style-3 {
        padding-top: 104px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .about-wrap-style-3 {
        padding-top: 94px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .about-wrap-style-3 {
        padding-top: 84px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .about-wrap-style-3 {
        padding-top: 74px;
        padding-bottom: 50px;
    }
}

.about-wrap-style-4 {
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    .about-wrap-style-4 {
        padding-top: 100px;
        padding-bottom: 110px;
    }
}

@media (max-width: 991px) {
    .about-wrap-style-4 {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .about-wrap-style-4 {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .about-wrap-style-4 {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.about-wrap-style-5 {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 110px;
}

@media (max-width: 1199px) {
    .about-wrap-style-5 {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .about-wrap-style-5 {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .about-wrap-style-5 {
        padding-bottom: 55px;
    }
}

@media (max-width: 575px) {
    .about-wrap-style-5 {
        padding-bottom: 45px;
    }
}

.about-box.style-1 {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.about-box.style-1 .section-title {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 445px;
    width: 100%;
    font-size: 40px;
}

.about-box.style-1 .section-description {
    max-width: 460px;
    width: 100%;
}

.about-box.style-1 .slick-carousel {
    margin-left: 0;
    margin-right: 0;
}

.about-box.style-1 .slick-carousel .single-item {
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

.about-box.style-1 .slick-carousel .single-item:before {
    position: absolute;
    z-index: -1;
    content: url("../../media/elements/element57.png");
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .about-box.style-1 .slick-carousel .single-item:before {
        display: none;
    }
}

.about-box.style-1 .slick-arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    color: #000000;
    height: 30px;
    width: 30px;
    font-size: 12px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    bottom: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-box.style-1 .slick-arrow:hover {
    background-color: var(--color_primary);
    color: #ffffff;
}

.about-box.style-1 .slick-prev {
    right: 95px;
}

@media (max-width: 991px) {
    .about-box.style-1 .slick-prev {
        left: 10px;
        right: inherit;
    }
}

.about-box.style-1 .slick-next {
    right: 60px;
}

@media (max-width: 991px) {
    .about-box.style-1 .slick-next {
        left: 45px;
        right: inherit;
    }
}

.about-box.style-1 .slick-slide {
    margin-left: 0;
    margin-right: 0;
}

.about-box.style-1 .info-box.style-1 {
    margin-bottom: 52px;
}

@media (max-width: 1199px) {
    .about-box.style-1 .info-box.style-1 {
        margin-bottom: 36px;
    }
}

.about-box.style-1 .info-box.style-1 .icon-box {
    line-height: 1;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    font-size: 30px;
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-box.style-1 .info-box.style-1 .icon-box.color-1 {
    color: #24be9b;
    background-color: rgba(36, 190, 155, 0.1);
}

.about-box.style-1 .info-box.style-1 .icon-box.color-2 {
    color: #f7b301;
    background-color: rgba(247, 179, 1, 0.1);
}

.about-box.style-1 .info-box.style-1 .icon-box.color-3 {
    color: #32c5ff;
    background-color: rgba(50, 197, 255, 0.1);
}

.about-box.style-1 .info-box.style-1 .icon-box.color-4 {
    color: #fb751b;
    background-color: rgba(251, 117, 27, 0.1);
}

.about-box.style-1 .info-box.style-1 .content-box .title {
    font-weight: 500;
    font-size: 24px;
}

.about-box.style-2 {
    margin-bottom: 30px;
    text-align: center;
}

.about-box.style-2 .figure-box {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    display: inline-block;
}

@media (max-width: 1199px) {
    .about-box.style-2 .figure-box {
        margin-bottom: 20px;
    }
}

.about-box.style-2 .figure-box .main-figure img {
    border-radius: 25px;
}

@media (max-width: 767px) {
    .about-box.style-2 .figure-box .elements-list {
        display: none;
    }
}

.about-box.style-2 .figure-box .elements-list li {
    position: absolute;
}

.about-box.style-2 .figure-box .elements-list li.sub-figure {
    background-color: #ffffff;
    box-shadow: 0 6px 35px 0 rgba(0, 0, 0, 0.29);
    right: -130px;
    bottom: 40px;
    border-radius: 20px;
}

.about-box.style-2 .figure-box .elements-list li.sub-figure img {
    border-radius: 20px;
}

.about-box.style-2 .figure-box .elements-list li.institute-icon {
    height: 76px;
    width: 76px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 92px 0 rgba(0, 0, 0, 0.18);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 38px;
    color: var(--color_primary);
    bottom: -38px;
    left: 50%;
}

.about-box.style-2 .figure-box .elements-list li.student-icon {
    height: 88px;
    width: 90px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 174px 0 rgba(0, 0, 0, 0.07);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 38px;
    color: var(--color_secondary);
    bottom: 22%;
    left: -45px;
}

.about-box.style-2 .figure-box .elements-list li.new-course {
    border-radius: 7px;
    background-color: #ffffff;
    padding: 8px 20px;
    color: #3c3c3c;
    font-size: 15px;
    font-family: var(--font_family_heading);
    box-shadow: 0 6px 174px 0 rgba(0, 0, 0, 0.07);
    left: -145px;
    bottom: 50%;
}

.about-box.style-2 .figure-box .elements-list li.new-course img {
    margin-left: 12px;
}

.about-box.style-2 .figure-box .elements-list li.total-student {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 20px 15px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 6px 174px 0 rgba(0, 0, 0, 0.07);
    left: -145px;
    top: 12%;
    font-size: 34px;
    font-weight: 600;
}

.about-box.style-2 .figure-box .elements-list li.total-student i {
    color: #15d5b8;
    font-size: 42px;
    margin-right: 15px;
}

.about-box.style-2 .figure-box .elements-list li.total-student .counting-text {
    min-width: 60px;
}

.about-box.style-2 .figure-box .elements-list li.passing-percentage {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #f2245e;
    padding: 9px 16px 7px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 174px 0 rgba(0, 0, 0, 0.2);
    left: -30px;
    top: -15px;
    font-size: 16px;
    font-weight: 600;
}

.about-box.style-2 .figure-box .elements-list li.passing-percentage i {
    margin-right: 10px;
    font-size: 22px;
}

.about-box.style-2 .figure-box .elements-list li.category-info {
    position: absolute;
    top: -40px;
    right: -95px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 174px 0 rgba(0, 0, 0, 0.07);
    padding: 20px 40px;
}

.about-box.style-2 .figure-box .elements-list li.category-info .icon-box {
    margin-right: 15px;
    height: 43px;
    width: 43px;
    background-color: #a11efd;
    font-size: 30px;
    color: #ffffff;
    border-radius: 7px;
    font-size: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-box.style-2 .figure-box .elements-list li.category-info .content-box .category-number {
    font-size: 34px;
    font-weight: 600;
    font-family: var(--font_family_heading);
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-box.style-2 .figure-box .elements-list li.category-info .content-box .category-number .counting-text {
    min-width: 40px;
}

.about-box.style-2 .figure-box .elements-list li.category-info .content-box .label {
    color: #919090;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font_family_heading);
    letter-spacing: 2px;
}

.about-box.style-2 .figure-box .shape-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (max-width: 767px) {
    .about-box.style-2 .figure-box .shape-list {
        display: none;
    }
}

.about-box.style-2 .figure-box .shape-list li {
    position: absolute;
    z-index: -1;
}

.about-box.style-2 .figure-box .shape-list li.big-circle {
    top: -70px;
    right: -125px;
}

.about-box.style-2 .figure-box .shape-list li.step-circle {
    left: -150px;
    bottom: -40px;
}

.about-box.style-2 .figure-box .shape-list li.small-circle {
    left: -155px;
    bottom: -10px;
}

.about-box.style-2 .content-box {
    text-align: left;
}

.about-box.style-2 .sub-title {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--color_primary);
    font-family: var(--font_family_heading);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.about-box.style-2 .title {
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 40px;
}

.about-box.style-2 .description {
    margin-bottom: 15px;
}

.about-box.style-2 .info-list {
    margin-bottom: 30px;
}

.about-box.style-2 .info-list li {
    padding-left: 30px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    margin-bottom: 5px;
}

.about-box.style-2 .info-list li:last-child {
    margin-bottom: 0;
}

.about-box.style-2 .info-list li:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #45f17e;
}

.about-box.style-2 .btn-wrap {
    font-size: 17px;
}

.about-box.style-2 .btn-wrap a {
    color: var(--color_primary);
    padding-left: 5px;
}

.about-box.style-2 .btn-wrap a:hover {
    text-decoration: underline;
}

.about-box.style-3 {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.about-box.style-3 .shape-wrap {
    position: absolute;
    z-index: -1;
    right: -50px;
    bottom: -50px;
}

.about-box.style-3 .about-list li {
    margin-bottom: 10px;
    border: 1px solid #ececec;
    padding: 20px 40px 19px;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .about-box.style-3 .about-list li {
        padding: 20px 20px 19px;
    }
}

.about-box.style-3 .about-list li:last-child {
    margin-bottom: 0;
}

.about-box.style-3 .about-list li .icon-box {
    margin-right: 30px;
    color: #232323;
    line-height: 1.4;
    font-size: 54px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-box.style-3 .about-list li .content-box .title {
    font-weight: 500;
    margin-bottom: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-box.style-3 .about-list li .content-box .description {
    margin-bottom: 5px;
}

.about-box.style-3 .about-list li:hover {
    border: 1px solid #ffffff;
    background-color: #ffffff;
}

.about-box.style-3 .about-list li:hover .icon-box {
    color: var(--color_primary);
}

.about-box.style-3 .about-list li:hover .content-box .title {
    color: var(--color_primary);
}

.about-box.style-3 .figure-box img {
    border-radius: 15px;
}

.about-box.style-4 {
    margin-bottom: 30px;
    text-align: center;
}

.about-box.style-4 .figure-box .mask-box {
    margin-top: -1px;
    margin-right: -1px;
    -webkit-mask-image: url(../../media/svg/svg4.svg);
    mask-image: url(../../media/svg/svg4.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    position: relative;
    z-index: 1;
    display: block;
}

@media (max-width: 991px) {
    .about-box.style-4 .figure-box .shape-list {
        display: none;
    }
}

.about-box.style-4 .figure-box .shape-list li {
    position: absolute;
}

.about-box.style-4 .figure-box .shape-list .shape1 {
    z-index: -1;
    top: 20px;
    left: 15%;
}

.about-box.style-4 .figure-box .shape-list .shape2 {
    z-index: -1;
    bottom: 0;
    right: 0;
}

.about-box.style-4 .content-box {
    text-align: left;
}

.about-box.style-4 .sub-title {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--color_primary);
    font-family: var(--font_family_heading);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.about-box.style-4 .title {
    margin-bottom: 22px;
    font-weight: 500;
}

.about-box.style-4 .description {
    margin-bottom: 30px;
}

.about-box.style-4 .info-list {
    margin-bottom: 50px;
}

.about-box.style-4 .info-list li {
    padding-left: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.about-box.style-4 .info-list li:last-child {
    margin-bottom: 0;
}

.about-box.style-4 .info-list li:before {
    position: absolute;
    left: 8px;
    top: 3px;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #1dc76d;
    font-size: 14px;
}

.about-box.style-4 .info-list li:after {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #e4e4e4;
    left: 0;
    top: -2px;
}

.about-box.style-5 {
    margin-bottom: 30px;
    text-align: center;
}

.about-box.style-5 .figure-box {
    margin-right: 20px;
}

@media (max-width: 991px) {
    .about-box.style-5 .figure-box {
        margin-right: 0;
    }
}

.about-box.style-5 .figure-box .mask-box {
    margin-top: -1px;
    margin-right: -1px;
    -webkit-mask-image: url(../../media/svg/svg2.svg);
    mask-image: url(../../media/svg/svg2.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    position: relative;
    z-index: 1;
    display: block;
}

@media (max-width: 991px) {
    .about-box.style-5 .figure-box .shape-list {
        display: none;
    }
}

.about-box.style-5 .figure-box .shape-list li {
    position: absolute;
}

.about-box.style-5 .figure-box .shape-list .shape1 {
    z-index: -1;
    bottom: 0;
    left: 0;
}

.about-box.style-5 .figure-box .shape-list .shape2 {
    z-index: -1;
    bottom: 0;
    right: 50px;
}

.about-box.style-5 .content-box {
    text-align: left;
}

.about-box.style-5 .sub-title {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--color_primary);
    font-family: var(--font_family_heading);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.about-box.style-5 .title {
    margin-bottom: 22px;
    font-weight: 500;
}

.about-box.style-5 .description {
    margin-bottom: 30px;
}

.about-box.style-5 .info-list {
    margin-bottom: 50px;
}

.about-box.style-5 .info-list li {
    padding-left: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.about-box.style-5 .info-list li:last-child {
    margin-bottom: 0;
}

.about-box.style-5 .info-list li:before {
    position: absolute;
    left: 8px;
    top: 3px;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #1dc76d;
    font-size: 14px;
}

.about-box.style-5 .info-list li:after {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #e4e4e4;
    left: 0;
    top: -2px;
}

.about-wrap-style-6 {
    overflow: hidden;
    padding-top: 115px;
    padding-bottom: 75px;
}

@media (max-width: 1199px) {
    .about-wrap-style-6 {
        padding-top: 105px;
        padding-bottom: 65px;
    }
}

@media (max-width: 1199px) {
    .about-wrap-style-6 {
        padding-top: 95px;
        padding-bottom: 55px;
    }
}

@media (max-width: 1199px) {
    .about-wrap-style-6 {
        padding-top: 85px;
        padding-bottom: 45px;
    }
}

@media (max-width: 1199px) {
    .about-wrap-style-6 {
        padding-top: 75px;
        padding-bottom: 35px;
    }
}

.about-wrap-style-6 .about-inner {
    position: relative;
    min-height: 615px;
}

@media (max-width: 1199px) {
    .about-wrap-style-6 .about-inner {
        text-align: center;
    }
}

.about-wrap-style-6 .shape-wrap {
    list-style: none;
}

@media (max-width: 1199px) {
    .about-wrap-style-6 .shape-wrap {
        display: none;
    }
}

.about-wrap-style-6 .shape-wrap li {
    position: absolute;
}

.about-wrap-style-6 .shape-wrap li:nth-child(1n) {
    z-index: 3;
    top: -13%;
    left: 10%;
    bottom: inherit;
    right: inherit;
}

.about-wrap-style-6 .shape-wrap li:nth-child(2n) {
    z-index: 1;
    top: 10%;
    left: 25%;
    bottom: inherit;
    right: inherit;
}

.about-wrap-style-6 .shape-wrap li:nth-child(3n) {
    z-index: 3;
    top: 2%;
    left: inherit;
    bottom: inherit;
    right: 21%;
}

.about-wrap-style-6 .shape-wrap li:nth-child(4n) {
    z-index: 1;
    top: 20%;
    left: inherit;
    bottom: inherit;
    right: 10%;
}

.about-wrap-style-6 .shape-wrap li:nth-child(5n) {
    z-index: 1;
    top: 83%;
    left: inherit;
    bottom: inherit;
    right: 56%;
}

.about-wrap-style-6 .shape-wrap li:nth-child(6n) {
    z-index: 3;
    top: inherit;
    left: 43%;
    bottom: -2%;
    right: inherit;
}

.about-wrap-style-6 .shape-wrap li:nth-child(7n) {
    z-index: 1;
    top: 59%;
    left: inherit;
    bottom: inherit;
    right: -19%;
}

.about-wrap-style-6 .shape-wrap li:nth-child(8n) {
    z-index: 1;
    top: 37%;
    left: inherit;
    bottom: inherit;
    right: -24%;
}

.about-wrap-style-6 .figure-wrap {
    list-style: none;
    padding-left: 0;
}

.about-wrap-style-6 .figure-wrap li {
    position: absolute;
    z-index: 1;
}

@media (max-width: 1199px) {
    .about-wrap-style-6 .figure-wrap li {
        position: inherit;
        display: contents;
    }
}

@media (max-width: 767px) {
    .about-wrap-style-6 .figure-wrap li {
        display: block;
    }

    .about-wrap-style-6 .figure-wrap li img {
        width: 100%;
    }
}

.about-wrap-style-6 .figure-wrap li:nth-child(1n) {
    border: 15px solid transparent;
    top: 0;
    bottom: inherit;
    left: 0;
    right: inherit;
}

.about-wrap-style-6 .figure-wrap li:nth-child(2n) {
    border: 15px solid transparent;
    top: 15%;
    bottom: inherit;
    left: 24.5%;
    right: inherit;
}

.about-wrap-style-6 .figure-wrap li:nth-child(3n) {
    border: 15px solid #ffffff;
    top: 5%;
    bottom: inherit;
    left: inherit;
    right: 21%;
}

.about-wrap-style-6 .figure-wrap li:nth-child(4n) {
    border: 15px solid #ffffff;
    top: inherit;
    bottom: 0;
    left: 0;
    right: inherit;
}

.about-wrap-style-6 .figure-wrap li:nth-child(5n) {
    border: 15px solid #ffffff;
    top: inherit;
    bottom: 4%;
    right: 26%;
    left: inherit;
}

.about-wrap-style-6 .figure-wrap li:nth-child(6n) {
    border: 15px solid #ffffff;
    top: inherit;
    bottom: 17%;
    left: inherit;
    right: 0;
}

/*======================================================================= 7. Call To Action Area =========================================================================*/
.call-to-action-wrap-style-1 {
    padding: 55px 0 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #edf6ff;
}

.call-to-action-wrap-style-1 .shape-wrap {
    list-style: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
}

.call-to-action-wrap-style-1 .shape-wrap li {
    position: absolute;
    z-index: 0;
}

.call-to-action-wrap-style-1 .shape-wrap li:nth-child(1n) {
    left: calc(((100% - 1200px) / 2) + 70px);
    right: inherit;
    bottom: 0;
}

.call-to-action-wrap-style-1 .shape-wrap li:nth-child(2n) {
    left: calc(((100% - 1200px) / 2) + 130px);
    right: inherit;
    bottom: 0;
}

.call-to-action-wrap-style-1 .shape-wrap li:nth-child(3n) {
    right: calc(((100% - 1200px) / 2) - 100px);
    left: initial;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.call-to-action-wrap-style-2 {
    overflow: hidden;
    padding: 35px 0 16px;
    position: relative;
    z-index: 1;
}

.call-to-action-wrap-style-2:after {
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #f6f3ed;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .call-to-action-wrap-style-2:after {
        width: 100%;
    }
}

.call-to-action-wrap-style-2:before {
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #fafdff;
    height: 100%;
    width: 50%;
    top: 0;
    right: 0;
}

@media (max-width: 767px) {
    .call-to-action-wrap-style-2:before {
        display: none;
    }
}

.call-to-action-wrap-style-2 .center-shape {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .call-to-action-wrap-style-2 .center-shape {
        display: none;
    }
}

.call-to-action-wrap-style-2 .shape-wrap-left {
    position: absolute;
    z-index: 0;
    left: 0;
    top: -100px;
}

.call-to-action-wrap-style-2 .shape-wrap-right {
    list-style: none;
}

.call-to-action-wrap-style-2 .shape-wrap-right li {
    position: absolute;
    z-index: 0;
}

.call-to-action-wrap-style-2 .shape-wrap-right li:nth-child(1n) {
    top: -50px;
    right: calc(((100% - 1200px) / 2) - 130px);
}

.call-to-action-wrap-style-2 .shape-wrap-right li:nth-child(2n) {
    top: -10px;
    right: calc(((100% - 1200px) / 2) - 110px);
}

.call-to-action-wrap-style-3 {
    padding-top: 0;
    padding-bottom: 0;
}

.call-to-action-wrap-style-3 .inner-bg {
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;
    z-index: 1;
}

.call-to-action-wrap-style-3 .inner-bg:before {
    content: "";
    background-color: #f4faff;
    height: 100%;
    width: 30%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
}

.call-to-action-wrap-style-3 .inner-bg:after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    border-top: 700px solid #f4faff;
    border-right: 230px solid transparent;
    left: 30%;
}

@media (max-width: 991px) {
    .call-to-action-wrap-style-3 .inner-bg {
        background-size: cover;
    }

    .call-to-action-wrap-style-3 .inner-bg:before {
        opacity: 0.5;
        background-color: #000000;
        height: 100%;
        width: 100%;
    }

    .call-to-action-wrap-style-3 .inner-bg:after {
        display: none;
    }
}

.call-to-action-wrap-style-4 {
    padding: 70px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #0071dc;
}

.call-to-action-wrap-style-4 .shape-wrap {
    list-style: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
}

.call-to-action-wrap-style-4 .shape-wrap li {
    position: absolute;
    z-index: 0;
    bottom: 0;
}

.call-to-action-wrap-style-4 .shape-wrap li:nth-child(1n) {
    left: calc(((100% - 1200px) / 2) + 70px);
}

.call-to-action-wrap-style-4 .shape-wrap li:nth-child(2n) {
    left: calc(((100% - 1200px) / 2) + 130px);
}

.call-to-action-wrap-style-4 .shape-wrap li:nth-child(3n) {
    right: calc(((100% - 1200px) / 2) - 100px);
    left: initial;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.call-to-action-box.style-1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.call-to-action-box.style-1 .content-box {
    padding-right: 30px;
    margin-bottom: 15px;
}

.call-to-action-box.style-1 .sub-title {
    color: var(--color_primary);
    font-family: var(--font_family_heading);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.call-to-action-box.style-1 .title {
    font-size: 40px;
    font-weight: 500;
}

.call-to-action-box.style-1 .item-btn {
    margin-bottom: 30px;
}

.call-to-action-box.style-2 {
    margin-bottom: 40px;
}

.call-to-action-box.style-2 .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.call-to-action-box.style-2 .description {
    max-width: 360px;
    width: 100%;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .call-to-action-box.style-2 .description {
        max-width: 100%;
    }
}

.call-to-action-box.style-3 .title {
    font-size: 40px;
    font-weight: 600;
    max-width: 400px;
    width: 100%;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .call-to-action-box.style-3 .title {
        color: #ffffff;
    }
}

.call-to-action-box.style-3 .description {
    max-width: 360px;
    width: 100%;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .call-to-action-box.style-3 .description {
        color: #ffffff;
    }
}

.call-to-action-box.style-3 .btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .call-to-action-box.style-3 .btn-wrap .item-btn:hover {
        color: #ffffff;
        border: 1px solid #ffffff;
    }
}

.call-to-action-box.style-3 .btn-wrap img {
    margin-left: 25px;
    margin-top: -30px;
}

.call-to-action-box.style-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.call-to-action-box.style-4 .content-box {
    margin-right: 30px;
    margin-bottom: 20px;
}

.call-to-action-box.style-4 .sub-title {
    color: #ffffff;
    font-family: var(--font_family_heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.call-to-action-box.style-4 .title {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
}

.call-to-action-box.style-4 .item-btn {
    margin-bottom: 16px;
}

.call-to-action-wrap-style-5 {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.call-to-action-wrap-style-5:before {
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #1c2a44;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}

.call-to-action-wrap-style-5 .inner {
    background-color: var(--color_primary);
    border-radius: 15px;
}

.call-to-action-box.style-5 .content-box {
    text-align: center;
    padding: 56px 15px 70px;
}

.call-to-action-box.style-5 .content-box .sub-title {
    color: #ffffff;
    font-family: var(--font_family_heading);
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 991px) {
    .call-to-action-box.style-5 .content-box .sub-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .call-to-action-box.style-5 .content-box .sub-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .call-to-action-box.style-5 .content-box .sub-title {
        font-size: 24px;
    }
}

.call-to-action-box.style-5 .content-box .title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 27px;
}

@media (max-width: 991px) {
    .call-to-action-box.style-5 .content-box .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .call-to-action-box.style-5 .content-box .title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .call-to-action-box.style-5 .content-box .title {
        font-size: 28px;
    }
}

.call-to-action-wrap-style-7 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.call-to-action-box.style-7 {
    text-align: center;
}

.call-to-action-box.style-7 .title {
    font-weight: 500;
    color: var(--color_primary);
}

.call-to-action-box.style-7 .description {
    font-size: 20px;
    margin-bottom: 25px;
}

/*======================================================================= 9. Blog Area =========================================================================*/
.blog-box.style-3 .entry-meta li {
    margin-bottom: 0px;
}

.entry-meta li {
    font-size: 14px;
    color: #767575;
    margin-right: 15px;
}

.entry-meta li:last-child {
    margin-right: 0;
}

.entry-meta li a {
    color: #767575;
    transition: all 0.3s ease-in-out;
}

.entry-meta li a:hover {
    color: var(--color_primary);
}

.entry-meta li i {
    margin-right: 7px;
}

.blog-box {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.blog-box .figure-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blog-box .figure-box img {
    -webkit-transform: scale(1.01, 1.01);
    -ms-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
}

.blog-box.style-1 .figure-box img {
    width: auto;
}

.blog-box .category-name {
    font-size: 15px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-box .content-box .title {
    font-weight: 500;
    margin-bottom: 14px;
}

.blog-box .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-box .content-box .title a:hover {
    color: var(--color_primary);
}

.blog-box:hover .figure-box img {
    -webkit-transform: scale(1.12, 1.12);
    -ms-transform: scale(1.12, 1.12);
    transform: scale(1.12, 1.12);
}

.blog-box.style-1 .figure-box {
    border-radius: 5px;
}

.blog-box.style-1 .category-name {
    border-radius: 5px 5px 0 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    background-color: var(--color_primary);
    padding: 7px 14px;
}

.blog-box.style-1 .category-name:hover {
    color: #161616;
    background-color: var(--color_secondary);
}

.blog-box.style-1 .category-name a {
    color: white;
}

.blog-box.style-1 .category-name a:hover {
    color: black;
}

.blog-box.style-1 .content-box {
    border-radius: 0 5px 5px 5px;
    position: relative;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 30px;
    padding: 25px 30px;
    bottom: 0px;
    background-color: #ffffff;
    box-shadow: 0 0 90px 0 rgb(0 0 0 / 8%);
}

@media (max-width: 575px) {
    .no-thumbnail .blog-box.style-1 .content-box{
        margin: 0;
    }
}

.blog-box.style-1.grid-left-right .content-box {
    padding: 20px 12px;
}

.has-thumbnail .blog-box.style-1 .content-box {
    margin-top: -100px;
}

.blog-box.style-1 .content-box .title {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 7px;
}

.blog-box.style-1 .content-box .title a:hover {
    color: var(--color_primary);
}

@media (max-width: 1199px) {
    .blog-box.style-2 {
        margin-bottom: 30px;
    }
}

.blog-box.style-2 .figure-box {
    border-radius: 10px;
}

.blog-box.style-2 .category-name {
    margin-bottom: 5px;
}

.blog-box.style-2 .category-name:hover {
    color: var(--color_hover_light);
}

.blog-box.style-2 .content-box {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 10px;
    padding: 25px 25px;
    bottom: 30px;
}

@media (max-width: 991px) {
    .blog-box.style-2 .content-box {
        padding: 15px;
        bottom: 0;
        margin: 0 0;
    }
}

.blog-box.style-2 .content-box .title {
    font-weight: 600;
}

@media (max-width: 991px) {
    .blog-box.style-2 .content-box .title {
        font-size: 24px;
    }
}

.blog-box.style-2 .content-box .title a {
    color: #ffffff;
}

.blog-box.style-2 .content-box .title a:hover {
    color: var(--color_hover_light);
}

.blog-box.style-2 .content-box .entry-meta li {
    font-size: 16px;
    color: #ffffff;
}

.blog-box.style-3 .content-box a.btn-text {
    padding: 0;
}

.blog-box.style-4 .category-name:hover a {
    color: #161616;
}

.blog-box.style-4 .category-name a {
    color: #fff;
}

.blog-box.style-4 .figure-box {
    border-radius: 5px;
}

.blog-box.style-4 .category-name {
    border-radius: 5px 5px 0 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    background-color: var(--color_primary);
    padding: 7px 14px;
}

.blog-box.style-4 .category-name:hover {
    color: #161616;
    background-color: var(--color_secondary);
}

.single-blog-wrap .main-figure-box .category-name:hover {
    color: #161616;
    background-color: var(--color_secondary);
}

.single-blog-wrap .main-figure-box .category-name:hover a {
    color: #000000;
}

.blog-box.style-4 .content-box {
    border-radius: 0 5px 5px 5px;
    position: relative;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 30px;
    padding: 25px 30px;
    bottom: 0px;
    background-color: #ffffff;
    box-shadow: 0 0 90px 0 rgba(0, 0, 0, 0.08);
    margin-top: -100px;
}

.blog-box.style-4 .content-box .title {
    font-size: 30px;
    margin-bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1199px) {
    .blog-box.style-4 .content-box .title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .blog-box.style-4 .content-box .title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .blog-box.style-4 .content-box .title {
        font-size: 24px;
    }
}

.blog-box.style-4 .content-box .title a:hover {
    color: var(--color_primary);
}

.blog-box.style-4 .content-box .description,
.blog-box.style-1 .content-box .description {
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-box.style-4 .content-box .entry-meta,
.blog-box.style-1 .content-box .entry-meta {
    margin-bottom: 10px;
}

.blog-box.style-4 .content-box .entry-meta li,
.blog-box.style-1 .content-box .entry-meta li {
    margin-right: 20px;
}

.blog-wrap-style-1 {
    overflow: hidden;
    padding-top: 109px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .blog-wrap-style-1 {
        padding-top: 99px;
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .blog-wrap-style-1 {
        padding-top: 89px;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .blog-wrap-style-1 {
        padding-top: 79px;
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .blog-wrap-style-1 {
        padding-top: 69px;
        padding-bottom: 20px;
    }
}

.blog-wrap-style-2 {
    padding-top: 0;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .blog-wrap-style-2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .blog-wrap-style-2 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .blog-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .blog-wrap-style-2 {
        padding-bottom: 50px;
    }
}

.blog-wrap-style-3 {
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .blog-wrap-style-3 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .blog-wrap-style-3 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .blog-wrap-style-3 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .blog-wrap-style-3 {
        padding-bottom: 50px;
    }
}

.single-blog-wrap .main-figure-box {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.single-blog-wrap .main-figure-box .category-name {
    font-size: 15px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    display: inline-block;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    top: 30px;
    right: 60px;
    background-color: var(--color_primary);
    padding: 7px 14px;
}

@media (max-width: 767px) {
    .single-blog-wrap .main-figure-box .category-name {
        right: auto;
        left: 20px;
        bottom: 20px;
        top: auto;
    }
}

@media (max-width: 575px) {
    .single-blog-wrap .main-figure-box .category-name {
        right: auto;
        left: 20px;
        bottom: 20px;
        top: auto;
    }
}

.single-blog-wrap .inner-figure-box {
    margin-bottom: 30px;
}

.single-blog-wrap .inner-figure-box img {
    border-radius: 5px;
}

.single-blog-wrap .edhub-full-width .blog-content-box {
    padding: 0 80px;
}

@media (max-width: 991px) {
    .single-blog-wrap .blog-content-box {
        padding: 0;
    }
}

.single-blog-wrap .blog-content-box .main-title {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 38px;
}

.single-blog-wrap .blog-content-box .entry-meta {
    margin-bottom: 20px;
}

.single-blog-wrap .category-name a {
    color: #fff;
}

.single-blog-wrap .blog-content-box h3.inner-title {
    font-size: 24px;
    font-weight: 500;
}

.single-blog-wrap .blog-content-box h4.inner-title {
    font-size: 20px;
    font-weight: 500;
}

.single-blog-wrap .blog-content-box .list-info {
    margin-bottom: 30px;
}

.single-blog-wrap .blog-content-box .list-info li {
    padding-left: 30px;
    margin-bottom: 7px;
    position: relative;
    font-weight: 500;
    z-index: 1;
}

.single-blog-wrap .blog-content-box .list-info li:last-child {
    margin-bottom: 0;
}

.single-blog-wrap .blog-content-box .list-info li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 2px;
    font-size: 14px;
}

.single-blog-wrap .blog-content-box .blog-tag {
    border-top: 1px solid #dddddd;
    margin-top: 30px;
    padding-top: 30px;
    margin-bottom: 20px;
    clear: both;
}

.single-blog-wrap .blog-content-box .blog-tag ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .single-blog-wrap .blog-content-box .blog-tag ul {
        display: block;
    }
}

.single-blog-wrap .blog-content-box .blog-tag ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.single-blog-wrap .blog-content-box .blog-tag ul li.social-wrap .social-title {
    margin-right: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.single-blog-wrap .blog-content-box .blog-tag ul li.social-wrap .item-social a {
    color: #9f9f9f;
    display: inline-block;
    padding: 0 5px;
    font-size: 15px;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-blog-wrap .blog-content-box .blog-tag ul li.social-wrap .item-social a:last-child {
    margin-right: 0;
}

.single-blog-wrap .blog-content-box .blog-tag ul li.social-wrap .item-social a:hover {
    color: var(--color_primary);
}

.single-blog-wrap .blog-content-box .blog-tag ul li.tag-wrap .tag-title {
    margin-right: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.single-blog-wrap .blog-content-box .blog-tag ul li.tag-wrap .item-tag a {
    color: #000000;
    background-color: transparent;
    font-size: 15px;
    margin-right: 5px;
    font-weight: 500;
    display: inline-block;
    padding: 0 13px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-blog-wrap .blog-content-box .blog-tag ul li.tag-wrap .item-tag a:hover {
    color: var(--color_primary);
}

.single-blog-wrap .blog-content-box .blog-tag ul li.tag-wrap .item-tag a:last-child {
    margin-right: 0;
}

.single-blog-wrap .blog-content-box .blog-author {
    margin-bottom: 50px;
    border-radius: 5px;
    background-color: #f6fbff;
    padding: 35px;
}

@media (max-width: 575px) {
    .single-blog-wrap .blog-content-box .blog-author .media {
        display: block;
    }
}

.single-blog-wrap .blog-content-box .blog-author .media img {
    border-radius: 50%;
    margin-right: 25px;
}

@media (max-width: 575px) {
    .single-blog-wrap .blog-content-box .blog-author .media img {
        margin-bottom: 20px;
    }
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body {
    position: relative;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .sub-title {
    color: var(--color_primary);
    font-size: 15px;
    margin-bottom: 10px;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 5px;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li {
    margin-right: 10px;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li:last-child {
    margin-right: 0;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.facebook a {
    background-color: #4064ab;
    border: 0.0625rem solid #4064ab;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.facebook a:hover {
    background-color: transparent;
    color: #4064ab;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.twitter a {
    background-color: #21a1f0;
    border: 0.0625rem solid #21a1f0;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.twitter a:hover {
    background-color: transparent;
    color: #21a1f0;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.youtube a {
    background-color: #e90506;
    border: 0.0625rem solid #e90506;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.youtube a:hover {
    background-color: transparent;
    color: #e90506;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.linkedin a {
    background-color: #2867b2;
    border: 0.0625rem solid #2867b2;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.linkedin a:hover {
    background-color: transparent;
    color: #2867b2;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.instagram a {
    background-color: #FD1D1D;
    border: 0.0625rem solid #FD1D1D;
}

.single-blog-wrap .blog-content-box .blog-author .media .media-body .item-social li.instagram a:hover {
    background-color: transparent;
    color: #FD1D1D;
}

.single-blog-wrap .blog-content-box .leave-comment {
    background-color: #ffffff;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box .form-group {
    margin-bottom: 30px;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box .form-group:last-child {
    margin-bottom: 0;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box .form-group .form-control {
    color: #000000;
    font-size: 16px;
    padding: 15px 20px;
    border: 0;
    background-color: #f7f7f7;
    border-radius: 0;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box .form-group input {
    height: 50px;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box input.form-control::-webkit-input-placeholder,
.single-blog-wrap .blog-content-box .leave-comment .leave-form-box textarea.form-control::-webkit-input-placeholder {
    color: #818080;
    font-size: 15px;
    font-weight: 300;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box input.form-control::-moz-placeholder,
.single-blog-wrap .blog-content-box .leave-comment .leave-form-box textarea.form-control::-moz-placeholder {
    color: #818080;
    font-size: 15px;
    font-weight: 300;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box input.form-control:-moz-placeholder,
.single-blog-wrap .blog-content-box .leave-comment .leave-form-box textarea.form-control:-moz-placeholder {
    color: #818080;
    font-size: 15px;
    font-weight: 300;
}

.single-blog-wrap .blog-content-box .leave-comment .leave-form-box input.form-control:-ms-input-placeholder,
.single-blog-wrap .blog-content-box .leave-comment .leave-form-box textarea.form-control:-ms-input-placeholder {
    color: #818080;
    font-size: 15px;
    font-weight: 300;
}

/*======================================================================= 10. Course Area =========================================================================*/
.course-wrap-style-1 {
    padding-top: 109px;
    padding-bottom: 90px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .course-wrap-style-1 {
        padding-top: 99px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .course-wrap-style-1 {
        padding-top: 89px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .course-wrap-style-1 {
        padding-top: 79px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .course-wrap-style-1 {
        padding-top: 69px;
        padding-bottom: 50px;
    }
}

.course-wrap-style-2 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding-top: 113px;
    padding-bottom: 160px;
}

@media (max-width: 1199px) {
    .course-wrap-style-2 {
        padding-top: 103px;
        padding-bottom: 150px;
    }
}

@media (max-width: 991px) {
    .course-wrap-style-2 {
        padding-top: 93px;
        padding-bottom: 140px;
    }
}

@media (max-width: 767px) {
    .course-wrap-style-2 {
        padding-top: 83px;
        padding-bottom: 130px;
    }
}

@media (max-width: 575px) {
    .course-wrap-style-2 {
        padding-top: 73px;
        padding-bottom: 120px;
    }
}

.course-wrap-style-2 .slick-dots {
    position: absolute;
    padding: 0;
    margin: 0;
    list-style: none;
    bottom: -45px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.course-wrap-style-2 .slick-dots li {
    margin: 0 2px;
    padding: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.course-wrap-style-2 .slick-dots li button {
    text-indent: -99999999px;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    border: 1px solid rgba(22, 22, 22, 0.2);
    padding: 0;
    background-color: transparent;
}

.course-wrap-style-2 .slick-dots li button:focus {
    outline: none;
}

.course-wrap-style-2 .slick-dots li.slick-active button {
    border: 1px solid #0071dc;
}

.course-wrap-style-3 {
    padding-top: 114px;
    padding-bottom: 82px;
}

@media (max-width: 1199px) {
    .course-wrap-style-3 {
        padding-top: 104px;
        padding-bottom: 72px;
    }
}

@media (max-width: 991px) {
    .course-wrap-style-3 {
        padding-top: 94px;
        padding-bottom: 62px;
    }
}

@media (max-width: 767px) {
    .course-wrap-style-3 {
        padding-top: 84px;
        padding-bottom: 52px;
    }
}

@media (max-width: 575px) {
    .course-wrap-style-3 {
        padding-top: 74px;
        padding-bottom: 42px;
    }
}

.course-wrap-style-4 {
    padding-top: 110px;
    padding-bottom: 90px;
    background-color: #f6fbff;
}

@media (max-width: 1199px) {
    .course-wrap-style-4 {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .course-wrap-style-4 {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .course-wrap-style-4 {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .course-wrap-style-4 {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.course-wrap-style-4 .slick-arrow {
    border: 1px solid #e1e1e1;
    background-color: transparent;
    border-radius: 5px;
    color: #e1e1e1;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-wrap-style-4 .slick-arrow:hover {
    border: 1px solid var(--color_primary);
    color: var(--color_primary);
}

.course-wrap-style-4 .slick-next {
    right: 0;
}

@media (min-width: 1400px) {
    .course-wrap-style-4 .slick-next {
        right: -50px;
    }
}

.course-wrap-style-4 .slick-prev {
    left: 0;
}

@media (min-width: 1400px) {
    .course-wrap-style-4 .slick-prev {
        left: -50px;
    }
}

.course-wrap-style-5 {
    padding-bottom: 90px;
    padding-top: 115px;
}

@media (max-width: 1199px) {
    .course-wrap-style-5 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .course-wrap-style-5 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .course-wrap-style-5 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .course-wrap-style-5 {
        padding-bottom: 50px;
    }
}

.course-wrap-style-6 {
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .course-wrap-style-6 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .course-wrap-style-6 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .course-wrap-style-6 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .course-wrap-style-6 {
        padding-bottom: 50px;
    }
}

.course-box.style-1 {
    margin-top: 40px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.course-box.style-1 .figure-box {
    margin-top: -60px;
    margin-bottom: 25px;
}

.course-box.style-1 .figure-box img {
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.course-box.style-1 .figure-box .info-list {
    position: absolute;
    z-index: 0;
    top: -20px;
    right: 40px;
}

.course-box.style-1 .figure-box .info-list li {
    margin-right: 10px;
}

.course-box.style-1 .figure-box .info-list li:last-child {
    margin-right: 0;
}

.course-box.style-1 .figure-box .course-status {
    background-color: #fa0a4e;
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 600;
    font-family: var(--font_family_heading);
    color: #ffffff;
}

.course-box.style-1 .figure-box .save-percent {
    background-color: var(--color_primary);
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 600;
    font-family: var(--font_family_heading);
    color: #ffffff;
}

.course-box.style-1 .content-box .category-name {
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    margin-bottom: 5px;
    font-family: var(--font_family_heading);
    font-weight: 500;
    font-size: 15px;
}

.course-box.style-1 .content-box .category-name:after {
    position: absolute;
    z-index: 1;
    content: "";
    height: 1px;
    width: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-size: 30px;
    line-height: 1.2;
}

.course-box.style-1 .content-box .category-name.color-1 {
    color: #f013a5;
}

.course-box.style-1 .content-box .category-name.color-1:after {
    background-color: #f013a5;
}

.course-box.style-1 .content-box .category-name.color-2 {
    color: #7013f0;
}

.course-box.style-1 .content-box .category-name.color-2:after {
    background-color: #7013f0;
}

.course-box.style-1 .content-box .category-name.color-3 {
    color: #17d292;
}

.course-box.style-1 .content-box .category-name.color-3:after {
    background-color: #17d292;
}

.course-box.style-1 .content-box .category-name.color-4 {
    color: #f70644;
}

.course-box.style-1 .content-box .category-name.color-4:after {
    background-color: #f70644;
}

.course-box.style-1 .content-box .category-name.color-5 {
    color: #f8af12;
}

.course-box.style-1 .content-box .category-name.color-5:after {
    background-color: #f8af12;
}

.course-box.style-1 .content-box .category-name.color-6 {
    color: #00cfdc;
}

.course-box.style-1 .content-box .category-name.color-6:after {
    background-color: #00cfdc;
}

.course-box.style-1 .content-box .category-name.color-7 {
    color: #f812bf;
}

.course-box.style-1 .content-box .category-name.color-7:after {
    background-color: #f812bf;
}

.course-box.style-1 .content-box .category-name.color-8 {
    color: #5730ff;
}

.course-box.style-1 .content-box .category-name.color-8:after {
    background-color: #5730ff;
}

.course-box.style-1 .content-box .category-name.color-9 {
    color: #4fdc88;
}

.course-box.style-1 .content-box .category-name.color-9:after {
    background-color: #4fdc88;
}

.course-box.style-1 .content-box .category-name.color-10 {
    color: #a8b113;
}

.course-box.style-1 .content-box .category-name.color-10:after {
    background-color: #a8b113;
}

.course-box.style-1 .content-box .category-name.color-11 {
    color: #f87912;
}

.course-box.style-1 .content-box .category-name.color-11:after {
    background-color: #f87912;
}

.course-box.style-1 .content-box .category-name.color-12 {
    color: #00dc5d;
}

.course-box.style-1 .content-box .category-name.color-12:after {
    background-color: #00dc5d;
}

.course-box.style-1 .content-box .title {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 24px;
    line-height: 1.4;
}

.course-box.style-1 .content-box .sub-title {
    letter-spacing: 1px;
    color: #0071dc;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 18px;
}

.course-box.style-1 .content-box .course-feature li {
    margin-right: 30px;
}

.course-box.style-1 .content-box .course-feature li:last-child {
    margin-right: 0;
}

.course-box.style-1 .content-box .course-feature li i {
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
}

.course-box.style-1 .course-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #d0d1d2;
    padding-top: 25px;
    margin-top: 25px;
}

.course-box.style-1 .course-footer .course-fee {
    color: #161616;
    font-size: 20px;
    font-family: var(--font_family_heading);
    font-weight: 600;
}

.course-box.style-1 .course-footer .course-fee span {
    display: none;
}

.course-box.style-1 .course-footer .course-fee.offer-active {
    color: #ef1c1c;
}

.course-box.style-1 .course-footer .course-fee.offer-active span {
    font-weight: 400;
    display: inline-block;
    margin-left: 20px;
    color: #bababa;
    text-decoration: line-through;
}

.course-box.style-1 .course-footer .course-rating {
    color: #f5c415;
    font-size: 14px;
}

.course-box.style-1 .course-footer .course-rating li {
    margin-right: 5px;
}

.course-box.style-1 .course-footer .course-rating li:last-child {
    margin-right: 0;
}

.course-box.style-1 .course-footer .course-rating .rating-count {
    color: #8d8d8d;
}

.course-box.style-1 .hover-content {
    height: calc(100% + 40px);
    position: absolute;
    z-index: 2;
    top: -40px;
    left: 0;
    overflow: hidden;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.course-box.style-1 .hover-content:after {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    left: 0;
    top: -100%;
    content: "";
    background-color: var(--color_primary);
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.course-box.style-1 .hover-content .inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    padding: 80px 30px 40px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.course-box.style-1 .hover-content .inner .course-wish-list {
    display: inline-block;
    height: 50px;
    width: 50px;
    background-color: #f4245f;
    border: 1px solid #f4245f;
    font-size: 20px;
    color: #ffffff;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-1 .hover-content .inner .course-wish-list:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.course-box.style-1 .hover-content .inner .category-name:after {
    background-color: #ffffff;
    position: absolute;
    z-index: 1;
    content: "";
    height: 1px;
    width: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-size: 30px;
    line-height: 1.2;
}

.course-box.style-1 .hover-content .inner .title {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 24px;
    line-height: 1.4;
}

.course-box.style-1 .hover-content .inner .title a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-1 .hover-content .inner .title a:hover {
    color: var(--color_hover_light);
}

.course-box.style-1 .hover-content .inner .course-admin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.course-box.style-1 .hover-content .inner .course-admin .admin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 17px;
    font-family: var(--font_family_heading);
}

.course-box.style-1 .hover-content .inner .course-admin .admin img {
    border-radius: 50%;
    margin-bottom: 5px;
}

.course-box.style-1 .hover-content .inner .course-admin .admin span {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 5px;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating {
    color: #f5c415;
    font-size: 14px;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating li {
    margin-right: 5px;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating li:last-child {
    margin-right: 0;
}

.course-box.style-1 .hover-content .inner .course-admin .course-rating .rating-count {
    color: #ffffff;
}

.course-box.style-1 .hover-content .inner .description {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 575px) {
    .course-box.style-1 .hover-content .inner .description {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.course-box.style-1 .hover-content .inner .course-feature {
    margin-bottom: 20px;
}

.course-box.style-1 .hover-content .inner .course-feature li {
    margin-right: 20px;
    color: #ffffff;
}

.course-box.style-1 .hover-content .inner .course-feature li span {
    color: #fff;
}

.course-box.style-1 .hover-content .inner .course-feature li:last-child {
    margin-right: 0;
}

.course-box.style-1 .hover-content .inner .course-feature li i {
    font-size: 15px;
    font-weight: 600;
    margin-right: 7px;
}

.course-box.style-1 .hover-content .inner .course-footer {
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
}

.course-box.style-1 .hover-content .inner .course-footer .price {
    color: #ffffff;
    font-size: 20px;
    font-family: var(--font_family_heading);
    font-weight: 600;
}

.course-box.style-1:hover .hover-content:after {
    top: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.course-box.style-1:hover .hover-content .inner {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

@media (max-width: 767px) {
    .course-box.style-1.additional-info {
        min-height: auto;
    }
}

.course-box.style-1.additional-info .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .course-box.style-1.additional-info .title {
        font-size: 30px;
    }
}

.course-box.style-2 {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px;
}

.course-box.style-2 .figure-box {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.course-box.style-2 .figure-box .course-status {
    background-color: #f21c1d;
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 15px;
    font-family: var(--font_family_heading);
    color: #ffffff;
    position: absolute;
    z-index: 3;
    top: 30px;
    left: 30px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.course-box.style-2 .figure-box img {
    border-radius: 10px 10px 0 0;
    -webkit-transform: scale(1.01, 1.01);
    -ms-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.course-box.style-2 .content-box {
    position: relative;
    z-index: 1;
    padding: 35px 20px 20px;
}

.course-box.style-2 .content-box .admin-figure {
    position: absolute;
    z-index: 1;
    border: 2px solid #ffffff;
    top: -30px;
    right: 30px;
    border-radius: 50%;
}

.course-box.style-2 .content-box .admin-figure img {
    border-radius: 50%;
}

.course-box.style-2 .content-box .price {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font_family_heading);
    color: var(--color_primary);
}

.course-box.style-2 .content-box .rating {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font_family_heading);
}

.course-box.style-2 .content-box .rating i {
    color: #f5c415;
    margin-right: 5px;
}

.course-box.style-2 .content-box .teacher-name {
    color: #8d8d8d;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font_family_heading);
    margin-bottom: 10px;
}

.course-box.style-2 .content-box .teacher-name a {
    color: #8d8d8d;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-2 .content-box .teacher-name a:hover {
    color: var(--color_primary);
}

.course-box.style-2 .content-box .title {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 24px;
    line-height: 1.4;
}

.course-box.style-2 .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-2 .content-box .title a:hover {
    color: var(--color_primary);
}

.course-box.style-2 .content-box .course-feature {
    margin-right: 10px;
    width: 100%;
    justify-content: space-between;
}

.course-box.style-2 .content-box .course-feature li {
    margin-right: 20px;
    font-size: 15px;
}

.course-box.style-2 .content-box .course-feature li:last-child {
    margin-right: 0;
}

.course-box.style-2 .content-box .course-feature li i {
    margin-right: 8px;
    color: var(--color_text_body);
}

.course-box.style-2:hover .figure-box .course-status {
    background-color: #0071dc;
}

.course-box.style-2:hover .figure-box img {
    -webkit-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07);
}

.list-box .course-box.style-2 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.list-box .course-box.style-2 .content-box {
    flex: auto;
}

.course-box.style-3 {
    text-align: center;
    margin-bottom: 30px;
}

.course-box.style-3 .figure-box {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.course-box.style-3 .content-box .category-name a {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: var(--font_family_heading);
    padding: 1px 17px;
    border-radius: 2px;
    display: inline-block;
    font-weight: 500;
}

.course-box.style-3 .content-box .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

.course-box.style-3 .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-3 .content-box .title a:hover {
    color: var(--color_primary);
}

.course-box.style-3 .content-box .sub-title {
    color: var(--color_primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.course-box.style-3 .content-box .course-fee {
    font-size: 20px;
    font-weight: 600;
}

.course-box.style-3:hover .figure-box img {
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.course-box.style-3 .sub-title a {
    color: #585858;
}

.course-box.style-3 .sub-title a:hover {
    color: var(--color_primary);
}

.course-box.style-4 {
    margin-bottom: 30px;
}

.course-box.style-4 .figure-box {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.course-box.style-4 .figure-box .price {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 30px;
    font-family: var(--font_family_heading);
    font-weight: 600;
    font-size: 16px;
    background-color: var(--color_primary);
    color: #ffffff;
    padding: 8px 19px 6px;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.course-box.style-4 .figure-box img {
    border-radius: 10px 10px 0 0;
    -webkit-transform: scale(1.01, 1.01);
    -ms-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.course-box.style-4 .content-box {
    padding: 23px 30px 30px;
    background-color: #ffffff;
}

.course-box.style-4 .content-box .teacher-name {
    font-size: 17px;
    font-family: var(--font_family_heading);
}

.course-box.style-4 .content-box .teacher-name.color-1 {
    color: #f013a5;
}

.course-box.style-4 .content-box .teacher-name.color-2 {
    color: #7013f0;
}

.course-box.style-4 .content-box .teacher-name.color-3 {
    color: #17d292;
}

.course-box.style-4 .content-box .title {
    font-weight: 500;
    margin-bottom: 15px;
}

.course-box.style-4 .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-4 .content-box .title a:hover {
    color: var(--color_primary);
}

.course-box.style-4 .content-box .description {
    margin-bottom: 25px;
}

.course-box.style-4:hover .figure-box .price {
    background-color: #f7bc20;
}

.course-box.style-4:hover .figure-box img {
    -webkit-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07);
}

.course-box.style-5 {
    margin-left: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    padding: 35px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .course-box.style-5 {
        display: block;
        margin-left: 0;
        margin-top: 35px;
    }
}

.course-box.style-5 .figure-box {
    margin-left: -45px;
    margin-right: 20px;
    max-width: 240px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .course-box.style-5 .figure-box {
        display: block;
        margin-left: 0;
        margin-right: 0;
        max-width: inherit;
        margin-top: -70px;
        margin-bottom: 25px;
    }
}

.course-box.style-5 .figure-box img {
    border-radius: 10px 0 0 10px;
}

@media (max-width: 767px) {
    .course-box.style-5 .figure-box img {
        border-radius: 10px 10px 0 0;
    }
}

.course-box.style-5 .figure-box .info-list {
    position: absolute;
    z-index: 0;
    top: -20px;
    right: 40px;
}

.course-box.style-5 .figure-box .info-list li {
    margin-right: 10px;
}

.course-box.style-5 .figure-box .info-list li:last-child {
    margin-right: 0;
}

.course-box.style-5 .figure-box .course-status {
    background-color: #fa0a4e;
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 600;
    font-family: var(--font_family_heading);
    color: #ffffff;
}

.course-box.style-5 .figure-box .save-percent {
    background-color: var(--color_primary);
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 600;
    font-family: var(--font_family_heading);
    color: #ffffff;
}

.course-box.style-5 .content-box .category-name {
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    margin-bottom: 5px;
    font-family: var(--font_family_heading);
    font-weight: 500;
}

.course-box.style-5 .content-box .category-name:after {
    position: absolute;
    z-index: 1;
    content: "";
    height: 1px;
    width: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-size: 30px;
    line-height: 1.2;
}

.course-box.style-5 .content-box .category-name.color-1 {
    color: #f013a5;
}

.course-box.style-5 .content-box .category-name.color-1:after {
    background-color: #f013a5;
}

.course-box.style-5 .content-box .category-name.color-2 {
    color: #7013f0;
}

.course-box.style-5 .content-box .category-name.color-2:after {
    background-color: #7013f0;
}

.course-box.style-5 .content-box .category-name.color-3 {
    color: #17d292;
}

.course-box.style-5 .content-box .category-name.color-3:after {
    background-color: #17d292;
}

.course-box.style-5 .content-box .category-name.color-4 {
    color: #f70644;
}

.course-box.style-5 .content-box .category-name.color-4:after {
    background-color: #f70644;
}

.course-box.style-5 .content-box .category-name.color-5 {
    color: #f8af12;
}

.course-box.style-5 .content-box .category-name.color-5:after {
    background-color: #f8af12;
}

.course-box.style-5 .content-box .category-name.color-6 {
    color: #00cfdc;
}

.course-box.style-5 .content-box .category-name.color-6:after {
    background-color: #00cfdc;
}

.course-box.style-5 .content-box .category-name.color-7 {
    color: #f812bf;
}

.course-box.style-5 .content-box .category-name.color-7:after {
    background-color: #f812bf;
}

.course-box.style-5 .content-box .category-name.color-8 {
    color: #5730ff;
}

.course-box.style-5 .content-box .category-name.color-8:after {
    background-color: #5730ff;
}

.course-box.style-5 .content-box .category-name.color-9 {
    color: #4fdc88;
}

.course-box.style-5 .content-box .category-name.color-9:after {
    background-color: #4fdc88;
}

.course-box.style-5 .content-box .category-name.color-10 {
    color: #a8b113;
}

.course-box.style-5 .content-box .category-name.color-10:after {
    background-color: #a8b113;
}

.course-box.style-5 .content-box .category-name.color-11 {
    color: #f87912;
}

.course-box.style-5 .content-box .category-name.color-11:after {
    background-color: #f87912;
}

.course-box.style-5 .content-box .category-name.color-12 {
    color: #00dc5d;
}

.course-box.style-5 .content-box .category-name.color-12:after {
    background-color: #00dc5d;
}

.course-box.style-5 .content-box .title {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.course-box.style-5 .content-box .course-feature {
    margin-bottom: 10px;
}

.course-box.style-5 .content-box .course-feature li {
    margin-right: 30px;
}

.course-box.style-5 .content-box .course-feature li:last-child {
    margin-right: 0;
}

.course-box.style-5 .content-box .course-feature li i {
    margin-right: 10px;
}

.course-box.style-5 .content-box .description {
    margin-bottom: 15px;
}

.course-box.style-5 .course-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.course-box.style-5 .course-footer .sub-title {
    letter-spacing: 1px;
    color: #0071dc;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
}

.course-box.style-5 .course-footer .course-fee {
    color: #161616;
    font-size: 20px;
    font-family: var(--font_family_heading);
    font-weight: 600;
}

.course-box.style-5 .course-footer .course-fee span {
    display: none;
}

.course-box.style-5 .course-footer .course-fee.offer-active {
    color: #ef1c1c;
}

.course-box.style-5 .course-footer .course-fee.offer-active span {
    font-weight: 400;
    display: inline-block;
    margin-left: 20px;
    color: #bababa;
    text-decoration: line-through;
}

.course-box.style-5 .course-footer .course-rating {
    color: #f5c415;
    font-size: 14px;
}

.course-box.style-5 .course-footer .course-rating li {
    margin-right: 5px;
}

.course-box.style-5 .course-footer .course-rating li:last-child {
    margin-right: 0;
}

.course-box.style-5 .course-footer .course-rating .rating-count {
    color: #8d8d8d;
}

.course-box.style-5 .hover-content {
    width: calc(100% + 25px);
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -25px;
    overflow: hidden;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

@media (max-width: 767px) {
    .course-box.style-5 .hover-content {
        height: calc(100% + 25px);
        width: 100%;
        left: 0;
        top: -35px;
    }
}

.course-box.style-5 .hover-content:after {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    left: 0;
    top: -100%;
    content: "";
    background-color: var(--color_primary);
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.course-box.style-5 .hover-content .inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    padding: 22px 32px 28px;
    border-radius: 5px;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.course-box.style-5 .hover-content .inner .course-wish-list {
    display: inline-block;
    height: 50px;
    width: 50px;
    background-color: #f4245f;
    border: 1px solid #f4245f;
    font-size: 20px;
    color: #ffffff;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-5 .hover-content .inner .course-wish-list:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.course-box.style-5 .hover-content .inner .category-name {
    color: #ffffff;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    margin-bottom: 0;
    font-weight: 500;
    font-family: var(--font_family_heading);
}

.course-box.style-5 .hover-content .inner .category-name:after {
    background-color: #ffffff;
    position: absolute;
    z-index: 1;
    content: "";
    height: 1px;
    width: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-size: 30px;
    line-height: 1.2;
}

.course-box.style-5 .hover-content .inner .title {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.course-box.style-5 .hover-content .inner .title a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.course-box.style-5 .hover-content .inner .title a:hover {
    color: var(--color_hover_light);
}

.course-box.style-5 .hover-content .inner .course-admin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    margin-bottom: 10px;
}

.course-box.style-5 .hover-content .inner .course-admin .admin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 17px;
    font-family: var(--font_family_heading);
}

.course-box.style-5 .hover-content .inner .course-admin .admin img {
    border-radius: 50%;
    margin-bottom: 5px;
}

.course-box.style-5 .hover-content .inner .course-admin .admin span {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 5px;
}

.course-box.style-5 .hover-content .inner .course-admin .course-rating {
    color: #f5c415;
    font-size: 14px;
}

.course-box.style-5 .hover-content .inner .course-admin .course-rating li {
    margin-right: 5px;
}

.course-box.style-5 .hover-content .inner .course-admin .course-rating li:last-child {
    margin-right: 0;
}

.course-box.style-5 .hover-content .inner .course-admin .course-rating .rating-count {
    color: #ffffff;
}

.course-box.style-5 .hover-content .inner .description {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 575px) {
    .course-box.style-5 .hover-content .inner .description {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.course-box.style-5 .hover-content .inner .course-feature {
    margin-right: 20px;
}

.course-box.style-5 .hover-content .inner .course-feature li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    color: #ffffff;
}

.course-box.style-5 .hover-content .inner .course-feature li:last-child {
    margin-right: 0;
}

.course-box.style-5 .hover-content .inner .course-feature li i {
    margin-right: 7px;
}

.course-box.style-5 .hover-content .inner .course-footer {
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.course-box.style-5 .hover-content .inner .course-footer .price {
    margin-left: 30px;
    color: #ffffff;
    font-size: 20px;
    font-family: var(--font_family_heading);
    font-weight: 600;
}

.course-box.style-5:hover .hover-content:after {
    top: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.course-box.style-5:hover .hover-content .inner {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.course-box.style-5.additional-info {
    min-height: 490px;
    padding: 38px;
    margin-top: 0;
    height: calc(100% - 30px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    border-width: 2px;
    border-style: dashed;
    border-color: #c1c1c1;
}

.course-box.style-5.additional-info .title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

.banner-info-style-1 {
    background-color: #edf6ff;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .banner-info-style-1 {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .banner-info-style-1 {
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .banner-info-style-1 {
        padding-bottom: 70px;
    }
}

.banner-info-style-1 .content-box {
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
}

.banner-info-style-1 .title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .banner-info-style-1 .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-info-style-1 .title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .banner-info-style-1 .title {
        font-size: 30px;
    }
}

.banner-info-style-1 .description {
    margin-bottom: 30px;
}

.banner-info-style-1 .list-info li {
    margin-bottom: 10px;
    margin-right: 30px;
    font-family: var(--font_family_heading);
    font-size: 17px;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-info-style-1 .list-info li img {
    margin-right: 10px;
    border-radius: 50%;
}

.banner-info-style-1 .list-info li .list-rating li {
    margin-bottom: 0;
    font-size: 14px;
    color: #f5c415;
    margin-right: 5px;
}

.banner-info-style-1 .list-info li .list-rating li:last-child {
    margin-right: 0;
}

.banner-info-style-1 .figure-box {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.banner-info-style-1 .figure-box img {
    border-radius: 50%;
    width: 100%
}

.banner-info-style-1 .figure-box .play-btn {
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 30px;
    color: #ffffff;
    background-color: #dc0024;
    padding: 23px 42px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.banner-info-style-1 .figure-box .play-btn:hover {
    background-color: #ffffff;
    color: #dc0024;
}

@media (max-width: 767px) {
    .banner-info-style-1 .figure-box .play-btn {
        padding: 16px 30px;
        font-size: 22px;
    }
}

.banner-info-style-2 {
    background-color: var(--color_primary);
    padding-bottom: 30px;
}

.banner-info-style-2 .content-box {
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
}

.banner-info-style-2 .category-name-wrap li {
    margin-right: 10px;
}

.banner-info-style-2 .category-name-wrap li:last-child {
    margin-right: 0;
}

.banner-info-style-2 .category-name-wrap li.category-name {
    border-radius: 2px;
    margin-bottom: 20px;
    padding: 6px 28px;
    display: inline-block;
    font-size: 18px;
    font-family: var(--font_family_heading);
}

.banner-info-style-2 .category-name-wrap li:first-child {
    color: #7013f0;
    background-color: #f2e8ff;
}

.banner-info-style-2 .category-name-wrap li:nth-child(2n) {
    color: var(--color_primary);
    background-color: #ffffff;
}

.banner-info-style-2 .title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffffff;
}

@media (max-width: 991px) {
    .banner-info-style-2 .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-info-style-2 .title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .banner-info-style-2 .title {
        font-size: 30px;
    }
}

.banner-info-style-2 .description {
    color: #f2f2f2;
    margin-bottom: 30px;
}

.banner-info-style-2 .list-info li {
    margin-bottom: 10px;
    margin-right: 30px;
    color: #f3f3f3;
}

.banner-info-style-2 .list-info li img {
    margin-right: 10px;
    border-radius: 50%;
}

.banner-info-style-2 .list-info li .list-rating {
    font-size: 14px;
}

.banner-info-style-2 .list-info li .list-rating li {
    margin-bottom: 0;
    color: #f5c415;
    margin-right: 5px;
}

.banner-info-style-2 .list-info li .list-rating li:last-child {
    margin-right: 0;
}

.banner-info-style-2 .list-info li .list-rating .rating-count {
    color: #f3f3f3;
}

.banner-info-style-2 .figure-box {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.banner-info-style-2 .figure-box img {
    border-radius: 50%;
}

.banner-info-style-2 .figure-box .play-btn {
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 30px;
    color: #ffffff;
    background-color: #dc0024;
    padding: 23px 42px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.banner-info-style-2 .figure-box .play-btn:hover {
    background-color: #ffffff;
    color: #dc0024;
}

@media (max-width: 767px) {
    .banner-info-style-2 .figure-box .play-btn {
        padding: 16px 30px;
        font-size: 22px;
    }
}

.banner-info-style-3 {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 20px;
}

.banner-info-style-3 .content-box {
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
}

.banner-info-style-3 .category-name-wrap li {
    margin-right: 10px;
}

.banner-info-style-3 .category-name-wrap li:last-child {
    margin-right: 0;
}

.banner-info-style-3 .category-name-wrap li.category-name {
    border-radius: 2px;
    margin-bottom: 20px;
    padding: 6px 20px;
    display: inline-block;
    font-size: 18px;
    font-family: var(--font_family_heading);
}

.banner-info-style-3 .category-name-wrap li:first-child {
    color: #7013f0;
    background-color: #f2e8ff;
}

.banner-info-style-3 .category-name-wrap li:nth-child(2n) {
    color: #ffffff;
    background-color: var(--color_primary);
}

.banner-info-style-3 .title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .banner-info-style-3 .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-info-style-3 .title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .banner-info-style-3 .title {
        font-size: 30px;
    }
}

.banner-info-style-3 .description {
    margin-bottom: 30px;
}

.banner-info-style-3 .list-info li {
    margin-bottom: 10px;
    margin-right: 30px;
    color: #6b6b6b;
    font-family: var(--font_family_heading);
    font-size: 17px;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-info-style-3 .list-info li img {
    margin-right: 10px;
    border-radius: 50%;
}

.banner-info-style-3 .list-info li .list-rating li {
    margin-bottom: 0;
    font-size: 14px;
    color: #f5c415;
    margin-right: 5px;
}

.banner-info-style-3 .list-info li .list-rating li:last-child {
    margin-right: 0;
}

.banner-info-style-3 .list-info li .list-rating .rating-count {
    color: #6b6b6b;
}

.banner-info-style-3 .figure-box {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.banner-info-style-3 .figure-box img {
    border-radius: 50%;
}

.banner-info-style-3 .figure-box .play-btn {
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 30px;
    color: #ffffff;
    background-color: #dc0024;
    padding: 23px 42px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.banner-info-style-3 .figure-box .play-btn:hover {
    background-color: #ffffff;
    color: #dc0024;
}

@media (max-width: 767px) {
    .banner-info-style-3 .figure-box .play-btn {
        padding: 16px 30px;
        font-size: 22px;
    }
}

.single-course-wrap-style-1 {
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .single-course-wrap-style-1 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .single-course-wrap-style-1 {
        padding-top: 95px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .single-course-wrap-style-1 {
        padding-top: 85px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .single-course-wrap-style-1 {
        padding-top: 75px;
        padding-bottom: 50px;
    }
}

.single-course-wrap-style-2 {
    padding-top: 65px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .single-course-wrap-style-2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .single-course-wrap-style-2 {
        padding-top: 0;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .single-course-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .single-course-wrap-style-2 {
        padding-bottom: 50px;
    }
}

.single-course-box.style-1 .main-title {
    font-weight: 500;
    margin-bottom: 20px;
}

.single-course-box.style-1 .inner-title {
    margin-bottom: 14px;
    font-weight: 500;
}

.single-course-box.style-1 h2.inner-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}

.single-course-box.style-1 .title-info li {
    margin-right: 20px;
    font-size: 15px;
}

.single-course-box.style-1 .title-info li:last-child {
    margin-right: 0;
}

.single-course-box.style-1 .description {
    margin-bottom: 30px;
}

.single-course-box.style-1 .list-info-1 {
    margin-bottom: 20px;
}

.single-course-box.style-1 .list-info-1 li {
    margin-bottom: 5px;
    color: #343434;
    font-size: 18px;
    font-family: var(--font_family_heading);
    position: relative;
    z-index: 1;
    padding-left: 25px;
}

.single-course-box.style-1 .list-info-1 li:before {
    content: "\f058";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 16px;
    left: 0;
    top: 5px;
    line-height: 1;
    color: var(--color_primary);
}

.single-course-box.style-1 .list-info-1 li:last-child {
    margin-bottom: 0;
}

.single-course-box.style-1 .list-info-2 {
    margin-bottom: 30px;
    column-count: 1;
}

.single-course-box.style-1 .list-info-2 li {
    margin-bottom: 5px;
    color: #343434;
    position: relative;
    z-index: 1;
    padding-left: 25px;
}

.single-course-box.style-1 .list-info-2 li:before {
    content: "\f058";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    left: 0;
    top: 5px;
    line-height: 1;
    color: var(--color_primary);
}

.single-course-box.style-1 .list-info-2 li:last-child {
    margin-bottom: 0;
}

.single-course-box.style-1 .curriculum-wrap {
    margin-bottom: 30px;
}

.single-course-box.style-1 .accordion .item-nav {
    padding: 13px 25px;
    background-color: transparent;
}

.single-course-box.style-1 .accordion .item-nav a {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: block;
}

.single-course-box.style-1 .accordion .item-nav a:after {
    position: absolute;
    content: "\f068";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    font-size: 14px;
    z-index: 5;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--color_primary);
}

.single-course-box.style-1 .accordion .item-nav a.collapsed:after {
    color: #818080;
    content: "\f067";
}

.single-course-box.style-1 .accordion .item-content {
    padding: 0;
}

.single-course-box.style-1 .accordion .list-info li {
    color: #6b6b6b;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single-course-box.style-1 .accordion .list-info li .left-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--font_family_heading);
}

.single-course-box.style-1 .accordion .list-info li .left-content i {
    margin-right: 10px;
    font-size: 20px;
}

.single-course-box.style-1 .accordion .list-info li .right-content i {
    font-size: 14px;
    color: #aeb1b4;
}

.single-course-box.style-1 .accordion .list-info li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.single-course-box.style-1 .instructor-wrap {
    margin-bottom: 30px;
}

.single-course-box.style-1 .instructor-wrap .instructor-box {
    padding: 30px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .single-course-box.style-1 .instructor-wrap .instructor-box {
        display: block;
    }
}

.single-course-box.style-1 .instructor-wrap .instructor-box .figure-box {
    margin-right: 20px;
    max-width: 150px;
    width: 100%;
    display: flex;
}

@media (max-width: 767px) {
    .single-course-box.style-1 .instructor-wrap .instructor-box .figure-box {
        margin-right: 0;
        max-width: inherit;
        margin-bottom: 20px;
        text-align: center;
    }
}

.single-course-box.style-1 .instructor-wrap .instructor-box .figure-box img {
    border-radius: 5px;
    object-fit: cover;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box {
    position: relative;
    z-index: 1;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .sub-title {
    font-size: 15px;
    font-weight: 400;
    color: var(--color_primary);
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .rating-list {
    position: absolute;
    right: 0;
    top: 0;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .rating-list li {
    color: #faba1f;
    font-size: 15px;
    margin-right: 7px;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .entry-meta {
    margin-top: 20px;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .entry-meta li {
    font-size: 16px;
    margin-right: 30px;
}

.single-course-box.style-1 .instructor-wrap .instructor-box .content-box .entry-meta li i {
    font-size: 18px;
    margin-right: 10px;
}

.single-course-box.style-1 .review-wrap {
    margin-bottom: 50px;
}

.single-course-box.style-1 .review-wrap .review-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.single-course-box.style-1 .review-wrap .review-box .figure-box {
    margin-right: 10px;
}

.single-course-box.style-1 .review-wrap .review-box .figure-box img {
    border-radius: 50%;
}

.single-course-box.style-1 .review-wrap .review-box .content-box .rating {
    margin-right: 15px;
}

.single-course-box.style-1 .review-wrap .review-box .content-box .rating li {
    color: #f9b91f;
    margin-right: 8px;
}

.single-course-box.style-1 .review-wrap .review-box .content-box .rating li:last-child {
    margin-right: 0;
}

.single-course-box.style-1 .review-wrap .review-box .content-box .rating-date {
    color: #575757;
}

.single-course-box.style-1 .review-wrap .review-box .content-box .title {
    font-weight: 500;
    font-size: 22px;
}

.single-course-box.style-1 .write-review-wrap .rating {
    margin-right: 15px;
}

.single-course-box.style-1 .write-review-wrap .rating li {
    color: #e3e3e3;
    margin-right: 8px;
}

.single-course-box.style-1 .write-review-wrap .rating li:first-child {
    color: #f9b91f;
}

.single-course-box.style-1 .write-review-wrap .rating li:last-child {
    margin-right: 0;
}

.single-course-box.style-1 .write-review-wrap form {
    margin-top: 30px;
}

.single-course-box.style-1 .write-review-wrap form input {
    height: 60px;
    border-color: #e1e1e1;
}

.single-course-box.style-1 .write-review-wrap form input:focus {
    box-shadow: none;
}

.single-course-box.style-1 .write-review-wrap form .form-group {
    margin-bottom: 30px;
}

.single-course-box.style-1 .write-review-wrap form .item-btn {
    letter-spacing: 1px;
}

.single-course-box.style-1 .write-review-wrap form .item-btn:focus {
    outline: none;
}

.single-course-box.style-3{
    padding-bottom: 35px;
}
/*======================================================================= 11. Testimonial Area =========================================================================*/
.testimonial-wrap-style-1 {
    padding-top: 113px;
    overflow: hidden;
    background-color: #f7f7f7;
}

@media (max-width: 1199px) {
    .testimonial-wrap-style-1 {
        padding-top: 99px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrap-style-1 {
        padding-top: 89px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrap-style-1 {
        padding-top: 79px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrap-style-1 {
        padding-top: 69px;
    }
}

.testimonial-wrap-style-1 .right-full-width {
    padding-left: calc((100% - 1200px) / 2);
}

.testimonial-wrap-style-1 .right-full-width .slick-carousel {
    margin-left: 0;
}

.testimonial-wrap-style-1 .slick-arrow {
    background-color: #ffffff;
    border-radius: 5px;
    color: var(--color_primary);
    height: 50px;
    width: 50px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: -120px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testimonial-wrap-style-1 .slick-arrow:hover {
    background-color: var(--color_primary);
    color: #ffffff;
}

.testimonial-wrap-style-1 .slick-prev {
    right: calc(((100% - 1200px) / 2) + 60px);
}

.testimonial-wrap-style-1 .slick-next {
    right: calc((100% - 1200px) / 2);
}

.testimonial-box .figure-box img {
    border-radius: 50%;
}

.testimonial-box .title {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
}

.testimonial-box .designation {
    color: #7a7979;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--font_family_heading);
}

.testimonial-box .testimonial-rating {
    color: #f5c415;
    font-size: 14px;
}

.testimonial-box .testimonial-rating li {
    margin-right: 5px;
}

.testimonial-box .testimonial-rating li:last-child {
    margin-right: 0;
}

.testimonial-box.style-1 {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 50px;
}

.testimonial-box.style-1 .icon-box {
    color: var(--color_primary);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 25px;
}

.testimonial-box.style-1 .description {
    margin-bottom: 40px;
    font-size: 20px;
    font-style: italic;
}

.testimonial-box.style-1 .customer-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-box.style-1 .customer-info .figure-box img {
    margin-right: 20px;
    width: 100%;
    max-width: 60px;
}

.testimonial-box.style-1 .customer-info .content-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.testimonial-box.style-2 {
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
}

.testimonial-box.style-2 .figure-box {
    margin-bottom: 15px;
}

.testimonial-box.style-2 .figure-box img {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-box.style-2 .testimonial-rating {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-box.style-2 .rating-for {
    color: var(--color_primary);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font_family_heading);
}

.testimonial-box.style-2 .description {
    margin-bottom: 25px;
}

.testimonial-box.style-3 {
    background-color: #f7fbff;
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
}

.testimonial-box.style-3 .figure-box {
    margin-bottom: 15px;
}

.testimonial-box.style-3 .figure-box img {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-box.style-3 .testimonial-rating {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-box.style-3 .rating-for {
    color: var(--color_primary);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font_family_heading);
}

.testimonial-box.style-3 .description {
    margin-bottom: 25px;
}

.testimonial-box.style-4 {
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 35px 50px;
    text-align: center;

}

.related-post-slider .blog-box.style-1 .content-box .title {
    font-size: 18px;
}

.related-post-slider .blog-box.style-1 .content-box {
    margin-top: -100px;
}

.swiper-slide-active .testimonial-box.style-4 {
    box-shadow: 0 0 50px 0 rgb(0 0 0 / 4%);
}

@media (max-width: 767px) {
    .testimonial-box.style-4 {
        padding: 35px 15px;
    }
}

.testimonial-box.style-4 .icon-box {
    color: #000000;
    position: absolute;
    z-index: 1;
    font-size: 80px;
    right: 50px;
    top: 30px;
    opacity: 0.05;
    line-height: 1;
}

.testimonial-box.style-4 .figure-box {
    margin-bottom: 15px;
}

.testimonial-box.style-4 .figure-box img {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-box.style-4 .testimonial-rating {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-box.style-4 .rating-for {
    color: var(--color_primary);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font_family_heading);
}

.testimonial-box.style-4 .description {
    margin-bottom: 25px;
}

.testimonial-wrap-style-2 {
    padding-top: 110px;
    padding-bottom: 171px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .testimonial-wrap-style-2 {
        padding-top: 100px;
        padding-bottom: 161px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrap-style-2 {
        padding-top: 90px;
        padding-bottom: 121px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrap-style-2 {
        padding-top: 80px;
        padding-bottom: 111px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrap-style-2 {
        padding-top: 70px;
        padding-bottom: 101px;
    }
}

.testimonial-wrap-style-2:before {
    content: "";
    position: absolute;
    top: 360px;
    width: 100%;
    z-index: 0;
    border-top: 220px solid #f4f9ff;
    border-left: 100vw solid transparent;
    right: 0;
}

.testimonial-wrap-style-2:after {
    content: "";
    background-color: #f4f9ff;
    height: 360px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.testimonial-wrap-style-2 .slick-arrow {
    border: 1px solid #e1e1e1;
    background-color: transparent;
    border-radius: 5px;
    color: #e1e1e1;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testimonial-wrap-style-2 .slick-arrow:hover {
    border: 1px solid var(--color_primary);
    color: var(--color_primary);
}

.testimonial-wrap-style-2 .slick-prev {
    right: calc(50% + 5px);
}

.testimonial-wrap-style-2 .slick-next {
    left: calc(50% + 5px);
}

.testimonial-wrap-style-3 {
    padding-bottom: 90px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
}

@media (max-width: 1199px) {
    .testimonial-wrap-style-3 {
        padding-top: 110px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrap-style-3 {
        padding-top: 91px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrap-style-3 {
        padding-top: 81px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrap-style-3 {
        padding-top: 71px;
        padding-bottom: 50px;
    }
}

.testimonial-wrap-style-4 {
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 102px;
}

@media (max-width: 1199px) {
    .testimonial-wrap-style-4 {
        padding-top: 100px;
        padding-bottom: 92px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrap-style-4 {
        padding-top: 90px;
        padding-bottom: 82px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrap-style-4 {
        padding-top: 80px;
        padding-bottom: 72px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrap-style-4 {
        padding-top: 70px;
        padding-bottom: 62px;
    }
}

.testimonial-wrap-style-4 .swiper-container {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
}

.testimonial-wrap-style-4 .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.testimonial-wrap-style-4 .swiper-wrapper {
    margin-bottom: 125px;
}
.swiper-container,
.sliderSwiper{
    overflow:hidden;
}
/*======================================================================= 12. Event Area =========================================================================*/
.event-wrap-style-1 {
    padding-bottom: 90px;
    padding-top: 110px;
}

@media (max-width: 1199px) {
    .event-wrap-style-1 {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .event-wrap-style-1 {
        padding-top: 60px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .event-wrap-style-1 {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .event-wrap-style-1 {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

.event-box.style-1 {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.event-box.style-1 .figure-box {
    position: relative;
    z-index: 1;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.event-box.style-1 .figure-box img {
    border-radius: 10px 10px 0 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.event-box.style-1 .figure-box .date {
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 20px;
    background-color: var(--color_primary);
    padding: 6px 12px 5px;
    color: #ffffff;
    border-radius: 3px;
    font-family: var(--font_family_heading);
    font-size: 15px;
    font-weight: 500;
}

.event-box.style-1 .content-box {
    padding: 25px 25px;
    background-color: #ffffff;
}

.event-box.style-1 .content-box .title {
    font-size: 24px;
    font-weight: 500;
}

.event-box.style-1 .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.event-box.style-1 .content-box .title a:hover {
    color: var(--color_primary);
}

.event-box.style-1 .content-box .location {
    color: #8d8d8d;
    font-size: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.event-box.style-1 .content-box .location i {
    font-size: 18px;
    margin-right: 10px;
    color: var(--color_primary);
}

.event-box.style-1:hover {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}

.event-box.style-1:hover .figure-box img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.single-event-wrap-style-1 {
    padding-bottom: 0;
}

.course_single_event {
    padding-top: 110px;
    padding-bottom: 110px;
}

.course_single_event .countdown {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.course_single_event .countdown .countdown-section {
    margin-bottom: 12px;
    margin-right: 6px;
    margin-left: 6px;
    height: 120px;
    width: 120px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.course_single_event .countdown .countdown-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color_primary);
    margin-bottom: 0;
}

.course_single_event .countdown .countdown-section p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.single-event-wrap-style-1 .main-title {
    font-size: 40px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    max-width: 900px;
    width: 100%;
}

@media (max-width: 1199px) {
    .single-event-wrap-style-1 .main-title {
        font-size: 36px;
        line-height: 1.4;
    }
}

@media (max-width: 991px) {
    .single-event-wrap-style-1 .main-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .single-event-wrap-style-1 .main-title {
        font-size: 30px;
    }
}

.single-event-wrap-style-1 .entry-meta {
    margin-bottom: 35px;
}

.single-event-wrap-style-1 .entry-meta li {
    color: #8d8d8d;
    font-size: 18px;
}

.single-event-wrap-style-1 .entry-meta li i {
    color: var(--color_primary);
}

.single-event-wrap-style-1 .figure-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .single-event-wrap-style-1 .figure-box {
        padding: 25px;
    }
}

.single-event-wrap-style-1 .figure-box .event-info {
    max-width: 390px;
    width: 100%;
    padding: 45px 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.single-event-wrap-style-1 .figure-box .event-info .list-info {
    margin-bottom: 30px;
}

.single-event-wrap-style-1 .figure-box .event-info .list-info li {
    margin-bottom: 10px;
    font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single-event-wrap-style-1 .figure-box .event-info .list-info li i {
    margin-right: 10px;
    font-size: 26px;
    font-weight: 900;
}

.single-event-wrap-style-1 .figure-box .event-info .list-info li span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-event-wrap-style-1 .figure-box .event-info .list-info li .info-value {
    font-size: 24px;
}

.single-event-wrap-style-1 .figure-box .event-info .list-info li .hilight-value {
    font-weight: 600;
    color: #de1e1e;
}

.single-event-wrap-style-1 .figure-box .event-info .custom-btn-fill {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .single-event-wrap-style-1 .figure-box .event-info .custom-btn-fill {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .single-event-wrap-style-1 .figure-box .event-info .custom-btn-fill {
        font-size: 18px;
    }
}

.single-event-wrap-style-1 .figure-box .single-event-social {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.single-event-wrap-style-1 .figure-box .single-event-social li {
    margin-right: 10px;
    margin-bottom: 5px;
}

.single-event-wrap-style-1 .figure-box .single-event-social li:last-child {
    margin-right: 0;
}

.single-event-wrap-style-1 .figure-box .single-event-social li a {
    font-size: 15px;
    color: var(--color_primary);
    height: 45px;
    width: 45px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid;
    border-color: #d7d7d7;
    background-color: transparent;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-event-wrap-style-1 .figure-box .single-event-social li a:hover {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
    color: #ffffff;
}

.single-event-wrap-style-1 .description {
    margin-bottom: 20px;
}

.event-wrap-style-2 {
    padding-top: 0;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
    background-color: #f7fbff;
}

@media (max-width: 1199px) {
    .event-wrap-style-2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .event-wrap-style-2 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .event-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .event-wrap-style-2 {
        padding-bottom: 50px;
    }
}

.event-wrap-style-2:before {
    position: absolute;
    z-index: -1;
    content: "";
    height: 500px;
    width: 100%;
    background-color: #ffffff;
    top: 0;
    left: 0;
}

.map-box.style-2 {
    height: 500px;
    border-radius: 10px;
    margin-right: -100px;
}

@media (max-width: 991px) {
    .map-box.style-2 {
        margin-right: 0;
    }
}

.address-box.style-2 {
    border-radius: 15px;
    padding: 60px;
    background-color: #ffffff;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .address-box.style-2 {
        width: 100%;
        margin-top: 30px;
    }
}

.address-box.style-2 .section-heading {
    font-size: 24px;
    font-weight: 500;
}

.address-box.style-2 .description {
    margin-bottom: 20px;
}

.address-box.style-2 .address-list li {
    margin-bottom: 20px;
    font-size: 18px;
}

.address-box.style-2 .address-list li:last-child {
    margin-bottom: 0;
}

.address-box.style-2 .address-list li .title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

.event-wrap-style-3 {
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .event-wrap-style-3 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .event-wrap-style-3 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .event-wrap-style-3 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .event-wrap-style-3 {
        padding-bottom: 50px;
    }
}

.event-search-form {
    background-color: #ffffff;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
    padding: 25px 25px 10px;
    margin-bottom: 60px;
}

.event-search-form .input-group {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #d8d8d8;
}

.event-search-form .input-group .form-control {
    height: 50px;
    background: #ffffff;
    box-shadow: none;
    border: 0;
    border-radius: 5px;
}

.event-search-form .input-group input {
    height: 50px;
    color: #111111;
    padding: 5px 20px;
    font-size: 15px;
}

.event-search-form .input-group .input-group-addon button {
    height: 100%;
    width: 50px;
    border: none;
    background: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.event-search-form .input-group .input-group-addon button i:before {
    font-size: 18px;
}

.event-search-form .input-group .input-group-addon button:focus {
    outline: none;
}

.event-search-form .form-response .alert-info {
    background: transparent;
    border: none;
    color: #a8a7a7;
    letter-spacing: 5px;
}

.event-search-form .form-response .alert-success {
    background-color: transparent;
    color: #ff0000;
    letter-spacing: 4px;
    border-color: transparent;
    font-weight: 500;
}

@media only screen and (max-width: 575px) {
    .event-search-form .form-response .alert-success {
        letter-spacing: 1px;
    }
}

.event-search-form .form-response .alert {
    border-radius: 0;
    padding: 15px 0;
}

.event-search-form input.search-input:focus {
    outline-width: 0;
    outline: none;
}

.event-search-form input::-webkit-input-placeholder {
    color: #646464;
}

.event-search-form input::-moz-placeholder {
    color: #646464;
}

.event-search-form input:-moz-placeholder {
    color: #646464;
}

.event-search-form input:-ms-input-placeholder {
    color: #646464;
}

.event-search-form ul.form-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .event-search-form ul.form-items {
        display: inherit;
    }
}

.event-search-form ul.form-items li {
    margin-right: 5px;
}

.event-search-form ul.form-items li:last-child {
    margin-right: 0;
}

.event-search-form ul.form-items li:nth-child(1n) {
    width: calc(20% - 5px);
}

@media only screen and (max-width: 767px) {
    .event-search-form ul.form-items li:nth-child(1n) {
        width: 100%;
    }
}

.event-search-form ul.form-items li:nth-child(2n) {
    width: calc(20% - 5px);
}

@media only screen and (max-width: 767px) {
    .event-search-form ul.form-items li:nth-child(2n) {
        width: 100%;
    }
}

.event-search-form ul.form-items li:nth-child(3n) {
    width: 20%;
}

@media only screen and (max-width: 767px) {
    .event-search-form ul.form-items li:nth-child(3n) {
        width: 100%;
        margin: 0 auto;
    }
}

.event-search-form ul.form-items li .item-btn {
    padding: 5px;
    background-color: var(--color_primary);
    border-radius: 4px;
    color: #ffffff;
    font-size: 20px;
    border: 1px solid var(--color_primary);
    width: 100%;
    min-height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.event-search-form ul.form-items li .item-btn:focus {
    outline: none;
    box-shadow: none;
}

.event-search-form ul.form-items li .item-btn:hover {
    background-color: orange;
    border: 1px solid orange;
}

.event-search-form .select2-container--classic .select2-selection--single {
    height: 50px;
}

.related-event-wrap {
    padding-top: 0;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .related-event-wrap {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .related-event-wrap {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .related-event-wrap {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .related-event-wrap {
        padding-bottom: 50px;
    }
}

/*======================================================================= 13. Guide Area =========================================================================*/
.guide-wrap-style-1 {
    overflow: hidden;
    padding-top: 95px;
    padding-bottom: 95px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .guide-wrap-style-1 {
        padding-top: 85px;
        padding-bottom: 85px;
    }
}

@media (max-width: 991px) {
    .guide-wrap-style-1 {
        padding-top: 65px;
        padding-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .guide-wrap-style-1 {
        padding-top: 55px;
        padding-bottom: 65px;
    }
}

@media (max-width: 575px) {
    .guide-wrap-style-1 {
        padding-top: 45px;
        padding-bottom: 55px;
    }
}

.guide-wrap-style-1:before {
    content: "";
    height: 450px;
    width: 100%;
    background-color: var(--color_primary);
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.guide-wrap-style-1 .shape-wrap-left {
    list-style: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.guide-wrap-style-1 .shape-wrap-right {
    list-style: none;
}

.guide-wrap-style-1 .shape-wrap-right li {
    position: absolute;
    z-index: 1;
}

.guide-wrap-style-1 .shape-wrap-right li:nth-child(1n) {
    top: 100px;
    right: calc(((100% - 1200px) / 2) - 100px);
}

.guide-wrap-style-1 .shape-wrap-right li:nth-child(2n) {
    top: 160px;
    right: calc(((100% - 1200px) / 2) - 80px);
}

.guide-box.style-1 {
    background-color: #ffffff;
    padding: 73px 35px 68px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.guide-box.style-1 .line-shap {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.guide-box.style-1 .line-shap.after-shape {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.guide-box.style-1 .line-shap.before-shape {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.guide-box.style-1 .icon-box {
    font-size: 70px;
    color: var(--color_primary);
    line-height: 1;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.guide-box.style-1 .title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 24px;
}

.guide-box.style-1 .description {
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.guide-box.style-1:hover {
    background-color: var(--color_secondary);
}

.guide-box.style-1:hover .line-shap.after-shape {
    opacity: 0;
    visibility: hidden;
}

.guide-box.style-1:hover .line-shap.before-shape {
    opacity: 1;
    visibility: visible;
}

.guide-box.style-1:hover .icon-box {}

.guide-box.style-1:hover .description {
    color: #161616;
}

/*======================================================================= 14. Progress Area =========================================================================*/
.progress-wrap-style-1 {
    padding-top: 70px;
    padding-bottom: 80px;
}

@media (max-width: 1199px) {
    .progress-wrap-style-1 {
        padding-top: 60px;
        padding-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .progress-wrap-style-1 {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .progress-wrap-style-1 {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .progress-wrap-style-1 {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.progress-box.style-1 {
    text-align: center;
    margin-bottom: 30px;
}

.progress-box.style-1 .counting-number {
    color: var(--color_primary);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 0;
}

.progress-box.style-1 .counting-text {
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .progress-box.style-1 .counting-text {
        font-size: 20px;
    }
}

.progress-wrap-style-2 {
    padding-top: 82px;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .progress-wrap-style-2 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .progress-wrap-style-2 {
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .progress-wrap-style-2 {
        padding-bottom: 40px;
    }
}

.progress-box.style-2 {
    text-align: center;
    margin-bottom: 30px;
}

.progress-box.style-2 .counting-number {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .progress-box.style-2 .counting-number {
        font-size: 36px;
    }
}

.progress-box.style-2 .counting-text {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 767px) {
    .progress-box.style-2 .counting-text {
        font-size: 20px;
    }
}

/*======================================================================= 15. Work Area =========================================================================*/
.works-wrap-style-1 {
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 110px;
}

.works-box.style-1 {
    width: 100%;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.works-box.style-1 .inner {
    text-align: center;
    padding: 70px 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.works-box.style-1 .inner:before {
    position: absolute;
    z-index: 0;
    height: 95%;
    width: 40%;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    background-color: #f9fafe;
    border-radius: 20px;
}

.works-box.style-1 .inner .shape1 li {
    position: absolute;
}

.works-box.style-1 .inner .shape1 li:nth-child(1n) {
    top: 0;
    left: 0;
    bottom: inherit;
}

.works-box.style-1 .inner .shape1 li:nth-child(2n) {
    bottom: 0;
    left: 70px;
    top: inherit;
}

.works-box.style-1 .inner .shape1 li:nth-child(3n) {
    bottom: 50%;
    left: 100%;
    top: inherit;
    right: inherit;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.works-box.style-1 .inner .shape2 li {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -195px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.works-box.style-1 .work-process li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 45px;
    border-radius: 10px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .works-box.style-1 .work-process li {
        padding: 20px 15px;
    }
}

.works-box.style-1 .work-process li:last-child {
    margin-bottom: 0;
}

.works-box.style-1 .work-process li .icon-box {
    line-height: 1.2;
    color: var(--color_primary);
    font-size: 40px;
    margin-right: 10px;
}

.works-box.style-1 .work-process li .content-box .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.works-box.style-1 .work-process li .content-box .description {
    margin-bottom: 0;
}

.works-box.style-1 .work-process li:nth-child(odd) {
    background-color: #edf6ff;
    margin-right: 50px;
}

.works-box.style-1 .work-process li:nth-child(odd) .icon-box {
    color: var(--color_primary);
}

.works-box.style-1 .work-process li:nth-child(even) {
    background-color: var(--color_primary);
    margin-left: 50px;
}

.works-box.style-1 .work-process li:nth-child(even) .icon-box {
    color: #ffffff;
}

.works-box.style-1 .work-process li:nth-child(even) .content-box .title {
    color: #ffffff;
}

.works-box.style-1 .work-process li:nth-child(even) .content-box .description {
    color: #ffffff;
}

.works-box.style-1 .figure-box {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.works-box.style-1 .figure-box img {
    border-radius: 50%;
}

.works-box.style-1 .play-btn {
    height: 100px;
    width: 100px;
    background-color: #f81608;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.works-box.style-1 .play-btn:hover {
    background-color: #ffffff;
    color: #f81608;
}

.works-wrap-style-2 {
    overflow: hidden;
    padding-top: 115px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

@media (max-width: 991px) {
    .works-wrap-style-2 {
        padding-top: 86px;
    }
}

@media (max-width: 767px) {
    .works-wrap-style-2 {
        padding-top: 76px;
    }
}

@media (max-width: 575px) {
    .works-wrap-style-2 {
        padding-top: 66px;
    }
}

.works-wrap-style-2:before {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: rgba(0, 0, 0, 0.45);
}

.works-box.style-2 {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.works-box.style-2 .section-heading {
    color: #fff;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font_family_heading);
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .works-box.style-2 .section-heading {
        font-size: 28px;
    }
}

.works-box.style-2 .title {
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.17;
}

@media (max-width: 1199px) {
    .works-box.style-2 .title {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .works-box.style-2 .title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .works-box.style-2 .title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .works-box.style-2 .title {
        font-size: 36px;
    }
}

.works-box.style-2 .sub-title {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 991px) {
    .works-box.style-2 .sub-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .works-box.style-2 .sub-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .works-box.style-2 .sub-title {
        font-size: 24px;
    }
}

.works-box.style-2 .play-btn {
    margin: 0 30px;
    height: 110px;
    width: 110px;
    font-size: 32px;
    background-color: white;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color_primary);
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.works-box.style-2 .play-btn:hover {
    color: var(--color_secondary);
}

@media (max-width: 991px) {
    .works-box.style-2 .play-btn {
        position: inherit;
        top: inherit;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        margin: 0;
        height: 90px;
        width: 90px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .works-box.style-2 .play-btn {
        height: 80px;
        width: 80px;
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .works-box.style-2 .play-btn {
        height: 70px;
        width: 70px;
        font-size: 24px;
    }
}

/*======================================================================= 17. Feature Area =========================================================================*/
.feature-wrap-style-1 {
    padding-bottom: 90px;
    padding-top: 0;
}

@media (max-width: 1199px) {
    .feature-wrap-style-1 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .feature-wrap-style-1 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .feature-wrap-style-1 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .feature-wrap-style-1 {
        padding-bottom: 50px;
    }
}

.feature-wrap-style-2 {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 117px;
}

@media (max-width: 1199px) {
    .feature-wrap-style-2 {
        padding-bottom: 107px;
    }
}

@media (max-width: 991px) {
    .feature-wrap-style-2 {
        padding-bottom: 97px;
    }
}

@media (max-width: 767px) {
    .feature-wrap-style-2 {
        padding-bottom: 87px;
    }
}

@media (max-width: 575px) {
    .feature-wrap-style-2 {
        padding-bottom: 77px;
    }
}

.feature-box.style-1 {
    min-height: 237px;
    border: 1px solid #ececec;
    padding: 25px 19px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.feature-box.style-1 .icon-box {
    margin-bottom: 12px;
    line-height: 1;
    font-size: 52px;
    color: #a1a1a1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.feature-box.style-1 .content-box .title {
    font-size: 22px;
    font-weight: 500;
}

.feature-box.style-1 .content-box .description {
    margin-bottom: 0;
}

.feature-box.style-1:hover .icon-box {
    color: var(--color_primary);
}

.more-feature.style-1 {
    min-height: 237px;
    margin-bottom: 30px;
    background-color: var(--color_primary);
    padding: 25px 20px;
    text-align: center;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.more-feature.style-1 .title {
    color: #ffffff;
}

.more-feature.style-1 .title span {
    font-style: italic;
    font-weight: 400;
    color: var(--color_secondary);
}

.more-feature.style-1 .description {
    color: #ffffff;
    margin-bottom: 20px;
}

.more-feature.style-1 .item-btn:hover {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.feature-box.style-2 {
    margin-bottom: 3px;
    text-align: center;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-box.style-2 .figure-box {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .feature-box.style-2 .figure-box {
        margin-bottom: 30px;
    }
}

.feature-box.style-2 .figure-box .mask-box {
    margin-top: -1px;
    margin-right: -1px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    position: relative;
    z-index: 1;
    display: block;
}

@media (max-width: 767px) {
    .feature-box.style-2 .figure-box .shape-list {
        display: none;
    }
}

.feature-box.style-2 .figure-box .shape-list li {
    position: absolute;
}

.feature-box.style-2 .figure-box .shape-list .shape1 {
    z-index: 2;
    top: -5px;
    left: 25%;
}

.feature-box.style-2 .figure-box .shape-list .shape2 {
    z-index: -1;
    top: 0;
    right: 0;
}

.feature-box.style-2 .figure-box .shape-list .shape3 {
    z-index: 2;
    bottom: 20%;
    left: 0;
}

.feature-box.style-2 .content-box {
    padding: 30px 25px 20px;
}

.feature-box.style-2 .content-box .icon-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    background-color: #ffffff;
    line-height: 1;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-box.style-2 .content-box .icon-box:before {
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-box.style-2 .content-box .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-box.style-2 .content-box .description {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature-box.style-2.color-1 {
    background-color: rgba(36, 190, 155, 0.1);
}

.feature-box.style-2.color-1 .icon-box {
    color: #24be9b;
}

.feature-box.style-2.color-2 {
    background-color: rgba(247, 179, 1, 0.1);
}

.feature-box.style-2.color-2 .icon-box {
    color: #f7b301;
}

.feature-box.style-2.color-3 {
    background-color: rgba(50, 197, 255, 0.1);
}

.feature-box.style-2.color-3 .icon-box {
    color: #32c5ff;
}

.feature-box.style-2.color-4 {
    background-color: rgba(251, 117, 27, 0.1);
}

.feature-box.style-2.color-4 .icon-box {
    color: #fb751b;
}

.feature-box.style-2:hover .title {
    color: #ffffff;
}

.feature-box.style-2:hover .description {
    color: #ffffff;
}

.feature-box.style-2:hover.color-1 {
    background-color: #24be9b;
}

.feature-box.style-2:hover.color-1 .icon-box:before {
    background-color: rgba(36, 190, 155, 0.1);
}

.feature-box.style-2:hover.color-2 {
    background-color: #f7b301;
}

.feature-box.style-2:hover.color-2 .icon-box:before {
    background-color: rgba(247, 179, 1, 0.1);
}

.feature-box.style-2:hover.color-3 {
    background-color: #32c5ff;
}

.feature-box.style-2:hover.color-3 .icon-box:before {
    background-color: rgba(50, 197, 255, 0.1);
}

.feature-box.style-2:hover.color-4 {
    background-color: #fb751b;
}

.feature-box.style-2:hover.color-4 .icon-box:before {
    background-color: rgba(251, 117, 27, 0.1);
}

@media (min-width: 768px) {
    .child-item:nth-child(1n) .feature-box.style-2 {
        border-radius: 15px 0 0 0;
    }

    .child-item:nth-child(2n) .feature-box.style-2 {
        border-radius: 0 15px 0 0;
    }

    .child-item:nth-child(3n) .feature-box.style-2 {
        border-radius: 0 0 0 15px;
    }

    .child-item:nth-child(4n) .feature-box.style-2 {
        border-radius: 0 0 15px 0;
    }
}

/*======================================================================= 18. Apply Area =========================================================================*/
.apply-wrap-style-1 {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .apply-wrap-style-1 {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}

@media (max-width: 991px) {
    .apply-wrap-style-1 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .apply-wrap-style-1 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media (max-width: 575px) {
    .apply-wrap-style-1 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.apply-box.style-1 {
    padding: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .apply-box.style-1 {
        padding: 0;
    }
}

.apply-box.style-1 .shape {
    position: absolute;
    right: 10px;
    top: 10px;
}

@media (max-width: 767px) {
    .apply-box.style-1 .shape {
        display: none;
    }
}

.apply-box.style-1 .inner {
    padding: 60px 55px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .apply-box.style-1 .inner {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 40px 35px;
    }
}

.apply-box.style-1 .inner:before {
    position: absolute;
    z-index: 2;
    content: url("../../media/elements/element34.png");
    top: 50px;
    right: 55px;
}

@media (max-width: 767px) {
    .apply-box.style-1 .inner:before {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        top: 20px;
        right: 20px;
    }
}

.apply-box.style-1 .inner .heading-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.apply-box.style-1 form input {
    background-color: transparent;
    height: 50px;
    margin-bottom: 30px;
    border: 0;
    border-bottom: 1px solid #e7e7e7;
    border-radius: 0;
    padding: 5px 0;
}

.apply-box.style-1 form input:focus {
    box-shadow: none;
}

.apply-box.style-1 input.form-control::-webkit-input-placeholder {
    color: #929292;
    font-size: 15px;
    font-weight: 300;
}

.apply-box.style-1 input.form-control::-moz-placeholder {
    color: #929292;
    font-size: 15px;
    font-weight: 300;
}

.apply-box.style-1 input.form-control:-moz-placeholder {
    color: #929292;
    font-size: 15px;
    font-weight: 300;
}

.apply-box.style-1 input.form-control:-ms-input-placeholder {
    color: #929292;
    font-size: 15px;
    font-weight: 300;
}

/*======================================================================= 19. Advantage Area =========================================================================*/
.advantage-wrap-style-1 {
    overflow: hidden;
    padding-top: 104px;
    padding-bottom: 105px;
}

@media (max-width: 1199px) {
    .advantage-wrap-style-1 {
        padding-top: 94px;
        padding-bottom: 95px;
    }
}

@media (max-width: 991px) {
    .advantage-wrap-style-1 {
        padding-top: 84px;
        padding-bottom: 67px;
    }
}

@media (max-width: 767px) {
    .advantage-wrap-style-1 {
        padding-top: 74px;
        padding-bottom: 57px;
    }
}

@media (max-width: 575px) {
    .advantage-wrap-style-1 {
        padding-top: 64px;
        padding-bottom: 47px;
    }
}

.advantage-box.style-1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    margin-bottom: 30px;
}

.advantage-box.style-1 .figure-box {
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .advantage-box.style-1 .figure-box .shape-list {
        display: none;
    }
}

.advantage-box.style-1 .figure-box .shape-list li {
    position: absolute;
    z-index: 1;
}

.advantage-box.style-1 .figure-box .shape-list li.shape-1 {
    top: 180px;
    left: 30px;
}

.advantage-box.style-1 .figure-box .shape-list li.shape-2 {
    top: 120px;
    right: 80px;
}

@media (max-width: 1199px) {
    .advantage-box.style-1 .figure-box .element-list {
        display: none;
    }
}

.advantage-box.style-1 .figure-box .element-list li {
    position: absolute;
    z-index: 1;
}

.advantage-box.style-1 .figure-box .element-list li.element-1 {
    top: 210px;
    right: -30px;
}

.advantage-box.style-1 .figure-box .element-list li.element-2 {
    bottom: 100px;
    left: 0;
}

.advantage-box.style-1 .heading-title {
    font-weight: 600;
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
}

.advantage-box.style-1 .advantage-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12px;
}

.advantage-box.style-1 .advantage-list li:last-child {
    margin-bottom: 0;
}

.advantage-box.style-1 .advantage-list li .icon-box {
    font-size: 50px;
    line-height: 1.3;
    margin-right: 15px;
    color: var(--color_primary);
}

.advantage-box.style-1 .advantage-list li .content-box .title {
    margin-bottom: 7px;
    font-weight: 500;
}

/*======================================================================= 20. Category Area =========================================================================*/
.category-wrap-style-1 {
    overflow: hidden;
    background-color: #f7fbff;
    padding-top: 109px;
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .category-wrap-style-1 {
        padding-top: 99px;
        padding-bottom: 90px;
    }
}

@media (max-width: 991px) {
    .category-wrap-style-1 {
        padding-top: 89px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .category-wrap-style-1 {
        padding-top: 79px;
        padding-bottom: 70px;
    }
}

@media (max-width: 575px) {
    .category-wrap-style-1 {
        padding-top: 69px;
        padding-bottom: 60px;
    }
}

.category-box.style-1 {
    padding: 55px 35px 47px;
    background-color: #ffffff;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 575px) {
    .category-box.style-1 {
        text-align: center;
    }
}

.category-box.style-1:before {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--color_primary);
    top: -1px;
    left: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.category-box.style-1:after {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px) translateX(30px);
    -ms-transform: translateY(-30px) translateX(30px);
    transform: translateY(-30px) translateX(30px);
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.category-box.style-1 .icon-box {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.category-box.style-1 .icon-box .default {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.category-box.style-1 .icon-box .hover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

@media (max-width: 575px) {
    .category-box.style-1 .icon-box .hover {
        right: 0;
        margin: 0 auto;
    }
}

.category-box.style-1 .content-box .title a {
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.category-box.style-1 .content-box .title a:hover {
    color: var(--color_primary);
}

.category-box.style-1 .content-box .sub-title {
    margin-bottom: 0;
    color: #585858;
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.category-box.style-1:hover:before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    top: 0;
}

.category-box.style-1:hover:after {
    -webkit-transform: translateY(0) translateX(0);
    -ms-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.category-box.style-1:hover .icon-box .default {
    opacity: 0;
    visibility: hidden;
}

.category-box.style-1:hover .icon-box .hover {
    opacity: 1;
    visibility: visible;
}

.category-box.style-1:hover .content-box .title a {
    color: #ffffff;
}

.category-box.style-1:hover .content-box .title a:hover {
    color: var(--color_hover_light);
}

.category-box.style-1:hover .content-box .sub-title {
    color: #ffffff;
}

.more-category.style-1 {
    margin-bottom: 20px;
    padding: 32px 45px 28px;
    border: 1px solid #e4e4e5;
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
    .more-category.style-1 {
        text-align: center;
    }
}

.more-category.style-1 .title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
}

.more-category.style-1 .title span {
    color: var(--color_secondary);
}

.more-category.style-1 .item-btn {
    font-size: 50px;
    color: #161616;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.more-category.style-1 .item-btn:hover {
    color: var(--color_primary);
}

.more-category.style-1:hover {
    border: 1px solid var(--color_primary);
}

.category-box.style-3 {
    text-align: center;
    margin-bottom: 30px;
}

.category-box.style-3 .content-box .bottom-content .description {
    margin-bottom: 40px;
}

.category-box.style-3:hover .content-box .top-content {
    background-color: var(--color_primary);
}

.category-box.style-3:hover .content-box .top-content .icon-box {
    background-color: var(--color_primary);
    color: #ffffff;
}

.category-box.style-3:hover .content-box .top-content .title {
    color: #ffffff;
}

.category-box.style-3:hover .content-box .bottom-content {
    background-color: #eef6fe;
}

.category-box.style-3:hover .content-box .bottom-content .item-btn {
    background-color: var(--color_primary);
    color: #ffffff;
    border: 1px solid var(--color_primary);
}

.category-box.style-3:hover .content-box .bottom-content .item-btn:hover {
    background-color: transparent;
    color: var(--color_primary);
}

@media (min-width: 992px) {
    .child-item:nth-child(1n) .category-box.style-3 .figure-box img {
        border-radius: 10px 0 0 0;
    }

    .child-item:nth-child(1n) .category-box.style-3 .content-box .bottom-content {
        border-radius: 0 0 0 10px;
    }

    .child-item:nth-child(2n) .category-box.style-3 .figure-box img {
        border-radius: 0;
    }

    .child-item:nth-child(2n) .category-box.style-3 .content-box .bottom-content {
        border-radius: 0;
    }

    .child-item:nth-child(3n) .category-box.style-3 .figure-box img {
        border-radius: 0 10px 0 0;
    }

    .child-item:nth-child(3n) .category-box.style-3 .content-box .bottom-content {
        border-radius: 0 0 10px 0;
    }
}

.category-wrap-style-2 {
    background-color: #f4f9ff;
    padding-top: 114px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .category-wrap-style-2 {
        padding-top: 104px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .category-wrap-style-2 {
        padding-top: 94px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .category-wrap-style-2 {
        padding-top: 84px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .category-wrap-style-2 {
        padding-top: 74px;
        padding-bottom: 50px;
    }
}

.category-wrap-style-3 {
    padding-bottom: 80px;
}

@media (max-width: 1199px) {
    .category-wrap-style-3 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .category-wrap-style-3 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .category-wrap-style-3 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .category-wrap-style-3 {
        padding-bottom: 50px;
    }
}

.category-wrap-style-4 {
    background-color: #ffffff;
    padding-top: 110px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .category-wrap-style-4 {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .category-wrap-style-4 {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .category-wrap-style-4 {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .category-wrap-style-4 {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.featured-courses-wrap {
    padding: 50px 0;
    padding-top: 32px;
}

.popular-topics-wrap {
    padding-top: 110px;
    padding-bottom: 104px;
    background-color: #f5faff;
}

@media (max-width: 1199px) {
    .popular-topics-wrap {
        padding-top: 100px;
        padding-bottom: 94px;
    }
}

@media (max-width: 991px) {
    .popular-topics-wrap {
        padding-top: 90px;
        padding-bottom: 84px;
    }
}

@media (max-width: 767px) {
    .popular-topics-wrap {
        padding-top: 80px;
        padding-bottom: 74px;
    }
}

@media (max-width: 767px) {
    .popular-topics-wrap {
        padding-top: 70px;
        padding-bottom: 64px;
    }
}

.popular-topics-list {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.popular-topics-list li {
    margin: 0 8px 16px;
}

.popular-topics-list li a {
    color: var(--color_primary);
    display: inline-block;
    border: 1px solid #d2d2d2;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popular-topics-list li a:hover {
    background-color: var(--color_primary);
    color: #ffffff;
    border: 1px solid var(--color_primary);
}

.popular-instructors-wrap {
    padding-top: 110px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .popular-instructors-wrap {
        padding-top: 100px;
        padding-bottom: 94px;
    }
}

@media (max-width: 991px) {
    .popular-instructors-wrap {
        padding-top: 90px;
        padding-bottom: 84px;
    }
}

@media (max-width: 767px) {
    .popular-instructors-wrap {
        padding-top: 80px;
        padding-bottom: 74px;
    }
}

@media (max-width: 767px) {
    .popular-instructors-wrap {
        padding-top: 70px;
        padding-bottom: 64px;
    }
}

/*======================================================================= 21. Meeting Area =========================================================================*/
.meeting-wrap-style-1 {
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .meeting-wrap-style-1 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .meeting-wrap-style-1 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .meeting-wrap-style-1 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .meeting-wrap-style-1 {
        padding-bottom: 50px;
    }
}

.meeting-box.style-1 {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.meeting-box.style-1 .figure-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.meeting-box.style-1 .figure-box img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px 5px 0 0;
}

.meeting-box.style-1 .figure-box .meeting-id {
    position: absolute;
    z-index: 1;
    background-color: var(--color_primary);
    padding: 4px 15px;
    display: inline-block;
    right: 15px;
    top: 17px;
    color: #ffffff;
    border-radius: 2px;
    font-size: 15px;
    font-family: var(--font_family_heading);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.meeting-box.style-1 .content-box {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 0 0 5px 5px;
}

.meeting-box.style-1 .content-box .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.meeting-box.style-1 .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.meeting-box.style-1 .content-box .title a:hover {
    color: var(--color_primary);
}

.meeting-box.style-1 .content-box .entry-meta {
    justify-content: space-between;
}

.meeting-box.style-1 .content-box .entry-meta li {
    color: #706f6f;
    margin-right: 30px;
}

.meeting-box.style-1 .content-box .entry-meta li:last-child {
    margin-right: 0;
}

.meeting-box.style-1:hover {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}

.meeting-box.style-1:hover .figure-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.meeting-box.style-1:hover .figure-box .meeting-id {
    background-color: var(--color_secondary);
}

.meeting-box.style-1 .content-box .title a {
    color: var(--color_text_heading);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*======================================================================= 22. Contact Area =========================================================================*/
.contact-wrap-style-1 {
    padding-top: 0;
}

@media (max-width: 991px) {
    .contact-wrap-style-1 {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {
    .contact-wrap-style-1 {
        padding-top: 90px;
    }
}

@media (max-width: 575px) {
    .contact-wrap-style-1 {
        padding-top: 80px;
    }
}

.address-box.style-1 {
    margin-bottom: 120px;
    box-shadow: 0 0 68px 0 rgba(0, 0, 0, 0.05);
    margin-top: -70px;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    text-align: center;
    padding: 50px 30px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .address-box.style-1 {
        margin-top: 0;
    }
}

.address-box.style-1 .icon-box {
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    width: 100px;
    font-size: 48px;
    background-color: var(--color_primary);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .address-box.style-1 .icon-box {
        height: 90px;
        width: 90px;
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .address-box.style-1 .icon-box {
        height: 80px;
        width: 80px;
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .address-box.style-1 .icon-box {
        height: 70px;
        width: 70px;
        font-size: 32px;
    }
}

.address-box.style-1 label {
    font-size: 22px;
    color: #747474;
    font-family: var(--font_family_heading);
    margin-bottom: 2px;
}

.address-box.style-1 .title {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.4;
}

.map-box.style-1 {
    height: 720px;
    border-radius: 15px;
}

.contact-form.style-1 {
    padding: 0 150px;
    margin-top: -160px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .contact-form.style-1 {
        margin-top: 30px;
        padding: 0;
    }
}

.contact-form.style-1 .inner {
    border-radius: 10px;
    background-color: #ffffff;
    padding: 55px 115px 25px;
    box-shadow: 0 0 68px 0 rgba(0, 0, 0, 0.07);
}

@media (max-width: 991px) {
    .contact-form.style-1 .inner {
        padding: 45px 30px 25px;
    }
}

.contact-form.style-1 .inner .title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.contact-form.style-1 .inner .description {
    text-align: center;
    margin-bottom: 25px;
}

.contact-form.style-1 .inner form .form-group {
    margin-bottom: 30px;
}

.contact-form.style-1 .inner form .form-control {
    border: 0;
    background-color: #f7f7f7;
}

.contact-form.style-1 .inner form .form-control:focus {
    box-shadow: none;
}

.contact-form.style-1 .inner form input {
    height: 50px;
    padding: 5px 15px;
}

.contact-form.style-1 .inner form textarea {
    padding: 20px;
}

.contact-form.style-1 input.form-control::-webkit-input-placeholder,
.contact-form.style-1 textarea.form-control::-webkit-input-placeholder {
    color: #818080;
    font-size: 15px;
}

.contact-form.style-1 input.form-control::-moz-placeholder,
.contact-form.style-1 textarea.form-control::-moz-placeholder {
    color: #818080;
    font-size: 15px;
}

.contact-form.style-1 input.form-control:-moz-placeholder,
.contact-form.style-1 textarea.form-control:-moz-placeholder {
    color: #818080;
    font-size: 15px;
}

.contact-form.style-1 input.form-control:-ms-input-placeholder,
.contact-form.style-1 textarea.form-control:-ms-input-placeholder {
    color: #818080;
    font-size: 15px;
}

/*======================================================================= 23. 404 Area =========================================================================*/
.error-box {
    text-align: center;
}

.error-box .figure-box {
    margin-bottom: 30px;
}

.error-box .content-box .title {
    font-weight: 500;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.error-box .content-box .description {
    margin-bottom: 30px;
}

.error-box .content-box h2 {
    font-weight: 500;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/*======================================================================= 24. Faq Area =========================================================================*/
.radius-block-accordion__item__button {
    padding: 20px 50px 22px 0;
    font-size: 24px;
    position: relative;
    font-weight: 500;
    cursor: pointer;
    display: block;
    border-bottom: 1px solid #dedede;
    color: var(--color_text_heading);
    z-index: 0;
}

.radius-block-accordion .radius-block-accordion__item:last-child .radius-block-accordion__item__button {
    border-bottom: 0 !important;
}

.radius-block-accordion__item__body {
    padding-right: 50px;
}

.radius-block-accordion__item__button:after {
    position: absolute;
    content: "\f067";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    font-size: 14px;
    z-index: 5;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--color_primary);
}

.radius-block-accordion__item__button.collapsed:after {
    color: #818080;
    content: "\f068";
}

/*======================================================================= 25. Sidebar Area =========================================================================*/
.sidebar-widget {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .sidebar-widget {
        margin-top: 50px;
    }
}

.sidebar-widget .widget {
    background-color: #ffffff;
    box-shadow: 0 1px 100px 0 rgba(0, 0, 0, 0.08);
    padding: 45px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-widget .widget:last-child {
    margin-bottom: 0 !important;
}

.sidebar-widget .widget .widget-section-heading {
    margin-bottom: 10px;
}

.sidebar-widget .widget .widget-section-heading .widget-title {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
}

.sidebar-widget .widget .widget-section-heading.heading-dark .widget-title {}

.sidebar-widget .widget .widget-section-heading.heading-light .widget-title {
    color: #ffffff;
}

.widget-faq .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .widget-faq .title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .widget-faq .title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .widget-faq .title {
        font-size: 24px;
    }
}

.widget-faq .description {
    margin-bottom: 20px;
}

.widget-faq .info-list li {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font_family_heading);
    margin-bottom: 8px;
}

.widget-faq .info-list li:last-child {
    margin-bottom: 0;
}

.widget-faq .info-list li a {
    color: #5b5b5b;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-faq .info-list li a:hover {
    color: var(--color_primary);
}

.widget-faq .info-list li a:hover i {
    color: var(--color_primary);
}

.widget-faq .info-list li a i {
    color: #979797;
    margin-right: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-filter .radio {
    padding-left: 5px;
    margin-bottom: 5px;
}

.widget-filter .radio:last-child {
    margin-bottom: 0;
}

.widget-filter .radio label {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 0;
    color: #8a8a8a;
    font-family: var(--font_family_heading);
    font-size: 16px;
}

.widget-filter .radio label:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 13px;
    height: 13px;
    left: 0;
    top: 6px;
    margin-left: -5px;
    border: 1px solid #a2a2a2;
    border-radius: 3px;
    background-color: transparent;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.widget-filter .radio label:after {
    display: inline-block;
    position: absolute;
    width: 13px;
    height: 13px;
    left: 15px;
    top: 6px;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    color: transparent;
    border-radius: 3px;
    border: 1px solid var(--color_primary);
    background-color: var(--color_primary);
}

.widget-filter .radio label span {
    display: inline-block;
    margin-left: 5px;
}

.widget-filter .radio .rating-wrap {
    font-size: 14px;
    line-height: 2;
}

.widget-filter .radio .rating-wrap span {
    color: #8d8d8d;
    font-size: 15px;
}

.widget-filter .radio .rating-wrap i:focus {
    outline: none;
}

.widget-filter .radio .rating-wrap.rating-star-5 i:nth-child(-n + 5) {
    color: #f5c415;
}

.widget-filter .radio .rating-wrap.rating-star-4 i:nth-child(-n + 4) {
    color: #f5c415;
}

.widget-filter .radio .rating-wrap.rating-star-3 i:nth-child(-n + 3) {
    color: #f5c415;
}

.widget-filter .radio .rating-wrap.rating-star-2 i:nth-child(-n + 2) {
    color: #f5c415;
}

.widget-filter .radio .rating-wrap.rating-star-1 i:nth-child(-n + 1) {
    color: #f5c415;
}

.widget-filter .radio input[type="radio"] {
    display: none;
}

.widget-filter .radio input[type="radio"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.widget-filter .radio input[type="radio"]:checked+label::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
}

.widget-filter .radio input[type="radio"]:disabled+label {
    opacity: 0.65;
}

.widget-filter .radio input[type="radio"]:disabled+label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.widget-course-info .top-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e1e1e1;
}

.widget-course-info .top-content .regular-price {
    color: #9d9a9a;
    font-size: 20px;
    text-decoration: line-through;
    font-family: var(--font_family_heading);
}

.widget-course-info .top-content .offer-price {
    font-size: 40px;
    font-family: var(--font_family_heading);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .widget-course-info .top-content .offer-price {
        font-size: 36px;
    }
}

.widget-course-info .top-content .item-btn {
    font-size: 18px;
    padding: 8px 32px;
}

.widget-course-info .mid-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e1e1e1;
}

.widget-course-info .mid-content .info-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    color: #6b6b6b;
    margin-bottom: 15px;
}

.widget-course-info .mid-content .info-list li:last-child {
    margin-bottom: 0;
}

.widget-course-info .mid-content .info-list li span {
    font-weight: 500;
    position: relative;
    z-index: 1;
    padding-left: 35px;
    display: inline-block;
}

.widget-course-info .mid-content .info-list li span i {
    font-size: 22px;
    color: #646871;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 3px;
}

.widget-course-info .bottom-content {
    padding-left: 40px;
    padding-right: 40px;
}

.widget-course-info .bottom-content .title {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 20px;
}

.widget-course-info .bottom-content .payment {
    margin-bottom: 25px;
}

.widget-course-info .bottom-content .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-course-info .bottom-content .social li {
    margin-right: 12px;
    margin-bottom: 5px;
}

.widget-course-info .bottom-content .social li a {
    border: 1px solid;
    border-color: #000000;
    color: #ffffff;
    font-size: 13px;
    height: 40px;
    width: 40px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 50%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-course-info .bottom-content .social li:last-child {
    margin-right: 0;
}

.widget-course-info .bottom-content .social li.facebook a {
    border-color: var(--facebook);
    background-color: var(--facebook);
}

.widget-course-info .bottom-content .social li.facebook a:hover {
    background-color: transparent;
    color: var(--facebook);
}

.widget-course-info .bottom-content .social li.twitter a {
    border-color: var(--twitter);
    background-color: var(--twitter);
}

.widget-course-info .bottom-content .social li.twitter a:hover {
    background-color: transparent;
    color: var(--twitter);
}

.widget-course-info .bottom-content .social li.skype a {
    border-color: var(--skype);
    background-color: var(--skype);
}

.widget-course-info .bottom-content .social li.skype a:hover {
    background-color: transparent;
    color: var(--skype);
}

.widget-course-info .bottom-content .social li.instagram a {
    border-color: var(--instagram);
    background-color: var(--instagram);
}

.widget-course-info .bottom-content .social li.instagram a:hover {
    background-color: transparent;
    color: var(--instagram);
}

.widget-tag {
    display: inline-block;
}

.widget-tag .widget-section-heading {
    margin-bottom: 20px;
}

.widget-tag ul.list-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget-area .widget .rt ul li {
    border-bottom: 0px;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0px;
    margin-bottom: 0px;
}

.widget-tag ul.list-item li {
    display: inline-flex;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    background: #edf6ff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-tag ul.list-item li a {
    color: #6b6b6b;
    display: block;
    padding: 8px 16px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-tag ul.list-item li:hover {
    background: var(--color_primary);
}

.widget-tag ul.list-item li:hover a {
    color: #ffffff;
}

.widget-search .input-group {
    border: 0;
}

.widget-search .form-control {
    height: 50px;
    padding: 5px 20px;
    font-size: 16px;
    color: #000000;
    background-color: #f5f5f5;
    border-radius: 5px 0 0 5px;
    border: 0;
}

.widget-search .form-control:focus {
    outline: none;
    box-shadow: none;
}

.widget-search .input-group-addon button {
    height: 50px;
    width: 50px;
    background-color: var(--color_primary);
    color: #ffffff;
    border: 0;
    padding: 10px;
    border-radius: 0 5px 5px 0;
}

.widget-search .input-group-addon button i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-search .input-group-addon button:focus {
    outline: none;
    box-shadow: none;
}

.widget-search .input-group-addon button:hover i {
    color: #000000;
}

.widget-course-category .widget-section-heading {
    margin-bottom: 25px;
}

.widget-course-category ul li {
    margin-top: 5px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    font-family: var(--font_family_heading);
}

.widget-course-category ul li a {
    line-height: 35px;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-course-category ul li a span {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    color: #6b6b6b;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-course-category ul li a:hover {
    color: var(--color_primary);
}

.widget-course-category ul li a:hover span {
    color: var(--color_primary);
}

.single_course_side_block_1 ul li:last-child {
    margin-bottom: 0;
}

.widget-recent .widget-section-heading {
    margin-bottom: 30px;
}

.widget-recent ul.list-item>li {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.widget-recent ul.list-item>li:last-child {
    margin-bottom: 0;
}

.widget-recent ul.list-item>li .left-box {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    border-radius: 5px;
}

.sidebar-widget-area .widget.rt-post-box ul li ul {
    border-top-width: 0px;
}

.sidebar-widget-area .widget.rt-post-box ul li a {
    font-size: inherit;
    font-weight: inherit;
}

.widget-recent ul.list-item>li .left-box .item-figure {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-recent ul.list-item>li .left-box .item-figure img {
    border-radius: 5px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-recent ul.list-item>li .media-body {
    margin-left: 15px;
}

.widget-recent ul.list-item>li .entry-title {
    line-height: 22px;
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.widget-recent ul.list-item>li .entry-title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #000;
}

.widget-recent ul.list-item>li .entry-title a:hover {
    color: var(--color_primary);
}

.widget-recent ul.list-item>li .entry-meta {
    line-height: 1.2;
    font-size: 14px;
    margin-top: 0px;
    padding-top: 0px;
}

.widget-recent ul.list-item>li li.entry-date {
    margin-bottom: 5px;
    border-bottom: 0px;
    padding-bottom: 0px;
}

.widget-recent ul.list-item>li li.entry-date a {
    color: #767575;
    transition: all 0.3s ease-in-out;
}

.widget-recent ul.list-item>li li.entry-date a i {
    margin-right: 10px;
    margin-top: -5px;
}

.widget-recent ul.list-item>li li.entry-date a:hover {
    color: var(--color_primary);
}

.widget-recent ul.list-item>li:hover .left-box .item-figure {
    background-color: #000000;
}

.widget-recent ul.list-item>li:hover .left-box .item-figure img {
    opacity: 0.5;
    transform: scale(1.3);
}

.widget-related-course .widget-section-heading {
    margin-bottom: 30px;
}

.widget-related-course ul>li {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.widget-related-course ul>li:last-child {
    margin-bottom: 0;
}

.widget-related-course ul>li .left-box {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    border-radius: 5px;
}

.widget-related-course ul>li .left-box .item-figure {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-related-course ul>li .left-box .item-figure img {
    border-radius: 5px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-related-course ul>li .media-body {
    margin-left: 15px;
}

.widget-related-course ul>li .entry-title {
    line-height: 22px;
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.widget-related-course ul>li .entry-title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-related-course ul>li .entry-title a:hover {
    color: var(--color_primary);
}

.widget-related-course ul>li .price {
    color: var(--color_primary);
}

.widget-related-course ul>li:hover .left-box .item-figure {
    background-color: #000000;
}

.widget-related-course ul>li:hover .left-box .item-figure img {
    opacity: 0.5;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.widget-banner {
    background-color: #edf6ff;
    padding-top: 35px;
    text-align: center;
    margin-bottom: 30px;
}

.widget-banner .title {
    font-size: 24px;
    font-weight: 600;
}

.widget-banner .description {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.sidebar-widget-area .widget {
    background-color: #ffffff;
    box-shadow: 0 1px 100px 0 rgba(0, 0, 0, 0.08);
    padding: 45px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-widget-area .widgettitle {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 500;
}

.sidebar-widget-area .search-query.form-control,
.page-content .search-query.form-control {
    height: 50px;
    padding: 5px 20px;
    font-size: 16px;
    color: #000000;
    background-color: #f5f5f5;
    border-radius: 5px 0 0 5px;
    border: 0;
}

.sidebar-widget-area .custom-search-input button.btn,
.page-content .custom-search-input button.btn {
    height: 50px;
    width: 50px;
    background-color: var(--color_primary);
    color: #ffffff;
    border: 0;
    padding: 10px;
    border-radius: 0 5px 5px 0;
}

/*======================================================================= 26. Instructor Area =========================================================================*/
.instructor-wrap-style-1 {
    padding-top: 110px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .instructor-wrap-style-1 {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .instructor-wrap-style-1 {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .instructor-wrap-style-1 {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .instructor-wrap-style-1 {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.instructor-box.style-1 {
    margin-bottom: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 30px 20px 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.instructor-box.style-1 .header-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.instructor-box.style-1 .figure-box {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 20px;
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 12px;
}

.instructor-box.style-1 .figure-box:before {
    border-radius: 10px 0 0 10px;
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 50%;
    background-color: var(--color_primary);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.instructor-box.style-1 .figure-box a {
    border-radius: 50%;
    display: inline-block;
}

.instructor-box.style-1 .figure-box img {
    border-radius: 50%;
}

.instructor-box.style-1 .content-box .title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}

.instructor-box.style-1 .content-box .title a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.instructor-box.style-1 .content-box .title a:hover {
    color: var(--color_primary);
}

.instructor-box.style-1 .content-box .designation {
    color: var(--color_primary);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}

.instructor-box.style-1 .content-box .qualification {
    color: #161616;
    font-size: 15px;
}

.instructor-box.style-1 .content-box .rating li {
    color: #faba1f;
    font-size: 15px;
    margin-right: 8px;
}

.instructor-box.style-1 .content-box .rating li:last-child {
    margin-right: 0;
}

.instructor-box.style-1 .footer-content {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.instructor-box.style-1 .footer-content .entry-meta {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.instructor-box.style-1 .footer-content .entry-meta li {
    font-size: 16px;
    color: #747474;
    font-family: var(--font_family_heading);
}

.instructor-box.style-1:hover {
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.15);
}

.instructor-box.style-1:hover .figure-box:before {
    width: 70%;
}

/*======================================================================= 27. Become Instructor Area =========================================================================*/
.become-instructor-wrap-style-1 {
    padding-top: 110px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .become-instructor-wrap-style-1 {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .become-instructor-wrap-style-1 {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .become-instructor-wrap-style-1 {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .become-instructor-wrap-style-1 {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.become-instructor-box.style-1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 45px 75px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.become-instructor-box.style-1:before {
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #005ae2;
    top: 0;
    left: 0;
    border-radius: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.become-instructor-box.style-1:after {
    content: "";
    position: absolute;
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.become-instructor-box.style-1 .icon-box {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 10px;
}

.become-instructor-box.style-1 .content-box .title {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

.become-instructor-box.style-1 .content-box .description {
    margin-bottom: 0;
}

.become-instructor-box.style-1:hover:before {
    -webkit-transform: scaleY(1.1);
    -ms-transform: scaleY(1.1);
    transform: scaleY(1.1);
}

.become-instructor-box.style-1:hover:after {
    -webkit-transform: scaleY(1.1);
    -ms-transform: scaleY(1.1);
    transform: scaleY(1.1);
}

@media (min-width: 992px) {
    .child-item:nth-child(1n) .become-instructor-box.style-1:before {
        border-radius: 15px 0 0 15px;
    }
}

.child-item:nth-child(1n) .become-instructor-box.style-1:after {
    background-image: url("../../media/elements/element56.png");
}

@media (min-width: 992px) {
    .child-item:nth-child(2n) .become-instructor-box.style-1:before {
        border-radius: 0;
    }
}

.child-item:nth-child(2n) .become-instructor-box.style-1:after {
    background-image: url("../../media/elements/element56.png");
}

@media (min-width: 992px) {
    .child-item:nth-child(3n) .become-instructor-box.style-1:before {
        border-radius: 0 15px 15px 0;
    }
}

.child-item:nth-child(3n) .become-instructor-box.style-1:after {
    background-image: url("../../media/elements/element56.png");
}

.become-instructor-wrap-style-2 {
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .become-instructor-wrap-style-2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .become-instructor-wrap-style-2 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .become-instructor-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .become-instructor-wrap-style-2 {
        padding-bottom: 50px;
    }
}

.become-instructor-box.style-2 {
    background-color: #f2f9ff;
    padding: 45px 50px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .become-instructor-box.style-2 {
        padding: 45px 30px 25px;
    }
}

.become-instructor-box.style-2 .box-heading {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 25px;
}

.become-instructor-box.style-2 .content-box {
    margin-bottom: 35px;
}

.become-instructor-box.style-2 .content-box:last-child {
    margin-bottom: 0;
}

.become-instructor-box.style-2 .content-box .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.become-instructor-box.style-3 {
    background-color: var(--color_primary);
    border-radius: 15px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 575px) {
    .become-instructor-box.style-3 {
        display: block;
    }
}

.become-instructor-box.style-3 .content-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 45px 0 45px 50px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.become-instructor-box.style-3 .content-box .title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 6px;
}

.become-instructor-box.style-3 .content-box .description {
    color: #ffffff;
}

.become-instructor-box.style-3 .figure-box {
    padding: 5px 5px 0 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*======================================================================= 29. Profile Area =========================================================================*/
.profile-wrap-style-2 {
    padding-top: 0;
    padding-bottom: 90px;
}

@media (max-width: 1191px) {
    .profile-wrap-style-2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .profile-wrap-style-2 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .profile-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .profile-wrap-style-2 {
        padding-bottom: 50px;
    }
}

.profile-box {
    padding: 50px;
    box-shadow: 0 1px 100px 0 rgba(0, 0, 0, 0.06);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 15px;
}

@media (max-width: 991px) {
    .profile-box {
        display: block;
        padding: 15px;
    }

    .profile-social {
        justify-content: center;
    }
}

.profile-box .figure-box {
    margin-right: 50px;
    text-align: center;
}

@media (max-width: 991px) {
    .profile-box .figure-box {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.profile-box .figure-box img {
    border-radius: 50%;
}

.profile-box .content-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.profile-box .content-box .title {
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .profile-box .content-box .title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .profile-box .content-box .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .profile-box .content-box .title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .profile-box .content-box .title {
        font-size: 28px;
    }
}

.profile-box .content-box .designation {
    margin-right: 15px;
    font-family: var(--font_family_heading);
    color: #0071dc;
    font-weight: 500;
    font-size: 28px;
}

@media (max-width: 991px) {
    .profile-box .content-box .designation {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .profile-box .content-box .designation {
        font-size: 20px;
    }
}

.profile-box .content-box .rating {
    margin-top: 6px;
}

.profile-box .content-box .rating li {
    color: #f5c415;
    font-size: 12px;
    margin-right: 5px;
}

.profile-box .content-box .description {
    margin-bottom: 30px;
}

.profile-box .content-box .sub-title {
    font-weight: 500;
    margin-bottom: 15px;
}

.profile-box .content-box .address-list {
    margin-bottom: 30px;
}

.profile-box .content-box .address-list li {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font_family_heading);
}

.profile-box .content-box .address-list li span {
    font-weight: 500;
    display: inline-block;
    margin-left: 5px;
}

.profile-box .content-box .profile-social li {
    margin-right: 10px;
    margin-bottom: 5px;
}

.profile-box .content-box .profile-social li:last-child {
    margin-right: 0;
}

.profile-box .content-box .profile-social li a {
    font-size: 20px;
    color: var(--color_primary);
    height: 45px;
    width: 45px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid;
    border-color: #d7d7d7;
    background-color: transparent;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.profile-box .content-box .profile-social li a:hover {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
    color: #ffffff;
}

.profile-tab .tab-nav-list {
    margin-bottom: 30px;
    border-color: #f6f6f6;
}

.profile-tab .tab-nav-list .nav-item {
    margin-right: 10px;
    margin-bottom: 10px;
}

.profile-tab .tab-nav-list .nav-item:last-child {
    margin-right: 0;
}

.profile-tab .tab-nav-list .nav-item a {
    display: inline-block;
    font-size: 20px;
    font-family: var(--font_family_heading);
    padding: 10px 30px;
    background-color: #f6f6f6;
    border-radius: 5px 5px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.profile-tab .tab-nav-list .nav-item a.active {
    color: #ffffff;
    background-color: var(--color_primary);
}

.profile-tab .dashboard-box {
    margin-bottom: 30px;
}

.profile-tab .dashboard-box .dashboard-info li {
    padding: 20px 20px 20px 70px;
    border: 1px solid #dddddd;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .profile-tab .dashboard-box .dashboard-info li {
        padding: 20px 20px 20px 30px;
    }
}

@media (max-width: 991px) {
    .profile-box .content-box .profile-social li {
        margin-right: 8px;
    }
}

.profile-tab .dashboard-box .dashboard-info li:last-child {
    margin-bottom: 0;
}

.profile-tab .dashboard-box .dashboard-info li .icon-box {
    margin-right: 15px;
    font-size: 52px;
    line-height: 1;
}

.profile-tab .dashboard-box .dashboard-info li .content-box .number {
    line-height: 1.1;
    font-size: 30px;
    font-weight: 500;
    font-family: var(--font_family_heading);
}

.profile-tab .dashboard-box .dashboard-info li .content-box .title {
    font-weight: 500;
    font-size: 20px;
}

.profile-tab .dashboard-box .dashboard-info li.color-1 .icon-box {
    color: #0071dc;
}

.profile-tab .dashboard-box .dashboard-info li.color-1 .content-box .number {
    color: #0071dc;
}

.profile-tab .dashboard-box .dashboard-info li.color-2 .icon-box {
    color: #f69434;
}

.profile-tab .dashboard-box .dashboard-info li.color-2 .content-box .number {
    color: #f69434;
}

.profile-tab .dashboard-box .dashboard-info li.color-3 .icon-box {
    color: #aa3bf7;
}

.profile-tab .dashboard-box .dashboard-info li.color-3 .content-box .number {
    color: #aa3bf7;
}

.profile-tab .dashboard-box .dashboard-info li.color-4 .icon-box {
    color: #e8c91e;
}

.profile-tab .dashboard-box .dashboard-info li.color-4 .content-box .number {
    color: #e8c91e;
}

.profile-tab .dashboard-box .heading-title {
    font-weight: 500;
    font-size: 30px;
}

@media (max-width: 991px) {
    .profile-tab .dashboard-box .heading-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .profile-tab .dashboard-box .heading-title {
        font-size: 26px;
    }
}

.profile-tab .dashboard-box .dashboard-skill {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.profile-tab .dashboard-box .dashboard-skill p {
    margin-bottom: 0;
}

.profile-tab .dashboard-box .dashboard-skill .progress {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    height: 2px;
    margin-bottom: 120px;
    overflow: visible;
    position: relative;
    margin-top: 70px;
}

.profile-tab .dashboard-box .dashboard-skill .progress:before {
    background-color: #e0e0e0;
    content: "";
    bottom: -7px;
    left: 0;
    position: absolute;
    z-index: 1;
    height: 2px;
    width: 100%;
}

.profile-tab .dashboard-box .dashboard-skill .progress .lead {
    font-size: 18px;
    position: absolute;
    font-family: var(--font_family_heading);
    letter-spacing: 2px;
    top: -24px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .profile-tab .dashboard-box .dashboard-skill .progress .lead {
        font-size: 16px;
    }
}

.profile-tab .dashboard-box .dashboard-skill .progress:last-child {
    margin-bottom: 8px;
}

.profile-tab .dashboard-box .dashboard-skill .progress-bar>span {
    font-size: 18px;
    position: absolute;
    font-family: var(--font_family_heading);
    float: right;
    margin-top: -25px;
    padding: 5px;
    top: -4px;
    right: -15px;
}

.profile-tab .dashboard-box .dashboard-skill .progress-bar {
    overflow: visible;
    background-color: var(--color_primary);
    height: 4px;
}

.profile-tab .quizzes-wrap {
    margin-bottom: 30px;
}

.profile-tab .quizzes-wrap table {
    font-size: 18px;
    color: #6b6b6b;
    margin-bottom: 0;
}

.profile-tab .quizzes-wrap table thead tr th {
    background-color: var(--color_primary);
    font-size: 22px;
    color: #ffffff;
    font-family: var(--font_family_heading);
    font-weight: 400;
}

.profile-tab .quizzes-wrap table tbody tr td {
    min-width: 200px;
    font-family: var(--font_family_heading);
}

.profile-tab .quizzes-wrap table tbody tr td span {
    margin-left: 10px;
    border-radius: 45px;
    display: inline-block;
    padding: 3px 13px;
    color: #ffffff;
    font-size: 14px;
}

.profile-tab .quizzes-wrap table tbody tr td span.completed {
    background-color: #f20033;
}

.profile-tab .quizzes-wrap table tbody tr td span.on-progress {
    background-color: var(--color_primary);
}

.profile-tab .quizzes-wrap table tbody tr td:first-child {
    min-width: 350px;
}

.profile-tab .quizzes-wrap table.table-bordered td,
.profile-tab .quizzes-wrap table.table-bordered th {
    border: 0;
}

.profile-tab .quizzes-wrap .table td,
.profile-tab .quizzes-wrap .table th {
    padding: 15px;
}

/*======================================================================= 30. Speaker Area =========================================================================*/
.speaker-wrap-style-1 {
    padding-top: 110px;
    padding-bottom: 80px;
}

@media (max-width: 1199px) {
    .speaker-wrap-style-1 {
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .speaker-wrap-style-1 {
        padding-top: 55px;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .speaker-wrap-style-1 {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .speaker-wrap-style-1 {
        padding-bottom: 20px;
    }
}

.speaker-box.style-1 {
    text-align: center;
    margin-bottom: 30px;
}

.speaker-box.style-1 .figure-box {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.speaker-box.style-1 .figure-box img {
    border-radius: 5px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.speaker-box.style-1 .content-box .title {
    margin-bottom: 0;
    font-weight: 500; 
	font-size: 24px;
}

.speaker-box.style-1 .content-box .title a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.speaker-box.style-1 .content-box .title a:hover {
    color: var(--color_primary);
}

.speaker-box.style-1:hover .figure-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*======================================================================= 31. Shop Area =========================================================================*/
.shop-wrap-style-1 {
    padding-top: 116px;
    padding-bottom: 90px;
}

@media (max-width: 1199px) {
    .shop-wrap-style-1 {
        padding-top: 106px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .shop-wrap-style-1 {
        padding-top: 96px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .shop-wrap-style-1 {
        padding-top: 86px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .shop-wrap-style-1 {
        padding-top: 76px;
        padding-bottom: 50px;
    }
}

.rt-archive-wrap .filter-box {
    margin-bottom: 30px;
    justify-content: center;
}

.rt-archive-wrap .filter-box .title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.rt-archive-wrap .filter-box .title span {
    color: var(--color_secondary);
}

.shop-box-style-1 {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

.shop-box-style-1 .figure-box:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.shop-box-style-1 .figure-box {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.shop-box-style-1 .figure-box img {
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}

.shop-box-style-1 .content-box {
    text-align: center;
}

.shop-box-style-1 .content-box .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.shop-box-style-1 .content-box .title a {
    color: #000;
}

.shop-box-style-1 .content-box .title a:hover{
    color: var(--color_primary);
}

.shop-box-style-1 .content-box .price {
    font-size: 22px;
    color: var(--color_primary);
    font-weight: 600;
    font-family: var(--font_family_heading);
}

.shop-box-style-1 .action-items {
    position: absolute;
    z-index: 2;
    right: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.shop-box-style-1 .action-items li {
    opacity: 0;
    visibility: hidden;
    margin-bottom: 10px;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.shop-box-style-1 .action-items li:last-child {
    margin-bottom: 0;
}

.shop-box-style-1 .action-items li span {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    justify-content: flex-end;
}

.shop-box-style-1 .action-items li span .text {
    font-size: 15px;
    position: relative;
    z-index: -1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    background-color: #0071dc;
    height: 35px;
    padding: 0 0 0 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.shop-box-style-1 .action-items li span .icon {
    color: var(--color_primary);
    height: 35px;
    width: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #0000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.shop-box-style-1 .action-items li span .icon .rtsb-icon{
    font-size: 14px;
}

.shop-box-style-1 .action-items li span .icon a {
    color: var(--color_primary);  
}
.shop-box-style-1 .action-items li span:hover .text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.shop-box-style-1 .action-items li .rtsb-wishlist-btn,
.shop-box-style-1 .action-items li .rtsb-quick-view-btn,
.shop-box-style-1 .action-items li .rtsb-compare-btn{
    align-items: center;
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: center;
    padding: 0;
}

.shop-box-style-1 .action-items li span .button-text {
    color: #fff;
    height: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    background: var(--color_primary);
    padding-left: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.shop-box-style-1 .action-items li .tipsy[data-original-title="Add to Compare"] {
    display: none;
}
.shop-box-style-1 .action-items li span:hover .button-text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.shop-box-style-1 .action-items li span:hover .icon {
    color: #ffffff;
    background-color: #0071dc;
    border: 1px solid #0071dc;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.shop-box-style-1 .action-items li span:hover .icon a {
    color: #fff;
}

.shop-box-style-1:hover .figure-box:before {
    background-color: rgba(255, 255, 255, 0.8);
} 

.shop-box-style-1:hover .action-items li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.shop-box-style-1:hover .action-items li:nth-child(1n) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.shop-box-style-1:hover .action-items li:nth-child(2n) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.shop-box-style-1:hover .action-items li:nth-child(3n) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.shop-box-style-1:hover .action-items li:nth-child(4n) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.shop-box-style-1:hover .action-items li:nth-child(5n) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.shop-wrap-style-2 {
    padding-bottom: 80px;
    padding-top: 110px;
}

@media (max-width: 1199px) {
    .shop-wrap-style-2 {
        padding-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .shop-wrap-style-2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .shop-wrap-style-2 {
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .shop-wrap-style-2 {
        padding-bottom: 40px;
    }
}

.shop-wrap-style-2 .inner-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.content-single-wrapper {
    margin-bottom: 50px;
}

.yith-wcqv-main {
    padding: 30px 15px 0;
}

@media (max-width: 991px) {
    .content-single-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .content-single-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .content-single-wrapper {
        margin-bottom: 20px;
    }
}

.content-single-wrapper .product-img-view {
    position: relative;
    margin-bottom: 20px;
}

.content-single-wrapper .product-img-view .tab-content {
    text-align: center;
    padding: 30px;
    position: relative;
    border: none;
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    cursor: move;
}

.content-single-wrapper .product-img-view .tab-content img {
    box-shadow: 0 11px 16px 0 rgba(0, 0, 0, 0.34);
}

.content-single-wrapper .product-img-view ul.tab-nav-list {
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-left: -5px;
    margin-right: -5px;
}

.content-single-wrapper .product-img-view ul.tab-nav-list li {
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    border: none;
}

.content-single-wrapper .product-img-view ul.tab-nav-list li a {
    border: 1px solid #e1e1e1;
    padding: 20px;
    display: block;
}

.content-single-wrapper .product-img-view ul.tab-nav-list li a img {
    width: 100%;
}

.content-single-wrapper .product-img-view ul.tab-nav-list li a img:hover {
    opacity: 1;
}

.content-single-wrapper .product-img-view ul.tab-nav-list li a.active {
    border: 1px solid #ffffff;
    box-shadow: 0 0 32px 0 #b5b5b5;
}

.content-single-wrapper .single-product-description {
    margin-bottom: 30px;
}

.content-single-wrapper .single-product-description .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}

.content-single-wrapper .single-product-description .rating {
    margin-bottom: 10px;
    color: #f5c415;
    font-size: 13px;
}

.content-single-wrapper .single-product-description .rating li {
    margin-right: 5px;
}

.content-single-wrapper .single-product-description .rating li:last-child {
    margin-right: 0;
}

.content-single-wrapper .single-product-description .rating .rating-count {
    color: #8d8d8d;
}

.content-single-wrapper .single-product-description .price {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .content-single-wrapper .single-product-description .price {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .content-single-wrapper .single-product-description .price {
        font-size: 18px;
    }
}

.content-single-wrapper .single-product-description .description {
    color: #444343;
    font-size: 17px;
    margin-bottom: 0;
}

.content-single-wrapper .single-product-description .top-content {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 30px;
    margin-bottom: 35px;
}

.content-single-wrapper .single-product-description .action-area {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

@media only screen and (max-width: 479px) {
    .content-single-wrapper .single-product-description .action-area {
        display: block;
    }
}

.content-single-wrapper .single-product-description .action-area li {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 479px) {
    .content-single-wrapper .single-product-description .action-area li {
        display: block;
        margin-right: 0;
    }
}

.content-single-wrapper .single-product-description .action-area li:last-child {
    margin-right: 0;
}

.content-single-wrapper .single-product-description .action-area li .input-group {
    width: auto;
}

.content-single-wrapper .single-product-description .action-area li .input-group .form-control {
    text-align: center;
    height: 50px;
    width: 50px;
    display: block;
    outline: none;
    font-size: 24px;
    border-radius: 0;
    color: #051441;
    border: 1px solid #d3d3d3;
    border-right: 0;
}

.content-single-wrapper .single-product-description .action-area li .input-group .form-control:focus {
    box-shadow: none;
}

.content-single-wrapper .single-product-description .action-area li .input-group .input-group-btn {
    display: inline-grid;
}

.content-single-wrapper .single-product-description .action-area li .input-group .input-group-btn .quantity-btn {
    padding: 2px 12px;
    font-size: 10px;
    color: #444444;
    background-color: transparent;
    background-image: none;
    outline: none;
    border: 1px solid #d3d3d3;
    cursor: pointer;
}

.content-single-wrapper .single-product-description .action-area li .cart-btn {
    border: 1px solid #d3d3d3;
    background-color: transparent;
    padding: 12px 25px;
    display: block;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.content-single-wrapper .single-product-description .action-area li .cart-btn:hover {
    background-color: var(--color_primary);
    border: 1px solid var(--color_primary);
    color: #ffffff;
}

.content-single-wrapper .single-product-description .action-area li .item-btn {
    border: 1px solid #d3d3d3;
    padding: 14px 15px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.content-single-wrapper .single-product-description .action-area li .item-btn i:before {
    margin-left: 0;
    font-size: 20px;
    color: #000000;
    line-height: 20px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.content-single-wrapper .single-product-description .action-area li .item-btn:hover {
    border: 1px solid var(--color_primary);
    background-color: var(--color_primary);
}

.content-single-wrapper .single-product-description .action-area li .item-btn:hover i:before {
    color: #ffffff;
}

.content-single-wrapper .single-product-description .action-area2 {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.content-single-wrapper .single-product-description .action-area2 li {
    margin-right: 20px;
}

.content-single-wrapper .single-product-description .action-area2 li:last-child {
    margin-right: 0;
}

.content-single-wrapper .single-product-description .action-area2 li i {
    margin-right: 5px;
}

.content-single-wrapper .single-product-description .action-area2 .link-text {
    color: #444343;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.content-single-wrapper .single-product-description .action-area2 .link-text:hover {
    color: var(--color_primary);
}

.content-single-wrapper .single-product-description .action-area2 .rotate-me {
    -webkit-animation: sync 2s ease-in-out;
    animation: sync 2s ease-in-out;
}

.content-single-wrapper .single-product-description .action-area2 #sync {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 0;
    outline: none;
}

.content-single-wrapper .single-product-description .action-area2 #icon_wrap {
    line-height: 1;
}

.content-single-wrapper .single-product-description .action-area2 #icon_wrap i {
    margin: 5px;
}

@-webkit-keyframes sync {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes sync {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*======================================================================= 32. Brand Area =========================================================================*/
.brand-wrap-style-1 {
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 92px;
}

@media (max-width: 1199px) {
    .brand-wrap-style-1 {
        padding-top: 80px;
        padding-bottom: 82px;
    }
}

@media (max-width: 991px) {
    .brand-wrap-style-1 {
        padding-top: 70px;
        padding-bottom: 72px;
    }
}

@media (max-width: 767px) {
    .brand-wrap-style-1 {
        padding-top: 60px;
        padding-bottom: 62px;
    }
}

@media (max-width: 575px) {
    .brand-wrap-style-1 {
        padding-top: 50px;
        padding-bottom: 52px;
    }
}

.brand-wrap-style-1 .inner-wrap {
    max-width: 890px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.brand-box.style-1 {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-box.style-1 .figure-box {
    box-shadow: 0 0 90px 0 rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.brand-box.style-1 .figure-box .brand-name {
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    font-size: 15px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: -23px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #000000;
    display: inline-block;
    padding: 8px 18px;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.brand-box.style-1:hover .figure-box .brand-name {
    opacity: 1;
    visibility: visible;
}

.template-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 0.7s ease-in-out;
}

.template-search .search-form {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.template-search .search-form input[type="search"] {
    width: 75%;
    color: #000000;
    font-size: 34px;
    text-align: left;
    border: none;
    border-bottom: 2px solid;
    margin: 0 auto;
    padding: 10px 0;
    outline: none;
}

.template-search .search-form .search-btn {
    padding: 28px 60px;
    box-shadow: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    transform: translateX(-150px) translateY(-10px);
    background-color: transparent;
    transition: all 0.3s ease-out;
}

.template-search .search-form .search-btn i {
    margin-left: 0;
}

.template-search .search-form .search-btn:focus {
    box-shadow: none;
    outline: none;
}

.template-search .search-form input::-webkit-input-placeholder {
    color: #cfcfcf;
}

.template-search .search-form input::-moz-placeholder {
    color: #cfcfcf;
}

.template-search .search-form input:-moz-placeholder {
    color: #cfcfcf;
}

.template-search .search-form input:-ms-input-placeholder {
    color: #cfcfcf;
}

.template-search .close {
    position: fixed;
    top: 15px;
    right: 20px;
    color: #000000;
    border: none;
    opacity: 0.3;
    visibility: visible;
    padding: 3px 15px 5px;
    font-size: 70px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.template-search .close:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.template-search .close:hover {
    opacity: 1;
}

.template-search.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.mean-bar--right {
    display: flex;
    align-items: center;
    min-width: 120px;
    justify-content: space-between;
}

.mean-bar--right .actions a {
    color: #000;
    font-size: 20px;
}

/*Page banner*/
.site-content .entry-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 115px 15px 118px;
}

.entry-banner .entry-banner-content {
    position: relative;
    text-align: center;
}

.entry-banner .entry-banner-content .title {
    color: white;
}

.site-content .entry-banner::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #00000063;
}

.breadcrumbs {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font_family_heading);
}

.breadcrumb-wrap-style-1 .breadcrumbs li a, .breadcrumb-wrap-style-1 .breadcrumbs li.separator {
    color: #4a4a4a;
}

.breadcrumb-wrap-style-1 .breadcrumbs li .bread-current {
    color: #9e9e9e;
    font-weight: normal;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs li.separator {
    padding: 0px 7px;
}

.breadcrumbs li a {
    color: #ebe8e8;
}
.breadcrumbs li a:hover{
	color:#d5d5d5;
}

.breadcrumbs {
    color: #fff;
}

.elementor-section.no-overflow {
    overflow: hidden;
}

/*Archive padding*/
.rt-archive-wrap {
    padding-top: 110px;
    padding-bottom: 90px;
}

/*Post comment*/
.comment-respond .form-control {
    color: #000000;
    font-size: 16px;
    padding: 15px 20px;
    border: 0;
    background-color: #f7f7f7;
    border-radius: 0;
    height: 50px;
}

.comment-respond .textarea.form-control {
    height: auto;
}

@media (min-width: 576px) {
    .comment-respond .form-group.comment-form-comment {
        margin-bottom: 30px;
    }
}

.comments-area .comment-text {
    padding-top: 10px;
}

.comments-area .each-comment {
    display: flex;
    align-items: flex-start;
    background-color: #f8f8f8;
    padding: 30px 25px 20px;
}

.comments-area .comment-list li .each-comment {
    margin-bottom: 20px;
}

.comments-area .comment-author-name{
    font-size: 14px;
    font-weight: 400;
}

.comments-area .comment-author-name a {
    font-weight: 500;
    color: black;
}

.comments-area .comments-body {
    margin-left: 15px;
}

.comments-area .comment-meta {
    display: flex;
    justify-content: space-between;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
}

.comments-area .comment-author-name i {
    color: #767575;
    padding-right: 7px;
    padding-left: 10px;
    font-size: 14px;
}

/*Custom responsive check*/

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

    .search-wrap.style-1 {
        max-width: 430px;
    }

    .btn-fill.style-2 {
        padding: 12px 15px;
    }

    select#search_category_filter {
        background-position: 100%;
    }

    .course_search_box_wrapper select#search_category_filter {
        background-position: 90%;
    }

    #header-2 .btn-fill {
        padding: 12px 10px;
    }

}

body.admin-bar header.sticky-on.sticky .navbar-wrap {
    top: 32px;
}

.header-area .navbar-wrap {
    background: white;
}

.fadeInRightTopMedium {
    -webkit-animation-name: fadeInRightTopMedium;
    animation-name: fadeInRightTopMedium;
}

@-webkit-keyframes fadeInRightTopMedium {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200px) translateY(-200px);
        transform: translateX(200px) translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

@keyframes fadeInRightTopMedium {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200px) translateY(-200px);
        -ms-transform: translateX(200px) translateY(-200px);
        transform: translateX(200px) translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.right-full-width>.elementor-column-gap-default {
    padding-left: calc((100% - 1190px) / 2);
}

/*Gutenburg*/

.wp-block-image .alignleft {
    margin: 8px 25px 8px 0;
}

.wp-block-image .alignright {
    float: right;
    margin: 8px 0 8px 25px;
}

.blocks-gallery-item figcaption {
    line-height: 1.4;
}

/*Design update*/
.header-style-1 .site-branding {
    top: -5px;
    position: relative;
}

.tutor-rating-container .ratings {
    display: flex;
    align-items: center;
}

.tutor-star-rating-group{
    color: #f4c150;
    display: flex;
    text-align: left;
    margin-right: 4px;
}

.tutor-star-rating-group i{
    cursor: pointer;
    font-size: 22px;
}

.tutor-rating-container .rating-digits{
    margin-top: 2px;
}

.icon-box-shadow{
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 86.48px 5.52px rgba(0, 0, 0, 0.18);
}

.tutor-course-topics-contents .tutor-topics-summery{
    padding: 0 20px 10px;
}

.tutor-course-single-sidebar-wraper .tutor-sidebar-tabs-wrap .tutor-lessons-tab-area>div.active{
    color: #fff !important;
    border-left: none !important;
}

.tutor-qna-spotlight-sidebar .tutor-qa-new[data-context='course-single-qna-sidebar']{
    position: inherit;
}

.tutor-topics-in-single-lesson .tutor-topics-title{
    position: relative;
}

.tutor-lesson-sidebar .tutor-lesson-sidebar-tab-item,
.tutor-lesson-sidebar .tutor-sidebar-tabs-content{
    border-left: 0 !important;
}

.tutor-course-single-sidebar-wraper .tutor-sidebar-tabs-wrap .tutor-sidebar-tabs-content,
.tutor-course-single-sidebar-wraper .tutor-sidebar-tabs-wrap .tutor-sidebar-tabs-content #tutor-lesson-sidebar-tab-content{
    border-left: none !important;
}

.tutor-lessons-under-topic .tutor-single-lesson-items{
    position: relative;
    padding: 5px 0;
}

.tutor-lessons-under-topic .tutor-single-lesson-items .tutor-single-lesson-items-left{
    margin-right: 65px;
}

.tutor-lesson-sidebar-tab-item .tutor-topics-in-single-lesson{
    padding: 10px 0;
}

.tutor-single-lesson-items .tutor-single-lesson-items-right{
    gap:3px;
}

.tutor-empty-state-wrapper img{
    max-width: 150px;
}

.tutor-spotlight-tab .tab-header {
    padding-top: 70px !important;
    gap: 10px;
}

/*Course Single Lession*/
.tutor-course-single-sidebar-wraper .tutor-sidebar-tabs-wrap .tutor-lessons-tab-area>div{
    padding: 10px;
}
.tutor-lesson-sidebar-tab-item h1{
    font-size: 22px;
    line-height: 1.2;
}

