@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    overflow: auto;
    overflow-x: hidden;
}

/* root */

:root {
    --main-bg-color: linear-gradient(
        90deg,
        rgba(255, 247, 255, 0.997),
        rgb(220, 220, 220)
    );
    --main-color: linear-gradient(
        90deg,
        rgba(255, 247, 255, 0.997),
        rgb(253, 120, 239)
    );

    --main-color-dark: linear-gradient(
        90deg,
        rgba(255, 131, 255, 0.997),
        rgb(255, 255, 255)
    );
    --nav-bg: #ffffff;
    --nav-txtColor: #000000;
    --nav-padding: 10px;
    --menu-hover-color: rgb(7, 7, 7);
    --nav-tfs: 20px;
    --menu-hl: rgb(121, 121, 121);
    --nav-bB: rgba(121, 121, 121, 0.336);
}

/* end root */

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
}

/* nav */

#navbar {
    background: var(--nav-bg);
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--nav-padding);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid var(--nav-bB);
    transition: top 0.3s;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

#navbar.hidden {
    top: -8rem;
}

.nav_logo {
    width: 100px;
    height: 100px;
}

.nav_logo img {
    width: 100%;
    height: 100%;
    mix-blend-mode: darken;
}

.nav_menu ul {
    padding-top: 15px;
    align-items: center;
    display: flex;
    gap: 25px;
}

.nav_menu ul li {
    position: relative;
}

.nav_menu ul li a {
    color: var(--nav-txtColor);
    font-weight: 500;
    font-size: var(--nav-tfs);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.nav_menu ul li a::after {
    content: "";
    transition: all 0.3s;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    background: var(--menu-hl);
    height: 2px;
}

.nav_menu ul li a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    transition: all 0.3s;
    width: 0%;
    background: var(--menu-hl);
    height: 2px;
}

.nav_menu ul li a:hover::after {
    width: 50%;
}

.nav_menu ul li a:hover::before {
    width: 50%;
}

.nav_menu ul li a:hover {
    color: var(--menu-hover-color);
}

.nav_user {
    padding-right: 10px;
}

.nav_user a {
    border: 1px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--nav-txtColor);
    position: relative;
    text-decoration: none;
    font-size: var(--nav-tfs);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* end nav */

/* hero */

