/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    /* right: 45px; */
    right: 108px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #FD9929;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/

.header-carousel .owl-carousel-item img{
    height: 50rem;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        /*min-height: 500px;*/
        height: 23rem;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #fd9929;
    border-color: #fd9929;
}

.page-header {
    position: relative;
    overflow: hidden;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7));
    z-index: -1;
    /* place the overlay behind the content */
}

.container {
    position: relative;
    /* ensure content remains above the overlay */
    z-index: 1;
    /* ensure content is above the overlay */
}

/* Adjustments for better visual effect */
/* .bg-primary {
    background-color: #182138;
} */

.text-white {
    color: #fff;
    /* white text color */
}


.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #4d79bc;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #4d79bc;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: #4d79bc17;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: #4d79bc;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #4d79bc !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #4d79bc;
    border-color: #4d79bc;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Extternal Css */

.logo {
    width: 12.6rem;
}

.nav-item {
    font-weight: bolder;
}

#course_point {
    /*height: 33rem !important;*/
    height: 29.7rem !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    /*height: 100px;*/
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
}


.carousel-item {
    display: flex;
    justify-content: center;
    /* border: 2px solid #4d79bc; */
    padding: 1rem;
}

.carousel-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.custom-owl-prev span,
.custom-owl-next span {
    color: #fff;
}

.custom-owl-prev span:hover,
.custom-owl-next span:hover {
    color: #8199a3;
}

.custom-owl-prev,
.custom-owl-next {
    position: absolute;
    top: 38%;
    height: 100%;
    color: #fd9929;
}

.custom-owl-prev {
    left: 7px;
}

.custom-owl-next {
    right: 7px;
}

button:focus,
button:active {
    outline: none;
}

@media (max-width: 768px) {
    .custom-carousel-main {
        margin: 40px 0;
    }

    .carousel-item {
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        padding: 0.2rem;
    }
}

#first_content {
    background-color: #4d79bc17 !important;
}

.box {
    background-color: #fff;
    padding: 10px;
    /* border: 1px solid #4d79bc; */
    perspective: 1000px;
    transition: transform 0.5s ease;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.box:hover {
    transform: rotateY(10deg) rotateX(10deg);
    box-shadow: 0 10px 20px rgb(77 121 188 / 35%);
}

.box img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

.btn-primary-n {
    margin-right: 1rem;
    border: 2px solid #4d79bc;
    color: #4d79bc;
    font-weight: bolder;
}


.container_n {
    max-width: 1200px;
    margin: 6rem auto 0rem;
    padding: 0 15px;
}

#row_n {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem 0 0 -1rem;
}

.box_n {
    position: relative;
    width: 100%;
    height: 23rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 1;
}

.box_n::before,
.box_n::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 31%;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}

.box_n::before {
    filter: blur(30px);
}

.box_n:hover::before,
.box_n:hover::after {
    transform: skewX(0deg) scaleX(1.3);
}

.box_n::before,
.box_n::after {
    background: linear-gradient(315deg, #ffffff, #ff963b);
}

.box_n span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.box_n span::before,
.box_n span::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.box_n span::before {
    top: -40px;
    left: 40px;
}

.box_n span::after {
    bottom: -40px;
    right: 40px;
    transition-delay: -1s;
}

.content_n {
    position: relative;
    width: 90%;
    height: 21rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    transition: 0.5s;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content_n h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.content_n p {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box_n {
        /* height: auto; */
        margin-top: 2rem;
    }

    .content_n {
        /* height: auto; */
        padding: 1rem;
    }
}

.image_area {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    width: 14rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.glassy {
    max-width: 500px;
    background: #4d79bc17;
    box-shadow: 0 8px 15px 0 rgb(58 122 185 / 21%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    height: 28rem;
}

.glassy:hover {
    box-shadow: 0 12px 40px 0 rgba(58, 122, 185, 0.4);
    background: #4d79bc2e;
    transform: translateY(-2px);
}

.textbox {
    margin: 30px;
}

.inner_content {
    margin-top: 1.2rem;
}

#fa_icon {
    color: #FD9929;
    font-size: 1.2rem;
    font-weight: 600;
}

#span_class {
    margin-left: 1rem;
    font-size: 1.2rem;
    color: #FD9929;
    font-weight: 600;
}

.content {
    margin: 1.5rem 0rem 1.5rem 0rem;
}

@media (max-width:786px) {
    .dropdown-item {
        white-space: normal !important;
    }
}

.dropdown-menu {
    position: relative;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    background-color: white;
    z-index: 1000;
}

.dropdown-item {
    cursor: pointer;
    position: relative;
}

.dropdown-item .fas {
    margin-left: 5px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .dropdown-item:hover .dropdown-submenu {
        display: block;
    }

    .dropdown-submenu .dropdown-item:hover .dropdown-submenu {
        display: block;
    }
}

@media (max-width: 786px) {
    .dropdown-submenu {
        position: initial;
        background-color: #eff3f9;
    }
}

#digital_p {
    margin: 1rem 0rem 0rem 0rem;
}

.course-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.course-detail.show {
    max-height: 500px;
}

.course-section {
    border: 2px solid #4d79bc;
    border-top-left-radius: 0.4rem;
    border-top-right-radius: 0.4rem;
    background-color: #f6f6f6;
    box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .15) !important;
    margin-top: 1.5rem;
}

