@import url("./reset.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

*:root {
    --black: #202020;
    --white: #fff;
    --primary: #CDCF22;
    --gray: #f5f5f5;
    --box-shadow: 0px 3px 10px 0px rgba(63, 112, 248, 0.15);
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/art-bg.png");
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    z-index: -1;
    filter: invert(64%) sepia(44%) saturate(31%) hue-rotate(72deg) brightness(336%) contrast(91%);
}

body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.03);
    z-index: -1;
}

.text-primary {
    color: var(--primary) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-gray {
    color: var(--gray);
}

.text-10 {
    font-size: 10px;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.text-18 {
    font-size: 18px;
}

.text-20 {
    font-size: 20px;
}

.text-24 {
    font-size: 24px;
}

.text-28 {
    font-size: 28px;
}

.text-30 {
    font-size: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.py-40 {
    padding: 40px 0;
}

.btn-lg {
    background: var(--primary);
    box-shadow: var(--box-shadow);
    border: 0;
    height: 45px;
    padding: 0 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-lg:hover {
    background: var(--black);
    color: var(--primary);
}

.row {
    row-gap: 24px;
}

.student-statistics-item {
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.student-statistics-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.box-bg {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.text-20 {
    font-size: 20px;
}

.text-14 {
    font-size: 14px;
}

.text-justify {
    text-align: justify;
}


.row_8_4 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 991.98px) {
    .row_8_4 {
        grid-template-columns: 1fr;
    }
}

.row_4_8 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

@media (max-width: 991.98px) {
    .row_4_8 {
        grid-template-columns: 1fr;
    }
}

.row_6_6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 991.98px) {
    .row_6_6 {
        grid-template-columns: 1fr;
    }
}

.grid-6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .grid-6 {
        grid-template-columns: 1fr;
    }
}

.box-bg {
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 20px;
    border-radius: 5px;
}

.header-area {
    background: #000;
    padding: 15px 0;
}

.header-area .head-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .header-area .head-content {
        justify-content: center;
    }
}

.header-area .head-content .header-contect {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area .head-content .header-contect li {
    color: var(--white);
    font-size: 14px;
}

.header-area .head-content .header-contect li strong {
    color: var(--primary);
}

.header-area .head-content .school-name {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-top: 7px;
}

.header-area .head-content .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767.98px) {
    .header-area .head-content .header-right {
        display: none;
    }
}

.header-area .head-content .header-right a {
    color: var(--white);
}

.header-area .head-content .header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area .head-content .header-social a {
    font-size: 16px;
}

.translate-btn {
    margin-left: 10px;
}

.translate-btn button {
    background: var(--white);
    box-shadow: var(--box-shadow);
    border: 0;
    height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.navbarMain {
    box-shadow: var(--box-shadow);
    background: var(--white);
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1568627451);
}

.navbarMain.sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbarMain .nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 18px 0;
}

.navbarMain .nav-link.active {
    color: #000;
    font-weight: 700;
}

.navbarMain .search-dropdown .nav-link {
    background: var(--black);
    color: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbarMain .search-dropdown .dropdown-menu {
    border: 0;
    background: rgb(32, 32, 32);
    min-width: 300px !important;
    padding: 0 13px 15px;
}

@media (max-width: 767.98px) {
    .navbarMain .search-dropdown .dropdown-menu {
        right: -30px;
        top: 110%;
    }

    .navbarMain .search-dropdown .dropdown-menu .form-control {
        height: 38px;
    }
}

.navbarMain .search-dropdown .dropdown-menu::before {
    display: none;
}

.navbarMain .search-dropdown .dropdown-menu .btn {
    background: var(--primary);
    color: var(--black);
    border: 0;
}

@media all and (min-width: 992px) {
    .navbarMain .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbarMain .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.7s;
        margin-top: 0;
        min-width: 233px;
        background: var(--black);
    }

    .navbarMain .nav-item .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -21px;
        left: 15%;
        background: var(--black);
        width: 21px;
        height: 21px;
        z-index: -1;
        -webkit-clip-path: polygon(50% 54%, 0% 100%, 100% 100%);
        clip-path: polygon(50% 54%, 0% 100%, 100% 100%);
    }

    .navbarMain .nav-item .dropdown-menu a {
        padding: 10px 20px;
        color: var(--white);
        font-size: 15px;
        font-weight: 600;
    }

    .navbarMain .nav-item .dropdown-menu a.active,
    .navbarMain .nav-item .dropdown-menu a:hover {
        color: var(--black);
        background: var(--primary);
    }

    .navbarMain .nav-item:hover .nav-link {
        color: #202020;
    }

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

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

@media (max-width: 991.98px) {
    .navbarMain .nav-link {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 15px;
    }

    .navbarMain .offcanvas .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        min-width: 233px;
        background: var(--black);
    }

    .navbarMain .offcanvas .nav-item .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -21px;
        left: 15%;
        background: var(--black);
        width: 21px;
        height: 21px;
        z-index: -1;
        -webkit-clip-path: polygon(50% 54%, 0% 100%, 100% 100%);
        clip-path: polygon(50% 54%, 0% 100%, 100% 100%);
    }

    .navbarMain .offcanvas .nav-item .dropdown-menu a {
        padding: 10px 20px;
        color: var(--white);
        font-size: 15px;
        font-weight: 600;
    }

    .navbarMain .offcanvas .nav-item .dropdown-menu a.active,
    .navbarMain .offcanvas .nav-item .dropdown-menu a:hover {
        color: var(--black);
        background: var(--primary);
    }
}

