
/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/

.alert-showing {
    display: block;
    color: #333;
    background-color: #e0ffc7;
    border: 1px solid #b4d39b;
    margin: 0 auto 24px;
    padding: 15px 15px;
    overflow-wrap: break-word;
    font-weight: 600;
}

.Err-showing {
    display: block;
    color: #333;
    background-color: #e0ffc7;
    border: 1px solid #b4d39b;
    margin: 0 auto 24px;
    padding: 15px 15px;
    overflow-wrap: break-word;
    font-weight: 600;
}

.clear {
    clear: both;
    display: block;
    font-size: 0px;
    height: 0px;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

::selection {
    background: #2f3390;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #2f3390; /* Firefox */
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #2f3390; /* Safari */
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}
/* ----------------------------------------------------------------
Typography
-----------------------------------------------------------------*/
html, body {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    color: #555;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
}

a {
    text-decoration: none !important;
    color: #2f3390;
}

    a:hover {
        color: #222;
    }

/* ----------------------------------------------------------------
	Bootstrap Adjustments
-----------------------------------------------------------------*/

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1480px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1750px;
    }
}
/* --------------------------------------
Page Elements
--------------------------------------- */

.btn {
    background-color: #2f3390;
    color: #fff;
    font-weight: bold;
}

    .btn:link,
    .btn:visited {
        background-color: #2f3390;
        color: #fff;
        font-size: 1.4vw;
        font-weight: bold;
    }
/* ----------------------------------------------------------------
Helper Classes + margins + paddings + Animations
-----------------------------------------------------------------*/
#wrapper {
    position: relative;
    width: 1220px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

:root {
    --blue-color: #2f3390;
    --black-bgcolor: #2f3390;
    --gray-color: #333;
    --light-color: #f5f5f5;
}

.blue-clr {
    color: var(--blue-color);
}

.gray-clr {
    color: var(--gray-color);
}

.light-bg {
    background-color: var(--light-color);
}
/* ----------------------------------------------------------------
Header
-----------------------------------------------------------------*/
#header,
#header-wrap,
#logo img {
    height: 100px;
    transition: height 0.4s ease, opacity 0.3s ease;
    -webkit-transition: height 0.4s ease, opacity 0.3s ease;
    -o-transition: height 0.4s ease, opacity 0.3s ease;
    -moz-transition: height 0.4s ease, opacity 0.3s ease;
    -ms-transition: height 0.4s ease, opacity 0.3s ease;
}

.stretched #wrapper {
    width: 100%;
}

#header-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 100;
}

#logo {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}


/*- Menu -*/

#primary-menu {
    margin-left: auto;
    display: flex;
}

    #primary-menu ul {
        list-style: none;
        margin: 0;
        display: flex;
        padding: 0;
        padding-right: 15px;
        margin-right: 15px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

        #primary-menu ul > li > a {
            display: block;
            /* line-height: 22px; */
            padding: 36px 15px;
            color: #444;
            /*font-weight: bold;*/
            font-size: 18px;
            letter-spacing: 1px;
            /*text-transform: uppercase;*/
            /* -webkit-transition: margin 0.4s ease, padding 0.4s ease; */
            -o-transition: margin 0.4s ease, padding 0.4s ease;
            /* transition: margin 0.4s ease, padding 0.4s ease; */
        }

        #primary-menu ul > li:hover > a,
        #primary-menu ul > li.current > a {
            color: var(--blue-color);
        }

        #primary-menu ul li.submenu > ul {
            display: block;
        }

        #primary-menu ul > li.submenu {
            position: relative;
        }

            #primary-menu ul > li.submenu ul {
                background: #fff;
                border-top: 2px solid var(--blue-color);
                box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
                width: 220px;
                position: absolute;
                display: none;
                margin: 0;
                padding: 0;
                height: 0;
                opacity: 0;
                transition: 0.5s;
            }

                #primary-menu ul > li.submenu ul li > a {
                    padding: 10px;
                    font-size: 18px;
                    /*font-weight: 700;*/
                    color: #666;
                    padding-top: 10px !important;
                    padding-bottom: 10px !important;
                    border: 0;
                    letter-spacing: 0;
                    font-family: "Lato", sans-serif;
                    -webkit-transition: all 0.2s ease-in-out;
                    -o-transition: all 0.2s ease-in-out;
                    transition: all 0.2s ease-in-out;
                }

                #primary-menu ul > li.submenu ul li:hover > a {
                    background-color: #f9f9f9;
                    padding-left: 18px;
                    color: #2f3390;
                }

a#top-search-trigger {
    padding: 10px 5px;
}

#top-search form input {
    box-shadow: none;
    /* pointer-events: none; */
    /* border-radius: 0; */
    border: 0;
    outline: 0 !important;
    font-size: 32px;
    /* padding: 10px 80px 10px 0; */
    height: calc(100% - 1px);
    color: #333;
    font-weight: 700;
    margin-top: 0 !important;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    padding: 10px 80px 10px 40px;
    display: none;
}

#top-search a i.icon-line-cross {
    opacity: 0;
    width: 0;
}

