/********** Template CSS **********/
* { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

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

.fw-semi-bold {
    font-weight: 700 !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-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}
.btn-primary { background:#3ba1da !important; border:1px solid #3ba1da !important; }
.btn-primary:hover { background:#44b0ec !important; border:1px solid #44b0ec !important; }
.btn.btn-primary,
.btn.btn-secondary { 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;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-brand h1 { font-size:18px !important; margin-top:4px; text-align:center !important; }
.navbar-brand h1 span { font-size:16px !important; color:#0fa7b5; }
.navbar-brand img { width:90px; height:47px; margin-right:10px !important; }
.navbar-brand img::after { content:'' !important; display:block !important; clear:both !important; }
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

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

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

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

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
		min-width:200px !important;
		right:0px !important;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
.bgcarousel { background: rgba(24, 29, 56, .4); }
.owl-prev:hover, .owl-next:hover { background:#3ba1da !important; }
@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-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

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

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

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


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    /*margin-top: -10px;*/
	transform: scale(1.1);
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

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


/*** 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-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

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

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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 {
    letter-spacing: 1px;
    box-shadow: none;
}

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

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.parallaxnews { background: url("/web/img/img_parallax.jpg") fixed center no-repeat; min-height: 300px; background-size: stretch; z-index: 5; }
.user-avatar-md { height: 32px; width: 32px; border-radius: 50% !important; background: #EEE; border: 1px solid #FFF !important; }
.user-avatar-xl { height: 90px; width: 90px; }
.user-avatar-xxl { height: 150px; width: 150px; }
.course-logo-xxl { height: 167px; width: 250px; }
#imgInfo { border:5px dashed #999; position:relative; }
#imgInfo.ddrophover { border:5px solid #007bff; }
#imgInfo.dropped { border:5px solid #444; }
#imgInfo #afoto { cursor: pointer; position: absolute; opacity: 0; top: 0; right: 0; bottom: 0; left: 0; }
.cr-boundary { width:100% !important; height:200px !important; }
.table { margin:20px auto !important; clear:both; }
.table-primary th { background:#3ba1da !important; color:#FFF !important; border:1px solid #CCC !important; }
.table-primary td { background:#FFFFFF !important; color:#000 !important; border:1px solid #CCC !important; }
.table-primar th { background:#FFFFFF !important; font-size: 0.85rem; font-weight:normal !important; opacity: .65; text-align:center; padding:5px; color:#005db0 !important; border:1px solid #EEE !important; }
.table-primar td { background:#FFFFFF !important; color:#52565b !important; padding:8px; border:1px solid #EEE !important; }
.dataTables_filter { margin-bottom:20px; }
.form-floating select.form-control { background-color:#FFFFFF !important; }
.form-floating > label { color: #005db0; }
.list-group { border-radius:5px !important; }
.text-primar { color: #7fadd6 !important; }
.bg-primary, .list-group-item.active { background:#3ba1da !important; border:1px solid #3ba1da !important; }
.bg-lightx { background:rgba(247, 247, 247, .8) !important; border:1px solid #f7f7f7 !important; }
.bg-light { background:#f7f7f7 !important; border:1px solid #f7f7f7 !important; }
.bg-light2 { background:#f0fbfc !important; border:1px solid #dee2e6 !important; }
.bg-light3 { background:#f7f7f7 !important; border:1px solid #dee2e6 !important; }
.bg-light4 { border:1px solid #dee2e6 !important; }
.bg1 { background:#eeeeee !important; }
.bg2 { background:#f7f7f7 !important; }
.list-group-item.active { font-weight:bold; }
.list-group-item.active .badge { color:#000000 !important; }
.h150 { height:150px !important; }
.msgusus:hover { background:#DDDDDD !important; }
.breadcrumb a, .breadcrumb-item { color:#FFFFFF !important; }
.breadcrumb a:hover { color:#c5f9fe !important; }
.nav-pills .nav-item { margin:2px; }
.nav-pills .nav-link { background:#f0f0f0 !important; border:1px solid #f0f0f0 !important; }
.nav-pills .nav-link:hover { border:1px solid #cccccc !important; }
.nav-pills .nav-link.active { background:#59b3e5 !important; }
.accordion .form-check-label { font-weight:normal !important; float:left !important; font-size:12px !important; margin:12px 70px 0px 0px !important; }
.furu .card:nth-of-type(odd) { background:#ebf7fe; }
.furu .card:nth-of-type(even) { background:#f5fbff; }
.evalx .dropdown-item:hover { opacity:.6 !important; transition:.5s; }
.accordion-button { background:#3ba1da !important; color:#DDD !important; }
.accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ddd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.accordion-button:not(.collapsed) { color:#FFF !important; font-weight:bold; }
.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
	transform: rotate(-180deg);
}
.bold { font-weight:bold !important; }
/* selectpicker */
.form-group { position:relative; }
.form-group > .bootstrap-select { width:100% !important; height: calc(3.5rem + 2px); padding: 0px; }
.bootstrap-select > button.btn.dropdown-toggle.btn-light { display: block; width: 100%; padding: .375rem 2.25rem .375rem .75rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #52565b; background-color: #fff !important; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 16px 12px; border: 1px solid #ced4da; border-radius: 0px; appearance: none; }
.dropdown-toggle::after { content:none !important; }
.form-group > label, .labol { font-size: 0.85rem; padding:0; margin: 0; color: #005db0; pointer-events: none; border: 1px solid transparent; transition: opacity 0.1s ease-in-out,transform 0.1s ease-in-out; opacity: .65; }
.labol { padding:3px 8px !important; }
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark { color:#008000 !important; }
/* selectpicker */
textarea { -webkit-touch-callout: all !important; -webkit-user-select: text !important; -khtml-user-select: text !important; -moz-user-select: text !important; -ms-user-select: text !important; user-select: text !important; }
.tag, .tagon, .tagof, .tagox { text-align:center; font-weight:bold; margin:2px; }
/* tags
.tag, .tagon, .tagof, .tagox { 
	border:1px solid #666;  background:#eee; color:#1d809f !important; 
	padding:4px 12px; font-size:13px; border-radius:6px; position:inline-block; margin-right:4px; 
	}
.tagon, .tagof, .tagox { cursor:pointer; } */