.html {
    scroll-behavior: smooth !important;
}

.overh {
    overflow-x: hidden;
}

:root {
    /*root:color*/
    --primary-color: #0d2756;
    --dark: #182933;
    --c-gray: #15313f;
    --c-indigo: #1f4761;
    --c-orange: #ffa300;
    --c-yellow: #fec619;
    --c-yellow2: #e29f5b;
    --c-light: #ecf0f1;
    --c-white: #fff;
    /*color*/
    --text-color: #a1a1a1;
    --accent-color: #111;
    --geist-foreground-rgb: 255, 255, 255;
    --border-radius: 12px;

}

.bg-c-1 {
    background-color: var(--dark);
}

.bg-c-2 {
    background-color: var(--c-gray);
}

.bg-c-3 {
    background-color: var(--c-indigo);
}

.bg-c-4 {
    background-color: var(--c-orange);
}

.bg-c-5 {
    background-color: var(--c-light)
}

.bg-c-white {
    background-color: var(--c-white);
    transition: all .2s ease;
}

.bg-c-3:hover {
    background-color: var(--c-indigo);
}

.bg-c-white:hover {
    background-color: var(--c-indigo);
    /* color: var(--c-white); */
}

.bg-c-white:hover>a {
    color: var(--c-white);
}

/* text family */
.fnormal {
    font-family: 'fnormal';
}

.fmedium {
    font-family: 'fmedium';
}

.fbold {
    font-family: 'fbold';
}

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

.text-c-dark {
    color: var(--dark);
}

.text-c-gindigoray {
    color: var(--c-indigo);
}

.text-c-orange {
    color: var(--c-orange);
}

.text-c-yellow {
    color: var(--c-yellow);
}

.text-c-yellow2 {
    color: var(--c-yellow2);
}

.position-absolute {
    position: absolute !important
}

.position-relative {
    position: relative !important
}

.overflow-hidden {
    overflow: hidden;
}

.box-s {
    box-shadow: inset 0 0 0 2000px rgba(7, 10, 11, 0.4);
}

.topbar {
    height: 50px;
    line-height: 44px;
    background-color: #0C244E;
    transition: all 5s;

}

.topbar a,
.topbar i {
    color: #fff;
    transition: all 5s;

}

.topbar a {
    font-size: .95rem;
}

.topbar .links a::after {
    content: ' | ';
    margin: 0 .3rem;
    color: var(--c-orange);
}

.topbar .links a:last-of-type::after {
    content: '';
    margin: 0 .3rem;
    color: var(--c-orange);
}

.lang-link span {
    padding: 3px 5px 1px 4px;
    background-color: rgba(255, 255, 255, .2);
}

.mainmenu,
.mainmenu a {
    font-size: .8rem;
    font-weight: 700;
    color: var(--color1);
}

.menu-links {
    z-index: 200;
    position: relative;
}

.menu-links ul {
    text-align: center !important;
    padding: 7px 0px;
}

.menu-links>ul>li>a {
    position: relative;
}

.menu-links>ul>li>a::after {
    content: ' | ';
    margin: 0 .4rem;
    color: var(--color4);
}

.menu-links>ul>li:last-child a::after {
    content: '';
    width: 0px;
    height: 0px;
    margin-right: 0px;
}

.menu-plus {
    display: none;
}

.logo-content-links a {
    margin-top: .6rem;
    font-size: 1.35rem !important;
    font-family: fbold;
}

/* Open and close menu */
.menu-btn {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    left: 0;
    top: 4.5rem;
    cursor: pointer;
    transition: all .5s ease-in-out;
    /* border: 3px solid #fff; */
}

.menu-btn__burger {
    width: 25px;
    height: 2px;
    background: var(--c-gray);
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(255,101,47,.2); */
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--c-gray);
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(255,101,47,.2); */
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-8px);
}

.menu-btn__burger::after {
    transform: translateY(8px);
}

.menu-btn.open .menu-btn__burger {
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg);
}

.search-btn {
    width: 30px;
    height: 30px;
    float: left;
    cursor: pointer;
}

.search-input {
    width: 0px;
    padding: 0px;
    transition: width 0.3s ease-out;
    border: 0px;

}

.search-input.open-search {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
}

.menu-links ul li .sub-menu {
    position: absolute;
    z-index: 1001;
    top: 0;
    display: none;
    left: 0;
    right: 0;
    overflow: hidden;
    text-align: right;
    padding: .6rem;
    padding-bottom: 2rem;
    margin: 0 .2rem
}

.menu-links ul li:hover>.sub-menu {
    animation-name: submenu;
    animation-duration: 0.33s;
    animation-timing-function: ease-in;
    top: 3rem;
    display: flex;
}

@keyframes submenu {
    from {
        top: 6rem;
    }

    to {
        top: 3rem;
    }
}

.menu-links ul li .sub-menu .sub-link {
    color: #fff !important;
    transition: all 0.3s ease;
    display: block;
    font-family: "fmedium";

}

.menu-links ul li .sub-menu .sub-link:hover {
    background: var(--color4);
    padding: 0 .5rem;
}

/* Main Section */
/* Main-image */
.main-image {
    position: relative;
    width: 100%;
    height: 27rem;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    box-shadow: inset 0 0 0 2000px rgba(21, 49, 63, 0.4);
}

.main-image h3 {
    position: absolute;
    bottom: 5px;
    width: 100%;
    font-size: 18px !important;
    /* z-index: 1000; */
}

.typing-demo {
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #1921265e;
    text-align: center;
}

.slider-container-rec {
    /* margin: 0px 40px; */
    overflow: hidden;
    /* padding-bottom: 55px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px; */
}

.recomended .slider-content {
    /* max-height: 460px;
    height: 460px; */
    display: flex;
    align-items: center;
}

.slider-content {
    max-height: 410px;
    height: 410px;
    width: 100%;
    /* margin-left:20px !important ;
    margin-right:20px !important ; */

}

/* Swiper Css */
.swiper-button-next,
.swiper-button-prev {
    color: var(--dark) !important;
}

.news {
    position: relative;
}

.slider-container-news,
.slider-container-rec,
.slider-container-services {
    position: relative !important;
}

.slider-container-news {
    overflow: hidden;
    padding-top: 40px;
}

.slider-container-services .swiper-pagination {
    bottom: 60px !important;
}

.slider-container-news .swiper-pagination {
    bottom: 0px !important;
}

.slider-container-news .swiper-button-next,
.slider-container-news .swiper-button-prev {
    top: 22px;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    border: 1px solid var(--dark);
}

.slider-container-rec .swiper-button-prev:after,
.slider-container-rec .swiper-button-next:after {

    font-size: 20px !important;
}

.slider-container-services .swiper-button-prev:after,
.slider-container-services .swiper-button-next:after {

    font-size: 20px !important;
}

.slider-container-rec .swiper-button-next,
.slider-container-rec .swiper-button-prev {
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    border: 1px solid var(--dark);
    font-size: 20px !important;
}

.slider-container-services .swiper-button-next,
.slider-container-services .swiper-button-prev {
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    border: 1px solid var(--dark);
    font-size: 20px !important;
}

.slider-container-news .swiper-button-next {
    left: 0 !important;

}

.slider-container-news .swiper-button-prev {
    right: auto !important;
    ;
    left: 3rem !important;
}

.slider-container-news .swiper-button-next::after,
.slider-container-news .swiper-button-prev::after {
    font-size: 17px;
}

/*  */


/* .card{
    width: 24rem !important;
} */
.card-s {
    position: relative;
}

.card-s .image-box {
    position: relative;
    width: 100%;
    height: 470px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    box-shadow: inset 0 0 0 2000px rgba(21, 49, 63, 0.4);
    transition: all .3s ease;

}

.card-s .image-box:hover,
.image-cover:hover,
.card-news:hover .image-news,
.rec-card:hover .image-rec {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    background-position: 40% !important;
}

.card-s .image-box:hover h4 {
    top: 60%;
}

.card-s .image-box h4 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -70%);
    display: block;
    transition: all .3s ease;


}

.card-news h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.swiper-pagination-bullet-active {
    background: var(--c-orange) !important;
}

/*News */
.card-news {
    background-color: rgba(24, 41, 51, 0.1);
    border-radius: 2px;
    width: 100%;
    height: 21rem !important;
}

.card-news .image-news {
    width: 100%;
    height: 15rem;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    transition: all .3s ease;
    /* border-bottom-left-radius:10px;
    border-bottom-right-radius:10px; */
}

.card-news .image-news a {
    height: 20rem;
}

.news .slider-content {
    max-height: 365px !important;
    height: 365px !important;

}

.news .link {
    z-index: 1;
}

.news-shadow {
    position: absolute;
    left: -5px;
    width: 261px;
    height: 91%;
    z-index: 2;
    /* box-shadow:  35px 0px 50px 20px #fff; */
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(237, 237, 237));
    /* opacity: 0.7; */
}

.news-shadow-2 {
    position: absolute;
    right: -5px;
    width: 261px;
    height: 91%;
    z-index: 2;
    /* box-shadow:  35px 0px 50px 20px #fff; */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(237, 237, 237));
    /* opacity: 0.7; */
}

.lib-image {
    width: 100%;
    height: 212px;
    object-fit: cover;
}

/* Liblary Page */
.gallery-head {
    width: 100%;
    height: 350px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    /* background:rgba(0, 0, 0, 0.3); */
    box-shadow: inset 0 0 0 2000px rgba(24, 41, 51, 0.7);
    display: flex;
    justify-content: center;
}

.sort-content {
    position: relative;
}

.show-sort {
    display: block !important;
}

.sort_items {
    display: none;

    position: absolute;
    left: 20px;
    top: 60px;
    width: 10rem;
    z-index: 1000;
    background: var(--dark);
}

.sort-row {
    position: absolute;
    left: 5px;
    top: -12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid var(--dark);
}

/* Gallery  */
.gallery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-cards li {
    width: 100%;
    height: 100%;
    list-style: none;
}

.image_wrapper {

    position: relative;
    height: 100%;

}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    top: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    /* center overlay text */
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    width: 100%;
    height: 100%;
}

.image_wrapper:hover .overlay {
    display: flex;
    /* transform: scale(1); */
    /* display: block; */
}

.icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/s/maximize.svg');
    background-repeat: no-repeat;
    background-position: calc();
    background-size: 100% 100%;
}

.down-icon {
    position: absolute;
    right: 6px;
    bottom: 5px;
}

.video-section {
    width: 100%;
    position: relative;
    /* height: 440px; */


    transition: 0.5s ease-in-out;
    border: 1px solid #fff;
    box-shadow: 0px 2px 2px #4f4f4f;
}

.video-section:hover {
    border: 1px solid #000;

    box-shadow: 0px 2px 15px #4f4f4f;


}

.video-section:after {
    position: absolute;
    content: "";
    width: 103px;
    height: 93px;
    background-image: url('/s/ico-social/play.svg');
    z-index: 9999;
    top: 8%;
    left: 30%;

}

.video-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%)
}

.video-section .t {
    position: absolute;
    bottom: 10%;
    right: 10%;
    color: #fff
}

.video-section .play1 {
    position: absolute;
    top: 5%;
    left: 5%;
    color: #fff;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff71;
}

/* Recomended and certificate */
.recomended-bg {
    background: rgba(24, 41, 51, 0.1);
}

/* .slider-container-rec>.swiper-wrapper>.swiper-slide {
    width: 20rem !important;
} */
.rec-card .swiper-wrapper {
    padding: 30px 0px !important;
}

.rec-card {
    background: #fff;
    height: auto !important;
    /* width: 100% !important; */
    /* width: 20rem !important; */
    /* z-index: 1000; */
    /* margin-left: 30px !important;
    margin-left: 30px !important; */

}

.image-rec {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    transition: all .3s ease;
}

.rec-card h6 {
    margin: 10px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rec-card p {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.partners-image {
    width: 100%;
    height: 12rem;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;
}

/* Footer */

/* hover */
/* ul.footer-link {
    font-size: 15px;
}

ul>li>a.footer_ho {
    position: relative;
    font-size: 13px !important;
}

ul>li>a.footer_ho::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--c-indigo);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s linear;

}

ul>li>a.footer_ho:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
}


.footer-social li a {
    padding: 5px 5px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2 ease-in;
}

.footer-social li a:hover {
    transform: scale(1.2);
}

.footer-social li a.left-line {
    display: block;
    width: 3px;
    height: 16px;
    background: var(--c-orange);
    margin-top: 13px;
    margin-bottom: 13px;
    padding: 0px;
    border-radius: 4px;
}

.footer-social li a.lang {
    display: inline;
    background-color: #fff;
    color: var(--dark);
    padding: 1px 3px;
    text-align: center;
    border-radius: 1px;
    font-size: 14px;

}

footer .call_us {
    background: #fcfcfc;
    display: inline;
    padding: 2px 15px;
}

footer .call_us a {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark) !important;
}

.hr_footer {
    height: 2px;
    margin: 0px;
    opacity: 0.6;
} */

/* Collages Page */
.line-betwen {
    width: 2px;
    height: 30px;
    background-color: var(--dark);
    margin: 8px 10px;
}

.space-betwen-2 {
    width: 1px;
    height: 60px;
    background-color: var(--c-orange);
}

.space-betwen-2::l {
    width: 1px;
    height: 60px;
    background-color: var(--c-orange);
}

.main-image a.link {
    position: absolute;
    bottom: 4rem;
    right: 16px;
    background: var(--c-orange);
    color: var(--dark);
    font-family: "fbold";
    font-size: 11px;
    padding: 2px 6px !important;
    border-radius: 14px;
    line-height: 20px;
    z-index: 1000;
}

.collage-nav {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.speech-of-dean h6 {
    text-transform: uppercase;
}

.staff {
    background: rgba(24, 41, 51, 0.1);
}

.dean-box {
    width: 100%;
    margin: auto;
    float: none;
    text-align: center;
}

.dean-image {
    margin: auto;
    float: none;
    width: 150px;
    height: 150px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    /* background-size: 100% 100% !important; */
    background-size: cover !important;
    border-radius: 50%;
}

.space-betwen {
    width: 30px;
    height: 2px;
    background: var(--c-orange);
}

/* Slider */
.BannerSliderswiper {
    overflow: hidden;
    /* padding-top: 30px; */
    height: 200px;
}

.Banner_threeSliderImg {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 50%;
    background-size: 100% 100% !important;
    transform: scale(0.9) !important;
    transition: all 0.3s ease-in;
}

.Banner_three {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    padding: 0;
    position: relative;
}

/* HeaderPart */
.Banner_threeSliderItem h5,
.Banner_threeSliderItem span,
.Banner_threeSliderItem a {
    display: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.Banner_three .container {
    position: relative;
    z-index: 99;
}

.Banner_threeSliderItem {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.Banner_threeSliderItem a {
    color: #fff;
    background: var(--dark);
    font-size: 11px;
    padding: 0px 4px;
    border-radius: 12px;
    font-family: "fmedium";
    line-height: 18px;
    margin-top: 13px;
}

.Banner_threeSlider .swiper-wrapper {
    padding: 30px 0px;
}

/* .Banner_threeSlider .swiper-slide {
    transform: scale(0.9) !important;
    transition: all  0.3s ease-in;
  } */

/* .Banner_threeSlider .swiper-slide.swiper-slide-active {
    transform: scale(1.2) !important;
    transition: all  0.3s ease-in;
  } */
.Banner_threeSlider .swiper-slide.swiper-slide-active .Banner_threeSliderImg {
    transform: scale(1.5) !important;
}

.Banner_threeSlider {
    position: relative;
    max-width: 35rem !important;
    float: none;
    margin: auto;
    overflow: hidden;
}

.Banner_threeSlider .swiper-slide.swiper-slide-active .Banner_threeSliderItem h5,
.Banner_threeSlider .swiper-slide.swiper-slide-active .Banner_threeSliderItem span,
.Banner_threeSlider .swiper-slide.swiper-slide-active .Banner_threeSliderItem a {
    display: block;
}

.Banner_threeSlider .swiper-navBtn {
    top: 30%;
}

.Banner_threeSlider .swiper-pagination {
    bottom: -10px !important;
}

.Banner_threeSlider .swiper-button-next,
.Banner_threeSlider .swiper-button-prev {
    color: var(--dark);
    background-color: #fff;
    background-size: 20px 20px !important;
    border-radius: 50%;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    height: 30px;

}

.Banner_threeSlider .swiper-button-next {
    left: 120px !important;
}

.Banner_threeSlider .swiper-button-prev {
    right: 120px !important;
}

html[dir="ltr"] .Banner_threeSlider .swiper-button-next {
    left: auto !important;
    right: 120px !important;

}

html[dir="ltr"] .Banner_threeSlider .swiper-button-prev {
    left: 120px !important;
    right: auto !important;

}

.Banner_threeSlider .swiper-button-next::after,
.Banner_threeSlider .swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: bold;
}

/* slider */

.slide-container-cnews {
    padding-bottom: 50px !important;
    position: relative !important;
}

.slide-container-cnews .swiper-button-prev,
.slide-container-cnews .swiper-button-next {
    bottom: 0px !important;
    top: auto;
    border: 1px solid var(--dark);
    width: 40px !important;
}

.slide-container-cnews .swiper-button-prev {
    right: 46% !important;
}

.slide-container-cnews .swiper-button-next {
    left: 46% !important;
}

.slide-container-cnews .swiper-button-next::after,
.slide-container-cnews .swiper-button-prev::after {
    font-size: 25px;
}

.card-cnews .image-content {
    width: 100%;
    height: 250px;
}

.card-cnews .card-image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;
}

.card-content {
    height: 65px;
    margin-top: 2px;
    padding: 5px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-indigo);

    /* line-height: 10px; */
}

.card-content a {
    color: #fff;
    font-size: 17px;
    padding: 1px 8px;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 22px;
}

.arrow-content {
    background: #fff;
    line-height: 1px;
    padding: 8px;
    border-radius: 50%;
}

.arrow-news {
    border: solid var(--dark);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.right-news {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

/* Partners  */
.slider-container-partners {
    margin: 0px 40px;
}

.uni-category {
    background-color: var(--c-indigo);
}

.uni-category .txt-cate-1 {
    color: #fff;
    font-family: "fbold";
    line-height: 10px;
    font-size: 21px;
}

.uni-category .txt-cate-2 {
    color: #fff;
    font-family: "flight";
    text-transform: uppercase;
    letter-spacing: 7px;
    font-size: 13px;
    line-height: 10px;
}

.uni-cate-list {
    white-space: nowrap;
    line-height: 22px;
    color: #fff;
    font-size: 14px;
    font-family: "fmedium";
    text-align: center;
}

.uni-cate-img {
    width: 40px;
    height: 40px;
}

/* News Page */
.news-card {
    position: relative;
}

.news-card .title {
    color: var(--c-indigo);
    font-family: "fmedium";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: all .3 ease;
}

.news-card .title:hover {
    color: var(--c-orange);
}

.news-card .content {
    font-size: 15px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.news-card .image {
    width: 100%;
    height: 250px;
}

.news-card .text-date {
    position: absolute;
    bottom: 0;
    font-size: 14px;
    color: #9b9b9b;
}

.aside-news {
    position: relative;
}

.aside-news .title:hover {
    color: var(--c-orange)
}

.aside-news .aside-title {
    position: relative;
    margin-bottom: 10px;

}

.aside-news .aside-title::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    height: 2px;
    background: var(--c-orange);
    width: 20px;
}

.aside-news .aside-title-1 {
    position: relative;
    margin-bottom: 10px;

}

.aside-news .aside-title-1::after {
    position: absolute;
    top: 6px;
    right: 0;
    content: "";
    height: 18px;
    background: var(--c-orange);
    width: 2.5px;
}

html[dir="ltr"] .aside-news .aside-title-1::after {
    left: 0;
    right: auto;
    top: 2px;
}

.aside-news-card {
    position: relative;
}

.aside-news-card .title {
    color: var(--c-indigo);
    font-family: "fmedium";
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

}

.aside-news-card .image {
    width: 100%;
    height: 100%;
}

.aside-news-card .text-date {
    /* position: absolute;
    bottom: 0; */
    font-size: 12px;
    color: #9b9b9b;
}

.aside-news-lib {
    padding: 1px;
}

.aside-news-lib-image {
    width: 100%;
    /* height: 100px; */
    aspect-ratio: 4/3;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;
}

.page_link {
    border: 1px solid var(--c-indigo);
    padding: 2px 15px;
    transition: all 0.2s ease-in;
    color: var(--c-indigo);
}

.page_link:hover {
    background-color: var(--c-indigo);
    color: #fff !important;
}

.page_link_btn {
    padding: 2px 0px;
    background: rgba(24, 41, 51, 0.1);
}

.page_link_btn .arrowleft,
.page_link_btn .arrowright {
    font-size: 16px !important;
}

.page_link_btn .arrowleft::after,
.page_link_btn .arrowright::after {
    border-color: var(--c-indigo) !important;
}

.page_link_btn2 {
    padding: 2px 0px;
    border: 1px solid var(--c-indigo);
    transition: all .3s ease;
}

.page_link_btn2:hover {
    background: var(--c-indigo);
}

.btn-priv-page {
    padding: 3px 3px;
    background: var(--c-indigo);
}

.btn-priv-page .arrowleft,
.btn-priv-page .arrowright {
    width: 1em !important;
}

.btn-priv-page .arrowleft::after,
.btn-priv-page .arrowright::after {
    border-color: #fff !important;
}

.page_link_btn2:hover .arrowleft::after,
.page_link_btn2:hover .arrowright::after {
    border-color: #fff !important;
}

.page_link_btn2 .arrowleft,
.page_link_btn2 .arrowright {
    font-size: 16px !important;
}

.page_link_btn2 .arrowleft::after,
.page_link_btn2 .arrowright::after {
    border-color: var(--c-indigo) !important;
}

.category-news-header {
    min-height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

}

.education .eitem {
    transition: all .3s ease;
}

.education .eitem:hover {
    background: var(--c-gray);
}

.education .eitem:hover a {
    color: var(--c-light) !important;
}

/* ===== Login Page ===== */
.login-page {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .4);
}

.login-page-aside {
    width: 100%;
    height: 40rem;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.login-page-uni {
    width: 90px;
    height: 120px;
}

.login-page-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.login-page-content {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.input-container {
    width: 100%;
    border: 0;
    border: 1px solid #ccc;
    border-radius: 25px;
    margin-bottom: 15px;
    padding: 3px 10px;
}

.login-page-input {
    font-size: 15px;
    width: 100%;
}

.login-page-input:focus {
    outline: none !important;
    border: none !important;
}

.login-page-input-icon {
    width: 25px;
    margin: 0px 6px;
}

.login-page-btn-submit {
    width: 100%;
    font-size: 15px;
    border: 0;
    border-radius: 25px;
    background: var(--c-orange);
    font-family: "fmedium";

}

/* Post Content  */
ul.images-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: clip;
    overflow-y: hidden;
    list-style: none;
    scroll-behavior: smooth;
    transition: all .3s ease;
}

ul.images-list li {
    flex: 0 0 auto;
    width: 216px;
    height: 150px;
    scroll-snap-align: start;
}

ul.images-list li img {
    width: 100%;
    height: 100%;
}

/* Staff Card */
/* staff-link staff-card */
.staff-card {
    position: relative;
}

.staff-card .staff-link {
    display: none !important;
    position: absolute;
    bottom: 0px;
    transition: all .3s ease;
}

.staff-card:hover .staff-link {
    display: flex !important;
}

.image-cover {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    transition: all .3s ease;
}

.tab-v1 button {
    color: var(--c-white);
    background: var(--c-gray);
    position: relative;

}

.tab-v1 button:hover {
    background: var(--c-gray);
}

.tab-v1 button.active {
    background-color: var(--c-gray);
}

.tab-v1 button.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--c-orange);
}

.tab-v1 button:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--c-orange);
}

