/*--------------------------------------------------------------
>>> Global:
----------------------------------------------------------------*/
:root {
    --evc-c-primary: #6EB589;
    --evc-c-secondary: #2A2970;
    --evc-c-white: #fff;
    --evc-c-faq-border: #00000033;
    --evc-c-black: #000;
    --evc-c-faq-border-2: #00000026;
    --evc-font: 'IRANSansX';
}

html, body {
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}

button[type="submit"],
button,
.elementor-button,
button.elementor-button,
button.elementor-button[type="submit"] {
    cursor: pointer !important;
}

.swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
    background: #D9D9D9 !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}


.swiper-pagination-bullet-active {
    width: 24px !important;
    background: #6EB589 !important;
    border-radius: 4px !important;
}

#news-section .swiper-pagination-bullet-active {
    background: #fff !important;
}


.swiper-pagination-bullet:hover {
    background: #b0b0b0 !important;
    transform: scale(1.1) !important;
}

.swiper-pagination-bullet-active:hover {
    background: #5a9e73 !important;
    transform: scale(1.05) !important;
}


.swiper-pagination-bullet {
    margin: 0 4px !important;
}


.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
}

form[name="ticket_form"] .elementor-field-group input {
    padding-right: 45px !important;
    padding-left: 15px !important;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 17px 21px;
}

#form-field-name {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2026/08/form-email.svg');
}

#form-field-phone_number {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2026/08/phone-call.svg');
}

#form-field-full_name {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2026/08/user.svg');
}

/*--------------------------------------------------------------
>>> Mega menu:
----------------------------------------------------------------*/

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 20px 0;
}