.news-top {
    background: var(--black);
}

.news-top .news-content {
    position: relative;
}

.news-top .news-content .title {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    background: var(--black);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.news-top .inner {
    margin: 0px 15px;
}

.news-top .inner a {
    color: var(--white);
    padding: 15px 0;
    display: flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.news-top .inner a::before {
    content: "\f0f3";
    font-weight: 900;
    font-family: "Font Awesome 6 free";
    color: var(--primary);
}

.hero-slide {
    margin-bottom: 0 !important;
}

.hero-slide .slick-dots {
    bottom: 20px;
}

@media (max-width: 575.98px) {
    .hero-slide .slick-dots {
        bottom: 10px;
    }
}

.hero-slide .slick-dots li.slick-active button {
    background: var(--black);
}

.hero-slide .slick-dots li button {
    background: var(--white);
    border-radius: 100px;
    width: 12px;
    height: 12px;
}

@media (max-width: 575.98px) {
    .hero-slide .slick-dots li button {
        width: 9px;
        height: 9px;
    }
}

.hero-slide .slick-dots li button::before {
    display: none;
}

.promo-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 575.98px) {
    .promo-content {
        gap: 10px;
    }
}

.promo-content .promo-item {
    height: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

@media (max-width: 575.98px) {
    .promo-content .promo-item {
        height: 140px;
    }
}

.promo-content .promo-item:hover {
    transform: scale(1.1);
}

.promo-content .promo-item::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: var(--primary);
}

.promo-content .promo-item::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: var(--primary);
    display: none;
}

.promo-content .promo-item:nth-child(2)::after {
    display: block;
}

.promo-content .promo-item:nth-child(3)::before {
    display: none;
}

.promo-content .promo-item:nth-child(3)::after {
    display: block;
}

.promo-content .promo-item:nth-child(4)::before,
.promo-content .promo-item:nth-child(5)::before,
.promo-content .promo-item:nth-child(6)::before {
    bottom: unset;
    top: -20px;
}

.promo-content .promo-item:nth-child(5)::after {
    top: -20px;
    display: block;
}

.promo-content .promo-item:nth-child(6)::before {
    display: none;
}

.promo-content .promo-item:nth-child(6)::after {
    top: -20px;
    display: block;
}