@media all and (max-width: 767px) {
    .tab-v1 button {
        width: 100%;
    }
}

/* Category Page */
.tab-label {
    transition: all .3s ease;
}

.cat-header {
    background-position: top center !important;
    background-size: cover !important;
    min-height: 300px;
}

.tab-input:checked+.tab-label::after {
    transform: rotate(90deg) !important;
    margin: 10px !important;
}

.dep-banner div.bg-img,
.dep-banner div.bg-img2 {
    min-height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dep-banner div.bg-img {
    background-color: var(--c-gray);
}

.dep-banner div.bg-img2 {
    background-color: var(--c-light);
}

.tabs {
    direction: rtl;
}

.tab-input:checked+.tab-label {
    background: var(--color3) !important;
    color: #fff !important;
}

.sub-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.sub-text-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.object-fit {
    object-fit: cover;
}

.top-line {
    min-height: 2px;
    background: var(--c-orange);
    width: 75%;
}

.small-image {
    position: relative;
    /* width: 100px; */
    height: 100px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    transition: all .3s ease;

}

.text ul {
    list-style: unset !important;
}

.text ol {
    list-style: decimal !important;
}

html[dir="ltr"] .menu-btn {
    left: auto !important;
    right: 0 !important;
}

html[dir="ltr"] .menu-links>ul>li {
    text-align: left;
    margin-right: 0px !important;

}

html[dir="ltr"] .menu-links>ul>li>a {
    font-size: 0.68rem;
}

/* html[dir="ltr"] .menu-links>ul>li>a::after {
    margin-right: 0px;
    margin-left: 12px;
} */

html[dir="ltr"] .menu-links ul li .sub-menu .sub-link {
    text-align: left;
}

html[dir="ltr"] .eng-text {
    text-align: right !important;
}

html[dir="ltr"] footer ul {
    padding-left: 0px !important;
}

html[dir="ltr"] .main-image h3 {
    left: 16px;
}

html[dir="ltr"] .main-image a {
    left: 16px;
    right: auto;
}

html[dir="ltr"] .slide-container-cnews .swiper-button-prev {
    left: 46% !important;
    right: auto !important;
}

html[dir="ltr"] .slide-container-cnews .swiper-button-next {
    right: 46% !important;
    left: auto !important;
}

html[dir="ltr"] .slider-container-news .swiper-button-next {
    right: 0 !important;
    left: auto !important;

}

html[dir="ltr"] .slider-container-news .swiper-button-prev {
    left: auto !important;
    ;
    right: 3rem !important;
}

html[dir="ltr"] .sort_items {
    left: auto;
    right: 20px;
}

html[dir="ltr"] .sort-row {
    left: auto;
    right: 5px;
}

/* News aside card */
.aside-news .title::after {
    left: 0;
}

html[dir="ltr"] .arrow-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

html[dir="ltr"] .btn-priv-page {
    padding: 0px 0px !important;
}

html[dir="ltr"] .page_link_btn .arrowright::after {
    transform: rotate(225deg);
    margin-left: 0px;
}

html[dir="ltr"] .page_link_btn .arrowleft::after {
    transform: rotate(45deg);
    margin-right: 0px;
}

html[dir="ltr"] .float-left {
    float: right;
}

/* html[dir="ltr"] .tabs {
    float: left;
} */

html[dir="ltr"] .tabs {
    direction: ltr;
}

/*Responsive*/
@media only screen and (max-width: 520px) {
    .Banner_threeSlider .swiper-button-next {
        left: 65px !important;
    }

    .Banner_threeSlider .swiper-button-prev {
        right: 65px !important;
    }

    html[dir="ltr"] .Banner_threeSlider .swiper-button-next {
        left: auto !important;
        right: 65px !important;

    }

    html[dir="ltr"] .Banner_threeSlider .swiper-button-prev {
        left: 65px !important;
        right: auto !important;

    }

    .main-image {
        height: 20rem;
    }

    /* .video-section {
        height: 350px !important;
    } */

    .Banner_threeSlider .swiper-pagination-bullet {
        display: none;
    }

    /* News Card */
    .news-card .text-date,
    .aside-news-card .text-date {
        position: relative;
    }

    .aside-news-card .image {
        width: 100%;
        height: 250px;
    }

    .dars .mh600 {
        min-height: 300px !important;
    }

    /* new code  */
    .mobile-none {
        display: none !important;
    }

    .effect-shadow .mt-3 {
        margin-top: 0 !important;
    }

    .shape-circle {
        display: none !important;
    }

    .big-img-video {
        height: 300px !important;
    }
}

/* ipad */
@media only screen and (max-width: 1024px) {

    .menu-btn {
        display: flex;
    }

    .mainmenu {
        height: auto !important;
    }

    .menu-links>ul {
        flex-direction: column;
        /* background-color: var(--c-gray); */
    }

    .menu-links>ul>li {
        width: 100%;
        text-align: right;
        padding: 0px 15px;
    }

    .menu-links>ul>li.menu-child>.sub-menu {
        position: relative;
        display: none;
        transition: top 0.3s ease;
        /* border:1px solid red; */
    }

    .menu-links>ul>li.menu-child>.sub-menu>.row {
        display: block;

    }

    .menu-links>ul>li.menu-child>.sub-menu>.col-4,
    .menu-links>ul>li.menu-child>.sub-menu>.col-12 {
        width: 100% !important;
        border-bottom: 1px dotted #fcfcfc;
    }

    .menu-links>ul>li>a {
        /* color: #fff; */
        padding-bottom: 0px;
    }

    .menu-links>ul>li>a::after {
        content: '';
        margin-right: 0px;
        margin-top: 0px;
    }

    .menu-child a {
        font-size: 1rem !important;
    }

    .menu-links {
        display: none;
    }

    .search-box {
        margin: 15px 0px;
    }

    .search-btn {
        display: none;
    }

    .search-input {
        width: 100%;
        padding: 0.375rem 0.75rem;
        border: 1px solid #ced4da;
    }

    .news .slider-content {
        height: 385px !important;
        max-height: 385px !important;
    }

    .space-betwen-2 {
        display: none;
    }

    .eng-text {
        text-align: left;
    }

    /* Login page */
    .login-page-aside {
        display: none;
    }

    .login-page-content {

        position: relative;
        left: auto;
        top: a;
        transform: none;
    }

    .slide-container-cnews .swiper-button-prev {
        right: 30% !important;
    }

    .slide-container-cnews .swiper-button-next {
        left: 30% !important;
    }

    .top-line {
        width: 100%;
    }

    html[dir="ltr"] .menu-links>ul>li>a {
        float: auto;
    }

    html[dir="ltr"] .eng-text {
        text-align: right;
    }

    html[dir="ltr"] .slide-container-cnews .swiper-button-prev {
        left: 0 !important;
    }

    html[dir="ltr"] .slide-container-cnews .swiper-button-next {
        right: 0 !important;
    }

    .float-left {
        float: none;
        margin: auto;
    }
}

/*  */
@media screen and (max-width: 768px) {
    .effect-shadow h4 {
        font-size: 1.2rem;
    }

    .slide-content-cnews {
        margin: 0 10px;
    }

    .swiper-navBtn {
        display: none;
    }

}

/* Eng Lang */
html[dir="ltr"] .card-content>a {
    text-align: left !important;
}

html[dir="ltr"] .arrow-content>.right-news {
    transform: rotate(-45deg) !important;
    -webkit-transform: rotate(-45deg) !important;
}

html[dir="ltr"] .aside-news .aside-title::after {
    left: 0;
}

.contents {
    font-family: textfont;
}

.contents ul {
    list-style: inside;
}

.contents ol {
    list-style-type: decimal !important;
    margin: 0 !important;
    padding-right: 25px !important;
}

html[dir="ltr"] .contents ol {
    padding-left: 25px !important;
    padding-right: 0px !important;
}

/*tabs*/
.tab-input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tabs {
    overflow: hidden;
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.tab-label {
    display: -webkit-box;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #213469;
    font-weight: bold;
    cursor: pointer;
}

.tab-label:hover {
    background: #1a252f;
}

.tab-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all .35s;
}

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #063768;
    background: white;
    transition: all .35s;
}

.tab-close {
    display: -webkit-box;
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}

.tab-close:hover {
    background: #0e2f4e;
}

.tab-input:checked+.tab-label {
    background: #1a252f;
}

.tab-input:checked+.tab-label::after {
    transform: rotate(90deg);
}

.tab-input:checked~.tab-content {
    max-height: 100%;
    padding: 1em;
    border: 1px solid #eaeaea;
}

.btn-hover:hover {
    background-color: #ffa301;
}

.links>a>i {
    font-size: 14px;
    color: #fff;
    margin: 0 4px;
}

.uowa-vr {
    font-size: 9px !important;
}

.cu-w {
    word-wrap: inherit !important;
    width: 60px;
}

.cu-w>span {
    line-height: 1 !important;
    font-size: 72px;
}

@media (min-width: 320px) and (max-width: 480px) {
    .links {
        margin-top: 6px;
    }

    .links a i {
        font-size: 18px;
        margin: 0 8px;
    }

    .uowa-vr {
        font-size: 95% !important;
    }

}

.app {
    position: relative;
    background-color: var(--c-light);
}

.app-wave-hiden {
    position: relative;
    overflow: hidden;
}

.app-wave {
    position: absolute;
    background-image: url(app-wave.svg);
    width: 100%;
    height: 100%;
    background-size: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
}

/* 
  ~mhkh@2023-11-12 09:01:09
  التصميم الخاص في واجهة الفيديو
  */

.header {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 986px) {
    .header {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9;
    }
}

.header__border {
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.header__logo {
    width: auto;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-delay: 0/5s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    backface-visibility: hidden;
}

[dir="rtl"] .float-end {
    float: left !important;
}

.header .navbar-menu {
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-end;
    display: flex;
    align-items: flex-end;
}

.relative {
    position: relative !important;
}

.py-10 {
    padding-top: 11rem !important;
}

.mb-12 {
    margin-bottom: 2rem !important;
}

.clear-both {
    clear: both !important;
}

.float-end {
    float: right !important;
}

.hstack,
.vstack {
    display: flex;
    align-self: stretch;
}

.vstack {
    flex: 1 1 auto;
    flex-direction: column;
}

.hstack {
    flex-direction: row;
    align-items: center;
}

.hstack {
    flex-wrap: wrap !important;
}

.topbar-link.toggle-topbar-link .quick-links--dropdown {
    display: block;
    z-index: 9999 !important;
}

.mw {
    position: absolute;
    max-width: 15rem;
    width: 15rem;
}

.quick-links--dropdown {
    display: none;
    font-size: 1.8rem;
    line-height: 2.35rem;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    backface-visibility: hidden;
    float: left;
    height: auto;
    width: 100%;
    border-right: 1px solid #b8bdc1;
    border-left: 1px solid #b8bdc1;
    border-bottom: 1px solid #b8bdc1;
    background-color: #fff !important;
}

.white-bg {
    background-color: #fff;
}

.fs1-4 {
    font-size: 1rem !important;
}

.quick-links--dropdown li {
    transition: all .3s linear;
    cursor: pointer;
}

.quick-links--dropdown li {
    border-bottom: 1px solid #eee;
}

.quick-links--dropdown li a {
    text-decoration: none;
    font-weight: 400;
    color: #5b6770;
    padding: .25rem 0;
    font-size: 1.6rem;
    line-height: 1.35rem;
    transition: all .4s linear;
}

.header__link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    cursor: pointer;
}

.header__link {
    color: #fff;
    transition: color .5s ease-in-out;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
    line-height: 2.35rem;
    font-family: fbold;
}

.header__link:hover {
    color: var(--c-orange) !important;
}

.pb-16 {
    padding-bottom: 4rem !important;
}

.py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.top-100 {
    top: 18.3rem !important;
}

.offcanvas--desktop {
    width: 100% !important;
    transform: translate(-50%) !important;
    left: 50% !important;
    display: none;
    /* animation-name: fadeInDown;
    animation-iteration-count: 1;
    animation-duration: .55s;
    animation-delay: .0666666667s;
    animation-fill-mode: both;
    backface-visibility: hidden; */
}


.header__item.toggle-nav-menu .offcanvas--desktop {
    display: block !important;
}

.offcanvas-2 {
    background-color: #f3f3f3;
    min-height: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
}

.p-32 {
    padding: 5rem !important;
}

.offcanvas-secondary__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;

}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

[dir="rtl"] .float-start {
    float: right !important;
}

.content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.float-start {
    float: left !important;
}

.px-20 {
    padding-left: 5rem !important;
}

.offcanvas-primary__item {
    color: #5b6770;
    position: relative;
    width: 100%;
}

.offcanvas-secondary__item {
    color: #5b6770;
    position: relative;
    width: 100%;
}

.mt-8 {
    margin-top: 2rem !important;
}

.offcanvas-secondary__item:first-child a {
    animation-name: fadeInDown;
    animation-iteration-count: 1;
    animation-duration: .55s;
    animation-delay: .0666666667s;
    animation-fill-mode: both;
    backface-visibility: hidden;
}

.offcanvas-primary__item:first-child a {
    animation-name: fadeInDown;
    animation-iteration-count: 1;
    animation-duration: 1.55s;
    animation-delay: .0666666667s;
    animation-fill-mode: both;
    backface-visibility: hidden;
}

@media (min-width: 768px) {
    .offcanvas-primary__item:first-child a {
        padding-top: 0;
    }
}

.offcanvas-secondary__link {
    font-weight: 400;
    transition: color .3s ease-in-out;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(92, 103, 112, .2);
    line-height: 2rem;
}

@media (max-width: 1480px) {
    .offcanvas-secondary__link {
        font-size: 1rem;
    }
}

.offcanvas-secondary__link {
    color: #5b6770;
    font-size: 1rem;
}

.offcanvas-secondary__link::after {
    content: "";
    display: block;
    transition: all .2s ease-in;
    opacity: 0;
    float: right;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.7' height='13.6'%3E%3Cpath fill='none' stroke='%2310069f' stroke-miterlimit='10' d='M11.5.4l6.4 6.4-6.4 6.5'/%3E%3Cpath fill='%2310069f' stroke='%2310069f' stroke-miterlimit='10' d='M17.9 6.8H0'/%3E%3C/svg%3E");
    width: 0;
    height: 14px;
    margin-top: 2px;
    margin-right: 11px;
    background-image: no-repeat;
    transform: scaleX(-1);
}

.offcanvas-secondary__item:hover .offcanvas-secondary__link::after {
    opacity: 1;
    transform: scaleX(1);
    width: 19px;
}

/* Video Section */
.hero {
    overflow: hidden;
    height: 100vh;
}

.flickity-enabled {
    position: relative;
}

