﻿/* Brand Colors */
*, *, *:after, *:before {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
/*    transition: all 0.2s ease-in-out;*/
}

::-moz-selection {
    background-color: #6CB422;
    color: #fff;
}

::selection {
    background-color: #6CB422;
    color: #fff;
}

html, body {
    /*    font-family: "Roboto", sans-serif !important;*/
    font-weight: 400;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }
}

html.nprogress-busy {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

div, header, nav, footer, section, aside, article {
    display: block;
}

a {
    color: #6CB422;
    text-decoration: none;
    transition: all 0.05s ease-in !important;
    font-size: 1rem;
}

    a:hover {
        text-decoration: none !important;
        color: #6CB422;
    }

p {
    font-size: 1rem;
    color: #2F2F30;
    font-weight: 400;
}

@media (max-width: 576px) {
    p {
        font-size: 14px;
    }
}

ul {
    margin: 0;
    padding: 0;
}

    ul li {
        list-style-type: none;
        font-size: 1rem;
        position: relative;
    }

/*img {
    width: 100%;
}*/

hr {
    border-color: #f1f3f6;
    opacity: 1;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

    .section-title h1, .section-title h2, .section-title h3, .section-title h4, .section-title h5, .section-title h6 {
        font-size: 40px;
        color: #000;
        font-weight: 700;
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .section-title h1, .section-title h2, .section-title h3, .section-title h4, .section-title h5, .section-title h6 {
        font-size: 28px;
    }
}

.btn-primary {
    background: #6CB422;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent !important;
    min-width: 80px;
    text-align: center;
}

    .btn-primary:hover {
        background: none;
        color: #6CB422;
        border: 1px solid #6CB422 !important;
        transition: all 0.3s ease-in-out;
    }

    .btn-primary:active {
        transform: scale(0.95);
        transition: all 0.3s ease-in-out;
    }

    .btn-primary:focus {
        outline: none;
        box-shadow: none;
    }

.btn-secondary {
    background: #fff;
    color: #6CB422;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent !important;
    min-width: 80px;
    text-align: center;
}

    .btn-secondary:hover {
        background: none;
        color: #fff;
        border: 1px solid #fff !important;
        transition: all 0.3s ease-in-out;
    }

    .btn-secondary:active {
        transform: scale(0.95);
        transition: all 0.3s ease-in-out;
    }

    .btn-secondary:focus {
        outline: none;
        box-shadow: none;
    }

header {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    header .top-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        width: 100%;
        margin-left: 15px;
    }

    header .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        width: 100%;
        /*        margin-left: 15px;*/
    }



    header .mobile-menu {
        display: none;
    }

    header .logo img {
        max-width: 315px;
    }

    header .dropdown-submenu {
        position: relative;
    }

        header .dropdown-submenu .dropdown-menu {
            top: 10px !important;
            left: 10px;
            margin-top: -1px;
        }

        header .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }

    header .nav-item {
        display: flex;
        align-items: center;
        justify-content: right;
        /*        gap: 20px;*/
        padding-right: 0px;
        margin: -25px;
    }

        header .nav-item ul.nav {
            /*            display: flex;*/
             display: -webkit-inline-box;
            gap: 20px;
        }

            header .nav-item ul.nav li a {
                color: #000;
                font-size: 22px;
                font-weight: 500;
            }

                header .nav-item ul.nav li a:hover {
                    color: #6CB422;
                }

            header .nav-item ul.nav .dropdown-toggle {
                padding: 0;
            }

        header .nav-item button {
            background: #6CB422;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 28px;
            border-radius: 50px;
            border: 1px solid #6CB422;
        }

            header .nav-item button:hover {
                background: #fff;
                color: #6CB422;
                transition: all 0.3s ease-in-out;
            }

        header .nav-item .menu-items ul a {
            font-size: 22px !important;
            color: #000;
            font-weight: bold;
        }

#closeMenuBtn {
    display: none;
}

@media (max-width: 768px) {
    #closeMenuBtn {
        display: block;
    }

    header .row {
        display: contents !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        width: 100%;
        margin-left: 15px;
    }

    header .nav {
        display: none !important;
    }

        header .nav.active {
            position: absolute;
            top: 50px;
            left: -79px;
            width: 100%;
            min-width: 300px;
            flex-direction: column;
            z-index: 2;
            /*            background-color: #fff;*/
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
            display: block !important;
        }

    header .mobile-menu {
        display: block;
    }

    header .logo img {
        max-width: 250px;
    }

    header .nav-item {
        /*        justify-content: center;*/
        padding: inherit;
        margin: -5px !important;
    }
}

