@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    /* for remove blue highlight coor on click */
    -webkit-tap-highlight-color: transparent;
}

/* 
html,
body {
    overflow-x: hidden;
} */

body {
    padding: 0;
    margin: 0;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    color: var(--Text-color);
    scroll-behavior: smooth;
}

/* common css start  */
:root {
    --Primary-color: #B9004A;
    --box-bg-color: #F2F2F2;
    --Pure-Primary: #C9214F;
    --white: #FFFFFF;
    --black: #000000;
    --Text-color: #2A020A;
    --VDark-Primary: #52071C;
    --Light-Primary: #F897A6;
    --Dark-Primary: #8B1434;
    --border-color: #E5E7EB;
    --border-radius: 18px;
    --Love-Fumes: #FBD0D5;
    --Saturated-Primary: #F65074;
}


header{ position: sticky !important;}
.banner-section .banner-bg{    padding-bottom: 100vh !important;}
body{padding-top: 0!important;}

.container {
    margin: 0 auto;
    max-width: 1470px;
    padding-left: 30px;
    padding-right: 30px;
}

.container-fluid {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.footer-links li.ft-link:last-child {
    display: none;
}

.container-sm {
    margin: 0 auto;
    max-width: 990px;
    padding-left: 30px;
    padding-right: 30px;
}

.container-md {
    margin: 0 auto;
    max-width: 1230px;
    padding-left: 30px;
    padding-right: 30px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    display: block;
    height: 100%;
    width: 100%;
}

h1 {
    font-size: 60px;
    line-height: 110%;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 18px;
}

h2,
.user-login-sec h1.title {
    font-size: 48px;
    line-height: 110%;
    font-weight: 600;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

h3,
.calendar-sec .fc-header-toolbar .fc-center h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0;
}

h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;
}

.btn a {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
}

.primary-btn,
.calendar-sec .fc-header-toolbar .fc-right .fc-dayGridMonth-button,
.calendar-sec .fc-header-toolbar .fc-today-button,
.user-login-sec form.user-login-form .form-actions input,
.user-login-sec form.user-pass .form-actions input,
.webform-submission-form .form-actions input,
.comment-form .form-actions input,
.user-form .form-actions input,
.webform-submission-pre-inscricao-num-curso-de-forma-form .form-actions input,
.webform-submission-pedido-de-contacto-form .form-actions input,
.user-register-form .form-actions input {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    font-family: 'Inter';
    letter-spacing: 0;
    color: var(--white);
    padding: 14px 22px;
    background: var(--Primary-color);
    border: 1px solid var(--Primary-color);
    border-radius: var(--border-radius);
    display: inline-block;
    text-transform: capitalize;
    width: fit-content;
    transition: all 0.3s ease-in-out;
    box-shadow: none !important;
}

.primary-btn:hover,
.calendar-sec .fc-header-toolbar .fc-right .fc-dayGridMonth-button:hover,
.user-login-sec form.user-login-form .form-actions input:hover,
.user-login-sec form.user-pass .form-actions input:hover,
.webform-submission-form .form-actions input:hover,
.comment-form .form-actions input:hover,
.user-form .form-actions input:hover,
.user-register-form .form-actions input:hover {
    background-color: var(--Dark-Primary);
    border: 1px solid var(--Dark-Primary);
}

.outline-btn {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
    font-family: 'Inter';
    color: var(--Primary-color);
    padding: 14px 22px;
    background: transparent;
    border: 1px solid var(--Primary-color);
    border-radius: var(--border-radius);
    display: inline-block;
    text-transform: capitalize;
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.outline-btn:hover {
    color: var(--white);
    background-color: var(--Dark-Primary);
    border: 1px solid var(--Dark-Primary);
}

.pt-60 {
    padding-top: 60px;
    /* border-top: 1px solid var(--border-color); */
}

section.pt-60 {
    padding-bottom: 45px;
}

/* body:has(.pt-60) header .header {
    border-bottom: 1px solid var(--border-color);
} */

.bg-box-color {
    background: var(--box-bg-color);
}

/* pagination CSS start */
.pagination-wrap .pagination {
    padding-top: 35px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pagination-wrap .pagination li {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.pagination-wrap .pagination li a {
    color: var(--Text-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.pagination-wrap .pagination li:hover a {
    background-color: var(--border-color);
}

.pagination-wrap .pagination li.active a {
    background: var(--Primary-color);
    color: var(--white);
}

.pagination-wrap .pagination .prev,
.pagination-wrap .pagination .next {
    position: relative;
}

.pagination-wrap .pagination .prev::before,
.pagination-wrap .pagination .next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 16px;
    background-image: url(../images/pagination-left.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pagination-wrap .pagination .next::before {
    background-image: url(../images/pagination-right.svg);
}

.pagination-wrap .pagination li.prev span,
.pagination-wrap .pagination li.prev a,
.pagination-wrap .pagination li.next span,
.pagination-wrap .pagination li.next a {
    font-size: 0;
}

/* pagination CSS end */

/* common css end */

/* top header start */
header {
    position: relative;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    background: var(--white);
}

header .top-header {
    background: var(--Primary-color);
    text-align: center;
    padding: 10px 0;
}

header .top-header .top-header-wrapper {
    display: flex;
    align-items: center;
}

header .top-header .top-header-left {
    margin: 0 auto;
}

header .top-header .top-header-left p {
    color: var(--white);
    font-family: 'Inter';
    font-size: 18px;
    line-height: 110%;
    font-weight: 500;
    letter-spacing: 0;
    display: inline-block;
}

header .top-header .top-header-right .social-media-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

header .top-header .top-header-right .social-media-links img {
    max-width: 18px;
    height: auto;
}

header .top-header .top-header-right .social-media-links img,
footer .footer .bottom-footer .social-media-links img {
    transition: all 0.3s ease-in-out;
}

header .top-header .top-header-right .social-media-links img:hover,
footer .footer .bottom-footer .social-media-links img:hover {
    transform: scale(1.1);
}

body.mobile-header-open {
    overflow: hidden;
}

/* top header end */

/* header start */
header .header {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

header .header .header-logo {
    max-width: 158px;
    min-width: 110px;
}

header .header .header-logo img {
    width: 100%;
    height: 100%;
}

header .header-container {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

header .header .main-nav {
    margin-left: 30px;
    z-index: 3;
}

header .main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .nav-item {
    position: relative;
    transition: all 0.3s ease-in-out
}

header .nav-item.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 5px;
    background: var(--Primary-color);
}

header .nav-item .nav-link,
header .header-icons .user-dropdown ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--black);
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-transform: capitalize;
    display: block;
    padding: 32px 0 28px;
}


header .nav-item:hover .nav-link,
header .nav-item.active .nav-link {
    color: var(--Primary-color);
}

header .header-icons {
    display: flex;
}

header .header-icons .icon-link {
    max-width: 22px;
    text-align: center;
    display: block;
    position: relative;
    margin: 0 26px;
}

header .header-icons .icon-link.search-icon {
    margin-left: 0;
    cursor: pointer;
}

header .header-icons .icon-link img,
.icon-link.search-icon.open img {
    transition: all 0.3s ease-in-out;
}

header .header-icons .icon-link:hover img {
    transform: scale(1.1);
}


header .header-icons .icon-link {
    position: relative;
}


header .header-icons .icon-link::before {
    content: none;
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    width: 100%;
    height: 3px;
    background: var(--Primary-color);
    transition: all 0.3s ease-in-out;
}

header .header-icons .icon-link.open::before,
header .header-icons .user-menu-wrapper:has(.user-dropdown:not([hidden])) .icon-link.user-icon::before {
    content: "";
}

header .header-icons .icon-link:not(:last-child):after {
    content: "";
    right: -26px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--black);
    opacity: 0.3;
    display: block;
    position: absolute;
}

header .header-icons .user-menu-wrapper .icon-link::after {
    content: none;

}

header .header .search-field {
    border-radius: var(--border-radius);
    border: 1px solid var(--Primary-color);
    overflow: hidden;
    position: absolute;
    width: 400px;
    right: calc((100% - 1410px) / 2);
    top: calc(100% + 10px);
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    pointer-events: none;
}

header .header .search-field.open {
    /* max-height: 200px; */
    max-height: 350px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

header .header .search-field input {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 15px;
    font-family: 'Inter';
    font-size: 18px;
    line-height: 20px;
    display: block;
    font-weight: 500;
    color: var(--Dark-Primary);
}

header .header .search-field input::placeholder {
    color: var(--Pure-Primary);
    font-weight: 500;
}

#search-results {
    background: var(--white);
    z-index: 9999;
    margin-top: 5px;
}


.search-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-suggestions li {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
}

.search-suggestions li a {
    padding: 8px 15px;
    display: inline-block;
    width: 100%;
}

header .header .search-field .search-suggestions li:not(:has(a)) {
    padding: 8px 15px;
}

.search-suggestions li:hover {
    background-color: var(--box-bg-color);
}

header .header .search-field #search-results {
    margin-top: 0;
    max-height: 300px;
    overflow-y: scroll;
    border: none;
}

header .header .search-field #search-results::-webkit-scrollbar {
    width: 5px;
}

header .header .search-field #search-results::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 10px;
}

header .header .search-field #search-results::-webkit-scrollbar-thumb {
    background: var(--Primary-color);
    border-radius: 10px;
}

header .header .search-field #search-results:not(:empty) {
    border-top: 2px solid var(--Primary-color);
}

