/**
 *
 * Project Name: Meta Morphosis Now ;
 * Author: Shadhin Ahmed;
 * Version: 1.0.1;
 * Company: PixCafe Network;
 * Descriptions: Metamorphosisnow is an html5 responsive template;
 *
 *
 *
 **************
 * CSS TABLE OF CONTENTS
 **************
 *
 * 01. Default css
 * 02. Variables
 *
 *
 *
 *
 */
:root {
    --bg: #000000;
    --clr-1: #00c2ff;
    --clr-2: #33ff8c;
    --clr-3: #ffc640;
    --clr-4: #e54cff;

    --blur: 1rem;
    --fs: clamp(3rem, 8vw, 7rem);
    --ls: clamp(-1.75px, -0.25vw, -3.5px);

    --primary-color: #272f50;
    --secondary-color: #E9F2DF;
    --accent-secondary-color: #CE9E6E33;
    --bg-color: #FFFDFA;
    --text-color: #7D898D;
    --accent-color: #CE9E6E;
    --white-color: #FFFFFF;
    --divider-color: #26505E1A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Sora", sans-serif;
}

/* 01. Default css */
body {
    font-family: "Sora", sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    width: 100%;
    pointer-events: none;
}

h2 {
    font-family: "Avenir LT Std";
    line-height: 1;
    font-size: 30px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 15px;
}

.navbar-toggler {
    border-color: #FBC005;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

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

.slick-prev:before {
    content: "\f104" !important;
    font-family: "FontAwesome";
}

.slick-next:before {
    content: "\f105" !important;
    font-family: "FontAwesome";
}

/* 02. Variables */
:root {
    --primary: #273051;
    --secondary: #f8c600;
    --third: #b6bd39;
    --forth: #ff4871;
    --purple: #ac39c4;
    --blue: #004af8;
    --white: #ffffff;
    --avenir: "Avenir LT Std";
    --roboto: 'Roboto';
}


.primary_btn_container {
    position: relative;
    width: fit-content;
    height: 43px;
    overflow: hidden;
    font-size: 15px;
    line-height: 35px;
    border: 1px solid transparent;
    font-weight: 300;
    transition: 0.5s;
    letter-spacing: 1px;
    border-radius: 8px;
    text-transform: uppercase;
}

.primary_btn_container:hover {
    border-color: var(--primary);
}

.primary_btn_container a {
    width: 101%;
    height: 100%;
    font-weight: 300;
    font-size: 15px;
    line-height: 42px;
    font-weight: bold;
    background: var(--primary);
    -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
    mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    border: none;
    color: #fff;
    cursor: pointer;
    -webkit-animation: ani2 0.7s steps(22) forwards;
    animation: ani2 0.7s steps(22) forwards;
    padding: 0px 25px;
    display: inline-block;
}

.primary_btn_container a:hover {
    -webkit-animation: ani 0.7s steps(22) forwards;
    animation: ani 0.7s steps(22) forwards;
}

.mas {
    position: absolute;
    color: var(--primary);
    text-align: center;
    width: 101%;
    font-weight: 300;
    position: absolute;
    overflow: hidden;
    font-weight: bold;
    font-size: 15px;
    line-height: 40px;
}

.primary_btn_container.secondary .mas {
    color: var(--secondary);
}

.primary_btn_container.secondary a {
    background: var(--secondary);
}

.primary_btn_container.secondary:hover {
    border-color: var(--secondary);
}

.primary_btn_container.btn-sm {
    height: 30px;
}

.primary_btn_container.btn-sm a {
    font-size: 14px;
    line-height: 35px;
}

@-webkit-keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@-webkit-keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

@keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

/* 00. Section title */

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    text-align: center;
    font-size: 35px !important;
    font-weight: 600;
    text-transform: capitalize;
}

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

.section-padding-50 {
    padding: 50px 0;
}

.padding-bottom {
    padding-bottom: 100px;
}

.mt_5 {
    margin-top: 5rem;
}

/* 03. Header */

/* 03.1 Header top area */

.header-top-area {
    padding: 15px 0;
    color: #ffffff;
    background: #273051;
}

.header-top-area .row {
    align-items: center;
}

.header-topbar-info span {
    font-size: 14px;
    margin-right: 8px;
    display: inline-block;
}

.header-topbar-info span i {
    margin-right: 4px;
}

.header-topbar-right {
    display: flex;
    justify-content: space-between;
}

.header-socials li {
    display: inline-block;
    margin-right: 5px;
}

.header-socials ul li a {
    color: #ffffff;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid transparent;
}

a.twitter {
    background: #55acef;
}

a.facebook {
    background: #5472d2;
}

a.youtube {
    background: #e52b25;
}

a.google-plus {
    background: #dd4b3a;
}

.header-socials ul li a:hover {
    background: #000000;
}

.header-btns {
    text-align: right;
}

.header-btns a {
    color: #fff;
    display: inline-block;
    padding: 10px 60px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.header-btns .enroll {
    background: #b6bd39;
}

.header-btns .login {
    color: #f8c600;
    background: transparent;
}

.header-btns a:hover {
    color: #ffffff;
    background: #000000;
}

/* 03.2 Header middle area */

/* New header start */
/* header css */
.menu_wrapper {
    background-color: var(--primary);
    padding: 0;
}

.menu_wrapper .navbar-brand img {
    width: 170px;
}

.navbar-nav .nav-item {
    /* margin: 0 12px; */
    /* border-right: 1px solid #273051; */
}

.navbar-nav .nav-item:last-child {
    border-right: unset;
}

.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
}

.navbar-nav .nav-item:nth-last-child(2) a,
.navbar-nav .nav-item:last-child a {
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 0;
}

/* .navbar-nav .nav-link{
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #3f3b3f;
} */
.nav-item .nav-link:hover,
.nav-item .nav-link.active,
.nav-item .current-menu-item .nav-link {
    color: #f8c600 !important;
}

/* .navbar-nav .nav-link:hover{
    color: #0000ff;
} */
.nav-item .nav-link {
    padding: 0px 5px !important;
    font-size: 14px;
    text-transform: capitalize;
    color: #273051;
    color: #fff;
}

.dropdown-menu .dropdown-item {
    padding: 5px 15px;
    font-size: 90%;
}

ul.dropdown-menu.shadow.show {
    margin-top: 10px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
    color: #666;
}

.dropdown-mega .dropdown-menu {
    width: 100%;
}

.dropdown-mega h5 {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    margin: 0;
}

.dropdown-mega .list-group-item {
    font-size: 14px;
    color: #3f3b3f;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 5px 10px;
}

.dropdown-mega .list-group-item:hover,
.dropdown-mega .list-group-item.current,
a.dropdown-item.current {
    color: #f8c600 !important;
}

/* New header end */

.title {
    font-weight: 800;
    letter-spacing: var(--ls);
    position: relative;
    overflow: hidden;
    margin: 0;
    background: black;
    /* background-clip: text; */
    font-size: 18px;
}

.subtitle {}

.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    mix-blend-mode: darken;
    pointer-events: none;
}

.aurora__item {
    overflow: hidden;
    position: absolute;
    width: 60vw;
    height: 60vw;
    background-color: var(--clr-1);
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    filter: blur(var(--blur));
    mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
    top: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
    background-color: var(--clr-3);
    right: 0;
    top: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
    background-color: var(--clr-2);
    left: 0;
    bottom: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
    background-color: var(--clr-4);
    right: 0;
    bottom: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0% {
        top: 0;
        right: 0;
    }

    50% {
        top: 100%;
        right: 75%;
    }

    75% {
        top: 100%;
        right: 25%;
    }

    100% {
        top: 0;
        right: 0;
    }
}

@keyframes aurora-2 {
    0% {
        top: -50%;
        left: 0%;
    }

    60% {
        top: 100%;
        left: 75%;
    }

    85% {
        top: 100%;
        left: 25%;
    }

    100% {
        top: -50%;
        left: 0%;
    }
}

@keyframes aurora-3 {
    0% {
        bottom: 0;
        left: 0;
    }

    40% {
        bottom: 100%;
        left: 75%;
    }

    65% {
        bottom: 40%;
        left: 50%;
    }

    100% {
        bottom: 0;
        left: 0;
    }
}

@keyframes aurora-4 {
    0% {
        bottom: -50%;
        right: 0;
    }

    50% {
        bottom: 0%;
        right: 40%;
    }

    90% {
        bottom: 50%;
        right: 25%;
    }

    100% {
        bottom: -50%;
        right: 0;
    }
}

@keyframes aurora-border {
    0% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }

    25% {
        border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
    }

    50% {
        border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
    }

    75% {
        border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
    }

    100% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }
}



/* 03.3 Header bottom area */

.header-bottom-area {
    border-top: 1px solid #eee;
    padding: 15px 0;
    /* border-bottom: 1px solid #ddd; */
    box-shadow: 0 5px 3px #eee;
    background: var(--primary);
    color: #fff;
    border-bottom: 30px solid var(--secondary);
}

.header-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header-partners span {
    /* color: #fff; */
    font-size: 15px;
    margin-right: 20px;
}

.header-partners img {
    width: 130px;
}

/* 00. Agency hero area */

.agency-hero-area {
    background: #8ab3c5;
}

.hero-area-contents {
    margin-top: 30px;
    margin-bottom: 150px;
}

