/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #0080aa;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #0080aa;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


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

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

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

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

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

.bg-pale-blue {
    background-color: white !important
}

.logo {
    width: 90px;
}

.welcome-content {
    color: black;
    line-height: 1.8rem;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
}

.about-content {
    color: black;
    line-height: 1.8rem;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    padding: 30px;
}

.welcome-content-bg {
    background: url(../img/welcome-bg.png) center center no-repeat;
    background-size: cover;
}

.cus-title {
    font-size: 30px;
}

.event-countdown-5 {
    background-color: #42359f;
    padding: 30px 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.counter-content-left {
    color: white;
    font-size: 22px;
    margin-top: 20px;
}

.counter-content-left .counter-title {
    color: white;
    font-stretch: condensed;
    font-family: sans-serif, "Helvetica Neue", "Lucida Grande", Arial;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: -5px;
}

.counter-content-left .counter-subtitle {
    color: white;
    font-stretch: condensed;
    font-family: sans-serif, "Helvetica Neue", "Lucida Grande", Arial;
    font-size: 22px;
    font-weight: 500;
    margin-top: -5px;
}

.counter-area {
    display: flex;
    justify-content: center;
}

.counter-area .content {
    margin-right: 1rem;
    padding-right: 0rem;
}

.counter-area .content p {
    font-size: 70px;
    font-weight: 600;
    color: white;
    font-stretch: condensed;
    font-family: sans-serif, "Helvetica Neue", "Lucida Grande", Arial;
    margin-bottom: -20px;
}

.counter-area .content span {
    color: white;
    margin-top: -10px;

}

.venue-content {
    margin-top: 20px;
    margin-left: 5px;
}

.venue-content p {
    color: white;
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 0px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cus-reg-btn {
    font-size: 14px;
    /* font-style: italic; */
    font-weight: 700;
    color: white !important;
    background: #da00ff;
    padding: 10px 24px;
    border-radius: 20px;
    border: none;
}




.demo {
    background: #e5e5e5;
}

.our-team {
    border: 2px solid #0080aa;
    border-radius: 20px;
    text-align: center;
    margin: 10px;
    z-index: 1;
    position: relative;
}

.our-team:before,
.our-team:after {
    content: "";
    width: 100%;
    height: 104%;
    background: #ffb900;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.3);
    transition: all 0.3s ease 0s;
}

.our-team:after {
    width: 106%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.25);
}

.our-team:hover:before {
    transform: translateY(-50%) scaleX(0.7);
}

.our-team:hover:after {
    transform: translate(-50%, -50%) scaleY(0.7);
}

.our-team img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}

.our-team .team-content {
    width: 93%;
    padding: 25px 0 10px;
    background: #ffb900;
    position: absolute;
    bottom: 50px;
    left: 50%;
    opacity: 0;
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
}

.our-team:hover .team-content {
    bottom: 10px;
    opacity: 1;
}

.our-team .title {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}