header .header .search-field .search-suggestions * {
    font-size: 16px;
    line-height: 18px;
    color: var(--Text-color);
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container::-webkit-scrollbar {
    width: 5px;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 10px;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container::-webkit-scrollbar-thumb {
    background: var(--Primary-color);
    border-radius: 10px;
}

header .menu-toggle {
    display: none;
}


p.blog_dec_img img {
    width: 100% !important;
}

#user-form #edit-delete {
    display: none;
}

.user-menu-wrapper {
    position: relative;
    display: inline-block;
}

.user-icon {
    background: none;
    border: none;
    cursor: pointer;
}

header .user-dropdown {
    position: absolute;
    /* top: 40px; */
    top: 60px;
    right: 0;
    background: var(--white);
    border: none;
    border-radius: 4px;
    box-shadow: 0px 0px 5px var(--Text-color);
    z-index: 1000;
    overflow: hidden;
}

header .user-dropdown ul {
    list-style: none;
    margin: 0;
}

header .user-dropdown li {
    margin: 0;
}

header .header-icons .user-dropdown ul li a {
    padding: 15px;
    white-space: nowrap;
    text-align: start;
}

header .header-icons .user-dropdown ul li a::before {
    content: none !important;
}

header .header-icons .user-dropdown ul li a:hover {
    /* background-color: var(--Primary-color); */
    color: var(--Primary-color);
}

/* header end */

/* banner-section start */
.banner-section {
    /* height: 830px; */
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(359.32deg, #000000 -33.93%, rgba(0, 0, 0, 0) 94.08%);
    z-index: 1;
}

.banner-section .banner-bg {
    position: relative;
    width: 100%;
    height: 100%;
    /* padding-bottom: 830px; */
    /* padding-bottom: 43.230%; */
    /* padding-bottom: 48.959%; */
    /* padding-bottom: 100vh; */
    /* padding-bottom: calc(100vh + 120px); */
    /* padding-bottom: calc(100vh - 120px); */
    /* padding-bottom: 48.959%; */
    /* min-height: 450px; */
}

.banner-section .banner-bg {
    min-height: 450px;
    padding-bottom: calc(100vh + var(--header-height));

    /* banner height is 100vh full screen */
    /* padding-bottom: 48.959%; */
    /* as per figma 940px */

}

.banner-section .banner-bg video,
.banner-section .banner-bg img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top;
}

.banner-section .container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.banner-section.bottom-text .container {
    align-items: end;
    padding-bottom: 66px;
    padding-bottom: 15vw;
}

.banner-section.bottom-text h1 {
    margin-bottom: 24px;
}

.banner-section .banner .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-section .banner .banner-cnt {
    max-width: 840px;
}

.banner-section.long-text-banner .banner .banner-cnt {
    max-width: 1090px;
}

.banner-section.med-text-banner .banner .banner-cnt {
    max-width: 1050px;
}

.banner-section .banner .banner-cnt>h3:first-child {
    margin-bottom: 14px;
}

.banner-section .banner .banner-cnt h3 {
    color: var(--white);
}

.banner-section .banner .banner-cnt h3 span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.banner-section .banner .banner-cnt:has(h1 + .btn) h1 {
    margin-bottom: 0;
}

.banner-section .banner .banner-cnt .btn {
    display: inline-block;
    margin-top: 50px;
}

.banner-section .banner .banner-cnt .btn a,
.course-details-section .course-instructor-tab .btn a {
    color: var(--white);
    padding: 19px 32px;
    border: 1px solid var(--white);
    border-radius: var(--border-radius);
    width: max-content;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    min-width: 280px;
    text-align: center;
}

.banner-section .banner .banner-cnt .btn a:hover,
.course-details-section .course-instructor-tab .btn a:hover {
    background: var(--Primary-color);
    color: var(--white);
    border: 1px solid var(--Primary-color);
}

.banner-section .banner .banner-cnt .back-page-link {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 30px;
    display: inline-block;
    padding-left: 18px;
    position: relative;
}

.banner-section .banner .banner-cnt .back-page-link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 14px;
    background-image: url(../images/left-white-arrow.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* banner-section end */

/* overview-section start */
.overview-section,
.blogs-section,
.listing-page-section,
.ccp-step-section,
.trainers-section {
    padding: 90px 0 45px;
}

.overview-section {
    background: var(--white);
}

.overview-section .overview-cnt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.overview-section .overview-cnt .item {
    background: var(--Primary-color);
    color: var(--white);
    padding: 30px 30px 40px 30px;
    border-radius: var(--border-radius);
    text-align: start;
}

.overview-section .overview-cnt .number {
    margin-bottom: 47px;
}

.overview-section .overview-cnt .number .count {
    color: var(--white);
    display: inline-block;
}

.overview-section .overview-cnt .title {
    color: var(--white);
    margin-bottom: 6px;
    margin-bottom: 5px;
}

.overview-section .overview-cnt .text {
    color: var(--Light-Primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 111%;
}

/* overview-section end */

/* slider-caption-section start  */
.slider-caption-section {
    padding: 45px 0 100px;
}

.slider-caption-section .slider-caption {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    position: relative;
}

.slider-caption-section .slider-caption .owl-stage {
    display: flex;
    align-items: center;
}

.slider-caption-section .slider-caption .owl-nav,
.slider-caption-section .slider-caption .owl-dots,
.feature-courses-section .feature-course-wrap .owl-nav,
.feature-courses-section .feature-course-wrap .owl-dots,
.home-blogs-section .home-blog-wrap .owl-nav,
.home-blogs-section .home-blog-wrap .owl-dots,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav,
.upcoming-courses-section .right-cnt .courses-slider .owl-dots {
    width: 128px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(100% + 40px);
    right: 0;
    z-index: 1;
}

.home-blogs-section .home-blog-wrap .owl-dots,
.home-blogs-section .home-blog-wrap .owl-nav {
    width: calc(var(--homeblogsdotsWidth) + 60px);
}

.upcoming-courses-section .right-cnt .courses-slider .owl-nav,
.upcoming-courses-section .right-cnt .courses-slider .owl-dots {
    width: calc(var(--coursesDotsWidth) + 60px);
}

.feature-courses-section .feature-course-wrap .owl-nav,
.feature-courses-section .feature-course-wrap .owl-dots {
    width: calc(var(--featureDotsWidth) + 60px);
}

.slider-caption-section .slider-caption .owl-nav,
.slider-caption-section .slider-caption .owl-dots {
    width: calc(var(--sliderCaptionDotsWidth) + 60px);
}

.slider-caption-section .slider-caption .owl-nav button span,
.feature-courses-section .feature-course-wrap .owl-nav span,
.home-blogs-section .home-blog-wrap .owl-nav span,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav span {
    display: none;
}

.slider-caption-section .slider-caption .owl-nav .owl-prev,
.slider-caption-section .slider-caption .owl-nav .owl-next,
.feature-courses-section .feature-course-wrap .owl-nav .owl-prev,
.feature-courses-section .feature-course-wrap .owl-nav .owl-next,
.home-blogs-section .home-blog-wrap .owl-nav .owl-prev,
.home-blogs-section .home-blog-wrap .owl-nav .owl-next,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav .owl-prev,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav .owl-next {
    position: relative;
    width: 20px;
    height: 20px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-caption-section .slider-caption .owl-nav .owl-prev::before,
.slider-caption-section .slider-caption .owl-nav .owl-next::before,
.feature-courses-section .feature-course-wrap .owl-nav .owl-prev::before,
.feature-courses-section .feature-course-wrap .owl-nav .owl-next::before,
.home-blogs-section .home-blog-wrap .owl-nav .owl-prev::before,
.home-blogs-section .home-blog-wrap .owl-nav .owl-next::before,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav .owl-prev::before,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav .owl-next::before {
    content: '';
    width: 8px;
    height: 14px;
    background-image: url('../images/text-left-arrow.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: block;
}

.slider-caption-section .slider-caption .owl-nav .owl-next::before,
.feature-courses-section .feature-course-wrap .owl-nav .owl-next::before,
.home-blogs-section .home-blog-wrap .owl-nav .owl-next::before,
.upcoming-courses-section .right-cnt .courses-slider .owl-nav .owl-next::before {
    background-image: url('../images/text-right-arrow.svg');
}

.slider-caption-section .slider-caption .owl-dots,
.feature-courses-section .feature-course-wrap .owl-dots,
.home-blogs-section .home-blog-wrap .owl-dots,
.upcoming-courses-section .right-cnt .courses-slider .owl-dots {
    justify-content: center;
    gap: 8px;
    z-index: 0;
    height: 20px;
    display: flex;
    align-items: center;
}

.slider-caption-section .slider-caption .owl-dots .owl-dot,
.feature-courses-section .feature-course-wrap .owl-dots .owl-dot,
.home-blogs-section .home-blog-wrap .owl-dots .owl-dot,
.upcoming-courses-section .right-cnt .courses-slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
}

.slider-caption-section .slider-caption .owl-dots .owl-dot.active,
.feature-courses-section .feature-course-wrap .owl-dots .owl-dot.active,
.home-blogs-section .home-blog-wrap .owl-dots .owl-dot.active,
.upcoming-courses-section .right-cnt .courses-slider .owl-dots .owl-dot.active {
    background: var(--Primary-color);
}

.slider-caption-section .slider-caption h2,
.slider-caption-section .slider-caption h2 span {
    color: var(--Text-color);
    margin-bottom: 0;
}

.slider-caption-section .slider-caption h2 span {
    color: var(--Pure-Primary);
}

/* slider-caption-section end */

/* feature-courses-section start  */
.feature-courses-section {
    padding: 45px 0 115px;
}

.feature-courses-section .feature-course>.title,
.home-blogs-section .home-blogs .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--Text-color);
    margin-bottom: 48px;
}

.view-all-btn,
.webform-submission-form .webform-details-toggle-state,
.user-form .webform-details-toggle-state {
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    color: var(--Text-color);
    letter-spacing: 0;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 5px;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    transition: all 0.3s ease-in-out;
}

.webform-submission-form .webform-details-toggle-state,
.user-form .webform-details-toggle-state {
    font-size: 18px;
}

.view-all-btn:hover,
.webform-submission-form .webform-details-toggle-state:hover,
.user-form .webform-details-toggle-state:hover {
    text-decoration: none;
    color: var(--Dark-Primary);
}

.feature-courses-section .feature-course-cnt {
    border: 1px solid var(--border-color);
    border-right: none;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    padding: 23px 0 40px 30px;
}

.feature-courses-section .feature-course-cnt .heading,
.upcoming-courses-section .right-cnt .courses-slider .item .heading {
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--Text-color);
}

.feature-courses-section .feature-course-wrap {
    display: flex;
    gap: 30px;
}

.feature-courses-section .feature-course-wrap .owl-stage {
    display: flex;
}

.feature-courses-section .feature-course-wrap .item {
    /* border: 1px solid var(--border-color); */
    border: 2px solid var(--Primary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-left: 2px;
}


.feature-courses-section .feature-course-wrap .item .date-month {
    border: 1px solid rgba(42, 2, 10, 0.2);
    border-radius: var(--border-radius);
    width: max-content;
    padding: 8px 13px 8px;
    margin-bottom: 24px;
    min-width: 68px;
    text-align: center;
}

.feature-courses-section .feature-course-wrap .item .date-month .date {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: var(--Pure-Primary);
}

.feature-courses-section .feature-course-wrap .item .date-month .month {
    color: var(--black);
}

.feature-courses-section .feature-course-wrap .item .text-cnt .title {
    color: var(--Pure-Primary);
    margin-bottom: 20px;
}

.feature-courses-section .feature-course-wrap .item .text {
    margin-bottom: 35px;
    font-weight: 500;
    color: var(--Text-color);
}

.feature-courses-section .feature-course-wrap .item .primary-btn {
    margin-top: auto;
}

.feature-courses-section .feature-course-wrap .owl-nav,
.feature-courses-section .feature-course-wrap .owl-dots {
    top: calc(100% + 90px);
}

/* feature-courses-section end */

/* certification-section start  */
.certification-section {
    background: var(--box-bg-color);
    padding: 80px 0 90px;
    margin-top: 45px;
}

.certification-section .certification-cnt .title {
    margin-bottom: 50px;
}

.certification-section .certification-cnt .title h2 {
    margin-bottom: 20px;
    color: var(--Text-color);
}

.certification-section .certification-cnt .title h2 span {
    color: var(--Pure-Primary);
}

.certification-section .certification-cnt .title .subtitle {
    color: var(--Text-color);
}

.certification-section .certification-cnt .certificate-imgs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
}

.certification-section .certification-cnt .certificate-imgs img {
    max-height: 100px;
    object-fit: contain;
    width: auto;
    /*mix-blend-mode: luminosity;*/
    transition: all 0.3s ease-in-out;
}

/*.certification-section .certification-cnt .certificate-imgs img:hover {
    mix-blend-mode: normal;
}*/

/* certification-section end */

/* training-desc-section start  */
.training-desc-section {
    padding: 95px 0;
    background: var(--Primary-color);
}

.training-desc-section .training-desc-cnt {
    max-width: 90%;
}

.training-desc-section .training-desc-cnt h2 {
    color: var(--white);
    margin-bottom: 27px;
}

.training-desc-section .training-desc-cnt p {
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--white);
    max-width: 90%;
}