.mega-menu-item:hover > .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-row {
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.mega-menu-column {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
}

.mega-menu-column > .menu-item {
    display: block;
    margin-bottom: 10px;
}

.mega-menu-column > .menu-item > a {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    padding: 8px 0;
    display: block;
    border-bottom: 2px solid #f0f0f0;
}

.mega-menu-column .sub-menu-inner {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column .sub-menu-inner .menu-item {
    display: block;
}

.mega-menu-column .sub-menu-inner .menu-item a {
    display: block;
    padding: 6px 0;
    color: #666;
    font-size: 13px;
    transition: all 0.3s ease;
}

.mega-menu-column .sub-menu-inner .menu-item a:hover {
    color: #22c55e;
    padding-right: 10px;
}

.menu-icon {
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.menu-icon img {
    width: 9px;
    height: 9px;
    display: inline-block;
    vertical-align: middle;
}

.mega-menu-item:hover > a .menu-icon {
    transform: rotate(180deg);
}

.evc-header-nav {
    position: relative;
}

.evc-header-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.evc-header-nav > ul > li {
    position: relative;
    display: inline-block;
}

.evc-header-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.evc-header-nav > ul > li > a:hover {
    color: #22c55e;
}

@media (max-width: 1024px) {
    .mega-menu-row {
        max-width: 95%;
    }

    .mega-menu-column {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .mega-menu-container {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 10px 0;
    }

    .mega-menu-row {
        max-width: 100%;
        flex-direction: column;
    }

    .mega-menu-column {
        padding: 0;
        margin-bottom: 15px;
    }

    .menu-icon {
        display: none;
    }
}

.evc-views-counter {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--evc-font);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #32394180;
}

/*--------------------------------------------------------------
>>> Testimonial:
----------------------------------------------------------------*/

.evc-testimonials-slider {
    position: relative;
    overflow-x: hidden;
}

.evc-testimonials-slider .swiper-slide {
    opacity: 0.5 !important;
    transition: opacity 0.5s ease !important;
}

.evc-testimonials-slider .swiper-slide-active {
    opacity: 1 !important;
}

/*--------------------------------------------------------------
>>> FAQ:
----------------------------------------------------------------*/

.evc-faq-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'IRANSansX';
}

/* هر آیتم FAQ */
.evc-faq-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'IRANSansX';
}

.evc-faq-head {
    font-family: 'IRANSansX';
    background: var(--evc-c-white);
    border: 1.5px solid var(--evc-c-faq-border);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    color: var(--evc-c-black);
    height: 75px;
    min-height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    gap: 15px;
    user-select: none;
}

.evc-faq-head:hover {
    border-color: var(--evc-c-primary);
    background: #f8fafc;
}

.evc-faq-item.active .evc-faq-head {
    border-color: var(--evc-c-faq-border-2);
    border-radius: 8px 8px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.evc-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.evc-faq-item.active .evc-faq-icon {
    transform: rotate(-90deg);
}

.evc-faq-item.active .evc-faq-icon path {
    fill: var(--evc-c-secondary);
}

/*.evc-faq-item.active .evc-faq-icon::before {*/
/*    transform: rotate(-90deg);*/
/*    opacity: 0;*/
/*}*/

.evc-faq-item.active .evc-faq-icon::after {
    background: var(--evc-c-secondary);
}

.evc-faq-question {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding: 0;
    line-height: 16px;
    transition: color 0.3s ease;
}

.evc-faq-item.active .evc-faq-question {
    transition: color 0.3s ease;
    color: var(--evc-c-secondary);
}

.evc-faq-body {
    max-height: 0;
    border-style: solid;
    border-color: #00000033;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--evc-c-white);
    border-left: 1.5px solid rgba(0, 0, 0, 0.2);
    border-right: 1.5px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.2);
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.evc-faq-item.active .evc-faq-body {
    max-height: 200px;
}

.evc-faq-answer {
    padding: 20px 24px 24px 24px;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    color: #4b5563;
}

.evc-faq-answer p {
    margin: 0 0 12px 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
}

.evc-faq-answer p:last-child {
    margin-bottom: 0;
}

.evc-faq-answer ul,
.evc-faq-answer ol {
    margin: 10px 0;
    padding-right: 20px;
}

.evc-faq-answer li {
    margin-bottom: 6px;
}

.evc-faq-answer a {
    color: #22c55e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.evc-faq-answer a:hover {
    color: #16a34a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .evc-faq-head {
        height: 58px;
        min-height: 58px;
        padding: 0 14px;
        gap: 10px;
    }

    .evc-faq-question {
        font-size: 14px !important;
        line-height: 21px;
    }

    .evc-faq-answer {
        padding: 14px 16px 18px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .evc-faq-head {
        height: 52px;
        min-height: 52px;
        padding: 0 12px;

    }

    .evc-faq-question {
        font-size: 13px !important;
        line-height: 21px;
    }
}

/*--------------------------------------------------------------
>>> pivot:
----------------------------------------------------------------*/
.box1 {
    padding: 45px 30px 45px 30px;
    background-color: #FFFFFF;
    border-radius: 10px !important;
    box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
}

#whatsappfooter {
    display: inline-block;
    position: fixed;
    bottom: 10px;
    z-index: 999;
    padding: 10px;
    border-radius: 30px;
    right: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 20px #0000002b;
    background-color: #ffffff42;
    -webkit-backdrop-filter: saturate(180%) blur(5px) !important;
    backdrop-filter: saturate(180%) blur(5px) !important;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
}

#whatsappfooter a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    color: #000;
}

#whatsappfooter a span {
    margin-right: 5px;
    display: inline-block;
    transition: 0.3s all;
    transform: translateX(110px);
    opacity: 0;
    font-size: 13px;
    white-space: nowrap;
    padding: 0px 14px;
}

#whatsappfooter:hover {
    width: 155px;
    border-radius: 30px;
}

#whatsappfooter img {
    margin-right: 3px;
    margin-top: 1px;
}

#whatsappfooter:hover a span {
    transform: translateX(0px);
    opacity: 1;
}

