@import url(https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap);

:root {
    --bg-primary-color: #075e89;
    --text-light-color: #fff;
    --text-red-color: rgb(227, 2, 2)
}

.bg-primary-color {
    background-color: var(--bg-primary-color) !important
}

.text-primary-color {
    color: var(--bg-primary-color) !important;
    font-weight: 600
}

.page-item.active .page-link {
    background-color: var(--bg-primary-color) !important;
    color: var(--text-light-color) !important;
}

.page-link {
    color: var(--bg-primary-color) !important;
}

* {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none !important
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all .6s ease-out;
    width: 100%;
    height: 100vh
}

#preloader:after,
#preloader:before {
    content: "";
    position: absolute;
    border: 4px solid var(--bg-primary-color);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, .2, .8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, .2, .8, 1) infinite
}

#preloader:after {
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s
}

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0
    }
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.btn-blinking {
    color: #fff !important;
    -webkit-animation: btn-blink 2s infinite;
    animation: btn-blink 2s infinite;
    border-radius: 20px;
    background: var(--text-light-color);
    font-family: 'Titillium Web', sans-serif
}

@keyframes btn-blink {
    from {
        background-color: var(--text-light-color)
    }

    to {
        background-color: var(--text-red-color)
    }
}

#header .left-info span {
    font-size: 14px
}

#header .right-info button {
    border-radius: 20px;
    font-size: 15px
}

#header .right-info select {
    color: var(--bg-primary-color);
    outline: 0;
    border-radius: 5px
}

#header .right-info a {
    font-weight: 600
}

header {
    font-family: 'Titillium Web', sans-serif
}

nav .navbar-nav .nav-item {
    box-shadow: 10px 0 30px rgb(255, 255, 255, .4);
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-family: 'Titillium Web', sans-serif;
    font-size: 13px !important
}

nav .navbar-nav .nav-item .active {
    color: var(--bg-primary-color)
}

nav .navbar-nav .dropdown-item {
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-family: 'Titillium Web', sans-serif;
    font-size: 13px !important;
    z-index: 99999!important;
}

.navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

nav .navbar-nav .dropdown-item:hover {
    color: var(--text-light-color);
    background-color: var(--bg-primary-color);
    padding-left: 30px;
    transition-duration: .5s
}

nav .navbar-nav .dropdown-menu li {
    border-bottom: 1px solid #f0eeee
}

.dropdown-toggle::after {
    display: none !important
}

nav .navbar-nav .nav-item .nav-link {
    color: #122127 !important
}

.navbar-toggler {
    outline: 0 !important;
    border: none !important;
    color: var(--bg-primary-color) !important;
    border-radius: none !important;
    box-shadow: none !important
}

nav .navbar-nav .nav-item .active {
    color: var(--bg-primary-color) !important
}

nav .navbar-nav .nav-item .nav-link:hover {
    color: var(--bg-primary-color) !important;
    font-weight: 500
}

#hero {
    width: 100%;
    overflow: hidden;
    padding: 0
}

#hero .carousel-item img {
    height: 750px !important;
    image-rendering: optimizeSpeed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important
}

#hero .carousel-item::before {
    content: '';
    background-color: var(--bg-primary-color);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: .5
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0
}

#hero .carousel-content {
    text-align: center
}

#hero h2 {
    color: var(--text-light-color);
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Titillium Web', sans-serif;
    -webkit-text-stroke-width: 1px red
}

#hero h2 span {
    color: var(--text-light-color);
    font-family: 'Titillium Web', sans-serif
}

#hero p {
    width: 80%;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    text-transform: capitalize;
    margin: 0 auto 30px auto;
    color: var(--text-light-color);
    font-size: 14px;
    font-family: Barlow, sans-serif
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top
}

#hero .carousel-inner .active {
    opacity: 1;
    transition: .5s
}

#hero .carousel-indicators li {
    cursor: pointer
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev {
    color: var(--text-light-color) !important
}