.hero-area-contents a.video-play-btn {
    border-radius: 50%;
    border: 3px solid;
    padding: 50px 60px;
    display: inline-block;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.hero-area-contents a.video-play-btn i {
    display: block;
    font-size: 80px;
}

.hero-area-contents .video-play-btn i:hover,
a.video-play-btn:hover,
.hero-area-contents .video-play-btn i:focus,
.video-play-btn:focus {
    color: #f8c600;
}

.hero-area-contents h3 {
    color: #fff;
    margin: 0;
    font-family: "Avenir LT Std";
    font-size: 40px;
}

.hero-area-contents h2 {
    color: #fff;
    margin: 0;
    font-family: "Avenir LT Std";
    font-size: 70px;
}

.hero-area-contents p {
    color: #fff;
    margin: 0;
    font-family: "Avenir LT Std";
    font-size: 17px;
    margin: 0;
    line-height: 1.2;
}

.hero-area-contents .subscription-btns {
    margin-top: 30px;
}

.subscription-btns a {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    border-radius: 5px;
}

.subscription-btns a.subscription-free-trial {
    background: #fbc005;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 8px;
}

.subscription-btns a:hover {
    background: #000;
    color: #fff;
}

.subscription-btns a.subscription-buy-now {
    background: #000000;
    padding-left: 60px;
    padding-right: 60px;
}

/* 00. Agency intro area */

.hero-area-contents .subscription-btns {
    margin-top: 30px;
}

.hero-area-contents .subscription-btns a {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    border-radius: 5px;
}

.subscription-btns a.subscription-free-trial {
    background: #fbc005;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 8px;
}

.subscription-btns a:hover {
    background: #000;
    color: #fff;
}

.subscription-btns a.subscription-buy-now {
    background: #000000;
    padding-left: 60px;
    padding-right: 60px;
    color: #fbc005;
    ;
}

.agency-intro {
    position: relative;
}

.agency-intro-box {
    box-shadow: 0 2px 5px #777;
    background: #ffffff;
    position: absolute;
    width: 90%;
    top: -40px;
    left: 5%;
    z-index: 9;
}

.agency-intro-items {
    display: flex;
    justify-content: space-around;
}

.agency-box-single-item {
    width: 100%;
    text-align: center;
    padding: 25px 0;
}

.agency-box-single-item p {
    margin: 0;
    font-size: 15px;
    color: #fff;
    text-transform: capitalize;
}

.agency-box-single-item a {
    color: #fff;
    font-size: 12px;
}

.agency-intro-text {
    text-align: center;
    padding: 20px 0;
}

.agency-intro-text h6 {
    font-size: 25px;
}

.agency-intro-text p {
    font-size: 14px;
    display: inline-block;
    padding: 0px 35px;
    margin: 0;
}

.agency-intro-text a {
    font-size: 12px;
    color: #fabf01;
}

.agency-author-intro {
    background: #e7e7e5;
    padding: 50px;
    position: relative;
    margin-top: -45px;
    padding-top: 200px;
}

.agency-author-intro h2 {
    color: #273051;
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.agency-col-2 {
    display: flex;
}

.agency-col-2 h4 {
    font-family: "Javacom";
}

.agency-col-2 .col-6 {
    padding-left: 15px;
    padding-right: 15px;
}

.agency-col-2 p {
    font-size: 14px;
    line-height: 1.7;
}

.agency-col-2 p.dropcap::first-letter {
    color: #fbc005;
    float: left;
    font-size: 55px;
    line-height: 60px;
    padding-top: 10px;
    padding-right: 12px;
    padding-left: 5px;
    padding-bottom: 10px;
}

/* 00. How It Works Area */

section.agency-how-it-works-area {
    padding: 50px 0;
}

.meta_widget_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.single_widget_content {
    padding: 30px 10px;
    box-shadow: 0 0px 10px 3px #b5acac;
    border-radius: 10px;
    background-color: #fff;
}

.widget_icon {
    text-align: center;
    width: 130px;
    height: 130px;
    line-height: 140px;
    background-color: #fbc005;
    margin: auto;
    border-radius: 50%;
    color: #fff;
    font-size: 70px;
    font-family: "Satisfaction";
}

.heading_title {
    height: 100px;
}

.heading_title h3 {
    font-size: 28px;
    text-align: center;
    padding: 20px 50px;
    color: #FBC005;
    font-family: "Avenir LT Std";
}

.single_widget_content p {
    font-size: 15px;
    padding: 0 7px;
}

/* 00. Agency what includes area */

section.agency-what-includes-area {
    padding: 50px 0;
}

section.agency-what-includes-area nav {
    margin-bottom: 35px;
}

section.agency-what-includes-area div#nav-tab {
    display: block;
    border: none;
    width: 100%;
}

section.agency-what-includes-area div#nav-tab button {
    display: inline-block;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #fbc000;
    margin-right: 10px;
    padding: 10px 35px;
}

section.agency-what-includes-area div#nav-tab button.active {
    background: #273051;
}

div#nav-tabContent {}

.overview-tab-content {}

div#nav-tabContent h2 {
    font-size: 29px;
    font-weight: 500;
    margin-bottom: 40px;
}

.overview-tab-content .point {
    display: flex;
    margin-bottom: 20px;
}

.overview-tab-content .point .img-block {
    width: 65px;
    height: 65px;
    background: #273051;
    border-radius: 50%;
    margin-right: 20px;
}

.overview-tab-content .point .img-block img {}

.overview-tab-content .point .content {}

.overview-tab-content .point .content h3 {
    color: #fbc000;
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.overview-tab-content .point .content p {
    font-size: 14px;
}

.slick-slide {
    height: unset !important;
}

.include-big-image button {
    width: 40px;
    height: 50px;
    background: #f7c41e;
}

.include-big-image button.slick-prev {
    left: 0;
}

.include-big-image button.slick-next {
    right: 0;
}

.include-big-image .slick-prev:hover,
.include-big-image .slick-prev:focus,
.include-big-image .slick-next:hover,
.include-big-image .slick-next:focus {
    color: #fff;
    outline: none;
    background: #fbc000;
}

/* 00. Agency simple classes area */

/* Phosis sample classes start */
/* .phosis_sample_classes .container {
    max-width: 95%;
    margin: auto;
  } */
.tab-content {
    margin-top: 50px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: #fff !important;
}

/* .nav-link {
    width: 100% !important;
    color:#ffffff !important;
  } */

.phosis_all_class_tabs .nav-tabs button:nth-child(3n),
.phosis_all_class_tabs .nav-tabs button:nth-child(3n).active::before {
    background: #2d365c !important;
}

.phosis_all_class_tabs .nav-tabs button:nth-child(2n+1),
.phosis_all_class_tabs .nav-tabs button:nth-child(2n+1).active::before {
    background: #b5bd39 !important;
}

.phosis_all_class_tabs .nav-tabs button:nth-child(3n+1),
.phosis_all_class_tabs .nav-tabs button:nth-child(3n+1).active::before {
    background: #fbbf01 !important;
}

.phosis_all_class_tabs .nav-tabs button:nth-child(3n+2),
.phosis_all_class_tabs .nav-tabs button:nth-child(3n+2).active::before {
    background: #4c4c4f !important;
}


.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    color: #ffffff;
    z-index: 1;
}


.phosis_module_lessons_area {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.single_lesson_item {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding: 25px;
    box-shadow: 0 0 5px #555;
    /* margin-bottom: 30px; */
    align-items: center;
    position: relative;
    z-index: 1;
    background: #ffffff;
}

#nav-module1 .single_lesson_item::before,
#nav-module1 .single_lesson_item::after {
    background-color: #282f50;
}

#nav-module2 .single_lesson_item::before,
#nav-module2 .single_lesson_item::after {
    background-color: #b5bd39;
}

#nav-module3 .single_lesson_item::before,
#nav-module3 .single_lesson_item::after {
    background-color: #fbbf01;
}

#nav-module4 .single_lesson_item::before,
#nav-module4 .single_lesson_item::after {
    background-color: #4c4c4f;
}

.module_name {
    flex: 2;
}

.module_content {
    flex: 3;
    margin-left: 20px;
}

.module_content h2 {
    font-size: 16px !important;
    color: #fbc005 !important;
    margin-bottom: 15px !important;
    line-height: 1.3;
}

.module_content h3 {
    font-size: 13px !important;
    color: #000000 !important;
    margin-bottom: 20px !important;
    line-height: 1.3;
}

.module_content a {
    font-size: 13px !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    display: inline-block;
}

.lesson_thumb {
    width: 120px;
    height: 120px;
    background-color: #2d365c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border: 5px solid #fff;
    box-shadow: 0 0 4px;
}

.lesson_thumb h2 {
    margin: 0 !important;
    color: #ffffff;
    font-weight: 500 !important;
    font-size: 24px !important;
}

.module_content h2 {
    font-size: 17px;
    color: #030303;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-family-sans-serif);
}

.single_lesson_item .module_content a {
    background: #2d365c;
    border: #2d365c;
    padding: 5px 15px;
    font-size: 13px;
}

/* sample new style start */

.nav-tabs {
    border-bottom: unset;
    justify-content: center;
    color: #ffffff !important;
    gap: 6px;
}

.nav-link.active {
    position: relative;
    color: #ffffff !important;
}

button#nav-module1-tab.active::before {
    background: #282f50;
}

.nav-link.active::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    transform: rotate(45deg) translate(-50%, 7px);
    left: 50%;
    bottom: -7px;
    z-index: -1;
}

button#nav-module1-tab.active::before {
    background: #282f50;
}

button#nav-module2-tab.active::before {
    background: #b5bd39;
}

button#nav-module3-tab.active::before {
    background: #fbbf01;
}

button#nav-module4-tab.active::before {
    background: #4c4c4f;
}

.agency-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.agency-section-title h2 {
    font-size: 40px;
    font-weight: 600;
}

.agency-section-title p {
    font-size: 17px;
    font-weight: 400;
}

.agency-section-title p a {
    color: #f8c600;
    font-weight: 600;
}

.agency-module-lessons-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

p.btn_visitClass a {
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 30px;
    margin: 7px 10px;
    display: inline-block;
    font-size: 14px;
}

p.btn_visitClass a:first-child {
    background-color: #f8c600;
    border: 1px solid #f8c600;
    color: #273051;
}

/* sample section end */

section.simple-classes-area {
    padding: 60px 0;
    background-color: #dde6e6e6;
}