.titles1 {
    position: relative;
    padding-bottom: 15px;
}

.titles1:after {
    position: absolute;
    right: 0;
    bottom: -2px;
    content: '';
    width: 100%;
    background-color: #0000000a;
    height: 1px;
}

.titles1:before {
    position: absolute;
    right: 50%;
    bottom: -3px;
    background-color: #79c79b;
    width: 33%;
    height: 3px;
    content: '';
    transform: translateX(50%);
    border-radius: 10px;
}

.cont img {
    width: 35px;
    padding: 7px;
    border: 1px solid #79c79b !important;
    opacity: 1;
    border-radius: 6px !important;
    margin-left: 10px;
    background-color: #79c79b;
}

.cont {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.boldz {
    font-weight: bold !important;
}

.cont a, .cont p {
    color: #2a2970 !important;
    display: block;
    font-size: 0.9rem;
}

.cont span {
    font-weight: normal;
    margin-bottom: 6px;
    display: block;
}

.foocont {
    font-weight: 100;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.foocont svg {
    margin-left: 10px;
}

.foocont span {
    color: #faf8f0;
    font-weight: bold;
    font-size: 0.8rem;
}

.digits-form_container.digits {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/02/pivot-sign.png');
    background-repeat: no-repeat;
    background-position: center 12px;
    background-size: 45px;
}

.digits-form_heading_text {
    display: none;
}

.digits-form_container.digits {
    border: 3px solid #79c79b;
}

.foocont a {
    color: #c6c6c6 !important;
    display: block;
}

#mySidenav {
    position: fixed;
    left: -80px;
    top: 50%;
    transform: translate(0, -50%);
}

#mySidenav a {
    transition: 0.3s;
    padding: 11px 11px;
    width: 100px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    border-radius: 0 20px 20px 0;
    display: block;
    text-align: left;
    margin: 4px 0px;
}

.zabout {
    background-color: #2a2970;
}

.zprojects {
    background-color: #79c79b;
}

.zblog {
    background-color: #043e5b;
}

#mySidenav a:hover {
    transform: translateX(80px);
}

a.foot {
    display: block;
    width: max-content;
    color: #c6c6c6 !important;
    font-weight: normal;
    margin-bottom: 7px;
    transition: 0.3s all;
}

a.foot:hover {
    color: var(--e-global-color-accent) !important;
}

.titles2::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    content: '';
    width: 42px;
    background-color: #79c79b;
    height: 1.5px;
    border-radius: 10px;
}

.titles2::before {
    position: absolute;
    right: 0;
    bottom: -8px;
    background-color: #79c79b;
    width: 22px;
    height: 1.5px;
    content: '';
    border-radius: 10px;
}

.titles2 {
    position: relative;
    padding-bottom: 9px !important;
    margin-bottom: 10px !important;
    display: inline-block;
}

.foocont path {
    fill: #79c79b
}

footer {
    font-size: 0.9rem;
}

.titles3, .titles3 h1, #reply-title {
    background: linear-gradient(to right, #33a665, #4c4cae);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes aniFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.aniFloat {
    animation: aniFloat 2.5s ease-in-out infinite;
}