.promo-content .promo-item img {
    height: 50px;
}

.promo-content .promo-item .h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-top: 20px;
}

@media (max-width: 575.98px) {
    .promo-content .promo-item .h4 {
        font-size: 14px;
    }
}

.principal-content {
    display: block;
    transition: all 0.3s;
    border-radius: 5px;
}

@media (max-width: 991.98px) {
    .principal-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.principal-content .principal-img {
    width: 200px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .principal-content .principal-img {
        margin: 0;
        width: 102px;
    }
}

.principal-content .principal-img img {
    width: 100%;
}

@media (max-width: 991.98px) {
    .principal-content {
        height: auto;
    }
}

.principal-content:hover {
    transform: scale(1.05);
}

.welcome-content {
    line-height: 1.5;
}

.welcome-content p {
    padding-top: 15px;
}

.notice-board .notice-content {
    display: grid;
    gap: 10px;
}

.notice-board .notice-content .notice-i {
    background: var(--white);
    box-shadow: 0px 2px 8px 0px rgba(63, 112, 248, 0.15);
    display: block;
    padding: 15px;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s;
}

.notice-board .notice-content .notice-i:hover {
    transform: scale(1.03);
}

.notice-board .notice-content .notice-i .text-14 {
    color: var(--primary);
}

.statistics-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.statistics-content .statistics-item {
    text-align: center;
    color: var(--black);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    min-height: 140px;
}

.statistics-content .statistics-item:hover {
    transform: scale(1.04);
}

.statistics-content .statistics-item::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: var(--primary);
}

.statistics-content .statistics-item:nth-child(2)::before {
    right: unset;
    left: -20px;
}

.statistics-content .statistics-item:nth-child(3)::before {
    top: -20px;
    bottom: unset;
}

.statistics-content .statistics-item:nth-child(4)::before {
    bottom: unset;
    left: -20px;
    top: -20px;
}

.statistics-content .statistics-item img {
    height: 40px;
}

.statistics-content .statistics-item .counter {
    padding: 5px 0;
}

.student-statistics-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
}

.student-statistics-content .student-statistics-item {
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .student-statistics-content .student-statistics-item {
        min-height: 100px;
    }
}

.student-statistics-content .student-statistics-item .counter {
    padding-bottom: 10px;
}

.teachers-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 991.98px) {
    .teachers-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .teachers-content {
        grid-template-columns: 1fr;
    }
}

.teachers-content .teachers-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: all 0.3s;
}

.teachers-content .teachers-item:hover {
    transform: scale(1.04);
}

.teachers-content .teachers-item img {
    width: 100px;
}

.teachers-content .teachers-item .text {
    display: grid;
    gap: 20px;
}

@media (max-width: 575.98px) {
    .teachers-content .teachers-item .text-18 {
        font-size: 15px;
    }
}

.news--content {
    display: grid;
    gap: 15px;
}

.news--content .item {
    background: var(--white);
    box-shadow: 0px 2px 8px 0px rgba(63, 112, 248, 0.15);
    display: block;
    padding: 15px;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    gap: 10px;
}

.news--content .item:hover {
    transform: scale(1.03);
}

.news--content .item .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .news--content .item .title {
        font-size: 12px;
    }
}

.news--content .item .date {
    font-size: 13px;
    color: var(--black);
    font-weight: 700;
    padding-top: 10px;
}

@media (max-width: 575.98px) {
    .news--content .item .date {
        font-size: 10px;
    }
}

.news--content .img {
    max-width: 130px;
    max-height: 90px;
}

@media (max-width: 575.98px) {
    .news--content .img {
        max-width: 120px;
        max-height: 90px;
    }
}

.news--content .img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 10px 20px;
    gap: 10px;
    border-radius: 5px;
}

.gallery-nav button {
    border: 0;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 600;
    background: var(--gray);
    border-radius: 5px;
}