/* training-desc-section end */

/* full-img-section start  */
.full-img-section img,
.full-img-section video {
    width: 100%;
    height: 100%;
    max-height: 800px;
    object-fit: cover;
    min-height: 250px;
    max-height: 75vh;
}

.full-img-section video {
    object-position: top;
}

/* full-img-section end */

/* upcoming-courses-section start  */
.upcoming-courses-section {
    margin-bottom: 45px;
    padding: 90px 0 145px;
    background: var(--box-bg-color);
}

.upcoming-courses-section .upcoming-courses {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 30px;
}

.upcoming-courses-section .upcoming-courses .title h3 {
    color: var(--Text-color);
    padding-bottom: 50px;
    margin-bottom: 40px;
    text-transform: capitalize;
    border-bottom: 1.5px solid var(--border-color)
}

.upcoming-courses-section .upcoming-courses h3 {
    color: var(--Text-color);
}

.upcoming-courses-section .upcoming-courses h3 span {
    color: var(--Pure-Primary);
}

.upcoming-courses-section .upcoming-courses .view-all-btn {
    margin-top: 50px;
    display: inline-block;
}

.upcoming-courses-section .right-cnt .courses-slider {
    display: flex;
    gap: 20px;
}

.upcoming-courses-section .right-cnt .courses-slider .item {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px 30px 35px 30px;
    border-radius: var(--border-radius);
}

.upcoming-courses-section .right-cnt .courses-slider .item .heading {
    margin-bottom: 22px;
}

.upcoming-courses-section .right-cnt .courses-slider .item .course-item {
    display: flex;
    align-items: start;
    gap: 20px;
}

.upcoming-courses-section .right-cnt .courses-slider .item .course-item:not(:last-child) {
    padding-bottom: 35px;
    border-bottom: 1.5px solid var(--border-color);
    margin-bottom: 20px;
}

.upcoming-courses-section .right-cnt .courses-slider .course-item .date-month {
    border: 1px solid rgba(42, 2, 10, 0.2);
    border-radius: var(--border-radius);
    width: max-content;
    padding: 8px 13px 8px;
    min-width: 68px;
    text-align: center;
}

.upcoming-courses-section .right-cnt .courses-slider .course-item .date-month .date {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: var(--Pure-Primary);
}

.upcoming-courses-section .right-cnt .courses-slider .course-item .date-month .month {
    color: var(--black);
}

.upcoming-courses-section .right-cnt .courses-slider .course-item .text-cnt .title {
    color: var(--Pure-Primary);
    margin-bottom: 4px;
}

.upcoming-courses-section .right-cnt .courses-slider .course-item .text-cnt .text {
    font-weight: 500;
}

.upcoming-courses-section .right-cnt .courses-slider .course-item .primary-btn {
    height: max-content;
}

/* upcoming-courses-section end */

/* resources-section start  */
.resources-section,
.featured-section,
.all-courses-section,
.course-details-section {
    padding: 45px 0;
}

.resources-section .resources-wrap,
.what-we-offer-section .offer-cards-wrap,
.our-approach-section .our-approach-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.resources-section .resources-cnt {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.resources-section .resources-wrap .resource-card {
    background: var(--Dark-Primary);
    border-radius: var(--border-radius);
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

.resources-section .resources-wrap .resource-card>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 20px 40px 30px;
}

.resources-section .resources-wrap.info-resources-wrap .resource-card {
    background: var(--Pure-Primary);
}

.resources-section .resources-wrap.info-resources-wrap .resource-card>a {
    padding-bottom: 50px;
}

.resources-section .resources-wrap.info-resources-wrap .resource-card p {
    margin-top: auto;
}

.resources-section .resources-wrap .resource-card .img-link,
.what-we-offer-section .offer-cards-wrap .offer-card .img,
.our-approach-section .our-approach-cnt .our-approach-card .img,
.ccp-step-section .ccp-steps-wrap .step-card .img-link {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 30px;
    gap: 20px;
}

.ccp-step-section .ccp-steps-wrap .step-card .img-link {
    margin-bottom: 26px;
}


.resources-section .resources-wrap .resource-card .img-link img,
.what-we-offer-section .offer-cards-wrap .offer-card .img img,
.our-approach-section .our-approach-cnt .our-approach-card .img img,
.ccp-step-section .ccp-steps-wrap .step-card .img-link img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-top: 10px;
}

.resources-section .resources-wrap .resource-card .img-link .btn a,
.resources-section .resources-wrap .resource-card .img-link .btn span,
.ccp-step-section .ccp-steps-wrap .step-card .img-link .btn span {
    padding: 8px 14px;
    background: rgba(42, 2, 10, 0.4);
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--white);
    display: block;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.resources-section .resources-wrap .resource-card:hover .img-link .btn a,
.resources-section .resources-wrap .resource-card:hover .img-link .btn span {
    background: rgba(42, 2, 10, 0.6);
    border: 1px solid var(--white);
}

.resources-section .resources-wrap.info-resources-wrap .resource-card .img-link .btn a,
.resources-section .resources-wrap.info-resources-wrap .resource-card .img-link .btn P {
    padding: 8px 19px;
}

.resources-section .resources-wrap .resource-card h3,
.what-we-offer-section .offer-cards-wrap .offer-card h3,
.our-approach-section .our-approach-wrap .our-approach-card h3,
.ccp-step-section .ccp-steps-wrap .step-card h3 {
    margin-bottom: 24px;
    color: var(--white);
    max-width: 87%;
    min-height: 52px;
    word-wrap: break-word;
}

.resources-section .resources-wrap .resource-card a>p {
    color: var(--Love-Fumes);
}

/* resources-section end */

/* home-blogs-section start  */
.home-blogs-section {
    padding: 45px 0 100px;
}

.home-blogs-section .home-blogs .title {
    margin-bottom: 26px;
}

.home-blogs-section .home-blogs .home-blog-wrap {
    display: flex;
    gap: 30px;
}

.home-blogs-section .home-blogs .home-blog-wrap .item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.home-blogs-section .home-blogs .home-blog-wrap .item a::before {
    content: "";
    width: 100%;
    height: 81%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(360deg, #000000 -34.6%, rgba(0, 0, 0, 0) 91.14%);
    background-repeat: no-repeat;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.home-blogs-section .home-blogs .home-blog-wrap .item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s ease-in-out;
    transform: scale(1.001);
    position: absolute;
    object-fit: cover;
}

.home-blogs-section .home-blogs .home-blog-wrap .item:hover img {
    transform: scale(1.1);
}

.home-blogs-section .home-blogs .home-blog-wrap .item .text {
    position: absolute;
    padding: 30px;
    bottom: 20px;
    max-width: 80%;
    z-index: 2;
}

.home-blogs-section .home-blogs .home-blog-wrap .item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 80%;
}

.home-blogs-section .home-blogs .home-blog-wrap .item .text h3 {
    font-size: 30px;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* home-blogs-section end */

/* featured-section start*/
.featured-section .featured-inner {
    background: var(--box-bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px auto;
}

.featured-section .featured-inner .featured-title {
    padding: 25px 30px;
    color: var(--white);
    background: var(--Primary-color);
    display: flex;
    align-items: center;
}

.featured-section .featured-inner .featured-title h3,
.featured-section .featured-inner .featured-title .title-text {
    color: var(--white);
}

.featured-section .featured-inner .featured-logos {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    mix-blend-mode: darken;
}

.featured-section .featured-inner .featured-logos .item img {
    max-width: 150px;
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: luminosity;
}

.featured-section .featured-inner .featured-logos .item img:hover {
    mix-blend-mode: normal;
}


.featured-section .featured-logos .owl-stage {
    display: flex;
    align-items: center;
}

.featured-section .featured-logos .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* featured-section end*/

/* newsletter-section start  */
.newsletter-section {
    padding-top: 45px;
}

.newsletter-section .newsletter {
    background: var(--Primary-color);
    border-radius: var(--border-radius);
    padding: 35px 60px 35px 30px;
    display: grid;
    grid-template-columns: 64px auto 700px;
    align-items: center;
    gap: 25px;
    margin-bottom: -70px;
    z-index: 1;
    position: relative;
}

.newsletter-section .newsletter .img img {
    width: 64px;
    height: 64px;
    color: var(--white);
}

.newsletter-section .newsletter .text-cnt {
    padding-right: 25px;
}

.newsletter-section .newsletter .text-cnt .title {
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 5px;
}

.newsletter-section .newsletter .text-cnt .sub-title {
    color: var(--Light-Primary);
}

.newsletter-section .newsletter .subscribe-form {
    background: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 700px;
    max-width: 100%;
}

.newsletter-section .newsletter .subscribe-form form {
    display: flex;
    width: 100%;
}

.newsletter-section .newsletter .subscribe-form input {
    width: 100%;
    border: none;
    outline: none;
    padding: 20px 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    display: block;
    color: var(--Text-color);
}

.newsletter-section .newsletter .subscribe-form button {
    background: var(--Dark-Primary);
    color: var(--white);
    border: none;
    border: 1px solid var(--Dark-Primary);
    padding: 14px 26px;
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
    font-family: 'Inter';
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    display: block;
}

.newsletter-section .newsletter .subscribe-form button:hover {
    background: var(--VDark-Primary);
}

/* newsletter-section end  */

/* footer start  */
footer {
    background: var(--border-color);
    padding: 135px 0 35px;

}

footer .footer {
    padding-bottom: 46px;
}

footer .footer .top-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 60px;
}

footer .footer .top-footer .left-cnt {
    width: 32%;
    display: flex;
    flex-direction: column;
}

footer .footer .top-footer .left-cnt .footer-logo {
    max-width: 210px;
    min-width: 130px;
    height: auto;
    margin-bottom: 25px;
}

footer .footer .top-footer .left-cnt .contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer .top-footer .left-cnt .contact-links a {
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--Text-color);


}

footer .footer .top-footer .right-cnt {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

footer .footer .top-footer .right-cnt h2,
footer .footer .top-footer .right-cnt h2 span {
    color: var(--VDark-Primary);
    margin-bottom: 0;
}

footer .footer .top-footer .right-cnt h2 span {
    color: var(--Primary-color);
}

footer .footer .middle-footer {
    padding: 30px 0 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(42, 2, 10, 0.2)
}

footer .footer .middle-footer .location-cnt h4 {
    color: var(--Text-color);
    margin-bottom: 5px;
}

footer .footer .middle-footer .location-cnt p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
    color: var(--Text-color);
}