.class-content {
    cursor: pointer;
    margin-bottom: 40px;
}

.class-background {
    height: 180px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ddd;
    border-radius: 25px 25px 0 0;
}

.class-content a h2 {
    margin: 0;
    padding: 16px;
    color: #000000;
    text-transform: uppercase;
    font-size: 24px;
    min-height: 92px;
}

.module-one.class-content h2,
.module-four.class-content h2 {
    background: #f8c600;
}

.module-two.class-content a h2 {
    color: #ffffff;
    background: #282f50;
}

.module-three.class-content a h2 {
    color: #ffffff;
    background: #b5bd39;
}

.class-meta {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: #ffffff;
    border-radius: 0 0 25px 25px;
}

.class-meta .price {
    display: flex;
}

.class-meta .date {}

.class-meta .date h4 {
    color: #b5bd39;
    font-size: 18px;
}

a .class-meta .date span {
    color: #000000;
    font-size: 14px;
}

a .class-meta .price p {
    margin: 0;
    color: #000000;
    padding-right: 15px;
    font-size: 38px;
    line-height: 38px;
}

.class-meta .price span {
    color: #000000;
}

section.simple-classes-area .modal-header {
    border: none;
    padding: 20px;
}

section.simple-classes-area .modal-body {
    padding: 20px 50px 50px 50px;
    text-align: center;
}

section.simple-classes-area .modal-dialog.modal-dialog-centered {}

section.simple-classes-area .modal-body h2 {
    font-family: "Avenir LT Std";
    line-height: 1;
    color: #fbc005;
    font-size: 30px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 15px;
}

section.simple-classes-area .modal-body p {
    font-size: 15px;
    line-height: 1.5;
}

section.simple-classes-area .popup-s-btn {}

section.simple-classes-area .popup-s-btn a {
    color: #000;
    font-size: 14px;
    display: inline-block;
    padding: 7px 20px;
    margin-right: 0;
    border: 1px solid;
    border-radius: 5px;
}

section.simple-classes-area a.free-trial-btn {
    background: #fbc005;
    border-color: #fbc005;
    color: #fff;
}

section.simple-classes-area a.buy-now-btn {
    background: #000000;
    color: #fff;
}

/* 00. Agency courses module list area */

section.agency-need-help-area {
    padding: 40px 0;
    text-align: center;
    border-top: 7px dotted;
    border-bottom: 7px dotted;
}

.agency-need-help {
    padding: 50px 0;
    background: #7b7b7b;
}

.agency-need-help h2 {
    font-size: 75px;
    margin: 0;
    color: #fff;
    font-weight: normal;
}

.agency-need-help h3 {
    font-size: 30px;
    color: #fff;
    font-weight: normal;
}

.agency-need-help a {
    background: #000;
    display: inline-block;
    padding: 20px 35px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 18px;
    margin-top: 20px;
}

.agency-need-help a:hover {
    background: #f8c600;
}

/* 00. Agency courses module list area */

section.agency-courses-module-list-area {
    color: #fff;
    background: #4c4c4e;
    padding: 100px 0;
}

section.agency-courses-module-list-area .section-title h2 {
    color: #ffc001;
}

.agency-module-list {}

.agency-single-course-item {
    display: flex;
    margin-bottom: 30px;
}

.equal-w {
    display: flex;
    margin: 20px;
}

.agency-single-course-item:nth-child(odd) .equal-w {
    margin-left: 0;
}

.agency-single-course-item:nth-child(even) .equal-w {
    margin-right: 0;
}

.agency-course-icon,
.agency-course-contnet {
    text-align: center;
}

.agency-course-icon {
    flex: 2;
    background: #273051;
    justify-content: center;
    min-height: 200px;
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agency-course-icon h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
}

.agency-course-contnet {
    color: #000;
    background: #febf00;
    padding: 20px;
    display: flex;
    flex: 4;
    text-align: left;
    align-items: center;
}

.agency-course-contnet p {
    color: #404040;
    text-align: left;
    font-size: 14px;
}

.agency-course-contnet a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    border: 1px solid #273051;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
    text-align: left;
    transition: 0.6s all;
}

.agency-course-contnet a:hover {
    color: #ffffff;
    background-color: #273051;
    border: 1px solid #273051;
}

.more-courses {
    text-align: center;
    margin-top: 40px;
}

.more-courses a {
    color: #febf00;
    border: 1px solid #febf00;
    padding: 10px 35px;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: 0.6s all;
}

.more-courses a:hover {
    color: #273051;
    border: 1px solid #273051;
    background-color: #fff;
}

/* 00. Agency sign up process area */

section.agency-pricing-area {
    padding: 60px 0;
}

/* .agency-pricing {
    display: flex;
    justify-content: space-between;
} */

.agency-pricing {
    display: flex;
    justify-content: center;
}

.agency-single-pricing-box {
    width: 25%;
    text-align: center;
    /* margin-top: 30px; */
}

.pricing-title {
    padding: 20px 0;
}

.pricing-title h2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.pricing-title p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    color: #555555;

    flex-direction: column;
}

.pricing-price.life-membership {
    flex-direction: column;
    padding: 30px 0 5px;
}

.pricing-price.life-membership .price {
    font-size: 20px;
    padding: 40px 0px;
}

.pricing-price.life-membership .period {
    width: 75%;
    /* display: block; */
    border-bottom: 2px solid #6666;
    padding: 0px 40px 15px;
}

.pricing-price .currency {
    font-size: 25px;
    font-weight: 600;
    margin-right: 2px;
    position: absolute;
    top: 18px;
    left: -15px;
}

.pricing-price .price {
    font-size: 65px;
    font-weight: 600;
    position: relative;
}

.pricing-price h2 {
    font-size: 95px;
    color: #fff;
    font-family: "Avenir LT Std";
    margin: 0;
    padding: 20px 0;
    line-height: 0.5;
    margin: 30px 0;
    margin-bottom: 9px;
}

.pricing-content p {
    color: #555;
    font-size: 14px;
}

.price-table-footer span {
    margin-top: 40px;
}

.price-table-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* height: 110px; */
    padding: 30px 0;
}

.price-table-footer a {
    background: #fbbf01;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 3px;
}

.pricing-enroll {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 75%;
    margin: auto;
    margin-bottom: 15px;
}

.pricing-enroll a {
    display: block;
    padding: 20px 0;
    color: #fff;
}

/* 00. Agency sign up process area */

section.agency-sign-up-process-area {
    padding: 60px 0;
    background: #80808030;
}

.agency-sign-up-process {
    display: flex;
    justify-content: space-between;
}

.agency-single-process {
    width: 22%;
    text-align: center;
    margin-top: 40px;
}

.process-icon {
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    font-size: 100px;
    color: #fff;
    background: #fbc005;
    font-family: "Satisfaction";
}

.agency-single-process:nth-child(2n + 2) .process-icon {
    background: #273051;
}

.process-title {
    padding: 30px 0;
}

.process-title h2 {
    color: #fbc005;
    font-size: 20px;
}

.process-content p {
    color: #404040;
    font-size: 16px;
}

/* 00. Agency faq carousel area */
.accordion-button {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.accordion-button::after {
    content: none !important;
}

.accordion-button::before {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 10px;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
    font-size: 16px;
    font-weight: 600 !important;
}

.accordion-button:not(.collapsed)::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
    font-size: 16px;
    font-weight: 600 !important;
}

.accordion-button:focus {
    box-shadow: inset 0 -1px 0 #ddd;
}

section.agency-faq-carousel-area {
    padding: 100px 0;
}

.section-title p {
    font-size: 18px;
    color: #fbc005;
    font-weight: 600;
}

.agency-faq-carousel {
    padding: 0 80px;
}

.agency-single-faq-question {
    padding-right: 60px;
}

.agency-single-faq-question h2 {
    font-size: 20px;
    color: #273051;
    font-weight: 400;
    margin-bottom: 20px;
}

.agency-single-faq-question p {
    color: #404040;
    font-size: 15px;
    line-height: 2.5;
}

.accordion-button:not(.collapsed) {
    color: #fbc005 !important;
    background-color: #fff !important;
}

/* 00. Agency mentor qoute area */

section.agency-mentor-qoute-area {
    padding: 20px 0 60px 0;
}

.agency-single-mentor-qoute {
    border: 1px solid #ddd;
    text-align: center;
}

.qoute-background {
    height: 110px;
}

img.mentor-thumb {
    width: 80px;
    height: 80px;
    border: 5px solid #fff;
    border-radius: 50%;
    margin-top: -35px;
}

.agency-single-mentor-qoute h2 {
    font-size: 18px;
    font-weight: 600;
    color: #b6bd39;
    margin-top: 35px;
}

.agency-single-mentor-qoute h4 {
    color: #273051;
    font-size: 20px;
    font-weight: 600;
}

.agency-single-mentor-qoute h5 {
    padding: 10px;
    color: #afafaf;
    font-size: 16px;
    margin-bottom: 10px;
}

.access-mentor-posts {
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.access-mentor-posts a {
    padding: 10px;
    color: #b6bd39;
}

.access-mentor-posts a.mentor-view-link {
    color: #ffc003;
    font-weight: 600;
}

.access-mentor-posts:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ddd;
    top: 0;
    left: 50%;
}

.subscription-btns {
    text-align: center;
    margin-top: 40px;
}