.top-search-open #top-search a i.icon-line-cross {
    opacity: 1;
    z-index: 101;
    font-size: 16px;
    position: absolute;
    width: auto;
    right: -6px;
    padding: 0 10px;
}

#top-search form {
    opacity: 0;
    z-index: 10;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

body.top-search-open #top-search form {
    opacity: 1;
    z-index: 10;
}

#primary-menu-trigger {
    opacity: 0;
    /* pointer-events: none; */
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    top: 50px;
}

.sticky-header #primary-menu ul > li > a,
.sticky-header #primary-menu ul li ul li a {
    font-size: 16px;
}

@media (min-width: 992px) {
    #primary-menu ul > li.submenu:hover ul {
        display: block;
        opacity: 1;
        height: auto;
    }

    #header.sticky-header #header-wrap, #header.sticky-header #logo img {
        height: 60px;
        width: auto;
    }

    #header.sticky-header #header-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 100;
    }

    #header.sticky-header #primary-menu ul > li > a {
        padding-top: 17px;
        padding-bottom: 17px;
    }
}

@media only screen and (max-width: 991px) {
    #top-search { /* margin-top: 36px; */
    }

    .header-content {
        display: block;
    }

    nav#primary-menu {
        display: none;
    }

        nav#primary-menu.open,
        #primary-menu ul > li.open-menu ul {
            display: block;
        }

    #primary-menu ul {
        display: block;
        border: 0;
        margin: 0;
    }

    #primary-menu-trigger {
        opacity: 1;
        -webkit-transition: opacity 0.2s 0.2s ease, top 0.4s ease;
        -o-transition: opacity 0.2s 0.2s ease, top 0.4s ease;
        transition: opacity 0.2s 0.2s ease, top 0.4s ease;
    }

    #primary-menu > ul > li.sub-menu > a,
    #primary-menu > .container > ul > li.sub-menu > a,
    #primary-menu ul > li.submenu > a {
        background-image: url("../images/icons/submenu.png");
        background-position: right center;
        background-repeat: no-repeat;
        pointer-events: none;
    }

    #primary-menu ul > li > a {
        padding: 14px 5px;
        border-bottom: 1px solid #eee;
    }

    #primary-menu ul > li:last-child > a {
        border-bottom: 0;
    }

    #header, #header-wrap {
        height: auto;
    }

    /*#primary-menu ul>li.submenu:hover ul,*/
    #primary-menu ul > li.open-menu ul {
        position: static;
        height: auto;
        opacity: 1;
    }

    #primary-menu ul > li.submenu ul {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
        border-right: 0;
    }

        #primary-menu ul > li.submenu ul li a {
            border-bottom: 1px solid #eee;
        }

    #logo {
        border: 0;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    div#top-search #top-search-trigger {
        position: absolute;
        top: 27px;
        right: 40px;
    }
}

@media only screen and (max-width: 1030px) {
    #primary-menu ul > li > a {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (hover: none) {
    #primary-menu > ul > li.submenu > a, #primary-menu > .container > ul > li.submenu > a, #primary-menu ul > li.submenu > a {
        pointer-events: none;
    }
}
/* ----------------------------------------------------------------
Slider
-----------------------------------------------------------------*/
.home-slider-item {
    max-height: 85vh;
    overflow: hidden;
}

video.home-video {
    width: 100%;
}

/* Owl Carousel - Controls
-----------------------------------------------------------------*/

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
}

.home-slider .owl-nav .owl-prev {
    position: relative;
}

.home-slider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

    .home-slider .owl-nav .owl-prev span {
        font-size: 1.6875rem;
        color: #fff;
    }

    .home-slider .owl-nav .owl-prev:focus {
        outline: 0;
    }

    .home-slider .owl-nav .owl-prev:hover {
        background: #000 !important;
    }

.home-slider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

    .home-slider .owl-nav .owl-next span {
        font-size: 1.6875rem;
        color: #fff;
    }

    .home-slider .owl-nav .owl-next:focus {
        outline: 0;
    }

    .home-slider .owl-nav .owl-next:hover {
        background: #000 !important;
    }

.home-slider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.home-slider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

@media only screen and (min-width:1200px) {
    .home-slider .owl-nav .owl-prev {
        left: 30px;
    }

    .home-slider .owl-nav .owl-next {
        right: 30px;
    }

    .home-slider:hover .owl-prev {
        left: 50px;
        opacity: 1;
    }

    .home-slider:hover .owl-next {
        right: 50px;
        opacity: 1;
    }
}
/* Owl Carousel - Controls - Dots
-----------------------------------------------------------------*/

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    width: 8px;
    height: 8px;
    margin: 20px 4px 30px 4px;
    opacity: 0.5;
    border-radius: 50%;
    background-color: #2f3390;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 5px !important;
}

    .owl-carousel .owl-dots .owl-dot.active,
    .owl-carousel .owl-dots .owl-dot:hover {
        opacity: 1;
    }