:root {


    --footer-txt: rgb(202, 202, 202);
    --border-color: #a7a7a7;
    --hero-up-fw: 600;
    --paragraph: rgb(100, 99, 99);
    --box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    --change-txt-line: linear-gradient(90deg, #2d23a6, rgba(225, 14, 90, 0.99));
}

.hero_section_main {
    padding: 10px 0;
}

.hero_section .up h2,
.change_txt span {
    font-size: 54px;
    line-height: 60px;
    position: relative;
    font-weight: var(--hero-up-fw);
}

.change_txt span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 100%;
    height: 7px;
    border-radius: 20px;
    background: var(--change-txt-line);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

#change_txt {
    text-align: center;
    margin-top: 100px;
    color: var(--main-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.hero_section .middle {
    width: 80%;
    padding-top: 2.5rem;
}

.hero_section .middle p {
    font-size: 18px;
    font-weight: 500;
    color: var(--paragraph);
    padding-bottom: 2rem;
}

.hero_section .bottom a {
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem 3rem;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    border: 1px solid;
    font-weight: 600;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
}

.hero_section .bottom a:hover {
    background: var(--main-color-dark);
}

/* form hero */

.form_hero {
    overflow: auto;
    overflow-x: hidden;
    height: 500px;
    padding: 5px 25px;
    border: 1px solid rgba(219, 219, 219, 0.692);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.form_hero .up h2 {
    font-size: 18px;
    line-height: 40px;
    padding: 0;
    margin: 0;
}

.form_hero .up p {
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: var(--paragraph);
}

.form_hero .up p span {
    color: rgb(0, 0, 0);
}

.form_hero .box-input {
    padding-top: 1rem;
}

.form_hero .box-input .form-input {
    margin: 1rem 0;
    width: 100%;
}

.form_hero .box-input .form-input input {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid var(--border-color);
}

.box-input .form-input select {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid var(--border-color);
}

a {
    text-decoration: none !important;
}

.form-input-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-input-select p {
    font-size: 14px;
}

.form-input-select p a {
    color: var(--main-color);
}

.box-input .bottom {
    width: 100%;
}

.box-input .bottom button {
    width: 100%;
    background: var(--main-color);
    outline: none;
    border: none;
    margin-bottom: 1rem;
    padding: 0.8rem;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.avtar {
    padding-top: 3rem;
}

.avtar .icon {
    display: flex;
    gap: 2px;
}

.avtar .icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.avtar .icon .two {
    position: relative;
    left: -10px;
}

.avtar .icon .three {
    position: relative;
    left: -20px;
}

.avtar p {
    padding-top: 0.5rem;
    width: 60%;
    color: var(--paragraph);
    font-size: 14px;
    font-weight: 500;
}

.nav_menu_icon {
    display: none;
}

@media (max-width: 820px) {
    .nav_main .nav_menu {
        display: none;
    }
    .nav_menu_icon {
        display: block;
    }
    .nav_menu_icon::before {
        font-size: 40px;
    }
    #Login {
        display: none;
    }
    .hero_section .middle {
        width: 100%;
    }
    .hero_section .up h2,
    .change_txt span {
        font-size: 34px;
        line-height: 35px;
    }
}

.mobile_menu ul {
    padding: 0;
}
.mobile_menu ul li {
    margin: 1rem 0;
}
.mobile_menu ul li a {
    color: var(--nav-txtColor);
}
.offcanvas-header {
    border-bottom: 1px solid;
}

/* footer */

footer {
    background: var(--footer-bg);
}

footer p,
footer li a,
footer li p,
.list-unstyled li a {
    color: var(--footer-txt) !important;
}

.footer-heading {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    left: 10px;
}

#footer-b {
    margin-top: 1px;
    padding-top: 5rem;
}
#footer-b footer{
    border-radius: 40px 40px 0 0;
    box-shadow: 0 0 5px 0 rgba(121, 121, 121, 0.336);

}

.footer-menu li {
    position: relative;
    margin: 5px 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.footer-menu li::before {
    content: "";
    display: inline-block;
    width: 10px;
    /* Adjust as needed */
    height: 10px;
    /* Adjust as needed */
    background-image: url("../assets/img/arrow.svg");
    background-size: contain;
    /* Adjust as needed */
    background-repeat: no-repeat;
    margin-left: 5px;
    /* Adjust as needed */
    vertical-align: middle;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.3s;
    /* Add transition effect */
}

.footer-menu li:hover::before {
    opacity: 1;
    /* Show the icon on hover */
}

.footer-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--paragraph);
}

/* fixed */

