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

:root {
    --primary: #90c553;
    --secondary: #110000;
    --blue: #005aab;
    --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;
}

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);
}

.error {
    color: red;
}
/*--------------------------------------------------------------
# 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: 115px;
}

#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: #8dbb41;
}

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

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

/*--------------------------------------------------------------
# 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: #8dbb41;
    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(--primary);
    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(--primary);
    border-bottom: 2px solid var(--primary);
}

.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: #8dbb41;
}

.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;
}


@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: #8dbb41;
}

@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: #8dbb41;
    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: #8dbb41;
}

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

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

#hero {
    background: url("../img/green-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    height: 70vh;
    color: var(--grey);
    position: relative;
    overflow: hidden;
}
#hero h5 {
    font-size: 16px;
    font-weight: 600;
}
#hero h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 0px;
}
#hero h6 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0px;
}
img.ellipse-one {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0.2;
    z-index: 1;
    width: 200px;
    height: 200px;
    /* left: 3px; */
}
.zoom-in-zoom-out-one {
    margin: 24px;
    width: 50px;
    height: 50px;
    animation: zoom-in-zoom-out-one 2s ease-out infinite;
}
/* .hero-img img {
    border: 5px solid var(--grey);
    border-radius: 20px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
   
} */

.hero-img img {
    border: 5px solid var(--grey);
    border-radius: 20px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    z-index: 999;
    width: 300px !important;
    height: 300px;
    object-fit: cover;
    z-index: 999;
}
.hero-img .floating-one {
    transform: translatey(0px);
    animation: float-one 6s ease-in-out infinite;
}
.hero-img .floating-two {
    transform: translatey(0px);
    animation: float-two 6s ease-in-out infinite;
}
img.ellipse-two {
    position: absolute;
    right: 1px;
    bottom: -100px;
}

.breadcrumb {
    height: auto;
    background: url("../img/green-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    color: var(--grey);
}
.breadcrumb a {
    color: var(--grey);
    font-size: 14px;
}

@keyframes float-one {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-50px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float-two {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(50px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes zoom-in-zoom-out-one {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.3, 1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1, 1);
    }
}

/*--------------------------------------------------------------
# TITLE
--------------------------------------------------------------*/

.title h6 {
    font-size: 14px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.title h5 {
    font-size: 33px;
    font-weight: 800;
    color: #191919;
}

/*--------------------------------------------------------------
# COURSE
--------------------------------------------------------------*/

.courses {
    background: var(--grey);
}
.course-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #ebebeb;
}
.course-card img {
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}
.course-card:hover {
    box-shadow: 0px 4px 30px 0px rgba(135, 189, 75, 0.35);
}
.course-card h6 {
    color: rgba(17, 0, 0, 0.8);
    font-size: 18px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# WHY CHOOSE US
--------------------------------------------------------------*/

.blue-card {
    background: var(--blue);
    border-radius: 20px;
    color: var(--grey);
    position: relative;
    overflow: hidden;
}
.green-card {
    background: var(--primary);
    border-radius: 20px;
    color: var(--grey);
    position: relative;
    overflow: hidden;
}
.why-choose-us .ellipse {
    position: absolute;
    opacity: 0.2;
    left: -100px;
    bottom: -100px;
}
.why-choose-us-content,
.why-choose-us-img {
    z-index: 1;
    color: var(--grey);
}
.why-choose-us-img img {
    border-radius: 200px;
    border: 5px solid #fff;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
}
.why-choose-us-content h3 {
    font-size: 28px;
    font-weight: 800;
}
.why-choose-us-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
}
.why-choose-img img {
    border-radius: 20px;
    object-fit: cover;
}
.why-choose-us-main-content {
    background: var(--light-green);
    border-radius: 20px;
    height: 100%;
}

/*--------------------------------------------------------------
# BANNER TYPE
--------------------------------------------------------------*/

.banner-type {
    background: url("../img/green-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    color: var(--grey);
    position: relative;
    overflow: hidden;
}
.banner-type h4 {
    font-size: 43px;
    font-weight: 800;
}
.banner-type p {
    font-size: 16px;
    color: var(--grey);
    font-weight: 400;
}
img.ellipse-two {
    position: absolute;
    opacity: 0.2;
    bottom: revert-layer;
}

/*--------------------------------------------------------------
# LATEST NEWS
--------------------------------------------------------------*/
.latest-news {
    background: var(--grey);
}
.latest-news-box {
    border-radius: 20px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    text-align: left;
    min-height: 460px;
}
.latest-news-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}
.latest-news-box span {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
}
.latest-news-box h6 {
    font-size: 18px;
    font-weight: 600;
}
.latest-news-box p {
    font-size: 10px;
    font-weight: 600;
}

.gallery-box {
    border-radius: 20px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    text-align: left;
}

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;
}
.latest-news .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;
}