#hero .bi-arrow-left,
#hero .bi-arrow-right {
    background: 0 0;
    font-size: 27px;
    line-height: 1;
    background: var(--text-light-color);
    border-radius: 50px;
    padding: 10px;
    transition: .3s;
    color: var(--bg-primary-color)
}

#hero .btn-book,
#hero .btn-menu {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: capitalize;
    display: inline-block;
    font-family: 'Titillium Web', sans-serif;
    padding: 12px 30px;
    border-radius: 50px;
    transition: .5s;
    line-height: 1;
    margin: 10px 10px;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    color: var(--text-light-color);
    border: 1px solid var(--text-light-color)
}

#hero .btn-book:hover,
#hero .btn-menu:hover {
    background: var(--text-light-color);
    color: var(--bg-primary-color)
}

@media (min-width:1220px) {
    #hero .carousel-item img {
        width: 100%
    }
}

@media (max-width:768px) {

    #hero .bi-arrow-left,
    #hero .bi-arrow-right {
        font-size: 15px;
        padding: 4px
    }

    .navbar {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }

    #hero h2 {
        font-size: 25px
    }

    #hero p {
        font-size: 13px;
        text-align: center;
        width: 80%
    }

    #hero .btn-book,
    #hero .btn-menu {
        font-size: 12px;
        padding: 10px 25px;
        margin: 5px 5px
    }
}

@media (min-width:1024px) {
    #hero p {
        width: 80%
    }
}

.info-section .card-block-info h1 {
    font-size: 37px;
    font-weight: 700;
    color: #075e89
}

.info-section .card-block-info p {
    font-size: 14px;
    color: #585858;
    font-family: 'Titillium Web', sans-serif
}

@media(max-width:768px) {
    .info-section .card-block-info h1 {
        font-size: 30px
    }

    .info-section .card-block-info p {
        font-size: 12px
    }
}

.exam-content .single-exam-box {
    border: none;
    padding: 23px 0 23px 26px;
    background: 0 0;
    left: 0;
    text-align: center;
    margin-right: 10px
}

.exam-content-inner {
    background: #fff;
    box-shadow: 10px 0 30px rgb(255, 255, 255, .4);
    padding: 10px 10px 10px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.exam-content-inner h3 {
    color: #1fd5a4;
    font-size: 18px;
    font-weight: 500
}

.single-exam-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #08195e
}

.exam-content-inner p {
    margin: 0 0 0;
    color: #717171
}

.about-section .right-info h2 {
    font-weight: 600;
    color: var(--bg-primary-color);
    font-family: Barlow, sans-serif;
    font-size: 30px
}

.about-section .right-info p {
    font-family: Barlow, sans-serif;
    text-align: justify;
    color: #515151
}

.about-section .user-info h3 {
    color: var(--bg-primary-color);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Titillium Web', sans-serif
}

.about-section .user-info h6 {
    font-family: Barlow, sans-serif;
    color: #585858
}

.read-more {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: capitalize;
    display: inline-block;
    font-family: 'Titillium Web', sans-serif;
    padding: 9px 20px;
    border-radius: 50px;
    transition: .5s;
    line-height: 1;
    background-color: var(--bg-primary-color);
    margin: 5px 4px;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    color: var(--text-light-color);
    border: 1px solid var(--bg-primary-color)
}

.read-more:hover {
    border: 1px solid var(--bg-primary-color) !important;
    color: var(--bg-primary-color) !important;
    background-color: transparent !important
}

.notice-section h5 {
    color: var(--bg-primary-color);
    font-size: 20px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600
}

.notice-section .view-all u {
    font-family: 'Titillium Web', sans-serif;
    color:var(--bg-primary-color);
    font-weight: 500;
}

.notice-section .view-all u:hover {
    color:red;
   
}
.view-all p{
    color: #585858!important;
}
.view-all .notice p:hover{
    color: var(--bg-primary-color)!important;
}