.hero .flickity-viewport {
    height: 100vh !important;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.flickity-viewport {
    transition: height .2s;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero--inner,
.hero .slider-carousel-cell {
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .slider-carousel-cell {
    width: 100%;
    height: 100vh;
    background-position: 50%;
}

.slider-carousel-cell {
    width: 100%;
    overflow: hidden;
}

.max-w-none {
    max-width: none !important;
}

.min-w-full {
    min-width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.min-h-full {
    min-height: 100% !important;
}

.z-20 {
    z-index: 20 !important;
}

.absolute {
    position: absolute !important;
}

.start-50 {
    left: 50% !important;
}

.top-50 {
    top: 50% !important;
}

video {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.z-50 {
    z-index: 50 !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.hero__title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    animation-name: fadeInLeft;
    animation-iteration-count: 1;
    animation-duration: 1.5s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    backface-visibility: hidden;
}

.gap-8 {
    gap: 2rem !important;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.grid {
    display: grid !important;
}

.mt-28 {
    margin-top: 7rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-button {
    position: relative;
    padding: .8em 1em;
    border: none;
    background-color: transparent;
    transition: width 2.4s ease-in, background-color .5s ease-in;
    color: #fff;
    border: 2px solid #fff;
    float: right;
    font-family: fbold;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: center;
}

/* animation */
@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeftSpecial {
    0% {
        opacity: 0;
        height: 0
    }

    to {
        opacity: 1;
        height: 1px
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(150px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(20px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(2000px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-20px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(20px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(2000px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-20px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.8, .8, .8)
    }

    50% {
        opacity: 1
    }
}

.draw-border {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .5);
    color: #fff;
    transition: color 0.25s 0.0833333333s;
    position: relative;
}

.draw-border::before,
.draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}

.draw-border::before {
    border-bottom-width: 4px;
    border-left-width: 4px;
}

.draw-border::after {
    border-top-width: 4px;
    border-right-width: 4px;
}

.draw-border:hover {
    color: var(--c-orange);
}

.draw-border:hover::before,
.draw-border:hover::after {
    border-color: var(--c-orange);
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}

.draw-border:hover::before {
    transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
    transition-delay: 0s, 0.25s, 0s;
}

.btn-1 {
    background: none;
    border: none;
    cursor: pointer;
}

.btn-1:focus {
    outline: 1px dotted #fff;
}

.header__item.main-link {
    list-style: none;
    position: relative;
}

.close_btn_menu {
    display: none;
}

/* Mobile Design for Video */
@media (max-width: 986px) {
    .header {
        background: var(--c-indigo);
        position: relative;
        z-index: 31;
        height: 64px;
        width: 100%;
        max-width: 100%;
    }

    .header__border {
        display: block;
        border-bottom: none;
    }

    .header__border>div {
        width: 100% !important;
        padding: 0px !important;
        display: flex;
        align-content: center;
        justify-content: space-between;
    }

    .header__border>nav.navbar-menu {
        display: none;
    }

    .close_btn_menu {
        display: inline-block;
        position: absolute;
        left: 0;
        margin: 0px 10px;
        font-size: 2rem;
        cursor: pointer;
        color: var(--c-white);
    }

    [dir="ltr"] .close_btn_menu {
        left: auto;
        right: 0;
    }

    #btn-navbar-menu .menu-btn__burger,
    #btn-navbar-menu .menu-btn__burger::after,
    #btn-navbar-menu .menu-btn__burger::before {
        background: var(--c-white);
    }

    .grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .hero__title {
        font-size: 2rem;
    }

    .header__border .menu-btn {
        position: inherit !important;
        margin-top: 10px;
    }

    .uni-icon-i {
        font-size: 230%;
        line-height: 4rem;
    }

    .header__item.toggle-nav-menu .offcanvas--desktop {
        display: block !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
    }

    /*  */
    nav.navbar-menu.open-mobile {
        display: block;
        position: fixed;
        background: var(--c-light);
        width: 100%;
        /* min-height: 100vh;
        height: 100vh; */
        padding: 0px !important;
        top: 0;
        left: 0;
        z-index: 50 !important;
        overflow-y: auto !important;
        animation-name: fadeInUp;
        animation-duration: 500ms;
        animation-timing-function: ease;
        animation-fill-mode: both;
    }

    nav.navbar-menu.open-mobile ul.header__menu {
        width: 100%;
        background-color: var(--c-indigo);
        display: flex !important;
        justify-content: start !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin-bottom: 5px !important;
    }

    nav.navbar-menu.open-mobile>div.header__menu {
        width: 100%;
        display: block !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin-bottom: 5px !important;
        height: 100vh;
        min-height: 100vh;
        overflow: auto;
    }

    li.main-link {
        cursor: pointer;
        list-style: none;
        border-bottom: 1px solid #d5d5d5 !important;
        padding: 5px 0px;
    }

    /* li.main-link::after{
        position: absolute;
        left: 10px;
        content: "+";
        color: var(--c-gray);
        font-size: 25px;
    }
    li.toggle-nav-menu.main-link::after{
        top: 0;
    } */
    nav.navbar-menu>div.header__menu li.main-link a {
        color: var(--c-gray);
        font-size: 20px;
    }

    .offcanvas-secondary__link {
        padding: 5px 0px;
    }

    .category-content {
        height: auto !important;
        padding: 0px !important;
    }

    .category-content .cate-disc {
        display: none;
    }

    .category-content .cate-link {
        padding: 2rem 0px 2rem 0px !important;
        width: 100% !important;
    }

    .category-content .cate-link .offcanvas-secondary__list {
        padding-top: 0px !important;
    }

    .category-content .cate-link .offcanvas-secondary__list>div {
        width: 100% !important;
    }

    .uni-statistics div {
        border-right: 0px !important;
        border-left: 0px !important;
        border-bottom: 1px solid #d5d5d5;

    }
}

.uni-statistics div {
    border-right: 1px solid #d5d5d5;
}

.uni-statistics div:nth-child(1) {
    border-right: 0px;
}

[dir="ltr"] .uni-statistics div {
    border-left: 1px solid #d5d5d5;
    border-right: 0px;
}

[dir="ltr"] .uni-statistics div:nth-child(1) {
    border-left: 0px;
}

/*  */
.main-counter .col-md-3 {
    text-align: center;
    padding-bottom: 50px;
    border-left: 0px solid #dddddd;
}

.main-counter .col-md-3:last-child {
    border-left: 0px dashed #dddddd;
}

.counter {
    animation-duration: 1s;
    animation-delay: 0s;
    color: #feac11
}

.counter-circle {
    display: inline-block;
    position: relative;
    height: 110px;
    width: 110px;
    border: 2px dashed #0C244E;
    font-size: 54px;
    line-height: 106px;
    border-radius: 50%;
    margin-bottom: 15px;
    text-align: center;
    transition: all 300ms ease;
    opacity: 0.85;
}

.counter-circle::before {
    position: absolute;
    left: 0;
    top: 5px;
    height: 21px;
    width: 21px;
    border: 2px dashed #feac11;
    border-radius: 50%;
    content: "";
    opacity: .5;
}

.counter-circle::after {
    position: absolute;
    right: 10px;
    bottom: 5px;
    height: 15px;
    width: 15px;
    border: 2px dashed #feac11;
    content: "";
    border-radius: 50%;
    opacity: .5;
}

.fs16 {
    color: #fff;
    font-size: 20px;
    font-family: fbold;
}

.main-counter {
    /* box-shadow: inset 0 0 0 2000px rgba(24, 41, 51, 0.7); */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 !important;
    background-attachment: fixed;
    background-position: center;
    /* background-color: #1f4762; */
}

.main-counter::before {
    content: "";
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 60%) 100%); */
    background-attachment: fixed;
}

.counter-hover:hover .counter-circle {
    /* background-color: #0C244E; */
    color: #ffffff;
    border: 2px dashed #0C244E;
    transition: all 1000ms ease-in-out;
    /* box-shadow: inset 0 0 0 2000px rgb(24 41 51 / 31%); */
    box-shadow: inset 0 0 0 2000px #fcfcfc;
}

.counter-hover:hover img {
    fill: #fff !important;
    transform: scale(1);
}

.counter-hover img {
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.scale {
    transform: scale(0.6) !important;
}

.counter-hover:hover .counter-circle::before,
.counter-hover:hover .counter-circle::after {
    transform: scale(3);
    opacity: 0;
    transition: all 1000ms ease;
}

.counter-hover:hover svg,
.counter-hover svg {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 1000ms ease;
}

@media (max-width: 991px) {
    .counter-hover svg {
        opacity: 0.50;
    }

    .main-counter .col-md-3 {
        border-right: 0px dashed #dddddd;
        border-bottom: 0px dashed #dddddd;
        border-left: 0px;
        width: 50%;
        margin: auto auto;
    }

    .main-counter .col-md-4:last-child {
        border-bottom: 0px dashed #dddddd;
    }
}


/* footer */
footer {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

.uowa-gmail {
    font-size: 40px !important
}

.footer-title::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    max-width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    right: auto;
    background-color: #1f4762;
}

.footer-items,
.footer-items a {
    color: #858585;
    text-decoration: none
}

.footer-items li a:hover {
    color: #ffffff;
}

.footer-items li {
    list-style: none;
}

.transition,
.img-footer:hover div {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.f18 {
    font-size: 18px;
}

/* not found in commons_css */
.position-relative {
    position: relative !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.position-absolute {
    position: absolute !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.w-50 {
    width: 50% !important;
}

.bg-white {
    background-color: #fff !important
}

.text-center {
    text-align: center !important
}

.dropdown-menu a {
    color: #fff !important
}

.dropdown-menu {
    z-index: 999
}

.details {
    font-size: 16px
}

.f-15 {
    font-size: 15px
}

.text-white {
    color: #e3e0e0 !important
}

/* .footer-links li::before {
    content: "\2024";
    font-family: 'fbold';
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    padding: 0;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    vertical-align: middle;
    color: #1f4761;
  } */

.facebook,
.twitter,
.insta,
.telegram,
.whatsapp,
.wikipedia .youtube {
    width: 30px;
    height: 30px;

}

.facebook i,
.twitter i,
.insta i,
.telegram i,
.whatsapp i,
.wikipedia i,
.youtube i {
    color: #ffffff;
}

.facebook:hover {
    background: #4a6fbe;
}

.facebook,
.twitter,
.insta,
.telegram,
.youtube,
.whatsapp,
.wikipedia,
.linkedin,
.whatsapp {
    background: #858585;
}

.twitter:hover {
    background: #000;
}

.insta:hover {
    background: #ea4c89;
}

.telegram:hover {
    background: #229ED9;
}

.youtube:hover {
    background: #f00;
}

.whatsapp:hover {
    background: #25D366;
}

.linkedin:hover {
    background: #0077B5;
}

.wikipedia:hover {
    background: #000;
}

.main-copyright {
    border-top: 1px solid #373636;
}

.copyright {
    border-right: 1px solid #373636;
}

.footer-links li {
    padding: 9px 0;
    list-style: circle;
}

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

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

/* .color-y{color:#fdbe34} */
.color-y {
    color: #fdbe34
}

.img-footer-border {
    border: 2px solid #ccc;
}

.img-footer:hover div {
    transform: scale(1.4);
}

.img-footer div {
    height: 80px;
    background-position: center;
    background-size: cover;
}

.img-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 0 solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    will-change: border;
    z-index: 10;
    border-width: 0.5rem;
    margin: 0.2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    -webkit-clip-path: polygon(0 calc(100% - 1rem), 0 100%, 1rem 100%, 1rem 0, 0 0, 0 1rem, 100% 1rem, 100% 0, calc(100% - 1rem) 0, calc(100% - 1rem) 100%, 100% 100%, 100% calc(100% - 1rem));
    clip-path: polygon(0 calc(100% - 1rem), 0 100%, 1rem 100%, 1rem 0, 0 0, 0 1rem, 100% 1rem, 100% 0, calc(100% - 1rem) 0, calc(100% - 1rem) 100%, 100% 100%, 100% calc(100% - 1rem));
}

.img-footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.2s;
    z-index: 9;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%); */
}

.img-footer:hover::before {
    transform: scale(0.9);
    border-color: white;
}

/*  */
.person-card {
    position: relative;
    min-height: 100px;
}

.person-card>div {
    height: 100%;
}

.person-card .img-person {
    position: absolute;
    top: -82px;
    border: 2px solid #fff;
}

/* College Style */

/* not found in commons_css */
.position-relative {
    position: relative !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.position-absolute {
    position: absolute !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.w-50 {
    width: 50% !important;
}

.bg-white {
    background-color: #fff !important
}

.dropdown-menu a {
    color: #fff !important
}

.dropdown-menu {
    z-index: 999
}

.details {
    font-size: 16px
}

.f-15 {
    font-size: 15px
}

.text-white {
    color: #e3e0e0 !important
}

/* end it */

/* swiper */
.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    font-size: 25px !important;
}

.mySwiper .swiper-button-next,
#more-photo-swiper .swiper-button-next,
.mySwiper .swiper-button-prev,
#more-photo-swiper .swiper-button-prev {
    width: 25px;
    height: 25px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.mySwiper .swiper-button-prev,
#more-photo-swiper .swiper-button-prev {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.mySwiper .swiper-button-next,
#more-photo-swiper .mySwiper .swiper-button-next {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#more-photo-swiper .swiper-button-next {
    left: 0 !important;
    right: auto !important;
    background-color: var(--c-indigo);

}

#more-photo-swiper .swiper-button-prev {
    right: 0 !important;
    left: auto !important;
    background-color: var(--c-indigo);
}

#more-photo-swiper .swiper-button-next::after,
#more-photo-swiper .swiper-button-prev::after {
    color: var(--c-light) !important;
    font-size: 20px !important;
}

html[dir="ltr"] #more-photo-swiper .swiper-button-next {
    right: 0 !important;
    left: auto !important;

}

html[dir="ltr"] #more-photo-swiper .swiper-button-prev {
    left: 0 !important;
    right: auto !important;
}

/* lanuage */
.box select {
    /*   background-color: #0563af; */
    background-color: var(--c-gray);
    color: white;
    width: 100%;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    -webkit-appearance: button;
    appearance: button;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    color: #fdbe34;
    line-height: 20px;
}

.box:hover::before {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.2);
}

.box select option {
    padding: 30px;
}

/* progress bar fill */
.header-college {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #f1f1f1;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: #1f4761;
}

.progress-fill {
    height: 5px;
    background: #feac11;

    width: 0%;
}

/* header */

.nav-link-college {
    color: var(--c-light) !important;
    font-size: 0.8rem;
}

html[dir="ltr"] .nav-link-college {
    font-size: 0.7rem !important;
}

#navbar-colleges-Dropdown .nav-link-college {
    color: var(--dark) !important;
    font-family: fbold;
}

.dropdown-menu {
    background: #1F4761 !important;
    display: block;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.dropdown:hover ul {
    opacity: 1;
}

.logo {
    height: 60px;
}

.b-color {
    border-bottom: 1px solid rgba(255, 255, 255, 0.21);
}

/* start slide */
.overlay-banner {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
}

.bg-slide {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.fs-54 {
    font-size: 54px !important;
}

.color-r {
    color: #c02125
}

.overlay_collage:hover .bg2 {
    color: #fff
}

.overlay_collage .bg2 {
    color: #fff;
}

.bg-1:hover {
    color: #fff;
    transform: translateY(-20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
    transition: all 600ms ease;
    background: #1f4761;
    /* background:linear-gradient(271deg, rgba(255,163,0,1) 0%, rgba(253,190,52,1) 62%)  */
}

.bg-1 {
    position: relative;
    padding: 45px 40px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.fs-13 {
    font-size: 13px;
}

.main-slide {
    height: 600px;
}

.icon2 {
    width: 100px;
    transform: scale(1);
}

.f25 {
    font-size: 25px;
}

.play {
    width: 75px;
    height: 75px;
    background: rgb(255, 163, 0);
    background: linear-gradient(271deg, rgba(255, 163, 0, 1) 0%, rgba(253, 190, 52, 1) 62%)
}

.move::before {
    content: '';
    width: 75px;
    height: 75px;
    border: 1px solid #fff;
    border-radius: 50%;
    animation-name: movement;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-play-state: running;
    left: 0;
    position: absolute;
}

/* three block blew slider */
.h-block {
    height: 210px
}

.no {
    font-family: 'fnormal';
}

.overlay_collage {
    position: relative;
}

.overlay_collage::before {
    position: absolute;
    height: 200px;
    width: 200px;
    left: -100px;
    top: -100px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 9;
    transform: scale(0);
    content: "";
    transition: all 600ms ease;
}

.overlay_collage::after {
    position: absolute;
    height: 200px;
    width: 200px;
    left: -100px;
    top: -100px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 9;
    transform: scale(0);
    content: "";
    transition: all 600ms ease;
}

.overlay_collage:hover:before {
    transform: scale(1);
    opacity: .20;
    transition-delay: 300ms;
}

.overlay_collage:hover::after {
    transform: scale(1.7);
    opacity: .10;
    transition-delay: 400ms;
}

.divider svg {
    width: 60px;
    height: 60px;
    fill: #1370b5
}

.logo-text {
    display: none;
}

.logo-banner {
    right: -50px;
    top: 50%;
}

@keyframes movement {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    25% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }

    75% {
        transform: scale(1.6);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


/* teacher slider */
.mySwiper {
    padding: 10px !important;
}

.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after {
    font-size: 17px;
    color: #1370b5;
    font-weight: bold;
}

.bg-teacher-section .img1,
.bg-teacher-section .img2 {
    position: absolute;
    background-image: url(/s/bg-teacher.png);
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    left: 0;
}

.bg-teacher-section .img2 {
    right: 0px;
    transform: rotateY(180deg);
}

.teacher-section {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.text-teacher {
    /*   padding: 15px 25px; */
    padding: 11px 35px 11px 10px;
    position: absolute;
    bottom: 25px;
    right: -23px;
    width: 80%;
    z-index: 2;
    /* visibility: hidden; */
    /* opacity: 0; */
    opacity: 1;
    visibility: visible;
    text-align: right;
    border-radius: 50px 0 0 50px;
    /* transform: translateX(150px);
    -webkit-transform: translateX(150px);  */
    transform: translateX(0px);
    background: #1F4761;
}

.text-teacher,
.text-teacher:hover,
.social-teacher,
.social-teacher:hover {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.teacher-job {
    color: #fff;
    font-size: 17px;
    font-family: "fbold";
}

.teacher-name {
    font-size: 16px;
}

.social-teacher li {
    list-style: none;
    display: block;
    padding: 6px 0;
}

.social-teacher {
    position: absolute;
    left: 10px;
    top: 0;
    padding: 5px 10px 15px;
    border-radius: 0 0 25px 25px;
    opacity: 0;
    visibility: hidden;
    background: #1F4761;
    transform: translateY(-150px);
    -webkit-transform: translateY(-150px);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.social-teacher:hover,
.text-teacher:hover {
    background: #fdbe34;
}

.teacher-section:hover .social-teacher {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.social-teacher li a,
.social-teacher li a i {
    display: inline-block;
    color: #fff;
}

/* dean design */
.shadow-dean {
    text-shadow: 0px 1px 1px #444;
}

.shadow-dean .fs-18 {
    line-height: 1.8
}

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

.border-dean {
    width: 185px;
    height: 185px;
    background: rgba(255, 255, 255, 0.3);
}

.cover-dean {
    width: 160px;
    height: 160px
}

.img-dean {
    width: 345px;
    left: 92px;
    top: -18px
}

.title-dean {
    color: #858585;
    font-weight: bold;
    font-size: 18px;
}

.overlay-dean {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.overlay-dean::after {
    content: "";
    z-index: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(273deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
}

.overlay-dean::before {
    content: "";
    z-index: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(/s/bg_svg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.overlay-dean2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background-repeat: no-repeat;
    right: 0;
    background-position: right top;
    background-attachment: fixed;
}

.fa-quote-right {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 25px;
}

.fa-quote-left {
    float: left;
    font-size: 25px;
    padding: 5px;
}

/* Blog Design */
.es-background-blog {
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.main-blog:hover .bg-blog {
    transform: scale(1.2);
}

.main-blog {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
    border-radius: 10px;
}

.bg-blog {
    background-size: cover;
    height: 320px;
    background-position: center;
}

.text-blog {
    background-color: rgb(255 255 255 / 0.3);
    backdrop-filter: blur(10px);
    bottom: 53px;
    padding: 10px;
    width: 85%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    border-radius: 10px;
    right: 13px;
    border-right: 2px solid #4b80a4;
    /* height: 100%; */
}


.text-blog::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    top: 0;
    right: 0;
    border-radius: 10px;
    z-index: -1;
}

.text-blog p {
    font-family: 'fbold';
}

.text-blog i {
    background: #4b80a4;
    left: -20px;
    bottom: 25%;
}

html[dir="ltr"] .text-blog i {
    right: -20px;
    left: auto;
    transform: rotateY(180deg);
}

.text-blog:after {
    top: 0;
    height: 100%;
    z-index: -1;
    background-color: #4b80a4;
    border-radius: 10px;
}

.text-blog:hover:after {
    left: 0;
    width: 100%;
}

.text-blog i,
.text-blog:hover i,
.text-blog:after,
.text-blog:hover:after,
.main-blog:hover .bg-blog,
.main-blog .bg-blog,
.main-blog {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.text-blog:hover i {
    transform: translate(-6px, 0px);
}

.bg-blog,
.bg-blog::after {
    border-radius: 10px;
}

.bg-blog::after,
.text-blog:after {
    position: absolute;
    content: "";
    width: 0;
    right: 0;
}

.bg-blog::after {
    bottom: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
    transform: scale(1.5);
}

#myBtn {
    display: none;
}

#more2,
#more3,
#more4 {
    display: none;
}

#myBtn2,
#myBtn3,
#myBtn4 {
    cursor: pointer;
    display: block;
}

/* three bocks for college */
.d-inline-table {
    display: inline-table;
}

.bg-about {
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: #011227;
    background-size: cover;
}

.img-about {
    width: 60px;
    height: 60px
}

.bg-about .container {
    margin-top: 100px;
    margin-bottom: 100px;
}

.bg-college {
    border-radius: 5px;
    padding: 52px 30px 55px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 6%);
    overflow: hidden;
    z-index: 1;
}

.overlay22 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 10px;
    height: 100%;
    width: 0;
    background: #1f4762;
    border-radius: 15px;
    transition: .5s;
    width: 96%;
    right: 8px;
}

.text-college {
    font-size: 17px;
    line-height: 1.588;
    color: #777;
    margin-bottom: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

}

.bg-college::before {
    content: '';
    width: 238px;
    height: 238px;
    border: 50px solid #1f4762;
    opacity: .05;
    position: absolute;
    top: -97px;
    left: -77px;
    z-index: -1;
    border-radius: 100%;
}

.link-college::before {
    content: '';
    height: 3px;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    background-color: #1f4762;
    z-index: -1;
}

.link-college span {
    /*   background: #0859d7; */
    background: #1f4762;
    font-weight: 600;
    padding: 0 34px;
    cursor: pointer;
    line-height: 51px;
    box-shadow: 0 30px 50px rgba(8, 89, 215, .3)
}

.link-college span::before {
    content: "";
    background: #fff;
    -webkit-transition: all .8s;
    -ms-transition: all .8s;
    transition: all .8s;
    position: absolute;
    height: 120%;
    width: 15px;
    opacity: .2;
    left: -35%;
    top: -10%;
    transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -o-transform: rotate(15deg)
}

.link-college span:hover::before {
    left: 130%;
}

.link-college::after {
    content: '';
    position: absolute;
    right: 0;
    top: 32px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #1f4762;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    to {
        -webkit-transform: translateX(-280px);
        transform: translateX(-280px);
    }
}


/* about US college */
.aboutUs-bg {
    background-repeat: no-repeat;
    background-position: 75%;
    background-size: contain;
}

.aboutUs-shape {
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -50px;
    right: 0
}

.aboutUs-img {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.aboutUs-text {
    margin: 90px 20px 20px 4px;
    font-size: 48px;
    font-weight: 800;
}

.aboutUs-color {
    color: #3668b6
}

.aboutUs-par {
    color: #7f7f7f;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
}

.college-news-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/*  */
.college-nav-item {
    padding-bottom: 10px;
}

.college-dropdown-menu {
    top: 2.7rem;
    position: absolute;
    padding: 10px;
    background-color: var(--c-indigo);
    z-index: 9999;
    min-width: 160px;
    display: none;
    border-radius: 3px;
}



.college-nav-item.c_active>.college-dropdown-menu {
    display: block;
    animation-name: fadeInUp;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
}

.college-dropdown-menu ul li {
    padding: 5px 2px;
    margin: 3px 0px;

}

.college-dropdown-menu ul li a {
    text-decoration: none !important;
    font-size: 0.9rem;
    color: var(--c-light);
    transition: all .3s ease;
    display: block;
}

.college-dropdown-menu ul li a:hover {
    color: var(--c-yellow2);
}

/* electronic servies */

.es-topbar {
    height: 1.5px;

    background-color: var(--color3);

}

.es-name {
    text-align: center;
    font-family: fbold;
    font-size: 155%;
    color: var(--c-yellow2);
    text-shadow: 0 2px 2px #aaa;
}

.es-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #0C244E 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
    text-align: center;
}

.es-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
}

.es-card p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.es-icon-wrapper {
    background-color: #0C244E;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
}

.es-icon-wrapper img {
    width: 50px;
    height: 50px;
}

.es-card:hover {
    background-position: 0 100%;
}

.es-card:hover .es-icon-wrapper {
    background-color: #ffffff;
    color: #2c7bfe;
}

.es-card:hover h3 {
    color: #ffffff !important;
}

.es-card:hover p {
    color: #f0f0f0;
}

/*  media query */
@media only screen and (max-width: 480px) {
    .main-slide {
        height: 300px;
    }

    .nav-link-college span {
        display: none;
    }

    .nav-item i {
        font-size: 18px !important;
    }

    .mobile-link .nav-item {
        margin: 0 10px;
    }

    .logo-text {
        display: flex;
    }

    .log-mobile {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .logo-banner {
        right: 20px !important;
        top: 70px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center;
    }

    .logo-banner h1 {
        padding-top: 5px;
        text-align: center;
        font-size: 20px;
    }

    .main-copyright ul {
        flex-direction: column;
    }

    #more {
        display: none;
    }

    #myBtn {
        cursor: pointer;
        display: block;
    }

    .aboutUs-img {
        height: 350px
    }
}

@media screen and (max-width: 1024px) and (min-width: 900px) {
    .nav-link-college {
        font-size: 0.77rem;
    }
}

@media screen and (max-width: 1400px) and (min-width: 992px) {
    .teacher-name {
        font-size: 16px;
        transform: scale(1.2)
    }

    .nav-link-college {
        font-size: 0.77rem;
    }

}

@media only screen and (max-width: 1024px) {
    .college-nav-item {
        padding-bottom: 0px;
    }

    .college-dropdown-menu {
        top: 0;
        position: relative !important;
    }

    #navbar-colleges-Dropdown {
        display: none;
    }

    #navbar-colleges-Dropdown.mc_active {
        display: block;
        animation-name: fade;
        animation-duration: 0.2s;
        animation-timing-function: ease-in;
    }

    .college-nav-item.has-sub-college>a::after {
        position: absolute;
        left: 20px;
        content: "+";
        font-size: 1.5rem;
    }

    html[dir="ltr"] .college-nav-item.has-sub-college>a::after {
        left: auto;
        right: 20px;
    }

}

@media only screen and (min-width: 1024px) {
    .sub-arrow-up {
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 15px solid var(--c-indigo);
    }
}

.post-content-1 {
    font-size: 1.1rem !important;
    line-height: 180%;
}

.post-content-1>p {
    margin: 0 !important;
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.share {
    background: #f0f0f0;
    border-radius: 25px;
}

.share a {
    transform: scale(0.9);
}

.main-share .share {
    opacity: 0;
    transition: all ease 0.5s;
}

.main-share:hover .share {
    opacity: 1;
    transition: all ease 0.5s;
}

.b-radius {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

/*  */
.hover-link div {
    background-color: #eee;
    border-radius: 4px;

}

.hover-link:hover div {
    fill: var(--c-orange);
    background-color: var(--c-orange);

}

.hover-link:hover div svg path {
    fill: #011227;
    background-color: var(--c-orange);

}

.hover-link:hover svg path {
    fill: var(--c-orange);
    background-color: var(--c-orange);

}

.facultyview-bg {
    background-color: var(--c-white);
    transition: all .2s ease;

}

.facultyview-bg:hover {
    background-color: var(--c-indigo);
    color: var(--c-white);
}

/* all style to two sections */
.service-img {
    height: 230px;
    object-fit: cover;
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-icon-white {
    color: var(--c-white) !important;
    width: 40px;
    height: 40px;
}

.service-img p {
    margin: 0;
}

.somer {
    font-family: fnormal !important
}

.somerb {
    font-family: fbold !important
}

.service-img:hover {
    background: var(--c-white) !important;
}

.service-img a:hover {
    color: var(--c-orange) !important;
}

.service-bg a {
    color: var(--c-light) !important;
}

.service-bg p {
    color: var(--c-light);
}

.service-bg:hover {
    background: var(--c-indigo) !important;
}

.overlay-service,
.overlay2-service {
    z-index: 0;
    width: 400px;
    height: 300px;
}

.overlay-service {
    left: 0;
    top: 0;
    transform: translateX(120px) translateY(80px);
}

.overlay2-service {
    bottom: 0px;
    right: 115px;
    width: 500px;
}

.overlay-service svg,
.overlay2-service svg {
    fill: #0e2f4e;
}

.main-academic p {
    color: #808080;
    font-size: 1.05rem;
    line-height: 1.77;
}

.bg-icon-svg {
    width: 100px;
    height: 100px;
}

.icon-svg {
    width: 65px;
    height: 100px;
}

.effect-shadow:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.text-c-white {
    color: var(--c-light);
}

/* end section */
/* More Icon */
.btn-more {
    height: 60px;
    margin: 0 auto;
    position: relative;
    width: 200px;
    text-align: center;
}

.btn-more-shape {
    fill: transparent;
    stroke-dasharray: 110 540;
    stroke-dashoffset: -306;
    stroke-width: 8px;
    stroke: #4b80a4;
}

.btn-more-text {
    color: var(--dark);
    font-size: 22px;
    line-height: 32px;
    position: relative;
    top: -48px;
}

@keyframes draw {
    0% {
        stroke-dasharray: 140 540;
        stroke-dashoffset: -474;
        stroke-width: 8px;
    }

    100% {
        stroke-dasharray: 760;
        stroke-dashoffset: 0;
        stroke-width: 5px;
    }
}

.btn-more:hover .btn-more-shape {
    -webkit-animation: 0.5s draw linear forwards;
    animation: 0.5s draw linear forwards;
}

/* Menu Icon */
.menu-right {
    transition: all ease 0.5s;
}

.rotate-icon {
    transform: rotate(-90deg) !important;
    display: inline-flex;
    transition: all ease 0.5s;
}

.header-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.header-icon-2 {
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

html[dir="ltr"] .header-icon {
    margin-right: 0px;
    margin-left: 15px;
}

html[dir="ltr"] .header-icon-2 {
    margin-left: 0px;
    margin-right: 15px;
}

/* video section */

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/* effec new  */
.icon-small {
    height: 40px !important;
    width: 40px !important;
}

.small-img-video {
    height: 197px !important;
}

.big-img-video {
    height: 400px !important;
}

.title-video {
    bottom: 8px;
    right: 18px;
    width: 70%;
}

.overlay-video {
    z-index: -1;
    border-radius: 16px;
    top: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 35%, transparent 80%)
}

.gradient-border-card {
    position: relative;
    padding: 40px;
    border-radius: var(--border-radius);
    flex: 1 1;
    transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 0 0 1px transparent, 0 2px 4px transparent, 0 12px 24px transparent;
    cursor: pointer;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

@keyframes shimmer {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
        background-position: -50%;
    }

    10% {
        opacity: 0.7;
    }

    15% {
        opacity: 0;
        background-position: 150%;
    }

    20% {
        opacity: 0;
    }

    to {
        opacity: 0;
    }
}

.gradient-border-card .shimmer {
    background: linear-gradient(112deg, transparent 30%, rgba(var(--geist-foreground-rgb), 0.1) 40%, rgba(var(--geist-foreground-rgb), 0.3) 50%, rgba(var(--geist-foreground-rgb), 0.1) 60%, transparent 80%);
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    border-radius: inherit;
    background-size: 200% auto;
    background-position: 0;
    animation: shimmer 18s cubic-bezier(0.8, 0, 0.05, 1) infinite;
    animation-delay: var(--delay);
}

.gradient-border-card i {
    content: "";
    position: absolute;
    inset: -1px;
    padding: var(--border-size);
    --border-size: 1px;
    --padding: 1px;
    /* --border-bg: conic-gradient(from 180deg at 50% 50%,#e92a67 0deg,#a853ba 112.5deg,#2a8af6 228.75deg,rgba(42,138,246,0) 360deg); */
    --border-bg: conic-gradient(from 180deg at 50% 50%, #182933 0deg, #15313f 112.5deg, #ffa300 228.75deg, rgba(42, 138, 246, 0) 360deg);

    /* --dark: #182933;
    --c-gray: #15313f;
    --c-indigo: #1f4761;
    --c-orange: #ffa300;
    --c-yellow: #fec619;
    --c-yellow2: #e29f5b; */

    overflow: hidden;
    padding: calc(var(--padding) + var(--border-size));
    border-radius: var(--border-radius);
    display: inline-block;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
    transform: translateZ(0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    border-radius: calc(var(--border-radius) + var(--border-size));
}

.gradient-border-card i:before {
    content: "";
    display: block;
    background: var(--border-bg);
    box-shadow: 0 0 40px 20px --var(--border-bg);
    width: calc(100% * 1.41421356237);
    padding-bottom: calc(100% * 1.41421356237);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: -2;
    animation: landing_spin__XlUIM 5s linear infinite;
}

@keyframes landing_spin__XlUIM {
    0% {
        transform: translate(-50%, -50%) rotate(1turn);
    }

    to {
        transform: translate(-50%, -50%) rotate(0);
    }
}

.gradient-border-card .icon-video {
    position: relative;
    display: inline-flex;
    border-radius: inherit;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-border-card p {
    color: var(--text-color);
}

.gradient-border-card:before,
.gradient-border-card .icon-video:before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(75% 75% at 25% 15%, #fff 0, rgba(255, 255, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.gradient-border-card:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.05);
}




/* background color */
.gradient-background__wrapper {
    background: #1f4762;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
}


.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(250px);
    filter: blur(250px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gradient-background__shape {
    mix-blend-mode: lighten;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    position: absolute;
    border-radius: 100%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);
    animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);
}

.gradient-background__shape--1 {
    bottom: 0;
    left: 0;
    width: 700px;
    height: 700px;
    background: #537890;
    mix-blend-mode: lighten;
    -webkit-transform: translate(-30%, 40%);
    transform: translate(-30%, 40%);
    -webkit-animation-name: gradientShapeAnimation1;
    animation-name: gradientShapeAnimation1;
}

.gradient-background__shape--2 {
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: #75a7c9;
    -webkit-transform: translate(20%, -40%);
    transform: translate(20%, -40%);
    -webkit-animation-name: gradientShapeAnimation2;
    animation-name: gradientShapeAnimation2;
}

@keyframes gradientShapeAnimation1 {
    0% {
        -webkit-transform: translate(-30%, 40%) rotate(-20deg);
        transform: translate(-30%, 40%) rotate(-20deg);
    }

    25% {
        -webkit-transform: translate(0%, 20%) skew(-15deg, -15deg) rotate(80deg);
        transform: translate(0%, 20%) skew(-15deg, -15deg) rotate(80deg);
    }

    50% {
        -webkit-transform: translate(30%, -10%) rotate(180deg);
        transform: translate(30%, -10%) rotate(180deg);
    }

    75% {
        -webkit-transform: translate(-30%, 40%) skew(15deg, 15deg) rotate(240deg);
        transform: translate(-30%, 40%) skew(15deg, 15deg) rotate(240deg);
    }

    100% {
        -webkit-transform: translate(-30%, 40%) rotate(-20deg);
        transform: translate(-30%, 40%) rotate(-20deg);
    }
}

@keyframes gradientShapeAnimation2 {
    0% {
        -webkit-transform: translate(20%, -40%) rotate(-20deg);
        transform: translate(20%, -40%) rotate(-20deg);
    }

    20% {
        -webkit-transform: translate(0%, 0%) skew(-15deg, -15deg) rotate(80deg);
        transform: translate(0%, 0%) skew(-15deg, -15deg) rotate(80deg);
    }

    40% {
        -webkit-transform: translate(-40%, 50%) rotate(180deg);
        transform: translate(-40%, 50%) rotate(180deg);
    }

    60% {
        -webkit-transform: translate(-20%, -20%) skew(15deg, 15deg) rotate(80deg);
        transform: translate(-20%, -20%) skew(15deg, 15deg) rotate(80deg);
    }

    80% {
        -webkit-transform: translate(10%, -30%) rotate(180deg);
        transform: translate(10%, -30%) rotate(180deg);
    }

    100% {
        -webkit-transform: translate(20%, -40%) rotate(340deg);
        transform: translate(20%, -40%) rotate(340deg);
    }
}

.gradient-background__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100px;
}


@-moz-document url-prefix() {
    .gradient-background__wrapper {
        background-size: cover;
    }


    /* .gradient-background,
    .gradient-background__noise {
        display: none;
    } */
}






/*****************************/
.glowing-wrapper-button {
    z-index: 1;
    color: #fff;
    letter-spacing: -0.01em;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 62.5rem;
    padding: 8px;
    font-size: 0.88rem;
    line-height: 1.42;
    text-decoration: none;
    position: relative;
    max-width: 100%;
    display: inline-block;
}

.glowing-wrapper {
    border-radius: 8px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.glowing-wrapper.glowing-wrapper-active {
    /* background-color: #000; */
}

.glowing-wrapper-borders-masker {
    width: 100%;
    opacity: 0;
    border-radius: 62.5rem;
    padding: 0.11rem;
    line-height: 100%;
    transition: opacity 1s;
    position: absolute;
    top: 0;
    left: 0;
}

.glowing-wrapper .button-text {
    z-index: 2;
    color: #fff;
    position: relative;
}

.glowing-wrapper-animations {
    width: 100%;
    opacity: 0;
    transition: opacity 1s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.glowing-wrapper-mask {
    opacity: 1;
}

.glowing-wrapper-glow {
    opacity: 0.12;
    filter: blur(8px);
}

.glowing-wrapper-borders {
    width: 100%;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.glowing-wrapper-mask-wrapper {
    opacity: 1;
}

.glowing-wrapper-button:after {
    background: radial-gradient(85% 120% at 50% 120%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 999px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    opacity: 0;
    position: absolute;
    top: -2px;
    transition: 1s all;
    width: calc(100% + 4px);
}

.glowing-wrapper-button:hover:after {
    opacity: 0.7;
}

.glowing-wrapper-active .glowing-wrapper-animations,
.glowing-wrapper-active .glowing-wrapper-borders-masker {
    opacity: 1;
}

.glowing-wrapper-animations:before,
.glowing-wrapper-borders:before {
    content: "";
    float: left;
    padding-top: 100%;
}

.glowing-wrapper-animations:after,
.glowing-wrapper-borders:after {
    clear: both;
    content: "";
    display: block;
}

.glowing-wrapper-animations {
    pointer-events: none;
}

.glowing-wrapper-animations * {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.glowing-wrapper-borders,
.glowing-wrapper-glow,
.glowing-wrapper-mask {
    animation: borderTurn 2.5s infinite linear;
    background-image: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, 0.5) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, 0.5) 360deg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glowing-wrapper-mask-wrapper {
    -webkit-mask: url("data:image/svg+xml,url('data:image/svg+xml,%253Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%253E%253Crect width='28' height='24' fill='black'/%253E%253C/svg%253E%250A');");
    mask: url("data:image/svg+xml,url('data:image/svg+xml,%253Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%253E%253Crect width='28' height='24' fill='black'/%253E%253C/svg%253E%250A');");
    mask-repeat: repeat;
    -webkit-mask-size: auto;
    mask-size: auto;
}

.glowing-wrapper-borders {
    animation-name: borderTurnWithTranslate;
}

.glowing-wrapper-borders-masker {
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes borderTurn {
    0% {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes borderTurnWithTranslate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.close-button {
    background: transparent;
    border-radius: 50%;
    animation: animate 3s linear infinite;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(48, 0, 117, 0.7), 0 0 0 0 rgba(48, 0, 117, 0.7);
    }

    40% {
        box-shadow: 0 0 0 20px rgba(48, 0, 117, 0), 0 0 0 0 rgba(48, 0, 117, 0.7);
    }

    80% {
        box-shadow: 0 0 0 20px rgba(48, 0, 117, 0), 0 0 0 30px rgba(48, 0, 117, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(48, 0, 117, 0), 0 0 0 30px rgba(48, 0, 117, 0);
    }
}

/*Responsive*/
@media only screen and (max-width: 520px) {

    .big-img-video,
    .small-img-video {
        height: 300px !important;
    }

    .small-img-video {
        margin-bottom: 10px;
    }
}

/****************/
/* Faculity  */

.main-card {
    min-height: 100vh;
    min-height: 100svh;
    background: #1f2c3a;
    position: relative;
    overflow: hidden;
}

img.faculty-img {
    border-radius: 50%;
    width: clamp(100px, 40vw, 120px);
    height: clamp(100px, 40vw, 120px);
    object-fit: cover;
    object-position: top;
}

.circle-top {
    width: clamp(25rem, 30vw, 31.25rem);
    position: absolute;
    top: 3em;
    left: -8em;
    height: clamp(25rem, 30vw, 31.25rem);
    background: #00458f;
    background: radial-gradient(circle, #00458f8f 0%, #00458e00 60%, #ffffff00 100%);
    background: -moz-radial-gradient(circle, #00458f8f 0%, #00458e00 60%, #ffffff00 100%);
    background: -webkit-radial-radial-gradient(circle, #00458f8f 0%, #00458e00 60%, #ffffff00 100%);
    border-radius: 50%;
}

.circle-bottom {
    width: clamp(25rem, 30vw, 31.25rem);
    position: absolute;
    bottom: -5em;
    right: -8em;
    height: clamp(25rem, 30vw, 31.25rem);
    background: #00458f;
    background: radial-gradient(circle, #00458f8f 0%, #00458e00 65%, #ffffff00 100%);
    background: -moz-radial-gradient(circle, #00458f8f 0%, #00458e00 65%, #ffffff00 100%);
    background: -webkit-radial-radial-gradient(circle, #00458f8f 0%, #00458e00 65%, #ffffff00 100%);
    border-radius: 50%;
}

.faculty-header {
    background: linear-gradient(to top, #1f2c3a 0%, #2f3c4742 100%), url("./img/faculity-bg.jpg") no-repeat 50% 50%/cover;
    width: 100%;
    min-height: 25em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.faculty-header .header-content {
    width: min(37.5em, 90%);
    margin-top: 5em;
    position: relative;
    z-index: 10;
}

.faculty-header .header-content span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.063rem;
    font-size: clamp(0.8rem, 0.7625rem + 0.1875vw, 0.95rem);
}

.faculty-header .header-content h1 {
    font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2rem);
    font-weight: 700;
}

.faculty-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 75em;
    margin-inline: auto;
    gap: 0.938rem;
    transform: translatey(-10em);
    position: relative;
    z-index: 10;
}

.faculty-section .card-display {
    padding: 1.875em 1.25em;
    max-width: 18.75rem;
    width: 90%;
    height: 16.875rem;
    display: grid;
    place-content: center;
    place-items: center;
    text-align: center;
    position: relative;
}

.faculty-section .card-display::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    z-index: -1;
    border: 0.125rem solid transparent;
    background: linear-gradient(45deg, #1e272e, #48627a) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.faculty-section .card-display h2 {
    color: #fff;
    letter-spacing: 0.05rem;
    font-size: 1rem;
    margin-top: 0.625em;
    margin-bottom: 0.188em;
}

.faculty-section .card-display p {
    color: #afafaf;
    font-size: clamp(0.8rem, 0.7625rem + 0.1875vw, 0.95rem);
}

.faculty-section .card-top {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    gap: 0.938rem;
    flex-wrap: wrap;
}

.college-faculity-title {
    transform: translateY(-15rem);
}

/* wave */
.line-wave {
    position: absolute;
    width: 200%;
    height: 100vh;
    left: 0;
    top: 0;
    overflow: visible;
    pointer-events: none;
    z-index: -1;
    --move-period: 30s;
    --scale-period: 25s;
    --color-one: hsl(204.76deg 48.84% 25.29%);
    --color-two: hsl(40deg 76.8% 49.02%);
    --color-three: hsl(204.18deg 51.94% 25.29%);
}

.line-wave path {
    transform-origin: center;
    stroke-width: 2;
    fill: transparent;
}

.line-wave g:nth-child(1) {
    animation: move-across var(--move-period) infinite linear;
}

.line-wave g:nth-child(2) {
    animation: move-across calc(var(--move-period) * 1.2) calc(var(--move-period) * -0.33) infinite linear;
}

.line-wave g:nth-child(3) {
    animation: move-across calc(var(--move-period) * 1.4) calc(var(--move-period) * -0.66) infinite linear;
}

.line-wave g:nth-child(1) path {
    animation: scale-y calc(var(--scale-period)) calc(var(--scale-period) * -0.2) infinite ease;
    stroke: var(--color-one);
}

.line-wave g:nth-child(2) path {
    animation: scale-y calc(var(--scale-period) * 1.2) calc(var(--scale-period) * -0.53) infinite ease;
    stroke: var(--color-two);
}

.line-wave g:nth-child(3) path {
    animation: scale-y calc(var(--scale-period) * 1.1) calc(var(--scale-period) * -0.86) infinite ease;
    stroke: var(--color-three);
}

@keyframes scale-y {
    0% {
        transform: scaleY(30%);
    }

    50% {
        transform: scaleY(-30%);
    }

    100% {
        transform: scaleY(30%);
    }
}

@keyframes move-across {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Uni App */
.main-app {
    background-size: cover;
}

.overlay-app {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    background-image: url(/s/apps3.png);
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center;
}

.overlay-app2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-image: url(/s/apps2.png);
    background-repeat: no-repeat;
    background-position: center;

}

.overlay-app3 {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background-image: url(/s/apps1.png);
    background-repeat: no-repeat;
    height: 100%;
}

/* Universities Logo */
.main-logo {
    height: 190px;
    background-color: #214660;
    padding: 0.9rem;
    border-radius: 10px;
}

.main-logo .img-logo-slider {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
    background-color: #fff;
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.logo-border {
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(226, 159, 91, 1) 0%, rgba(254, 198, 25, 1) 50%, rgba(255, 163, 0, 1) 100%);
    ;
    --shadow-color: 220 40% 2%;
    --shadow-strength: 25%;
    --inner-shadow-highlight: inset 0 -.5px 0 0 hsla(0, 0%, 100%, .067), inset 0 .5px 0 0 rgba(0, 0, 0, .467);
    box-shadow: #121111 0px 3px 8px;
}

/* test */
.button_su {
    overflow: hidden !important;
    position: relative;
    border-radius: 10px;
}

.su_button_circle {
    background-color: #ffa300;
    border-radius: 1000px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    animation-timing-function: ease-in-out;
}

.button_su_inner {
    display: block;
    background: oklch(0.97 0 0);
    ;
    color: #182933;
    padding-inline: 0.5rem;
    border-radius: 10px;
    transition: 400ms;
    text-decoration: none;
    z-index: 100000;
}

.button_text_container {
    position: relative;
    z-index: 10000;
}

.explode-circle {
    animation: explode 0.5s forwards;

}

.desplode-circle {
    animation: desplode 0.5s forwards;
}

@keyframes explode {
    0% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80, 0.2);
    }

    100% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: #ffa300;
    }
}

@keyframes desplode {
    0% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: #39627d;
    }

    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(112, 106, 146, 0.6);
    }
}

/* classification */
/* .main-classification {
    height: 226px;
    background-color: #FFFFFF;
    background-image: url(/s/bg-shape.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    box-shadow: 0px -4px 34px 0px rgba(0, 29.999999999999975, 76, 0.06)
}

.bg-classification {
    background-image: url(/s/bg-classification.png);
    background-position: -50px -99px;
    background-repeat: no-repeat
}

.overlay-classification {
    right: 0;
    bottom: 0px;
    z-index: -1;

}

.img-classification {
    height: 35px;
} */

.main-classification {
    height: 226px;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    box-shadow: 0px -4px 34px 0px rgba(0, 29.999999999999975, 76, 0.06)
}

.bg-classification {
    background-image: url(./bg-classification2.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.overlay-classification {
    right: 0;
    bottom: 0px;
    z-index: -1;

}

.img-classification {
    height: 30px;
}

.logo-classification {
    width: 60px;
    height: 60px;
    border: 2px dotted #456b86;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave-bg {
    top: 20px
}

.card-policies {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 32px -10px rgba(0, 0, 0, 0.08);
}

.card-policies:has(.card-policies__link:hover) .card-policies__extra {
    transform: translateY(0);
    transition: transform 0.35s;
}

.card-policies:hover .card-policies__content {
    background-color: #10316B;
    bottom: 100%;
    transform: translateY(100%);
    padding: 50px 10px;
    transition: all 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-policies:hover .card-policies__link {
    opacity: 1;
    transform: translate(-50%, 0);
    transition: all 0.3s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-policies:hover img {
    transform: scale(1);
    transition: 0.35s 0.1s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-policies__content {
    width: 100%;
    text-align: center;
    background-color: #164392;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(0);
    transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
    will-change: bottom, background-color, transform, padding;
    z-index: 1;
}

.card-policies__content::before,
.card-policies__content::after {
    content: "";
    width: 100%;
    height: 120px;
    background-color: inherit;
    position: absolute;
    left: 0;
    z-index: -1;
}

.card-policies__content::before {
    top: -80px;
    -webkit-clip-path: ellipse(60% 80px at bottom center);
    clip-path: ellipse(60% 80px at bottom center);
}

.card-policies__content::after {
    bottom: -80px;
    -webkit-clip-path: ellipse(60% 80px at top center);
    clip-path: ellipse(60% 80px at top center);
}

.card-policies:hover .card-policies__desc {
    display: block;
}

.card-policies .card-policies__desc {
    display: none;
}

.card-policies__title {
    font-size: 1rem;
    margin-bottom: 1em;
    min-height: 3rem;
}

.card-policies__title span {
    color: #FFCE63;
    font-family: fmedium;
}

.card-policies__text {
    font-size: 0.75rem;
}

.card-policies__link {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%, 10%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    color: #FFCE63;
    opacity: 0;
    padding: 10px;
    transition: all 0.35s;
}

.card-policies__link:hover svg {
    transform: translateX(4px);
}

.card-policies__link svg {
    width: 18px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.card-policies__extra {
    height: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    background-color: #86b971;
    padding: 80px;
    bottom: 0;
    z-index: 0;
    color: #dee8c2;
    transform: translateY(100%);
    will-change: transform;
    transition: transform 0.35s;
}

.card-policies__extra span {
    color: #2d7f0b;
}

.card-policies img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
    transform: scale(1.2);
    transition: 0.35s 0.35s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

/* logo code */
.avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 10%;
    overflow: hidden;
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.015);
}

.avatar img {
    height: 70%;
    width: 70%;
    z-index: 2;

    /* Optionally add a drop shadow to the main image	 */
    /* to make it feel "lifted"	 */
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.12));
}

.avatar .background {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    transform: scale(2);
    filter: blur(13px) opacity(0.2);
}


.main-container {
    display: grid;
    grid-template-columns: 0fr 0fr 0fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
    place-items: center;
}

.classify-icon::after,
.uni-title::after {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(/s/img/classify.svg);
    position: absolute;
    background-position: center;
    background-size: cover;
    right: 0;
    top: 0;
}

.uni-title::after {
    background-image: url(/s/img/edu.svg);
}

.bg-uni {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.bg-uni img {
    z-index: 1;
}

.overlay-uni {
    left: 0;
    top: 0;
    right: 0;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: 1;
    border-radius: 10%;
}

.shadow-uni {
    box-shadow: 2px 2px 10px #ddd;
    border-radius: 5%;
}

.h-200 {
    height: 200px;
}

.radius {
    border-radius: 5%;
}

.uni-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.swiper-slide img {
    display: block;
    object-fit: cover;
}

/* monster news */

.section-title-line {
    width: 100%;
    height: 5px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid #253346;
    border-left: none;
    border-right: none;
}

.section-title-line::before {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    width: 40px;
    height: 5px;
    background: #e29f5b;
}

.section-title-line::after {
    content: "";
    position: absolute;
    right: 36px;
    top: -1.5px;
    width: 10px;
    height: 6px;
    background: #0C192A;
    clip-path: polygon(40% 0, 100% 0%, 60% 100%, 0 100%);
}

/* button view */
.view-all-btn.view-all-btn-two .link-btn {
    border: none;
    padding: 11px 18px;
    background: rgba(255, 255, 255, 0.20);
    color: #ffff;
}

.view-all-btn .link-btn {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    border-radius: 4px;
    border: 1px solid #CFCFCF;
    padding: 10px 17px;
    color: var(--tg-secondary-color);
    gap: 10px;
    --arrow-hover-move-x: 110%;
    --arrow-hover-move-y: 100%;
}

.view-all-btn .link-btn .svg-icon svg {
    color: #ffff;
    width: 10px;
    transition: all 0.3s ease-out 0s;
    transform: translateY(-2px);
}

.main-news {
    height: 200px;
    transition: all ease-in-out 0.5s;
}

.main-news:hover .img-news,
.swiper-slide:hover .img-news {
    transform: scale(1.3);
    transition: all ease-in-out 0.5s;
}

.img-news {
    transition: all ease-in-out 0.5s;
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.view-all-btn .link-btn svg path {
    transition: transform .38s cubic-bezier(.37, .08, .02, .93), opacity .18s ease-out;
}

.view-all-btn .link-btn svg path:nth-of-type(1) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}

.view-all-btn .link-btn svg path:nth-of-type(2) {
    transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y));
    opacity: .5;
    transition-delay: 0s, 0s;
}

.view-all-btn .link-btn:hover svg path:nth-of-type(1) {
    transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)));
    opacity: 0;
    transition-delay: 0s, 0s;
}

.view-all-btn .link-btn:hover svg path:nth-of-type(2) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}

.view-all-btn .link-btn:hover {
    border-color: #183354;
    color: #e29f5b;
    background: #183354;
}

.view-all-btn .link-btn:hover .svg-icon svg {
    color: #e29f5b;
}

/* end button */
.news_date {
    background: linear-gradient(to right, #182933 0%, #182933 0%, #15313f 26%, #1f4761 100%, #2989d8 100%, #207cca 100%, #0b70e1 100%);
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 25px;
    border-radius: 8px;
    z-index: 1;
}

.par-news {
    position: relative;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    height: 7rem;
}

.par-news a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.circle__shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.circle__shape .shape {
    display: inline-block;
    position: relative;
}

.circle__shape .shape.shape1 {
    width: 500px;
    height: 450px;
    left: -300px;
    border-radius: 10%;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
    /* background: #e29f5b; */
    /* background: #1f4761; */
    -webkit-animation: circleAnimation 7s linear infinite;
    animation: circleAnimation 7s linear infinite;
    display: inherit;
}

.shape1 img {
    width: 500px;
    height: 500px;
    opacity: 0.5;
}

.circle__shape .shape.shape2 {
    width: 430px;
    height: 430px;
    left: -300px;
    border-radius: 10%;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
    /* background: #e29e5be3; */
    -webkit-animation: circleAnimation 5s linear infinite;
    animation: circleAnimation 5s linear infinite;
    display: inherit;
    top: -308px;
    z-index: -1;
}

/*circleAnimation*/
@-webkit-keyframes circleAnimation {

    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        -webkit-transform: translate3d(0, 0px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 1px, 0) rotateZ(0.01deg);
    }

    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        -webkit-transform: translate3d(0, 8px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 10px, 0) rotateZ(0.01deg);
    }

    50% {
        -webkit-transform: translate3d(0, 12px, 0) rotateZ(0.01deg);
        transform: translate3d(0, 20px, 0) rotateZ(0.01deg);
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -webkit-transform: translate3d(0, -5px, 0) rotateZ(0.01deg);
        transform: translate3d(0, -5px, 0) rotateZ(0.01deg);
    }
}

/* home slider with fade */


.fill.drop {
    overflow: hidden;
    border-color: #fec619;
    transition: color 0.25s ease-in-out 0.3s;
}

.fill.drop a {
    color: #ffffffd1;
}

.fill.drop:before {
    content: "";
    position: absolute;
    transition: top 0.5s ease-in 0.5s, width 0.5s ease-out, height 0.5s ease-out;
    -webkit-transition: top 0.5s ease-in 0.5s, width 0.5s ease-out, height 0.5s ease-out;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fec619;
    z-index: -1;
}

.fill.drop:hover {
    color: #000;
}

.fill.drop:hover:before {
    transition: top 0.5s ease-in, width 0.5s ease-out 0.5s, height 0.5s ease-out 0.5s;
    -webkit-transition: top 0.5s ease-in, width 0.5s ease-out 0.5s, height 0.5s ease-out 0.5s;
    top: 50%;
    width: 200px;
    height: 200px;
}

.fill.drop:before {
    content: "";
    position: absolute;
    transition: top 0.5s ease-in 0.5s, width 0.5s ease-out, height 0.5s ease-out;
    -webkit-transition: top 0.5s ease-in 0.5s, width 0.5s ease-out, height 0.5s ease-out;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fec619;
    z-index: -1;
}


/* carousel */
.slider-carousel {
    height: 100vh;
    /* margin-top: -50px; */
    /* width: 100vw; */
    overflow: hidden;
    position: relative;
}

.slider-carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.slider-carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.slider-carousel .list .item .content {
    position: absolute;
    top: 30%;
    width: 1140px;
    max-width: 80%;
    right: 0%;
    transform: translateX(30%);
    padding-right: 34%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

html[dir="ltr"] .slider-carousel .list .item .content {
    left: 0% !important;
    right: auto !important;
    padding-right: 0%;
    padding-left: 34%;
    transform: translateX(-30%);


}

.slider-carousel .list .item .author {
    font-weight: bold;
}

.slider-carousel .list .item .title-slider {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.3em;
}

.slider-carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.slider-carousel .list .item .buttons button {
    border: none;
    background-color: #eee;
    font-family: Poppins;
    font-weight: 500;
}

.slider-carousel .list .item .buttons button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    right: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 11px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.thumbnail .item .content {
    color: #ffffffd1;
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 1px 8px;
    background-color: #0C244E;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.thumbnail .item .content .title-slider {
    font-weight: 500;
    font-size: 12px;
    margin: 0;
    text-align: center;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/* arrows */
.slider-carousel .arrows {
    position: absolute;
    bottom: 7rem;
    left: 45%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}

.slider-carousel .arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-family: 'fbold';
}

.slider-carousel .arrows button svg {
    width: 16px;
    height: 16px;

}

.slider-carousel .arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.slider-carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */

.slider-carousel .list .item:nth-child(1) .content .author,
.slider-carousel .list .item:nth-child(1) .content .title-slider,
.slider-carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.slider-carousel .list .item:nth-child(1) .content .title-slider {
    animation-delay: 1.2s !important;
}

.slider-carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation when next click */
.slider-carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    right: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider-carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.slider-carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.slider-carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(-150px);
    }
}

/* running time */

.slider-carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #e29f5b;
    right: 0;
    top: 0;
}

.slider-carousel.next .time,
.slider-carousel.prev .time {
    animation: runningTime 2s linear 1 forwards;
}

@keyframes runningTime {
    to {
        width: 0
    }

    from {
        width: 100%
    }

}


/* prev click */

.slider-carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.slider-carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    right: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        right: 50%;
        border-radius: 20px;
    }
}

.slider-carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.slider-carousel.next .arrows button,
.slider-carousel.prev .arrows button {
    pointer-events: none;
}

.slider-carousel.prev .list .item:nth-child(2) .content .author,
.slider-carousel.prev .list .item:nth-child(2) .content .title-slider,
.slider-carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 0.8s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 820px) {
    .slider-carousel .list .item .content {
        right: 7% !important;
    }

    html[dir="ltr"] .slider-carousel .list .item .content {
        left: 7% !important;
        right: auto !important;
    }
}

@media screen and (max-width: 480px) {
    .slider-carousel .arrows {
        left: 52%;
    }

    .slider-carousel .list .item .content {
        padding-right: 0 !important;
        right: 38% !important;
    }

    html[dir="ltr"] .slider-carousel .list .item .content {
        padding-left: 0 !important;
        left: 38% !important;
        right: auto !important;
    }

}

@media screen and (max-width: 678px) {
    .slider-carousel .list .item .content {
        padding-right: 0;
        right: 45%;
    }

    html[dir="ltr"] .slider-carousel .list .item .content {
        padding-left: 0 !important;
        left: 38% !important;
        right: auto !important;
    }

    header {
        max-width: 100%;
    }

    .slider-carousel .list .item .content .title-slider {
        font-size: 30px;
    }
}

@media screen and (max-width: 1440px) {
    .slider-carousel .list .item .content {
        padding-right: 28%
    }

    html[dir="ltr"] .slider-carousel .list .item .content {
        padding-right: 0;
        padding-left: 28%;
    }

}

.conference-container {
    position: relative;
}

.conference-container .conference-card {
    position: relative;
    height: 450px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: #00000053 0px 4px 8px;
}

.conference-container .conference-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #10316B;
    clip-path: circle(150px at 80% 20%);
    transition: 0.5s ease-in-out;
}

.conference-container .conference-card:hover:before {
    clip-path: circle(300px at 80% -20%);
}

.conference-container .conference-card:after {
    content: "UOWA";
    position: absolute;
    top: 30%;
    left: 30%;
    font-size: 3em;
    font-weight: 800;
    font-style: italic;
    color: rgba(255, 255, 255, 0.04);

}

.conference-container .conference-card .imgBx {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 2;
}

.conference-container .conference-card:hover .imgBx {
    top: 0%;
    transform: translateY(-25%);
    /* bug  */
}

.conference-container .conference-card .imgBx img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
}

.conference-container .conference-card .contentBx {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    transition: 1s;
    z-index: 90;
    margin-bottom: 10px;
}

.conference-container .conference-card:hover .contentBx {
    height: 300px;

}

.conference-container .conference-card .contentBx h2 {
    position: relative;
    font-weight: bold;
    font-family: fbold;
    font-size: 20px;
    letter-spacing: 1px;
    color: #10316B;

}

.conference-container .conference-card:hover .contentBx h2 {
    color: #ffc107;

}

.conference-container .conference-card .contentBx p {
    position: relative;
    color: #0C244E;
    font-size: 13px;
    letter-spacing: 0;
    line-height: normal;
    text-overflow: ellipsis;
    font-weight: normal;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

}

.conference-container .conference-card:hover .contentBx p {
    position: relative;
    color: #10316B;
    font-size: 13px;
    letter-spacing: 0;
    line-height: normal;
    text-overflow: ellipsis;
    font-weight: normal;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;

}


.conference-container .conference-card .contentBx a {
    display: inline-block;
    padding: 5px 20px;
    background: #FFCE63;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s;
}

.conference-container .conference-card:hover .contentBx a {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: .7s;
}

/*  2024-10-27 13:24:58*/

.s-50 {
    width: 50px;
    height: 50px;
    transition: all ease-in-out 0.5s;
}

.s-100 {
    width: 100px;
    height: 100px;
    transition: all ease-in-out 0.5s;
}

.main-info:hover .s-100 {
    height: 90px;
    width: 90px;
    transition: all ease-in-out 0.5s;
}

.main-info:hover .s-50 {
    height: 45px;
    width: 45px;
    transition: all ease-in-out 0.5s;
}

.info-bg {
    background: #fcfcfc;
}

.main-info {
    /* padding: 40px 26px; */
    border-radius: 30px;
    height: 227px;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    border: 0px solid #20265b;
    transition: all ease 0.5s;
}

.info-title {
    color: #20265b;
}

.info-icon {
    background-color: #0C244E;
}

.main-info::before,
.main-info::after,
.effect-info,
.effect2-info {
    content: "";
    width: 0;
    height: 1px;
    background: #fec451;
    transition: all ease 0.4s;
    position: absolute;
    bottom: 0;
    right: 0;
}

.effect-info,
.effect2-info {
    width: 1px;
    height: 0;
}

.effect2-info {
    top: 0;
    left: 0;
    right: auto;
}

.main-info:hover::before,
.main-info:hover::after {
    width: 100%;
}

.main-info:hover .effect-info,
.main-info:hover .effect2-info {
    height: 100%;
    transition: all ease 0.4s;
}

.main-info::after {
    top: 0;
}

@media only screen and (max-width: 1400px) {
    .main-info {
        height: 180px;
    }

    .s-100 {
        height: 70px;
        width: 70px;
    }

    .info-icon img {
        transform: scale(0.8);
    }

    .info-title h5 {
        font-size: 0.9rem;
    }
}

/* App */
.bg-app-section {
    border-radius: 20px;
    background-image: url("/s/img/main-app-bg.jpg");
    color: #fff;
    text-align: center;
    background-size: cover;
}

.main-app {
    z-index: 1;
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    top: 25px;
    bottom: 0;
    left: 0;
    right: 0;
}

.title-app {
    font-family: "fbold";
}

.img-app {
    z-index: 1;
    width: 300px;
    position: relative;
}

.sub-app {
    padding: 2.6% 26% 26.2% 16%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.sub-img-app {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.ellipses-holder {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: -1;
    overflow: hidden;
}

/* 
element.style {
    transform-style: preserve-3d;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(334.012deg) skew(0deg, 0deg);
} */
.ellipse-right {
    position: absolute;
    left: auto;
    top: 0%;
    right: -530px;
    bottom: auto;
    z-index: -1;
    width: 650px;
    height: 650px;
    background-image: url(/s/img/ellipse.png);
    background-position: 50% 50%;
    background-size: cover;
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

/* element.style {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(127.609deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    will-change: transform;
} */
.ellipse-left {
    position: absolute;
    left: -430px;
    top: 5em;
    right: auto;
    bottom: auto;
    z-index: -1;
    width: 520px;
    height: 650px;
    background-image: url(/s/img/ellipse2.png);
    background-position: 50% 50%;
    background-size: cover;
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }

    100% {
        -webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
    }
}

@keyframes spin {
    0% {
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }

    100% {
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
    }
}

.bg-mobile-section {
    /* background-image: linear-gradient(225deg, #7878ec, #9a59f5 51%, #ef753a 64%); */
    filter: blur(120px);
    border-radius: 400px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -60px;
    background-image: linear-gradient(225deg, #11435c, #64aedc 51%, #4b80a4 64%);
}

/* Uni services slide */

.img-department {
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
    transition: all ease-in-out 0.4s;
}

.shape-depart {
    position: relative;
    overflow: hidden;
}

.shape-depart::before {
    content: '';
    position: absolute;
    width: 119px;
    height: 112px;
    top: auto;
    left: -1px;
    bottom: -1px;
    right: auto;
    background-color: #fcfcfc;
    mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHcAAABwCAYAAAAkPO8yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQyMEY5MUZGNDQyNTExRUY4RjQwQ0NBNjAyOUU4MDU4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQyMEY5MjAwNDQyNTExRUY4RjQwQ0NBNjAyOUU4MDU4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDIwRjkxRkQ0NDI1MTFFRjhGNDBDQ0E2MDI5RTgwNTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NDIwRjkxRkU0NDI1MTFFRjhGNDBDQ0E2MDI5RTgwNTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5n8lFOAAADrUlEQVR42uydTYhPURiHj49hRtIYJkkNGmLyVcNCw2aSoSZmxgL5mGJBJFlQFrKwYG+hlJqUWSoLyoKFjQU2SkgZHzVK+SolC1/v2730b8ww85+ve37neerXWM7cx3vOvfe859wQQJWfE7kGuiAXuYBcKApTkatLFXJ1mYFc5EKEzEauLrXI1WUecnWpQ64u9cjVZQmXQBN/gfEtsCokyWrLJIZlTZp+/wO5wnJBCx+O3/t8mweEWF8ilhsqMdq4BJp4ob4urVwuiQ6b+ohFrhDXkKvJMst35GpytR+xyBVgjeUHcvXwlxb3BxCL3Mg5/g+xyI2YRssX5Orh3Y0v/iMWuRFSabk9CLHIjYwplhuDFIvciKi23BqCWORGwkLLoyGKRW4EbLd8KkMscgvMHMuVMqUit8A3TUcsH4cpFrkFosLSaekZAanILQg1lhPh7y4K5EZcpd450W35OgpSkTtOQi9Z3o2iUOSOEb4Jend+1ztWQv9kAtd/RJlsWWtpsWwO2b6dcWsfRu7wWZQPtxstzSE/bKQIILe86vTO/lbLlsBe2OjxoXWDpcvyYaznTm6oRoellnOWVxEJRe5/8Cq9GQbuKkRuhKyz3IlcKHL74D1JlwUqFbl98GfSt2JSkWucDv3vsUFuxHin/kVhqUnLvZCA2CTlnkxEbHJyWwTviFkVClnD2cP8ZzLvTFPhfEpiU6I1oXk2qWHZl+i8Wz+5pbkUhuUDIdE1V/XK9S9jPQ/5mf9Urhb7UxWrXrn+tz0JCbfBKFduc0i8v0lZ7qHUn/9Uh+W5Iet7qqBy9ehMXayy3F0BJIflBstj1GpW7k606lbu08AWD8nKXY5YXbnbUKortx2lmnOun7LWg1LNyu1AJ3IZliPDG9/eBL4qKlm5bYjVlcsjkOiw7Htre0N2ICaIVe4OxOrK3YNGzWF5seUZGjUrdy8KNSvX59mXIeuXArHKbUesbuU+CNmpqCBWuS2I1axc/53vhuxcYxCr3A7Ealauf4HSN1LXo06vck8hVrNyV1nuBd4jy8mdlj/6NKBMa1j2/4BdiNXkTEjwmKGQwPGAxxCkKfdoSOicxlTk+n3AWcToyfV+qOtI0ZPrn0vrRYiWXF+T7WZ+1ZJbkz/mfEaCzqmtCywHLYdDgb5YyevH8pkesjOP9+VzK1s/Ipc7Pxe5Nf9ZyeWOU67fFK2wrLQ0WppyuVAwuVUlVeansFVbZpakNhdXl8fXV2dxKYsplw/6ifJLgAEA5HxWs6LkABIAAAAASUVORK5CYII=);
    z-index: 1;
    mask-repeat: no-repeat;
    transform: rotateY(180deg);
}

.button-depart {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    font-size: 13px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #fec451;
    transition: all ease 0.3s;
}

.arrow-depart {
    width: 26px;
    height: 26px;
}

.arrow2-animation {
    transform: translateX(70px) translateY(52px);
    transition: all ease-in-out 0.3s;
}

.arrow-animation {
    transform: translateX(-11px) translateY(0);
    transition: all ease-in-out 0.3s;
}

.shape-depart:hover .arrow2-animation {
    transform: translateX(15px) translateY(0);
    transition: all ease-in-out 0.3s;
}

.shape-depart:hover .arrow-animation {
    transform: translateX(-70px) translateY(-52px);
    transition: all ease-in-out 0.3s;
}

html[dir="ltr"] .arrow-animation {
    transform: translateX(11px) translateY(0) !important;
}

html[dir="ltr"] .shape-depart:hover .arrow2-animation {
    transform: translateX(-15px) translateY(0);
}



.title-depart {
    position: absolute;
    bottom: 15px;
    right: 30px;
    z-index: 1;
    color: #fcfcfc;
    line-height: 26px;
}

html[dir="ltr"] .title-depart {
    left: 91px;
    right: auto !important;
    text-align: left;
}

.overlay-depart::after {
    position: absolute;
    width: 100%;
    height: 65px;
    content: "";
    background-color: #0202029c;
    right: 15px;
    bottom: 0px;
    border-bottom-right-radius: 400px;
    filter: blur(11px);
}

.shape-depart:hover .button-depart {
    transition: all ease 0.4s;
    background-color: #0C244E;
}

.shape-depart:hover .img-department {
    transform: scale(1.2);
    transition: all ease-in-out 0.4s;
    border-radius: 30px;
}

/* staff */

.team-bx {
    width: 100%;
    transition: all .3s ease;

}

.team-thmb {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brd-rd5 {
    border-radius: 5px;
}

.team-thmb>a {
    float: left;
    width: 100%;
    position: relative;
}

.team-thmb>a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000;
    opacity: 0;
}

.team-bx:hover .team-thmb>a::before {
    opacity: .3;
}

.team-thmb img {
    width: 100%;
    height: 20rem;
}

.team-bx:hover .team-inf {
    background-color: #e9ecef;
}

.team-inf {
    float: left;
    width: 100%;
    margin-left: 5%;
    max-width: 90%;
    margin-top: -25px;
    z-index: 1;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    padding: 15px 15px;
}

.team-inf-name {
    font-family: 'fbold';
    color: var(--c-indigo);
    font-size: 1.1rem;
}


/*  */

.counter-card {
    position: relative;
    --transition-duration: 500ms;
    --transition-easing: ease-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    background-color: #FAEBCD;
    backdrop-filter: blur(2px);
    border-radius: 0.5rem;
    box-shadow: 0px calc(100% / 6) calc(100% / 3) rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-duration) var(--transition-easing);
    overflow: hidden;
}

.counter-card::before {
    content: '';
    background: rgba(255, 255, 255, 0.4);
    width: 60%;
    height: 100%;
    top: 0%;
    left: -125%;
    transform: skew(45deg);
    position: absolute;
    transition: left var(--transition-duration) var(--transition-easing);
}

.counter-card:hover {
    transform: translateY(-5%);
}

.counter-card:hover::before {
    left: 150%;
}

/* .rounded-img{
    position: absolute;
    content: "";
    top:-2rem;
    width: 5rem;
    height: 5rem;
    background-color: #FAEBCD;
    border-radius: 50%;
    border: 4px solid #F5F5F3;
    z-index: 999;
    overflow: hidden;
} */

/* Colleges */
.main-college {
    padding: 40px 30px 30px 40px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background-color: #ffffff;
    z-index: 1;
    height: 25.5rem;

}


.main-college::before {
    content: '';
    position: absolute;
    width: 119px;
    height: 112px;
    top: auto;
    left: 0;
    bottom: -1px;
    right: auto;
    transform: rotateY(180deg);
    background-color: #f5f5f5;
    mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHcAAABwCAYAAAAkPO8yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQyMEY5MUZGNDQyNTExRUY4RjQwQ0NBNjAyOUU4MDU4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQyMEY5MjAwNDQyNTExRUY4RjQwQ0NBNjAyOUU4MDU4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDIwRjkxRkQ0NDI1MTFFRjhGNDBDQ0E2MDI5RTgwNTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NDIwRjkxRkU0NDI1MTFFRjhGNDBDQ0E2MDI5RTgwNTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5n8lFOAAADrUlEQVR42uydTYhPURiHj49hRtIYJkkNGmLyVcNCw2aSoSZmxgL5mGJBJFlQFrKwYG+hlJqUWSoLyoKFjQU2SkgZHzVK+SolC1/v2730b8ww85+ve37neerXWM7cx3vOvfe859wQQJWfE7kGuiAXuYBcKApTkatLFXJ1mYFc5EKEzEauLrXI1WUecnWpQ64u9cjVZQmXQBN/gfEtsCokyWrLJIZlTZp+/wO5wnJBCx+O3/t8mweEWF8ilhsqMdq4BJp4ob4urVwuiQ6b+ohFrhDXkKvJMst35GpytR+xyBVgjeUHcvXwlxb3BxCL3Mg5/g+xyI2YRssX5Orh3Y0v/iMWuRFSabk9CLHIjYwplhuDFIvciKi23BqCWORGwkLLoyGKRW4EbLd8KkMscgvMHMuVMqUit8A3TUcsH4cpFrkFosLSaekZAanILQg1lhPh7y4K5EZcpd450W35OgpSkTtOQi9Z3o2iUOSOEb4Jend+1ztWQv9kAtd/RJlsWWtpsWwO2b6dcWsfRu7wWZQPtxstzSE/bKQIILe86vTO/lbLlsBe2OjxoXWDpcvyYaznTm6oRoellnOWVxEJRe5/8Cq9GQbuKkRuhKyz3IlcKHL74D1JlwUqFbl98GfSt2JSkWucDv3vsUFuxHin/kVhqUnLvZCA2CTlnkxEbHJyWwTviFkVClnD2cP8ZzLvTFPhfEpiU6I1oXk2qWHZl+i8Wz+5pbkUhuUDIdE1V/XK9S9jPQ/5mf9Urhb7UxWrXrn+tz0JCbfBKFduc0i8v0lZ7qHUn/9Uh+W5Iet7qqBy9ehMXayy3F0BJIflBstj1GpW7k606lbu08AWD8nKXY5YXbnbUKortx2lmnOun7LWg1LNyu1AJ3IZliPDG9/eBL4qKlm5bYjVlcsjkOiw7Htre0N2ICaIVe4OxOrK3YNGzWF5seUZGjUrdy8KNSvX59mXIeuXArHKbUesbuU+CNmpqCBWuS2I1axc/53vhuxcYxCr3A7Ealauf4HSN1LXo06vck8hVrNyV1nuBd4jy8mdlj/6NKBMa1j2/4BdiNXkTEjwmKGQwPGAxxCkKfdoSOicxlTk+n3AWcToyfV+qOtI0ZPrn0vrRYiWXF+T7WZ+1ZJbkz/mfEaCzqmtCywHLYdDgb5YyevH8pkesjOP9+VzK1s/Ipc7Pxe5Nf9ZyeWOU67fFK2wrLQ0WppyuVAwuVUlVeansFVbZpakNhdXl8fXV2dxKYsplw/6ifJLgAEA5HxWs6LkABIAAAAASUVORK5CYII=) bottom right no-repeat;
    -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHcAAABwCAYAAAAkPO8yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQyMEY5MUZGNDQyNTExRUY4RjQwQ0NBNjAyOUU4MDU4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQyMEY5MjAwNDQyNTExRUY4RjQwQ0NBNjAyOUU4MDU4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDIwRjkxRkQ0NDI1MTFFRjhGNDBDQ0E2MDI5RTgwNTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NDIwRjkxRkU0NDI1MTFFRjhGNDBDQ0E2MDI5RTgwNTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5n8lFOAAADrUlEQVR42uydTYhPURiHj49hRtIYJkkNGmLyVcNCw2aSoSZmxgL5mGJBJFlQFrKwYG+hlJqUWSoLyoKFjQU2SkgZHzVK+SolC1/v2730b8ww85+ve37neerXWM7cx3vOvfe859wQQJWfE7kGuiAXuYBcKApTkatLFXJ1mYFc5EKEzEauLrXI1WUecnWpQ64u9cjVZQmXQBN/gfEtsCokyWrLJIZlTZp+/wO5wnJBCx+O3/t8mweEWF8ilhsqMdq4BJp4ob4urVwuiQ6b+ohFrhDXkKvJMst35GpytR+xyBVgjeUHcvXwlxb3BxCL3Mg5/g+xyI2YRssX5Orh3Y0v/iMWuRFSabk9CLHIjYwplhuDFIvciKi23BqCWORGwkLLoyGKRW4EbLd8KkMscgvMHMuVMqUit8A3TUcsH4cpFrkFosLSaekZAanILQg1lhPh7y4K5EZcpd450W35OgpSkTtOQi9Z3o2iUOSOEb4Jend+1ztWQv9kAtd/RJlsWWtpsWwO2b6dcWsfRu7wWZQPtxstzSE/bKQIILe86vTO/lbLlsBe2OjxoXWDpcvyYaznTm6oRoellnOWVxEJRe5/8Cq9GQbuKkRuhKyz3IlcKHL74D1JlwUqFbl98GfSt2JSkWucDv3vsUFuxHin/kVhqUnLvZCA2CTlnkxEbHJyWwTviFkVClnD2cP8ZzLvTFPhfEpiU6I1oXk2qWHZl+i8Wz+5pbkUhuUDIdE1V/XK9S9jPQ/5mf9Urhb7UxWrXrn+tz0JCbfBKFduc0i8v0lZ7qHUn/9Uh+W5Iet7qqBy9ehMXayy3F0BJIflBstj1GpW7k606lbu08AWD8nKXY5YXbnbUKortx2lmnOun7LWg1LNyu1AJ3IZliPDG9/eBL4qKlm5bYjVlcsjkOiw7Htre0N2ICaIVe4OxOrK3YNGzWF5seUZGjUrdy8KNSvX59mXIeuXArHKbUesbuU+CNmpqCBWuS2I1axc/53vhuxcYxCr3A7Ealauf4HSN1LXo06vck8hVrNyV1nuBd4jy8mdlj/6NKBMa1j2/4BdiNXkTEjwmKGQwPGAxxCkKfdoSOicxlTk+n3AWcToyfV+qOtI0ZPrn0vrRYiWXF+T7WZ+1ZJbkz/mfEaCzqmtCywHLYdDgb5YyevH8pkesjOP9+VzK1s/Ipc7Pxe5Nf9ZyeWOU67fFK2wrLQ0WppyuVAwuVUlVeansFVbZpakNhdXl8fXV2dxKYsplw/6ifJLgAEA5HxWs6LkABIAAAAASUVORK5CYII=) bottom right no-repeat;
}

html[dir="ltr"] .sub-title-college::before {
    right: auto;
    left: 0;
}

.sub-title-college {
    position: relative;
    font-size: 16px;
}

.sub-title-college::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #ffa300;
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.main-icon-college {
    padding: 25px 0px 20px 0;
    margin-top: 25px;
    border-top: 1px solid rgba(24, 26, 23, .1);
    position: relative;
    line-height: 33px;
}

.icon-college {
    width: 50px;
    height: 50px;
}

.college-par {
    color: #6e778c;
    font-size: 15px;
    height: 165px;
    overflow: hidden;
}

@media (min-width: 1275px) and (max-width: 1290px) {
    .main-college h3 {
        font-size: 20px !important;
    }
}


/* Home gallery */

.mn-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    /* background-color: rgba(245,245,245,0.9); */
    /* background-image:url('/s/img/rect-light.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    /* background: linear-gradient(45deg, #294c5fd9 0%, #303030 100%); */
}

.options-gallery {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
}

.options-gallery .option-g:not(.active) {
    flex-grow: 1;
    border-radius: 30px;
    border: 1px solid var(--c-indigo);
}

.options-gallery .option-g {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 5px 10px;
    /* background: var(--optionBackground, var(--defaultBackground, #e6e9ed)); */
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options-gallery .option-g:not(.active) {
    max-width: 60px;
}

.options-gallery .option-g .shadow-g {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black !important;

}

.options-gallery .option-g:not(.active) .label-g {
    bottom: 10px;
    right: 10px;
}

.options-gallery .option-g .label-g {
    display: flex;
    position: absolute;
    right: 0px;
    height: 40px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options-gallery .option-g .label-g .info-g {
    margin-right: 10px;
}

html[dir="ltr"] .options-gallery .option-g .label-g .info-g {
    margin-left: 10px;
    margin-right: auto;
}

.options-gallery .option-g .info-g {
    display: none;
}

.options-gallery .option-g.active .label-g .info-g {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    white-space: pre;
}

.pic_link {
    border: 1px #db9e30 solid;
    padding: 11px;
    border-radius: 50%;
}

.options-gallery .option-g.active .pic_link {
    margin: 0px 1rem;
}

.options-gallery .option-g:not(.active) .pic_link {
    margin-right: -2px;
}


.options-gallery .option-g.active {
    flex-grow: 10000;
    transform: scale(1);
    max-width: 600px;
    margin: 0px;
    border-radius: 40px;
    background-size: cover;
}

.options-gallery .option-g.active .label-g {
    bottom: 20px;
    right: 20px;
}

html[dir="ltr"] .options-gallery .option-g.active .label-g {
    left: 20px;
    right: auto;
}


@media screen and (max-width: 718px) {
    body .options-gallery {
        min-width: 520px;
    }

    .options-gallery .option-g:not(.active) {
        max-width: 100% !important;
    }

    .options-gallery .option-g .label-g .pic_link {
        margin: 0 0.5rem;
    }

    html[dir="ltr"] .options-gallery .option-g .label-g .pic_link {
        top: 10px;
        position: relative;
    }

    .options-gallery .option-g .label-g .main-g {
        font-size: 1rem;
        line-height: 2rem;
    }
}

@media screen and (max-width: 638px) {
    body .options-gallery {
        min-width: 440px;
    }
}

@media screen and (max-width: 558px) {
    body .options-gallery {
        min-width: 360px;
    }
}

@media screen and (max-width: 478px) {
    body .options-gallery {
        min-width: 380px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) {
    .options-gallery {
        flex-direction: column !important;
        min-height: 635px !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) {
    .options-gallery .option-g {
        margin: 10px 5px !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) {
    .options-gallery .option-g {
        min-height: 60px !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) {
    .options-gallery .option-g.active {
        min-height: 300px !important;
    }
}

/*  */
.award-section {
    background: linear-gradient(to right, #fff, #fff);
    text-align: center;
}

.award-header h2 {
    color: #0C244E;
}

.award-header h4 {
    color: #777;
}

.award-image {
    max-width: 150px;
}

.award-content p {
    font-size: 16px;
    color: #0C244E;
    margin: 20px auto;
    max-width: 50%;
}

.ranks-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px;
    border-radius: 12px;
    max-width: 1200px;
    margin: auto;
}

.rank-inner-card {
    background: linear-gradient(145deg, #ffffff, #d4e0ee);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 5px 5px 10px #b0c4d8, -5px -5px 10px #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rank-inner-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 20px #9da7af, -10px -10px 20px #ffffff;
}

.rank-inner-card img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.rank-inner-card h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0 5px 0;
    text-align: center;
}

.rank-inner-card p {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 0;
    line-height: 25px;
    display: none;

}

.ranks-session-info {
    background: linear-gradient(145deg, #ffffff, #d4e0ee);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 95%;
    max-width: 1150px;
    margin: 0 auto 20px;
    transform: perspective(800px) rotateX(10deg);
    animation: fadeInAndRise 1s ease-in-out forwards;
}

.rank-url {
    display: none !important;
}

.ranks-session-info img {
    max-width: 150px;
    height: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards;
}

.ranks-session-info h3 {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-in-out forwards;
    animation-delay: 0.2s;
}

.ranks-session-info p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards;
    animation-delay: 0.4s;
    text-align: center;
}

@keyframes fadeInAndRise {
    0% {
        opacity: 0;
        transform: perspective(800px) rotateX(90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ranks-dashboard {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .rank-inner-card {
        padding: 16px;
    }

    .rank-inner-card img {
        width: 80px;
    }

    .rank-inner-card h3 {
        font-size: 14px;
    }

    .rank-inner-card p {
        font-size: 12px;
    }
}

.chart-container {
    background: #fcfcfc;
    box-shadow: -1px 1px 7px 5px rgba(102, 102, 102, 0.47);
    border-radius: 15px;
    margin: 30px 0px;
    min-height: 450px;
    overflow: hidden;

}

.chart-container p {
    margin: 10px 0;
    text-align: center;
}

.chart-container .chart {
    width: 100%;
    height: 350px;
}

@media (max-width: 768px) {

    .chart-container p {
        font-size: 1rem;
    }

    .chart-container .chart {
        width: 100%;
        height: 250px;
    }
}

/* Faculity Profile */

.main-profile {
    background-color: #0C244E;
    border-radius: 16px;
}

.profile-title {
    font-family: 'fbold';
    background-position: 50% 100%;
    background-image: url(/s/bg-title-profile2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.overlay-profile {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0C244E;
    top: 0;
    right: 0;
    border-radius: 16px;
}

.m-t-profile {
    padding-bottom: 22px !important;
    padding-left: 38px !important;
    padding-right: 82px !important;
    padding-top: 18px;
    inset: -1px -1px auto auto;
    position: absolute;
    top: -15px;
    background: #fcfcfc;
    right: -10px;
    width: auto !important;
    border-radius: 16px;
}

.r-1,
.r-2 {
    width: 3.5rem;
    height: 3.5rem;
}

.r-1 {
    right: 8px;
    bottom: -50px;
}

.r-2 {
    left: -53px;
    top: 9px;
}

.img-profile {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #66666657;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
}

.link-s-profile {
    border-radius: 50%;
    background-color: #66666657;
    padding: 10px;
    transition: all ease-in-out .6s;
    overflow: hidden;
}

.main-s-profile {
    width: 43px;
    height: 43px;
}

.img-social-profile {
    width: 21px;
    height: 21px;
    z-index: 99;
}

.link-s-profile:hover .social-profile {
    width: 100px;
    height: 100px;
    transition: all ease-in-out .6s;
}

.social-profile {
    background-color: #ffd659;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    position: absolute;
    inset: auto auto 0%;
    transition: all ease-in-out .6s;

}

.info-profile {
    font-size: 19px !important;
    font-family: 'fsemi' !important;
}

.main-info-profile span {
    color: #fcdfa0;
    font-size: 15px !important;
    font-family: 'fmedium' !important;
}

.other-info-profile {
    list-style: circle;
    font-size: 16px;
    font-family: "fmedium";
}

/* responsive */
@media screen and (max-width: 600px) {
    .m-t-profile {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .profile-title {
        font-size: 18px;
    }

    .login-link {
        align-items: center;
        display: flex;
    }

}

.faculty-content ol {
    list-style: circle;
    margin: 0 !important;
    padding-right: 25px !important;
}

html[dir="ltr"] .faculty-content ol {
    padding-left: 25px !important;
    padding-right: 0px !important;
}

.digital-services-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.digital-services-link {
    text-decoration: none;
    color: inherit;
}

.digital-services-card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#1f4761, #0C244E);
    position: absolute;
    left: 0%;
    top: -98%;
    z-index: -2;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.icon-wrapper img {
    width: 80px;
    height: 80px;
}

.digital-services-card:hover:after {
    top: 0%;
}

.digital-services-card:hover h3 {
    color: #ffffff;
    text-align: center;
}

.digital-services-card:hover p {
    color: #f0f0f0;
}

.bg-about::before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    right: 0;
    width: 200px;
    background-color: #ffc451;
}

.about-link {
    width: 90px;
    height: 70px;
}

.img-vr,
.img-static {
    height: 380px;
    object-fit: cover;
}

.main-vr-img,
.main-static-img {
    border-radius: 31px;
}

.main-static-icon,
.main-vr-icon,
.main-vr-img,
.main-static-img {
    border-bottom-right-radius: 0 !important
}

.about-img {
    position: absolute;
    width: max-content;
    height: 100%;
    top: 0;
    right: 0;
    opacity: 0.5;
}

.dean-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 10px solid #0C244E;
}

.dean-text {
    background: #0C244E;
    width: max-content;
    border-top-right-radius: 10px;
}

.dean-name {
    font-family: fbold;
    width: max-content;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-top-right-radius: 0;
}

.dean-par {
    position: relative;
    background-color: #00000080;
    border: 1px solid #fcdfa075;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
    max-height: 211px;
    transition: max-height 0.5s ease-in-out;
    margin-top: 10px;
}

.dean-par.open {
    max-height: 100%
}

.show-more-btn {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'somer';
}

.show-more-btn:hover {
    background-color: #e68900;
}

.team-page-section {
    position: relative;
    padding-top: 70px;
}

.team-page-section .team-block {
    margin-bottom: 60px;
}

.sec-title {

    position: relative;
    z-index: 1;
    margin: 30px 0;
}

.sec-title .title {
    position: relative;
    font-size: 18px;
    color: #777777;
    margin-bottom: 12px;
    font-family: fbold !important;
}

.sec-title .separator {
    position: relative;
    width: 40px;
    margin-top: 16px !important;
}

.sec-title .separator:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 10px;
    height: 2px;
    background-color: #777777;
}

.sec-title .separator:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 10px;
    height: 2px;
    background-color: #777777;
}

.sec-title .separator span {
    position: absolute;
    left: 50%;
    top: -2px;
    width: 10px;
    height: 5px;
    margin-left: -5px;
    display: inline-block;
    background-color: #ffc451;
}

.sec-title h2 {
    position: relative;
    color: #222222;
    font-size: 36px;
    line-height: 1.2em;
    margin-top: 35px;
    font-family: fbold !important;
}

.sec-title .text {
    position: relative;
    font-size: 14px;
    line-height: 1.9em;
    color: #555555;
    margin-top: 10px;
}

.sec-title.centered .separator {
    margin: 0 auto !important;
    float: none !important;
}

.sec-title.centered {
    text-align: center !important;
}

.sec-title.light .title {
    color: #ffffff;
}

.sec-title.light h2 {
    color: #ffffff;
}

.sec-title.light .separator span {
    background-color: #ff9600;
}

.sec-title.light .separator:before,
.sec-title.light .separator:after {
    background-color: #ffffff;
}

.team-section {
    position: relative;
    padding: 80px 0px 60px;
}

.team-section.style-two .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center center;
    background-repeat: no-repeat;
}

.team-section .title-box {
    position: relative;
    text-align: center;
}

.team-section .title-box h2 {
    position: relative;
    color: #222222;
    font-size: 36px;
    line-height: 1.3em;
    margin-bottom: 50px;
}

.team-section .title-box h2 span {
    color: #ff9600;
}

.team-block {
    position: relative;
}

.team-block .inner-box {
    position: relative;
    /* padding: 40px 70px 28px 0px; */
}

.team-padding {
    padding: 40px 70px 28px 0px;
}

.team-block .inner-box:before {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 70px;
    bottom: 0px;
    border-radius: 10px;
    background-color: #f5f5f5;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.team-block .inner-box::after {
    position: absolute;
    content: '';
    top: 0px;
    left: 70px;
    bottom: 0px;
    width: 0%;
    border-radius: 10px;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    background-image: -ms-linear-gradient(top, #ebe1cc 0%, #3e5071 100%);
    background-image: -moz-linear-gradient(top, #ebe1cc 0%, #3e5071 100%);
    background-image: -o-linear-gradient(top, #ebe1cc 0%, #3e5071 100%);
    background-image: -webkit-linear-gradient(top, #ebe1cc 0%, #3e5071 100%);
    background-image: linear-gradient(top, #ebe1cc 0%, #3e5071 100%)
}

.team-block .inner-box:hover::after {
    width: 81%;
}

.team-block .inner-box .social-icons {
    position: absolute;
    right: 0px;
    top: 35px;
    z-index: 1;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.social-icons a::before {
    width: 10px;
    height: 100%;
    content: '';
    background-color: #ffc451;
    right: -10px;
    top: -1px;
    position: absolute;
    transform: skewY(-15deg);
}

.team-block .inner-box .social-icons li {
    position: relative;
}

.team-block .inner-box .social-icons li a {
    padding: 5px;
    display: inline-flex;
    position: relative;
    background-color: #0C244E;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.social-icons a:hover {
    background-color: #ffc451 !important;
    transition: all 0.4s;

}

.team-block .inner-box:hover .lower-content h3 a,
.team-block .inner-box:hover .social-icons li a,
.team-block .inner-box:hover .lower-content .designation {
    color: #ffffff;
}

.team-block .inner-box .image {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 35px rgba(0, 0, 0, 0.20);
    width: 90%;
}

.team-block .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.team-block .inner-box .lower-content {
    position: relative;
    z-index: 1;
    padding: 0px 20px 15px 110px;
}

.team-block .inner-box .lower-content h3 {
    position: relative;
    color: #fcfcfc;
    font-size: 18px;
    line-height: 1.3em;
    background-color: #0C244E;
    width: fit-content;
    padding: 5px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
}

.team-block .inner-box .lower-content h3 a {
    font-family: fnormal;
    position: relative;
    color: #ffffff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-block .inner-box .lower-content .designation {
    position: relative;
    margin-top: 5px;
    color: #777777;
    font-size: 18px;
    font-family: fbold;
}

.team-block.style-two .inner-box .lower-content h3 a,
.team-block.style-two .inner-box .social-icons li a {
    color: #ff9600;
}

.team-block.style-two .inner-box:hover .lower-content h3 a,
.team-block.style-two .inner-box:hover .social-icons li a {
    color: #ffffff;
}

.team-block.style-two .inner-box::after {
    background-image: -ms-linear-gradient(top, #FFEB3C 0%, #ff9600 100%);
    background-image: -moz-linear-gradient(top, #FFEB3C 0%, #ff9600 100%);
    background-image: -o-linear-gradient(top, #FFEB3C 0%, #ff9600 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFEB3C), color-stop(100, #ff9600));
    background-image: -webkit-linear-gradient(top, #FFEB3C 0%, #ff9600 100%);
    background-image: linear-gradient(to bottom, #FFEB3C 0%, #ff9600 100%);
}

/* vision */
.btn-uni-about {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 3rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px none #000;
    background-color: #e7e7e7;
    color: #051328;
    text-decoration: none;
    cursor: pointer;
}

.btn-uni-about::before,
.btn-uni-about::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-uni-about.btn-eleven {
    overflow: hidden;
    border-radius: 10px;
    color: #fff;
}

.btn-eleven span {
    display: block;
    position: relative;
    mix-blend-mode: difference;
    z-index: 10;
}

.btn-eleven:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.btn-eleven::before {
    content: '';
    background: #0c244e;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-eleven:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-eleven::after {
    content: '';
    background: #0c244e;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-eleven:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

/* svg animation */
.animated-path {
    animation: draw 3.2s ease-in-out infinite alternate;

}

@keyframes draw {
    from {
        stroke-dashoffset: 500;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.animated-path2 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw2 4.2s linear infinite;
}

@keyframes draw2 {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.main-static-icon,
.main-vr-icon {
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 44%) 35%, transparent 80%);
    width: 100%;
    padding: 10px;
    border-radius: 30px;

}

.static-icon,
.vr-icon {
    padding: 10px;
    background-color: #0c244e;
    border-radius: 10px;
    border-bottom-right-radius: 0;
}

.static-title,
.vr-title {
    font-family: fnormal;
    color: #ffc451
}

.img-about {
    filter: blur(5px);
    height: 400px;
    object-fit: cover;
}

.clip-img1 {
    clip-path: polygon(92.443% 100%, 92.443% 100%, 93.669% 99.802%, 94.832% 99.228%, 95.916% 98.309%, 96.906% 97.077%, 97.787% 95.562%, 98.542% 93.797%, 99.157% 91.811%, 99.615% 89.638%, 99.901% 87.306%, 100% 84.848%, 100% 15.152%, 100% 15.152%, 99.901% 12.694%, 99.615% 10.362%, 99.157% 8.189%, 98.542% 6.203%, 97.787% 4.438%, 96.906% 2.923%, 95.916% 1.691%, 94.832% .772%, 93.669% .198%, 92.443% 0%, 26.758% 0%, 26.758% 0%, 25.939% .089%, 25.139% .351%, 24.365% .78%, 23.621% 1.368%, 22.913% 2.108%, 22.249% 2.993%, 21.633% 4.016%, 21.073% 5.171%, 20.572% 6.449%, 20.138% 7.845%, 1.002% 77.542%, 1.002% 77.542%, .359% 80.624%, .074% 83.755%, .123% 86.846%, .479% 89.809%, 1.117% 92.557%, 2.01% 95.003%, 3.133% 97.057%, 4.46% 98.634%, 5.965% 99.644%, 7.622% 100%, 92.443% 100%);
}

.clip-img2 {
    clip-path: polygon(0% 84.848%, 0% 84.848%, .117% 87.306%, .454% 89.638%, .994% 91.811%, 1.718% 93.797%, 2.607% 95.562%, 3.645% 97.077%, 4.811% 98.309%, 6.088% 99.228%, 7.458% 99.802%, 8.902% 100%, 68.478% 100%, 68.478% 100%, 69.442% 99.911%, 70.385% 99.649%, 71.298% 99.22%, 72.174% 98.632%, 73.007% 97.892%, 73.79% 97.007%, 74.515% 95.984%, 75.176% 94.829%, 75.765% 93.551%, 76.276% 92.156%, 98.819% 22.458%, 98.819% 22.458%, 99.577% 19.376%, 99.912% 16.245%, 99.855% 13.154%, 99.435% 10.191%, 98.684% 7.443%, 97.632% 4.997%, 96.309% 2.943%, 94.746% 1.366%, 92.973% .356%, 91.021% 0%, 8.902% 0%, 8.902% 0%, 7.458% .198%, 6.088% .772%, 4.811% 1.691%, 3.645% 2.923%, 2.607% 4.438%, 1.718% 6.203%, .994% 8.189%, .454% 10.362%, .117% 12.694%, 0% 15.152%, 0% 84.848%);
}

.clip-img3 {
    clip-path: polygon(100% 84.848%, 100% 84.848%, 99.883% 87.306%, 99.546% 89.638%,
            99.006% 91.811%, 98.282% 93.797%, 97.393% 95.562%, 96.355% 97.077%,
            95.189% 98.309%, 93.912% 99.228%, 92.542% 99.802%, 91.098% 100%,
            31.522% 100%, 31.522% 100%, 30.558% 99.911%, 29.615% 99.649%,
            28.702% 99.22%, 27.826% 98.632%, 26.993% 97.892%, 26.21% 97.007%,
            25.485% 95.984%, 24.824% 94.829%, 24.235% 93.551%, 23.724% 92.156%,
            1.181% 22.458%, 1.181% 22.458%, 0.423% 19.376%, 0.088% 16.245%,
            0.145% 13.154%, 0.565% 10.191%, 1.316% 7.443%, 2.368% 4.997%,
            3.691% 2.943%, 5.254% 1.366%, 7.027% .356%, 8.979% 0%,
            91.098% 0%, 91.098% 0%, 92.542% .198%, 93.912% .772%,
            95.189% 1.691%, 96.355% 2.923%, 97.393% 4.438%, 98.282% 6.203%,
            99.006% 8.189%, 99.546% 10.362%, 99.883% 12.694%, 100% 15.152%,
            100% 84.848%);
}

.clip-img4 {
    clip-path: polygon(7.557% 100%, 7.557% 100%, 6.331% 99.802%, 5.168% 99.228%,
            4.084% 98.309%, 3.094% 97.077%, 2.213% 95.562%, 1.458% 93.797%,
            0.843% 91.811%, 0.385% 89.638%, 0.099% 87.306%, 0% 84.848%,
            0% 15.152%, 0% 15.152%, 0.099% 12.694%, 0.385% 10.362%,
            0.843% 8.189%, 1.458% 6.203%, 2.213% 4.438%, 3.094% 2.923%,
            4.084% 1.691%, 5.168% 0.772%, 6.331% 0.198%, 7.557% 0%,
            73.242% 0%, 73.242% 0%, 74.061% 0.089%, 74.861% 0.351%,
            75.635% 0.78%, 76.379% 1.368%, 77.087% 2.108%, 77.751% 2.993%,
            78.367% 4.016%, 78.927% 5.171%, 79.428% 6.449%, 79.862% 7.845%,
            98.998% 77.542%, 98.998% 77.542%, 99.641% 80.624%, 99.926% 83.755%,
            99.877% 86.846%, 99.521% 89.809%, 98.883% 92.557%, 97.99% 95.003%,
            96.867% 97.057%, 95.54% 98.634%, 94.035% 99.644%, 92.378% 100%,
            7.557% 100%);
}

@media only screen and (max-width: 600px) {
    .clip-img1 {
        clip-path: polygon(0 40px, 0 40px, .523532px 33.5118px, 2.03923px 27.3569px, 4.46473px 21.6177px, 7.71768px 16.3765px, 11.7157px 11.7157px, 16.3765px 7.71768px, 21.6177px 4.46473px, 27.3569px 2.03923px, 33.5118px .523532px, 40px 6.62222e-31px, calc(100% - 40px) 0, calc(100% - 40px) 0, calc(100% - 33.5119px) .523532px, calc(100% - 27.3571px) 2.03923px, calc(100% - 21.6179px) 4.46473px, calc(100% - 16.3767px) 7.71768px, calc(100% - 11.7159px) 11.7157px, calc(100% - 7.71779px) 16.3765px, calc(100% - 4.4648px) 21.6177px, calc(100% - 2.03926px) 27.3569px, calc(100% - .523543px) 33.5118px, calc(100% - 5.68434e-14px) 40px, 100% calc(100% - 118.567px), 100% calc(100% - 118.567px), calc(100% - .369667px) calc(100% - 113.125px), calc(100% - 1.44966px) calc(100% - 107.881px), calc(100% - 3.19645px) calc(100% - 102.891px), calc(100% - 5.56653px) calc(100% - 98.2095px), calc(100% - 8.51638px) calc(100% - 93.8931px), calc(100% - 12.0025px) calc(100% - 89.997px), calc(100% - 15.9813px) calc(100% - 86.5768px), calc(100% - 20.4093px) calc(100% - 83.6878px), calc(100% - 25.2431px) calc(100% - 81.3857px), calc(100% - 30.439px) calc(100% - 79.726px), 49.5611px calc(100% - 1.2px), 49.5611px calc(100% - 1.2px), 42.0472px calc(100% - .078462px), 34.7259px calc(100% - .363816px), 27.738px calc(100% - 1.94561px), 21.2246px calc(100% - 4.71341px), 15.3266px calc(100% - 8.55675px), 10.1849px calc(100% - 13.3652px), 5.94039px calc(100% - 19.0283px), 2.73414px calc(100% - 25.4356px), .707025px calc(100% - 32.4766px), 9.00429e-31px calc(100% - 40.041px), 0 40px) !important;
    }

    .clip-img2 {
        clip-path: polygon(36.0733px 77.64px, 36.0733px 77.64px, 29.9113px 79.6379px, 24.1803px 82.3965px, 18.9316px 85.8499px, 14.2165px 89.9325px, 10.0861px 94.5784px, 6.59177px 99.7218px, 3.78475px 105.297px, 1.71628px 111.238px, .437612px 117.479px, 5.49927e-31px 123.955px, 0 calc(100% - 47.744px), 0 calc(100% - 47.744px), .623538px calc(100% - 39.9997px), 2.42877px calc(100% - 32.6533px), 5.3176px calc(100% - 25.803px), 9.19197px calc(100% - 19.5471px), 13.9538px calc(100% - 13.984px), 19.505px calc(100% - 9.2119px), 25.7474px calc(100% - 5.32915px), 32.5831px calc(100% - 2.43405px), 39.9139px calc(100% - .624896px), 47.6418px calc(100% - 5.68434e-14px), calc(100% - 47.642px) 100%, calc(100% - 47.642px) 100%, calc(100% - 39.914px) calc(100% - .624896px), calc(100% - 32.583px) calc(100% - 2.43405px), calc(100% - 25.7473px) calc(100% - 5.32915px), calc(100% - 19.5048px) calc(100% - 9.2119px), calc(100% - 13.9536px) calc(100% - 13.984px), calc(100% - 9.19184px) calc(100% - 19.5471px), calc(100% - 5.31752px) calc(100% - 25.803px), calc(100% - 2.42872px) calc(100% - 32.6533px), calc(100% - .623525px) calc(100% - 39.9997px), calc(100% - 5.68434e-14px) calc(100% - 47.744px), 100% 47.767px, 100% 47.767px, calc(100% - .845963px) 38.7175px, calc(100% - 3.27102px) 30.2968px, calc(100% - 7.10594px) 22.6373px, calc(100% - 12.1815px) 15.8713px, calc(100% - 18.3284px) 10.1312px, calc(100% - 25.3774px) 5.54942px, calc(100% - 33.1593px) 2.25827px, calc(100% - 41.5049px) .390141px, calc(100% - 50.2449px) .0773879px, calc(100% - 59.21px) 1.45238px, 36.0733px 77.64px) !important;
    }

    .clip-img3 {
        clip-path: polygon(0% 7.629%, 0% 7.629%, .105% 6.411%, .408% 5.255%, .893% 4.177%, 1.544% 3.193%, 2.343% 2.318%, 3.275% 1.567%, 4.324% .956%, 5.471% .5%, 6.702% .216%, 8% .117%, 91.875% .117%, 91.875% .117%, 93.173% .216%, 94.404% .5%, 95.551% .956%, 96.6% 1.567%, 97.532% 2.318%, 98.331% 3.193%, 98.982% 4.177%, 99.467% 5.255%, 99.77% 6.411%, 99.875% 7.629%, 99.875% 76.17%, 99.875% 76.17%, 99.797% 77.222%, 99.568% 78.234%, 99.199% 79.194%, 98.699% 80.091%, 98.077% 80.914%, 97.344% 81.652%, 96.51% 82.293%, 95.583% 82.827%, 94.574% 83.242%, 93.492% 83.527%, 9.617% 99.78%, 9.617% 99.78%, 8.141% 99.936%, 6.711% 99.841%, 5.351% 99.514%, 4.087% 98.976%, 2.947% 98.247%, 1.956% 97.345%, 1.139% 96.293%, .524% 95.108%, .135% 93.811%, 0% 92.423%, 0% 7.629%) !important
    }

    .clip-img4 {
        clip-path: polygon(99.875% 91.774%, 99.875% 91.774%, 99.77% 93.108%, 99.467% 94.374%, 98.982% 95.554%, 98.331% 96.632%, 97.532% 97.591%, 96.6% 98.413%, 95.551% 99.082%, 94.404% 99.581%, 93.173% 99.892%, 91.875% 100%, 8% 100%, 8% 100%, 6.702% 99.892%, 5.471% 99.581%, 4.324% 99.082%, 3.275% 98.413%, 2.343% 97.591%, 1.544% 96.632%, .893% 95.554%, .408% 94.374%, .105% 93.108%, 0% 91.774%, 0% 26.097%, 0% 26.097%, .078% 24.944%, .307% 23.836%, .676% 22.785%, 1.176% 21.802%, 1.798% 20.901%, 2.531% 20.093%, 3.365% 19.391%, 4.292% 18.807%, 5.301% 18.352%, 6.383% 18.04%, 90.258% .241%, 90.258% .241%, 91.733% .07%, 93.164% .174%, 94.524% .532%, 95.788% 1.121%, 96.928% 1.92%, 97.919% 2.907%, 98.736% 4.06%, 99.351% 5.357%, 99.74% 6.777%, 99.875% 8.298%, 99.875% 91.774%) !important
    }
}

@media (min-width: 768px) {
    .show-more-btn {
        display: none;
    }

    .dean-par {
        max-height: none;
    }
}

.news-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111827;
    line-height: 25px;

}

.news-meta {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
}

.news-description {
    font-size: 14px;
    color: #374151;
    margin-bottom: 15px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.read-more {
    display: inline-block;
    padding: 6px 12px;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.read-more:hover {
    background-color: #1d4ed8;
}

.specialneeds-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.specialneeds-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.specialneeds-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.specialneeds-overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    max-width: 70%;
    top: 30%;
    margin: 0 auto;
    border-left: 5px solid #ffc451;
    border-right: 0;
    color: white;
}

[dir="rtl"] .specialneeds-overlay {
    border-right: 5px solid #ffc451;
    border-left: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .specialneeds-section {
        height: auto;
        padding: 3rem 0;
    }

    .specialneeds-overlay {
        margin: 0 1rem;
        max-width: 100%;
    }
}

.specialneeds-about-section {
    position: relative;
    padding-top: 120px;
}

.specialneeds-about-section .content-column {
    position: relative;
    margin-bottom: 40px;
}

.specialneeds-about-section .content-column .inner-column {
    position: relative;
    padding-right: 100px;
}

.specialneeds-about-section .content-column .text {
    position: relative;
    color: #777777;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 40px;
}

.specialneeds-about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.specialneeds-about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    margin-left: 50px;
}

.specialneeds-about-section .image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 2px solid #ffc451;
}

.specialneeds-about-section .image-column .inner-column .image {
    position: relative;
}

.specialneeds-about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 299px;
    height: 299px;
    background: url(img/pattern-2.png) no-repeat;
}

.specialneeds-about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

.specialneeds-about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.sec-title2 {
    color: #fff;
}

.specialneeds-sec-title {
    position: relative;
}

.specialneeds-sec-title .title {
    position: relative;
    color: #ffc451;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: capitalize;
}

.specialneeds-sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 2px;
    width: 56px;
    height: 1px;
    background-color: #bbbbbb;
}

#tawkchat-container {
    bottom: 120px !important;
    left: 25px !important;
    right: auto !important;
}

/* scroll up button */
.scroll-up-button {
    display: none;
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #0d2756;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    justify-content: center;
    align-self: center;
}

.scroll-up-button:hover {
    background-color: #ffc451;
}

.scroll-up-button svg {
    max-width: 100%;
    height: auto;
}

.link-btn-collage {
    color: #0C244E;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    border-radius: 4px;
    padding: 8px;
    color: var(--tg-secondary-color);
    gap: 10px;
    --arrow-hover-move-x: 110%;
    --arrow-hover-move-y: 100%;
    border: 1px solid #0C244E;

}

.link-btn-collage .svg-icon svg {
    color: #0C244E !important;
    width: 10px;
    transition: all 0.3s ease-out 0s;
    transform: translateY(-2px);
}

/* News Homa page  */


.news-section {
    padding: 2rem 0;
    color: var(--accent-color) !important;
    line-height: 1.5 !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--accent-color);
    border-right: 4px solid var(--c-yellow);
    padding-right: 1rem;

}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;

}

.view-all:hover {
    color: var(--c-yellow);
    border-color: var(--c-yellow);
    transform: translateY(-2px);
}

.view-all:active {
    transform: translateY(0);
}

.news-swiper {
    padding: 20px 0 40px !important;
}

.news-card-2 {
    background-color: var(--c-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
    transition: all 0.3s ease;


}

.news-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-card-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.news-card-2:hover img {
    transform: scale(1.05);
}

.news-card-2 .overlay-news {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.news-card-2 .content-news {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.news-card-2:hover .content-news {
    transform: translateY(-10px);
}

.news-card-2 .category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--c-yellow);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s ease;
}

.news-card-2:hover .category {
    background-color: var(--primary-color);
    color: var(--c-white);
}

.news-card-2 h3 {
    color: var(--c-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card-2 p {
    color: #e5e7eb;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.news-card-2 .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e5e7eb;
    font-size: 0.875rem;
}

.news-card-2 .read-more {
    color: var(--c-yellow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;


}

.news-card-2 .read-more span {
    /* font-family: var(--font-primary); */
    font-weight: 500;
}

.news-card-2 .read-more:hover {
    color: var(--c-white);
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.news-card-2 .read-more:active {
    transform: translateX(2px);
}

/* .news-swiper .swiper-pagination{
    background-color: red !important;
} */
.news-swiper .swiper-pagination-bullet {
    background-color: var(--c-yellow) !important;
    display: inline-block !important;

}

.news-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* Search Box */
.overlay-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation-name: fadeInUp;
    animation-duration: 500ms;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

/* Show overlay when active */
.overlay-search.active {
    display: flex;
}

/* Search box */
.search-box-2 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.search-box-2 input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

.close-btn {
    position: absolute;
    top: -20px;
    right: -10px;
    cursor: pointer;
    background: none;
    border: none;
}