footer .footer .bottom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer .bottom-footer .footer-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

footer .footer .bottom-footer .footer-links .ft-link a {
    color: var(--Text-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    display: block;
}

footer .footer .bottom-footer .social-media-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

footer .footer .bottom-footer .social-media-links img {
    max-width: 18px;
    height: auto;
}

footer .footer .bottom-footer .footer-links .ft-link:hover a,
footer .footer .bottom-footer .footer-links .ft-link.active a {
    color: var(--Primary-color);
}

footer .copy-right {
    padding-top: 30px;
    border-top: 1px solid rgba(42, 2, 10, 0.2);
    padding: 0 15px;
}

footer .copy-right p {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
    text-align: center;
    color: var(--Text-color);
}

/* footer end */


/* Blog Page start*/
.listing-page-section .blogs-wrap {
    margin-bottom: 25px;
}

.listing-page-section .blog-card .text-cnt {
    position: relative;
}

.listing-page-section .blogs-wrap .blog-card .text-cnt>* {
    max-width: 81%;
}

.listing-page-section .blog-card .text-cnt::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/round-next-arrow.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

.listing-page-section .blog-card:hover .text-cnt::after {
    background-color: var(--Dark-Primary);
    /*box-shadow: 0px 0px 10px var(--white);*/
}

.listing-page-section .blog-card .text-cnt .blog-date {
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.listing-page-section .blog-card .text-cnt .blog-title {
    margin-bottom: 13px;
}

.listing-page-section .blog-card .text-cnt p,
.listing-page-section .blog-card .text-cnt .blog-desc {
    font-weight: 500;
    max-width: 81%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Blog Page end*/

/* blog-single-page start  */
.blog-details-section {
    padding: 60px 0 15px;
}

.blog-details-section p {
    margin-bottom: 20px;
}

.blog-details-section p:has(strong) {
    margin-top: 40px;
}

.blog-details-section p strong {
    font-weight: 500;
}

.blog-details-section ul {
    padding-left: 18px;
    margin-bottom: 40px;
}

.blog-details-section li {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;
    margin-bottom: 20px;
    list-style: disc;
}

.blog-details-section img {
    border-radius: var(--border-radius);
    max-height: 80vh;
    object-fit: cover;
    margin: 30px 0;
}

.blog-details-section .blog-details>*:last-child {
    margin-bottom: 0;
}

.blog-details-section .blog-details {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color, #E5E7EB)
}

.blog-share-section {
    padding: 15px 0 45px;
}

.blog-share-section .title,
.blog-share-section .h3 {
    text-transform: uppercase;
    margin-bottom: 25px;
}

.blog-share-section .share-icons {
    display: flex;
    gap: 15px;
}

.blog-share-section .share-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--Primary-color);
    /* box-shadow: 0px 5.02px 42.65px 0px #01072314; */
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    transform: scale(1.01);
}

.blog-share-section .share-icons li a:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 10px 0px var(--Text-color);
    background: var(--Dark-Primary);
}

.blog-share-section .share-icons li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* blog-single-page end  */


/* FAQs Page start */
.faqs-section .faq-cnt h2,
.faqs-section .faq-cnt title {
    color: var(--Text-color);
    margin-bottom: 30px;
}

.faqs-section .faq-cnt h2 span,
.faqs-section .faq-cnt title span {
    color: var(--Pure-Primary);
}

.faqs-section .faq-cnt .sub-title,
.faqs-section .faq-cnt>h3 {
    color: var(--Text-color);
    margin-bottom: 30px;
    max-width: 96%;
}

