/**
Theme Name: American Frontier
Author: Blue Winds Media
Author URI: https://www.bluewindsmedia.com
Description: A custom LMS theme for American Frontier, built on the Astra framework.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: american-frontier
Template: astra
*/

/* ======= Common CSS: Start ======= */
*,
::before,
:after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
    font-family: "Poppins", Sans-serif;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

p strong{
    font-weight: 600!important;
}

/* h1, h2, h3, h4, h5, h6{
    font-family: "Satoshi", Sans-serif!important;
    font-weight: 700!important;
    letter-spacing: ;
}

p, li, table, a, span, input, select, textarea {
    font-family: "Satoshi", Sans-serif!important;
    font-weight: normal!important;
} */

p {
    margin: 0px 0px 20px;
}

p:last-child {
    margin: 0px 0px 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

ul,
ol,
li {
    list-style: none;
}

ul+ul,
ul+ol,
ol+ul,
ol+ol {
    margin: 20px 0px 0px;
}

a:focus,
a:focus-within,
a:focus-visible,
a:target,
a:visited,
a:active,
button:focus,
button:focus-within,
button:focus-visible,
button:target,
button:visited,
button:active,
input:focus,
input:focus-within,
input:focus-visible,
input:target,
input:visited,
input:active,
select:focus,
select:focus-within,
select:focus-visible,
select:target,
select:visited,
select:active,
textarea:focus,
textarea:focus-within,
textarea:focus-visible,
textarea:target,
textarea:visited,
textarea:active {
    outline: none;
    box-shadow: none;
    font-family: inherit;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
    color: inherit;
    opacity: 1;
    font-family: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ======= Common CSS: End ======= */



/* ======= Hover Button CSS: Start ======= */

/* ======= Hover Button CSS: End ======= */



/* ======= Heading Text Anim CSS: Start ======= */
span.word {
    display: inline-flex;
    overflow: hidden;
}

.text-anim span.word span.char {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.17, 0.17, 0, 0.79) !important;
}

.text-anim.split-is h1 span.word span.char,
.text-anim.split-is h2 span.word span.char,
.text-anim.split-is h3 span.word span.char,
.text-anim.split-is h4 span.word span.char {
    opacity: 1;
    transition-delay: calc(30ms * var(--char-index)) !important;
    display: inline-flex;
}

/* ======= Heading Text Anim CSS: End ======= */



/* ======= Header Section CSS: Start ======= */

.icon-list .elementor-icon-list-item a {
    flex-direction: row-reverse;
    gap: 10px;
}

.icon-list span.elementor-icon-list-text {
    padding-inline-start: 0px !important;
}

/* .search-form-menu-col {
    width: auto;
}

.logo-col {
    width: auto;
}

.cart-btn-col {
    width: auto;
} */


.header-main-section.sticky-show {
    display: none;
    position: fixed;
    background: #f5f5f5;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
    /* transform: translateY(-200px); */
}

.header-main-section.sticky-on {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    /* transform: translateY(-75px); */
}

.header-main-section.sticky-on.is-sticky {
    animation: headerIsSticky .6s 0s cubic-bezier(.3, 0, .7, 1) both;
    opacity: 1;
    transition: opacity 0s 0s ease !important;
}

.header-main-section.sticky-on:not(.is-sticky) {
    top: -250px;
    animation: headerOnSticky .6s 0s cubic-bezier(.3, 0, .7, 1) both;
    opacity: 0;
    transition: opacity 0s 1s ease !important;
}

@keyframes headerIsSticky {
    0% {
        top: -250px;
    }

    80% {
        top: 0px;
    }
}

@keyframes headerOnSticky {
    0% {
        top: 0px;
    }

    80% {
        top: -250px;
    }
}


/* ======= Header Section CSS: End ======= */



/* ======= Footer Section CSS: Start ======= */

.site-map-col {
    width: auto;
}

/* ======= Footer Section CSS: End ======= */



/* ======= hero Section CSS: Start ======= */

.hero-sec-btn span.elementor-button-icon {
    background: #52BFB4;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transition: all 0.4s ease-in-out;
}

.hero-sec-btn .elementor-button-icon svg,
.about-us-btn .elementor-button-icon svg {
    width: 24px;
    height: 24px;
}

.hero-sec-btn span.elementor-button-icon svg path,
.about-us-btn span.elementor-button-icon svg path {
    transition: all 0.4s ease-in-out;
}

.hero-sec-btn span.elementor-button-content-wrapper,
.about-us-btn span.elementor-button-content-wrapper {
    align-items: center;
}

.hero-sec-btn a.elementor-button,
.about-us-btn a.elementor-button {
    transition: all 0.4s ease-in-out;
}

.hero-sec-btn .elementor-button-wrapper:hover a.elementor-button {
    background-color: #52BFB4;
    color: #fff;
}


.hero-sec-btn .elementor-button-wrapper:hover span.elementor-button-icon {
    background: #ffffff;
}

.hero-sec-btn .elementor-button-wrapper:hover span.elementor-button-icon svg path {
    stroke: #52BFB4;
}

.hero-join-btn .elementor-button-icon svg,
.about-us-btn .elementor-button-icon svg {
    width: 24px;
    height: 24px;
}

.hero-join-btn span.elementor-button-content-wrapper,
.about-us-btn span.elementor-button-content-wrapper {
    align-items: center;
}


/* =======  hero Section CSS: End ======= */

/* about section start */

.video-section .elementor-custom-embed-play svg {
    opacity: 1 !important;
    transition: all .5s;
}

.video-section .elementor-custom-embed-image-overlay:before {
    content: '';
    background: rgb(0 0 0 / 35%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    border-radius: 50px !important;
}

.video-section .elementor-custom-embed-play {
    z-index: 1;
}

.video-section .elementor-custom-embed-image-overlay {
    background-position: 100% !important;
    border-radius: 50px !important;

}

.video-section .elementor-wrapper {
    height: 900px !important;
    width: 100% !important;
}

.about-us-btn span.elementor-button-icon {
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transition: all 0.4s ease-in-out;
}

.about-us-btn .elementor-button-wrapper:hover a.elementor-button {
    background-color: #fff;
    color: #52BFB4;
}

.about-us-btn .elementor-button-wrapper:hover span.elementor-button-icon {
    background: #52BFB4;
}

.about-us-btn .elementor-button-wrapper:hover span.elementor-button-icon svg path {
    stroke: #fff;
}


.video-section .elementor-custom-embed-play svg {
    opacity: 1;
    transition: all .5s;
    position: relative;
    z-index: 1;
}

.video-section .elementor-custom-embed-play {
    overflow: visible;
    display: flex;
}

.video-section .elementor-custom-embed-play:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #FFF;
    display: block;
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.video-section .elementor-custom-embed-play:before {
    animation: VideoBtn 3s infinite linear;
}

@keyframes VideoBtn {
    0% {
        transform: scale(1, 1);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}



/* about section end */

/* counter section start */

.counter-div .elementor-counter-number-suffix span {
    font-size: 55px;
    position: absolute;
}

.counter-div .elementor-counter-title {
    text-align: center;
}

/* counter section start */

/* client section start */

.row {
    background: radial-gradient(46.01% 69.01% at 50% 50.08%, #000 0%, rgba(0, 0, 0, 0.00) 100%) !important;
    opacity: 0.2;
    position: relative;
    width: 100%;
    height: 100%;

}

/* 
.column-1 {
    background: #52BFB4;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 50%;
}

.column-2 {
    background: #52BFB4;
    width: 3px;
    height: 600px;
    margin: 0 auto;
} */

.border-div {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* .column-3 {
    background: #52BFB4;
    width: 3px;
    height: 600px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: auto;
    right: calc(100% - 410px);
} */

/* .column-4 {
    background: #52BFB4;
    width: 3px;
    height: 600px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: auto;
    left: calc(100% - 410px);
} */

/* client section end */

/* faq section start */

.faq-div .elementor-accordion-icon svg {
    width: 24px !important;
    height: 24px !important;
}

.faq-div .elementor-accordion-icon {
    width: 100% !important;
    max-width: 50px !important;
    height: 50px;
    background: #eee;
    border-radius: 60px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.faq-div .elementor-tab-title.elementor-active .elementor-accordion-icon {
    background-color: #52BFB4;
    display: flex !important;
}

.faq-div .elementor-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.20) !important;
}

.faq-div .elementor-tab-title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* faq section end */

/* blog section start */

.blog-btn .elementor-button-content-wrapper {
    align-items: center;
}

.blog-btn .elementor-button-content-wrapper svg {
    width: 24px !important;
    height: 24px !important;
}

/* blog section end */

/* course section start */

.blog-loop .swiper-initialized {
    width: calc(100% + 30vw);
    overflow: hidden;
    margin-left: auto;
    margin-right: -30vw;
}

/* course section end */

/* testimonial section start */
.testimonial-slider .swiper-slide {
    overflow: visible;
}

.testimonial-slider .swiper-slide .elementor-testimonial__content {
    opacity: 0;
    pointer-events: none;
    max-width: 1380px;
    width: 70vw;
    transition: all 0.5s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__content {
    opacity: 1;
    pointer-events: all;
}

.testimonial-slider .elementor-testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-slider .swiper-slide cite.elementor-testimonial__cite {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide+.swiper-slide cite.elementor-testimonial__cite {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.testimonial-slider .swiper-slide {
    padding: 0px !important;
}

.testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__image {
    border-radius: 50px;
    border: 10px solid #52BFB4;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.testimonial-slider .elementor-testimonial__image {
    border-radius: 50px;
    overflow: hidden;
    border: 10px solid #ffffff00;
}

.testimonial-slider .swiper-initialized {
    width: 114vw !important;
    margin-left: -7.5vw !important;
    margin-right: -7vw !important;
}

.testimonial-slider .elementor-testimonial__title {
    padding-top: 10px;
}

.testimonial-slider .elementor-testimonial__text {
    position: relative;
}

.testimonial-slider .elementor-testimonial__text:after {
    content: '';
    position: absolute;
    width: 87px;
    height: 73px;
    background-image: url(/wp-content/uploads/2024/11/2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: -70px;
}

.testimonial-slider .elementor-testimonial__text:before {
    content: '';
    position: absolute;
    width: 87px;
    height: 73px;
    background-image: url(/wp-content/uploads/2024/11/3.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    right: -100px;
}



/* testimonial section end */

/* login page css start */


.ur-submit-button,
.user-registration-Button {
    background-color: #52BFB4 !important;
    font-family: "Poppins", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    transition-duration: 0.4s !important;
    border: 1px solid #52BFB4 !important;
    border-radius: 60px !important;
    padding: 15px 33px !important;
    margin: auto !important;
}

.ur-submit-button:hover,
.user-registration-Button:hover {
    background-color: transparent !important;
    color: #52BFB4 !important;
}

.ur-frontend-form {
    margin-bottom: 30px;
    border: 0 !important;
    padding: 20px;
    box-sizing: border-box;
}

.user-registration-login-title,
.entry-header .entry-title {
    font-family: "Poppins", Sans-serif !important;
    font-size: 60px !important;
    font-weight: 600 !important;
    line-height: 1em !important;
    color: #000000 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 30px !important;
}

.ur-frontend-form .ur-form-row .ur-form-grid legend,
.ur-frontend-form .ur-form-row .ur-form-grid label,
.user-registration-LostPassword.lost_password,
.user-registration-register.register {
    color: #000 !important;
    font-family: "Poppins", Sans-serif !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    opacity: 0.5;
}

#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a {
    color: #52BFB4 !important;
    background: #eee !important;
}

#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a {
    border-color: #52BFB4 !important;
}

#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a {
    padding: 12px 12px 12px 24px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    color: #000;
    font-size: 16px !important;
    font-weight: 500;
    line-height: normal !important;
    font-family: "Poppins", Sans-serif !important;
}

#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link:hover a {
    color: #52BFB4 !important;
    background: #eee !important;
}

#user-registration.vertical .user-registration-MyAccount-content__body p a,
#user-registration.horizontal .user-registration-MyAccount-content__body p a {
    font-weight: 500 !important;
    color: #52BFB4 !important;
}

#user-registration.vertical .user-registration-MyAccount-content__body p {
    font-family: "Poppins", Sans-serif !important;
}

.user-registration-MyAccount-content__header {
    color: #000;
    font-family: "Poppins", Sans-serif !important;
    font-size: 40px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: normal !important;
}

#user-registration.vertical .user-registration-MyAccount-content__body .ur-frontend-form.login .ur-form-row .ur-form-grid fieldset .user-registration-form-row .password-input-group .input-text:focus,
#user-registration.horizontal .user-registration-MyAccount-content__body .ur-frontend-form.login .ur-form-row .ur-form-grid fieldset .user-registration-form-row .password-input-group .input-text:focus {
    border-color: #52BFB4 !important;
}

.ld-expand-button.ld-primary-background {
    background-color: #52BFB4 !important;
}

.ast-article-single .entry-meta,
.ast-article-single .entry-meta .author-name,
.ast-article-single .entry-meta .published {
    color: #52BFB4 !important;
}

.learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage {
    color: #52BFB4 !important;
}

.learndash-wrapper .ld-breadcrumbs a,
.learndash-wrapper .ld-lesson-item.ld-is-current-lesson .ld-lesson-item-preview-heading,
.learndash-wrapper .ld-lesson-item.ld-is-current-lesson .ld-lesson-title,
.learndash-wrapper .ld-primary-color-hover:hover,
.learndash-wrapper .ld-primary-color,
.learndash-wrapper .ld-primary-color-hover:hover,
.learndash-wrapper .ld-primary-color,
.learndash-wrapper .ld-tabs .ld-tabs-navigation .ld-tab.ld-active,
.learndash-wrapper .ld-button.ld-button-transparent,
.learndash-wrapper .ld-button.ld-button-reverse,
.learndash-wrapper .ld-icon-certificate,
.learndash-wrapper .ld-login-modal .ld-login-modal-login .ld-modal-heading,
#wpProQuiz_user_content a,
.learndash-wrapper .ld-item-list .ld-item-list-item a.ld-item-name:hover,
.learndash-wrapper .ld-focus-comments__heading-actions .ld-expand-button,
.learndash-wrapper .ld-focus-comments__heading a,
.learndash-wrapper .ld-focus-comments .comment-respond a,
.learndash-wrapper .ld-focus-comment .ld-comment-reply a.comment-reply-link:hover,
.learndash-wrapper .ld-expand-button.ld-button-alternate {
    color: #52BFB4 !important;
}

/* .learndash-wrapper .ld-button:hover:not(.learndash-link-previous-incomplete):not(.ld-button-transparent):not(.ld--ignore-inline-css),
#learndash-tooltips .ld-tooltip:after,
#learndash-tooltips .ld-tooltip,
.learndash-wrapper .ld-primary-background,
.learndash-wrapper .btn-join:not(.ld--ignore-inline-css),
.learndash-wrapper #btn-join:not(.ld--ignore-inline-css),
.learndash-wrapper .ld-button:not(.ld-button-reverse):not(.learndash-link-previous-incomplete):not(.ld-button-transparent):not(.ld--ignore-inline-css),
.learndash-wrapper .ld-expand-button,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button:not(.wpProQuiz_button_reShowQuestion):not(.wpProQuiz_button_restartQuiz),
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button2,
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading,
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-focus-sidebar-trigger,
.learndash-wrapper .ld-focus-comments .form-submit #submit,
.learndash-wrapper .ld-login-modal input[type='submit'],
.learndash-wrapper .ld-login-modal .ld-login-modal-register,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_certificate a.btn-blue,
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items a,
#wpProQuiz_user_content table.wp-list-table thead th,
#wpProQuiz_overlay_close,
.learndash-wrapper .ld-expand-button.ld-button-alternate .ld-icon {
    background-color: #52BFB4 !important;
} */

.learndash-wrapper:not(.ld-registration__outer-wrapper) #learndash_mark_complete_button,
.learndash-wrapper:not(.ld-registration__outer-wrapper) .learndash_mark_complete_button {
    background-color: #000 !important;
    outline: none !important;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewDiv li.wpProQuiz_reviewQuestionTarget {
    outline-color: #000 !important;
    color: #fff !important;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewDiv li.wpProQuiz_reviewQuestionTarget,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewLegend span.wpProQuiz_reviewQuestion_Target {
    outline-color: #000 !important;
}

/* Quiz quiestion border color */
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label.is-selected,
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label:focus-within {
    border-color: #ea7070 !important;
}

body #ld_course_categorydropdown label,
body #ld_lesson_categorydropdown label,
body #ld_topic_categorydropdown label,
body .learndash label {
    color: #334155 !important;
}

.page-links .page-link,
.single .post-navigation a {
    color: #52BFB4 !important;
}

.learndash-wrapper .ld-pagination .ld-pages {
    background-color: #fff !important;
    border: 1px solid #000 !important;
}

.learndash-wrapper .ld-pagination .ld-pages a {
    color: #000 !important;
    transition: all .25s ease-in-out;
}

.learndash-wrapper .ld-pagination {
    color: #000 !important;
}

.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-pagination .ld-pages i,
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-pagination .ld-pages span {
    color: #000 !important;
}

.course-content .elementor-widget-container {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* login page css end */

.learndash .ld-tabs-content ul {
    padding: 0 !important;
}

.learndash .ld-tabs-content ul li {
    padding: 0 0 0 22px;
    margin: 0 0 5px 0;
    position: relative;
}

.learndash .ld-tabs-content ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

body.archive .ast-archive-description {
    background: transparent;
    padding: 0 0 40px 0;
}

body.archive .ast-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

body.archive .ast-row article.ast-article-post {
    background-color: #fff;
    background-image: none;
    border-radius: 40px;
    padding: 30px;
    border: 2px solid #e2e7ed;
}

body.archive .ast-row article .ast-article-inner {
    height: 100%;
}

body.archive .ast-row article .ast-article-inner .post-content.ast-grid-common-col {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.archive .ast-row article h2 {
    font-size: 24px;
}

body.archive .ast-row article .entry-header.ast-blog-single-element {
    display: none;
}

body.archive .ast-row article .ast-excerpt-container.ast-blog-single-element {
    margin-bottom: 30px;
}

body.archive .ast-row article .post-thumb {
    display: none;
}

body.archive .ast-row article .entry-meta * {
    color: #52BFB4 !important;
}

body.archive .ast-row article .entry-meta *:hover {
    color: #50bbb0 !important;
}

body.archive .ast-row article .read-more {
    margin: auto 0 0 0;
}

body.archive .ast-row article .read-more a {
    background-color: #52BFB4;
    font-family: Poppins, sans-serif;
    font-size: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #52BFB4;
    border-radius: 60px;
    padding: 7px 30px;
}

body.archive .ast-row article .read-more a::before {
    content: "View Course";
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    top: 4px;
}

body.archive .ast-row article .read-more a:hover {
    background-color: #fff;
    color: #52BFB4;
}

body.archive .ast-row article .read-more a:hover::before {
    color: #52BFB4;
}

body.archive .post-page-numbers.current .page-link,
body.archive .ast-pagination .page-numbers.current {
    background: #52BFB4 !important;
    color: #fff !important;
}

body.archive .ast-pagination .page-numbers {
    color: #52BFB4 !important;
}

body.archive .ast-pagination .prev,
body.archive .ast-pagination .prev:visited,
body.archive .ast-pagination .prev:focus,
body.archive .ast-pagination .next,
body.archive .ast-pagination .next:visited,
body.archive .ast-pagination .next:focus {
    color: #52BFB4 !important;
}

/* Search Page */
body.search-results .ast-archive-description {
    background: transparent;
    padding: 0 0 40px 0;
}

body.search-results .ast-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

body.search-results .ast-row article.ast-article-post {
    background-color: #fff;
    background-image: none;
    border-radius: 40px;
    padding: 30px;
    border: 2px solid #e2e7ed;
}

body.search-results .ast-row article .ast-article-inner {
    height: 100%;
}

body.search-results .ast-row article .ast-article-inner .post-content.ast-grid-common-col {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.search-results .ast-row article h2 {
    font-size: 24px;
}

body.search-results .ast-row article .entry-header.ast-blog-single-element {
    display: none;
}

body.search-results .ast-row article .ast-excerpt-container.ast-blog-single-element {
    margin-bottom: 30px;
}

body.search-results .ast-row article .post-thumb {
    display: none;
}

body.search-results .ast-row article .entry-meta * {
    color: #52BFB4 !important;
}

body.search-results .ast-row article .entry-meta *:hover {
    color: #50bbb0 !important;
}

body.search-results .ast-row article .read-more {
    margin: auto 0 0 0;
}

body.search-results .ast-row article .read-more a {
    background-color: #52BFB4;
    font-family: Poppins, sans-serif;
    font-size: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #52BFB4;
    border-radius: 60px;
    padding: 7px 30px;
}

body.search-results .ast-row article .read-more a::before {
    content: "View Course";
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    top: 4px;
}

body.search-results .ast-row article .read-more a:hover {
    background-color: #fff;
    color: #52BFB4;
}

body.search-results .ast-row article .read-more a:hover::before {
    color: #52BFB4;
}

/* Contact Us Page */
.cta_form .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 30px;
}

.cta_form .gform_wrapper.gravity-theme .gfield_label {
    margin: 0 0 6px 0;
    padding: 0;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    color: rgb(24, 24, 24, 0.5);
    font-weight: 500;
}

.cta_form .gform_wrapper.gravity-theme .gfield_label .gfield_required {
    display: none;
}

.cta_form .gform_wrapper.gravity-theme .gform-body input {
    margin: 0;
    padding: 0 15px;
    font-size: 18px;
    font-family: "Poppins", Sans-serif;
    color: #181818;
    height: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    background: #f9fafb;
}

.cta_form .gform_wrapper.gravity-theme .gform-body textarea {
    margin: 0;
    padding: 15px 15px 10px 15px;
    font-size: 20px;
    font-family: "Poppins", Sans-serif;
    color: #181818;
    height: 110px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    background: #f9fafb;
    resize: none;
}

.cta_form .gform_wrapper.gravity-theme .gform_footer {
    margin: 0;
    padding: 40px 0 0 0;
    justify-content: center;
}

.cta_form .gform_wrapper.gravity-theme .gform_footer .gform_button {
    background-color: #52BFB4;
    font-family: "Poppins", Sans-serif;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #52BFB4;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 60px;
    padding: 19px 28px 19px 28px;
    line-height: 1 !important;
    transition: all .4s ease-in-out;
}

.cta_form .gform_wrapper.gravity-theme .gform_footer .gform_button:hover {
    background-color: #FFFFFF;
    color: #52BFB4;
    border-color: #52BFB4;
}

/* Washington Page */
.pack_tab .ld-tabs-container {
    max-width: 100%;
}

.pack_tab .ld-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    gap: 20px;
}

.pack_tab .ld-tab {
    padding: 15px 30px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    border-radius: 20px;
    position: relative;
}

.pack_tab .ld-tab.active {
    background: #52BFB4;
    color: #fff;
    border-radius: 20px 20px 0 0;
}

.pack_tab .ld-tab.active::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(https://americanfrontier.com/wp-content/uploads/2025/03/tab_curve.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 100%;
}

.pack_tab .ld-tab.active::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(https://americanfrontier.com/wp-content/uploads/2025/03/tab_curve.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    transform: rotate(90deg);
}

.pack_tab .ld-tab-content {
    display: none;
    padding: 0 60px;
    position: relative;
}

.pack_tab .tab_info {
    display: flex;
    flex-direction: column;
    background: #52BFB4;
    padding: 30px;
    border-radius: 20px;
}

.pack_tab .tab_info .group_desc {
    margin-top: 25px;
    order: 3;
}

.pack_tab .tab_info .group_desc p {
    color: #fff;
    text-align: center;
}

.pack_tab .pack_block {
    background-color: #fff;
    height: auto;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.pack_tab .pack_block h3 {
    margin-bottom: 15px;
    flex-grow: 1;
}

.pack_tab .pack_block h3 a {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #1e293b;
    font-weight: normal;
    line-height: 1.3;
}

.pack_tab .pack_block h3 a:hover {
    color: #52BFB4;
}

.pack_tab .pack_block p {
    margin: 0 0 15px 0;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.page-id-14279 .pack_tab .pack_block p {
    display: none;
}

.page-id-14279 .pack_tab .pack_block p:nth-child(3) {
    display: -webkit-box;
}

.pack_tab .price_info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.pack_tab .swiper-wrapper {
    height: auto;
    order: 1;
}

.pack_tab .swiper-button-prev {
    left: 0;
}

.pack_tab .swiper-button-next {
    right: 0;
}

.pack_tab .swiper-button-next,
.pack_tab .swiper-button-prev {
    width: 50px;
    height: 50px;
    color: #fff;
    background: #52BFB4;
    border-radius: 50%;
}

.pack_tab .swiper-button-next:after,
.pack_tab .swiper-button-prev:after {
    font-size: 20px;
}

.pack_tab .swiper-button-next.swiper-button-disabled,
.pack_tab .swiper-button-prev.swiper-button-disabled {
    opacity: 0.6;
}

.pack_tab .get_btn {
    text-align: center;
    padding-bottom: 30px;
}

.pack_tab .get_btn.more_btn {
    padding: 30px 0 0 0;
    order: 2;
}

.pack_tab .get_btn a {
    background-color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    text-transform: uppercase;
    color: #52BFB4;
    border-radius: 60px;
    padding: 12px 30px;
    display: inline-block;
}

.pack_tab .get_btn a:hover {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.area_sec .trans_link p {
    font-weight: 600;
}

.area_sec .trans_link a {
    text-decoration: underline;
}

.area_sec .trans_link a:hover,
.area_sec .trans_link a:focus {
    color: #52BFB4;
}

.area_sec .trans_link ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

.area_sec .trans_link ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    display: block;
    position: relative;
}

.area_sec .trans_link ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #52BFB4;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.licence_info summary {
    border: none !important;
}

.licence_info summary .e-n-accordion-item-title-text {
    text-decoration: underline;
}

.licence_info .licence_cont strong {
    color: #000;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.licence_info .licence_cont ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

.licence_info .licence_cont ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    display: block;
    position: relative;
}

.licence_info .licence_cont ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #52BFB4;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.licence_info .licence_cont ul li strong {
    display: inline-block;
}

.licence_info .licence_cont a {
    text-decoration: underline;
}

.licence_info .licence_cont a:hover,
.licence_info .licence_cont a:focus {
    color: #52BFB4;
}

.tag-courses-tab .e-n-tabs-heading {
    padding-left: 30px;
}

.tag-course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tag-course-card {
    background-color: #fff;
    height: auto;
    border-radius: 20px;
    padding: 20px;
    max-width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
}

.tag-course-card h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #1e293b;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 15px;
    flex-grow: 1;
}

.tag-course-card h3 a:hover {
    color: #52BFB4;
}

.tag-course-card .tag-course-description {
    margin: 0 0 15px 0;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.tag-course-card .tag-price_info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.tag-courses-tab .e-n-tab-title::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(https://americanfrontier.com/wp-content/uploads/2025/03/tab_curve.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 100%;
    opacity: 0;
}

.tag-courses-tab .e-n-tab-title::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(https://americanfrontier.com/wp-content/uploads/2025/03/tab_curve.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    transform: rotate(90deg);
    opacity: 0;
}

.tag-courses-tab .e-n-tab-title:hover:before,
.tag-courses-tab .e-n-tab-title:hover:after,
.tag-courses-tab .e-n-tab-title[aria-selected="true"]::before,
.tag-courses-tab .e-n-tab-title[aria-selected="true"]::after {
    opacity: 1;
}

.review_sec .review_block { height: 100%;}
.review_sec .review_block .elementor-widget-text-editor{ flex-grow: 1;}
.course_menu .elementor-nav-menu li a.has-submenu{ background: #52BFB4; padding: 18px 30px !important; border-radius: 30px;}
.course_menu .elementor-nav-menu li .sub-menu{ width: 100% !important; padding-top: 20px; padding-bottom: 10px;}
.course_list .elementor-icon-list-items li{ padding: 20px 0 28px 0 !important; border-bottom: 1px solid rgba(0, 0, 0, 0.30);}
.course_list .elementor-icon-list-items li:last-child{ border: none;}

/* ======= Responsive CSS: Start ======= */

/*
Elementor Breakpoint For Responsive Screen : 
Mobile Portrait   : 767
Mobile Landscape  : 980
Tablet Portrait   : 1080
Tablet Landscape  : 1220
Laptop            : 1320
*/


@media screen and (max-width: 1883px) {
    .search-form.elementor-widget-search {
        width: 580px !important;
    }

    .header-menu a.elementor-item.menu-link {
        --e-nav-menu-horizontal-menu-item-margin: calc(30px / 2) !important;
    }
}

@media screen and (max-width: 1700px) {
    .testimonial-slider .elementor-testimonial__text:after {
        left: -100px;
    }

    .testimonial-slider .elementor-testimonial__text:before {
        right: -90px;
    }
}

@media screen and (max-width: 1751px) {
    .search-form.elementor-widget-search {
        width: 550px !important;
    }
}

@media screen and (max-width: 1720px) {
    /* .search-form-menu-col {
        gap: 40px !important
    } */

    .search-form.elementor-widget-search {
        width: 520px !important;
    }
}

@media screen and (min-width: 1321px) and (max-width: 1680px) {
    .elementor-location-footer li.menu-item a.elementor-item {
        font-size: 20px !important;
    }

    .hero_banner h2 {
        font-size: 80px !important;
    }
}

@media screen and (max-width: 1681px) {
    /* .logo-col {
        gap: 25px !important
    } */
}

@media screen and (max-width: 1655px) {
    .header-menu a.elementor-item.menu-link {
        --e-nav-menu-horizontal-menu-item-margin: calc(16px / 2) !important;
    }

    .search-form.elementor-widget-search {
        width: 480px !important;
    }
}

@media screen and (min-width: 1321px) and (max-width: 1580px) {
    .wa_banner h2 {
        font-size: 80px !important;
    }

    .wa_banner .wa_space {
        padding: 100px 0 !important;
    }

    .pack_sec h2 {
        font-size: 50px !important;
    }

}

@media screen and (max-width: 1595px) {
    .search-form-menu-col {
        gap: 25px !important;
    }

    .signup-btn .elementor-widget-container {
        padding-left: 15px !important;
    }

    .login-btn .elementor-widget-container {
        padding-left: 20px !important;
    }
}

@media screen and (max-width: 1570px) {
    .search-form.elementor-widget-search {
        width: 450px !important;
    }

    .pack_tab .ld-tabs {
        gap: 10px;
    }

    .pack_tab .ld-tab {
        font-size: 16px;
    }
}

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

    .header-menu a.elementor-item.menu-link {
        --e-nav-menu-horizontal-menu-item-margin: calc(13px / 2) !important;
    }

    .signup-btn .elementor-widget-container {
        padding-left: 10px !important;
    }

    .login-btn .elementor-widget-container {
        padding-left: 15px !important;
    }

    .search-form.elementor-widget-search {
        width: 438px !important;
    }

    .search-form-menu-col {
        gap: 20px !important;
    }

    .login-btn .elementor-button,
    .signup-btn .elementor-button {
        padding: 15px 30px 15px 30px !important;
        font-size: 14px !important;
    }
}

@media screen and (max-width: 1520px) {
    .testimonial-slider .elementor-testimonial__name {
        font-size: 27px !important;
    }
}

@media screen and (max-width: 1487px) {
    .search-form.elementor-widget-search {
        width: 400px !important;
    }

    .search-form .e-search-input-wrapper input {
        padding: 15px 15px 15px 55px !important;
    }

    .search-form .e-search svg {
        width: 16px !important;
    }
}

@media screen and (min-width: 1321px) and (max-width: 1400px) {}

@media screen and (max-width: 1441px) {
    .search-form-menu-col {
        width: 65% !important;
    }
}

@media screen and (max-width: 1440px) {
    /* .search-form.elementor-widget-search {
        width: 360px !important;
    } */

    .testimonial-slider .elementor-testimonial__name {
        font-size: 24px !important;
    }

}

@media screen and (max-width: 1394px) {
    .search-form .e-search-input-wrapper input {
        padding: 12px 12px 12px 50px !important;
    }

    .logo-col {
        width: 28% !important;
    }

    /* .search-form.elementor-widget-search {
        width: 300px !important;
    }

    .search-form-menu-col {
        gap: 40px !important;
    } */
}

@media screen and (max-width: 1372px) {
    .logo-col {
        width: 26% !important;
    }
}

@media screen and (max-width: 1355px) {
    .search-form-menu-col {
        gap: 20px !important;
    }

    .search-form-menu-col {
        width: 65% !important;
    }

    .search-form.elementor-widget-search {
        width: 380px !important;
    }

    /* .logo-col {
        gap: 15px !important;
    } */
}

@media screen and (max-width: 1337px) {
    .logo-col {
        width: 30% !important;
    }
}

@media screen and (max-width: 1325px) {
    .header-menu .elementor-nav-menu a.elementor-item {
        font-size: 14px !important;
    }

    .icon-list .elementor-icon-list-text {
        font-size: 14px !important;
    }

    .video-section .elementor-wrapper {
        height: 760px !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 1320px) {
    .faq-div .elementor-accordion-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .faq-div .elementor-accordion-icon {
        width: 100% !important;
        max-width: 40px !important;
        height: 40px !important;
    }

    .testimonial-slider .swiper-initialized {
        width: 110vw !important;
        margin-left: -7.5vw !important;
        margin-right: -5vw !important;
    }

    .testimonial-slider .elementor-testimonial__name {
        font-size: 20px !important;
    }

    .pack_tab .ld-tab {
        padding: 15px 25px;
    }
}

@media screen and (max-width: 1293px) {
    .search-form.elementor-widget-search {
        width: 345px !important;
    }

    .login-btn .elementor-button,
    .signup-btn .elementor-button {
        padding: 14px 22px 14px 22px !important;
    }

    .search-form .e-search-input-wrapper input {
        padding: 8px 12px 8px 50px !important;
    }

    .search-form input {
        --e-search-input-padding-block-end: 12px !important
    }

    .testimonial-slider .swiper-initialized {
        width: 100% !important;
        margin-left: unset !important;
        margin-right: unset !important;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__image {
        border-radius: 50px;
        border: 10px solid #52BFB4;
        overflow: hidden;
        transform: scale(1.1);
        transition: all 0.5s ease-in-out;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__image {
        border-radius: 50px;
        border: 10px solid #52BFB400;
        overflow: hidden;
        transform: unset;
        transition: all 0.5s ease-in-out;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__content {
        opacity: 1;
        pointer-events: all;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__content {
        opacity: 0;
        pointer-events: all;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide cite.elementor-testimonial__cite {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0px);
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide+.swiper-slide cite.elementor-testimonial__cite {
        opacity: 0;
        pointer-events: all;
        transform: translateY(0px);
    }
}

@media screen and (max-width: 1280px) {
    /* .testimonial-slider .swiper-initialized {
        width: 110vw !important;
        margin-left: -15vw !important;
        margin-right: -5vw !important;
    } */

    .search-form-menu-col {
        width: 70% !important;
    }
}

@media screen and (max-width: 1220px) {
    .logo-col {
        width: 54% !important;
    }

    .search-form-menu-col {
        width: 40% !important;
    }

    .video-section .elementor-wrapper {
        height: 700px !important;
        width: 100% !important;
    }

    .about-us-btn span.elementor-button-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .hero-sec-btn span.elementor-button-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .counter-div .elementor-counter-number-suffix span {
        font-size: 30px;
        position: absolute;
    }

    .pack_tab .swiper-button-next,
    .pack_tab .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .pack_tab .swiper-button-next:after,
    .pack_tab .swiper-button-prev:after {
        font-size: 12px;
    }

    .pack_tab .ld-tab-content {
        padding: 0 40px;
    }

    .pack_tab .ld-tab {
        font-size: 14px;
        padding: 10px 20px !important;
    }

    .pack_tab .ld-tab.active::before,
    .pack_tab .ld-tab.active::after,
    .tag-courses-tab .e-n-tab-title[aria-selected="true"]::before,
    .tag-courses-tab .e-n-tab-title[aria-selected="true"]::after {
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 1080px) {
    .counter-div .elementor-counter-title br {
        display: none !important;
    }

    .faq-div .elementor-accordion-icon {
        width: 100% !important;
        max-width: 40px !important;
        height: 40px !important;
    }

    body.archive .ast-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    body.archive .ast-archive-description {
        padding: 0 0 20px 0;
    }

    body.search-results .ast-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    body.search-results .ast-archive-description {
        padding: 0 0 20px 0;
    }

    .pack_tab .ld-tab-content {
        padding: 0;
    }

    .pack_tab .swiper-wrapper {
        padding-bottom: 50px;
    }

    .pack_tab .swiper-button-next,
    .pack_tab .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: auto;
        bottom: 30px;
        background: #fff;
    }

    .pack_tab .swiper-button-next,
    .pack_tab .swiper-button-prev {
        color: #52BFB4;
    }

    .pack_tab .swiper-button-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -20px;
    }

    .pack_tab .swiper-button-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 20px;
    }

    .tag-course-card {
        max-width: calc(33% - 10.5px);
    }
    .course_list .elementor-icon-list-items li{ padding: 10px 0 18px 0 !important;}
}

@media screen and (max-width: 1079px) {
    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide .elementor-testimonial__image {
        border-radius: 25px;
        border: 10px solid #52BFB4;
        overflow: hidden;
        transform: scale(1.1);
        transition: all 0.5s ease-in-out;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__image {
        border-radius: 50px;
        border: 10px solid #52BFB400;
        overflow: hidden;
        transform: unset;
        transition: all 0.5s ease-in-out;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide .elementor-testimonial__content {
        opacity: 1;
        pointer-events: all;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide .elementor-testimonial__content {
        opacity: 0;
        pointer-events: all;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide cite.elementor-testimonial__cite {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0px);
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide cite.elementor-testimonial__cite {
        opacity: 0;
        pointer-events: all;
        transform: translateY(0px);
    }

}

@media screen and (max-width: 980px) {
    .search-form-menu-col {
        width: 55% !important;
    }

    .video-section .elementor-custom-embed-image-overlay {
        background-position: top !important;
        border-radius: 50px !important;
        background-position: top;
    }

    .video-section .elementor-wrapper {
        height: 550px !important;
        width: 100% !important;
    }

    .faq-div .elementor-accordion-icon {
        width: 100% !important;
        max-width: 40px !important;
        height: 40px !important;
    }

    .site-map-col {
        width: 100% !important;
    }

    .testimonial-slider .elementor-testimonial__text:after {
        width: 70px !important;
        height: 60px !important;
        left: -85px;
    }

    .testimonial-slider .elementor-testimonial__text:before {
        width: 70px;
        height: 60px;
        right: -95px;
    }

    .pack_tab .ld-tabs {
        white-space: nowrap;
        overflow: scroll;
        justify-content: left;
        width: 90%;
        margin: 0 auto;
        padding: 0 12px;
    }

    .pack_tab .ld-tabs::-webkit-scrollbar {
        display: none;
    }

    .tag-course-card {
        max-width: calc(50% - 10px);
    }
}

@media screen and (max-width: 767px) {
    .search-form.elementor-widget-search {
        width: 100% !important;
    }

    .site-map-col .elementor-nav-menu,
    .site-map-col .elementor-nav-menu li,
    .site-map-col .elementor-nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .blog-loop .swiper-initialized {
        width: 100% !important;
        margin-right: unset !important;
    }

    .video-section .elementor-wrapper {
        height: 400px !important;
        width: 100% !important;
    }

    .hero-join-btn .elementor-button-icon svg,
    .about-us-btn .elementor-button-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .about-us-btn span.elementor-button-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .hero-sec-btn span.elementor-button-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .faq-div .elementor-accordion-icon {
        width: 100% !important;
        height: 40px !important;
        max-width: 40px !important;
    }

    .ur-frontend-form .ur-form-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px !important;
    }

    .ur-form-grid {
        width: 100% !important;
    }

    .ur-button-container {
        margin-top: 35px !important;
    }

    .user-registration-form-row {
        margin: 0px !important;
    }

    .ur-frontend-form input[type="submit"] {
        float: none !important;
        margin: auto !important;
        display: flex !important;
    }

    .user-registration-LostPassword.lost_password {
        margin-bottom: 10px !important;
    }

    .user-registration-login-title,
    .entry-header .entry-title {
        font-size: 50px !important;
        margin-bottom: 30px !important;
    }

    .logo-col {
        width: 35% !important;
    }

    .state_sec svg {
        width: 100%;
        height: 50vw;
    }

    body.archive .ast-row article {
        padding: 20px;
    }

    body.archive .ast-row article h2 {
        font-size: 20px;
    }

    body.search-results .ast-row article {
        padding: 20px;
    }

    body.search-results .ast-row article h2 {
        font-size: 20px;
    }

    .pack_tab .tab_info {
        padding: 20px;
    }

    .pack_tab .get_btn a {
        font-size: 14px;
        padding: 6px 20px;
    }

    .pack_tab .get_btn {
        padding-bottom: 20px;
    }

    .pack_tab .pack_block h3 a {
        font-size: 18px;
    }
}

@media screen and (max-width: 766px) {
    .testimonial-slider .elementor-testimonial__image {
        border-radius: 25px;
        overflow: hidden;
        border: 10px solid #ffffff00;
        width: 115px !important;
        margin: 0 auto;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active .elementor-testimonial__image {
        border-radius: 25px;
        border: 7px solid #52BFB4;
        overflow: hidden;
        transform: unset !important;
        transition: all 0.5s ease-in-out;
        width: 115px !important;
        margin: 0 auto;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide .elementor-testimonial__image {
        border-radius: 50px;
        border: 10px solid #52BFB400;
        overflow: hidden;
        transform: unset !important;
        transition: all 0.5s ease-in-out;
        width: 115px !important;
        margin: 0 auto;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active .elementor-testimonial__content {
        opacity: 1;
        pointer-events: all;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide .elementor-testimonial__content {
        opacity: 0;
        pointer-events: all;
    }

    .testimonial-slider .swiper-slide.swiper-slide-active cite.elementor-testimonial__cite {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0px);
    }

    .testimonial-slider .swiper-slide.swiper-slide-active+.swiper-slide cite.elementor-testimonial__cite {
        opacity: 0;
        pointer-events: all;
        transform: translateY(0px);
    }

    .testimonial-slider .elementor-testimonial__text:before {
        width: 30px;
        height: 30px;
        right: -32px;
    }

    .testimonial-slider .elementor-testimonial__text:after {
        width: 30px !important;
        height: 30px !important;
        left: -32px;
    }

    .testimonial-slider .elementor-testimonial__title {
        padding-top: 5px;
    }

}

@media screen and (max-width: 575px) {
    .elementor-location-footer li.menu-item a.elementor-item {
        text-align: center;
    }

    body.archive .ast-row {
        grid-template-columns: repeat(1, 1fr);
    }

    body.archive.ast-separate-container #content .ast-container {
        padding: 0 20px !important;
    }

    body.search-results .ast-row {
        grid-template-columns: repeat(1, 1fr);
    }

    body.search-results.ast-separate-container #content .ast-container {
        padding: 0 20px !important;
    }

    .tag-course-card {
        max-width: 100%;
    }
}

/* ======= Responsive CSS: End ======= */

/* JIGOWATT */

.course-loop-item .elementor-shortcode strong{
    font-weight: 500;
    color: #115e56;
}

.course-loop-item:hover .elementor-shortcode{
    color: #2d4341;
}

.ld-package-courses{
    display: grid;
    grid-gap: 16px;
}

.ld-package-course{
    text-wrap: balance;
    background-color: white;
    border-radius: 12.5px;
    padding: 16px;
}

.ld-package-course .title{
    color: #000;
}

.ld-package-course span{
    font-weight: 500;
    color: #115e56;
}

@media only screen and (min-width: 768px) {
    .ld-package-courses{
        grid-template-columns: repeat(2, 1fr);
    }
}

body.archive .ast-container,
body.search .ast-container,
body.single-sfwd-courses .ast-container,
body.single-groups .ast-container{
    max-width: 100%!important;
    padding: 0px;
}

body.archive.ast-separate-container #content .ast-container{
    padding: 0px!important;
}

.ast-separate-container .ast-article-post{
    background-color: transparent!important;
    border: 0px!important;
    padding: 0px!important;
}

body.single-sfwd-courses .content-area{
    margin: 0px!important;
}

body.single-sfwd-courses .site-main .sfwd-courses{
    background-color: transparent!important;
    padding: 0px!important;
}


body .wpc-filters-main-wrap input.wpc-label-input:checked+label,
body .wpc-filters-main-wrap input.wpc-label-input+label:hover{
    border-color: var(--e-global-color-accent)!important;
}

body .wpc-filters-main-wrap input.wpc-label-input:checked+label span.wpc-filter-label-wrapper,
body .wpc-filters-main-wrap input.wpc-label-input+label:hover span.wpc-filter-label-wrapper{
    background-color: var(--e-global-color-accent)!important;
}

#user-registration-form-2868{
    max-width: 100%!important;
    border-radius: 25px!important;
}

.course-reviews-section button,
.course-reviews-section a.login-to-enroll{
    border-radius: 150px;
    background-color: #52bfb4 !important;
    color: #fff!important;
    transition: 0.3s all;
}

.course-reviews-section button:hover,
.course-reviews-section a.login-to-enroll{
    background-color: #52bfb4 !important
}

body.single-sfwd-courses .entry-meta{
    display: none!important;
}

body.single-sfwd-courses article.sfwd-courses{
    border-radius: 25px;
}

.learndash-wrapper .ld-button:focus:not(.learndash-link-previous-incomplete):not(.ld-button-transparent):not(.ld--ignore-inline-css), .learndash-wrapper .btn-join:focus:not(.ld--ignore-inline-css), .learndash-wrapper #btn-join:focus:not(.ld--ignore-inline-css), .learndash-wrapper .ld-expand-button:focus, .learndash-wrapper .wpProQuiz_content .wpProQuiz_button:not(.wpProQuiz_button_reShowQuestion):focus:not(.wpProQuiz_button_restartQuiz), .learndash-wrapper .wpProQuiz_content .wpProQuiz_button2:focus, .learndash-wrapper .ld-focus-comments .form-submit #submit, .learndash-wrapper .ld-login-modal input[type='submit']:focus, .learndash-wrapper .ld-login-modal .ld-login-modal-register:focus, .learndash-wrapper .wpProQuiz_content .wpProQuiz_certificate a.btn-blue:focus{
    outline-color: #fff!important;
}

.learndash_post_sfwd-courses .learndash-wrapper{
    border-radius: 15px!important;
}

.learndash .ld-course-status{
    background-color: white!important;
    margin-top: 0px!important;
    margin-bottom: 32px!important;
}

body.single-sfwd-courses .learndash-wrapper .learndash-payment-gateway-form-stripe_connect .button{
    background-color: var( --e-global-color-9d295c8 )!important;
}

.ld-course-status .button:hover{
    background-color: #B83F4A!important;
}


.ld_course_tag-claims .course-grad-hero{ background-image: linear-gradient(236deg, #324341 0%, #1b655e 57%)!important; }
.ld_course_tag-ethics .course-grad-hero{ background-image: linear-gradient(236deg, #545f9c 0%, #1e233c 57%)!important; }
.ld_course_tag-flood .course-grad-hero{ background-image: linear-gradient(236deg, #dd656e 0%, #73383c 57%)!important; }
.ld_course_tag-life-health .course-grad-hero{ background-image: linear-gradient(236deg, #9bc2bf 0%, #324341 57%)!important; }
.ld_course_tag-long-term-care .course-grad-hero{ background-image: linear-gradient(236deg, #f18e05 0%, #fa7604 57%)!important; }
.ld_course_tag-pc .course-grad-hero{ background-image: linear-gradient(236deg, #fccacf 0%, #f35f6c 57%)!important; }
.ld_course_tag-regulation .course-grad-hero{ background-image: linear-gradient(236deg, #d1e2e0 0%, #d0e1df 57%)!important; }
.ld_course_tag-risk-management .course-grad-hero{ background-image: linear-gradient(236deg, #616983 0%, #3a3f49 57%)!important; }

.ld_course_tag-regulation .course-grad-hero h1{ color: #2d4341!important; }

.ast-separate-container{
    background-color: #fff!important;
}

.ldregister h2{ display: none; }

.ldregister #wp-submit{
    border: 0px!important;
    border-radius: 150px!important;
    background-color: #52BFB4;
}

.ld-course-status-action .ld-text{
    margin-left: 10px;
}

.e-search-input-wrapper{
    width: 100%!important;
}

.wpProQuiz_questionInput{
    accent-color: #80d8cf !important;
}

#termsPopupNewJersey, #termsPopupOtherStates {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}
#popupContent {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    max-width: 880px;
}
#popupContent h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1em;
    color: #000000;
    margin: 0 0 20px;
}
#gform_2, #gform_3 {
    text-align: left;
}
#gform_submit_button_2, #gform_submit_button_3 {
    margin-top: 10px;
    background-color: #80D8CF;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px;
    border-color: #80D8CF;
    border-radius: 60px;
    padding: 20px 30px;
    transition: all 0.3s ease-in-out;
}
#gform_submit_button_2:hover, #gform_submit_button_3:hover {
    background-color: transparent;
    color: #80D8CF;
}


.registration-login-form .button,
#learndash-registration-wrapper .button,
.wdm_feedback_form_pop{
    border: 0px!important;
    border-radius: 150px!important;
    color: #fff!important;
}

.acf-required{
    color: red;
}

.wpProQuiz_text .wpProQuiz_button,
.ld-content-actions .ld-button .ld-text,
.ld-content-actions .ld-button .ld-icon,
.ld-icon-arrow-down,
.ld-button,
.wpProQuiz_reviewDiv input[type="button"],
.learndash-wrapper .ld-button:hover:not([disabled]):not(.ld-button-transparent):not(.ld--ignore-inline-css), #learndash-tooltips .ld-tooltip:after, #learndash-tooltips .ld-tooltip, .ld-tooltip:not(.ld-tooltip--modern) [role="tooltip"], .learndash-wrapper .ld-primary-background, .learndash-wrapper .btn-join:not(.ld--ignore-inline-css), .learndash-wrapper #btn-join:not(.ld--ignore-inline-css), .learndash-wrapper .ld-button:not([disabled]):not(.ld-button-reverse):not(.ld-button-transparent):not(.ld--ignore-inline-css), .learndash-wrapper .ld-expand-button:not([disabled]), .learndash-wrapper .wpProQuiz_content .wpProQuiz_button:not([disabled]):not(.wpProQuiz_button_reShowQuestion):not(.wpProQuiz_button_restartQuiz), .learndash-wrapper .wpProQuiz_content .wpProQuiz_button2:not([disabled]), .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading, .learndash-wrapper .ld-focus-comments .form-submit #submit, .learndash-wrapper .ld-login-modal input[type='submit']:not([disabled]), .learndash-wrapper .ld-login-modal .ld-login-modal-register:not([disabled]), .learndash-wrapper .wpProQuiz_content .wpProQuiz_certificate a.btn-blue:not([disabled]), .learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items a:not([disabled]), #wpProQuiz_user_content table.wp-list-table thead th, #wpProQuiz_overlay_close:not([disabled]), .learndash-wrapper .ld-expand-button.ld-button-alternate:not([disabled]) .ld-icon{
    color: #fff!important;
}

.wpProQuiz_reviewDiv input[type="button"]{
    margin-top: 20px!important;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewDiv .wpProQuiz_reviewQuestion li{
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpProQuiz_reviewQuestion ol li{
    transition: 0.3s ease-in-out;
}

.wpProQuiz_reviewQuestion ol li:hover{
    background-color: #44958C!important;
    border-color: #44958C!important;
    color: #fff!important;
}

li.wpProQuiz_reviewQuestionTarget{
    background-color: #44958C!important;
    border-color: #44958C!important;
}

.learndash-wrapper .ld-course-status.ld-course-status-not-enrolled .ld-course-status-action .ld-text .ld-login-text{
    color: #44958C!important;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewDiv .wpProQuiz_reviewQuestion li.wpProQuiz_reviewQuestionSolved, .learndash-wrapper .wpProQuiz_content .wpProQuiz_reviewSummary .wpProQuiz_reviewQuestion li.wpProQuiz_reviewQuestionSolved{
     border-color: #44958C!important;
     color: #44958C!important;
}

#learndash-reset-password-wrapper #user_login{
    border-radius: 150px!important;
}

#learndash-reset-password-wrapper input[type="submit"]{
    border: 0px!important;
    border-radius: 150px!important;
    background-color: #44958C!important;
}

#learndash-reset-password-wrapper input[type="submit"]:hover{
    border: 0px!important;
    border-radius: 150px!important;
    background-color: ##52BFB4!important;
    color: #fff!important;
}

.wpProQuiz_questionInput{
    margin-right: 1em!important;
}