.hero-wrapepr .carousel-item img {
    max-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    min-height: 600px;
}

.hero-wrapepr .slider-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, #6CB422 90%);
}

    .hero-wrapepr .slider-caption .caption-text {
        max-width: 570px;
        margin-left: -8px;
        margin-top: 15%;
    }

    .hero-wrapepr .slider-caption p {
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .hero-wrapepr .slider-caption h1, .hero-wrapepr .slider-caption h2, .hero-wrapepr .slider-caption h3, .hero-wrapepr .slider-caption h4, .hero-wrapepr .slider-caption h5, .hero-wrapepr .slider-caption h6 {
        color: #fff;
        font-weight: 700;
        font-size: 52px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

.hero-wrapepr .slider-action {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hero-wrapepr .slider-action button {
        background: #fff;
        color: #6CB422;
        border: none;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        border: 1px solid #fff;
    }

        .hero-wrapepr .slider-action button:hover {
            background: transparent;
            color: #fff;
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }

@media (max-width: 768px) {
    .hero-wrapepr .slider-caption {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        max-width: 100%;
        padding: 20px;
        background: none;
    }

        .hero-wrapepr .slider-caption h1, .hero-wrapepr .slider-caption h2, .hero-wrapepr .slider-caption h3, .hero-wrapepr .slider-caption h4, .hero-wrapepr .slider-caption h5, .hero-wrapepr .slider-caption h6 {
            font-size: 22px;
        }

    .hero-wrapepr .slider-action {
        bottom: 10px;
        justify-content: center;
    }

    .hero-wrapepr .caption-text {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 20px;
        margin-top: 50% !important;
        border-radius: 10px;
    }

    .hero-wrapepr img {
        min-height: 450px !important;
    }
}

.flokker-wrapper {
    background-color: #F1F3F6;
    padding: 80px 0;
}

    .flokker-wrapper .flokker-list {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
    }

        .flokker-wrapper .flokker-list .flokker-item a {
            width: 150px;
            height: 90px;
            background-color: #fff;
            border: 1px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border-radius: 8px 8px 0 0;
            border-bottom: 3px solid #6CB422;
        }

            .flokker-wrapper .flokker-list .flokker-item a:hover {
                background: linear-gradient(91deg, #6CB422 0%, #6CB422 100%);
            }

                .flokker-wrapper .flokker-list .flokker-item a:hover p {
                    color: #fff;
                }

                .flokker-wrapper .flokker-list .flokker-item a:hover h1 {
                    color: #fff;
                }

            .flokker-wrapper .flokker-list .flokker-item a h1 {
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 32px;
                color: #6CB422;
            }

            .flokker-wrapper .flokker-list .flokker-item a p {
                margin: 0;
                color: #A5ADBA;
                font-size: 18px;
            }

@media (max-width: 768px) {
    .flokker-wrapper {
        padding: 40px 0;
    }

        .flokker-wrapper .flokker-list {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .flokker-wrapper {
        padding: 40px 0;
    }

        .flokker-wrapper .flokker-list {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
}

.calander-wrapper {
    padding: 80px 0;
}

    .calander-wrapper .container {
        background-color: #fff;
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .calander-wrapper .section-title {
        padding: 15px 20px;
        border-bottom: 1px solid #f1f3f6;
        margin: 0;
    }

    .calander-wrapper .calander-list {
        padding: 20px;
    }

    .calander-wrapper .calander-item {
        display: flex;
        margin-bottom: 10px;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        border-radius: 10px;
        border: 1px solid transparent;
    }

        .calander-wrapper .calander-item:hover {
            border: 1px solid #6CB422;
        }

            .calander-wrapper .calander-item:hover .date {
                background-color: #6CB422;
            }

                .calander-wrapper .calander-item:hover .date p {
                    color: #fff;
                }

        .calander-wrapper .calander-item .calander-content {
            width: calc(100% - 120px);
        }

            .calander-wrapper .calander-item .calander-content p {
                margin-bottom: 0;
                font-size: 18px;
            }

        .calander-wrapper .calander-item .date {
            width: 80px;
            height: 80px;
            background-color: #F1F3F6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

            .calander-wrapper .calander-item .date p {
                margin-bottom: 0;
                color: #6CB422;
                font-size: 20px;
                line-height: 18px;
            }

@media (max-width: 768px) {
    .calander-wrapper {
        padding: 40px 0;
    }
}

.news-wrapper {
    padding-top: 80px;
}

    .news-wrapper .news-item {
        background-color: #fff;
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        border: 1px solid #f1f3f6;
        overflow: hidden;
        min-height: 360px;
    }

        .news-wrapper .news-item:hover {
            border: 1px solid #6CB422;
        }

            .news-wrapper .news-item:hover .thumb img {
                transform: scale(1.05);
                transition: all 0.3s ease-in-out;
            }

        .news-wrapper .news-item .thumb img {
            width: 100%;
            max-height: 215px;
            min-height: 215px;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: center;
            object-position: center;
            transform-origin: bottom;
        }

        .news-wrapper .news-item .date {
            display: inline-block;
            border-radius: 24px;
            background-color: #F1F3F6;
            padding: 0 10px;
            font-size: 14px;
            color: #6CB422;
            margin-bottom: 10px;
            position: absolute;
            z-index: 2;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
        }

        .news-wrapper .news-item .content {
            padding: 15px;
        }

            .news-wrapper .news-item .content .title {
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #000;
                height: 70px;
                overflow: hidden;
            }

@media (max-width: 768px) {
    .news-wrapper {
        padding: 40px 0;
    }

        .news-wrapper .container {
            display: flex;
            flex-direction: column;
        }

        .news-wrapper .news-item {
            margin-bottom: 15px;
        }
}

footer .credit {
    text-align: center;
}

    footer .credit .container {
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #828282;
    }

    footer .credit p {
        margin-bottom: 0;
        font-size: 14px;
    }

    footer .credit img {
        max-width: 100px;
    }

footer .time .text-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

    footer .time .text-center i {
        color: #848484;
    }

    footer .time .text-center a {
        margin: 0;
        font-size: 18px;
        color: #2F2F30;
    }

        footer .time .text-center a:hover {
            color: #6CB422;
        }

        footer .time .text-center a:nth-child(2) {
            padding: 0 30px;
            border-left: 1px solid #BEBEBE;
        }

footer .contact .container {
    display: flex;
    justify-content: space-between;
    background-color: #6CB422;
    padding: 20px;
    align-items: center;
    border-radius: 12px;
}

    footer .contact .container .social-media {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

        footer .contact .container .social-media .text {
            display: flex;
            flex-direction: column;
        }

            footer .contact .container .social-media .text a {
                font-size: 18px;
                font-weight: bold;
                color: #fff;
            }

            footer .contact .container .social-media .text p {
                font-size: 14px;
                margin: 0;
            }

        footer .contact .container .social-media .items {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

            footer .contact .container .social-media .items:hover .icon {
                background: #6CB422;
                border: 1px solid #fff;
            }

                footer .contact .container .social-media .items:hover .icon i {
                    color: #fff;
                }

        footer .contact .container .social-media .icon {
            width: 40px;
            height: 40px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            border-radius: 8px;
        }

            footer .contact .container .social-media .icon i {
                font-size: 24px;
                color: #6CB422;
            }

@media (max-width: 992px) {
    footer .credit .container {
        flex-direction: column;
    }

    footer .time .text-center {
        flex-direction: column;
        gap: 10px;
        padding: 20px 10px !important;
    }

        footer .time .text-center a {
            padding: 0;
            border: 0 !important;
        }

    footer .contact .container {
        flex-direction: column;
    }

        footer .contact .container .emails {
            width: 100%;
            margin-top: 10px;
            gap: 10px;
            flex-direction: column;
        }

            footer .contact .container .emails .items {
                width: 100%;
                flex-direction: column;
            }

    footer .social-media {
        width: 100% !important;
        border: 0 !important;
        flex-direction: column;
        gap: 10px;
    }

        footer .social-media .text {
            width: calc(100% - 40px);
        }

            footer .social-media .text a {
                font-size: 14px !important;
            }
}

header .dropdown-menu {
    padding: 15px;
    top: 10px !important;
    left: 10px;
    margin-top: -1px;
}

dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
}



/*# sourceMappingURL=style.css.map */


/*calender css */
.section-wrap {
    padding-bottom: 70px;
}

    .section-wrap .almanakkii .almanakkii-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

        .section-wrap .almanakkii .almanakkii-list .info {
            width: calc(100% - 65px);
        }

            .section-wrap .almanakkii .almanakkii-list .info p {
                margin: 0;
                font-size: 14px;
                color: #000;
            }

        .section-wrap .almanakkii .almanakkii-list .date {
            width: 55px;
            height: 55px;
            background-color: #6CB422;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            font-size: 14px;
            padding: 2px;
        }

        .section-wrap .almanakkii .almanakkii-list .almanakkii-items {
            border: 1px solid #A5ADBA;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            margin-bottom: 20px;
        }

            .section-wrap .almanakkii .almanakkii-list .almanakkii-items:hover {
                background-color: #f1f3f6;
            }

    .section-wrap .class-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

        .section-wrap .class-list li {
            width: calc(50% - 10px);
            display: flex;
            justify-content: space-between;
            background-color: #f1f3f6;
            border-radius: 42px;
            padding: 10px;
            align-items: center;
            border: 1px solid #f1f3f6;
        }

            .section-wrap .class-list li a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 2;
            }

            .section-wrap .class-list li:hover {
                border-color: #0C75B0;
            }

            .section-wrap .class-list li .class {
                width: 30px;
                height: 30px;
                border: 1px solid #0C75B0;
                display: grid;
                place-content: center;
                color: #0C75B0;
                border-radius: 50%;
                font-size: 18px;
                text-transform: uppercase;
            }

            .section-wrap .class-list li .class-info {
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .section-wrap .class-list li .class-info .name {
                    color: #0C75B0;
                    font-size: 18px;
                }

                .section-wrap .class-list li .class-info .std {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background-color: #6CB422;
                    color: #fff;
                    display: grid;
                    place-content: center;
                    font-size: 22px;
                    font-weight: bold;
                }
.MenuArrowSubNav {
    float: right;
    color: #6CB422;
    padding: 5px 20px;
}

@media (max-width: 786px) {
    .col-xs-12.col-md-8.col-lg-9.padding-left-30 {
        margin-left: 5px !important;
    }
    .subpage-title {
        position: relative;
        margin-top: 5px !important;
    }
}
.dl-submenu {
    display: none;
}
.subpage-title {
    position: relative;
    margin-top: 40px;
}
.class .box {
    background-color: #6CB422;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 30px !important;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    z-index: 2 !important;
    border: none;
}
    .class .box p {
        margin-bottom: 0;
        color: #fff;
    }
    
    .class .box.mid {
        width: 140px;
        height: 140px;
    }
        .class .box.mid i {
            font-size: 48px;
        }
   .class .box.sml {
        width: 115px;
        height: 115px;
   }
    .class .box.sml i {
         font-size: 42px; 
    }
   .class .box.big {
        height: 170px;
        width: 170px;
    }
    .class .box.big i {
        font-size: 60px;
    }

    .class .box::after {
        content: '';
        position: absolute;
        color: #6CB422!important ;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        background-color: #fff;
        z-index: -1;
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .class .box:hover::after {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }
    .class .box:hover p, .class .box:hover i {
        color: #6CB422;
        z-index: 2;
    }
.class .box:hover {
        cursor: pointer;
        -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1), 0px 0px 100px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1), 0px 0px 100px rgba(0, 0, 0, 0.1);
    }
    .class .box:hover p, .class .box:hover i {
        color: #6CB422;
        z-index: 2;
    }

.ri-open-arm-line:before {
    content: "\efb1";
}
@media (min-width: 315px) and (max-width: 576px) {
    .class .box.sml, .class .box.mid, .class .box.big {
        flex-direction: column;
        width: 200px !important;
        align-items: center;
        height: 200px !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
}

section.sidebar-widget .container.news-details > .row:first-child {
    margin-top: 100px !important;
}

section.sidebar-widget .container.news-details .row {
     margin-top: 0px !important; 
}
    .icookiebot-wrapper #cookieSettingsButton{
    display: none !important;
}

a#cookieSettingsButton{
    display: block !important;
}

header.top-head .row {
    width: 100% !important;
    align-items: center;
    justify-content: space-between;
    top: 15px;
}

.top-head {
    height: 80px !important;
    float: left;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: inline-flex ! important;
    /* transition: all 0.2s ease-in-out; */
}