@media (max-width: 575px) {
    .owl-carousel .owl-dots .owl-dot {
        padding: 6.5px !important;
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* ----------------------------------------------------------------
Sections
-----------------------------------------------------------------*/
.divcenter {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.gpa-button {
    color: #fff;
    padding: 0 26px;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 3px;
    border: 2px solid #fff;
    padding: 0 26px;
    font-size: 16px;
    height: 46px;
    line-height: 46px;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
}

    .gpa-button:hover {
        background: #fff;
        color: var(--gray-color);
    }

.color-btn {
    background: var(--gray-color);
    color: #fff;
    border: 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}

    .color-btn:hover {
        background: var(--blue-color);
        color: #fff;
    }

.color-blocks-item {
    padding: 60px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .color-blocks-item h3 {
        text-transform: uppercase;
        margin-bottom: 30px;
        font-weight: 600;
    }

.color-blocks {
    margin: 0;
}

.bgicon {
    /* display: block; */
    position: absolute;
    bottom: 0;
    right: -50px;
    font-size: 210px;
    color: rgba(0, 0, 0, 0.1);
    opacity: 0.1;
    width: 200px;
}

.line {
    position: relative;
    width: 100%;
    margin: 60px 0;
    border-top: 1px solid #eee;
}

.heading-block {
    text-align: center;
    margin-bottom: 50px;
}

    .heading-block:after {
        content: "";
        display: block;
        margin-top: 30px;
        width: 40px;
        border-top: 2px solid #444;
        margin: auto;
        margin-top: 20px;
    }


    .heading-block h1 {
        /* font-size: 32px; */
    }

    .heading-block h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .heading-block h3 {
        /* font-size: 26px; */
    }

    .heading-block h4 {
        /* font-size: 20px; */
        /* font-weight: 700; */
    }

    /*
.heading-block h1 + span {
font-size: 24px;
}*/

    .heading-block h2 + span {
        font-size: 22px;
    }
/*
.heading-block h3 + span,
.heading-block h4 + span {
font-size: 20px;
}*/


.feature-box {
    padding-left: 42px;
    position: relative;
    margin-bottom: 50px;
}

.fbox-icon {
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 28px;
    height: 0;
    width: 26px;
    transition: 0.3s;
}

    .fbox-icon img {
        width: 100%;
    }

.feature-box a:hover > * {
    color: var(--blue-color);
}

.feature-box a:hover .fbox-icon {
    transform: scale(1.1);
}

.feature-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-color);
}

.feature-box p {
    margin-left: -45px;
    color: var(--gray-color);
}


.portfolio-item {
    overflow: hidden;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

    .portfolio-image img {
        /* object-fit: cover; */
        /* object-position: center; */
        width: 100%;
        height: 100%;
        /* display: none; */
    }

body:not(.device-touch):not(.device-sm):not(.device-xs) .portfolio-overlay {
    -webkit-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* z-index: 100; */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

    .portfolio-overlay .right-icon {
        position: absolute;
        left: calc(50% + 20px);
        top: 50%;
        display: inline-block;
        /* margin-left: 0; */
        /* margin-right: -44px; */
    }


    .portfolio-overlay i {
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #f5f5f5;
        width: 40px !important;
        height: 40px !important;
        margin: -28px 0 0 -44px;
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        color: #444;
        border-radius: 50%;
        -webkit-backface-visibility: hidden;
    }

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-desc {
    position: absolute;
    display: block !important;
    width: 100%;
    height: 78px;
    padding: 15px;
    top: auto;
    bottom: -79px;
    left: 0;
    background-color: #fff;
    z-index: 101;
}

    .portfolio-desc h3 {
        margin: 0;
        padding: 0;
        font-size: 19px;
    }

    .portfolio-desc span {
        display: block;
        margin-top: 3px;
        color: #888;
    }

.portfolio-item:hover .portfolio-image img {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .portfolio-desc {
    -webkit-transition: bottom 0.2s ease-in-out;
    -o-transition: bottom 0.2s ease-in-out;
    transition: bottom 0.2s ease-in-out;
}

.portfolio-item:hover .portfolio-desc {
    bottom: 0;
}

.contact-btn {
    display: block;
    /* width: 100%; */
    /* white-space: normal; */
    /* margin: 0; */
    /* height: auto; */
    line-height: 1.6;
    padding: 30px 0;
    font-size: 30px;
    font-weight: 300;
    /* text-transform: none; */
    /* border-radius: 0; */
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); */
    text-align: center;
    color: #fff;
    background: var(--gray-color);
    margin-bottom: 80px;
}

    .contact-btn:hover {
        background-color: #2f3390;
        color: #fff;
    }

    .contact-btn strong {
        font-weight: 700;
        border-bottom: 2px solid #eee;
    }


/*video Bg*/
.videoBg-block {
    position: relative;
    height: 500px;
    padding: 50px 0;
    overflow: hidden;
    /* font-family: "Lato", sans-serif; */
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.video-caption {
    position: relative;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    color: #eee;
    z-index: 3;
}

    .video-caption h2 {
        font-size: 42px;
    }

    .video-caption p {
        margin-top: 30px;
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: 100;
    }

.video-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

    .video-wrap video {
        /* width: 100%; */
        object-fit: cover;
        object-position: center;
    }

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    background: transparent url("../images/grid.png") repeat;
    /* -webkit-backface-visibility: hidden; */
    background-color: rgba(0,0,0,0.3);
}


.Subscribe-block {
    margin: 60px 0;
    padding: 60px 0;
    background-color: #f9f9f9;
}

    .Subscribe-block .heading-block span {
        color: var(--blue-color);
    }

#subscribe-form .divcenter {
    max-width: 600px;
    margin-bottom: 0;
}

.form-control.error, .sm-form-control.error {
    border-color: #e42c3e;
}

/* footer */
footer {
    background-color: #333;
    color: #CCC;
    border-top: 5px solid rgba(0, 0, 0, 0.2);
    font-size: 18px;
}

.footer-top {
    padding: 80px 0;
}

.footer-logo {
    display: block;
    margin-bottom: 30px;
}


.footer-nav > h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
    /*
li {
    li a

{
    color: #CCC;
    background-image: url("../images/icons/widget-link-dark.png");
}

;
}*/

    .footer-nav ul li a {
        color: #CCC;
        background-image: url("../images/icons/widget-link-dark.png");
        padding: 5px 3px 5px 12px;
        transition: all 0.3s ease;
        background-repeat: no-repeat;
        background-position: left center;
        display: inline-block;
    }

    .footer-nav ul li:hover a {
        color: #fff;
        padding-left: 15px;
    }

.counter {
    font-size: 28px;
    font-weight: 600;
}

.counter-ttl {
    font-size: 18px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.counter-item {
    margin-bottom: 30px;
}

.social-footer .social-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 38px;
    color: #fff;
}

    .social-footer .social-icon.si-facebook {
        background-color: #3c5a96;
    }

    .social-footer .social-icon.si-rss {
        background-color: #ec7f38;
    }

    .social-footer .social-icon.si-linkedin {
        background-color: #3c5a96;
    }

    .social-footer .social-icon.si-gplus {
        background-color: #dd4b39;
    }

.social-footer {
    display: flex;
    color: #ddd;
}

    .social-footer:hover {
        color: #fff;
    }

    .social-footer i {
        color: #fff;
    }

    .social-footer small {
        margin-top: 6px;
    }
/* footer bootom */
.footer-bottom {
    padding: 40px 0;
    background-color: rgb(0 0 0 / 20%);
    color: rgb(255 255 255 / 25%);
    font-size: 14px;
    line-height: 1.8;
    color: #b5b3b3;
}

.copyright-links a {
    display: inline-block;
    margin: 0 3px;
    color: rgba(255,255,255,0.25);
    border-bottom: 1px dotted rgba(255,255,255,0.25);
    color: #b5b3b3;
}

    .copyright-links a:first-child {
        margin-left: 0;
    }

    .copyright-links a:hover {
        color: rgba(255,255,255,0.35);
        border-bottom-color: rgba(255,255,255,0.35);
    }

.fright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    border-radius: 4px;
    width: 32px;
    height: 32px;
    background: transparent;
    color: #555;
    overflow: hidden;
    font-size: 14px;
    margin: 4px;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .social-icon i,
    .icon-linkedin {
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .social-icon i:last-child {
            color: #fff;
        }

    .social-icon:hover i,
    .social-icon:hover .icon-linkedin {
        transform: translateY(-100%);
    }

    .social-icon:hover {
        background-color: red;
    }


.si-facebook:hover,
.si-colored.si-facebook {
    background-color: #3b5998;
}

.si-linkedin:hover,
.si-colored.si-linkedin {
    background-color: #0e76a8;
}

.si-gplus:hover,
.si-colored.si-gplus {
    background-color: #dd4b39;
}

.si-pinterest:hover,
.si-colored.si-pinterest {
    background-color: #c8232c;
}

.si-vimeo:hover,
.si-colored.si-vimeo {
    background-color: #86c9ef;
}

.si-github:hover,
.si-colored.si-github {
    background-color: #171515;
}

.si-yahoo:hover,
.si-colored.si-yahoo {
    background-color: #720e9e;
}

.si-rss:hover,
.si-colored.si-rss {
    background-color: #ee802f;
}
/*GotoTop*/
#gotoTop {
    /* display: none; */
    z-index: 299;
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #333;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    top: auto;
    left: auto;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.2s linear;
    -webkit-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
}

    #gotoTop:hover {
        background-color: #2f3390;
    }
/*Loading*/


body #wrapper {
    position: relative;
    opacity: 0;
    opacity: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    background-color: #fff;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .css3-spinner > div {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -9px;
        margin-left: 13px;
        width: 18px;
        height: 18px;
        background-color: #ddd;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
        animation: bouncedelay 1.4s infinite ease-in-out;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .css3-spinner .css3-spinner-bounce1 {
        margin-left: -31px;
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .css3-spinner .css3-spinner-bounce2 {
        margin-left: -9px;
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.oc-clients {
    margin: 50px auto;
}

.oc-item img {
    width: 100%;
    height: 100%;
}

.si-instagram:hover,
.si-colored.si-instagram {
    background-color: #3f729b !important;
}

.si-twitter:hover,
.si-colored.si-twitter {
    background-color: #00acee !important;
}

/********************************/

.page-Bnr {
    min-height: 48vh;
    /* min-height: 465px; */
}

.page-Bnr {
    background-position: 0px -145.608px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    position: relative;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 64%;
    /* background-size: 100%; */
    background-position: top center;
}

.page-Bnr-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(92deg, rgb(25 30 119 / 85%), rgb(25 30 119 / 30%), rgb(25 30 119 / 85%));
}

.page-ttl {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.page-Bnr-content span {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width:991px) {

    .page-Bnr {
        background-attachment: scroll;
        background-size: cover;
        min-height: 40vh;
    }
}

@media only screen and (max-width:767px) {
    .page-Bnr {
        background-position: top center;
        /* background-size: auto 85%;*/
        min-height: 35vh;
    }

    .page-Bnr-content {
        text-align: center;
    }

    .page-ttl {
        font-size: 30px;
    }
}

.breadcrumb {
    background-color: transparent !important;
    margin-bottom: 44px;
    font-size: 16px;
    padding-top: 40px;
    padding-bottom: 10px;
    font-weight: 600
}

.breadcrumb-item.active {
    color: #2f3390;
}

li.breadcrumb-item a {
    color: #555555;
}


.block-ttl {
    position: relative;
}

    .block-ttl h4 {
        display: block;
        background: transparent;
        padding: 0 0 10px;
        border-bottom: 2px solid var(--blue-color);
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #333;
    }

    .block-ttl span {
        color: var(--blue-color);
    }

p {
    line-height: 1.8;
    font-size: 18px;
    font-weight: 500;
}

.bg-img {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-size: cover;
    transition: 0.3s ease;
    transform: scale(1.1);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

    .bg-img:hover {
        transform: initial;
        filter: brightness(0.9);
        -webkit-filter: brightness(0.95);
    }

.imgSide-box {
    height: 100%;
}

.oneImgSide-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.oneImgSide-block .bg-img {
    padding-top: 50%;
}

.oneImgSide-content .heading-block h3 {
    font-weight: 700;
    text-align: left;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oneImgSide-content .heading-block:after {
    margin-left: 0;
}

.sub-list {
    list-style: none;
    /* padding: 0; */
}

    .sub-list li {
        position: relative;
        margin-bottom: 10px;
        font-weight: 600;
    }

        .sub-list li:before {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--blue-color);
            position: absolute;
            right: calc(100%);
            /*border-radius:50%;
  */ transform: rotate(45deg);
            margin-right: 10px;
            margin-top: 5px;
            box-shadow: 0 0 6px;
            transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
        }

        .sub-list li:hover:before {
            transform: rotate(-45deg) scale(1.3);
        }

.transparent-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

    .transparent-header nav#primary-menu li a {
        color: #fff;
    }

    .transparent-header #logo {
        border-right-color: rgba(255,255,255,0.2);
    }

#header.transparent-header #header-wrap .header-content {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#header.transparent-header #primary-menu ul {
    border-right-color: rgba(255,255,255,0.2);
}

.listing-search-form {
    margin-bottom: 40px;
}

    .listing-search-form label {
        font-weight: 800;
    }

.conf-meta li, .conf-content li {
    margin-bottom: 5px;
    font-weight: 600;
}

    .conf-meta li i, .conf-content li i {
        margin-right: 5px;
    }

.conf-list .card {
    border: 0;
    box-shadow: 0 0 4px 4px rgb(51 51 51 / 20%);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.conf-list .bg-img {
    padding-top: 55%;
    transform: none;
    border-radius: 10px;
}

.news-img .bg-img {
    padding-top: 55%;
    padding-top: 140%;
    transform: none;
}

.conf-list .bg-img:hover,
.news-img:hover .bg-img {
    transform: scale(1.1);
}

.conf-meta {
    display: flex;
    justify-content: space-between;
    color: gray;
    font-size: 13px;
}

.conf-list .card-title {
    font-size: 17px;
    font-weight: 600;
}

.more-link {
    border-bottom: 2px solid;
    display: inline;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    font-family: "Crete Round", serif;
    padding: 0 2px;
}

.conf-list .card-title {
    font-size: 17px;
    font-weight: 600;
}

.comingEvents {
    padding: 24px;
    box-shadow: 1px 1px 10px 0 #bbb;
}

.aside-ttl {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-item h4 {
    font-size: 17px;
}

.event-item .imgSide-box {
    border-radius: 10px;
}

.event-item {
    margin-bottom: 30px;
}

    .event-item .bg-img {
        padding-top: 100%;
        transform: none;
    }

/****************/

.news-ttl {
    background-color: #2f3390;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
}

    .news-ttl h2 {
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        margin: 0;
    }

.news-item {
    box-shadow: 1px 1px 10px 0 #bbb;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

    .news-item:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 0.5rem 1rem #bbb;
    }

/************/
.eventDetail {
    padding-bottom: 80px;
}

.event-content,
.subpage-content {
    background: #fff;
    padding: 30px;
    margin: auto 15px;
}

.event-img {
    text-align: center;
    margin-bottom: 30px;
}

    .event-img img {
        max-width: 100%;
    }

.event-ttl {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-color);
    margin-bottom: 12px;
}


.event-body {
    margin-top: 50px;
}

@media (min-width:992px) {
    .event-content .conf-meta {
        max-width: 28%;
    }

    .event-content,
    .subpage-content {
        padding: 60px 60px 80px;
    }
}

/************************/
.flexslider .slide img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    transition: 0.3s;
}

.gallery-ttl {
    background-color: #2f3390;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    position: relative;
    padding-right: 90px;
}

    .gallery-ttl h2 {
        font-size: 17px;
        margin: 0;
    }

.album {
    border: 0;
    box-shadow: 0 0 4px 4px rgb(51 51 51 / 20%);
    border-radius: 10px;
    transition: 0.3s;
}

.flexslider .slide img:hover {
    transform: scale(1.1);
}

.flexslider, .slide, .slider-wrap {
    overflow: hidden;
}

.album:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 0.5rem 1rem #bbb;
}

/********/
.subpage {
    padding-bottom: 50px;
}

.content-img {
    border-radius: 20px;
    background: var(--black-bgcolor);
}

.content-body p,
.subpage-content p {
    font-size: 18px;
}

.img-scale {
    transition: 0.3s ease;
    filter: contrast(0.9);
    box-shadow: inset 0 0 4px #333;
    opacity: 0.85;
}


    .img-scale:hover {
        transform: scale(1.05);
        filter: initial;
        opacity: 1;
    }

.content-ttl {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    /* margin-bottom: 30px; */
}

    .content-ttl:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--gray-color);
        height: 3px;
        /* background: var(--blue-color); */
        border-radius: 9px;
        /* width: 70%; */
        margin: auto;
    }
