:root{
    --confer-white-color: #fff;
    --confer-light-gray-color: #f5f5f5;
    --confer-light-white-blue-color: #F0F8FF;
    --confer-black-color: #000;
    --confer-primary-light-dark: #5d1969;
    --confer-primary-dark-color: #4b0059;
    --confer-primary-light-color-first: #c54fff;
}

body {
    color: #797979;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--confer-primary-dark-color);
    font-family: 'Poppins', sans-serif;

}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--confer-primary-dark-color);
    outline: none;
    text-decoration: none;
}

.btn {
    border-radius: 8px;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--confer-primary-light-color-first);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
    border-radius: 8px;
}

.back-to-top i {
    color: var(--confer-primary-dark-color);
    padding-top: 10px;
}

.back-to-top:hover {
    background: var(--confer-primary-dark-color);
}

.back-to-top:hover i {
    color: var(--confer-primary-light-color-first);
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}

.top-bar {
    position: relative;
    height: 35px;
    background: #3C0047;
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: var(--confer-primary-dark-color);
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 50px;
    position: relative;
    margin: auto 0px;
    top: 0;
    bottom: 0;
    transition: all 0.4s;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--confer-primary-light-color-first);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        width: -moz-available;          
        width: -webkit-fill-available;  
        width: fill-available;
        /*top: 45px;*/
        padding: 20px 30px;
        margin: 0px 30px;
        background: var(--confer-primary-dark-color) !important;
        z-index: 9;
        border-radius: 15px;
    }

    /* .navbar .navbar-collapse{
        padding: 10px 20px; 
    } */

    .navbar.nav-sticky {
        width: 100%;
        width: -moz-available;          
        width: -webkit-fill-available;  
        width: fill-available;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        padding: 10px 60px;
        background: var(--confer-primary-dark-color) !important;
    }

    .navbar.nav-sticky .navbar-brand img{
        max-height: 40px;
        position: relative;
        transition: all 0.4s;
    }

    .page .navbar {
        background: var(--confer-primary-dark-color) !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: var(--confer-primary-dark-color) !important;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: var(--confer-primary-dark-color);
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    color: var(--confer-black-color) !important;
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    z-index: 2;
}

.carousel .carousel-text h1 {
    color: var(--confer-black-color) !important;        
    text-align: center;
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
	font-weight: 400;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    background: var(--confer-primary-dark-color);
    border: 2px solid var(--confer-primary-dark-color);
    color: var(--confer-white-color);
    border-radius: 15px;
    transition: .3s;
}

.carousel .carousel-text .btn i {
    margin-right: 5px;
}

.carousel .carousel-text .btn:hover {
    color: var(--confer-primary-dark-color);
    background: var(--confer-white-color);
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 122px;
    right: 2px;
    bottom: 2px;
    display: flex;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--confer-primary-light-color-first);
    background: var(--confer-primary-dark-color);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--confer-primary-light-color-first);
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }

    .carousel .carousel-text h1 {
        font-size: 35px;
    }

    .carousel .carousel-text p {
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }

    .carousel .carousel-text h1 {
        font-size: 30px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
}

.section-header h2 {
    margin: 0 0 0 40px;
    position: relative;
    font-size: 45px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.1) 3%) 30;
}

.section-header h2:hover::after {
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.05) 3%) 30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}

.fact {
    background: #f7f7f7 !important;
    position: relative;
    width: 100%;
    padding: 15px;
}

.fact .factitem1 img{
    height: 120px;
}

@media (max-width: 500px) {
    .fact .factitem1 img{
        height: 220px;
    }
}

.fact-img-box {
    display: flex; 
    justify-content: center;
}

.fact-img-box .factitem {
    padding: 0 70px;
}

@media (max-width: 500px) {
    .fact-img-box .factitem {
        padding: 0px;
    }
    
    .fact-img-box .factitem img{
        height: 100px !important;
    }
}

.fact-img-box .factitem img{
    height: 100px !important;
}

@media (max-width: 500px) {
    .fact .factitem1 img{
        height: 220px;
    }
}



.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
    border-radius: 10px;
}

.fact .fact-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.fact .fact-item img {
    max-height: 50px;
    margin-bottom: 15px;
}

.fact .fact-item h2 {
    font-size: 1rem;
    font-weight: 400;
}

.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    content: '';
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--confer-primary-dark-color);
    border: 2px solid var(--confer-primary-dark-color);
    border-radius: 0;
    background: none;
    transition: .3s;
    border-radius: 10px;
}

.about .about-text a.btn:hover {
    color: var(--confer-white-color);
    background: var(--confer-primary-dark-color);
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s;
}

.service .service-item:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
}

.service .service-item h3 {
    color: var(--confer-primary-dark-color);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 400;
}

.service .service-item p {
    margin-bottom: 10px;
    font-size: 16px;
}

