@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary: #442778;
    --secondary: #000111;
    --red: #e6322c;
    --light-green: rgba(135, 189, 75, 0.07);
    --grey: #faf9f6;
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--secondary);
    overflow-x: hidden;
}

main {
    margin-top: 120px;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-family: var(--secondary-font);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

p {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: var(--secondary);
    line-height: 28px;
    font-weight: 400;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
    border-radius: 50px;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover i {
    color: var(--primary);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    margin-bottom: 10px;
    border: 2px solid var(--primary);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader img {
    width: 100px;
    height: 100px;
    -webkit-animation: animate-preloader 2s linear infinite;
    animation: animate-preloader 2s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: var(--primary);
    font-size: 15px;
    height: 40px;
    padding: 0;
    color: var(--grey);
}

#topbar .contact-info a {
    line-height: 0;
    color: var(--secondary);
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: var(--secondary);
}

#topbar .contact-info i {
    color: var(--secondary);
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

.social-links a {
    color: var(--grey);
    font-size: 16px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: var(--grey);
    transition: all 0.5s;
    z-index: 997;
    height: 130px;
}

#header.fixed-top {
    background: var(--grey);
}

#header .logo {
    font-size: 35px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: var(--primary);
}

#header .logo img {
    max-height: 82px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    margin-left: 5px;
}

.navbar ul .demobtn {
    background-color: var(--primary);
    color: white;
    box-shadow: none !important;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0px 2px 0px;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    white-space: nowrap;
    font-family: var(--secondary-font);
    transition: 0.7s;
    text-decoration: none;
    border-bottom: 3px solid #8dbb4100;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--red);
    border-bottom: 2px solid var(--red);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #f5f5f5;
    box-shadow: 0px 0px 20px rgba(127, 137, 161, 0.111);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: rgb(50, 50, 50);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--primary);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

a.hci-btn,
button.hci-btn {
    background: var(--light-secondary);
    padding: 7px 20px;
    border: 1px solid #b1ffb1;
    border-radius: 40px;
    color: #fff;
}

a.hci-btn:hover,
button.hci-btn:hover {
    border: 1px solid var(--primary);
    border-bottom: 1px;
    box-shadow: 0px 4px 21px 0px rgba(177, 255, 177, 0.75);
    color: var(--primary);
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--primary);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--primary);
    background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/

.carousel-caption {
    position: absolute;
    right: auto;
    bottom: 20%;
    left: 10%;
    /* top: 40%; */
    margin: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    border-radius: 30px;
    padding: 20px;
    width: 60%;
}

.carousel-caption h5 {
    font-size: 40px;
    font-weight: 600;
}

.carousel-caption h6 {
    font-size: 24px;
}

.carousel-caption p {
    color: #fff;
}

.background-overlay {
    background-color: transparent;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
}

/*--------------------------------------------------------------
# TITLE
--------------------------------------------------------------*/
.title h6 {
    color: #041434;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.title h2 {
    font-weight: 700;
    color: var(--primary);
}

/*--------------------------------------------------------------
# WHY CHOOSE US
--------------------------------------------------------------*/
.why-choose-us-section {
    background-image: url("../img/banner/globe.webp");
    height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

@media only screen and (max-device-width: 1366px) {
    .why-choose-us-section {
        background-attachment: scroll;
    }
}

.why-choose-us-section li {
    color: var(--grey);
    line-height: 35px;
}

.why-choose-us-section .title h2,
.why-choose-us-section .title h6 {
    color: var(--grey);
}

/*--------------------------------------------------------------
# COURSES
--------------------------------------------------------------*/

.courses-section {
    background: var(--grey);
}

.courses-box {
    border-radius: 20px;
    border: 1px solid #ebebeb;
    background: #fff;
    text-align: left;
    height: 100%;
}

.courses-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}