.bg-primary,
.btn-primary {
    background-color: var(--bg-primary-color) !important
}

.notice-section p {
    font-family: Barlow, sans-serif
}

.program-offer .heading h2 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-style: 30px;
    font-weight: 700
}

.program-offer .heading p {
    font-family: Barlow, sans-serif;
    color: #585858;
    font-style: 12px
}

.program-offer .courses .course-info h4 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-style: 30px;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase
}

.about-testimonials {
    margin-top: 0 !important
}

.testimonials .testimonial-item {
    background-color: var(--text-light-color)
}

.testimonial-item .inner-content {
    text-align: center;
    padding: 30px;
    border-radius: 5px
}

.testimonial-item p {
    font-size: 14px;
    font-weight: 400
}

.testimonial-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1e1e1e;
    letter-spacing: .5px;
    margin-bottom: 0;
    font-family: 'Titillium Web', sans-serif
}

.testimonials .heading h2 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-style: 30px;
    font-weight: 700
}

.testimonials .heading p {
    font-family: Barlow, sans-serif;
    color: #585858;
    font-style: 12px
}

.testimonial-item span {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--bg-primary-color)
}

.testimonial-item img {
    max-width: 60px;
    border-radius: 50%;
    margin: 25px auto 0 auto
}

footer .footer-content h6 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--text-light-color);
    font-style: 20px;
    font-weight: 700
}

footer .footer-content a {
    font-family: Barlow, sans-serif;
    color: #f7f2f2;
    font-style: 15px
}

.basic-1 {
    padding-top: 4.375rem;
    padding-bottom: 7.875rem;
    
    background-size: cover
}

.basic-1 .p-heading {
    margin-bottom: 4rem;
    color: var(--text-light-color);
    text-align: center;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 30px
}

.basic-1 .image-container img {
    border-radius: .375rem
}

.basic-1 .video-wrapper {
    position: relative
}

.basic-1 .video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    display: block;
    box-sizing: content-box;
    width: 2rem;
    height: 2.75rem;
    padding: 1.125rem 1.25rem 1.125rem 1.75rem;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.basic-1 .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    display: block;
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    background: var(--text-light-color);
    animation: pulse-border 1.5s ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.basic-1 .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background: var(--bg-primary-color);
    transition: all .2s;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.basic-1 .video-play-button span {
    position: relative;
    display: block;
    z-index: 3;
    top: .375rem;
    left: .25rem;
    width: 0;
    height: 0;
    border-left: 1.625rem solid #fff;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

.why-choose .heading h2 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-style: 30px;
    font-weight: 700
}

.why-choose .heading p {
    font-family: Barlow, sans-serif;
    color: #585858;
    font-style: 12px
}

.why-choose .card-offer {
    background-color: var(--text-light-color)
}

.why-choose .card-offer h4 {
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-style: 30px;
    font-weight: 700;
    margin-top: 15px;
    text-transform: capitalize
}

.why-choose .card-offer .card-info p {
    font-family: Barlow, sans-serif;
    color: #585858;
    font-style: 10px;
    text-align: justify
}

.page-heading {
    text-align: center;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 70px 0;
    color: #fff
}

.page-heading h1 {
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 4px 4px 2px #515151;
    font-family: 'Titillium Web', sans-serif
}

.page-heading span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: block
}

.academics-info h5 {
    color: var(--bg-primary-color);
    font-size: 17px;
    font-weight: 700;
    font-family: 'Titillium Web', sans-serif
}

.academics-info h6 {
    color: #161616;
    font-size: 16px;
    font-family: 'Titillium Web', sans-serif
}

.academics-info p {
    color: #585858;
    font-size: 15px;
    font-family: Barlow, sans-serif
}

.course-details-nav .box-nav-tabs a {
    color: #585858;
    font-size: 16px;
    padding: 10px 30px;
    font-family: 'Titillium Web', sans-serif
}

.course-details-nav .box-nav-tabs .btn {
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: none !important
}