.service .service-item a {
    position: relative;
    font-size: 16px;
    color: var(--confer-primary-dark-color);
    transition: .3s;
}

.service .service-item a::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: var(--confer-primary-light-color-first);
}

.service .service-item:hover a.btn {
    color: var(--confer-primary-dark-color);
    background: #1d2434;
    border-color: #1d2434;
}

.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature .feature-img::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.feature .feature-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 30px 30px 30px;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 28px;
    color: var(--confer-primary-light-dark);
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: var(--confer-primary-light-dark);
    font-size: 2rem;
    font-weight: 300;
}

.feature .counters h2::after {
    position: absolute;
    content: '+';
    top: -15px;
    right: -15px;
}

.feature .counters p {
    color: var(--confer-primary-dark-color);
    font-size: 1rem;
    margin: 0;
}

.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
    border-radius: 10px;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    height: 96px;
    bottom: -46px;
    left: 15px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(256, 256, 256, .9);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
    overflow: hidden;
    border-radius: 7px;
}

.team .team-text h2 {
    color: var(--confer-primary-dark-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--confer-primary-dark-color);
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: var(--confer-primary-dark-color);
    border: 2px solid var(--confer-primary-dark-color);
    transition: .3s;
    border-radius: 5px;
}

.team .team-social a:hover {
    color: var(--confer-primary-light-color-first);
    border-color: var(--confer-primary-light-color-first);
}

.team .team-item:hover .team-text {
    height: 160px;
}

.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    position: relative;
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}

.testimonial .testimonial-item p {
    margin-bottom: 15px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: var(--confer-primary-dark-color);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 3px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--confer-primary-light-color-first);
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--confer-primary-light-dark);
    font-size: 25px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: var(--confer-primary-dark-color);
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: '';
    width: 80px;
    height: 3px;
    top: 11px;
    background: var(--confer-primary-light-dark);
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
    background: var(--confer-primary-dark-color);
}

.testimonial .owl-nav .owl-next:hover::after {
    background: var(--confer-primary-dark-color);
}

.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
    border-radius: 15px;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    border-radius: 10px;
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: var(--confer-primary-light-dark);
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--confer-primary-light-dark);
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: var(--confer-primary-dark-color);
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: var(--confer-primary-light-color-first);
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--confer-primary-light-dark);
    font-size: 25px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: var(--confer-primary-dark-color);
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: '';
    width: 80px;
    height: 3px;
    top: 11px;
    background: var(--confer-primary-light-dark);
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: var(--confer-primary-dark-color);
}

.blog .owl-nav .owl-next:hover::after {
    background: var(--confer-primary-dark-color);
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: var(--confer-primary-dark-color);
    border-radius: 0;
    border-color: var(--confer-primary-dark-color);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: var(--confer-primary-light-color-first);
    background: var(--confer-primary-dark-color);
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
    border-radius: 10px;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.contact .contact-icon i {
    font-size: 18px;
    color: var(--confer-primary-dark-color);
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--confer-primary-dark-color);
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
    border-radius: 10px;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--confer-primary-dark-color);
    background: none;
    border: 2px solid var(--confer-primary-dark-color);
    border-radius: 0;
    transition: .3s;
    border-radius: 8px;
}

.contact .contact-form .btn:hover {
    color: var(--confer-white-color);
    background: var(--confer-primary-dark-color);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}

.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: var(--confer-primary-dark-color);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: '';
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--confer-primary-light-color-first);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: var(--confer-primary-light-color-first);
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: var(--confer-primary-dark-color);
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 15px;
    margin: 0px 5px;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--confer-primary-dark-color);
    background: none;
    border-radius: 0;
    border: 2px solid var(--confer-primary-dark-color);
    transition: .3s;
    border-radius: 10px;
}

.footer .footer-newsletter .btn:hover {
    color: var(--confer-white-color);
    background: var(--confer-primary-dark-color);
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: var(--confer-primary-light-color-first);
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


.job {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.job .section-header {
    margin-bottom: 75px;
}

.job .job-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.job .job-item {
    position: relative;
    margin: 0 15px;
}

.job.job-page .job-item {
    margin: -30px 0 0 0;
}

.job .job-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.job .job-img img {
    width: 100%;
    border-radius: 15px;
}

.job .job-Department{
    font-size: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.job .job-Department i{
    font-size: 1.35rem;
}

.job .job-content {
    background: #f8f8f8 !important;
    position: relative;
    /* width: calc(100% - 60px); */  
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .30);
    border-radius: 10px;
    z-index: 2;
}

.job .job-content h2.job-title {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.job .job-meta {
    position: relative;
    margin-bottom: 15px;
}

.job .job-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.job .job-meta i {
    color: var(--confer-primary-light-dark);
    margin: 0 2px 0 10px;
}

.job .job-meta i:first-child {
    margin-left: 0;
}

.job .job-text {
    position: relative;
}

.job .job-text p {
    margin-bottom: 10px;
}

.job .job-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--confer-primary-light-dark);
    transition: .3s;
}

.job .job-item a.btn:hover {
    color: var(--confer-primary-dark-color);
}

.job .job-item a.btn::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: var(--confer-primary-light-color-first);
}