.sideinside span {
    background-color: #f7f9fb;
    padding: 6px 10px;
    border-radius: 9px;
    font-size: 13px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.sideinside {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogsidecourses {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#commentform #submit {
    background-color: #79c79b;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
}

#comments {
    max-width: 1140px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

#comments textarea {
    border-color: #00000017;
    border-radius: 10px;
}

.sideinside a {
    display: block;
    font-size: 13px;
    color: #2a2970 !important;
    margin-bottom: 4px;
}

.blogsidebut {
    padding: 3px 10px;
    background-color: #2a2970;
    margin-bottom: 30px;
    display: inline-block;
    color: #fff !important;
    border-radius: 5px;
    text-align: center;
}

.thebox {
    box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
    border-radius: 24px !important;
}

.elementor-post-navigation .post-navigation__prev--label, .elementor-post-navigation .post-navigation__next--label {
    color: #7b7b7b !important;
    font-size: 12px !important;
}

.post-navigation__prev--title, .post-navigation__next--title {
    font-weight: bold !important;
    font-size: 13px !important;
}

.catdesc {
    display: flex;
    align-items: center;
}

.catdesc > div:first-child {
    width: 75%;
}

.catdesc .thearchivepic {
    width: 25%;
}

.thearchivepic img {
    width: 170px;
    margin: auto;
    display: block;
}

footer {
    background: url('https://pivotecoacademy.com/wp-content/uploads/2025/02/footer-bg-shapes.svg') no-repeat center center, linear-gradient(120deg, #161635 78%, #514A65 100%);
}

.gform-theme--framework .gf_progressbar .percentbar_blue, #gform_next_button_1_10 {
    background-color: #79c79b;
}

.gform-theme--framework .gf_progressbar .percentbar_blue {
    background-color: #79c79b !important;
}

span.gfield_required {
    display: none;
}

#gform_wrapper_1 input, #gform_wrapper_1 select {
    border-color: #00000024 !important;
}

.gf_progressbar_title {
    color: #2a2970 !important;
}

#gform_wrapper_1 input, #gform_wrapper_1 select {
    border-color: none;
}

.border2 {
    padding: 35px 65px 40px 50px;
    background-color: #FFFFFF;
    border-radius: 15px 15px 15px 15px !important;
    box-shadow: 0px 30px 70px 0px rgba(26.999999999999986, 31.999999999999957, 74.99999999999999, 0.07);
}

.testimo1 {
    border: 1px solid #f0ecec !important;
    border-radius: 8px !important;
    background-color: #fff;
}

#gform_fields_2 input, #gform_fields_2 textarea {
    background-color: #f6f7f8;
    border-color: #00000029;
    box-shadow: none;
}

#gform_submit_button_2 {
    background-color: #79c79b;
}

#field_2_3 .charleft.ginput_counter.gfield_description {
    display: none;
}

.students-hours {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    box-shadow: 0px 0px 55px 0px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    border-radius: 14px;
}

.students-hours div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.students-hours div:nth-child(1) {
    border-left: 1px solid;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    border-color: #00000017;
}

.students-hours div:nth-child(2) {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    border-color: #00000017;
}

.students-hours div:nth-child(3) {
    border-left: 1px solid #00000017;
    padding-top: 10px;

}

.students-hours div:nth-child(4) {
    padding-top: 10px;
}

.students-hours p {
    font-weight: bold;
    font-size: 1rem;
}

.students-hours span {
    font-size: 0.8rem !important;
    font-weight: 100 !important;
}

.pivconsult {
    border-radius: 5px;
    box-shadow: 0 20px 55px -4px rgb(0 0 0 / 10%);
    background-color: #ffffff75;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

/* General my account page style */
.woocommerce-account {
    color: #2a2970 !important;
}

/* Account navigation menu */
.woocommerce-MyAccount-navigation {
    background: #2a2970 !important;
    padding: 15px !important;
    border-radius: 12px !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 65% !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 15px !important;
}

.woocommerce-MyAccount-navigation-link a {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 10px 15px !important;
    display: block !important;
    border-radius: 8px !important;
    transition: background 0.3s !important;
}

/* Hover and active link styles */
.woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation-link.is-active a {
    background: #79c79b !important;
    color: #2a2970 !important;
}

/* Account content area */
.woocommerce-MyAccount-content {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
    margin-left: 30px !important;
}

/* Form fields */
.woocommerce form input.input-text,
.woocommerce form textarea {
    border: 2px solid #2a2970 !important;
    border-radius: 8px !important;
    padding: 10px !important;
}

/* Buttons */
.woocommerce button.button,
.woocommerce a.button {
    background-color: #79c79b !important;
    color: #2a2970 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    transition: background-color 0.3s !important;
    border: none !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background-color: #2a2970 !important;
    color: #ffffff !important;
}

/* Order Table */
.woocommerce-orders-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 20px !important;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    border: 1px solid #ddd !important;
    padding: 12px !important;
    text-align: center !important;
}