.faqs-section .faq-cnt .faqs-wrap {
    padding-top: 30px;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item:not(:last-child) {
    margin-bottom: 40px;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-question {
    background: var(--box-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 26px 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-question::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url(../images/plus-icon.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item.open .faq-question::after {
    background-image: url(../images/minus-icon.svg);
}

.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-question h3,
.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-question>*,
.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-answer h3 {
    color: var(--Text-color);
    max-width: 89%;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-answer {
    padding: 26px 30px 80px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white);
    display: none;
    margin-top: 40px;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-answer h3 {
    margin-bottom: 26px;
}

.faqs-section .faq-cnt .faqs-wrap .faq-item .faq-answer p {
    color: var(--Text-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    max-width: 96%;
}

/* FAQs Page end */

/* Contact us start  */
.locations-section .location-item:nth-child(even) {
    background: var(--box-bg-color);
}

.locations-section .trainer-location {
    padding: 120px 0;
    gap: 100px;
    display: grid;
    grid-template-columns: 1fr 52.50%;
}

.locations-section .location-item:nth-child(even) .trainer-location {
    direction: rtl;
}

.locations-section .location-item:nth-child(even) .trainer-location .location-content {
    text-align: end;
}

.locations-section .location-item:nth-child(even) .trainer-location .location-content .actions-btn {
    justify-content: end;
}

.locations-section .location-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locations-section .location-content .title,
.locations-section .location-content h2 {
    color: var(--Text-color);
    margin-bottom: 0px;
}

.locations-section .location-content .title span,
.locations-section .location-content h2 span {
    color: var(--Pure-Primary);
}

.locations-section .location-content .details {
    margin-bottom: 50px;
}

.locations-section .location-content .details h3 {
    color: var(--Pure-Primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.locations-section .location-content .details p,
.course-details-section .course-location-tab .details p {
    color: var(--Text-color);
    font-weight: 500;
}

.locations-section .location-content .actions-btn,
.course-details-section .course-location-tab .actions-btn {
    display: flex;
    gap: 16px;
}

.course-details-section .course-location-tab .actions-btn {
    flex-wrap: wrap;
}

.locations-section .location-content .actions-btn .outline-btn,
.course-details-section .course-location-tab .actions-btn .outline-btn {
    position: relative;
    padding-left: 55px;
}

.locations-section .location-content .actions-btn .outline-btn::before,
.course-details-section .course-location-tab .actions-btn .outline-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 22px;
    width: 23px;
    height: 22px;
    background-image: url('../images/location-icon.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease-in-out;
}

.locations-section .location-content .actions-btn .outline-btn:hover::before,
.course-details-section .course-location-tab .actions-btn .outline-btn:hover::before {
    background-image: url('../images/white-location-icon.svg');
}

.locations-section .location-images,
.course-details-section .course-location-tab .location-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.locations-section .location-item:nth-child(even) .location-images {
    flex-direction: row-reverse;
}

.locations-section .location-images img,
.locations-section .location-images>* {
    border-radius: var(--border-radius);
    max-height: 415px;
    max-width: 355px;
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.course-details-section .course-location-tab .location-images img,
.course-details-section .course-location-tab .location-images iframe,
.course-details-section .course-location-tab .location-images>* {
    border-radius: var(--border-radius);
    max-height: 450px;
    max-width: 385px;
    width: 100%;
    height: 100%;
    min-height: 210px;
}

/* contact-us-form-section start */
.contact-us-form-section {
    padding: 80px 0 85px;
    background: var(--box-bg-color);
    margin-bottom: 45px;
}

.contact-us-form-section h2 {
    margin-bottom: 53px;
}

.contact-us-form-section form .form-row {
    display: flex;
    gap: 30px;
}

.contact-us-form-section form .form-group,
.user-login-sec form.user-login-form .form-item,
.user-login-sec form.user-pass .form-item,
.webform-submission-form .form-item,
.comment-form .form-item,
.user-form .form-item,
.user-register-form .form-item {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    flex-direction: column;
}

.webform-submission-form .form-checkboxes,
.webform-submission-form .js-webform-radios,
.comment-form .form-checkboxes,
.comment-form .js-webform-radios,
.user-form .form-checkboxes,
.user-form .js-webform-radios,
.user-register-form .form-checkboxes,
.user-register-form .js-webform-radios {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.webform-submission-form .form-item.form-type-checkbox,
.webform-submission-form .form-item.webform-type-radio,
.comment-form .form-item.form-type-checkbox,
.comment-form .form-item.webform-type-radio,
.user-form .form-item.form-type-checkbox,
.user-form .form-item.webform-type-radio,
.user-register-form .form-item.webform-type-radio,
.user-register-form .form-item.form-type-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    display: inline-flex;
    width: fit-content;
}

.user-form .form-item.form-type-checkbox {
    flex-wrap: wrap;
}

.user-form details .form-item.form-type-checkbox {
    margin-bottom: 30px;
}

.webform-submission-form .form-item.form-type-checkbox input[type="checkbox"],
.webform-submission-form .form-item.webform-type-radio input[type="radio"],
.comment-form .form-item.form-type-checkbox input[type="checkbox"],
.comment-form .form-item.webform-type-radio input[type="radio"],
.user-form .form-item.form-type-checkbox input[type="checkbox"],
.user-form .form-item.webform-type-radio input[type="radio"],
.user-register-form .form-item.webform-type-radio input[type="radio"],
.user-register-form .form-item.form-type-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    padding: 0;
    border-radius: 4px;
    border: 1px solid var(--Primary-color);
    background-color: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.webform-submission-form .form-item.form-type-checkbox input[type="checkbox"]:checked,
.comment-form .form-item.form-type-checkbox input[type="checkbox"]:checked,
.user-form .form-item.form-type-checkbox input[type="checkbox"]:checked,
.user-register-form .form-item.form-type-checkbox input[type="checkbox"]:checked {
    background-color: var(--Primary-color);
}

.webform-submission-form .form-item.form-type-checkbox input[type="checkbox"]:checked::after,
.comment-form .form-item.form-type-checkbox input[type="checkbox"]:checked::after,
.user-form .form-item.form-type-checkbox input[type="checkbox"]:checked::after,
.user-register-form .form-item.form-type-checkbox input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    color: var(--white) !important;
    font-size: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.webform-submission-form .form-item.webform-type-radio input[type="radio"],
.comment-form .form-item.webform-type-radio input[type="radio"],
.user-form .form-item.webform-type-radio input[type="radio"],
.user-register-form .form-item.webform-type-radio input[type="radio"] {
    border-radius: 50%;
    background-color: var(--white);
}

.webform-submission-form .form-item.webform-type-radio input[type="radio"]::after,
.comment-form .form-item.webform-type-radio input[type="radio"]::after,
.user-form .form-item.webform-type-radio input[type="radio"]::after,
.user-register-form .form-item.webform-type-radio input[type="radio"]:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--Primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.webform-submission-form .form-item.webform-type-radio input[type="radio"]:checked::after,
.comment-form .form-item.webform-type-radio input[type="radio"]:checked::after,
.user-form .form-item.webform-type-radio input[type="radio"]:checked::after,
.user-register-form .form-item.webform-type-radio input[type="radio"]:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.webform-submission-form .form-item.form-type-checkbox label,
.comment-form .form-item.form-type-checkbox label,
.user-form .form-item.form-type-checkbox label,
.user-register-form .form-item.form-type-checkbox label,
.webform-submission-form .form-item.webform-type-radio label,
.comment-form .form-item.webform-type-radio label,
.user-form .form-item.webform-type-radio label {
    margin-bottom: 0;
}

.contact-us-form-section form .form-group label,
.user-login-sec form.user-login-form .form-item label,
.user-login-sec form.user-pass .form-item label,
.webform-submission-form .form-item label,
.webform-submission-form .form-wrapper summary,
.webform-submission-form fieldset.webform-type-checkboxes legend,
.comment-form .form-item label,
.comment-form .form-wrapper summary,
.comment-form fieldset.webform-type-checkboxes legend,
.user-form .form-item label,
.user-form .form-wrapper summary,
.user-form fieldset.webform-type-checkboxes legend,
.user-register-form .form-item label,
.user-register-form .form-wrapper summary,
.user-register-form fieldset.webform-type-checkboxes legend,
.webform-submission-form fieldset.webform-type-radios legend,
.comment-form fieldset.webform-type-radios legend,
.user-form fieldset.webform-type-radios legend {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--Text-color);
}

.contact-us-form-section form .form-group input,
.contact-us-form-section form .form-group textarea,
.user-login-sec form.user-login-form .form-item input,
.user-login-sec form.user-login-form .form-item textarea,
.user-login-sec form.user-pass .form-item input,
.user-login-sec form.user-pass .form-item textarea,
.webform-submission-form .form-item input,
.webform-submission-form .form-item textarea,
.webform-submission-form .form-item select,
.comment-form .form-item input,
.comment-form .form-item textarea,
.comment-form .form-item select,
.comment-form .form-item input,
.comment-form .form-item textarea,
.comment-form .form-item select,
.user-form .form-item input,
.user-form .form-item textarea,
.user-form .form-item select,
.user-register-form .form-item input,
.user-register-form .form-item textarea,
.user-register-form .form-item select {
    padding: 20px 25px;
    color: var(--Text-color);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 18px;
    font-family: 'Inter';
    outline: none;
    transition: border 0.3s;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    width: 100%;
}

.webform-submission-form .webform-details-toggle-state-wrapper,
.comment-form .webform-details-toggle-state-wrapper,
.user-form .webform-details-toggle-state-wrapper {
    margin-bottom: 10px;
}

.webform-submission-form .form-item select,
.comment-form .form-item select,
.user-form .form-item select,
.user-register-form .form-item select {
    /* padding: 10px 10px;
    border-radius: 4px; */
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/text-down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.contact-us-form-section form .form-group input::placeholder,
.contact-us-form-section form .form-group textarea::placeholder,
.user-login-sec form.user-login-form .form-item input::placeholder,
.user-login-sec form.user-login-form .form-item textarea::placeholder,
.user-login-sec form.user-pass .form-item input::placeholder,
.user-login-sec form.user-pass .form-item textarea::placeholder,
.webform-submission-form .form-item input::placeholder,
.webform-submission-form .form-item textarea::placeholder,
.webform-submission-form .form-item select::placeholder,
.comment-form .form-item input::placeholder,
.comment-form .form-item textarea::placeholder,
.comment-form .form-item select::placeholder,
.user-form .form-item input::placeholder,
.user-form .form-item textarea::placeholder,
.user-form .form-item select::placeholder,
.user-register-form .form-item input::placeholder,
.user-register-form .form-item textarea::placeholder,
.user-register-form .form-item select::placeholder {
    color: var(--Text, rgba(42, 2, 10, 0.4));
}

.contact-us-form-section form .form-group input:focus,
.webform-submission-form .form-item textarea:focus,
.comment-form .form-item textarea:focus,
.user-form .form-item textarea:focus,
.user-register-form .form-item textarea:focus,
.user-login-sec form.user-login-form .form-item input:focus,
.user-login-sec form.user-login-form .form-item textarea:focus,
.user-login-sec form.user-pass .form-item input:focus,
.user-login-sec form.user-pass .form-item textarea:focus,
.webform-submission-form .form-item input:focus,
.comment-form .form-item input:focus,
.user-form .form-item input:focus,
.user-register-form .form-item input:focus,
.webform-submission-form .form-item select:focus,
.comment-form .form-item select:focus,
.user-form .form-item select:focus,
.user-register-form .form-item select:focus,
.webform-submission-form .form-item .form-item textarea:focus,
.comment-form .form-item .form-item textarea:focus,
.user-form .form-item .form-item textarea:focus,
.user-register-form .form-item .form-item textarea:focus {
    border-color: var(--Primary-color);
}

.contact-us-form-section form .form-group textarea,
.user-login-sec form.user-login-form .form-item textarea,
.user-login-sec form.user-pass .form-item textarea,
.user-register-form .form-item textarea,
.webform-submission-form .form-item textarea,
.comment-form .form-item textarea,
.user-form .form-item textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-us-form-section form .form-submit,
.user-login-sec form.user-login-form .form-actions,
.user-login-sec form.user-pass .form-actions,
.webform-submission-form .form-actions,
.comment-form .form-actions,
.user-form .form-actions,
.user-register-form .form-actions {
    text-align: right;
    margin-top: 40px;
}

.user-login-sec form.user-login-form .form-actions,
.user-login-sec form.user-pass .form-actions,
.webform-submission-form .form-actions,
.comment-form .form-actions,
.user-form .form-actions,
.user-register-form .form-actions {
    text-align: center;
}

.contact-us-form-section form .form-submit button {
    border: none;
    cursor: pointer;
}

.user-login-sec form.user-login-form .form-actions input,
.user-login-sec form.user-pass .form-actions input,
.webform-submission-form .form-actions input,
.comment-form .form-actions input,
.user-form .form-actions input,
.user-register-form .form-actions input {
    cursor: pointer;
}

/* contact-us-form-section end */
/* Contact us end */

/* About uspage start  */
.two-columns-section {
    padding: 65px 0 150px;
}

.two-columns-section .two-columns-cnt {
    display: flex;
    gap: 30px;
}

.two-columns-section .two-columns-cnt .left-cnt,
.two-columns-section .two-columns-cnt .right-cnt {
    width: 50%;
}

.two-columns-section .two-columns-cnt .left-cnt>img {
    border-radius: var(--border-radius);
    object-fit: cover;

}

.two-columns-section .two-columns-cnt .right-cnt {
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.two-columns-section .two-columns-cnt .right-cnt h2 {
    margin-bottom: 22px;
}

.two-columns-section .two-columns-cnt .right-cnt p {
    margin-bottom: 20px;
}

.two-columns-section .two-columns-cnt .right-cnt>*:last-child {
    margin-bottom: 0;
}

.what-we-offer-section {
    padding: 80px 0;
}

.what-we-offer-section h2 {
    margin-bottom: 30px;
}

.what-we-offer-section .offer-cards-wrap .offer-card {
    background: var(--box-bg-color);
    border-radius: var(--border-radius);
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

.what-we-offer-section .offer-cards-wrap .offer-card>a,
.our-approach-section .our-approach-cnt .our-approach-card>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 20px 64px 30px;
}

.what-we-offer-section .offer-cards-wrap .offer-card h3,
.our-approach-section .our-approach-wrap .our-approach-card h3,
.ccp-step-section .ccp-steps-wrap .step-card h3 {
    margin-bottom: 25px;
    color: var(--Primary-color);
    min-height: auto !important;
}

.our-approach-section .our-approach-wrap .our-approach-card h3 {
    color: var(--Pure-Primary);
}

.what-we-offer-section .offer-cards-wrap .offer-card a>p,
.our-approach-section .our-approach-wrap .our-approach-card a>p {
    color: var(--Text-color);
}

/* various colors  */
.what-we-offer-section .offer-cards-wrap .offer-card:nth-child(2) {
    background: var(--Saturated-Primary);
}

.what-we-offer-section .offer-cards-wrap .offer-card:nth-child(2) a>p {
    color: var(--white);
}

.what-we-offer-section .offer-cards-wrap .offer-card:nth-child(3) {
    background: var(--Primary-color);
}

.what-we-offer-section .offer-cards-wrap .offer-card:nth-child(3) a>p,
.what-we-offer-section .offer-cards-wrap .offer-card:nth-child(4) a>p {
    color: var(--Love-Fumes);
}

.what-we-offer-section .offer-cards-wrap .offer-card:nth-child(4) {
    background: var(--Dark-Primary);
}

.what-we-offer-section .offer-cards-wrap .offer-card:not(:first-child) h3 {
    color: var(--white);
}

.training-desc-section.bg-box-color {
    background: var(--box-bg-color);
}

.training-desc-section.bg-box-color .training-desc-cnt h2 {
    color: var(--Text-color);
}

.training-desc-section.bg-box-color .training-desc-cnt h2 span {
    color: var(--Pure-Primary);
}

.training-desc-section.bg-box-color .training-desc-cnt p {
    color: var(--Text);
}

.our-approach-section {
    padding: 100px 0;
}

.our-approach-section h2 {
    margin-bottom: 27px;
}

.our-approach-section .title {
    margin-bottom: 40px;
}

.our-approach-section .our-approach-cnt .our-approach-card {
    border: 2px solid var(--Primary-color);
    border-radius: var(--border-radius);
}

/* About uspage end */

/* e-books page start  */
.listing-page-section .e-books-wrap,
.listing-page-section .blogs-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.listing-page-section .e-books-wrap .e-book-card,
.listing-page-section .blogs-wrap .blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.listing-page-section .e-books-wrap .e-book-card:hover,
.listing-page-section .blogs-wrap .blog-card:hover {
    box-shadow: 0px 0px 10px var(--Text-color);
}

.listing-page-section .e-books-wrap .e-book-card a,
.listing-page-section .blogs-wrap .blog-card a {
    border-radius: var(--border-radius);
    display: block;
    width: 100%;
    height: 100%;
    padding-bottom: 130%;
    position: relative;
    min-height: 210px;
}

.listing-page-section .e-books-wrap .e-book-card .text-cnt,
.listing-page-section .blogs-wrap .blog-card .text-cnt {
    width: 100%;
    padding: 0 30px;
    position: absolute;
    left: 0;
    bottom: 40px;
    z-index: 2;
}

.listing-page-section .e-books-wrap .e-book-card .text-cnt h3,
.listing-page-section .blogs-wrap .blog-card .text-cnt h3 {
    min-height: 52px;
}

.listing-page-section .e-books-wrap .e-book-card .text-cnt>*,
.listing-page-section .blogs-wrap .blog-card .text-cnt>* {
    color: var(--white);
    position: relative;
}

.listing-page-section .e-books-wrap .e-book-card a img,
.listing-page-section .blogs-wrap .blog-card a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-page-section .e-books-wrap .e-book-card a img,
.listing-page-section .blogs-wrap .blog-card a img {
    width: 100%;
    height: 100%;
    /* max-width: 430px;
    max-height: 560px; */
    display: block;
    transition: all 0.5s ease-in-out;
    transform: scale(1.001);
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.listing-page-section .e-books-wrap .e-book-card:hover img,
.listing-page-section .blogs-wrap .blog-card:hover img {
    transform: scale(1.04);
}

.listing-page-section .e-books-wrap .e-book-card:not(:first-child) a::before,
.listing-page-section .blogs-wrap .blog-card a::before {
    content: "";
    width: 100%;
    height: 52%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(360deg, #000000 -12.5%, rgba(0, 0, 0, 0) 91.19%);
    background-repeat: no-repeat;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* e-books page end */

/* CCp page start  */
.ccp-step-section .ccp-step-cnt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.ccp-step-section .ccp-steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ccp-step-section .ccp-steps-wrap .step-card {
    background: var(--box-bg-color);
    border-radius: var(--border-radius);
    display: flex;
    overflow: hidden;
    flex-direction: column;
    /* padding: 30px 30px 64px 30px; */
    padding: 30px;
}

.ccp-step-section .ccp-steps-wrap .step-card:nth-child(2) {
    background: var(--Saturated-Primary);
}

.ccp-step-section .ccp-steps-wrap .step-card:nth-child(3) {
    background: var(--Primary-color);
}

.ccp-step-section .ccp-steps-wrap .step-card:nth-child(2) .img-link .btn span,
.ccp-step-section .ccp-steps-wrap .step-card:nth-child(3) .img-link .btn span,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:first-child .img-link .btn span,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:nth-child(2) .img-link .btn span {
    background: rgba(255, 255, 255, 0.6);
}

.ccp-step-section .ccp-steps-wrap .step-card .img-link img {
    margin-top: 0;
}

.ccp-step-section .ccp-steps-wrap .step-card .img-link .btn span {
    padding: 8px 8px;
    color: var(--Text);
    background: rgba(248, 151, 166, 0.2);
}

.ccp-step-section .ccp-steps-wrap .step-card p:not(:last-child) {
    margin-bottom: 20px;
}

.ccp-step-section .ccp-steps-wrap .step-card p a {
    color: var(--Text-color);
    position: relative;
    transition: all 0.3s ease-in-out;
    text-decoration: underline;
    text-decoration-thickness: 0%;
    text-underline-offset: 3px;
}

.ccp-step-section .ccp-steps-wrap .step-card:nth-child(2) h3,
.ccp-step-section .ccp-steps-wrap .step-card:nth-child(2) p,
.ccp-step-section .ccp-steps-wrap .step-card:nth-child(2) p a {
    color: var(--white);
}

.ccp-step-section .ccp-steps-wrap .step-card:nth-child(3) h3,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:first-child h3,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:nth-child(2) h3 {
    color: var(--white);
}

.ccp-step-section .ccp-steps-wrap .step-card:nth-child(3) p,
.ccp-step-section .ccp-steps-wrap .step-card:nth-child(3) p a,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:first-child p,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:first-child p a,
.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:nth-child(2) p {
    color: var(--Love-Fumes);
}

.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:nth-child(2) p a {
    color: var(--Saturated-Primary);
}

.ccp-step-section .ccp-steps-wrap.step-4-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:first-child {
    background: var(--Dark-Primary);
}

.ccp-step-section .ccp-steps-wrap.step-4-5 .step-card:nth-child(2) {
    background: var(--VDark-Primary);
}

.certificate-info-section {
    padding: 45px 0 0;
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt {
    background-color: var(--box-bg-color);
    padding: 30px 30px 35px;
    border-radius: var(--border-radius);
    margin-bottom: 45px;
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt .title {
    position: relative;
    cursor: pointer;
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt .title::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url(../images/plus-icon.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}


.certificate-info-section .certificate-info-wrap .certificate-info-cnt.open .title::after {
    background-image: url(../images/minus-icon.svg);
}


.certificate-info-section .certificate-info-wrap .certificate-info-cnt .title h2 {
    margin-bottom: 0;
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt .title h2 span {
    color: var(--Pure-Primary);
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt .info-desc {
    padding-top: 22px;
    max-width: 95%;
    display: none;
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt .info-desc p:not(:last-child) {
    margin-bottom: 20px;
}

.certificate-info-section .certificate-info-wrap .certificate-info-cnt .info-desc p span,
.certificate-info-section .certificate-info-wrap .certificate-info-cnt .info-desc p a {
    color: var(--Pure-Primary);

}

/* CCp page end */

/* trainers pages start  */
.trainers-section .trainers-details .trainer-cnt {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.trainers-section .trainers-details .trainer-detais-popup {
    display: none;
}

.trainers-section .trainers-details .trainer-cnt:nth-child(even) {
    flex-direction: row-reverse;
}

.trainers-section .trainers-details .trainer-cnt .img img {
    border-radius: var(--border-radius);
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    min-height: 300px;
}

.trainers-section .trainers-details .trainer-cnt .text-cnt {
    max-width: 69.2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trainers-section .trainers-details .trainer-cnt .text-cnt h3,
.trainers-section .trainers-details .trainer-cnt .img h3 {
    font-weight: 600;
    color: var(--Pure-Primary);
    margin-bottom: 14px;
}

.trainers-section .trainers-details .trainer-cnt .img h3 {
    background-color: rgb(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 10px;
    text-align: center;
    display: none;
}


.trainers-section .trainers-details .trainer-cnt .text-cnt p:not(:last-child) {
    margin-bottom: 20px;
}

/* trainers pages end */

/* .course-listing-page start  */

/* *** .course-listing-page  replace this class name with page id after devloped page *** */

.course-listing-page .feature-courses-section {
    padding: 90px 0;
}

.course-listing-page .feature-courses-section h2,
.all-courses-section .title h2 {
    margin-bottom: 0;
}

.course-listing-page .feature-courses-section .feature-course>.title .view-all-btn {
    display: none;
}

/* .all-courses-section{
    padding: 45px 0;
    } */

.all-courses-section .title {
    margin-bottom: 32px;
}

.all-courses-section .course-tabinations,
.course-details-section .course-details-tabinations {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.all-courses-section .course-tabinations .tabs-links,
.course-details-section .course-details-tabinations .tabs-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.all-courses-section .course-tabinations .tabs-links .tab-link,
.course-details-section .course-details-tabinations .tab-link {
    padding: 15px 25px;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;
    color: #000000;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.all-courses-section .course-tabinations .tabs-links .tab-link.active,
.course-details-section .course-details-tabinations .tab-link.active {
    color: var(--Primary-color);
    border-color: var(--Primary-color);
}

.all-courses-section .courses-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 75px;
}

.all-courses-section .courses-wrap.active {
    display: grid !important;
}

.all-courses-section .courses-wrap .course-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color)
}

.all-courses-section .courses-wrap .course-card .course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.all-courses-section .courses-wrap .course-card .course-card-header .course-location,
.all-courses-section .courses-wrap .course-card .course-card-header .course-date {
    display: flex;
    align-items: start;
    gap: 10px;
}

.all-courses-section .courses-wrap .course-card .course-card-header .course-date {
    align-items: center;
}

.all-courses-section .courses-wrap .course-card .course-card-header .course-location img,
.all-courses-section .courses-wrap .course-card .course-card-header .course-date img,
.all-courses-section .courses-wrap .course-card .course-details img,
.course-details-section .course-details-modules-tab .module-time img,
.course-details-section .course-sidebar .course-info-item img,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list .course-info-item img {
    width: 22px;
    height: 22px;
}

.all-courses-section .courses-wrap .course-card .course-card-header .course-location span,
.all-courses-section .courses-wrap .course-card .course-card-header .course-date span {
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0;
}

.all-courses-section .courses-wrap .course-card .course-title {
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--border-color);
}

.all-courses-section .courses-wrap .course-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.all-courses-section .courses-wrap .course-card .course-id {
    display: flex;
    align-items: center;
    gap: 4px;
}

.all-courses-section .courses-wrap .course-card .course-id img {
    width: 20px;
    height: 20px;
}

.all-courses-section .courses-wrap .course-card .course-id span {
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0;
    color: var(--Primary-color);
}

.all-courses-section .courses-wrap .course-card .course-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    margin-bottom: 30px;
}

.all-courses-section .courses-wrap .course-card .course-details li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.all-courses-section .courses-wrap .course-card .primary-btn,
.course-details-section .course-sidebar .primary-btn {
    width: 100%;
    text-align: center;
    padding: 16px 22px;
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0;
    width: 100%;
    text-align: center;
}

/* .course-listing-page end */

/* course-details page start  */
.course-details-section .course-content-wrapper {
    display: grid;
    grid-template-columns: 61% auto;
    gap: 100px;
}

.course-details-section .course-details-tabinations {
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 3;
}

.course-details-section .course-details-wrap>* {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
}

.course-details-section .course-details-wrap>*:last-child {
    margin-bottom: 0;
}

.course-details-section .course-details-wrap h2 {
    font-size: 32px;
    letter-spacing: -0.32px;
    color: var(--Pure-Primary);
    margin-bottom: 15px;
}

.course-details-section .course-details-tab p {
    margin-bottom: 20px;
}

.course-details-section .course-details-tab p:nth-last-child(2) {
    margin-bottom: 0px;
}


.course-details-section .course-details-tab p span,
.course-details-section .course-details-tab p a {
    color: var(--Pure-Primary);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 0%;
    text-underline-offset: 3px;
}

.course-details-section .course-details-tab p strong,
.course-details-section .course-details-tab p b {
    font-weight: 500;
}

.course-details-section .course-details-tab .outline-btn {
    font-size: 18px;
    font-weight: 500;
    border: 1px solid var(--Pure-Primary);
    color: var(--Pure-Primary);
    padding: 15px 30px;
    margin-top: 30px;
    display: inline-flex;
}

.course-details-section .course-details-tab .outline-btn:hover {
    color: var(--white);
}

.course-details-section .course-details-data-tab {
    border: none;
    background: var(--box-bg-color);
}

.course-details-section .course-details-data-tab>p {
    margin-bottom: 30px;
}

.course-details-section .course-details-modules-tab .modules-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.course-details-section .course-details-modules-tab .module-card {
    padding: 26px 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
}

.course-details-section .course-details-modules-tab .module-card h3 {
    color: var(--Pure-Primary);
    margin-bottom: 20px;
}

.course-details-section .course-details-modules-tab .module-card p {
    font-weight: 500;
    margin-bottom: 24px;
    min-height: 40px;
}

.course-details-section .course-sidebar .course-info-item,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list .course-info-item,
.course-details-section .course-details-modules-tab .module-time {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-details-section .course-details-modules-tab .module-time {
    margin-top: auto;
}

.course-details-section .course-instructor-tab {
    border: none;
    position: relative;
    padding: 0 !important;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.course-details-section .course-instructor-tab img {
    min-height: 230px;
    object-fit: cover;
}

.course-details-section .course-instructor-tab::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(359.32deg, #000000 -33.93%, rgba(0, 0, 0, 0) 94.08%);
}

.course-details-section .course-instructor-tab h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.course-details-section .course-instructor-tab .text-cnt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
}

.course-details-section .course-location-tab h2 {
    margin-bottom: 40px;
}

.course-details-section .course-location-tab>h3 {
    margin-bottom: 30px;
}

.course-details-section .course-location-tab .details {
    margin-bottom: 30px;
}

.course-details-section .course-location-tab .details h3 {
    color: var(--Pure-Primary);
    margin-bottom: 14px;
}

.course-details-section .course-location-tab .location-images {
    margin-top: 30px;
}

.course-details-section .course-location-tab h3 span {
    color: var(--Pure-Primary);
}


/* sidebar  */
.course-details-section .course-sidebar {
    background: var(--box-bg-color);
    border-radius: var(--border-radius);
    padding: 30px 30px 25px;
    height: max-content;
    position: sticky;
    /* top: var(--header-height); */
    top: 0;
    transition: all 0.3s ease-in-out;
}

.course-details-section .course-sidebar .course-info-list a,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list a,
.course-details-section .course-location-tab .course_details_location a {
    pointer-events: none;
}

header.active~.course-details-section .course-sidebar {
    top: var(--header-height);
    margin-top: 15px;
}

.course-details-section .course-sidebar .course-info-list {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 24px;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list .course-info-item:last-child {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 24px;
}

.course-details-section .course-sidebar .course-info-item,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list .course-info-item {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list .course-info-item * {
    color: var(--Text-color) !important;
}

.course-details-section .course-sidebar .course-info-item:last-child,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list .course-info-item:last-child {
    margin-bottom: 27px;
}

/* course-details page end */

.guia-blocos {
    display: inline-block;
    vertical-align: top;
    color: #333;
    position: relative
}

.guia-blocos h2 {
    font-family: Titillium, Arial;
    text-decoration: none;
    padding: 0 0 3px;
    word-spacing: .06em;
    letter-spacing: -.04em;
    text-transform: uppercase;
    line-height: 22px;
    font-size: 20px;
    margin-bottom: 10px
}

.guia-blocos p {
    font-family: Titillium, Arial;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 16px
}

.guia-blocos a:link,
.guia-blocos a:visited {
    color: #333;
    font-weight: 700
}

.guia-blocos a:hover {
    color: #a03a75;
    text-decoration: underline
}

#bloco-1 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-1.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 338px;
    height: 196px;
    z-index: 5
}

#bloco-1 .inner {
    padding: 30px 25px 10px 105px
}

#bloco-1 .inner:hover {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-1-hover.gif) no-repeat top left;
    background-size: 100% auto !important
}

#bloco-1-3 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/01.png) no-repeat top left;
    background-size: 100% 100% !important;
    width: 350px;
    /*height: 196px;*/
    z-index: 5
}

#bloco-1-3 .inner {
    padding: 30px 25px 20px 105px
}

#bloco-1-4 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/01bloco.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 350px;
    height: 196px;
    z-index: 5
}

#bloco-1-4 .inner {
    padding: 30px 25px 10px 105px
}

#bloco-2 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-2.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 503px;
    height: 196px;
    margin-left: -26px;
    z-index: 4
}

#bloco-2 .inner {
    padding: 30px 10px 10px 115px
}

#bloco-2 .inner:hover {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-2-hover.gif) no-repeat top left;
    background-size: 100% auto !important
}

#bloco-2-3 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/02-min.jpg) no-repeat top left;
    background-size: 100% 100% !important;
    width: 503px;
    height: 245px;
    margin-left: -26px;
    z-index: 4
}

#bloco-2-3 .inner {
    padding: 30px 10px 10px 115px
}

#bloco-2-4 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/02bloco.jpg) no-repeat top left;
    background-size: 100% auto !important;
    width: 503px;
    height: 196px;
    margin-left: -26px;
    z-index: 4
}

#bloco-2-4 .inner {
    padding: 30px 10px 10px 115px
}

#bloco-3 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-3.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 347px;
    height: 199px;
    margin-left: -31px;
    z-index: 3
}

#bloco-3 .inner {
    padding: 30px 45px 10px 125px
}

#bloco-3 .inner:hover {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-3-hover.gif) no-repeat top left;
    background-size: 100% auto !important
}

#bloco-3 a:hover {
    color: #333
}

#bloco-3 a,
#bloco-3 p {
    color: #a03a75
}

#bloco-3-3 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/03.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 347px;
    height: 199px;
    margin-left: -31px;
    z-index: 3
}

#bloco-3-3 .inner {
    padding: 30px 45px 10px 125px
}

#bloco-3-3 a:hover {
    color: #333
}

#bloco-3-3 a,
#bloco-3-3 p {
    color: #a03a75
}