.courses-box h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.courses-box p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.courses-box .utek-btn-primary {
    padding: 4px 20px !important;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

/*--------------------------------------------------------------
# HIGHLIGHTS
--------------------------------------------------------------*/
.highlights {
    background-image: url("../img/banner/reading-books-concept-mixed-media.webp");
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.highlights-box h6 {
    color: var(--grey);
    margin-bottom: 0px;
    font-size: 14px;
}

.highlights .title h6,
.highlights .title h2 {
    color: var(--grey);
}
.highlights-icon {
    height: 90px;
    width: 90px;
    background: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.highlights-icon img {
    width: 50px;
    height: 50px;
}

/*--------------------------------------------------------------
# VIDEO
--------------------------------------------------------------*/
.video-bg {
    background: url("../img/banner/video-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    height: 350px;
    border-radius: 20px;
    border: 5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    place-content: center;
    animation: grow 1s infinite;
    justify-content: center;
    align-items: center;
}

@keyframes grow {
    0% {
        box-shadow: 0px 0px 0em var(--primary);
    }

    100% {
        box-shadow: 0px 0px 7em var(--primary);
    }
}

/*--------------------------------------------------------------
# GALLERY
--------------------------------------------------------------*/
.gallery-section {
    background: var(--grey);
}

.gallery-img img {
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 20px;
    height: 300px;
}

.gallery-section .owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav button.owl-next {
    background-color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    filter: drop-shadow(0px 4px 23px rgba(0, 0, 0, 0.1));
    font-size: 30px;
    position: absolute;
    right: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.owl-carousel .owl-nav button.owl-prev {
    background-color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    filter: drop-shadow(0px 4px 23px rgba(0, 0, 0, 0.1));
    font-size: 30px;
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary) !important;
}

.owl-carousel .owl-dots {
    display: none;
}

/*--------------------------------------------------------------
# AFFILIATIONS
--------------------------------------------------------------*/
.affiliations-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliations-box img {
    width: 90px;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer {
    background: color-mix(in srgb, var(--primary), var(--secondary) 90%);
    color: var(--grey);
}

footer p {
    color: var(--grey);
    font-size: 13px;
    line-height: 18px;
    margin-top: 20px;
    font-weight: 300;
}

footer h5,
footer h1 {
    font-size: 16px;
}

footer li,
footer a {
    font-size: 13px;
    list-style: none;
    color: #f5f5f5;
    transition: 0.6s ease-in-out;
}

footer li span {
    font-weight: 600;
    font-size: 12px;
}

footer a:hover {
    color: #fff;
    margin-left: 10px;
}

/* footer ul li::before {
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 2em;
    margin-left: -1em;
}

footer ul li.calender::before {
    content: url("../img/icon/calendar.png");
} */

/*--------------------------------------------------------------
# HIGHLIGHTS
--------------------------------------------------------------*/
.mission-vision {
    background-image: url("../img/banner/bg-books.webp");
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.mission-vision-card {
    padding: 20px;
    border: 5px solid #0b589b0d;
}

.mission-vision-card:hover {
    border: 5px solid #fff;
    background: #00000078;
    box-shadow: 0px 4px 20px 0px #ebebeb;
}

.mission-vision-card h5 {
    color: var(--grey);
    font-size: 30px;
}

.mission-vision-card p {
    color: var(--grey);
}

.breadcrumb {
    background-image: url("../img/banner/breadcrumb.svg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.breadcrumb.contact-page {
    background-image: url("../img/banner/contact-breadcrumb.svg");
}

.breadcrumb h4 {
    color: var(--grey);
    font-size: 30px;
    font-weight: 600;
}

.breadcrumb.course-page {
    background-image: url("../img/courses-breadcrumb.svg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.breadcrumb.course-details-page {
    background-image: url("../img/banner/breadcrumb.svg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    margin-bottom: 0px;
}

.breadcrumb.course-details-page h4 {
    color: var(--grey);
    font-size: 50px;
    font-weight: 600;
    text-align: left;
}

.course-details-page .course-details-page-form {
    background-color: #fff;
    padding: 10px;
}

.course-details-page-form h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.course-details-page-form p {
    font-size: 12px;
    color: var(--primary);
}

.form-control {
    font-size: 14px;
}

section.couses-highlights {
    background: var(--primary);
    color: var(--grey);
}

section.couses-highlights p {
    font-size: 12px;
    color: var(--grey);
}

.accordion {
    max-width: 100%;
}

.accordion-section {
    background-color: #faf9f6;
    border: 1px solid #ddd;
    margin-bottom: 4px;
    overflow: hidden;
}

.accordion-title {
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.accordion-section .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.accordion-section .icon.plus {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
    padding: 10px;
    display: none;
}

.accordion .active {
    display: block;
}

/*--------------------------------------------------------------
# CONTACT PAGE
--------------------------------------------------------------*/
.location-box {
    background: var(--grey);
    padding: 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 5px;
    height: 100%;
    text-align: center;
}
.location-box h6 {
    font-weight: 600;
    font-size: 18px;
}
.location-box p,
.location-box a {
    font-size: 14px;
    line-height: 20px;
    color: var(--secondary);
}
.contact-bg-form {
    background: var(--grey);
}

.certificates {
    background: var(--grey);
}
.certificates img {
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
.error {
    color: red;
    font-size: 10px;
}
.backhome {
    font-size: 25px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}
.affiliations .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.affiliations .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 19);
}
.affiliations .slider .slide {
    height: 100px;
    width: 250px;
    padding: 20px;
}
.affiliations .slider .slide img {
    object-fit: contain;
}
.carousel-item img {
    height: 90vh;
    object-fit: cover;
}

.AddForm .input-group {
    flex-direction: column;
}
.AddForm .input-group > .form-control,
.input-group > .form-select {
    width: 100%;
}
a.whatsapp-fixed {
    position: fixed;
    right: 3px;
    bottom: 75px;
    flex-direction: column;
    z-index: 996;
}
a.whatsapp-fixed img {
    width: 50px;
    height: 50px;
}
a.whatsapp-fixed p {
    font-size: 10px;
    background: var(--primary);
    color: #fff;
    padding: 1px 6px;
    padding-bottom: 0px;
    font-weight: 600;
    border-radius: 7px;
}
.main-web-link a {
    border-bottom: 1px solid #ffffff00;
}
.main-web-link a:hover {
    border-bottom: 1px solid #fff;
}

a.utek-btn,
button.utek-btn {
    background: var(--primary);
    padding: 7px 20px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    border-radius: 100px;
    color: var(--grey);
    border: 0px;
}
a.utek-fixed {
    position: fixed;
    left: 10px;
    bottom: 75px;
    flex-direction: column;
    z-index: 996;
}
a.utek-fixed img {
    width: 80px;
    height: 50px;
}
a.utek-fixed p {
    font-size: 10px;
    background: #90c553;
    color: #fff;
    padding: 1px 6px;
    padding-bottom: 0px;
    font-weight: 600;
    border-radius: 7px;
}

.utek-btn-primary {
    background: var(--primary);
    color: var(--grey) !important;
    padding: 10px 25px !important;
    border-radius: 40px;
    border: 2px solid var(--primary);
}

.utek-btn-primary:hover {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}

.highlights-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.course_view_link:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media screen and (max-width: 600px) {
    .why-choose-us-section {
        height: 100%;
    }

    .breadcrumb {
        height: 175px;
        margin-bottom: 0px;
    }

    .course-button {
        flex-direction: column;
    }
    .carousel-item img {
        height: 80vh;
        object-fit: cover;
    }
    .carousel-caption h5 {
        font-size: 40px;
    }
    .carousel-caption h6 {
        font-size: 24px;
    }
    .carousel-caption p {
        font-size: 14px;
    }
    .carousel-caption {
        width: 80%;

        bottom: 15%;
    }

    #header .logo img {
        max-height: 55px;
    }
    #header {
        height: 95px;
    }
    #topbar {
        font-size: 12px;
        height: 25px;
    }
    main {
        margin-top: 92px;
    }
}