.aside-content {
    background: #faf9f6;
    border-radius: 15px;
    border: 1px solid #ebebeb;
}
.recent-event-img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    object-fit: cover;
    display: flex;
    border-radius: 10px;
    border: 2px solid #fff;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
}
.recent-event-img img {
    width: 60px;
    height: 60px;
}
.recent-event-list h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0052a2;
}
.recent-event-list h5 {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 500;
}
.recent-event-list span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}
.recent-event-content {
    display: grid;
    align-content: space-between;
    font-weight: 500;
}

.latest-news-img-detail img {
    object-fit: cover;
    width: 100%;
    height: 350px;
    border-radius: 20px;
}
.latest-news-detail-box h6 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0px;
}
.latest-news-detail-box span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
form.comments {
    background: #90c55336;
    border-radius: 15px;
}
/* Maximum lines */
.max-lines {
    display: block; /* or inline-block */
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 3.6em;
    line-height: 1.8em;
}

.not-found {
    width: 50%;
}

.aside-content {
    position: sticky;
    top: 120px;
    background: rgb(250, 249, 246);
    border-radius: 15px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(235, 235, 235);
    border-image: initial;
}

/*--------------------------------------------------------------
# LOAD MORE
--------------------------------------------------------------*/

.load-more {
    display: block;
    display: none;
}

a#seeMore {
    display: block;
    opacity: 0.7;
}

a#seeMore:hover {
    opacity: 1;
}
.course-card:hover h6 {
    color: #90c553;
}

/*--------------------------------------------------------------
# FOORTER
--------------------------------------------------------------*/
footer {
    background: var(--secondary);
    color: var(--grey);
}
footer p {
    color: var(--grey);
    font-size: 12px;
}
.disable {
    pointer-events: none;
    opacity: 0.7;
}
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
}

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

}
.utek-btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 10px 25px !important;
    border-radius: 40px;
    border: 2px solid var(--primary);
}
/*--------------------------------------------------------------
# BREADCRUMB
--------------------------------------------------------------*/
.breadcrumb {
    background: var(--primary);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 130px;
}

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

/*--------------------------------------------------------------
# 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: 11px;
}

@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 25s linear infinite;
    display: flex;
    width: calc(250px * 12);
}
.affiliations .slider .slide {
    height: 100px;
    width: 250px;
    padding: 6px;
}
.affiliations .slider .slide img {
    object-fit: contain;
}

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

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

.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;
}
.gallery-section .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block;
}
a.whatsapp-fixed {
    position: fixed;
    RIGHT: 3px;
    bottom: 75px;
    flex-direction: column;
    z-index: 996;
}
a.whatsapp-fixed img{
    width: 60px;
    height: 60px;
}
a.whatsapp-fixed p {
    font-size: 10px;
    BACKGROUND: #6bc45a;
    color: #fff;
    PADDING: 5PX;
    PADDING-BOTTOM: 2px;
    font-weight: 600;
    border-radius: 7px;
}
.banner-type h1 {
    font-size: 43px;
    font-weight: 800;
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/
@media screen and (max-width: 990px) {
    #hero {
        min-height: 100vh;
         padding: 20px 0px;
    }
    #hero h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 600px) {
    #hero {
        min-height: 85vh;
        padding: 25px 0px;
        height: auto;
    }
    #hero h2 {
        font-size: 30px;
    }
    .hero-img {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
    }
    .hero-img img {
        width: 300px !important;
        height: 300px;
    }
    #header {
        height: 100px;
    }
    #header .logo img {
        max-height: 55px;
    }
    #topbar {
        font-size: 16px;
        height: 25px;
    }
    .breadcrumb {
        height: 175px;
        margin-bottom: 0px;
    }
    .scrolled-offset {
        margin-top: 100px;
    }
    .hero-img .floating-two, .hero-img .floating-one {
        animation: none;
    }
    .hero-content{
        text-align: center;
    }
}


#topbar .social-links a {
    color: var(--white);
    padding: 7px 12px;
    display: inline-block;
    line-height: 1px;
    transition: .3s;
}