#bloco-3-4 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/03bloco.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 347px;
    height: 199px;
    margin-left: -31px;
    z-index: 3
}

#bloco-3-4 .inner {
    padding: 30px 45px 10px 125px
}

#bloco-3-4 a:hover {
    color: #333
}

#bloco-3-4 a,
#bloco-3-4 p {
    color: #a03a75
}

#bloco-4 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-4.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 500px;
    height: 199px;
    z-index: 2
}

#bloco-4 .inner {
    padding: 30px 200px 10px 105px
}

#bloco-4 .inner:hover {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-4-hover.gif) no-repeat top left;
    background-size: 100% auto !important
}

#bloco-4-2 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-4.2_v2.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 500px;
    height: 199px;
    z-index: 2
}

#bloco-4-2 .inner {
    padding: 30px 200px 10px 105px
}

#bloco-4-2 .inner:hover {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-4-hover.gif) no-repeat top left;
    background-size: 100% auto !important
}

#bloco-4-3 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/04_v2.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 500px;
    height: 199px;
    z-index: 2
}

#bloco-4-3 .inner {
    padding: 30px 200px 10px 105px
}

#bloco-4-4 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/04bloco.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 500px;
    height: 199px;
    z-index: 2
}

#bloco-4-4 .inner {
    padding: 30px 200px 10px 105px
}