.woocommerce-orders-table th {
    background-color: #2a2970 !important;
    color: #ffffff !important;
}

.woocommerce-orders-table td {
    background-color: #f9f9f9 !important;
}

.page-header > h1 {
    margin-top: 50px !important;
    font-size: 1rem !important;
    border-bottom: 1px solid #79c79b38 !important;
    padding-bottom: 20px !important;
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--orders, .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--edit-address, .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--edit-account {
    display: none;
}

.woocommerce-MyAccount-content p:last-child {
    display: none;
}

.titles5 {
    position: relative;
    padding-right: 15px;
}

.titles5::after {
    position: absolute;
    right: 0;
    top: 2px;
    height: 10px;
    width: 10px;
    display: block;
    background-color: #79c79b;
    content: '';
    border-radius: 2px;
}

.titles6 {
    position: relative;
    padding-right: 15px;
}

.titles6::after {
    position: absolute;
    right: 0;
    top: 8px;
    height: 10px;
    width: 10px;
    display: block;
    background-color: #79c79b;
    content: '';
    border-radius: 2px;
}

.wct-ticket {
    margin-top: 40px;
}

#ticket_message {
    border: 1px solid #666 !important;
    border-radius: 3px !important;
}

.subticket {
    background-color: #79c79b !important;
    margin-bottom: 30px;
    margin-top: 10px;
    border: none !important;
    color: #000 !important;
}

.wct-ticket h4 {
    color: #2a296f;
}

.students-hours2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 40px 20px;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 20px #0000001c;
    margin-bottom: 40px;
    border-bottom: 2px solid #79c79b;
}

.students-hours2 div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.students-hours2 div span:first-of-type {
    display: block;
    font-size: 1rem;
    font-weight: bold;
}

.students-hours2 div span:last-of-type {
    display: block;
    font-size: 0.8rem;
}

.students-hours2 img {
    width: 30px;
    margin-bottom: 20px;
}

.e-font-icon-svg.e-fas-plus > path {
    fill: #79c79b;
}

.e-n-accordion-item-title {
    background-color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0px 0px 10px #00000029;
    margin-bottom: 7px;
}

.e-n-accordion div {
    border: none;
}

.digits-form_tab-item.digits_login_use_phone.digits-tab_active {
    display: none;
}

.pivmenuico {
    width: 20px;
    margin-left: 7px;
}

.restrict-message {
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    border: 3px solid #79c79b;
    background-color: #292870;
    color: #fff !important;
    font-weight: bold;
}

.elementor-video {
    border-radius: 13px;
}

.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-1325 ul li a {
    font-size: 13px !important;
    font-weight: bold;
    margin-left: 20px;
}

.digits-login-modal span {
    background-color: #7dc19f;
    color: #292870;
    padding: 7px 26px 7px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/05/user-icon.png');
    background-position: 90px center;
    background-size: 17px;
    background-repeat: no-repeat;
    transition: 0.3s;
}

.digits-login-modal span:hover {
    opacity: 0.6;
}

#digits_protected * {
    font-family: pivot !important;
}

.digits-form_button.digits-form_submit.digits-form_submit-btn {
    background-color: #292870;
}

.digits-form_page {
    background-color: #ffffff29;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.digits-form_container {
    padding: 40px 20px !important;
    border-radius: 20px;
}

.dig_login_cancel {
    transform: scale(1.5);
    height: 31px;
    top: 31px;
}

/*.pivotestimonials {*/
/*    display: flex;*/
/*}*/

