/*
[Master Stylesheet] 
Project: Health Care Html
-------------------------------------------------------------------*/

/********************************************************
    body start
*******************************************************/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
    --edu-primary-color: #1579C5;
    --edu-white-color: #ffffff;
    --edu-heading-color: #002B46;
    --edu-font-color: #6E8DA0;
    --edu-transition: all 0.5s;
    --edu-shadow: 6px 6px 25px 0px #FFFFFF4D inset;
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

*::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: var(--edu-primary-color);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Ubuntu", sans-serif;
    color: var(--edu-font-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
    text-decoration: none;
    -webkit-transition: var(--edu-transition);
    -moz-transition: var(--edu-transition);
    -ms-transition: var(--edu-transition);
    -o-transition: var(--edu-transition);
    transition: var(--edu-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: var(--edu-transition);
    -moz-transition: var(--edu-transition);
    -ms-transition: var(--edu-transition);
    -o-transition: var(--edu-transition);
    transition: var(--edu-transition);
    margin: 0;
    padding: 0;
    word-break: break-word;
    color: var(--edu-black-color);
}

h3 {
    font-size: 30px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 500;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
}

/********************************************************
    Button Style
*******************************************************/

.edu_btn {
    min-height: 60px;
    border-radius: 50px;
    min-width: 170px;
    width: fit-content;
    color: var(--edu-white-color);
    background: var(--edu-primary-color);
    padding: 10px 20px;
    border: none;
    transition: var(--edu-transition);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    box-shadow: var(--edu-shadow);
}

.edu_btn:hover{
    color: var(--edu-primary-color);
    letter-spacing: 0.1em;
    border: 1px solid var(--edu-primary-color);
    background-color: transparent;
}

/********************************************************
    Loader Style
*******************************************************/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--edu-white-color);
}

.loader img {
    width: 100px;
}

/********************************************************
    Go to Top Style
 *******************************************************/

.edu_top_icon a {
    display: flex;
    background-color: var(--edu-primary-color);
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: var(--edu-transition) opacity 0;
    visibility: hidden;
    z-index: 1000;
    animation: 4s installation infinite alternate;
    cursor: pointer;
}

@keyframes installation {
    0% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(0px);
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(-20px);
    }
}

.edu_top_icon a:active {
    background-color: var(--edu-primary-color);
}

.edu_top_icon a.show {
    opacity: 1;
    visibility: visible;
}

/********************************************************
    Common Style
*******************************************************/

.edu_section_wrapper {
    padding: 80px 0;
}

.row>* {
    padding-right: calc(var(--bs-gutter-x)* .625);
    padding-left: calc(var(--bs-gutter-x)* .625);
}

.row {
    row-gap: 30px;
}

.edu_body_overlay {
    position: fixed;
    background: rgb(0 0 0 / 40%);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    cursor: zoom-in;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.menu-open .edu_body_overlay {
    opacity: 1;
    visibility: visible;
}

.edu_section_heading {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 610px;
}

.edu_section_heading h5 {
    background-color: var(--edu-primary-color);
    letter-spacing: 0.5em;
    color: var(--edu-white-color);
    box-shadow: var(--edu-shadow);
    border-radius: 50px;
    max-width: fit-content;
    margin: auto;
    padding: 5px 5px 5px 12px;
    text-transform: uppercase;
}

.edu_section_heading h3 {
    color: var(--edu-heading-color);
    margin: 10px 0 15px;
}

/********************************************************
    Header Section Style
********************************************************/

.edu_header_wrapper {
    position: relative;
    transition: var(--edu-transition);
    z-index: 11;
    width: 100%;
    padding: 32px 0;
    background-color: #FFFFFF26;
    box-shadow: 0px 4px 51px 0px #5782A91A;
}

.edu_header_wrapper.fixed {
    position: fixed;
    animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
    top: 0;
    left: 0;
    background-color: var(--edu-white-color);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.edu_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.edu_nav_item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.edu_nav_item ul {
    display: flex;
    gap: 50px;
}

.edu_nav_item ul li a {
    color: var(--edu-heading-color);
    padding: 30px 0;
    position: relative;
}

.edu_nav_item ul li a:hover,
.edu_nav_item ul li a.active {
    color: var(--edu-primary-color);
}

.edu_toggle_btn,
.edu_res_logo {
    display: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 50px;
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--edu-primary-color);
    stroke-width: 4.5;
    stroke-linecap: round;
}

.ham7 .top {
    stroke-dasharray: 40 172;
}

.ham7 .middle {
    stroke-dasharray: 40 111;
}

.ham7 .bottom {
    stroke-dasharray: 40 172;
}

.menu-open .ham7 .top {
    stroke-dashoffset: -132px;
}

.menu-open .ham7 .middle {
    stroke-dashoffset: -71px;
}

.menu-open .ham7 .bottom {
    stroke-dashoffset: -132px;
}

/********************************************************
    Banner Section Style
*******************************************************/

.edu_banner_wrapper {
    background-image: url(../images/banner-bg.png);
    padding: 75px 0 215px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.edu_banner_text {
    max-width: 700px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.edu_banner_text h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.38;
    color: var(--edu-heading-color);
    margin-bottom: 15px;
}

.edu_banner_text h2 span {
    color: var(--edu-primary-color);
}

.edu_banner_text p {
    line-height: 2;
}

.edu_banner_btn {
    display: flex;
    justify-content: center;
    gap: 15px 30px;
    flex-wrap: wrap;
    margin: 40px 0 50px;
    position: relative;
    z-index: 1;
}

.edu_banner_play {
    display: flex;
    align-items: center;
    gap: 15px;
}

.edu_banner_play span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--edu-heading-color);
    box-shadow: var(--edu-shadow);
    border-radius: 50%;
}