.course-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.4rem 1rem 1rem 1rem;
    border-bottom: 2px solid #4d79bc;
}

.expandbutton:focus {
    outline: none;
    box-shadow: none;
}

#expand_img {
    width: 6rem;
    padding: 1rem 0rem 1rem 0rem;
}

.affiliation-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affiliation-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.required {
    color: red;
}



.ebcf_modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.ebcf_modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.ebcf_close {
    color: #4D79BC;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ebcf_close:hover,
.ebcf_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#id_href {
    color: #52565b !important;
    text-decoration: none;
}

#id_href:hover {
    color: #52565b !important;
}

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.modal-body h1 {
    font-weight: 900;
    font-size: 2.3em;
    text-transform: uppercase;
}

.modal-body a.pre-order-btn {
    color: #000;
    background-color: gold;
    border-radius: 1em;
    padding: 1em;
    display: block;
    margin: 2em auto;
    width: 50%;
    font-size: 1.25em;
    font-weight: 600;
}

.modal-body a.pre-order-btn:hover {
    background-color: #000;
    text-decoration: none;
    color: gold;
}

#advertise_img {
    /*width: -webkit-fill-available;*/
    width: 31rem;
}

@media(max-width:768px) {
    #advertise_img{
        width: -webkit-fill-available;
    }
    
    }
    .blog_image {
        width: -webkit-fill-available !important;
    }

    .blog_content_section {
        margin: 0rem 0rem !important;
    }
}

.blog_content_section {
    padding: 0.5rem;
    font-size: 1.1rem;
    margin: 0rem 9rem;
}

.blog_a {
    color: #fd9929 !important;
}


.justify-content-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.blog_arrow a {
    display: flex;
    align-items: center;
}

.blog_arrow a i {
    font-size: 1.5rem;
}

.blog_arrow a span {
    display: inline-block;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .blog_arrow a span {
        display: none;
    }

    .justify-content-between {
        justify-content: space-around;
    }
}

.float-right {
    position: fixed;
    bottom: 43px;
    right: 33px;
    z-index: 100;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.8rem 0rem 0rem 0rem;
}

.float-right:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
}

.career_span {
    font-weight: bolder;
}

.career_p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.job_detail {
    margin-top: 1.5rem;
}

.read_more_career {
    margin-top: 1.5rem;
}


.box_career_inner {
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    height: 19rem;

}

.responsive-image-gif {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .responsive-image-gif {
        width: 100%;
        height: auto;
    }
}

.position-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.position-tab {
    cursor: pointer;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    margin-bottom: 0.6rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s;
}

.position-tab:hover, .position-tab.active {
    background-color: #3a7ab9;
    color: white;
}

.team-member {
    text-align: center;
    margin-bottom: 20px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 8%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-name, .team-role {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.team-role {
    color: #55555582;
    font-size: 14px;
}

#member_name{
    margin-top: 0.5rem;
}

.map-container {
    overflow: hidden;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.contact-details h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #555;
}

.contact-details p strong {
    color: #333;
}

#contact_row{
    border: 2px solid #3a7ab9;
    border-radius: 0.5rem;
    padding: 0.54rem;
}

.contact_p{
    color: #00000091 !important;
    font-size: 23px !important;
    margin: 0rem 0rem 1.5rem 0rem !important;
}

#fa_contact_fa{
    color: #ff963b;
    margin-right: 1rem;
}

.center_background {
    background: #4d79bc17 !important;
    text-align: center;
    border-color: #4d79bc !important;
    border-radius: 1rem;
    padding: 3rem !important;
    font-size: 1.5rem;
}

.center_background_a{
    text-decoration: none;
    color: black;
}

.home_center_background {
    background: #4d79bc17 !important;
    text-align: center;
    border-color: #4d79bc !important;
    /* border-radius: 1rem; */
    padding: 1rem !important;
    font-size: 1.5rem;
}

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

.placement_img {
    width: -webkit-fill-available !important;
    object-fit: cover;
    height: 100%;
}

.uniform-height {
    min-height: 13rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#placement_img {
    /*height: 13rem;*/
    height: auto;
}

#placement_company_logo {
    width: 12rem;
    height: auto;
}

#placement_image_class {
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1280px) {
    .logo {
    width: 10.6rem !important;
}
}