#bloco-5 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-5.png) no-repeat top left;
    background-size: 100% auto !important;
    width: 820px;
    height: 196px;
    z-index: 1
}

#bloco-5 .inner {
    padding: 30px 10px 10px 105px
}

#bloco-5 .inner:hover {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/bloco-guia-5-hover.gif) no-repeat top left;
    background-size: 100% auto !important
}

#bloco-5-3 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/05-min.jpg) no-repeat top left;
    background-size: 100% auto !important;
    width: 820px;
    height: 196px;
    z-index: 1
}

#bloco-5-3 .inner {
    padding: 30px 10px 10px 105px
}

#bloco-5-4 {
    background: url(https://formacaoformadores-ccp.pt/sites/all/themes/ccp/imagens/05bloco.jpg) no-repeat top left;
    background-size: 100% auto !important;
    width: 820px;
    height: 196px;
    z-index: 1
}

#bloco-5-4 .inner {
    padding: 30px 10px 10px 105px
}

/* calendário start  */
.calendar-sec,
.user-login-sec {
    padding-bottom: 45px;
}

.calendar-sec>.container>h2 {
    margin-bottom: 40px;
}

.calendar-sec .fc-header-toolbar {
    margin-bottom: 30px;
}

.calendar-sec .fc-header-toolbar .fc-left {
    display: flex;
    gap: 50px;
}

.calendar-sec .fc-header-toolbar .fc-button-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.calendar-sec .fc-header-toolbar .fc-button-group .fc-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--Primary-color);
    border: 1px solid var(--Primary-color);
    outline: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-sec .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left:before,
.calendar-sec .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.calendar-sec .fc-header-toolbar .fc-button-group .fc-button:hover {
    background-color: var(--Dark-Primary);
    border: 1px solid var(--Dark-Primary);

}