.edu_banner_play p {
    color: var(--edu-heading-color);
}

.edu_banner_desktop {
    max-width: 670px;
    margin: auto;
    padding: 1px;
    background: linear-gradient(180deg, rgba(91, 212, 255, 0) 0%, #69B2FF 100%);
    box-shadow: 14.76px 15.9px 45.42px 0px #27628326;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.edu_banner_img {
    background-color: var(--edu-white-color);
    border-radius: 25px;
    overflow: hidden;
    padding: 10px;
}

.edu_banner_desktop p {
    color: var(--edu-white-color);
    font-size: 22px;
    font-weight: 500;
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #FF8689 0%, #FFBE77 100%);
    box-shadow: 16px 14px 30px 0px #FF8B7033;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    right: -45px;
    line-height: 1.1;
    animation: edu_rotateY 3s infinite;
    animation-delay: 1s;
    text-align: center;
}

@keyframes edu_rotateY {
    0% {
        transform: rotateY(0deg);
    }
    20% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.edu_bnrleft,
.edu_bnrright {
    position: absolute;
    animation: edu_ud 3s infinite alternate;
}

@keyframes edu_ud {
    0% {
        transform: translateY(0)
    }
    to {
        transform: translateY(-10px)
    }
}

.edu_banner_img .video_course {
    position: absolute;
    left: -165px;
    top: -28px;
    box-shadow: 13px 14px 40px 0px #27628326;
}

.edu_bnrleft {
    top: 10px;
    left: 0;
}

.edu_bnrright {
    top: 55px;
    right: 0;
}

/********************************************************
    Demo Section Style
*******************************************************/

.edu_demo_wrapper {
    margin-top: -55px;
    padding-bottom: 70px;
}

.edu_demo_list .row {
    row-gap: 50px;
}

.edu_demo_card,
.edu_inner_card {
    max-width: 360px;
    position: relative;
    display: block;
    margin: auto;
}

.edu_demo_bg {
    position: relative;
}

.edu_demo_bg::before {
    position: absolute;
    content: "";
    height: 200px;
    width: calc(100% - 40px);
    background: linear-gradient(90deg, rgba(105, 177, 255, 0.5) -35.63%, rgba(91, 213, 255, 0.5) 135.63%);
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 15px;
    transition: var(--edu-transition);
}

.edu_demo_box,
.edu_inner_box {
    padding: 1px;
    background: linear-gradient(180deg, rgba(91, 212, 255, 0) 0%, #69B2FF 100%);
    box-shadow: none;
    border-radius: 15px;
    transition: var(--edu-transition);
}

.edu_demo_img {
    max-height: 460px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.edu_demo_card:hover .edu_demo_box,
.edu_inner_card:hover .edu_inner_box {
    transform: translateY(-20px);
    box-shadow: 14.76px 15.9px 45.42px 0px #27628326;
}

.edu_demo_img img,
.edu_inner_img img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.edu_demo_text {
    text-align: center;
    position: relative;
    margin-top: 45px;
}

.edu_demo_text h6 {
    letter-spacing: 0.2em;
    color: var(--edu-heading-color);
    text-transform: uppercase;
}

.edu_demo_card:hover .edu_demo_text h6 {
    color: var(--edu-primary-color);
    letter-spacing: 0.4em;
}

.edu_demo_text p {
    margin-top: 5px;
    color: var(--edu-font-color);
}

.edu_demo_bg p {
    color: var(--edu-white-color);
    font-size: 18px;
    font-weight: 500;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #FF8689 0%, #FFBE77 100%);
    box-shadow: 16px 14px 30px 0px #FF8B7033;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    right: -20px;
    line-height: 1.1;
    animation: edu_rotateY 3s infinite;
    animation-delay: 1s;
    text-align: center;
}

/********************************************************
    Inner Page Section Style
*******************************************************/

.edu_inner_wrapper,
.edu_dashboard_wrapper,
.edu_browser_wrapper,
.edu_revolution_wrapper,
.edu_features_wrapper {
    background-color: #F5FAFF;
}

.edu_inner_img {
    max-height: 330px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.edu_inner_text {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.edu_inner_text h6 {
    color: var(--edu-white-color);
    text-transform: uppercase;
    min-width: 190px;
    min-height: 60px;
    border-radius: 50px;
    background-color: var(--edu-heading-color);
    width: fit-content;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border: 1px solid transparent;
}

.edu_inner_card:hover .edu_inner_text h6 {
    color: var(--edu-primary-color);
    letter-spacing: 0.1em;
    border: 1px solid var(--edu-primary-color);
    background-color: transparent;
}

/********************************************************
    Responsive Section Style
*******************************************************/

.edu_responsive_wrapper {
    overflow: hidden;
}

.edu_responsive_img {
    max-width: fit-content;
    margin: auto;
    position: relative;
}

.edu_responsive_img img {
    position: relative;
    z-index: 1;
}

.edu_responsive_img::before {
    content: "";
    position: absolute;
    right: -5px;
    bottom: 60px;
    background-color: #C3E1FF;
    border-radius: 50%;
    width: 240px;
    height: 240px;
}

.edu_responsive_img::after {
    content: "";
    position: absolute;
    left: -175px;
    top: 0;
    background: linear-gradient(180deg, rgba(4, 142, 248, 0.1) -8.05%, rgba(217, 217, 217, 0) 82.2%);
    border-radius: 50%;
    width: 579px;
    height: 579px;
}

/********************************************************
    Dashboards Section Style
*******************************************************/

.edu_dashboard_content {
    max-width: 1030px;
}

.edu_dashboard_inner {
    max-width: 870px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edu_dashboard_text {
    position: relative;
    text-align: center;
}

.edu_dashboard_text h6 {
    text-transform: uppercase;
    color: var(--edu-heading-color);
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-bottom: 25px;
    position: relative;
}

.edu_dashboard_img {
    padding: 1px;
    background: linear-gradient(180deg, rgba(91, 212, 255, 0) 0%, #69B2FF 100%);
    box-shadow: none;
    border-radius: 15px;
    transition: var(--edu-transition);
    position: relative;
    box-shadow: 13px 14px 40px 0px #2762831A;
}

.edu_dashboard_img img {
    border-radius: 15px;
}

.edu_dashboard_text .line {
    position: absolute;
    content: "";
    height: 1px;
    width: 438px;
    background: linear-gradient(90deg, #69B2FF -35.63%, rgb(91 212 255 / 11%) 135.63%);
    top: 62px;
}
.edu_dashboard_text .line span {
    position: relative;
    width: 100%;
    display: flex;
}

.edu_dashboard_text .line span::before,
.edu_dashboard_text .line span::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(90deg, #69B1FF -35.63%, #5BD5FF 135.63%);
    border-radius: 50%;
    top: -7px;
    z-index: 1;
}

.edu_dashboard_text .line span::before {
    left: -7px;
}

.edu_dashboard_text .line span::after {
    right: -7px;
}

.edu_dashboard_inner.student .line {
    right: -40px;
}

.edu_dashboard_inner.instructor .line {
    left: -40px;
}

.edu_dashboard_inner.instructor {
    margin-left: auto;
    margin-top: -130px;
}

.edu_dashboard_inner.student .edu_dashboard_text {
    margin-bottom: 140px;
}

.edu_dashboard_inner.instructor .edu_dashboard_text {
    margin-top: 140px;
}

/********************************************************
    Fonts & icons Section Style
*******************************************************/

.edu_fonts_wrapper {
    overflow: hidden;
}

.edu_font_content {
    position: relative;
    max-width: 570px;
    margin: auto;
}

.edu_font_content::before {
    content: "";
    position: absolute;
    right: -65px;
    bottom: 50px;
    background-color: #C3E1FF;
    border-radius: 50%;
    width: 205px;
    height: 205px;
}

.edu_font_content::after {
    content: "";
    position: absolute;
    left: -125px;
    top: -40px;
    background: linear-gradient(180deg, rgba(4, 142, 248, 0.1) -8.05%, rgba(217, 217, 217, 0) 82.2%);
    border-radius: 50%;
    width: 280px;
    height: 280px;
}

.edu_font_img {
    border-radius: 10px;
    box-shadow: 10.07px 10.85px 30.99px 0px #27628326;
    background-color: var(--edu-white-color);
    max-width: fit-content;
    margin: 0 auto 15px;
    z-index: 1;
    position: relative;
}

.edu_font_img img {
    border-radius: 10px;
}

.edu_font_img.img-3 {
    margin-bottom: 0;
    margin-top: 30px;
}

.edu_font_img.img-3 p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: center;
    background: linear-gradient(90deg, #FF818C -9.26%, #FFC575 110.19%);
    color: var(--edu-white-color);
    text-transform: uppercase;
    max-width: fit-content;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    padding: 2px 13px;
    white-space: nowrap;
}

.edu_font_content .font-1,
.edu_font_content .font-2 {
    position: absolute;
    animation: edu_ud 3s infinite alternate;
    z-index: 1;
    border-radius: 20px;
}

.edu_font_content .font-1 {
    top: 0;
    right: -140px;
    box-shadow: 12px 13px 40px 0px #C957FF26;
}

.edu_font_content .font-2 {
    bottom: 65px;
    left: -140px;
    box-shadow: 12px 13px 40px 0px #62C2FF26;
}

/********************************************************
    Browser Compatibility Section Style
*******************************************************/

.edu_browser_wrapper {
    overflow: hidden;
}

.edu_browser_content {
    position: relative;
    max-width: 830px;
    margin: auto;
}

.edu_browser_content::before {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 160px;
    background-color: #C3E1FF;
    border-radius: 50%;
    width: 107px;
    height: 107px;
}

.edu_browser_content::after {
    content: "";
    position: absolute;
    left: -40px;
    top: -25px;
    background: linear-gradient(180deg, rgba(4, 142, 248, 0.1) -8.05%, rgba(217, 217, 217, 0) 82.2%);
    border-radius: 50%;
    width: 392px;
    height: 392px;
}

.edu_browser_img img {
    position: relative;
    z-index: 1;
}

.edu_browser_content .browser-1,
.edu_browser_content .browser-2 {
    position: absolute;
    box-shadow: 10.07px 10.85px 30.99px 0px #27628326;
    animation: edu_ud 3s infinite alternate;
    z-index: 1;
}

.edu_browser_content .browser-1 {
    left: -160px;
    top: -5px;
}

.edu_browser_content .browser-2 {
    bottom: -55px;
    right: -100px;
}

.edu_browser_icon {
    position: relative;
    background-color: var(--edu-white-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 15px 20px;
    flex-wrap: wrap;
    margin: auto;
    max-width: fit-content;
    box-shadow: 21.04px 22.66px 64.73px 0px #27628326;
}

/********************************************************
    Bootstrap Section Style
*******************************************************/

.edu_bootstrap_wrapper {
    overflow: hidden;
    padding-bottom: 100px;
}

.edu_bootstrap_content {
    max-width: 970px;
    display: flex;
    align-items: center;
    margin: auto;
    gap: 30px 20px;
}

.edu_bootstrap_text {
    max-width: 320px;
    position: relative;
    padding-bottom: 20px;
}

.edu_bootstrap_text h3 {
    color: var(--edu-heading-color);
    margin-bottom: 15px;
}

.edu_bootstrap_text p {
    max-width: 220px;
}

.edu_bootstrap_text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #69B2FF -20.65%, rgba(91, 212, 255, 0) 109.37%);
    bottom: 0;
    left: 0;
}

.edu_bootstrap_img {
    max-width: fit-content;
    position: relative;
}

.edu_bootstrap_img img {
    position: relative;
    z-index: 1;
}

.edu_bootstrap_img::before {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -35px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) -8.05%, rgba(4, 142, 248, 0.1) 82.2%);
    border-radius: 50%;
    width: 215px;
    height: 215px;
}

.edu_bootstrap_img::after {
    content: "";
    position: absolute;
    left: 13%;
    top: -20px;
    background-color: #C3E1FF;
    border-radius: 50%;
    width: 88px;
    height: 88px;
}

/********************************************************
    Revolution Section Style
*******************************************************/

.edu_revolution_wrapper,
.edu_documentation_wrapper {
    overflow: hidden;
    padding-top: 55px;
}

.edu_revolution_content,
.edu_doc_content {
    max-width: 970px;
    display: flex;
    margin: auto;
    gap: 30px 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.edu_revolution_text,
.edu_doc_text {
    min-width: 320px;
    position: relative;
    padding-bottom: 20px;
    margin-top: 105px;
    text-align: right;
}

.edu_revolution_text h3 {
    color: var(--edu-heading-color);
    margin-bottom: 15px;
    max-width: 155px;
    margin-left: auto;
}

.edu_revolution_text p,
.edu_doc_text p {
    max-width: 245px;
    margin-left: auto;
}

.edu_revolution_text::before,
.edu_doc_text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 212, 255, 0) -38.69%, #69B2FF 100%);
    bottom: 0;
    left: 0;
}

.edu_revolution_img,
.edu_doc_img {
    max-width: fit-content;
    position: relative;
}

.edu_revolution_img img,
.edu_doc_img img {
    position: relative;
    z-index: 1;
}

.edu_revolution_img::before {
    content: "";
    position: absolute;
    left: -85px;
    top: 30px;
    background: linear-gradient(179.92deg, rgba(4, 142, 248, 0.1) -7.97%, rgba(217, 217, 217, 0) 111.58%);
    border-radius: 50%;
    width: 225px;
    height: 225px;
}

.edu_revolution_img::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 39%;
    background-color: #C3E1FF;
    border-radius: 50%;
    width: 88px;
    height: 88px;
}

/********************************************************
    Layouts Section Style
*******************************************************/

.edu_layouts_wrapper {
    overflow: hidden;
}

.edu_layout_img {
    position: relative;
    text-align: center;
    max-width: 1030px;
    margin: auto;
}

.edu_layout_1 {
    position: relative;
    z-index: 1;
}

.edu_layout_1 img {
    filter: drop-shadow(14px 26px 30.99px #0B385240);
}

.edu_layout_2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: -115px;
    animation: edu_ud 3s infinite alternate;
}

.edu_layout_3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: -35px;
    animation: edu_ud 3s infinite alternate;
}

.edu_layout img {
    filter: drop-shadow(10.07px 10.85px 30.99px #27628326);
}

/********************************************************
    Features Section Style
*******************************************************/

.edu_feature_card {
    position: relative;
}

.edu_feature_card::before {
    position: absolute;
    content: "";
    height: 100px;
    width: calc(100% - 60px);
    background: linear-gradient(90deg, rgba(105, 177, 255, 0.5) -35.63%, rgba(91, 213, 255, 0.5) 135.63%);
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 15px;
}

.edu_feature_bg {
    padding: 1px;
    transition: var(--edu-transition);
    background: transparent;
    border-radius: 10px;
}

.edu_feature_card:hover .edu_feature_bg {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 4.9%, rgba(42, 167, 255, 0.6) 136.1%);
    box-shadow: 0px 31px 40px 0px #2E7DA940;
    transform: translateY(-20px);
}

.edu_feature_box {
    background-color: var(--edu-white-color);
    border-radius: 10px;
    position: relative;
    text-align: center;
    padding: 50px;
    transition: var(--edu-transition);
}

.edu_feature_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 22px;
}

.edu_feature_icon.icon-1 {
    background: linear-gradient(90deg, #FF4F79 -25.63%, #FFBABA 122.5%);
    box-shadow: 12px 13px 40px 0px #FF889C26;
}

.edu_feature_icon.icon-2 {
    background: linear-gradient(90deg, #52CF56 -26.87%, #CED11A 132.5%);
    box-shadow: 12px 13px 40px 0px #9CD03226;
}

.edu_feature_icon.icon-3 {
    background: linear-gradient(90deg, #49A0FF -23.75%, #5BD5FF 120%);
    box-shadow: 12px 13px 40px 0px #62C2FF26;
}

.edu_feature_icon.icon-4 {
    background: linear-gradient(90deg, #B766FF -23.75%, #E977FF 131.25%);
    box-shadow: 12px 13px 40px 0px #C757FF26;
}

.edu_feature_icon.icon-5 {
    background: linear-gradient(90deg, #FF8689 -21.87%, #FFBE77 128.12%);
    box-shadow: 12px 13px 40px 0px #FFA08026;
}

.edu_feature_icon.icon-6 {
    background: linear-gradient(90deg, #FFA031 -20%, #FFD076 106.25%);
    box-shadow: 12px 13px 40px 0px #FFBD5A26;
}

.edu_feature_icon.icon-7 {
    background: linear-gradient(90deg, #557AFF -23.75%, #A6B9FF 117.5%);
    box-shadow: 12px 13px 40px 0px #7291FF26;
}

.edu_feature_icon.icon-8 {
    background: linear-gradient(90deg, #52CCC2 -21.87%, #8BF2B2 118.75%);
    box-shadow: 12px 13px 40px 0px #73E2B926;
}

.edu_feature_text {
    margin-top: 40px;
}

.edu_feature_text p {
    color: var(--edu-heading-color);
}

/********************************************************
    Documentations Section Style
*******************************************************/

.edu_doc_img::after {
    content: "";
    position: absolute;
    left: 5px;
    top: -10px;
    background-color: #C3E1FF;
    border-radius: 50%;
    width: 110px;
    height: 110px;
}

.edu_doc_img::before {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) -8.05%, rgba(4, 142, 248, 0.1) 82.2%);
    border-radius: 50%;
    width: 215px;
    height: 215px;
}

.edu_doc_text h3 {
    color: var(--edu-heading-color);
    margin-bottom: 15px;
    max-width: 235px;
    margin-left: auto;
}

/********************************************************
    Support Section Style
*******************************************************/

.edu_support_wrapper {
    position: relative;
    z-index: 1;
}

.edu_support_content {
    max-width: 1170px;
    margin: auto;
    background-color: #0A233A;
    background-image: url(../images/support_bg.png);
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 22px 25px 40px 0px #FFFFFF26 inset;
    padding: 50px 50px 0 95px;
}

.edu_support_heading {
    max-width: 370px;
}

.edu_support_heading h5 {
    background-color: var(--edu-primary-color);
    letter-spacing: 0.5em;
    color: var(--edu-white-color);
    box-shadow: var(--edu-shadow);
    border-radius: 50px;
    max-width: fit-content;
    padding: 5px 5px 5px 12px;
    text-transform: uppercase;
}

.edu_support_heading h3 {
    color: var(--edu-white-color);
    margin: 12px 0 15px;
    position: relative;
    max-width: fit-content;
}

.edu_support_heading h3::before {
    position: absolute;
    content: url(../images/support_shape.png);
    left: -33px;
    top: -10px;
}

.edu_support_heading p, .edu_support_heading a {
    color: #6E8DA0;
}

/********************************************************
    Footer Section Style
*******************************************************/

.edu_footer_wrapper {
    background-image: url(../images/footer_bg.png);
    padding: 480px 0 50px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: -420px;
}

.edu_footer_logo,
.edu_footer_text {
    text-align: center;
}

.edu_footer_logo img {
    filter: drop-shadow(15px 12.5px 83.17px #006CCF26);
}

.edu_footer_text h3 {
    font-weight: 400;
    color: var(--edu-heading-color);
    margin-bottom: 10px;
}

.edu_footer_text h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--edu-heading-color);
}

/********************************************************
    Copyright Section Style
*******************************************************/

.edu_copyright_wrapper {
    background-color: #0A233A;
    padding: 20px 0;
}

.edu_copyright_text {
    text-align: center;
}

.edu_copyright_text p {
    color: var(--edu-white-color);
}