@media (max-width: 575.98px) {
    .gallery-nav button {
        font-size: 12px;
        padding: 0 10px;
        height: 30px;
    }
}

.gallery-nav button.active {
    background: var(--primary);
}

.gallery-content {
    margin-top: 10px;
}

.gallery-content .gallery-item {
    margin-top: 10px;
    padding-left: 6px;
    padding-right: 6px;
}

.gallery-content .gallery-item .gallery-img {
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: inline-block;
    transition: all 0.3s;
}

.gallery-content .gallery-item .gallery-img:hover {
    transform: scale(1.03);
}

.footer-area {
    background: var(--black);
}

.footer-area .container {
    max-width: 1190px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo .header-contect {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .header-contect li {
    color: var(--white);
    font-size: 18px;
}

.footer-logo .header-contect li strong {
    color: var(--primary);
}

.footer-logo .school-name {
    color: var(--primary);
    margin-top: 7px;
    font-size: 24px;
}

.footer-info {
    display: grid;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info li i {
    background: var(--primary);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 5px;
}

.contact-info li .h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.contact-info li .h6 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding-top: 3px;
    margin-bottom: 0;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    row-gap: 20px;
}

@media (max-width: 420px) {
    .quick-info {
        grid-template-columns: 1fr;
    }
}

.quick-info a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: all 0.3s;
}

.quick-info a:hover {
    color: var(--primary);
}

.quick-info a::before {
    content: "\f0a4";
    font-family: "Font Awesome 6 free";
    font-weight: 400;
    color: var(--primary);
    margin-right: 6px;
}

.resourse-list {
    display: grid;
    gap: 20px;
}

.resourse-list a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: all 0.3s;
}

.resourse-list a:hover {
    color: var(--primary);
}

.resourse-list a::before {
    content: "\f0a4";
    font-family: "Font Awesome 6 free";
    font-weight: 400;
    color: var(--primary);
    margin-right: 6px;
}

.copyright {
    border-top: 1px solid #9b9b9b;
}

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

.contact-page .contact-info li {
    box-shadow: var(--box-shadow);
    padding: 20px 15px;
    border-radius: 5px;
}

.contact-page .contact-info li .h6 {
    color: var(--black);
}

.form-control {
    outline: none;
    border: 0;
    height: 50px;
    padding: 15px;
    box-shadow: var(--box-shadow);
    font-size: 14px;
    font-weight: 600;
}

#massage-box {
    height: 180px;
}

.gmap_iframe,
.gmap_canvas,
.mapouter {
    width: 100% !important;
    height: 527px !important;
}

@media (max-width: 767.98px) {

    .gmap_iframe,
    .gmap_canvas,
    .mapouter {
        height: 380px !important;
    }
}

@media (max-width: 575.98px) {

    .gmap_iframe,
    .gmap_canvas,
    .mapouter {
        height: 300px !important;
    }
}

.mapouter {
    position: relative;
    text-align: right;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
}

.desc {
    line-height: 1.5;
}

.desc p {
    padding-top: 15px;
}

@media (max-width: 575.98px) {
    .student-content .text-16 {
        font-size: 14px;
    }

    .student-content .text-14 {
        font-size: 12px;
    }
}

/*# sourceMappingURL=style.css.map */



.notice_table tbody tr td {
    border: 1px solid #dddddd;
}

.service_content {
    background-color: #52f70b;
    padding: 20px;
}

.service_content:hover {
    background-color: #3a08e1;
}

.service_link {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
}

.notice_link {
    font-size: 14px;
    border-bottom: 1px solid #0d6efd;
}

.service_link i {
    font-size: 30px;
    color: #000000;
}

.service_link {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    line-height: 26px;
}

.notice_content {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
}

.notice_list_link {
    display: inline-block;
    color: #000000;
    font-size: 16px;
    line-height: 26px;
}

.notice_list ul li {
    margin-bottom: 5px;
}

.application_content p {
    font-size: 16px;
    line-height: 26px;
}