.subscription-btns a {
    display: inline-block;
    color: #000000;
    margin: 0 8px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.subscription-btns a.subscription-free-trial {
    background: #febf00;
    padding: 10px 30px;
}

.subscription-btns a.subscription-buy-now {
    padding: 10px 45px;
    border: 1px solid #273051;
}

/* 00. Footer */

footer {
    padding: 10px 0;
    background: #273051;
}

footer .copyright span {
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
}

/* footer .copyright span::selection,
footer .copyright a::selection
{
    background-color: #0921dc;
} */

footer .copyright span a {
    color: #e44c37;
}

/* Single Lesson Tabs style */
.lesson_module_title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lesson_module_title .module_name {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single_content_wrapper {
    padding: 0px 20px;
}

.lesson_module_title .module_name .lesson_thumb {
    width: 150px;
    height: 150px;
}

.lesson_module_title,
.singleLesson_module_content {
    height: 250px;
}

.singleLesson_module_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lesson_list {
    background: #2d365b;
    min-height: 70vh;
    align-items: flex-start;
}

.lesson_list ul {
    width: 100%;
}

.lesson_list ul li {
    border-bottom: 1px solid #ffffff57;
}

.lesson_list ul li a {
    color: #ffffff;
    display: block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 13px;
}

.lesson_list ul li.active,
.lesson_list ul li:hover {
    background: #f6cc00 !important;
    position: relative;
    border-color: #f6cc00;
}

.lesson_list ul li.active a,
.lesson_list ul li:hover a {
    color: #171616;
}

.lesson_list ul li.active::after {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    background: #f6cc00;
    top: 50%;
    right: -15px;
    transform: rotate(45deg);
    margin-top: -15px;
}

/*
* document style
*/
.lesson_documents {
    border: 3px solid #f6cc00;
    padding: 20px;
    margin-top: 50px;
}

.lesson_documents h2 {
    border-bottom: 2px solid #f6cc00;
    font-weight: 700;
    padding-bottom: 10px;
}

.lesson_documents ul li {
    display: flex;
    justify-content: space-between;
    padding: 15px 8px;
    font-size: 16px;
}

.lesson_documents ul li:nth-child(2n + 2) {
    background-color: #dddddd;
}

.lesson_documents ul li .document_btn a {
    font-size: 14px;
    padding: 6px 12px;
    /* font-family: 'Avenir LT Std'; */
    /* font-weight: bold; */
    border: 0;
    letter-spacing: .5px;
}

.document_btn a:nth-child(1) {
    background: #f6cc00;
    padding: 8px 40px;
    border: 2px solid #2d365b;
    color: #2d365b;
}

.document_btn a:nth-child(2) {
    background: #2d365b;
    padding: 8px 40px;
    border: 2px solid #2d365b;
    color: #ffffff;
}

/* old single lesson */

.singleLesson_module_top_content {
    display: flex;
    align-items: center;
    padding: 50px 0;
    gap: 40px;
}

.singleLesson_module_title {
    flex-basis: 20%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.moduleTitle {
    width: 150px;
    height: 150px;
    border: 9px solid #ffffff;
    border-radius: 50%;
    line-height: 34px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2d365b;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.moduleTitle a {
    color: #ffffff;
    padding: 10px;
    display: block;
}

.singleLesson_module_content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2d365b;
    text-transform: capitalize;
}

.singleLesson_module_content>span {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f8c600;
}

.select_module .title {
    background-color: transparent;
}

.select_module .title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #f8c600;
    margin: 0;
}

.select_group {
    flex: 1;
}

select#skip_to_module {
    outline: none;
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 4px;
    border-color: #171616;
    color: #171616;
}

select#skip_to_module:focus,
select#skip_to_module:active {
    box-shadow: 0 0 0 !important;
}

.single_lesson_content.active {
    margin-top: 20px;
}

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

/* user dashboard */

.dashboard-pills div#v-pills-tabContent {
    width: 100%;
}

.dashboard-pills .nav-pills .nav-link,
.nav-pills .show>.nav-link {
    width: 15rem;
    text-align: left;
}

.tab-content {
    margin-top: 0px !important;
}

.nav-pills .nav-link {
    border-radius: 0.25rem 0 0 0.25rem;
}

.user_content_title {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    color: #273051;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.dashboard-header .tutor-avatar img {
    width: 150px;
    margin-right: 2rem;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 0 4px;
}

.dash-header-user-info,
.dash-header-user-info a {
    font-size: 18px;
    color: #273051
}

.button-list {
    border-right: 1px solid #ddd;
    background: #273051;
}

.dashboard-header-left {
    display: flex;
    align-items: center;
}

.dashboard-header-right {
    align-self: flex-end;
}

.overlay {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease;
}



.overlay.active {
    visibility: visible;
    opacity: .7;
}

.dashobard-sidebar-close-btn {
    position: absolute;
    right: 0;
    top: 3%;
    z-index: 99;
    display: none;
}

.dashobard-sidebar-btn {
    display: none;
}

.membership-panel {
    position: relative;
}

.card-dshboard i {
    border-radius: 50px;
    line-height: 1;
    padding: 15px;
    font-size: 2rem;
    color: #1e73be;
    background: rgba(30, 115, 190, 0.3);
    transition: all 0.3s ease-in;
    width: 4rem;
    height: 4rem;
    display: inline-block;
    margin: 1.5rem 0;
}

.card-dshboard .card-title {
    font-size: 1.5rem;
    font-weight: normal;
}

.card-dshboard .card-text {
    font-size: 0.8rem;
    margin: 1rem 0;
}


.progress-course-img img {
    width: 23rem;
    height: auto;
}

.course-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tutor-compilation-status {
    display: flex;
    justify-content: space-between;
}

.subscription-btns a.subscription-buy-now,
.subscription-btns a.subscription-free-trial {
    margin-bottom: 20px;
}



/* Single Lesson Tabs style ends */

/* -------------------------------------------------------------------------- */
/*                           Get Stat Page Css Start                          */
/* -------------------------------------------------------------------------- */
.get_started__content img {
    width: 275px;
    height: auto;
}

.get_started__content h3 {
    font-size: 25px;
    color: #060606;
    font-weight: 600;
    font-family: var(--roboto);
}


.get_started__content {
    width: 660px;
}

.form-control:focus {
    color: #333333;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.get_started__form_box h2 {
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 14px;
}

.get_started__form_box .btn:first-child:active {
    border-color: transparent;
}

.get_started__form_box {
    box-shadow: 0 1px 10px -1px rgb(0 0 0 / 60%);
    transition: .5s ease;
    width: 100%;
    max-width: 450px;
    margin: auto;
    background: #fff;
}

.get_started__form_box button:hover {
    box-shadow: 0 2px 7px -1px rgb(0 0 0 / 60%);
}

/* -------------------------------------------------------------------------- */
/*                           Get Stat Page Css end                            */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Education Page CSS                             */
/* -------------------------------------------------------------------------- */
.padding-top {
    padding-top: 100px;
}

.education__module_area {
    font-family: var(--roboto);
}

.education__module_area .feature_title h2 {
    color: #171616;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 30px;
    text-align: center;
}

.education__module_area .feature_title p {
    font-size: 15px;
}

.feature_list_title h2 {
    font-size: 30px;
    color: #FBC005;
    font-weight: 600;
    text-transform: uppercase;
}

.feature_list_single_items .item_connector {
    display: block;
    position: absolute;
    width: 0;
    margin: 0 auto;
    z-index: 1;
    height: 100%;
    top: 2em;
    left: 0;
    border-style: solid;
    border-color: #272F50;
    border-width: 1px;
    right: calc(100% - 51px);
    border-right: none !important;
}

.feature_list_single_items ul li:last-child .item_connector {
    display: none;
}

.feature_icon_box {
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    z-index: 2;
    text-align: center;
    background: #37378e;
}

.feature_icon_box span i {
    font-size: 18px;
    color: #ffffff;
}

.feature_list_content {
    margin-left: 30px;
}

.feature_list_content h5 {
    font-size: 17px;
    margin-top: -2px;
    margin-bottom: 12px;
    color: #414247;
    font-weight: normal;
}

.feature_list_content p {
    padding: 0;
    margin: 0;
    color: #171616;
    font-size: 14px;
    line-height: 1.5em;
}

/* Program CSS */
.education__program_area {
    padding-bottom: 100px;
}

.program_items_content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: var(--roboto);
    padding-bottom: 30px;
}

.program_video_box {
    position: relative;
}

.program_video_box iframe {
    width: 100%;
    padding: 20px;
}

.program_video_box span {
    background: #bfc42b;
    width: 65px;
    height: 105px;
    display: block;
    text-align: center;
    line-height: 105px;
    position: absolute;
    top: -30px;
    right: 71px;
}

/* -------------------------------------------------------------------------- */
/*                           Education Page CSS End                           */
/* -------------------------------------------------------------------------- */

/* Profile */

.user-profile {}

.user-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.user-image .image {
    display: flex;
    align-items: center;
}

.user-image .image img {
    width: 125px;
    margin-right: 12px;
    border-radius: 50%;
}

