:root {
    --white-color: #fff;
    --black-color: black;
    --theme-color1: #0D1A27;
    --theme-color2: #00c7ff;
    --theme-color3: #0e384c;
    --theme-color4: #1F5FFF;
    --bg-color: #eff8ff;
    --gray-color: #d8dde1;
    --body-font: "Poppins", sans-serif;
    --alter-font: "Outfit", sans-serif;
}
html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 27px;
}
a {
    text-decoration: none !important;
    display: inline-block;
}
p {
    font-family: var(--body-font);
}
p:last-of-type {
    margin-bottom: 0px;
}
img {
    width: 100%;
    height: 100%;
}
h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--alter-font);
    margin-top: 12px;
    color: var(--theme-color1);
}
.container-fluid {
    padding: 0 20px !important;
}
/*=== Common Css Start ===*/
/*--- Section Spacing Start ---*/
.sec-space-40 {
    padding: 40px 0;
}
.sec-space-50 {
    padding: 50px 0;
}
.sec-space-60 {
    padding: 60px 0;
}
.sec-space-70 {
    padding: 70px 0;
}
.sec-space {
    padding: 80px 0;
}
.sec-space-top {
    padding: 80px 0 0;
}
.sec-space-bottom {
    padding: 0 0 80px;
}
.sec-space-bottom-60 {
    padding: 0 0 60px;
}
.sec-space-30 {
    padding: 0 0 30px;
}
/*--- Section Spacing End ---*/
/*====== Common Css End ======*/
/* --- Header Start ---- */
.navbar-brand img {
    width: 100px;
}
.header-contact .call-icon i,
.header-contact .address-icon i {
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    margin: 0px;
    line-height: 50px;
    color: var(--white-color);
    font-size: 18px;
    text-align: center;
    background-color: var(--theme-color3);
    border-radius: 50px;
    cursor: pointer;
    z-index: 1;
}
.header-contact .call-icon i::after,
.header-contact .address-icon i::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    transform: scale(0);
    background-color: var(--theme-color2);
    transition: all 0.3s;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.header-contact .call-icon i:hover::after,
.header-contact .address-icon i:hover::after {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.header-contact .call-content,
.header-contact .address-content {
    padding-left: 12px;
    font-family: var(--alter-font);
}
.header-contact h6 {
    font-size: 16px;
    font-weight: 400;
    color: #555574;
    margin-bottom: 5px;
}
.header-contact p {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color1);
}
.header-contact .address-section {
    padding-left: 30px;
}
.navbar {
    background-color: var(--theme-color3);
}
.nav-item {
    margin: 0 12px;
}
.nav-item .nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 18px 10px;
    font-family: var(--alter-font);
    color: var(--white-color);
    transition: all 0.3s ease-out;
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: var(--theme-color2);
    transition: all 0.3s ease-in;
}
.dropdown-links {
    position: absolute;
    top: 100%;
    background-color: var(--theme-color3);
    width: 400px;
    border-radius: 10px;
    z-index: 999;
    transform: translateY(30px);
    border-top: 3px solid var(--theme-color2);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.nav-item:hover .dropdown-links ,
.nav-item:focus .dropdown-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease-in;
}
.dropdown-links li a {
    display: block;
    color: var(--white-color);
    padding: 15px 10px;
}
.dropdown-links li a:hover {
    color: var(--theme-color2);
}
.dropdown-links li:not(:last-child) a {
    border-bottom: 1px solid #069fe68d;
}
.btn-header-link,
.btn-home-link {
    position: relative;
    padding: 9px 11px 9px 20px;
    background-color: var(--theme-color2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease-out;
}
.btn-header-link::after,
.btn-home-link::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 50px;
    color: var(--theme-color3);
    background-color: var(--theme-color3);
    z-index: -1;
    transition: all 0.3s ease-out;
}
.btn-header-link:hover::after,
.btn-home-link:hover::after {
    width: 100%;
    transition: all 0.3s ease-in;
}
.btn-header-link .btn-icon1,
.btn-home-link .btn-icon1 {
    display: block;
    transition: all 0.3s;
}
.btn-header-link:hover .btn-icon.btn-icon1,
.btn-home-link:hover .btn-icon.btn-icon1 {
    transition: all 0.2s ease-in-out;
    transform: rotate(45deg);
}
.btn-header-link .btn-text,
.btn-home-link .btn-text {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
}
.btn-header-link .btn-icon,
.btn-home-link .btn-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--theme-color1);
    background-color: var(--white-color);
    border-radius: 50px;
    transition: all 0.3s ease-out;
}
.sticky-menu {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, .07);
    z-index: 9999;
    background: #fff;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}