.bootom-side-fixed {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bootom-side-fixed .wp {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    z-index: 10000;
    background: #fff;
    box-shadow: var(--box-shadow);
    display: grid;
    place-items: center;
    animation: bounce 1s infinite ease-in-out;

    /* Optional vendor prefixes */
    -webkit-animation: bounce 1s infinite ease-in-out;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.footer_icon {
    font-size: 1.5rem;
    animation: bounce-wave 2s infinite ease-in-out;
    display: inline-block;
}

/* Stagger each icon */
.footer_icon:nth-child(1) {
    animation-delay: 0s;
}
.footer_icon:nth-child(2) {
    animation-delay: 0.8s;
}
.footer_icon:nth-child(3) {
    animation-delay: 1.8s;
}
.footer_icon:nth-child(4) {
    animation-delay: 2.9s;
}

@keyframes bounce-wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


.bootom-side-fixed .wp img {
    color: #2d23a6;
    z-index: 10000;

}

.btn-red {
    --tw-bg-opacity: 1;
    background: var(--main-color) !important;
    --tw-text-opacity: 1;
    color: #150909 !important;
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
        0 4px 6px -4px var(--tw-shadow-color);
    --tw-shadow-color: rgba(240, 0, 55, 0.2);
    --tw-shadow: var(--tw-shadow-colored);
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.btn-red:hover {
    background: var(--main-color-dark) !important;
}
.nav-tabs .nav-link.active {
    background: var(--main-color) !important;
    color: #fff !important;
}
/* modal */

.login-register {
    position: relative;
}

.login-register .top {
    position: absolute;
    top: -18px;
    left: -35px;
    width: 30px;
    height: 30px;
    background: var(--main-color);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.login-register .modal-content {
    border-radius: 10px;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.input_field {
    position: relative;
    margin: 0.2rem 0;
    transition: all 0.3s;
}

.btn-auth {
    padding-top: 1rem;
}

.input__content {
    transition: all 0.3s;
    position: absolute;
    left: 5px;
    text-transform: capitalize;
    z-index: -1;
    color: #000000;
    display: flex !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.input__content .text {
    font-size: 14px;
    color: var(--paragraph);
}

.input_field input {
    outline: none;
    width: 100%;
    background: transparent;
    border: 1px solid #cfcfcf;
    padding: 0.9rem 0.3rem;
    border-radius: 5px;
}

.input_field input:focus {
    border: 1px solid #dfdfdf;
}

.show_hide {
    position: absolute;
    right: 5px;
    top: 14px;
    color: #000;
    font-weight: 600;
}

/* featered course */

:root {
    --shadow: rgba(132, 146, 166);
}

.featured_course {
    padding: 1rem 0;
}

.featured_course .box {
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--box-shadow);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.featured_course .main-box .up h2 {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
}

.featured_course .main-box .middle {
    margin: 1rem 0 5rem 0;
}

.featured_course .main-box .middle p {
    font-size: 18px;
    color: var(--paragraph);
    font-weight: 500;
}

.featured_course .mdi::before {
    font-size: 30px;
    color: var(--main-color);
}

.featured_course .buttom p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feater_content {
    padding: 0.5rem 0;
}

.feater_content h3 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
}

.feater_content h3::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 5px;
    left: 0px;
    bottom: -3px;
    background: var(--change-txt-line);
}

@media (max-width: 786px) {
    .mobile_height {
        padding: 2rem;
    }
    .feater_content h3 {
        font-size: 25px;
    }
    .feater_content h3::before {
        width: 50%;
    }
    .featured_course .main-box .up h2 {
        font-size: 20px;
    }
    .featured_course .main-box .middle p {
        font-size: 14px;
    }
    .featured_course .mdi::before {
        font-size: 25px;
        color: var(--main-color);
    }
    .featured_course .buttom p {
        font-size: 14px;
    }
}

/* comments */

.comments_main {
    position: relative;
}

.heart {
    display: flex;
    align-items: center;
    gap: 5px;
}

.heart img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.heart h2 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.comments_main .owl-stage-outer {
    padding: 1.2rem 0;
}

.comments_main .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    gap: 10px;
}

.comments_main .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.comments_main .owl-dots .owl-dot.active {
    background-color: var(--main-color) !important;
}

.comments_main .box {
    width: 350px !important;
    cursor: grab;
    height: 350px !important;
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.comments_main .box:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.comments_main .box .img {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comments_main .box .img h3 {
    font-size: 25px;
    font-weight: 600;
}

.comments_main .box .img p {
    color: var(--paragraph);
    font-weight: 500;
}

.comments_main .box img {
    width: 80px !important;
    height: 80px !important;
    border: 5px solid var(--main-color);
    border-radius: 50%;
    object-fit: cover;
    background: #c5c2ec;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.comments_main .box .content {
    padding: 1rem 0rem 0 1rem;
}

.comments_main .box .content p {
    color: var(--paragraph);
    font-weight: 500;
}

.comments_main .owl-nav .owl-prev {
    position: absolute;
    width: 50px;
    bottom: 50%;
    left: -12px;
    height: 50px;
    border-radius: 50%;
    background: #e0043734 !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.comments_main .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    right: 13px;
    bottom: 50%;
    height: 50px;
    border-radius: 50%;
    background: #e0043734 !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* join cominutiy */

:root {
    --back-gb: linear-gradient(
        124.35deg,
        rgb(250, 211, 211) 29.7%,
        rgb(254, 237, 237) 74.19%
    );
}

.banner_wp_community {
    margin: 1.5rem 0 !important;
    background: var(--back-gb);
    border-radius: 0.375rem;
    padding: 3rem !important;
    display: flex;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
}

.banner_wp_community .left {
    width: 80%;
}

.banner_wp_community .left h3 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 2rem;
    line-clamp: 2;
}

.banner_wp_community .left p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    padding-bottom: 2rem;
    line-clamp: 2;
}

.banner_wp_community .left .btn-red {
    padding: 0;
}
.banner_wp_community .left a {
    font-size: 20px;
    display: block;
    padding: 0;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100% !important;
    font-weight: 700;
    line-clamp: 2;
}

.banner_wp_community .right {
    width: 50%;
    display: flex;
    align-items: center;
}

.banner_wp_community .right img {
    width: 550px;
    object-fit: cover;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.banner_wp_community .right img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media (max-width: 986px) {
    .banner_wp_community {
        gap: 2rem;
        flex-direction: column;
    }
    .banner_wp_community .right img {
        width: 400px;
    }
    .banner_wp_community .left,
    .banner_wp_community .right {
        width: 100%;
    }
}

@media (max-width: 786px) {
    .banner_wp_community {
        padding: 1rem !important;
    }
    .banner_wp_community .right img {
        width: 485px;
    }
}

@media (max-width: 786px) {
    .banner_wp_community {
        padding: 2 0.5rem !important;
    }
    .banner_wp_community .right {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .banner_wp_community .right img {
        width: 385px;
    }
    .banner_wp_community .left h3 {
        font-size: 18px;
        text-align: left;
        padding-bottom: 1rem;
    }
    .banner_wp_community .left p {
        font-size: 14px;
        text-align: left;
        padding-bottom: 1rem;
        line-clamp: 2;
    }
    .banner_wp_community .left a {
        font-size: 18px;
        padding-bottom: 1rem;
    }
    .comments_main .box {
        width: 340px !important;
    }
    .comments_main .owl-nav .owl-next {
        right: -10px;
    }
}

@media (max-width: 456px) {
    .banner_wp_community .right img {
        width: 280px;
    }
}
@media (max-width: 350px) {
    .banner_wp_community .right img {
        width: 200px;
    }
}

.follow-us h4 {
    font-weight: 600;
    font-size: 38px;
    color: #ffffff;
}
@media (max-width: 986px) {
    .follow-us h4 {
        font-size: 28px;
    }
}
@media (max-width: 786px) {
    .follow-us h4 {
        font-size: 20px;
    }
}

.made-with h4 {
    color: #ffffff;
}

/* about */

.page_banner {
    width: 100%;
    height: 266px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_banner img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.page_banner h1 {
    font-size: 3em;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
}

.pages {
    padding: 2rem 0;
}

.pages .title_page h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--main-color);
    position: relative;
    padding-bottom: 10px;
}

.pages h1 {
    font-weight: 600;
    font-size: 30px;
    margin: 2rem 0 0;
}

.pages p {
    color: var(--paragraph);
    font-weight: 500;
    font-size: 16px;
}

/* --contact-- */

.form_contact .input__content p {
    margin-top: 10px;
    margin-left: 5px;
}

.form_contact .input_field {
    margin: 1rem 0;
}

.contact_box {
    background: #fff;
}

.contact_box .contant {
    padding: 1rem 10px;
}

.contact_box .contant p {
    color: var(--paragraph);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact_box .contant p a {
    color: #000;
    font-weight: 600 !important;
}

.contact_box .contant .time {
    padding-bottom: 1rem;
}

.contact_box .contant .time p {
    margin: 0;
}

.title_page h2 {
    font-size: 30px;
}

@media (max-width: 786px) {
    .hide_mobile {
        display: none;
    }
    .pages {
        padding: 1rem 0;
    }

    .page_banner {
        width: 100%;
        height: 200px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page_banner img {
        width: 100%;
        object-fit: cover;
        height: 150px;
    }

    .page_banner h1 {
        font-size: 20px;
    }

    .pages .title_page h1 {
        font-size: 20px;
        font-weight: 600;
        color: var(--main-color);
        position: relative;
    }

    .title_page h2 {
        font-size: 20px;
    }
}

/*
input

*/

.input_best {
    margin-bottom: 20px;
}

.input_best label {
    display: block;
    font-weight: 600;
    color: #333;
}

.styled-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.styled-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
    outline: none;
}

.error-text {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* news */

/* news */

.news_up {
    height: 550px;
}
.news-alerts {
    width: 100%;
    height: 550px;
    padding: 5px;
    overflow: hidden;
    background-color: var(--news-bg);
    border: 1px solid #ccc;
    font-family: "Archivo", sans-serif;
}

.news-alerts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.news-alerts ul li {
    padding: 10px 0px;
}

.news-alerts ul li a {
    color: #000;
    text-decoration: none;
}

.news-alerts ul li a:hover {
    color: #333;
    text-decoration: underline;
}

.new_head {
    background: rgb(208, 208, 208);
    height: 40px;
    display: flex;
    align-items: center;
}
.new_head p {
    padding: 0;
    margin: 0;
    padding: 0 15px;
    font-size: 14;
    font-weight: 600;
    text-transform: capitalize;
}

.news-alert-list li {
    border-bottom: 1px solid rgb(124, 124, 124);
    padding: 0.8rem 1rem !important;
    font-size: 14px;
}
.time_btn,
.news_btn,
.notice_btn {
    border: 1px solid;
    padding: 0.3rem 1rem;
    border-radius: 1px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 700;
    margin: 0 2px;
}
:root {
    --nav-bg: linear-gradient(
        90deg,
        rgba(255, 247, 255, 0.997),
        rgb(255, 182, 248)
    );
    --pati-bg: linear-gradient(
        90deg,
        rgba(255, 247, 255, 0.997),
        rgb(255, 182, 248)
    );
    --nav-color: #fff;
    --active-nav-bg: rgb(255, 255, 255);
    --active-nav-color: rgb(0, 0, 0);
    --hover-nav-bg: rgb(203, 203, 203);
    --news-bg: rgba(255, 255, 255, 0.414);
    --btn-bg: #337ab7;
    --shadow-bg: 0 3px 5px rgba(0, 0, 0, 0.3);
}

:root {
    --notice_btn: #ffb043;
    --news_btn: #380073;
--footer-bg: radial-gradient(
    circle at center,
    #0f2027,
    #203a43,
    #2c5364
);




    --footer-txt: rgb(202, 202, 202);
}
.news_btn {
    padding: 0.2rem 1rem;
    font-size: 12px;
    border-radius: 3px;
    background: var(--news_btn);
    color: #fff;
}
.notice_btn {
    padding: 0.2rem 1rem;
    font-size: 12px;
    background: var(--notice_btn);
    border-radius: 3px;
    color: #fff;
}

/* pati */
@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    position: relative;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 3rem;
    background: var(--pati-bg);
    padding-left: 100%;
}

.ticker {
    display: inline-block;
    height: 3rem;
    white-space: nowrap;
    padding-right: 100%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
    align-items: center;
}

.ticker_item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    font-weight: 700;
    vertical-align: middle;
    line-height: 3rem;
}

.ticker:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.main_slider {
    position: relative;
}

.main_slider .item {
    height: 550px !important;
}

.main_slider .item img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.main_slider .owl-nav .owl-prev {
    position: absolute !important;
    top: 50%;
    left: 0%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_slider .owl-nav .owl-next {
    position: absolute !important;
    top: 50%;
    right: 0%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_slider .owl-nav button {
    font-size: 45px !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.main_slider .owl-dots {
    position: relative;
    top: -12px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.main_slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: rgb(216, 215, 215);
    border-radius: 50%;
    transition: all 0.3s;
}

.main_slider .owl-dots .owl-dot.active {
    width: 50px;
    border-radius: 5px;
    background: rgb(21, 91, 255);
}

@media (max-width: 992px) {
    .nav_menu_center {
        margin: 0 0;
    }

    .nav_main {
        padding: 0.5rem 0;
    }

    .main_slider .item {
        height: 350px !important;
    }

    .main_slider .item img {
        height: 100%;
        width: 100%;
        object-fit: fill;
    }

    .nav_menu_center {
        width: 100%;
    }

    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 762px) {
    .main_slider .item {
        height: 250px !important;
    }

    .navbar-nav {
        padding-top: 1rem;
        width: 100% !important;
    }

    .nav-link {
        padding: 0.8rem 0;
    }

    .top_left_ANCOR .logo img {
        width: 70px;
    }

    .top_left_ANCOR .detail {
        gap: 1px;
        top: 8px;
    }

    .top_nav .detail h2 {
        font-weight: 700;
        font-size: 18px;
    }

    .top_nav .detail P {
        font-size: 12px;
    }

    .nav-link {
        padding-left: 10px;
        border-radius: 5px 5px 0 0;
    }

    .top_nav {
        padding: 5px 0;
    }

    .news_up {
        height: 350px;
    }

    .news-alerts {
        height: 350px;
    }

    .teachers .teacher img {
        height: 180px;
    }

    .teachers .teacher p {
        padding: 0;
        padding-top: 10px;
    }

    .dec_about {
        padding-top: 1rem;
    }

    .dec_about h1 {
        font-weight: 400;
        text-align: center;
        font-size: 26px;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 462px) {
    .main_slider .item {
        height: 200px !important;
    }

    .top_left_ANCOR .logo img {
        width: 60px;
    }

    .top_right .logo img {
        width: 40px;
    }

    .top_left_ANCOR .detail {
        gap: 1px;
        top: 8px;
    }

    .top_nav .detail h2 {
        font-weight: 600;
        font-size: 16px;
    }

    .top_nav .detail P {
        font-size: 10px;
    }

    .nav-link {
        padding-left: 5px;
        border-radius: 5px 5px 0 0;
    }

    .top_nav {
        padding: 5px 0;
    }

    .nav-link {
        border-top: 1px solid rgb(189, 189, 189);
        border-bottom: 1px solid rgb(189, 189, 189);
    }
    .cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.btn_btn {
    background: var(--main-color);
    padding: 0.5rem 2rem;
    color: #0c0c0c;
    position: relative;
    font-weight: 600;
    top: 5px;
    border-radius: 5px;
}

.btn_btn:hover {
    background: var(--main-color-dark);
    color: #fff;
    top: 0px;
}

.section_card {
    background: var(--main-bg-color);
}
.cards {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.font-size-title{
    font-size: 25px !important;
}

@media(max-width:986px){
    .cards {

    grid-template-columns: repeat(3, 1fr);
}
.font-size-title{
    font-size: 20px !important;
}
}
@media(max-width:786px){
    .cards {

    grid-template-columns: repeat(2, 1fr);
}
.font-size-title{
    font-size: 16px !important;
}
}

.card-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    &:hover {
        .image {
            filter: blur(1.4px);
            transform: scale(1.5);
            overflow: hidden;
            transition: all 0.3s linear;
        }
        .card-bottom {
            transform: translate(0%, -50%);
            transition: all 0.8s ease;
            background-color: rgba(110, 122, 92, 0.7);
        }
    }
}

.card-top {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.card-bottom {
    width: 100%;
    position: absolute;
    z-index: 20;
    display: nonee;
    top: 50%;
    background-color: rgba(110, 122, 92, 0);
    padding: 100px 20px;
    color: #ffffff;
    transform: translate(100%, -50%);
}

.top-text {
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

.bottom-text {
    font-size: 15px;
}

.card .button {
    position: relative;
    display: block;
    outline: none;
    cursor: pointer;
    margin-top: 25px;
    border: none;
    border-radius: 3px;
    background-color: #f8961e;
    color: #ffffff;
    padding: 5px 20px;
}

.card_btn_txt {
    position: absolute;
    bottom: 0px;
    z-index: 20;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 10px;
}

.section_notice_plac {
    margin: 2rem 0;
}

.nav-tabs {
    display: flex;
    gap: 10px;
    transition: all 0.3s;
}

.nav-tabs button {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.3rem;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}
.nav-tabs button:hover {
    color: #000;
}

.nav-tabs .nav-link.active {
    color: #ffffff;
    background: #000000 !important;
}
.notice_items {
    padding: 1.2rem;
    border: 1px solid rgb(114, 114, 114);
}
.notice_items ul {
    padding: 0;
}
.notice_items ul li {
    border-bottom: 1px dotted;
}
.notice_items ul li p {
    padding: 0.2rem 0.4rem;
    border-radius: 1px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    width: max-content;
    margin: 5px;
}
.notice_items ul li a {
    color: #000;
    font-size: 12px;
}
.notice_items ul li a:hover {
    text-decoration: underline;
}

.top_title {
    position: relative;
    top: 5px;
    border-top: 5px solid #285690;
    padding: 0.5rem;
    box-shadow: var(--shadow-bg);
}

.top_title p {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}



.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu li a {
    color: #fff; /* White text */
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Underline effect */
.footer-menu li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff69b4; /* Pink highlight */
    transition: width 0.3s ease;
}

/* Hover effect */
.footer-menu li a:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.footer-menu li a:hover::after {
    width: 100%;
}