.user-image .image h3 {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.user-profile .table th {
    font-weight: 500;
}

.user-edit-form {
    margin-top: 50px;
}

.user-edit-form label {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.user-e-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.form-btns {
    text-align: right;
}

button.update {}

button.cancle {
    border: 1px solid #ddd;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}






.progress-courses {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.progress-courses-heading {
    margin: 3rem 0 0;
}

.progress-course-title {
    margin: 1rem 0 2rem 0;
    font-size: 1.6rem;
}

.progress-course-complete p {
    font-size: 1rem;
}

.progress-course-img {
    overflow: hidden;
    text-align: center;
}

.progress-courses-wrapper {
    padding: 1rem;
}

.btn-start-learning {
    margin: 40px 35px 10px 35px;
}

.btn-complete-course {
    margin: 10px 35px 15px 35px;
}

.course-enroll-date {
    text-align: center;
    font-size: 0.8rem;
    margin: 1.5rem 0 2rem 0;
}

.course-enroll-date i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: green;
}

.dashboard-icon {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

.button-list {
    border-right: 1px solid #ddd;
}

.dashboard-pills .nav-link {
    margin: 0.3rem 0;
    color: #fff;
    transition: all 0.2s ease-in;
}

.dashboard-pills .nav-link:hover:not(.active) {
    background: rgba(30, 115, 190, 0.1);
}

.nav-pills .nav-link {
    border-radius: unset !important;
}

.nav-pills .nav-link.active {
    background-color: #f6cc00;
}

.about-course-heading,
.tutor-course-detail h4,
.couse-content h4 {
    margin: 2rem 0 1rem 0;
}


/* -------------------------------------------------------------------------- */
/*                            Our Mission CSS Start                           */
/* -------------------------------------------------------------------------- */
.our_mission_bg {
    height: 620px !important;
    background-position: 100% !important;
}

.blog_item:nth-child(even) {
    flex-direction: row-reverse;
}

.phosis__our_mission_area {
    font-family: var(--roboto);
}

.our_mission_content h2 {
    font-size: 45px;
    font-weight: 600;
}

.our_mission_content {
    z-index: 1;
}

.our_mission_content h5 {
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0 35px;
}



.blog_single_content h5 {
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--avenir);
}

.blog_single_content p {
    font-size: 15px;
}

/* -------------------------------------------------------------------------- */
/*                             Our Mission CSS End                            */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                      Board Of Director Page CSS Start                      */
/* -------------------------------------------------------------------------- */
.phosis_director_page_area {
    padding: 100px 0;
    font-family: var(--roboto);
}

.bod-hero-area {
    height: 750px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bod-hero-content {
    color: #fff;
}

.bod-hero-content h1 {
    font-size: 70px;
    font-weight: bold;
}

.bod-testimonials {
    margin-top: 50px;
}

.phosis__director_page_items {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #eee;
    background-color: #f2f2f2;
}

.phosis__director_page_items:nth-child(2n+1) {
    box-shadow: 0 0 10px #eee;
    background-color: #fff;
}

.phosis__director_page_items .director_items_card h4 {
    font-size: 25px;
    font-weight: bold;
    margin: 5px 0;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.phosis__director_page_items img {
    width: 200px;
    border-radius: 50%;
    border-style: double;
    border-width: 10px;
    border-color: #404040;
}

.phosis__director_page_items {
    padding-top: 45px;
}

.phosis__our_team_page_items {
    padding-top: 45px;
}

.team_page_btn {
    padding-top: 45px;
}

.phosis__director_page_items .director_items_card {
    padding: 10px;
}

.phosis__director_page_items .director_items_card h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.phosis__director_page_items .director_items_card h5 {
    font-size: 14px;
    font-weight: normal;
    margin: 10px 0 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.phosis__director_page_items .director_items_card p {
    font-size: 15px;
    line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/*                       Board of Director Page CSS End                       */
/* -------------------------------------------------------------------------- */

.nav-pills .nav-link {
    margin: 0 !important;
}

.card .card-body {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 1rem !important;
}

.card .card-body .card-title {
    margin: 0;
}

a.btn-tutor {
    text-align: center;
    color: #000000;
    background: #f6cc00;
    display: block;
    padding: 10px 0;
}

/* -------------------------------------------------------------------------- */
/*                              Join Our Team CSS                             */
/* -------------------------------------------------------------------------- */
.phosis__our_team_page_items h2 {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #FBC005;
    margin-bottom: 30px;
}

.phosis__our_team_page_items p {
    color: #171616;
    font-size: 16px;
    margin-top: 2rem;
}

.team_page_btn a {
    color: #000;
    font-size: 18px;
    padding: 10px 58px;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s ease;
}

.team_page_btn a:hover {
    color: #ffffff;
    border-color: transparent;
    background-color: #272F50;
}

.top_bar {
    /* font-size: 20px; */
    /* position: relative; */
    /* overflow: hidden; */
    background: black;
    color: #fff;
}

.top_bar .btn_color1 {
    font-size: 16px;
    /* background: #ff6767; */
}

/* -------------------------------------------------------------------------- */
/*                         How It Works Page CSS Start                        */
/* -------------------------------------------------------------------------- */
.phosis__howitwork_page_hero_area {
    /* background-color: #8AB3C5; */
    position: relative;
}

.section-bg {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: -1;
    background-color: #000;
    background-blend-mode: overlay;
}

.howitwork_page_hero_content {
    font-size: 25px;
    line-height: 1.2;
    padding: 100px 0;
}

.howitwork_page_hero_content .video_play_btn i {
    border: 5px solid #fff;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 30px;
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
}

.howitwork_page_hero_content .video_play_btn i:hover,
.play_btn:hover i {
    color: var(--secondary);
    border-color: var(--secondary);
}

.howitwork_page_hero_content h2 {
    font-size: 65px;
    font-weight: 500;
    margin: 23px 0;
    line-height: 1;
}

.howitwork_page_hero_content h5 {
    font-size: 33px;
    margin: 0;
    margin-top: 25px;
}

.howitwork_page_hero_content h3 {
    font-size: 41px;
}

.howitwork_page_hero_content .phosis_buttons {
    margin-bottom: 40px;
}

.phosis_buttons a {
    color: #fff;
    padding: 10px 20px;
    background: #FBC005;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease;
    margin-right: 25px;
}

.phosis_buttons a:hover {
    color: #fff;
    padding: 10px 20px;
    background: #000000;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

.play_btn {
    position: relative;
    display: block;
}

.video_play_btn.play_btn:before {
    display: none;
}

.play_btn::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    opacity: .6;
}

.play_btn span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.play_btn span.play-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play_btn i {
    color: #fff;
    font-size: 45px;
    padding: 15px 20px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    transition: .3s ease;
}


.process-content p {
    color: #171616;
    font-size: 15px;
    text-align: start;
    line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/*                           Re Entry Page CSS Start                          */
/* -------------------------------------------------------------------------- */
.our_reentry_bg {
    height: 630px !important;
    padding: 20px;
}

.reentry_btn {
    color: #000000;
    padding: 12px 30px;
    background: #FBC005;
    border-radius: 7px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: .3s ease;
}

.reentry_btn:hover {
    color: #ffffff;
    background-color: #000000;
}

section.phosis__our_mission_re_entry_blog_area {
    padding-top: 100px;
}

.re__entry_blog__section {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    padding: 100px 0;
    align-items: center;
}

.re__entry_blog_img_section,
.re__entry_blog_content {
    width: 50%;
    text-align: start;
}

.re__entry_blog_content h5 {
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
}

.entry_blog_item {
    background-color: #e6e6e5
}

.phosis_re_entry_support_area {
    padding: 100px 0;
    padding-bottom: 0;
}

.phosis_re_entry_support_area .support_title h2 {
    font-size: 30px;
    color: #273051;
    font-weight: 700;
    text-transform: uppercase;
}

.re_entry_support_img {
    min-width: 70px;
}

.re_entry_support_img img {
    width: 100%;
    height: auto;
}

.re_entry_support_single_items {
    margin: 40px 0;
}

.re_entry_support_content h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FBC005;
}

.re_entry_support_content p {
    font-size: 15px;
    color: #030303;
}

/* -------------------------------------------------------------------------- */
/*                     Success Stroy Testimonial CSS Start                    */
/* -------------------------------------------------------------------------- */
.success_story_bg {
    width: 100%;
    height: 455px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success_story_bg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.54;
}

.success_story_page_content {
    text-align: center;
    z-index: 1;
    font-family: var(--roboto);
}

.success_story_page_content h3 {
    font-size: 50px;
    font-weight: 600;
    color: #FBC005;
}

.success_story_page_content p {
    font-size: 14px;
    margin-bottom: 2rem;
}

.success_single_content h3 {
    font-size: 30px;
    color: #FBC005;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 2rem;
}

.success_btn {
    display: inline-block;
    color: #ffffff;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    background-color: #272F50;
    text-transform: uppercase;
    transition: .3s ease;
}

.success_btn:hover {
    background: #FBC005;
    color: #000000;
}

.phosis_success_stroy_blog_area {
    padding: 100px 0;
    background-color: #F8F8F8;
    font-family: var(--roboto);
}

.story_blog_single_content {
    padding: 0 30px;
    text-align: right;
}

.program-content-box .primary_btn_container {
    margin-top: 20px;
}

.story_blog_single_content .author_meta {
    margin-top: 20px;
    text-align: right !important
}

.flex-row-reverse .story_blog_single_content,
.flex-row-reverse .story_blog_single_content .author_meta {
    text-align: left;
}

.story_blog_single_content h3 {
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    color: #FBC005;
}

.story_blog_single_content p {
    font-size: 15px;
    color: #171616;
    line-height: 1.7;
}

.story_blog_img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: auto;
    border: 9px solid #FBC005;
}

.single_lesson_item .module_content a:hover {
    background-color: #fbc005;
}

/* Style 2 of Lesson items */
.style-2 .single_lesson_item {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.style-2 .single_lesson_item .module_content {
    margin: 0;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.style-2 .module_name {
    flex: 2;
    width: 100%;
}

.style-2 .lesson_thumb {
    width: 100%;
    border: none;
    border-radius: 0;
    height: 220px;
}


/* User Dashboard */

.tutor-avatar {
    background-position: center;
    height: 150px;
    width: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    border: 3px solid #f6cc01;
}

.dashboard-sidebar {
    background: #273051;
    flex: 15%
}

.dashboard-sidebar a.active {
    background: #fbc005
}

.dashboard-content {
    flex: 85%;
    padding: 50px 20px;
}

a.filepond--credits {
    display: none;
}

.spinner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000a3;
}


/*  */
.colored_box {
    border: 1px solid #343e69;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    position: relative;
    z-index: 1;
}

.colored_box.comments {
    border: 1px solid #b6bc39;
    padding: 35px 0;
    margin-bottom: 30px;
    margin-top: 30px;
}

.colored_box_icon {
    flex: 15%;
    text-align: center;
}

.colored_box_content {
    flex: 85%;
}

.colored_box_icon i {
    font-size: 50px !important;
    color: #b6bc39;
}

.colored_box::after {
    background: rgba(0, 0, 0, 0) url("/frontend/assets/img/down-arrow.png") no-repeat scroll 0 0;
    bottom: -20px;
    content: "";
    height: 22px;
    position: absolute;
    width: 25px;
    left: 10%;
}

.colored_box_content h2 {
    font-size: 25px;
    color: #b6bc39;
    margin: 0;
    line-height: 1;
    margin-bottom: 15px;
}

.colored_box_content h3 {
    font-family: 'Avenir LT Std';
    font-size: 16px;
    color: #555;
}


.my-carts span {
    width: 24px;
    height: 24px;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    right: -11px;
    top: -9px;
    line-height: 25px;
}

a.my-carts:hover {
    background: red !important;
}

.preloader {
    position: fixed;
    background: #e9ecef;
    width: 100%;
    height: 100vh;
    z-index: 99;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ------------------------------ pricing table ----------------------------- */
:root {
    --main-color: #fabf01;
}


.pricingTable .price-value span small {
    font-size: 50%;
    display: inline-block;
}

.pricing_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: auto;
}

.pricingTable {
    background: var(--main-color);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0 0 40px;
    border-radius: 50px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 30%);
    border: 1px solid var(--main-color);
    position: relative;
    z-index: 1;
}

.pricingTable:before {
    content: "";
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: -1;
}

.pricingTable .pricingTable-header {
    color: #fff;
    background: var(--main-color);
    padding: 20px 10px;
    border-radius: 50px 50px 0 0;
    text-transform: capitalize;
    position: relative;
    margin: 0 auto 40px;
}

.pricingTable .pricingTable-header:after {
    content: "";
    background: var(--main-color);
    width: 35px;
    height: 25px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: -25px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.pricingTable .title {
    font-size: 40px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    background: transparent;
}

.pricingTable .pricing-content {
    text-align: left;
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.pricingTable .pricing-content li {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: .5px;
    padding: 0 0 0 28px;
    margin: 0 0 7px;
    position: relative;
}

.pricingTable .pricing-content li:last-child {
    margin: 0;
}

.pricingTable .pricing-content li:before {
    content: "\f00c";
    color: var(--main-color);
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: 0;
}

.pricingTable .pricing-content li.disable:before {
    content: "\f00d";
}

.pricingTable .price-value {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 35px;
}

.pricingTable .price-value span {
    background: var(--main-color);
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
}

.pricingTable .pricingTable-signup a {
    color: var(--main-color);
    background: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 7px 30px 8px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.pricingTable .pricingTable-signup a:hover {
    color: #fff;
    background-color: var(--main-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.pricingTable.color-2 {
    --main-color: #4c4c4f;
}

.pricingTable.color-3 {
    --main-color: #b5bd39;
}

.pricingTable.color-4 {
    --main-color: #282f50;
}


/* ------------------------------- Mentor Area ------------------------------ */
.mentor_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: auto;
}

.pricing_area {
    padding: 100px 0;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 15px;
}

.single_tile {

    text-align: center;
    background: teal;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single_tile a {
    color: #000;
    font-size: 1.5rem;
    font-family: Nexa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 50px 0;
    font-weight: bold;
    width: 100%;
}

.single_tile a svg {
    width: 100px;
    margin: auto;
    height: 100px;
    transition: all .4s ease;
}

.single_tile a:hover,
.single_tile a:hover svg,
.single_tile a:hover svg path {
    color: #ffffff;
    fill: #fff;
}

.single_tile a:hover svg .cls-2,
.single_tile a:hover svg .cls-1 {
    stroke: #fff;
}

.single_tile:nth-child(1) {
    background: linear-gradient(to bottom, rgb(254, 249, 195), rgb(253, 224, 71), rgb(234, 179, 8));
}

.single_tile:nth-child(2) {
    background: linear-gradient(to right, rgb(249, 168, 212), rgb(216, 180, 254), rgb(129, 140, 248))
}

.single_tile:nth-child(3) {
    background: linear-gradient(to right, rgb(199, 210, 254), rgb(254, 202, 202), rgb(254, 249, 195))
}

.single_tile:nth-child(4) {
    background: linear-gradient(to right, rgb(202, 248, 254), rgb(38, 159, 220))
}

.single_tile:nth-child(5) {
    background: linear-gradient(to right, rgb(233, 213, 255), rgb(192, 132, 252), rgb(107, 33, 168))
}

.single_tile:nth-child(6) {
    background: linear-gradient(to right, rgb(254, 240, 138), rgb(251, 207, 232), rgb(244, 114, 182))
}

.trial_lesson_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000c;
    color: #fff;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: "Nexa";
    text-align: center;
    font-size: 17px;
}

.cart_left {
    padding: 20px;
}

.card-title span.badge {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: .5px;
}

.cart_item_content {
    display: flex;
    flex-direction: column;
}

.cart_item_content .card-body {
    display: flex;
}

.footer_area {
    background: var(--secondary);
    padding: 50px 0;
}

.single_footer_item img {
    max-width: 200px;
    margin-bottom: 16px;
}

.single_footer_item {
    font-size: 14px;
    font-weight: 300;
}

.single_footer_item h2 {
    font-size: 23px;
    position: relative;
    z-index: 1;
    padding-bottom: 7px;
}

.single_footer_item h2::after {
    position: absolute;
    content: "";
    width: 30%;
    height: 1px;
    background: var(--primary);
    left: 0;
    bottom: 0;
}

.single_footer_item ul li {
    display: block;
    position: relative;
}

.single_footer_item ul li a {
    color: #000;
    padding: 3px 0;
    display: block;
}

.single_footer_item ul li a:hover {
    font-weight: bold;
}

.single_footer_item .social_media {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.single_footer_item .social_media a {
    font-size: 20px;
    height: 40px;
    color: var(--primary);
    border: 1px solid;
    padding: 5px 8px;
}

.single_footer_item .social_media a:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}


/* btt */
#scroll-top {
    display: inline-block;
    background-color: var(--primary);
    border-color: var(--primary);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: all .4s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

#scroll-top:active {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.menu_wrapper .nav-item:first-child a.nav-link i {
    display: none;
}


.blue_btn {
    background-color: #fc9606;
    border: none;
}

.primary_btn_container.blue_btn:hover {
    border-color: #fc9606;
}

.primary_btn_container.blue_btn a {
    background-color: #335cc5;
    border-color: #335cc5;
}

.orange_btn {
    background-color: #119b71;
    border: none;

}

.primary_btn_container.orange_btn:hover {
    border-color: #119b71;
}

.primary_btn_container.orange_btn a {
    background-color: #fc9606;
    border-color: #fc9606;
}

.green_btn {
    background-color: #af2c3a;
    border: none;

}

.primary_btn_container.green_btn:hover {
    border-color: #af2c3a;
}

.primary_btn_container.green_btn a {
    background-color: #119b71;
    border-color: #119b71;
}

.red_btn {
    background-color: #fbbc34;
    border: none;

}

.primary_btn_container.red_btn:hover {
    border-color: #fbbc34;
}

.primary_btn_container.red_btn a {
    background-color: #af2c3a;
    border-color: #af2c3a;
}

/************************************/
/*** 	  09. What We Do css	  ***/
/************************************/

.what-we-do {
    padding: 100px 0;
}

.what-we-title {
    margin-bottom: 50px;
    font-size: 18px;
}

.what-we-title h3 {
    font-size: 18px;
}

.what-we-title h2 {
    font-size: 50px;
    text-transform: uppercase;
}

.what-we-image-box {
    margin-right: 15px;
}

.what-we-image figure {
    display: block;
    border-radius: 20px;
}

.what-we-image img {
    width: 100%;
    aspect-ratio: 1/1.5;
    object-fit: cover;
    border-radius: 20px;
}

.what-we-contact-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.what-we-contact-item {
    display: flex;
    align-items: center;
}

.what-we-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.what-we-contact-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.what-we-contact-item:hover .icon-box::before {
    transform: scale(1);
}

.what-we-contact-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.what-we-contact-item-content {
    width: calc(100% - 65px);
}

.what-we-contact-item-content p {
    margin-bottom: 5px;
}

.what-we-contact-item-content h3 {
    font-size: 20px;
}

.what-we-contact-item-content h3 a {
    color: initial;
    transition: all 0.3s ease-in-out;
}

.what-we-contact-item-content h3 a:hover {
    color: var(--accent-color);
}

.what-we-item {
    display: flex;
    margin-bottom: 40px;
}

.what-we-item:last-child {
    margin-bottom: 0;
}

.what-we-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.what-we-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.what-we-item:hover .icon-box::before {
    transform: scale(1);
}

.what-we-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.what-we-item-content {
    width: calc(100% - 80px);
}

.what-we-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.what-we-item-content p {
    margin-bottom: 0;
}

/************************************/
/*** 	  10. How It Work css	  ***/
/************************************/

.how-it-work {
    padding: 100px 0;
}

.work-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.work-item {
    position: relative;
    width: calc(25% - 22.5px);
    text-align: center;
}

.work-item::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -35px;
    background: url('../images/work-item-arrow.svg') no-repeat;
    background-position: center center;
    width: 36px;
    height: 40px;
}

.work-item:nth-child(4n + 4):before,
.work-item:last-child:before {
    display: none;
}

.work-item-image {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 30px;
}

.work-item-image figure {
    display: block;
    mask-size: auto;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.work-box-1 .work-item-image figure {
    mask-image: url('../images/work-item-bg-shape-1.svg');
    background-image: url('../images/work-item-bg-shape-1.svg');
}

.work-box-2 .work-item-image figure {
    mask-image: url('../images/work-item-bg-shape-2.svg');
    background-image: url('../images/work-item-bg-shape-2.svg');
}

.work-box-3 .work-item-image figure {
    mask-image: url('../images/work-item-bg-shape-3.svg');
    background-image: url('../images/work-item-bg-shape-3.svg');
}

.work-box-4 .work-item-image figure {
    mask-image: url('../images/work-item-bg-shape-4.svg');
    background-image: url('../images/work-item-bg-shape-4.svg');
}

.work-item-image figure img {
    width: 100%;
}

.work-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.work-item-content p {
    margin-bottom: 0;
}

/************************************/
/*** 	 	12. CTA Box css 	  ***/
/************************************/
.dark-section {
    background-color: var(--secondary);
}

.cta-box {
    padding: 60px 0;
    overflow: hidden;
}

.cta-box-content {
    font-size: 26px;
}

.cta-box-content h2 {
    font-size: 52px;
}

.cta-box-btn a {
    background: var(--third);
    color: #000;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 25px;
}

.cta-box-list {
    margin: 20px 0;
}

.cta-box-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cta-box-list ul li {
    position: relative;
    color: #000;
    line-height: 1.5em;
    padding-left: 30px;
    font-size: 17px;
}

.cta-box-list ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
}

.cta-box-btn {
    margin-top: 40px;
}

.cta-box-image figure {
    display: block;
}

.cta-box-image img {
    width: 68%;
    aspect-ratio: auto;
    object-fit: cover;
    margin-bottom: 0;
}

.cta-box-image figure {
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    overflow: hidden;
    margin: auto;
}

/* fund raiser area */
.our-program-banner-area.fund-raiser-area {
    min-height: 600px;
}

.fund-raiser-why-attend-area {
    padding-bottom: 70px;
}

.fund-raier-item-box {}

.fund-raier-item-box ul {}

.fund-raier-item-box ul li {
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.fund-raier-item-box ul li i {
    width: 30px;
    text-align: center;
    font-size: 25px;
}

.fund-raiser-why-attend-area .service-item .image-box img {
    width: 100px;
    aspect-ratio: auto;
}

.fund-raiser-why-attend-area .image-box {
    text-align: center;
}

.service-item:hover .service-content h3,
.service-item.active .service-content h3 {
    color: #fff;
}

.fund-raiser-why-attend-area .service-item {
    padding: 30px 28px;
    height: calc(100% - 45px);
    text-align: center;
    border: 1px solid var(--primary);
}

.fund-raiser-why-attend-area .service-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.fund-raiser-why-attend-area .service-content {
    font-size: 15px;
}

.ratio-auto {
    aspect-ratio: auto;
}

.what-we-image .ratio-auto {
    aspect-ratio: auto;
}

.phosis_fundraiser_page_area.event_area.event_location {
    background: var(--bs-gray-200);
    padding: 80px 0;
}

.simply-countdown-losange>.simply-section {
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto !important;
}

.simply-countdown-losange {
    display: flex !important;
    ;
    height: 220px;
    padding-top: 30px;
    margin: 0px auto !important;
    width: 80%;
}

.simply-countdown-losange>.simply-section>div .simply-amount {
    font-size: 35px;
}

.simply-countdown-losange>.simply-section>div .simply-word {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 300 !important;
}

#booking_form {
    padding: 100px 0;
}

.cta-box.bg-section.fund-raiser .cta-box-image img {
    width: 100%;
}

.our-program-banner-area.fund-raiser-area::before {
    background-color: rgba(0, 0, 0, 0.7);
}


/* Reentry */
.reentry-video-promo-area {
    padding: 100px 0;
}

.reentry-video-promo-content {
    font-size: 18px;
}

.reentry-video-promo-content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.reentry-video-promo-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.reentry-video-promo-content ul li {
    list-style: disc inside;
    padding-bottom: 5px;
}

.reentry-video-promo-content a {
    display: flex;
    position: relative;
    width: 100%;
    height: 325px;
    border-radius: 20px;
    overflow: hidden;
}

.play_btn span.gradient-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(at 0% 100%, rgb(233, 213, 255), #8c4eab, #2b279f);
    transform: translate(0);
}

.play_btn span.text {
    align-self: flex-end;
    z-index: 1;
    color: #fff;
    padding: 20px;
    width: 100%;
    text-align: center;
    font-size: 23px;
    font-weight: 300;
    padding-bottom: 65px;
    transition: all 0.3s ease-in-out;
}

.play_btn:hover span.text {
    color: var(--secondary);
}

.reentry-video-promo-buttons {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.reentry-video-promo-buttons a {
    padding: 10px 30px;
    border: 1px solid;
    border-radius: 10px;
    color: var(--primary);
    font-size: 20px;
    display: inline-block;
    overflow: hidden;
}

.reentry-video-promo-buttons a:hover:before {
    background-color: var(--secondary);
    border-color: var(--secondary);
}


.w-xs {
    min-width: 80px;
}

.btn-group-phosis .btn {
    position: relative;
}

.btn-group-phosis .btn:first-child::before {
    display: none
}

.btn-group-phosis .btn::before {
    content: "OR";
    position: absolute;
    font-size: 10px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background-color: #844fe6;
    color: #e9e9ef;
    left: -12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.btn-group button {
    padding: 6px 20px;
}

button a.btn-text {
    text-decoration: none;
    color: #fff;
}

button a.btn-text:hover {
    color: unset;
}

.btn {
    transition: all .3s ease;
}

.btn-phosis-primary {
    background-color: var(--primary);
}

.btn-phosis-primary a,
.btn-phosis-primary a.btn-text {
    color: #fff;
}

.btn-phosis-primary:hover {
    background-color: #2a3a71
}

.btn-phosis-primary:hover a.btn-text {
    color: #fff;
}

.btn-phosis-secondary {
    background-color: var(--secondary);
}

.btn-phosis-secondary:hover {
    background-color: #e7ba09;
}

.btn-phosis-secondary a {
    color: var(--primary);
}

.btn-phosis-secondary a.btn-text {
    color: var(--primary);
}

.btn-group.btn-group-phosis.btn-full {
    display: flex;
    margin-top: 30px;
}

.menu_wrapper .navbar-nav .nav-item:last-child {
    border: 0;
}

.btn-group.btn-group-phosis.btn-full button {
    padding: 12px;
    flex: 1;
}

/*  */
.reentry-apply-form-area {
    padding: 100px 0;
}

.reentry-apply-form h2 {
    font-size: 40px;
}

.support-need-field p {
    margin: 0;
}

.support-need-field label {
    cursor: pointer;
}

.form-group>label {
    margin-bottom: 5px;
    color: gray;
}

.reentry-program-information {
    background: #fbfbfb;
    padding: 30px;
    border-radius: 5px;
}

.reentry-program-information h2 {
    font-size: 30px;
}

.reentry-program-information ul li {
    padding-left: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 18px;
}

.reentry-program-information ul li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "FontAwesome";
    color: var(--primary);
}

.form-group span.text-danger {
    font-size: 80%;
}

div[data-lastpass-icon-root=""] {
    display: none;
}

iframe[data-lastpass-infield="true"] {
    display: none;
}


/*  */
.reentry-application-thank-you {
    padding: 100px 0;
}

.thank-you-content {
    text-align: center;
    font-size: 20px;
}

.thank-you-content i {
    font-size: 100px;
    color: #489b74;
}

.thank-you-content h1 {
    margin: 30px 0;
    font-size: 50px;
}

.thank-you-content a {
    display: inline-block;
    padding: 5px 10px;
    color: var(--primary);
}

.thank-you-content a:hover {
    color: var(--secondary);
}

.thank-you-thumb {
    border-radius: 16px;
    overflow: hidden;
}

.thank-you-thumb img {
    object-fit: cover;
}

.btn-purple {
    background-color: #854fe6;
    color: #fff;
}

.btn-purple:hover {
    background-color: #6f42c2;
    color: #fff;
}


/*  */
.partner-hero-area {
    padding: 100px 0;
}

.partner-hero-content h1 {
    font-size: 80px;
    color: var(--primary);
    font-weight: 700;
}

.partner-hero-content h4 {
    font-size: 35px;
}

.partner-hero-content {
    font-size: 20px;
}

.partner-hero-content p {
    margin: 30px 0;
}

.button-group {
    gap: 12px;
    display: inline-flex;
}

.button-group .btn {
    padding: 10px 20px;
    border-radius: 20px;
}

.phosis-partner-cta-area {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.phosis-partner-cta-area h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
}

.single-partner-cta img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    overflow: hidden;
    margin: auto;
}

.phosis-partner-cta-area .single-partner-cta {
    box-shadow: none;
}

.cta-box.bg-section.donation-cta h2 {
    font-size: 80px;
}

.cta-box.bg-section.donation-cta .cta-box-image img {
    width: 100%;
}

.testimonial_area {
    margin-bottom: 85px;
}

.testimonal_items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    width: 90%;
    margin: 0 auto;
}

.testimonial_area_title {
    text-align: center;
    margin-bottom: 30px
}

.single_testimonial_item p {
    padding-left: 50px;
    padding-right: 30px;
}

.single_testimonial_item {
    background: var(--secondary);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.single_testimonial_item::before {
    content: "\f10d";
    position: absolute;
    left: 10px;
    top: -13px;
    font-family: 'FontAwesome';
    font-size: 50px;
    z-index: -1;
    opacity: .5;
}

.author_info {
    text-align: right;
}

.single_testimonial_item:nth-child(4n + 1) {
    background: #e2c23a
}

.single_testimonial_item:nth-child(2n + 2) {
    background: #172440
}



.single_testimonial_item:nth-child(4n + 3) {
    background: #017375
}

.single_testimonial_item h4 {
    font-size: 17px;
    margin: 0;
}

.single_testimonial_item h5 {
    font-size: 15px;
    margin: 0;
}

/* Donation */
.donation-gift-area {
    padding-top: 100px;
    text-align: center;
}

.donation-gift-area h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.donation-gift-area h4 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 30px;
}

.button-group.donation-button-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.button-group.donation-button-group a {
    min-width: 35%;
    padding: 12px 15px;
    font-size: 20px;
    font-weight: bold;
}

.button-group.donation-button-group a.btn.btn-phosis-primary {
    color: #fff;
}

.button-group.donation-button-group .btn.btn-phosis-purple {
    background: #3d2998;
    color: #fff;
}

.btn.btn-phosis-purple:hover {
    background-color: #3d2998d9 !important;
}

.button-group.donation-button-group .btn.btn-phosis-teal {
    background: #3da858;
    color: #fff;
}

.btn.btn-phosis-teal:hover {
    background: #3da858e4 !important
}

.donation-gift-area.donation-transparency-area {
    padding-bottom: 0;
}

.grid {
    display: grid;
}

.grid-template-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.donation-gift-area.donation-transparency-area ul {
    display: inline-flex;
    gap: 25px;
}

.grid-item h2 {
    font-size: 18px;
    margin-top: 20px;
}

.grid-item {
    margin-bottom: 20px;
}

.donation-gift-area.donation-transparency-area h1 {
    margin-bottom: 50px;
}

.download-packet {
    margin: 100px 0;
}

.download-packet a {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

.what-we-do.fund-raiser.donation-page.sponsorship {
    padding-bottom: 0;
}

/* Sponsor */
.sponsor-hero-area {
    background-position: center;
    padding: 180px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.sponsor-hero-content {
    color: #fff;
    font-size: 14px;
}

.sponsor-hero-content h1 {
    font-size: 75px;
    font-weight: bold;
    margin-bottom: 30px;
}

.sponsor-hero-content h4 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 80px;
}

.sponsor-hero-content ul {
    margin-top: 30px;
    display: flex;
    gap: 25px;
}

.sponsor-hero-content ul li {
    list-style: disc inside;
}

/*  */
.sponsor-packages-area {
    background: #301998;
    color: #fff;
    padding: 100px 0;
}

.single-sponsor-package {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 0 1px;
    padding: 30px;
    border-radius: 10px;
    transition: all .4s ease;
}

.single-sponsor-package:hover {
    background: var(--primary);
}

.single-sponsor-package h2 {
    font-size: 38px;
}

.single-sponsor-package ul li {
    list-style: disc inside;
    padding-bottom: 6px;
}

.single-sponsor-package a {
    background: #fff;
    display: inline-block;
    padding: 10px 11px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 20px;
}

.single-sponsor-package a:hover {
    background-color: var(--secondary);
}

.sponsor-packagge-cta-area {
    background: var(--secondary);
}


.sponsor-cta-content {
    color: #fff;
}

.sponsor-cta-content h2 {
    font-size: 42px;
}

.sponsor-cta-content h4 {
    font-size: 22px;
}


.sponsorship-why-content h2 {
    font-size: 58px;
}

.sponsorship-why-content {
    font-size: 18px;
}

.sponsorship-why-content ul {
    margin-bottom: 30px;
}

.sponsorship-why-content ul li {
    list-style: disc inside;
    margin-top: 5px;
    align-items: unset;
}

.sponsorship-why-content ul li i {
    color: #38a070;
}

.spondor-cta .cta-box-content ul {
    margin-top: 30px;
}

.spondor-cta .cta-box-content ul li {
    list-style: disc inside;
    font-size: 14px;
}

.apply-volunteer-area {
    background: var(--primary);
    padding: 100px 0;
    color: #fff;
}

.apply-volunteer-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.apply-volunteer-content h4 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 30px;
}

.apply-volunteer-form {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    color: var(--primary);
}

.two-column {
    display: flex;
    gap: 30px;
}

.two-column .form-group {
    flex: 1;
}

.apply-volunteer-form .form-group {
    margin-bottom: 20px;
}

.single-checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.form-group h2 {
    font-size: 22px;
}

.concent-single-checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.form-apply-btn {
    margin-top: 30px;
}

.form-apply-btn button {
    margin-bottom: 10px;
}

/*  */
.cta-box.bg-section.contact-cta .cta-box-content h2 {
    font-size: 95px;
}

.cta-box.bg-section.contact-cta .cta-box-content h4 {
    font-size: 34px;
    line-height: 1.3;
}

.contact-cta .banner_buttons a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact-page h1 {
    font-size: 50px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-page p {
    font-size: 18px;
}

.contact-title {
    margin-bottom: 30px;
}

.contact-form {
    background: #fefadf;
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    color: var(--primary);
}

.form-submit-btn {
    text-align: center;
}

button {
    transition: all .4s ease;
}


.related-services-area {
    background: var(--bs-purple);
    padding: 100px 0 85px 0px;
}

.single-service-item {
    background: var(--bs-body-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.single-service-item div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-service-item img {
    width: 80px;
}

.single-service-item a {
    text-align: center;
    align-self: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.single-service-item a:hover {
    background-color: var(--secondary);
}

.single-service-item img.yellow {
    filter: brightness(0) saturate(100%) invert(79%) sepia(28%) saturate(4694%) hue-rotate(5deg) brightness(108%) contrast(98%);
}

.single-service-item img.orange {
    filter: invert(68%) sepia(54%) saturate(2996%) hue-rotate(351deg) brightness(92%) contrast(91%);
}

.single-service-item img.green {
    filter: brightness(0) saturate(100%) invert(32%) sepia(38%) saturate(1169%) hue-rotate(153deg) brightness(93%) contrast(87%);
}


.get_started__page_area.rc-trial {
    background: #f27415;
}

.get_started__page_area.rc-trial .get_started__content h3 {
    font-size: 34px;
    color: #fff;
}

.get_started__page_area.rc-trial .get_started__content .started_btn button {
    background: #f27415 !important;
    font-weight: bold;
    transition: all .4s ease;
    box-shadow: 0 2px 7px -1px rgba(0, 0, 0, 0)
}

.get_started__page_area.rc-trial .get_started__content small a {
    color: #f27415;
}

.get_started__page_area.rc-trial .get_started__content>a {
    color: #fff;
}


/* Our Mission */
.mission-page-area {
    background-size: cover;
    background-position: center;
}

.mission-hero-content {
    text-align: center;
    color: #fff;
    padding: 150px 0;
}

.mission-hero-content h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
}

.mission-hero-content .button-group {
    margin-top: 20px;
}

.mission-why-area {
    padding: 100px 0;
    text-align: center;
}

.mission-why-content h1 {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 30px;
}

.mission-why-content {
    font-size: 17px;
}

.mission-why-content ul {
    margin-bottom: 30px;
}

.mission-why-content ul li {
    text-align: left;
    list-style: disc inside;
    padding: 5px 0;
}

.mission-four-programs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.single-program-box img {
    height: 250px;
    object-fit: contain;
    width: auto;
    margin: auto;
}

.single-program-box {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.single-program-box h2 span {
    height: 20px;
    width: 20px;
    background: red;
    display: inline-block;
    border-radius: 50%;
}

.single-program-box h2 {
    font-size: 25px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 15px 0;
}

.single-program-box p {
    text-align: left;
}

.single-program-box a {
    font-size: 17px;
    text-align: center;
    display: block;
    padding: 10px 0;
    background: var(--secondary);
    border-radius: 10px;
    margin-top: 20px;
    color: #fff;
}

.mission-four-programs-area {
    padding-bottom: 100px;
}

.mission-program-title {
    text-align: center;
    margin-bottom: 40px;
}

.mission-program-title h1 {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 30px;
}

.mission-program-title h4 {
    width: 60%;
    font-size: 19px;
    margin: auto;
    font-weight: normal;
}

.single-program-box.reentry a,
.single-program-box.reentry h2 span {
    background-color: #1c4ca5;
}

.single-program-box.rcp a,
.single-program-box.rcp h2 span {
    background-color: #3b834c;
}

.single-program-box.liveclass a,
.single-program-box.liveclass h2 span {
    background-color: #665eb7;
}

.single-program-box.jobready a,
.single-program-box.jobready h2 span {
    background-color: #ffbd18;
    color: var(--primary);
}

.single-program-box a:hover {
    background-color: var(--primary);
    color: #fff;
}

.cta-box.bg-section.mission-cta {
    background: #b8cb35;
}

.cta-box.bg-section.mission-cta .cta-box-content h2 {
    font-size: 56px;
}

.cta-box.bg-section.mission-cta .cta-box-content h4 {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 18px;
}

.cta-box.bg-section.mission-cta .cta-box-image img {
    width: 70%;
}

.mission-why-partner-area {
    padding-bottom: 100px;
}

.mission-why-partner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
}

.mission-why-partner-content h1 {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 30px;
}

.mission-why-partner-content .text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-why-partner-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.mission-why-partner-content ul li {
    margin-bottom: 2px;
    position: relative;
}

.mission-why-partner-content ul li::before {
    content: "●";
    color: #1DB954;
    /* green bullet */
    font-size: 1.2rem;
    margin-right: 8px;
    position: absolute;
    left: -1.5rem;
}

.mission-why-partner-content .image img {
    max-width: 250px;
    border-radius: 8px;
}

.mission-why-partner-content img {
    float: right;
    width: 330px;
    shape-outside: circle(164px at 162px 151px);
    margin: 17px;
}

.mission-why-partner-content .group_link {
    display: flex;
    margin-top: 20px;
    gap: 30px;
}

.mission-why-partner-content .group_link a {
    color: var(--primary);
    border-bottom: 2px solid transparent;
    font-weight: bold;
}

.mission-why-partner-content .group_link a:hover {
    border-color: var(--primary);
}

.mobile_only {
    display: none;
}

.single-story-content {
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 5px #fff;
    overflow: hidden;
}

.author-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    float: left;
    margin-right: 20px;
    margin-top: 25px;
    shape-outside: circle();
}

.single-story-item {
    padding: 100px 0;
    background: var(--secondary);
}

.single-story-item:nth-child(2n+1) {
    background: var(--primary);
}

.bod-hero-content .banner_buttons {
    margin-top: 40px;
}