@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    font-family: "Outfit", sans-serif;
}

:root {
    --primary-color: #2205b3;
}

.max-area {
    max-width: 1550px;
    margin: 0 auto;
}

button {
    outline: none;
}

html,
body {
    overflow-x: hidden;
    background-color: #fff;
}

.btn_black_box {
    background: #151419;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    text-wrap: nowrap;
    border-radius: 4px;
    font-size: 16px;
    text-transform: capitalize;
    border: 1px solid #151419;
    outline: none;
}

.btn_black_box:hover {
    background-color: #fff;
    color: #000;
    transition: 0.4s all;
    border: 1px solid;
}

.btn_white_box {
    background-color: transparent;
    padding: 0.6rem 1.5rem 0.8rem;
    color: #000;
    border: 1px solid;
    font-weight: 500;
    border-radius: 4px;
}

.btn_white_box:hover {
    background-color: #151419;
    color: #fff;
    transition: 0.4s all;
    border: 1px solid #151419;
}

.gradient_bg {
    background: url('../images/hero_bg.jpg') no-repeat center center;
    background-size: cover;
}

.btn_black_box.sm_this_box,
.btn_white_box.sm_this_box {
    padding: 0.5rem 1rem 0.5rem;
}


/*Header style*/

.head_top {
    padding: 0.6rem 0 0.7rem;
}

.site-logo {
    width: 90px;
}

.site-header {
    position: sticky;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    background-color: transparent;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: blue;
    padding-top: 10px;
}

.side-navbar {
    width: 100%;
    margin-inline: auto;
}

.navbar-block {
    position: absolute;
    left: 0;
    height: calc(100vh - 4rem);
    opacity: 0;
    pointer-events: none;
    background-color: #ffffff;
    transition: opacity 0.4s ease;
}

.navbar-block.is-active {
    opacity: 1;
    pointer-events: initial;
}

@media screen and (min-width: 62rem) {
    .side-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-block {
        position: initial;
        height: initial;
        opacity: 1;
        pointer-events: visible;
        background: none;
        transition: none;
    }
}

.menu {
    padding-block: 1rem;
    list-style: none;
}

.menu-link {
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    color: #000000;
    transition: color 0.3s ease;
}

@media screen and (min-width: 62rem) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        column-gap: 2.5rem;
        height: 100%;
        padding: unset;
    }
    .menu-item {
        display: flex;
        cursor: pointer;
        padding: 2rem 0.5rem;
    }
    .menu-link {
        padding: unset;
    }
}

.dropdown-toggle {
    cursor: pointer;
    outline: none;
    user-select: none;
}

.dropdown-content {
    height: 0;
    overflow: hidden;
    background-color: #f8f8f8;
    transition: height 0.5s ease;
}

.dropdown-column,
.dropdown-group,
.dropdown-items {
    display: grid;
}

.dropdown-group {
    padding-bottom: 1rem;
    padding-inline: 1.5rem;
}

.dropdown-items {
    row-gap: 0.5rem;
    padding-inline: 3.5rem;
    padding-top: 0.35rem;
}

.dropdown-link {
    font-weight: 400;
    line-height: inherit;
    color: #000000;
    transition: color 0.3s ease;
}