.course-details-nav .box-nav-tabs .active {
    background-color: var(--bg-primary-color);
    color: var(--text-light-color)
}

.section-box .content-single .tab-content h4 {
    color: var(--bg-primary-color);
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 22px
}

.section-box .content-single .tab-content p {
    font-size: 15px;
    font-family: Barlow, sans-serif;
    text-align: justify
}

.accordion .accordion-item button {
    color: var(--bg-primary-color) !important;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 18px
}

.accordion-button::after {
    background-image: url(../img/arrow.png) !important
}

.accordion .accordion-item th {
    color: var(--bg-primary-color) !important;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 15px
}

.accordion .accordion-item td {
    color: #585858 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px
}

.section-department p {
    color: #585858 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: justify
}

.section-department span {
    color: var(--bg-primary-color);
    font-weight: 500
}

.notice h5 {
    color: var(--bg-primary-color) !important;
    font-family: Barlow, sans-serif;
    margin-bottom: -10px;
    font-weight: 600;
    font-size: 20px
}

.notice .notice-item span {
    color: var(--bg-primary-color) !important;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: justify
}

.notice .notice-item p {
    color: #585858 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px
}

.intro .mask p {
    color: var(--text-light-color) !important;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 20px
}

.intro .mask th {
    color: var(--bg-primary-color) !important;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 15px
}

.intro .mask td,
.intro .mask td a {
    color: #585858 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px
}

.intro .mask td a:hover {
    color: var(--bg-primary-color) !important
}

.card .card-img .card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(to bottom, transparent 0, transparent 25%, transparent 35%, rgba(22, 28, 45, .9) 100%);
    transition: all .5s ease
}

.contact .info-box {
    color: #444;
    text-align: center;
    padding: 30px 0 30px 0
}
.contact-form input{
    box-shadow: none!important;
}
.contact .info-box i {
    font-size: 22px;
    color: var(--bg-primary-color)
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777;
    font-weight: 700;
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    margin: 10px 0;
    margin-top: 30px
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    font-family: Barlow, sans-serif
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent
}

.portfolio-item .gallery a {
    color: var(--bg-primary-color);
    font-size: 18px;
}

#portfolio-flters li.active,
#portfolio-flters li:hover {
    border-color: var(--bg-primary-color)
}

.portfolio-item img {
    transition: .5s
}

.portfolio-item:hover img {
    transform: scale(1.1)
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bg-primary-color);
    transition: .5s;
    opacity: 0
}

.portfolio-item .bi-link {
    color: var(--bg-primary-color)
}

.portfolio-item:hover .portfolio-overlay {
    opacity: .8
}
.portfolio-item .bg-light p:hover{
    color: var(--bg-primary-color)!important;
    font-weight: 400;
}

.section-content-heading-h1 h1 {
    color: var(--bg-primary-color);
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 30px
}

.section-box .content-teacher h4 {
    color: #011d2b;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 19px
}

.section-box .teacher-name p {
    font-family: Barlow, sans-serif;
    color: #585858;
    font-size: 14px
}

.content-article-written .article-form label {
    font-style: 14px;
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-weight: 500
}

.content-article-written .article-form input::placeholder {
    color: #818181 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px
}

.content-article-written .article-form input {
    color: #818181 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px
}

.content-article-written .article-form textarea {
    color: #818181 !important;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 15px
}

.post-loop-grid .post h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--bg-primary-color)
}

.post-loop-grid .post .contain p {
    font-family: 'Titillium Web', sans-serif;
    color: var(--bg-primary-color);
    font-size: 16px
}

.post-loop-grid .sidebar-news-small .sidebar-title {
    font-family: Barlow, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-primary-color);
    margin-bottom: 1px solid var(--bg-primary-color)
}

.post-loop-grid .sidebar-news-small .post-list-small .content h5 {
    font-family: Barlow, sans-serif;
    color: #585858;
    font-size: 18px;
    cursor: pointer
}