/* List */
.gpa-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

    .gpa-list li {
        /*color: var(--blue-color);*/
        padding-left: 30px;
        margin-bottom: 5px;
        position: relative;
        font-size: 18px;
    }

        .gpa-list li:before {
            content: "";
            position: absolute;
            left: 5px;
            top: 4px;
            width: 14px;
            height: 14px;
            border: 2px solid #8d8d8d;
            border-radius: 50%;
        }

/* General Listing */
.block-items-container {
    padding-bottom: 60px;
}

.block-items-list {
    background: #fff;
    padding: 60px 60px 80px;
    margin-bottom: 80px;
}

.block-item {
    background: var(--blue-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.block-item-imgBox {
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s;
}

.block-item-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 62%;
    padding-top: 80%;
    border-radius: 10px;
    transition: 0.3s;
}

.block-item-ttl {
    padding: 20px;
    color: #fff;
    text-align: center;
}

    .block-item-ttl h3 {
        font-size: 20px;
    }

.block-item:hover .block-item-img {
    transform: scale(1.05);
}

.block-item:hover .block-item-imgBox {
    transform: scale(0.93);
}

.block-item:hover {
    background: rgb(38 42 114);
    background: #222463;
    box-shadow: 0 0 10px 6px #d3d0d0;
}



/** WS */
.pb-60 {
    padding-bottom: 60px;
}

.workshop {
    padding: 50px;
}

.whiteBg {
    background: #fff;
}

.ws-ttl {
    font-weight: 700;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    color: var(--blue-color);
    margin-bottom: 25px;
}

.workshop .ws-date-place {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 30px;
}

.blue-btn {
    background: var(--blue-color);
    color: #fff !important;
    border: 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}

    .blue-btn:hover {
        background: var(--gray-color);
    }

.ws-line {
    height: 40px;
    background: #f5f5f5;
    margin-top: 45px;
    margin-bottom: 40px;
}

.workshop-item:last-child .ws-line {
    margin-bottom: 15px;
}

.workshop-content p {
    font-size: 18px;
}

@media only screen and (max-width:767px) {
    .content-ttl {
        font-size: 24px;
    }
}

/****************/

.boxesListing, .boxesDetails {
    padding: 60px;
}

.box-item {
    padding: 60px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: inset 0 0 10px 4px #eee;
    display: block;
    transition: 0.3s;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.box-top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

    .box-top img {
        margin: 0 5px;
        width: 70px;
    }

.grade {
    width: 70px;
    height: 70px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    color: #fff;
    background: #020e55;
    border-radius: 50%;
    padding-top: 11px;
    font-family: serif;
    margin: 0 5px;
}

    .grade sup {
        font-size: 18px;
    }

.country {
    font-weight: 600;
    color: #020e55;
    margin-bottom: 15px;
}

.year {
    color: var(--gray-color);
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.box-item:hover {
    background: #eee;
    transform: translateY(-10px);
}

.boxesDetails

.pdf-ttl {
    color: #020e55;
    font-weight: 500;
}

.pdf-date {
    color: #333333;
    margin: 0;
    font-size: 17px;
}

.boxesDetails .box-item {
    padding-top: 40px;
    padding-bottom: 40px;
}
/********/
.gpa-table {
    margin: auto;
    border: 0;
}

    .gpa-table td, .gpa-table th {
        padding: 10px 15px;
        border: 1px solid #d9d9d970;
    }

    .gpa-table th {
        background: var(--blue-color);
        color: #fff;
        text-align: center;
        margin: 0;
        padding: 15px;
        border: 3px solid var(--blue-color);
        border-bottom: 3px solid #767676;
    }

        .gpa-table th p {
            margin: 0;
        }

    .gpa-table tr:nth-child(odd) {
        background: #f8f9fa;
    }

    .gpa-table tr:hover {
        background: #ebebeb;
    }


.gpa-address {
    padding: 20px 30px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    margin-bottom: 30px;
    width: 100%;
    background: radial-gradient(transparent, rgb(47 51 144 / 15%));
    box-shadow: 0 0 10px 4px #dcdcdc;
}

.locationMap iframe {
    width: 100%;
}


.award-Item {
    position: relative;
}

    .award-Item:after {
        content: "";
        position: relative;
        display: block;
        width: 100%;
        margin: 60px 0;
        border-top: 1px solid #eee;
    }

    .award-Item:last-child:after {
        display: none;
    }

.album .flexslider {
    min-height: 20px !important;
}

@media only screen and (min-width:992px) {
    .album .flexslider {
        min-height: 140px !important;
    }
}

.redirectBtnNewWindow {
    border: 0;
    background: none;
}

.oc-item img {
    transition: 0.3s;
}

.oc-item:hover img {
    transform: scale(1.15);
}

.oc-item button {
    position: relative;
    overflow: hidden;
}

    .oc-item button:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -100%;
        left: -100%;
        background: rgb(51 51 51 / 10%);
        transition: 0.3s;
    }

.oc-item:hover button:after {
    top: 0;
    left: 0;
}

/* abstract Form */

.SubmitAbstractForm form {
    background: #eee;
    padding: 30px;
    box-shadow: 0 0 10px rgb(51 51 51 / 30%);
    margin: 30px 0;
}

.SubmitAbstractForm .form-group {
    margin-bottom: 30px;
}

.SubmitAbstractForm .form-control:focus, .SubmitAbstractForm .form-control:active {
    border-color: var(--blue-color);
    box-shadow: 0 0 0 0.2rem rgb(47 51 144 / 20%);
}

.authors label {
    color: var(--blue-color);
}

#subscribe-form-email-error,
#widget-subscribe-form-email-error {
    text-align: center;
    font-size: 14px;
    color: red;
}


/* Login */

.login {
    position: relative;
    font-weight: bold;
    color: var(--blue-color);
}

    .login .container-fluid {
        padding: 0;
    }

.form-content {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    padding: 60px 75px;
    font-weight: bold;
    color: var(--blue-color);
}

@media (max-width:991px) {
    .form-content {
        /* position: relative; */
        padding: 45px;
    }

    .login-img img {
        /* overflow: hidden; */
        max-height: 500px;
        object-fit: cover;
        object-position: top center;
    }
}

@media (max-width:767px) {
    .login-img img {
        /* overflow: hidden; */
        max-height: 400px;
        object-fit: cover;
        object-position: top center;
    }
}

/* payment */

.paymentForm {
    padding: 60px;
}

.content-ttl {
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: inline-block;
}

.paymentForm label {
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.green-txt {
    font-weight: 600;
    color: green;
    margin-bottom: 30px;
}

.paymentMethods {
    margin-top: 20px;
}

@media only screen and (max-width:991px) {
    .paymentForm {
        padding: 45px;
    }

    .content-ttl {
        font-size: 26px;
    }
}


.paymentMethods h5 {
    font-weight: 600;
}

.owl-carousel {
    display: block;
}

    .owl-carousel .slide-owl-wrap:not(:first-child) {
        display: none;
    }

    .owl-carousel img {
        width: 100%;
    }

    .owl-carousel video {
        width: 100%;
    }
/* Payment Msg*/
.pay-msg {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* max-width: 30%; */
    margin: auto;
}

.msg-img {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 50%;
}

    .msg-img img {
        width: 150px;
        animation: bigSmall 5s infinite;
    }

.msg-ttl {
    font-weight: bold;
    margin-bottom: 20px
}

.pay-msg p {
    line-height: 1.3;
}

@media (min-width:992px) {
    .pay-msg {
        max-width: 490px;
    }
}

@keyframes bigSmall {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.view {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    height: 100%;
}

.viewAllLink {
    text-align: center;
}

.register-img {
    padding: 30px;
    height: 100%;
    display: flex;
}

.form-content-reg {
    padding: 30px;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: auto;
}

.form-footer > span {
    color: #333333;
    font-size: 12px;
}

.form-footer a {
    font-size: 14px;
}

@media (min-width:992px) {
    .register-img {
        padding: 40px 50px;
    }

    .form-content-reg {
        padding: 40px 60px 40px 0;
    }
}

.roles > .form-check, .status > .custom-radio {
    display: inline-block;
    padding-right: 15px;
}

.reg-ttl strong {
    text-decoration: underline;
    margin-bottom: 30px;
    color: var(--blue-color);
}

.reg-ttl img {
    width: 30px;
    margin-right: 15px;
}


/**Paper Submitions**/

.paperNav {
    background: #2f3490;
    padding: 30px 0 100px;
}

    .paperNav .nav-pills .nav-link.active,
    .paperNav .nav-pills .show > .nav-link {
        background: #33333370;
    }

    .paperNav .nav-pills .nav-link {
        border: 0;
        border-bottom: 1px solid #f0f0f0;
        background: transparent;
        color: #fff;
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
    }

.paper-content {
    background: #f5f5f5;
    padding: 30px;
}

.paper-item {
    padding: 20px 25px;
    background: #fff;
    transition: 0.3s ease;
}

    .paper-item:hover {
        box-shadow: 0 0 5px 5px #dcdcdc;
    }

.paper-ttl {
    color: #2f3390;
    margin-bottom: 15px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.company {
    color: #000;
    /* font-size: 16px; */
    margin-bottom: 8px;
}

.category {
    color: #000;
    margin-bottom: 8px;
}


.paperList-ttl {
    color: var(--blue-color);
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 24px;
    font-weight: 600;
}

    .paperList-ttl:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--blue-color);
        width: 55px;
        height: 3px;
    }

select#CategoryTopic {
    margin-inline: 5px;
}

.sorting-options {
    margin-bottom: 20px;
}
.sort-link {
    text-decoration: none;
    color: #000; /* Default color */
    padding: 8px;
    transition: background-color 0.3s;
}

    .sort-link.active {
        background-color: #2f3390; /* Highlight color */
        color: #fff; /* Text color when active */
        border-radius: 5px;
    }
img.blue-icon {
    display: none;
}

.paperNav .nav-pills .nav-link.active {
    color: #008cd6;
}

    .paperNav .nav-pills .nav-link.active .white-icon {
        display: none;
    }

    .paperNav .nav-pills .nav-link.active .blue-icon {
        display: inline-block;
    }

.paperNav .nav-pills .nav-link img {
    margin-right: 7px;
}


@media (min-width:1500px) {
    .passForm label {
        max-width: 200px;
    }

    .passForm .offset-sm-3 {
        margin-left: 200px;
    }
}

@media (max-width:1199px) {
    .submit-btn {
        text-align: center;
    }

        .submit-btn .blue-btn {
            margin: auto;
        }
    .CategoryTopic-form .form-control {
        width: 100%; /* Ensure it takes the full width of its container */
        max-width: 230px; /* Set a maximum width if needed */
        margin: 0; /* Reset margin */
        padding: 0.375rem 0.75rem; /* Padding for better appearance */
    }

}

.record {
    background: #fff;
    padding: 0px 15px;
    margin-bottom: 10px;
}

@media (max-width:768px) {
    ._label {
        border-bottom: 1px solid #e7e6e6;
    }
    .sorting-options {
        display: inline-grid;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    ._label {
        border-bottom: 1px solid #e7e6e6;
    }
}

._label, ._content {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

.record:hover {
    background: #edf9ff;
}

.Rating-Container {
    display: flex;
    justify-content: space-between;
}

/* Event Form */
.event-form {
    background: #eee;
    padding: 30px;
    box-shadow: 0 0 10px rgb(51 51 51 / 30%);
    margin: 30px 0;
}

    .event-form label {
        font-weight: 600;
    }

.member-type {
    display: flex;
    margin-bottom: 30px;
}

    .member-type .form-check {
        margin-right: 30px;
    }

.attendees {
    padding: 15px;
    border: 1px solid #a1a1a1;
    margin-bottom: 30px;
    border-radius: 10px;
    height: calc(100% - 30px);
}

.confirm-msg {
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 15px;
}

.payment {
    margin-bottom: 30px;
}

    .payment p {
        font-weight: bold;
    }

@media (min-width:1200px) {
    .bankDetails {
        max-width: 70%;
        /* margin: auto; */
    }
}

@media (min-width:1500px) {
    .bankDetails {
        max-width: 60%;
        /* margin: auto; */
    }
}

.bankDetails .label {
    font-weight: 600;
}


.nonMember {
    display: none;
}

.member, .nonMember, .changed, #ddlExibitorsA, #ddlExibitorsB {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeIn;
    overflow: hidden;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.changed {
    width: 100%;
    padding: 0 15px;
}

.exhibitorOptions, #ddlExibitorsB {
    display: none;
}
.sponsor-type {
    display: flex;
    margin: 30px 0;
}

    .sponsor-type .form-check {
        margin-right: 30px;
    }

.event-btns {
    padding-bottom: 25px;
}
.event-form {
    animation: fadeInBottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInBottom;
    overflow: hidden;
    display:none;
}
.event-form.open {
    animation: fadeInBottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInBottom;
    overflow: hidden;

}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }

    100% {
        opacity: 1;
        transform: inherit;
    }
}