/*.pivotestimonialsinner p {*/
/*    font-size: 1rem;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.pivotestimonials {*/
/*    padding: 10px;*/
/*    margin-bottom: 30px;*/
/*    border-bottom: 1px solid #e6e6e6;*/
/*    padding-bottom: 40px;*/
/*    box-shadow: 0px 0px 10px #79c79b14;*/
/*    border-radius: 15px;*/
/*}*/

/*.pivotestimonialsinner {*/
/*    margin-right: 20px;*/
/*}*/

/*.pivotestimonialsinner > div {*/
/*    display: flex;*/
/*    flex-direction: row-reverse;*/
/*    justify-content: flex-end;*/
/*}*/

.ptstars {
    margin-right: 30px;
    color: #ff6c00;
}

/*.pivotestimonialsinner h4 {*/
/*    font-size: 0.8rem !important;*/
/*    margin: 0px;*/
/*    margin-bottom: 3px;*/
/*}*/

/*.pivotestimonialsinner span {*/
/*    color: gray;*/
/*    font-size: 0.8rem;*/
/*}*/

/*.pivotestimonialsimg img {*/
/*    width: 50px;*/
/*    border-radius: 100%;*/
/*}*/

/*.pivotestimonialsinner {*/
/*    margin-right: 20px;*/
/*    width: 100%;*/
/*}*/

/*.pivotestimonialsimg {*/
/*    width: 10%;*/
/*}*/

.woocommerce-MyAccount-navigation-link a::after {
    width: 32px;
    height: 33px;
    content: '';
    top: 5px;
    right: -40px;
    display: inline-block;
    position: absolute;
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: center center;
    filter: brightness(100);
}

.woocommerce-MyAccount-navigation-link.is-active a::after {
    filter: none;
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--dashboard a::after {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/09/dashboard.png');
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--downloads a:after {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/09/download.png');
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--tickets a:after {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/09/chat.png');
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--eco_consulting a:after {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/09/invest.png');
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a:after {
    background-image: url('https://pivotecoacademy.com/wp-content/uploads/2025/09/logout.png');
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 15px !important;
    position: relative;
    margin-right: 40px;
}

.woocommerce-MyAccount-navigation li a br {
    display: none;
}

.button.wc-forward {
    display: none !important;
}

.e-n-accordion > details > :last-child {
    background-color: transparent !important;
}

#ays-quiz-container-1 input#ays-submit, #ays-quiz-container-1 #ays_finish_quiz_1 .action-button, div#ays-quiz-container-1 #ays_finish_quiz_1 .action-button.ays_restart_button, #ays-quiz-container-1 + .ays-quiz-category-selective-main-container .ays-quiz-category-selective-restart-bttn, #ays-quiz-container-1 .ays-quiz-category-selective-submit-bttn {
    background-color: #79c79b !important;
}

#ays-quiz-container-1 #ays_finish_quiz_1 .ays-field input ~ label[for^="ays-answer-"] {
    padding: 6px !important;
    direction: rtl;
    text-align: right;
    margin-right: 0px;
    border: none !important;
    font-size: 14px !important;
    font-weight: normal;
}

.ays-field input + label::before {
    margin-right: 0px !important;
    margin-left: 5px !important;
}


@media (max-width: 767px) {
    #mySidenav {
        display: none;
    }

    .catdesc {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }

    .catdesc > div:first-child {
        width: 100%;
        margin-top: 20px;
    }

    .catdesc .thearchivepic {
        width: 45%;
    }

    .students-hours div:nth-child(1) {
        border: none;
    }

    .students-hours div:nth-child(2) {
        border: none;
    }

    .students-hours div:nth-child(3) {
        border: none;
    }

    .students-hours div:nth-child(4) {
        border: none;
    }

    .students-hours2 {
        flex-wrap: wrap;
    }

    .students-hours2 div {
        width: 100%;
        margin-bottom: 20px;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
        margin-top: 15px;
    }
}