.post-loop-grid .sidebar-news-small .post-list-small .content h5:hover {
    color: var(--bg-primary-color)
}

.post-loop-grid .sidebar-news-small .post-list-small .content span {
    color: #585858;
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-primary-color)
}

.notice-section .notice .notice-title {
    cursor: pointer;
}

.notice-section .notice .notice-title:hover {
    color: var(--bg-primary-color) !important;
    font-weight: 400;
}

.text-primary-1 {
    color: #075e89 !important;
    font-family: 'Titillium Web', sans-serif;
    font-size: 19px;
}

.widget-area .widget {
    margin-bottom: 30px;
}

.widget-area .widget:last-child {
    margin-bottom: 0;
}

.widget-area .widget .widget-title {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    font-size: 25px;
    font-weight: 500;
}

.widget-area .widget .widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 1px;
    bottom: -1px;
    background: var(--primary);
}

.widget-area .widget_latest_news_thumb {
    position: relative;
    overflow: hidden;
}

.widget-area .widget_latest_news_thumb .item {
    overflow: hidden;
    margin-bottom: 25px;
}

.widget-area .widget_latest_news_thumb .item:last-child {
    margin-bottom: 0;
}

.widget-area .widget_latest_news_thumb .item .thumb {
    float: left;
    height: 80px;
    overflow: hidden;
    display: block;
    position: relative;
    width: 80px;
    margin-right: 15px;
    z-index: 1;
}

.widget-area .widget_latest_news_thumb .item .info {
    overflow: hidden;
}

.widget-area .widget_latest_news_thumb .item .info span {
    display: block;
    color: #656565;
    font-size: 14px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
}

.widget-area .widget_latest_news_thumb .item .info .title {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 17px;
    font-weight: 500;
}

.widget-area .widget_latest_news_thumb .item .info .title a {
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #585858;
}

.widget-area .widget_latest_news_thumb .item:hover .info .title a {
    color: #585858;
}

.gallery-links {

    inset: 0;
    opacity: 0;
    color: var(--bg-primary-color);
    background: #585858;
}

.work-portfolio-item .fancybox img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    transition: .3s linear !important;
}

.work-portfolio-item .fancybox:hover img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.post-loop-grid .post h1 {
    font-family: Barlow, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--bg-primary-color);
}

.post-loop-grid .post .contain p {
    font-family: Barlow, sans-serif;
    color: var(--bg-primary-color);
    font-size: 14px;
}

.post-loop-grid .sidebar-news-small .sidebar-title {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-primary-color);
    margin-bottom: 1px solid var(--bg-primary-color);
}

.post-loop-grid .sidebar-news-small .post-list-small .content h5 {
    font-family: 'Barlow', sans-serif;
    color: #585858;
    font-size: 18px;
    cursor: pointer;
}

.post-loop-grid .sidebar-news-small .post-list-small .content h5:hover {
    color: var(--bg-primary-color);
}

.post-loop-grid .sidebar-news-small .post-list-small .content span {
    color: #585858;
    font-family: Barlow, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-primary-color);
}













.portfolio-container .pxp-jobs-card-1-details a {
    font-size: 16px !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    color: #585858;

}

.portfolio-container .pxp-jobs-card-1-details h5 {
    font-size: 20px !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    color: #585858;
}

.portfolio-container .pxp-jobs-card-1-details a:hover,
.portfolio-container .pxp-jobs-card-1-details h5:hover {
    color: var(--bg-primary-color);
    transition: .5s;

}

.portfolio-container .pxp-jobs-card-1 h1 {
    font-size: 40px !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    color: #585858;
}

.portfolio-container .pxp-jobs-card-1 p {
    font-size: 16px !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    margin-top: -5px;
    color: #585858;
}

.portfolio-container .bottom-items span {
    font-size: 14px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 300;
    color: #585858;
}

.portfolio-container .pxp-jobs-card-1-bottom a {
    font-size: 12px !important;
    font-family: 'Titillium Web', sans-serif;
}