.dropdown-block {
    display: flex;
    align-items: flex-start;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
    .dropdown-toggle {
        column-gap: 0.35rem;
        pointer-events: none;
    }
    .dropdown-content {
        position: absolute;
        left: 0;
        right: 0;
        top: 6rem;
        opacity: 0;
        height: max-content;
        pointer-events: none;
        background-color: #f8f8f8;
        border-top: 2px solid #ffffff;
        box-shadow: 2px 2px red;
        transition: top 0.4s, opacity 0.3s ease;
    }
    .dropdown-column {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        column-gap: 2rem;
        max-width: 90vw;
        margin-inline: auto;
    }
    .dropdown-group {
        align-content: baseline;
        row-gap: 1.25rem;
        padding: 2rem 0;
    }
    .dropdown-group:first-child,
    .dropdown-group:last-child {
        margin: unset;
    }
    .dropdown-items {
        padding-top: unset;
    }
    .dropdown-block {
        padding-top: unset;
        padding-inline: unset;
    }
    .side-dropdown:hover>.dropdown-content {
        cursor: initial;
        top: 4.25rem;
        opacity: 1;
        pointer-events: initial;
    }
    .side-dropdown:hover>.dropdown-toggle i.bx {
        rotate: 180deg;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    width: 1.5rem;
    height: 1rem;
    border: none;
    outline: none;
    visibility: visible;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.15px;
    opacity: 1;
    rotate: 0deg;
    border-radius: 0.15rem;
    background-color: #000000;
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active>.burger-line:nth-child(1) {
    top: 0.5rem;
    rotate: 135deg;
}

.burger.is-active>.burger-line:nth-child(2) {
    opacity: 0;
}

.burger.is-active>.burger-line:nth-child(3) {
    top: 0.5rem;
    rotate: -135deg;
}

@media screen and (min-width: 62rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

@media screen and (max-width: 992px) {
    .aboutus-content {
        width: 100% !important;
    }
    .banner-title {
        font-size: 3rem !important;
        margin-top: 1.5rem;
    }
    .footer-head .site-logo {
        width: 10rem;
    }
    .navbar-block {
        width: 100%;
    }
}

.footer_banner {
    background: url('../images/footer_banner.jpg') no-repeat center fixed;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}

.level-up h3 {
    font-size: 36px;
}

.level-up p {
    font-size: 18px;
}

.level-up .button-section {
    margin-top: 30px;
}

.level-up .button-section button.get {
    padding: 8px 15px;
    border-radius: 25px;
    margin-right: 10px;
    background-color: #000;
    color: #fff;
}

footer {
    background-color: #181a26;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 20px;
    /* padding-bottom: 40px; */
}

.footer-title h3 {
    text-align: center;
    font-size: 40px;
    color: #b8bac6;
    margin: 0;
    font-weight: 500;
    padding-bottom: 10px;
}

.footer-title p {
    text-align: center;
    color: #8d8f9b;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}

.mail-cnt {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    width: 48%;
    border-radius: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 10px;
}

.mnenu-inner-sec {
    border-bottom: 3px solid #3a3c48;
    margin-top: 50px;
    padding-bottom: 20px;
}

.social-img i {
    color: #fff;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

footer ul.menu-lists {
    padding-left: 0;
    list-style: none;
}

.logo-col .logo-img img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

ul.menu-lists li a {
    text-decoration: none;
    color: #b8bac6;
    font-size: 17px;
    font-weight: 500
}

ul.menu-lists li.list-items {
    position: relative;
    transition: all 0.5s ease;
}

footer ul.menu-lists li.list-items i {
    color: #fff;
    margin-right: 5px;
    font-size: 12px;
}

footer ul.menu-lists li.list-items::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #eb5360;
    position: absolute;
    left: -15px;
    top: 11px;
    margin: 0 auto;
    border-radius: 50%;
    opacity: 0;
}

.logo-menu {
    padding-bottom: 20px;
}

ul.menu-lists li.list-items:hover::after {
    opacity: 1;
}

ul.dropdownmenu {
    display: none;
    position: absolute;
    padding: 0;
    list-style: none;
    width: 230px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top: 0px;
    left: 0;
    transition: 0.3s all;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

ul.dropdownmenu li {
    padding: 10px 12px;
    align-items: center;
    border-bottom: 1px solid #e1ddfc;
}

ul.dropdownmenu li:hover {
    background: #00000008;
}

li.nav-item.dropdown {
    cursor: pointer;
}

ul.dropdownmenu li a.dropdown-item {
    width: 100px;
    text-align: start;
    font-size: 16px;
}

#menu ul li i {
    font-size: 15px;
}

li.nav-item.dropdown:hover ul.dropdownmenu {
    display: block;
}

.menu li.nav-item {
    position: relative;
}

.menu li.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 3px;
    border-radius: 3rem;
    background: #6d6d6d;
}

.menu li.nav-item:hover::after {
    width: 75%;
    transition: 0.4s all;
}

.nav_down {
    background: #fff;
    transition: 0.3s all;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    padding: 30px;
    width: 70%;
    display: none;
}

.nav_down ul {
    padding-left: 15px;
}

.nav_down .list-items {
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav_down .list-items a {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.nav_down .list-items a:hover {
    color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s;
}

.copy-right-sec p {
    text-align: center;
    font-size: 17px;
    color: #b8bac6;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width:1025px) and (max-width:1200px) {
    footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    .footer-title h3 {
        font-size: 40px;
    }
    .mail-cnt {
        width: 100%;
        padding-left: 20px;
        border-radius: 30px;
        padding-right: 10px;
        justify-content: space-between;
    }
    .mnenu-inner-sec {
        padding-bottom: 40px;
        margin-top: 35px;
        padding-top: 35px;
    }
    .logo-menu .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
    .row.logo-menu {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 10px;
    }
}

@media screen and (min-width:768px) and (max-width:1024px) {
    footer {
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-title h3 {
        font-size: 33px;
    }
    .mail-cnt {
        width: 100%;
        padding-left: 20px;
        border-radius: 30px;
        padding-right: 10px;
        justify-content: space-between;
    }
    ul.menu-lists {
        gap: 10px;
    }
    ul.menu-lists li.list-items::after {
        display: none;
    }
    .mnenu-inner-sec {
        padding-bottom: 40px;
        margin-top: 35px;
        padding-top: 35px;
    }
    .logo-menu .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
    .row.logo-menu {
        margin-left: 0;
        margin-right: 0;
    }
    ul.menu-lists li a {
        font-size: 15px;
    }
}

@media screen and (max-width:767px) {
    footer {
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-title h3 {
        font-size: 33px;
    }
    .mail-cnt {
        width: 100%;
        padding-left: 20px;
        border-radius: 30px;
        padding-right: 10px;
        justify-content: space-between;
    }
    ul.menu-lists {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    ul.menu-lists li.list-items::after {
        display: none;
    }
    .mnenu-inner-sec {
        padding-bottom: 40px;
        margin-top: 35px;
        padding-top: 35px;
    }
}

.common-gap {
    margin-top: 4rem;
}

.common-gap-hero {
    margin-top: 4rem;
}


/* Banner Start */

.banner_desc {
    width: 90%;
}

.banner img {
    width: 405px;
    padding: 0px;
    margin-left: -90px;
    border-radius: 10px;
}

.banner .back_cover img {
    height: 290px;
    width: 100%;
    object-fit: contain;
    margin: 0;
    position: absolute;
    bottom: 0;
}

.banner .back_cover {
    height: 250px;
    position: relative;
}

.banner_section .banner_desc .title h1 .colored {
    color: #644cec;
}

.banner_section .banner_desc .title h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
}

.banner_section .banner_desc p {
    font-size: 18px;
    margin-bottom: 20px;
}

.banner_action {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.banner_action .btn_light {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    align-items: center;
    font-weight: 500;
    color: #434141;
    text-decoration: none;
}

.banner_action .btn_light span {
    width: 35px;
    height: 35px;
    border: 1px solid #43414185;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_action .btn_light span i {
    font-size: 16px;
}

.banner_section .banner_img .image_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #e1ddfc;
    border-radius: 41px;
    padding: 6px;
    gap: 10px
}

.banner_section .banner_img .image_grid .banner:first-child {
    grid-row: 1 / 3;
}

.banner_section .banner_img .image_grid .banner:last-child .back_cover {
    background: #674fff;
    border: 5px solid #ffffff;
    border-radius: 40px;
}

.banner_section .banner_img .image_grid .banner:nth-child(2) {
    background: #ffffff;
    padding: 20px;
    overflow: hidden;
    border-radius: 40px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner_section .banner_img .image_grid .banner .btn_light {
    color: #6850ec;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border: 2px solid #f1f1f1;
    padding: 5px 10px;
    border-radius: 20px;
}

.banner_section .banner_img .image_grid .banner p {
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

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

.video__section .camera {
    width: 40px;
    height: 40px;
    background-color: #5798fe4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_section .banner_img .image_grid .banner:last-child .back_cover {
    width: 100%;
}

.cource_card {
    display: flex;
    border-radius: 30px;
    background: #151419;
    padding: 30px;
    justify-content: space-between;
}

.cource_card .desc {
    width: 25%;
    padding-right: 30px;
}

.cource_card .card {
    width: 70%;
    background: #ffffff;
    border-radius: 15px;
    border: none;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    align-items: center;
    flex-direction: row;
}

.cource_card .desc .desc_title p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.cource_card .desc .btn_light {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #fff;
    padding: 10px 15px;
    border-radius: 20px;
    line-height: 0;
}

.cources p.title {
    margin-bottom: 5px;
    font-size: 35px;
    font-weight: 600;
}

.cource_card .desc .desc_title {
    margin-bottom: 30px;
}

.cource_card .card .cources {
    padding: 20px;
    text-align: start;
}

.cource_card .card .cources p.cource_desc {
    margin: 0;
    font-size: 18px;
    color: #434141;
}


/* Banner End */


/* Stories start */

.success.stories {
    background-color: #000;
    border-radius: 20px;
    padding: 120px 80px;
}

.right-count h2 {
    color: #fff;
    font-size: 50px;
}

.right-count p {
    color: #f0f0f0;
    margin-top: 20px;
    font-size: 18px;
}

.image-success img {
    width: 90%;
}

.count-stories .circle-big {
    position: relative;
    width: 114px;
    height: 114px;
}

.count-stories .circle-big svg {
    width: 114px;
    height: 114px;
}

.count-stories .circle-big .bg {
    fill: none;
    stroke-width: 10px;
    stroke: #d5d0d0;
}

.count-stories .circle-big .progress {
    fill: none;
    stroke-width: 10px;
    stroke: #5897fc;
    stroke-linecap: round;
    stroke-dasharray: 266;
    stroke-dashoffset: 45;
    transform: rotate(-240deg);
    transform-origin: 50% 50%;
    animation: big 1.5s ease-in-out;
}

.count-stories .circle-big .text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    font-size: 24px;
    text-align: center;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.count-stories {
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
}

.inner-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collected {
    width: 60%;
}

.collected h5 {
    font-weight: 400;
    font-size: 22px;
}

.collected p {
    font-size: 20px;
}

.collected p span {
    font-weight: 600;
}

.second-inner {
    display: flex;
    gap: 20px;
}

.down {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 15px;
}

.down span {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    background-color: #5897fc3d;
    align-items: center;
    border-radius: 50%;
}

.down span i {
    font-size: 18px;
}

.span-count p {
    margin: 0;
    font-weight: 300;
    font-size: 15px;
}

.down h5 {
    font-weight: 700;
    font-size: 22px;
}

.down-two {
    margin-bottom: 40px;
}

.down-two p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
}

.down-two h5 {
    font-weight: 700;
    font-size: 26px;
}

.count-stories.two {
    padding-top: 20px;
}

.income {
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.count-stories.three {
    height: max-content;
    padding: 15px;
}

.span-count-income {
    display: flex;
    gap: 20px;
    align-items: center;
}

.span-count-income-one p {
    margin: 0px 0 5px;
}

.span-count-income-one h5 {
    font-size: 30px;
    margin: 0;
}

.span-count-income span {
    width: 40px;
    height: 40px;
    background-color: pink;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.span-count-income h4 {
    margin: 0;
}

.span-count-income span i {
    font-weight: 900;
    color: #f70072;
}


/* Stories end */


/* Testimonial */

.testimonial .image-testimonial img {
    width: 90%;
    border-radius: 10px;
}

.testimonial-slide {
    padding: 40px 20px;
}

.slider-parent {
    margin-top: -150px;
    cursor: pointer;
}

.testimonial_box-top {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
    box-shadow: 5px 5px 20px rgba(152, 193, 217, 0.493);
}

.testimonial_box-icon {
    padding: 10px 0;
}

.testimonial_box-icon i {
    font-size: 25px;
    color: #14213d;
}

.testimonial_box-text {
    padding: 10px 0;
}

.testimonial_box-text p {
    color: #293241;
    font-size: 14px;
    line-height: 20px;
    text-align: start;
    margin-bottom: 0;
}

.testimonial_box-img {
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
}

.testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
}

.testimonial_box-name {
    padding-top: 10px;
}

.testimonial_box-name h4 {
    font-size: 20px;
    line-height: 25px;
    color: #293241;
    margin-bottom: 0;
}

.testimonial_box-job p {
    color: #293241;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
}

.content--testimonial {
    width: 85%;
}

.content--testimonial h5.heading {
    color: #e55865;
}

.content--testimonial h5.heading:before {
    content: "";
    width: 40px;
    height: 3px;
    display: inline-block;
    background-color: #e55865;
    vertical-align: middle;
    margin-right: 10px;
}

.content--testimonial h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section_grey {
    background: #f5f7fa;
    padding-bottom: 50px;
}

.product-services h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.product-services .card {
    padding: 20px;
    background-color: #fff;
    border: none;
    border-radius: 7px;
    box-shadow: 0px 0px 4px 0px #e1ddfc;
    height: 330px;
    display: flex;
    gap: 20px;
}

.product-services .row {
    row-gap: 25px;
}

.product-services .card .service_icon {
    text-align: center;
}

.product-services .card .service_icon img {
    width: 80px;
    height: 80px;
}

.product-services .card .content h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-services .card .content p {
    font-size: 16px;
    color: #6b717b;
}

@media screen and (max-width:767px) {
    .site-logo {
        width: 5rem;
    }
    ul.menu {
        padding: 0;
        margin: 20px;
    }
    ul.menu li.nav-item {
        margin: 10px;
    }
    ul.menu li.nav-item a.nav-link {
        padding: 10px 10px;
    }
    .navbar-block.is-active {
        height: auto;
    }
    ul.dropdownmenu {
        width: 100%;
        position: relative;
        box-shadow: none;
        background-color: transparent;
        border: none;
    }
    ul.dropdownmenu li {
        margin-left: 20px;
        border: none;
    }
    ul.dropdownmenu li a.dropdown-item {
        padding: 5px 10px;
        width: 100%;
    }
    .common-gap-hero {
        margin-top: 30px;
        padding: 0 15px;
    }
    .banner_desc {
        width: 100%;
        margin-bottom: 40px;
    }
    .banner_section .banner_desc .title h1 {
        font-size: 43px;
        margin-bottom: 20px;
    }
    .banner_section .banner_img .image_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .banner img {
        margin-left: 0px;
        width: 100%;
    }
    .common-gap {
        margin-top: 70px;
        padding: 0px 15px;
    }
    .cource_card {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .cource_card .desc {
        width: 100%;
    }
    .cource_card .card {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        background-color: transparent;
        padding: 0;
    }
    .success.stories {
        padding: 30px;
    }
    .second-inner {
        width: 100%;
        display: contents;
    }
    .right-count h2 {
        margin-top: 20px;
        font-size: 34px;
    }
    .right-count p {
        font-size: 16px;
    }
    .product-services h2 {
        font-size: 34px;
    }
    .product-services p {
        font-size: 16px;
    }
    .product-services .card {
        height: auto;
    }
    .cource_card .card .cources {
        width: 100%;
        background-color: #fff;
        margin-bottom: 20px;
        border-radius: 20px;
    }
    .testimonial .image-testimonial img {
        width: 100%;
    }
    .content--testimonial {
        width: 100%;
        margin-top: 40px;
    }
    .content--testimonial h2 {
        font-size: 34px;
    }
    .slider-parent {
        margin-top: 0;
    }
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .site-logo {
        width: 7rem;
    }
    ul.menu {
        padding: 0;
        margin: 20px;
    }
    ul.menu li.nav-item {
        margin: 10px;
    }
    ul.menu li.nav-item a.nav-link {
        padding: 10px 10px;
    }
    .navbar-block.is-active {
        height: auto;
    }
    ul.dropdownmenu {
        width: 100%;
        position: relative;
        box-shadow: none;
        background-color: transparent;
        border: none;
    }
    ul.dropdownmenu li {
        margin-left: 20px;
        border: none;
    }
    ul.dropdownmenu li a.dropdown-item {
        padding: 5px 10px;
        width: 100%;
    }
    .common-gap-hero {
        margin-top: 30px;
        padding: 0 15px;
    }
    .banner_desc {
        width: 100%;
        margin-bottom: 40px;
    }
    .banner_section .banner_desc .title h1 {
        font-size: 43px;
        margin-bottom: 20px;
    }
    .banner img {
        margin-left: 0px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .common-gap {
        margin-top: 70px;
        padding: 0px 15px;
    }
    .cource_card {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .cource_card .desc {
        width: 100%;
    }
    .cource_card .card {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        background-color: transparent;
        padding: 0;
    }
    .success.stories {
        padding: 30px;
    }
    .second-inner {
        width: 100%;
        display: contents;
    }
    .right-count h2 {
        margin-top: 20px;
        font-size: 34px;
    }
    .right-count p {
        font-size: 16px;
    }
    .product-services h2 {
        font-size: 34px;
    }
    .product-services p {
        font-size: 16px;
    }
    .product-services .card {
        height: auto;
    }
    .cource_card .card .cources {
        width: 100%;
        background-color: #fff;
        margin-bottom: 20px;
        border-radius: 20px;
    }
    .testimonial .image-testimonial img {
        width: 100%;
    }
    .content--testimonial {
        width: 100%;
        margin-top: 40px;
    }
    .content--testimonial h2 {
        font-size: 34px;
    }
    .slider-parent {
        margin-top: 0;
    }
    .banner_section .row {
        display: flex;
        flex-direction: column;
    }
    .banner_section .row .col-md-6 {
        width: 100%;
    }
    .banner_section .banner_img .image_grid .banner:nth-child(2) {
        gap: 0;
    }
    .second-inner .count-stories {
        width: 90%;
    }
    .count-stories {
        width: 90%;
    }
    .inner-counter {}
    .count-stories .circle-big .bg {
        r: 36;
    }
    .count-stories .circle-big .progress {
        r: 36;
        stroke-width: 7px;
    }
    .product-services .col-md-4 {
        width: 50%;
    }
}