.calendar-sec .fc-header-toolbar .fc-button-group .fc-button .fc-icon {
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.calendar-sec .fc-header-toolbar .fc-button-group .fc-button:hover .fc-icon {
    color: var(--white);

}

.calendar-sec .fc-header-toolbar .fc-today-button:disabled {
    opacity: 0.5;
}

.calendar-sec .fc-header-toolbar .fc-today-button {
    background: var(--border-color);
    color: var(--Text-color);
    border: 1px solid transparent;
    outline: none;
    margin: 0;
}

.calendar-sec .fc-header-toolbar .fc-today-button:hover {
    background-color: var(--Dark-Primary);
    border: 1px solid var(--Dark-Primary);
    color: var(--white);
    opacity: 1;
}

.calendar-sec .fc-header-toolbar .fc-center h2 {
    color: var(--Text-color);
}

.calendar-sec .fc-dayGridMonth-view {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.calendar-sec .fc table {
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0;
    text-align: right;
}

.calendar-sec .fc-dayGridMonth-view table * {
    border-color: var(--border-color);
    color: var(--Text-color);
    box-sizing: border-box;
}

.calendar-sec .fc-dayGridMonth-view table thead tr td {
    border-top: none;

}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row:last-child td {
    border-bottom: none;
}

.calendar-sec .fc-dayGridMonth-view table thead tr td thead tr th {
    padding: 10px;
    text-align: right;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-day-top {
    padding: 10px 10px 10px 0;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-day-top .fc-day-number {
    width: 100%;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-day-top .fc-day-number:hover {
    text-decoration: none;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-day-top.fc-other-month {
    opacity: 0.2;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-event,
.calendar-sec .fc-dayGridDay-view table .fc-body .fc-row .fc-event,
.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container .fc-event,
.calendar-sec .fc-dayGridDay-view .fc-popover .fc-event-container .fc-event {
    position: relative;
    background: transparent !important;
    border: none;
    padding-left: 15px;
    margin-bottom: 5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-event::before,
.calendar-sec .fc-dayGridDay-view table .fc-body .fc-row .fc-event::before,
.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container .fc-event::before,
.calendar-sec .fc-dayGridDay-view .fc-popover .fc-event-container .fc-event::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: var(--Primary-color);

}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row .fc-event span,
.calendar-sec .fc-dayGridDay-view table .fc-body .fc-row .fc-event span,
.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container .fc-event span,
.calendar-sec .fc-dayGridDay-view .fc-popover .fc-event-container .fc-event span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: start;
    color: var(--Text-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row td.fc-today,
.calendar-sec .fc-dayGridDay-view table td.fc-today {
    background: var(--Primary-color);
    overflow: hidden;
}

.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-row td.fc-today .fc-day-number,
.calendar-sec .fc-dayGridMonth-view table .fc-body .fc-other-month.fc-today {
    color: var(--white);
}

.calendar-sec .js-pager__items,
.fc+.fc-button-group {
    display: none;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container {
    padding: 10px;
    padding-left: 0;
    position: absolute;
    background: var(--white);
    overflow-y: scroll;
    height: 100%;
    min-height: 120px;
    padding-bottom: 10px !important;
    border: 1px solid var(--border-color);
    border: 1px solid var(--Primary-color);
    border-top: none;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container::-webkit-scrollbar {
    width: 5px;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 10px;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-event-container::-webkit-scrollbar-thumb {
    background: var(--Primary-color);
    border-radius: 10px;
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-header {
    background: var(--Primary-color);
}

.calendar-sec .fc-dayGridMonth-view .fc-popover .fc-header * {
    color: var(--white);
}


body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='windowManager_'] {
    width: 100vw !important;
    height: 100vh !important;
    background-color: #b1b1b180 !important;
    z-index: 999999 !important;
    position: fixed !important;
}

body {
    position: relative;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='windowManager_']:empty {
    display: none;
}

html:has([id^='windowManager_']:not(:empty)) {
    overflow: hidden;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] [id^='window_'] {
    width: 50vw;
    height: 60vh;
    top: 0 !important;
    background-color: var(--white) !important;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] {
    width: 100% !important;
    height: 100% !important;
    left: 50% !important;
    top: 55% !important;
    transform: translate(-50%, -50%) !important;
    overflow: hidden;
    box-shadow: none !important;
    border: 1px solid var(--border-color);
    border-color: var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    max-width: 690px;
    max-height: 395px;
    cursor: pointer !important;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_']>* {
    max-width: 100%;
    max-height: 100%;
    height: 100% !important;
    width: 100% !important;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] [id^='window_'] div:has(+ iframe) {
    right: 30px !important;
    top: 30px !important;
    width: 30px !important;
    height: 30px !important;
    left: unset !important;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] [id^='window_'] div:has(+ iframe) span {
    display: none !important;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] [id^='window_'] div:has(+ iframe):after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url(../images/x-light.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .jsframe-titlebar-focused {
    background: var(--Primary-color) !important;
    display: none;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .jsframe-titlebar-focused * {
    color: var(--white);
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .jsframe-titlebar-focused span {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    padding-right: 40px;
    text-align: start;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] h3 a,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] p,
body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .course-info-list {
    padding: 10px 80px 10px 30px;
    display: block;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .primary-btn {
    margin-left: 30px;
    margin-right: 80px;
    display: block;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] h3 a {
    padding-top: 30px;
    color: var(--Text-color);
    text-transform: capitalize;
}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] p {
    color: var(--Text-color);
    font-weight: 500;
}

/* calendário end  */

/* client page stat  */
.listing-page-section.client-sec .blogs-wrap .blog-card a {
    padding-bottom: 45%;
    min-height: 100px;
}

.listing-page-section.client-sec .blogs-wrap .blog-card a img {
    object-fit: contain;
}

.listing-page-section.client-sec .blogs-wrap .blog-card .text-cnt {
    bottom: 20px;
}

.listing-page-section.client-sec .blogs-wrap .blog-card a::before {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* client page end */

.certificado-sec a {
    color: var(--Primary-color);
    transition: all .33s ease
}
.certificado-sec a:hover{
    color: var(--Dark-Primary);
}

/* .certificado-sec {
    padding-bottom: 45px
} */

.certificado-sec .node-title a,
.certificado-sec h1.title,
.certificado-sec h2 {
    font-weight: 700;
    color: var(--Text-color);
    font-family: Inter
}

.certificado-sec h1.title {
    font-size: 50px;
    margin-bottom: 40px;
    color: var(--Primary-color)
}

.certificado-sec h2 {
    margin: 0 0 25px;
    font-size: 30px
}

.certificado-sec .node-title a {
    text-decoration: none;
    transition: all .33s linear
}

.certificado-sec .node-title a:hover {
    text-decoration: underline
}

.certificado-sec p {
    margin-bottom: -4px
}

.certificado-sec p span {
    font-size: inherit !important;
}

.certificado-sec p img {
    margin-bottom: 5px;
    margin-right: 5px;
    float: left;
    width: 150px;
    height: auto
}

.certificado-sec .certificado-sec1 ul {
    margin: 0 0 20px 160px;
    padding-left: 30px
}

.certificado-sec .certificado-sec1 ul li {
    margin-bottom: 10px;
    list-style: disc
}

.certificado-sec .certificado-sec1 ul li:last-child {
    margin-bottom: 0
}

.certificado-sec blockquote,
.certificado-sec .js-comment.by-viewer {
    display: block;
    padding: 15px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--box-bg-color);
    font-weight: 400;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 0 0 20px;
}

.certificado-sec blockquote a {
    text-decoration: none
}

.certificado-sec blockquote a:hover {
    text-decoration: underline
}

.certificado-sec blockquote ul,
.certificado-sec blockquote ol {
    padding-left: 26px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.certificado-sec blockquote li {
    list-style: disc;
    margin-bottom: 5px;
}


.certificado-sec strong {
    font-weight: 700
}

.certificado-sec img[alt*=CAP],
.certificado-sec img[alt*=Formadores],
.certificado-sec img[alt*=documentos] {
    max-width: 100%;
    height: auto
}

.certificado-sec .certificado-sec1 {
    position: relative
}

.certificado-sec .certificado-sec1::after {
    content: '';
    display: block;
    clear: both
}

.certificado-sec .certificado-sec1+p {
    margin-top: 25px
}


.webform-section {
    padding: 80px 0 86px;
    background: var(--box-bg-color);
}

.webform-section form {
    margin-top: 53px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}

.webform-section form .js-form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.webform-section form .js-form-item-email,
.webform-section form .js-form-item-subject,
.webform-section form .js-form-item-message,
.webform-section form .form-actions {
    grid-column: span 2;
}

.webform-section form label {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0;
    margin-bottom: 15px;
}


.webform-section form input,
.webform-section form textarea {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;
    border: 1px solid #E5E7EB;
    background: #fff;
    border-radius: 18px;
    padding: 20px 25px;
    outline: none;
    width: 100%;
}

.webform-section form textarea {
    height: 200px;
}

.webform-section form .form-actions {
    margin-top: 10px;
    margin-left: auto;
}

.webform-section form .form-submit {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    font-family: 'Inter';
    letter-spacing: 0;
    color: var(--white);
    padding: 14px 22px;
    background: var(--Primary-color);
    border: 1px solid var(--Primary-color);
    border-radius: var(--border-radius);
    display: inline-block;
    text-transform: capitalize;
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.webform-section form .form-submit:hover {
    background-color: var(--Dark-Primary);
    border: 1px solid var(--Dark-Primary);
}

.user-login-sec h1.title {
    color: var(--Primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.user-login-sec .login-form-cnt,
.webform-submission-pre-inscricao-num-curso-de-forma-form,
.webform-submission-pedido-de-contacto-form,
.webform-submission-form,
.user-form,
.comment-form,
.user-register-form {
    max-width: 550px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--box-bg-color);
}

.webform-submission-form,
.comment-form,
.user-form,
.webform-submission-pre-inscricao-num-curso-de-forma-form,
.webform-submission-pedido-de-contacto-form,
.user-register-form {
    max-width: 100%;
}

/* inner pages */
.webform-submission-pre-inscricao-num-curso-de-forma-form,
.webform-submission-pre-inscricao-num-curso-de-gesta-form {
    margin-top: 30px;
}

.webform-submission-form .webform-element-description,
.comment-form .webform-element-description,
.user-form .webform-element-description {
    margin-top: 10px;
}

.webform-submission-form .form-wrapper summary,
.comment-form .form-wrapper summary,
.user-form .form-wrapper summary,
.user-register-form .form-wrapper summary,
.webform-submission-form fieldset.webform-type-checkboxes legend,
.comment-form fieldset.webform-type-checkboxes legend,
.user-form fieldset.webform-type-checkboxes legend,
.user-register-form fieldset.webform-type-checkboxes legend,
.webform-submission-form fieldset.webform-type-radios legend,
.comment-form fieldset.webform-type-radios legend,
.user-form fieldset.webform-type-radios legend {
    margin-bottom: 20px;
    color: var(--Primary-color);
}

.webform-submission-form fieldset.webform-type-checkboxes legend,
.comment-form fieldset.webform-type-checkboxes legend,
.user-form fieldset.webform-type-checkboxes legend,
.user-register-form fieldset.webform-type-checkboxes legend,
.webform-submission-form fieldset.webform-type-radios legend,
.comment-form fieldset.webform-type-radios legend,
.user-form fieldset.webform-type-radios legend {
    margin-bottom: 10px !important;
}

.webform-submission-form .webform-required,
.comment-form .webform-required,
.user-form .webform-required {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--Primary-color);
    font-weight: 700;
}

form input+.description {
    margin-top: 5px;
}

/* .user-register-form .form-actions input {
    color: var(--Dark-Primary);
    background: none;
    border: none;
    outline: none;
    text-decoration: underline;
    font-size: 18px;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}

.user-register-form .form-actions input:hover {
    text-decoration: none;
    color: var(--Primary-color);
} */
.user-register-form .form-item.form-type-checkbox.form-item-contact:has(.description) {
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.user-register-form .field--type-link fieldset,
.user-form .field--type-link fieldset {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

.comment-form .form-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.comment-form .form-actions input#edit-preview {
    background: var(--VDark-Primary);
    border-color: var(--VDark-Primary);
}

.password-strength__meter {
    background: var(--Love-Fumes);
    border-radius: 4px;
    overflow: hidden;
    height: 6px;
}

.password-strength__indicator.is-weak {
    background-color: #FF4D4F;
}

.password-strength__indicator.is-fair {
    background-color: #FAAD14;
}

.password-strength__indicator.is-good {
    background-color: #79ec3f;
}

.password-strength__indicator.is-strong {
    background-color: #389E0D;
}

.certificado-sec footer {
    padding: 0;
    background: transparent;
    margin-bottom: 15px;
}

.webform-submission-subscricao-da-newsletter-form {
    padding: 0;
    background: #ffffff;
        border: none;
}

.webform-submission-subscricao-da-newsletter-form .form-item {
    margin-bottom: 0px !important;
}

body .webform-submission-subscricao-da-newsletter-form .form-actions {
    margin-top: 0px;
}

body .newsletter-section .newsletter .webform-submission-subscricao-da-newsletter-form .webform-button--submit {
    padding: 12px 24px;
    font-size: 20px;
    border-radius: 16px;
    background: var(--Dark-Primary);
    color: var(--white) !important;
    border: 1px solid var(--Dark-Primary);
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0;
    font-family: 'Inter';
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    display: block;    height: 100%;
}
body .newsletter-section .newsletter .webform-submission-subscricao-da-newsletter-form .webform-button--submit:hover {
    background: var(--VDark-Primary);
}

[data-drupal-messages] pre,
[data-drupal-messages] h2 + pre {
  display: none !important;
}

[data-drupal-messages] div:has(pre) {
  display: none !important;
}
[data-drupal-messages]{display:none}

.location-cnt h4 {
    text-transform: lowercase;
}
.fc-dayGridMonth-button.fc-button.fc-button-primary.fc-button-active{display: none;}

body:has(.dialog-off-canvas-main-canvas .calendar-sec) [id^='htmlElement_window_'] .primary-btn.calender_wrap{    position: relative;z-index: 3;cursor: pointer;}