.portfolio-container .pxp-jobs-card-1-bottom p {
    font-size: 14px !important;
    font-family: 'Titillium Web', sans-serif;
}



.slider_area {
    position: relative;
}



.modal-dialog {
    max-width: 800px;
}

.modal-title {
    color: #075e89
}

.content-box {
    background-color: var(--text-light-color);
    min-width: 280px;
    max-width: 320px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 960px) {
    .content-box {
        max-width: 80%;
        margin: 30px auto;
    }
}

.carousel-content-items h5 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 15px;
    color: #fcfcfc;
}

.carousel-content-items span {
    font-family: 'Titillium Web', sans-serif;
    font-size: 15px;
    color: #c4c3c3;
}

.content-box-title {
    padding: 5px 15px;
    font-size: 15px;
    background-color: var(--bg-primary-color);
    color: var(--text-light-color);
    font-weight: 700;
    border-radius: 5px 5px 0 0;
    font-family: 'Titillium Web', sans-serif;
}

.content-box ul {
    list-style: none;
    color: #585858;
}

.carousel-content-items ul li {
    padding: 5px 15px;
    line-height: 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.content-box ul .gpa {
    color: #b11116;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
}

ol,
ul {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

@media screen and (max-height: 767px) {
    .content-box ul li {
        padding: 4px 15px;
        font-family: 'Barlow', sans-serif;
        font-size: 14px;
    }
}

.sub-title {
    color: #f2f2f2;
}

.carousel-item-application img {
    height: 100vw !Important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}

.carousel-item-application::before {
    content: '';
    background-color: #022a3e;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: .5;
}
.footer-bottom a{
    font-family: 'Barlow', sans-serif;
}
.footer-bottom  .user-link:hover{
    color: red!important;
}






.section-admission .accordion button{
    box-shadow: none!important;
    color: var(--bg-primary-color);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
}
.section-admission .admission table td a{
    color: #585858;
}
.section-admission .admission table td a:hover{
    color: red;
    transition: .2s;
}



.section-admission-form .admission-form   #regForm {
    background-color: #ffffff;
    margin: 0px auto;
    font-family: Raleway;
    padding: 40px;
    border-radius: 10px
}

.section-admission-form .admission-form  h1 {
    text-align: center;
    font-family: 'Barlow', sans-serif;
    color: var(--bg-primary-color);
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
}

.section-admission-form .admission-form .form-design input {
    padding: 10px;
    width: 100%;
    box-shadow: none!important;
    font-size: 13px;
    font-family: 'Barlow', sans-serif;
    border: 1px solid var(--bg-primary-color)!important;
    border-radius: 5px;
}
.section-admission-form .admission-form .gender{
    font-size: 13px;
    font-family: 'Barlow', sans-serif;
}
.section-admission-form .admission-form  select {
    padding: 10px;
    width: 100%;
    box-shadow: none!important;
    font-size: 13px;
    font-family: 'Barlow', sans-serif;
    border: 1px solid var(--bg-primary-color)!important;
    border-radius: 5px;
}
.section-admission-form .admission-form   input.invalid {
    background-color: #ffdddd
}

.section-admission-form .admission-form  .tab {
    display: none
}

.section-admission-form .admission-form   button {
    background-color: var(--bg-primary-color);
    color: #ffffff;
    border: none;
    padding: 8px 50px;
    border-radius: 50px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer
}

.section-admission-form  .admission-form  button:hover {
    opacity: 0.8
}

.section-admission-form .admission-form #prevBtn {
    background-color: #bbbbbb
}

.section-admission-form .admission-form .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5
}

.section-admission-form .admission-form .step.active {
    opacity: 1
}

.section-admission-form .admission-form .step.finish {
    background-color: #4CAF50
}

.section-admission-form .admission-form  .all-steps {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px
}

.section-admission-form  .admission-form .thanks-message {
    display: none
}