/* --- Header End ---- */
/* Banner Start _________ */
.hero-banner {
    width: 100%;
    height: 500px;
    position: relative;
    background: url(../images/banner/banner1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-text {
    margin-top: 60px;
}
.banner-tag {
    background-image: linear-gradient(90deg, #14126A 0%, rgba(0, 8, 82, 0) 100%);
    width: 250px;
    border-radius: 30px 0 0 30px;
    padding: 6px 20px;
    margin-bottom: 30px;
}
.banner-tag .tag {
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
}
.banner-tag .tag-1::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--theme-color2);
    left: 49px;
    top: 11px;
}
.banner-text h2 {
    color: var(--white-color);
    font-size: 54px;
    font-weight: 800;
}
.banner-text h2 span {
    color: var(--theme-color2);
    text-shadow: 1px 2px var(--white-color);
}
.btn-home {
    display: inline-block;
    margin-top: 30px;
}
.banner-dec {
    margin: 30px 0;
    color: var(--white-color);
}
/* Banner End _________ */
/* About Start _________ */
.about-area {
    width: 100%;
    position: relative;
    background-image: url(../images/bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right, center;
}
.about-image-area {
    position: relative;
}
.about-image-area .image {
    position: relative;
    border-radius: 20px 20px 75px 20px;
    height: 350px;
    overflow: hidden;
}
.about-image-area .image img {
    object-fit: cover;
}
.about-image-area .image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 0;
}
.about-image-area .image:hover::after {
    height: 250%;
    background-color: transparent;
    transition: 600ms linear;
}
.overlay-img {
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 230px;
    height: 230px;
    border-radius: 100%;
    overflow: hidden;
    border: 12px solid var(--white-color);
}
.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay-img::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000c44a1;
}
.about-image-area .overlay-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
    top: 0;
    justify-content: center;
    left: 0;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #ffff;
}
.about-image-area .overlay-text .text-counter {
    font-size: 60px;
    font-weight: 700;
}
.overlay-text .text-counter .count-number {
    font-size: 80px;
}
.overlay-text .text-content {
    font-size: 20px;
}
.about-content {
    padding-left: 20px;
}
.section-head .sub-title {
    color: var(--theme-color2);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--body-font);
    margin-bottom: 0;
}
.section-head .sub-title i {
    color: rgb(255, 0, 81);
}
.section-head .title span {
    color: var(--theme-color4);
}
.abt-feature-cont .feature-icon i {
    width: 36px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--theme-color3);
    color: var(--white-color);
    margin-right: 10px;
}
.feature-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color1);
    font-family: var(--alter-font);
}
.row.abt-feature {
    padding: 20px 0;
    border-top: 1px solid #063d5823;
    border-bottom: 1px solid #063d5823;
    margin: 20px 0 0 0;
}
/* About End _________ */
/* Courses Start________*/
.courses {
    background-image: linear-gradient(180deg, #f8f8ff 100%, #ffffff 30%);
}
.course-content {
    position: relative;
    padding: 10px;
    margin-top: -45px;
}
.course-content-head {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.course-title span {
    color: #0e384c26;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 900;
}
.course-title h6 {
    text-transform: capitalize !important;
    font-weight: 600;
}
.course-card {
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03137254901960784);
    border: 1px solid #f0f0ff;
}
.course-icon i {
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--theme-color3);
    color: var(--white-color);
    font-size: 26px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.course-icon i::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color2);
    transform: scale(0);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.course-icon i:hover::after {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.course-title {
    font-weight: 600;
}
.home-alter-btn {
    font-weight: 600;
    color: var(--theme-color3);
    font-size: 15px;
}
.home-alter-btn i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--white-color);
    transition: all 0.3s ease;
    margin-left: 5px;
    border-radius: 50px;
}
.home-alter-btn:hover {
    cursor: pointer;
    color: var(--theme-color2);
    transition: all 0.3s ease;
}
.home-alter-btn:hover i {
    background-color: var(--theme-color3);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.course-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.course-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 0;
}
.course-image:hover::after {
    height: 250%;
    background-color: transparent;
    transition: 600ms linear;
    cursor: pointer;
}
/* Courses End________*/
/* Notice Start ________*/
.notice {
    position: relative;
    padding: 60px 0;
    margin: 80px 0px !important;
    background: url(../images/banner/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}
.notice-box {
    position: relative;
    background-color: var(--white-color);
    padding: 40px;
}
.notice .title span {
    color: var(--theme-color2);
}
.notice-content {
    text-align: justify;
}
.notice-img img {
    width: 100px;
}
.notice .notice-shadow {
    position: relative;
    text-align: center;
    margin-top: -5px;
}
.inner-abt-shadow {
    position: relative;
    text-align: center;
    margin-top: -8px;
}
/* Notice End ________*/
/* Service Start_______ */
.service {
    position: relative;
    width: 100%;
    height: auto;
    background: url(../images/banner/bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* .service::before{
    position: absolute;content: '';
    width: 100%;
    height: 100%;
    background: url(../images/shadow.png);
} */
.service-box-body h5 {
    font-weight: 600;
}
.service-box-icon i {
    font-size: 36px;
    margin-left: 15px;
    color: var(--theme-color2);
}
.right-box .service-box-icon i {
    margin-right: 15px;
    margin-left: 0;
}
.service-item {
    padding: 20px 10px;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}
.service-item:hover {
    background-color: var(--theme-color3);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.031);
    border-color: var(--theme-color2);
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}
/* Service End_______ */
/* Contact Start __________ */
.contact-content {
    width: 100%;
    position: relative;
    padding-left: 30px !important;
    background: url(../images/map.png);
    background-position: bottom, center;
    background-size: contain;
    background-repeat: no-repeat;
}
.map-area iframe {
    border-radius: 30px;
}
.contact-content {
    padding-left: 20px;
}
.contact-list-item {
    margin-bottom: 30px;
}
.contact-list-item .contact-list-icon {
    font-size: 26px;
    color: var(--theme-color3);
    margin-right: 20px;
}
.contact-list-item .contact-list-text {
    color: var(--theme-color3);
    font-weight: 500;
}
/* Contact End __________ */
/* Cat Start _________ */
.cta-area {
    position: relative;
    z-index: 9;
    margin-bottom: -120px;
}
.cta-wrapper {
    background-image: linear-gradient(180deg, #00c7ff 100%, #1f5fff 30%);
    border-radius: 10px;
    padding: 50px 80px;
    box-shadow: 0px 30px 80px rgba(30, 30, 30, 0.3);
}
.cta-wrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/theme-1-bg.4d9db057.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta-button {
    display: flex;
    gap: 20px;
    justify-content: end;
}
.cta-title {
    color: var(--bg-color);
}
.cta-area .btn-home-link {
    border: 1px solid var(--white-color);
}
.cta-area .btn-home-link .btn-icon {
    background-color: var(--theme-color3);
    color: var(--white-color);
}
.cta-area .btn-home-link:hover {
    border-color: var(--theme-color3);
}
.cta-area .btn-home-link:hover .btn-icon {
    background-color: var(--white-color);
    color: var(--theme-color1);
}
/* End Start _________ */
/* Footer Start _____ */
.footer-area {
    color: #969eb2;
}
.footer-area {
    padding-top: 200px;
    padding-bottom: 80px;
    background-image: url(../images/banner/footer-banner3.jpg);
    background-position: right, center;
    background-size: cover;
    background-repeat: no-repeat;
}
.f-about-logo a{
    width: 150px;
    height: 100%;
    background: #fff;
    text-align: center;
    border-radius: 4px;
}
.f-about-logo img {
    width: 90px;
}
.footer-address {
    background-color: #0D1A27;
    padding: 22px;
    border-radius: 10px;
    /* height: 100%; */
}
.footer-page-link .page-title {
    padding: 0 0 20px 0;
    margin-bottom: 40px;
}
.footer-page-link .page-title::after {
    position: absolute;
    content: '';
    width: 90px;
    height: 3px;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to right, var(--theme-color2), transparent);
}
.page-link-content a {
    color: #969eb2;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}
.page-link-content a:hover {
    color: var(--theme-color2);
    transition: all 0.4s ease;
}
.page-link-content a i {
    margin-right: 6px;
}
.f-info i {
    color: var(--theme-color2);
    font-size: 16px;
    margin-right: 12px;
    margin-top: 6px;
}
.f-info a {
    color: #969eb2;
    cursor: pointer;
    transition: all 0.4s ease;
}
.f-info a:hover {
    color: var(--theme-color2);
    transition: all 0.4s ease;
}
.bottom-footer {
    background-color: #0D1A27;
    padding: 10px 60px;
}
.bottom-footer .copyright-text {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 17px;
}
.bottom-footer li {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #d8dde1;
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
}
.bottom-footer li::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--theme-color2);
    color: var(--white-color);
    transform: scale(0);
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.bottom-footer li:hover::after {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.bottom-footer li i {
    color: #000d44;
    font-size: 18px;
}
.bottom-footer ul {
    gap: 8px;
}
.theme-color {
    color: var(--theme-color2);
}
/* Footer End _____ */
/* CMS Banner Start ______ */
.cms-image {
    position: relative;
    background: url(../images/banner/breadcrumb-banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    height: 160px;
    margin: 30px 0 70px 0;
}
.breadcrumb-title {
    font-size: 34px;
    color: var(--white-color) !important;
    font-weight: 600;
    line-height: 45px;
}
.breadcrumb-bottom {
    position: relative;
    margin-top: -29px;
}
.breadcrumb-bottom .breadcrumb-item {
    font-weight: 500;
}
.breadcrumb-bottom-inner {
    display: inline-flex !important;
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 16px 40px;
}
/* CMS Banner End ______ */
/* About-Inner Start _______ */
.about-inner .about-content ul li {
    margin-bottom: 10px;
}
.about-inner .about-content ul li img {
    width: 14px;
    margin-right: 16px;
}
.abt-instruction {
    position: relative;
    background: url(../images/banner/abt-banner2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    /* height: 400px; */
    border-radius: 10px;
    color: var(--white-color);
}
.abt-instruction h2 {
    color: var(--white-color);
}
.abt-instruction h2 span {
    color: var(--theme-color2);
}
.abt-instruct-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.abt-instruct-content ul li i,
.about-content ul li i {
    width: 20px;
    height: 20px;
    background-color: #00c8ff67;
    color: var(--white-color);
    line-height: 20px;
    text-align: center;
    border-radius: 50px;
    margin-right: 10px;
    font-size: 14px;
}
.about-content ul li i {
    background-color: var(--theme-color3);
}
.abt-instruct-content .home-alter-btn {
    color: var(--white-color);
}
.abt-action {
    background-color: var(--theme-color2);
    padding: 30px;
    color: var(--white-color);
    height: 360px;
}
.abt-action-next {
    background-color: var(--theme-color3);
}
.abt-action-icon i {
    text-align: center;
    font-size: 70px;
    transition: all 0.3s ease-out;
    margin-bottom: 30px;
    color: var(--white-color);
}
.abt-action-icon i {
    color: var(--theme-color3);
}
.abt-action-next .abt-action-icon i {
    color: var(--theme-color2);
}
.abt-action-text .add-title {
    font-size: 30px;
    font-weight: 700;
}
.table thead tr th {
    padding: 12px 8px;
    background-color: var(--theme-color3);
    color: var(--white-color);
    font-weight: 400;
    font-size: 18px;
}
.table-active {
    --bs-table-color-state: var(--bs-table-active-color);
    --bs-table-bg-state: var(--theme-color2) !important;
    /* color: var(--white-color) !important; */
    font-weight: 500;
}
/* About-Inner End _______ */
/* Gallery-Page Start ________ */
.gallery-item {
    width: 100%;
    height: 250px;
}
.gallery-item a {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.gallery-item a img {
    object-fit: cover;
}
.gallery-item a::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 0;
}
.gallery-item:hover a::after {
    height: 250%;
    background-color: transparent;
    transition: 600ms linear;
    cursor: pointer;
}
/* Gallery-Page End ________ */
/* Form Start _______ */
.form-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--theme-color1);
}
.step .stepthree {
    font-size: 18px;
    font-weight: 500;
}
.form-label span {
    color: crimson;
}
.form-control,
.form-select {
    padding: 10px 20px;
    margin-bottom: 16px;
    border-radius: 6px;
    border-color: #000d44;
}
.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--theme-color2);
}
.form-btn {
    padding: 10px 26px;
    background-color: var(--theme-color3);
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 400;
}
.form-btn:hover {
    background-color: var(--theme-color4);
    color: var(--white-color);
}
.frm-step{
    height: 100%;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03137254901960784);
    background-color: var(--gray-color);
    padding: 30px 40px;
    border: 1px solid #f0f0ff;
}
.border-b-2{
    border-bottom: 1px solid  #a0aec0;
}
.form-check-input[type=checkbox]{
    border-radius: 0 !important;
    border-color: var(--theme-color3);
    box-shadow: none !important;
    outline: none !important;
}
/* Form End _______ */
/* Conatct Start ________ */
.contact-address {
    position: relative;
    background-image: linear-gradient(180deg, #f8f8ff 100%, #ffffff 30%);
}
.address-card {
    padding: 40px 20px;
    height: 280px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03137254901960784);
    border: 1px solid #f0f0ff;
    transition: all 0.3s ease-out;
}
.address-icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    background-color: var(--theme-color3);
    color: var(--white-color);
    transition: all 0.3s ease-out;
    margin-bottom: 30px;
}
.address-card:hover {
    background-color: var(--theme-color3);
    margin-top: -10px;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease-in;
}
.address-card:hover i {
    background-color: var(--theme-color2);
    transition: all 0.3s ease-in;
}
.address-text {
    font-size: 14px;
}
.contact-image {
    border-radius: 30px;
    overflow: hidden;
}
/* Conatct End ________ */
/* Courses Start _______ */
.course-inner .course-image {
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
}
.course-image img {
    object-fit: cover;
}
.course-wrapper {
    margin-top: -40px;
}
.course-description .course-title {
    padding: 27px 40px 35px;
    background-color: var(--theme-color3);
    color: var(--white-color);
    border-radius: 0 10px 10px 10px;
    box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
}
.course-description .course-title p {
    display: flex;
    flex-wrap: wrap;
}
.course-description .course-title p span {
    width: 50%;
    font-size: 14px;
    font-weight: 200;
    color: var(--bg-color);
}
.course-description .course-title p span:last-child {
    display: flex;
    justify-content: flex-end;
    /* padding-left: 15px;
    margin-left: 15px; */
    border-left: 1px solid #d8dde168;
}
.course-wrapper .course-highlight {
    padding: 27px 0px 35px;
    background-color: var(--white-color);
    border-radius: 10px 0px 10px 10px;
    box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
}
.course-content h5 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.course-highlight h5 {
    padding: 0 40px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.course-highlight ul li {
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.course-highlight ul li:first-child {
    border-top: 1px solid rgba(30, 30, 30, 0.1);
}
.course-highlight p {
    padding: 0 40px;
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
}
.course-highlight p a {
    color: var(--theme-color3);
    font-weight: 600;
    margin-left: 5px;
}
.course-highlight p a i {
    font-size: 14px;
}
/* Courses End _______ */
/* Sidebar Start _______ */
.sidebar-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}
.sidebar-contact ul li a {
    width: 100%;
    background: var(--theme-color2);
    color: var(--white-color);
    padding-right: 12px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.5s;
    transform: translateX(106px);
}
.sidebar-contact ul li:nth-child(2) a {
    background: var(--theme-color4);
}
.sidebar-contact ul li:nth-child(3) a {
    background: var(--theme-color3);
}
.sidebar-contact ul li a span {
    display: inline-block;
    width: 55px;
    height: 55px;
    font-size: 18px;
    margin-right: 6px;
    border-right: 1px solid var(--white-color);
    text-align: center;
    line-height: 55px;
}
.sidebar-contact ul li:hover a {
    transform: translateX(0px);
    transition: all 0.5s;
}
/* Sidebar End _______ */
.scrollUp {
    border-bottom: 2px solid var(--white-color);
    background-color: var(--theme-color3);
    height: 45px;
    width: 45px;
    right: 5px;
    bottom: 50px;
    color: var(--white-color);
    font-size: 20px;
    text-align: center;
    font-size: 22px;
    display: none;
    line-height: 45px;
    transition: .3s;
}
.scrollUp i {
    font-size: 18px;
    transition: all .3s ease-in-out;
}
.scrollUp:hover i {
    transform: translateY(-5px);
    transition: all .3s ease-in-out;
}

.border-end .msg p{
    font-size: 14px;
    color: #fc6363;
}

.border-end .email {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
}