.our-team .post {
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.our-team .social {
    padding: 0;
    margin: 0;
    list-style: none;
}

.our-team .social li {
    display: inline-block;
    margin: 0 5px;
}

.our-team .social li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #ff3232;
    transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
    background: linear-gradient(to bottom, #ffb900, darkred);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
    color: #fff;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

.bottom-content {
    margin-top: 1rem;
}

.footer-know-logo {
    margin-top: 2rem;
    margin-left: 2rem;
}

.psd-logo {
    width: 160px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.btn-primary {

    color: white;
    background-color: #0080aa;
    border-color: #0080aa;

}



.btn-primary:hover {
    color: white;
    background-color: #1A2A36;
    border-color: #1A2A36;
}

.speaker ul li {
    font-size: 17px;
    font-weight: 500;
    color: black;
    line-height: 2rem;
}

.speaker p {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.banner-container {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    height: 560px;
}

.about-container {
    background: url(../img/about-banner.jpg) center center no-repeat;
    background-size: cover;
    height: 620px;
}

.venue-container {
    background: url(../img/venue-banner.jpg) center center no-repeat;
    background-size: cover;
    height: 620px;
}

.program-container {
    background: url(../img/program-banner.jpg) center center no-repeat;
    background-size: cover;
    height: auto;
}



.social-floating-bar {
    Position: fixed;
    right: 0;
    width: 100%;
    z-index: 999;
    top: 40%;
    width: 120px;
    transition: all 0.3s linear;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, .4);
    padding: 15px;
    border-radius: 3%;
    font-size: 14px;
    font-weight: 600;
    color: yellow !important;
    background: #003796;
}

.social-floating-bar li {
    height: 60px;
    position: relative;
}

.social-floating-bar li a {
    background-color: white;
    padding: 15px;
    width: 50px;
    color: white;
}

.social-floating-bar li a i {
    font-size: 20px;
    font-weight: 600;
}

.social-floating-bar li:nth-child(1) a {
    background: #0248d6;
}

.social-floating-bar li:nth-child(2) a {
    background: #009eff;
}

.social-floating-bar li:nth-child(3) a {
    background: #E1306C;
}

.social-floating-bar li:nth-child(4) a {
    background: #25d366;
}

.contrainer-wrap {
    text-align: center;

}

.contrainer-wrap img {
    width: 900px;

}


@media only screen and (min-width: 320px) and (max-width: 767px) {

    .banner-container {
        background: url(../img/mobile-banner.png) center center no-repeat;
        background-size: cover;
        height: 600px;
    }

    .about-container {
        background: url(../img/about-mobile-banner.png) center center no-repeat;
        background-size: cover;
        height: auto;
    }

    .cus-title {
        font-size: 20px;
        margin-top: 2rem;
        text-align: center;
    }

    .counter-area .content p {
        font-size: 50px;
        font-weight: 600;
        color: white;
        font-stretch: condensed;
        font-family: sans-serif, "Helvetica Neue", "Lucida Grande", Arial;
        margin-bottom: -20px;
    }

    .contrainer-wrap img {
        width: 330px;
    }

    .speaker {

        margin-top: 0px;
    }

}


@media screen and (min-width: 1400px) {

    .banner-container {
        background: url(../img/carousel-1.jpg) center center no-repeat;
        background-size: cover;
        height: 600px;
    }
}

@media screen and (min-width: 1920px) {

    .banner-container {
        background: url(../img/carousel-1.jpg) center center no-repeat;
        background-size: cover;
        height: 700px;
    }
}

/* HOme
about-container
venue-content
scientific-program
Registration
ContactuS
Download brochure */

.venue-ap-logo {
    width: 80px;
}

.venue-sub-h4 {
    font-size: 14px;
    margin-top: 1%;
    font-weight: 400;
}

.venue-banner-logo {
    width: 150px;
}

.mt-0 {
    margin-top: 0px;
}

.venue-content-left p {
    color: black;
    margin-top: 1rem;
    font-weight: 500;
}

.venue-content-right {
    margin-top: 1rem;
    margin-top: 4rem;
}

.venue-content-right p {
    font-size: 16px;
    font-weight: 500;
    color: black;

}

.venue-content-right span {

    color: black;

}

.mb-10 {
    margin-bottom: 10rem;
}

.program-content {
    padding: 10px;
    margin-top: 2rem;
}

.program-content p {
    color: rgb(255, 255, 255);
}

.speaker {
    padding: 10px;
    margin-top: 2rem;
}

.blue-bg {
    background-color: #0081a0;
}

.mt-5-cus {
    margin-top: 5rem;
}

.speaker ul li {
    color: white;
}

.text-yellow {
    color: #ffce00;
}

.credit-card {
    background-color: #ffce00;
    color: black;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}


.temp-img {
    width: 420px;
}

.program-container {
    text-align: center;
}

.prog-apollo-logo img {
    width: 120px;
    margin-bottom: 1rem;
}

.prog-con-logo img {
    width: 160px;
}

.pr-grid-container {
    background: #e2e0ff;
    text-align: center;
    border-radius: 10px;
    padding: 3rem 0;
}

.pr-grid-container p {
    font-size: 18px;
    color: black;
}

.bottom-container-text {
    margin-top: 30px;
}

.bottom-container-text p {
    font-size: 18px;
    line-height: 1.5rem;
    font-weight: 500;
}

.purple-stripe-container {
    background-color: #423d89;
    padding: 3rem 0;
    margin-bottom: 2rem;
}
.purple-stripe-container h4{
    color: white;
    margin-bottom: 2rem;
}

.purple-stripe-container p{
    color: white;
}