.jobfilter .jobfilter-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    width: 100%;
}

.jobfilter .jobfilter-form select {
    padding: 5px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    width: 100%;
}

.jobfilter .jobfilter-form .btn {
    padding: 7px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--confer-primary-dark-color);
    background: none;
    border: 2px solid var(--confer-primary-dark-color);
    border-radius: 0;
    transition: .3s;
    border-radius: 8px;
}

.jobfilter .jobfilter-form .btn:hover {
    color: var(--confer-white-color);
    background: var(--confer-primary-dark-color);
}

.jobfilter .jobfilter-btn-box {
    width: 100%;
    text-align: center;
}

/* Accordion  */
.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #711186;
  }
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #4b0059;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: #711186;
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: #711186;
    border: 1px solid #711186;
  }
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  .accordion button[aria-expanded=true] {
    color: #711186;
  }
  .accordion button[aria-expanded=true] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }
  
  .accordion .accordion-content .btn {
      position: relative;
      margin-top: 15px;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--confer-primary-dark-color);
      border: 2px solid var(--confer-primary-dark-color);
      border-radius: 0;
      background: none;
      transition: .3s;
      border-radius: 10px;
  }
  
  .accordion .accordion-content .btn:hover {
      color: var(--confer-white-color);
      background: var(--confer-primary-dark-color);
  }
  
/*Job Page*/
.job-main-container .job-content i.far:hover{
	cursor: pointer !important;
	color: #000;
}

.job-main-container .tooltip {
	position: absolute;
	background-color: #333;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	display: none; /* Initially hidden */
	z-index: 1;
	top: 0px;
	left: 90%;
}

.job-main-container .tooltip.show {
	display: block; /* Show the tooltip */
}

.job-main-container .cmdLink-jobfilter{
	text-decoration: none !important;
}

.job-main-container .cmdLink-jobfilter:hover{
	text-decoration: none !important;
	color: #fff !important;
}

.job-main-container .pagination {
	margin-bottom: 0;
}

.job-main-container .pagination .page-link {
	margin-top: -30px;
	color: var(--confer-primary-dark-color);
	border-radius: 0;
	border-color: var(--confer-primary-dark-color);
}

.job-main-container .pagination .page-link:hover,
.job-main-container .pagination .page-item.active .page-link {
	color: var(--confer-white-color);
	background: var(--confer-primary-dark-color);
}

.job-main-container .pagination .disabled .page-link {
	color: #999999;
}


/* Mark input boxes that gets an error on validation: */
/* Style the form */
.application_form #regForm {
    background-color: #ffffff;
    padding: 20px;
    width: 100%;
    min-width: 300px;
}

/* Style the input fields */
.application_form .application-form-tabs input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    width: 100%;
}

.application_form .application-form-tabs select {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    width: 100%;
}

.application_form .application-form-tabs textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.application_form .application-form-tabs .tab-heading{
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--confer-primary-dark-color);
    font-weight: bold;
}

.application_form .application-form-tabs .row .input-box-heading{
    margin: 10px 0;
    font-weight: bold;
    font-size: 1rem;
}

.application_form .application-form-tabs .row .input-box{
    margin-bottom: 10px;
}

/* Hide all steps by default: */
.application_form .tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.application_form .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the steps that are finished and valid: */
.application_form .step.finish {
    background-color: var(--confer-primary-dark-color);
}

.application-form-buttons .btn {
    padding: 7px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--confer-primary-dark-color);
    background: none;
    border: 2px solid var(--confer-primary-dark-color);
    border-radius: 0;
    transition: .3s;
    border-radius: 8px;
    min-width: 100px;
}

.application-form-buttons .btn:hover {
    color: var(--confer-white-color);
    background: var(--confer-primary-dark-color);   
}

.file-upload {
    display: block;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}
.file-upload .file-select {
    display: block;
    border: 2px solid #dce4ec;
    color: var(--confer-primary-dark-color);
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}
.file-upload .file-select .file-select-button {
    background: #dce4ec;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}
.file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}
.file-upload .file-select:hover {
    border-color: var(--confer-primary-dark-color);
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.file-upload .file-select:hover .file-select-button {
    background: var(--confer-primary-dark-color);
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.file-upload.active .file-select {
    border-color: var(--confer-primary-dark-color);
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.file-upload.active .file-select .file-select-button {
    background: var(--confer-primary-dark-color);
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.file-upload .file-select input[type="file"] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}
.file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}
.file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #dce4ec;
    color: var(--confer-primary-dark-color);
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}
.file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}
.file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}