*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
    box-shadow: none;
}
:root {
    --uni_color_primary: #0e3c58 !important;
    --uni_color_secondary: #0077BC !important;
    --uni_color_tertiary: #0e3c58 !important;
    --uni_color_quaternary: #081d2a !important;
    --qs_light_blue: #0e3c58 !important;
    --bg_black: #000;
    --bg_white: #fff;
    --bg_light_blue: #f3f7fd;
    --bg_light_gray: #fafafa;
    --bg_dark_blue: #111d30;
    --white: #fff;
    --black: #000;
    --gray_light: #666;
    --gray_dark: #232323;
    --border-gray: #e7e7e7;
    --border-white: #ffffff;
    --font-primary: 'Manrope', sans-serif;
}
body{
    font-family: var(--font-primary);
    font-size: 15px;
    overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
    .container {
        max-width: 98%;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 90%;
    }
}
@media screen and (max-width: 576px) {
    .container {
        max-width: 90%;
    }
}
a{
    text-decoration: none;
    color: var(--uni_color_primary);
}
a:hover, a:focus{
    color: var(--uni_color_primary);
}
.hidden{
    display: none;
}
ul {
    margin: 0;
    list-style-type: none;
}
p {
    color: var(--gray_light);
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;
    line-height: 24px;
}
section{
    padding: 50px 0;
}
.pall-0{
    padding: 0;
}
.pb-0{
    padding-bottom: 0;
}
.pt-0{
    padding-top: 0;
}
.mt-20{
    margin-top: 20px;
}
.mt-40{
    margin-top: 40px;
}
.text-right {
    text-align: right;
}
.container {
    position: relative;
    width: 1140px;
    margin: 0 auto;
    max-width: 95%;
}
.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}
.container.flexed{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333% 
}
.col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667% 
}
.col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25% 
}
.col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667% 
}
.col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50% 
}
.col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333% 
}
.col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75% 
}
.col-lg-10 {
    -ms-flex: 0 0 63.333333%;
    flex: 0 0 63.333333%;
    max-width: 63.333333% 
}
.col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667% 
}
.col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100% 
}

@media (min-width: 992px) {
    .offset-lg-1 {
        margin-left: 17.333333%;
    }
}
h1{
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    text-transform: inherit;
    margin-bottom: 15px;
}
h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    color: var(--gray_dark);
}
h3{
    margin-bottom: 15px;
}
h4{
    margin-bottom: 15px;
}
.transitions, .btn-qs-theme:after, .add-to-cart.btn-primary, .course-details-area span.gray-pill, .cta_link_style, .form-box button:after {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.buttonsWrapper {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.buttonsWrapper a+a{
    margin-left: 15px;
}
.btn-qs-theme {
    background: var(--uni_color_primary);
    background: linear-gradient(0deg, var(--uni_color_quaternary) 0%, var(--uni_color_primary) 100%) !important;
    border: solid 2px var(--uni_color_primary);
    border-radius: 0;
    padding: 15px 45px !important;
    font-size: 14px;
    color: #fff;
    position: relative;
    box-shadow: none;
    font-weight: 800;
    
}

.btn-qs-theme:hover, .btn-qs-theme:focus{
    color: #fff;
}
.btn-qs-theme span,.btn-qs-theme:before {
    position: relative;
    z-index: 10 
}
.btn-qs-theme:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, var(--uni_color_primary) 0%, var(--uni_color_primary) 100%);
    opacity: 0;
    z-index: 1 
}
.btn-qs-theme:hover:after,.btn-qs-theme:active:after,.btn-qs-theme:focus:after {
    opacity: 1 
}
.btn-white {
    background: #fff;
    border: solid 2px #1d2124;
    border-radius: 0;
    padding: 15px 45px;
    font-size: 14px;
    color: #1d2124;
    position: relative;
    box-shadow: none;
    font-weight: 800;
    min-width: 220px;
    text-align: center;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.btn-white:hover, .btn-white:hover{
    background: #eef1f3;
}
.btn-green{
    background: #01602d;
    border: solid 2px #01602d;
    border-radius: 0;
    padding: 15px 45px;
    font-size: 14px;
    color: #fff;
    position: relative;
    box-shadow: none;
    font-weight: 800;
    min-width: 220px;
    text-align: center;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.btn-green:hover, .btn-green:focus {
    background: #04783a;
    border-color:#04783a;
    color: #fff;
}
button {
    font-family: var(--font-primary);
}
.btn-qs-theme.green, .btn-qs-theme.green:hover, .btn-qs-theme.green:focus {
    background: #01602d !important;
    border-color: #01602d !important;
}
.custom_loader_QS {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    text-align: center;
    background: #fff;
}
.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #0e3c58;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.loader:after {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: red;
    content: "";
}
#silc-btn{
    opacity: 0;
    pointer-events: none;
}

.qs-icon[class*=qs-icon-] span:before {
    font-family: 'icomoon';
    position: absolute;
    left: -35px;
    border: dashed 1px rgba(255,255,255,.8);
    border-radius: 100%;
    width: 24px;
    height: 24px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qs-icon.qs-icon-download span:before {
    top: -3px;
    content: "\e907";
}

@media (max-width: 1200px) {
    .container {
        width: 95%;
        overflow: hidden;
    }
    .container-full {
        max-width:100%;
    }
}
@media (max-width: 1024px) {
    .col-md-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}
@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
}
@media (max-width: 820px) {
    br{
        display: none;
    }
    .col-sm-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 1024px) {
    .btn-qs-theme{
        padding: 15px 25px !important;
    }
}

/* Top Bar */
.top-bar-area {
    display: block;
    padding: 10px 0 0;
    background: var(--uni_color_primary);
    color: #fff !important;
}

.top-bar-area a {
    color: #fff;
}
.top-bar-area .left-info {
    text-align: left;
}
/* .top-bar-area a:hover,
.top-bar-area a:focus {
    color: var(--uni_color_primary)  !important;
}

.top-bar-area a:focus {
    box-shadow: 0px 0px 5px 1px #fff !important;
} */


.top-bar-area .list li i{
    color: var(--uni_color_primary)  !important;
}
.top-bar-area li i {
    margin-right: 7px;
}
.top-bar-area .list li, .top-bar-area  a {
    font-weight: 600  !important;;
}

.top-bar-area .right-info .button a {
    /* color: var(--uni_color_primary)  !important; */
    color: #fff !important;
}

/* .top-bar-area .right-info .button a:hover,
.top-bar-area .right-info .button a:focus {
    color: var(--uni_color_primary) !important;
} */

@media screen and (max-width: 768px) {

    .top-bar-area .left-info{
        display: none;
    }

    .top-bar-area .right-info {
        margin: 0 auto;
    }

}
.top-bar-area .item-flex {
    display: flex;
    align-items: center;
}

.top-bar-area .right-info .item-flex {
    justify-content: flex-end
}

.top-bar-area .right-info .button a:first-child,.top-bar-area .right-info .button a:hover {
    color: #fff
}

.top-bar-area .list li i {
    color: #fff !important;
    transform: rotate(270deg);
    display: inline-block;
    font-size: 18px;
    top: 2px;
    position: relative;
}

.top-bar-area .right-info .button a i {
    margin-right: 5px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

/* header area css start */

header {
    border-top: solid 10px var(--uni_color_primary);
}
header.fixed_header {
    left: 0;
    right: 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    background: #fff;
}
header .navbar-brand {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    margin-right: 0;
}

header .navbar-brand img {
    object-fit: contain;
}

/* .header-contact-info{
    display: block;
    text-transform: uppercase;
    
} */
.header-contact-info p {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}
.header-contact-info a{
    font-weight: 700;
    color: var(--black);
}
.header-contact-info a:hover, .header-contact-info a:focus{
    text-decoration: underline;
}
@media(max-width: 768px) {
    header .container.flexed {
        justify-content: center;
    }
    .header-contact-info{
        display: none !important;
    }
    header .btn-qs-theme{
        display: none;
    }
}

header .navbar-collapse{
    display: block;
}
header .btn-qs-theme{
    display: none !important;

}

.header-contact-info {
    display: none !important;
}
header .navbar-collapse>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
 
header .navbar-collapse>ul>li>a.dropdown-toggle:after {
    content: "\e918";
    font-family: "icomoon";
    margin-left: 5px;
    margin-top: 2px;
    border: none;
    font-weight: 900;
    transition: all .35s ease-in-out;
    display: inline-block;
}
 
header .navbar-collapse>ul>li>a:hover.dropdown-toggle:after {
    transform: rotate(180deg);
}

header .navbar-collapse ul li {
    position: relative;
    margin: 0;
}

header .navbar-collapse ul li a:hover,
header .navbar-collapse ul li a:focus{
    color: var(--qs_light_blue);
}
 
header .navbar-collapse>ul>li>a {
    font-size: 13px;
    color: #000;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: .06em;
    padding: 32px 9px;
    text-transform: uppercase;
    display: inline-block;
    /* background-color: #fff;
    position: relative;
    z-index: 100; */
}
header .navbar-collapse>ul>li:last-child>a {
    text-transform: capitalize !important;
}


.hidden {
    display: none;
    background-color: #fff;
    color: #000;
}
header .navbar-toggle {
    display: none;
}

@media screen and (max-width: 1024px) {

    header {
        display: flex; 
        justify-content: center; 
    }
    header .navbar-toggle i {
        font-size: 27px;
        color: var(--qs_dark_blue);
    }

    header .navbar-brand {
        flex: 1;
        max-width: 250px;
        margin: 0 auto;
        display: flex; 
        justify-content: center; 
        align-items: center;
        width: 100%; 
        text-align: center; 
    }
   

    header .navbar-collapse {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 138px;
        background-color: #fff;
        width: 100%;
        padding: 0 20px;
        z-index: 100;
    }

    header .navbar-collapse>ul {
        flex-direction: column;
        align-items: flex-start;
        display: flex;
    }

    header .navbar-collapse li.dropdown ul.dropdown-menu {
        position: relative;
        width: 100%;
        box-shadow: none;
        margin-top: 0;
        left: 10px;
    }

    header .navbar-collapse li.dropdown ul.dropdown-menu .dropdown> ul.dropdown-menu {
        left: 20px;
        width: calc(100% - 20px);
    }

    header .navbar-toggle {
        position: absolute;
        display: block;
        margin-right: 0;
        background-color: transparent;
        border: 0;
        width: 31px;
        height: 38px;
        align-items: center;
        justify-content: center;
        left: 15px;
    }

    header .navbar-toggle.active .icon-bars:before{
        content: "\e91b";
    }

    header .navbar-toggle.active i {
        font-size: 24px;
    }

    header .navbar-collapse ul li {
        width: 100%;
    }

    header .navbar-collapse>ul>li>a {
        border-bottom: solid 1px #e0e0e0;
        width: 100%;
        padding: 10px 10px;
        position: relative;
        z-index: 10;
    }

    
    header .navbar-collapse>ul>li>a.active {
        color: var(--qs_light_blue);
    }

    header .navbar-collapse>ul>li>a.active:after {
        transform:rotate(180deg);
    }

    header .navbar-collapse>ul>li>a:hover.dropdown-toggle:after{
        transform: none;
    }

    header .navbar-collapse li.dropdown ul.dropdown-menu li a{
        border-bottom: solid 1px #e0e0e0;
        z-index: 10;
        position: relative;
    }

    header .navbar-collapse li.dropdown ul.dropdown-menu li a.active {
        color: var(--qs_light_blue);
    }

    header .navbar-collapse li.dropdown ul.dropdown-menu li a.active:before {
        transform:rotate(180deg);
    }

    header .navbar-collapse>ul>li.dropdown:nth-last-child(2) {
        margin-left: 0;
    }

    header .navbar-collapse>ul>li.dropdown:nth-last-child(2):before{
        display: none;
    }    
    header .navbar-collapse>ul>li>a .hidden {
        display: inline-block;
        font-family: var(--font-primary);
    }

    header .navbar-collapse>ul>li.dropdown.icon-based a i {
        font-size: 20px !important;
    }

    header .custom_nav li a {
        border: 0 !important;
    }

}

@media screen and (max-width: 768px) {

    nav.navbar.bootsnav ul.nav li.dropdown>ul.dropdown-menu.custom_nav li>a {
        border-bottom: 0 !important;
    }

}

header .navbar-collapse>ul>li.dropdown.icon-based a i {
    font-size: 22px;
}

header .navbar-collapse>ul>li.dropdown.icon-based a i.icon-phone {
    font-size: 23px;
    display: block;
    transform: rotate(271deg);
}

header .navbar-collapse>ul>li.dropdown.icon-based a:after {
    display: none;
}

header .navbar-collapse>ul>li.dropdown:nth-last-child(2){
    margin-left: 30px;
}


header .navbar-collapse ul.dropdown-menu {
    display: none;
    margin-top: -20px;
    -webkit-transition: margin 0.5s ease-in-out;
    -moz-transition: margin 0.5s ease-in-out;
    -ms-transition: margin 0.5s ease-in-out;
    -o-transition: margin 0.5s ease-in-out;
    transition: margin 0.5s ease-in-out;
}

header .navbar-collapse ul.dropdown-menu.active{
    display: block !important;
    margin-top: 0px !important;
}

header .navbar-collapse li.dropdown ul.dropdown-menu {
    background: #fff none repeat scroll 0 0;
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 5px 50px 0 rgba(0,0,0,.15);
    padding: 0;
    width: 250px;
    position: absolute;
    transform: none !important;
    top: inherit !important;
    margin-top: 0;
    z-index: 10;
}

@media screen and (max-width: 768px) {

    header .navbar-collapse li.dropdown ul.dropdown-menu {
        width: 100%;
        position: relative !important;
        background-color: transparent;
        float: none;
        border: none;
        padding: 0 0 0 15px !important;
        margin: 0 0 -1px !important;
        -moz-box-shadow: 0px 0px 0px;
        -webkit-box-shadow: 0px 0px 0px;
        -o-box-shadow: 0px 0px 0px;
        box-shadow: 0px 0px 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0;
    }

}
header .navbar-collapse li.dropdown ul.dropdown-menu li a {
    color: #333;
    display: block;
    font-size: 14px;
    margin-bottom: 0;
    padding: 10px 15px;
    text-align: left;
    text-transform: capitalize;
    width: 100%;
    font-weight: 700;
}
 
header .navbar-collapse li.dropdown ul.dropdown-menu li a:hover,
header .navbar-collapse li.dropdown ul.dropdown-menu li a:focus{
    color: var(--qs_light_blue);
}

header .navbar-collapse li.dropdown ul.dropdown-menu .dropdown>a.dropdown-toggle:before {
    content: "\e918";
    font-family: "icomoon";
    font-weight: 900;
    float: right;
    margin-top: 0;
}

 
header .navbar-collapse li.dropdown ul.dropdown-menu .dropdown> ul.dropdown-menu {
    left: 250px;
    top: 0 !important;
}

header .custom_nav {
    font-family: var(--font-primary);
    right: -100px;
}

header .custom_nav li {
    padding: 10px 15px;
    border-bottom: solid 1px #f5f5f5;
}
header .custom_nav li a {
    padding: 0 0 10px 0!important;
    border: 0;
}

header .custom_nav li > span {
    color: var(--qs_light_blue);
    font-size: 14px;
    font-weight: 800;
    margin-top: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: block;
}

header .custom_nav li:last-child{
    border: 0;
    padding-bottom: 0;
}
/* header area css end */


/* Hero section css start */

.heroBanner_area {
    position: relative;
    background-repeat: no-repeat;
    background-size: 70%;
    color: #fff;
    background-color: var( --bg_black);
    background-position: 0 -50px;
    z-index: 1;
    padding:125px 0;
}
.heroBanner_area:after {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: auto;
    left: 0;
    opacity: .7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.heroBanner_area .container{
    z-index: 10;
}
.heroBanner_area p {
    color: var(--white);
    font-size: 17px;
    line-height: 30px;
}
.heroBanner_area .courseDetails_area {
    margin-top: 30px;
    text-align: left;
}
.heroBanner_area .courseDetails_area .top-info ul li img{
    border-color: var(--white);
}
.form-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    height: 100%;
    align-items: center;
    padding: 20px 20px 20px 20px;
    box-shadow: 0 0 10px #cccccc;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
}
.form-box .error {
    color: red;
    font-size: 12px;
    text-align: left;
    display: block !important;
}
.form-box .hidden {
    display: none;
    background-color: #fff;
    color: #000;
}
.form-box h3 {
    font-size: 27px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}
.form-box .row {
    margin: 0;
}
.form-box .row .col-md-12 {
    flex: 0 0 100%;
}
.form-box .form-group {
    margin-bottom: 1rem;
}
.form-box label {
    display: none;
}
.form-box ::-ms-input-placeholder {
    color: var(--black);
}
.form-box ::placeholder {
    color: var(--black);
}
.form-box .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    font-weight: 400;
    line-height: 1.5;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 25px !important;
    color: #232323;
    background: #f9f9f9 !important;
    font-size: 16px;
    font-family: var(--font-primary);
    box-shadow: none;
    height: 50px;
}
.form-box button {
    width: 100%;
    background: var(--uni_color_primary);
    background: linear-gradient(0deg, var(--uni_color_quaternary) 0%, var(--uni_color_primary) 100%) !important;
    border: solid 2px var(--uni_color_primary);
    border-radius: 0;
    padding: 15px 45px;
    font-size: 14px;
    color: #fff;
    position: relative;
    box-shadow: none;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}
.form-box button:hover, .form-box button:focus{
    color: #fff;
}
.form-box button span, .form-box button:before {
    position: relative;
    z-index: 10 
}
.form-box button:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, var(--uni_color_primary) 0%, var(--uni_color_primary) 100%);
    opacity: 0;
    z-index: 1 
}
.form-box button:hover:after, .form-box button:active:after, .form-box button:focus:after {
    opacity: 1 
}
.form-box button.btn-white{
    background: #fff !important;
    border: solid 2px var(--uni_color_primary);
    border-radius: 0;
    padding: 15px 45px;
    font-size: 14px;
    color: var(--uni_color_primary);
    position: relative;
    box-shadow: none;
    font-weight: 800;
    min-width: 220px;
    text-align: center;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.form-box button.btn-white:after{
    display: none;
}
.form-box button.btn-white:hover, .form-box button.btn-white:hover{
    background-color: #eef1f3 !important;
    background-image: none !important;
}
.form-box .userAggrement {
    margin: 10px 0 10px 0;
}
.form-box .userAggrement p {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #525c65;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
    padding-left: 11px;
}
.form-box .signupCheck {
    display: flex;
    align-items: flex-start;
    padding-left: 11px;
}
.form-box .form-box form label {
    display: none;
}
.form-box .signupCheck input {
    padding: 0 !important;
    top: 2px;
    min-height: auto;
    margin-right: 0;
}
.form-box .userAggrement p {
    line-height: 18px;
}
.form-box .userAggrement a {
    text-decoration: underline;
    font-weight: 700;
}
.lead_form_wrapper h3.highlighted {
    padding: 10px 15px;
    text-align: center;
    margin-bottom: 0;
    background: #eee;
    color: #333;
    font-weight: 700;
    font-size: 21px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    z-index: 5;
    position: relative;
}
.stickySidebar {
    padding-left: 35px;
    position: relative;
    top: -885px;
    z-index: 9;
    margin-bottom: -200px;
}
.has_sticky_bar .stickySidebar .StickySidebarWrap {
    top: 175px;
}
.stickySidebar .StickySidebarWrap {
    top: 120px;
    width: 330px;
    box-sizing: border-box;
    position: absolute;
}
.stickySidebar .StickySidebarWrap.fixedForm{
    position: fixed;
    z-index: 1000;
}
.stickySidebar .StickySidebarWrap.active .course-preview .thumb, .stickySidebar .StickySidebarWrap.active .related-course {
    display: none;
}
.stickySidebar .StickySidebarWrap.active .buttonsWrapper {
    display: block;
    flex-direction: column;
    margin-top: 20px;
}
.stickySidebar .StickySidebarWrap .buttonsWrapper a:first-child {
    margin: 0 0 25px 0;
}
.stickySidebar .StickySidebarWrap .add-to-cart.btn-primary {
    border-color: #000 !important;
    color: #000;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px !important;
}
.stickySidebar .StickySidebarWrap .add-to-cart.btn-primary:hover, .stickySidebar .StickySidebarWrap .add-to-cart.btn-primary:active, .stickySidebar .StickySidebarWrap .add-to-cart.btn-primary:focus {
    background: #e9e9e9 !important;
}
.stickySidebar .StickySidebarWrap .qs-icon.qs-icon-calendar:before{
    left: 35px;
}
.stickySidebar .StickySidebarWrap .add-to-cart.btn-primary:before {
    right: 65px;
}
@media (max-width: 1366px) {
    .lead_form_wrapper h3.highlighted {
        min-height: 54px;
        font-size: 21px;
        line-height: 21px;
    }
    .form-box .form-control{
        height: 45px;
    }
    .form-box .form-group {
        margin-bottom: 0.7rem;
    }
}
@media (max-width: 1200px) {
    .stickySidebar .StickySidebarWrap.fixedForm {
        right: 2.5%;
        width: 320px;
    }
}
@media screen and (max-width: 1180px) {
    .stickySidebar .StickySidebarWrap {
        width: 270px;
    }
}
@media (max-width: 1024px) {
    .stickySidebar {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .stickySidebar .StickySidebarWrap.fixedForm {
        width: 300px;
    }
}
@media screen and (max-width: 1023px) {
    body .stickySidebar .StickySidebarWrap{
        width: auto;
        position: relative;
    }
    .stickySidebar .StickySidebarWrap.fixedForm {
        position: relative;
        top: 0;
    }
    body .stickySidebar .StickySidebarWrap {
        top: 0;
    }
    .stickySidebar {
        top: 0;
        margin: 0 0 105px 0;
        padding-left: 15px;
    }
    .stickySidebar .sidebar_fixed_right {
        top: 0;
        position: relative;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-width: 820px) {
    .stickySidebar {
        margin: 0 0 75px 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.heroSlides_area {
    width: 100%;
    padding: 0;
    height: 500px;
    background-color: #000;
}

@media(max-width: 768px) {
    .heroSlides_area {
        height: auto;
    }
}
.heroSlides_area a:focus{
    box-shadow: 0px 0px 5px 1px #fff !important;
}

.heroSlides_area .slide-items{
    width: 100%;
}
.heroSlides_area .item {
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 100px;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
    background-position: center center;
}
.heroSlides_area .item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}
.bg_top_center{
    background-position: top center !important;
}
.bg_center_center{
    background-position: center center !important;
}
.bg_bottom_center{
    background-position: bottom center !important;
}
.heroSlides_area .content {
    width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    color: #fff;
    margin-top: -5%;
}
.heroSlides_area .content p {
    color: #fff;
    font-size: 18px;
    line-height: 34px;
}
.heroSlides_area .content .hd {
    font-size: 60px;
    display: block;
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 500;
}
.heroSlides_area span.badge {
    display: inline-block;
    background: #026430;
    padding: 5px 40px;
    border-radius: 20px;
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-transform: uppercase;
}
.heroSlides_area .content .sub_hd {
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}
.heroSlides_area .content .btn-white {
    background: no-repeat;
    border-color: #fff;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
}
.heroSlides_area .content .btn-white:hover{
    background-color: #fff;
    color: #000;
}
.heroSlides_area .owl-theme .owl-nav [class*=owl-], .heroSlides_area .owl-theme .owl-nav [class*=owl-]:hover {
    position: absolute;
    left: 20px;
    top: 50%;
    background: none;
    border: 0;
}
.heroSlides_area .owl-theme .owl-nav .owl-next {
    right: 20px;
    left: inherit;
}
.heroSlides_area .owl-theme .owl-nav [class*=owl-] i:before {
    content: "\e913";
    font-weight: 600;
    font-family: 'icomoon' !important;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    font-style: normal;
}
.heroSlides_area .owl-theme .owl-nav .owl-prev i{
    transform: rotate(180deg);
    display: block;
}

/*end Hero section css */


/*Fixed Default Features css Area start */

.default-features-area.default-design .item-box {
    padding-left: 0;
    margin: 0 auto; 
    width: fit-content; 
}

.default-features-area.default-design .item-box .row {
    gap: 25px;
}

.default-features-area.default-design .item-box .single-item {
    flex: 1;
}

@media only screen and (max-width: 1024px) {

    .default-features-area.default-design .item-box {
        padding: 0 20px;
    }

/* .default-features-area.default-design .item-box .single-item .item {
    width: 165px !important;
} */

}
@media only screen and (max-width: 991px) {
    .default-features-area.default-design {
        padding-top: 180px; 

    }

    .default-features-area .item-box .single-item {
        flex: 0 0 48% !important;
    }

    .default-features-area.default-design .item-box .single-item .item h4{
        padding: 0 20px !important;
    }
  
}

@media only screen and (max-width: 768px) {
    .default-features-area.default-design {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 576px) {
    .default-features-area.default-design {
        padding-top: 50px;
    }
    .default-features-area.default-design .item-box .row {
        gap: 0;
    }

    .default-features-area .item-box .single-item {
        flex: 0 0 100% !important;
    }
}

.default-features-area.default-design .item-box .single-item .item a {
    display: block;
    background: #fff !important;
    border-radius: 10px !important;
    padding-top: 75px;
    padding-bottom: 30px;
    box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.default-features-area.default-design .item-box .single-item .item h4 {
    color: #1d2124 !important;
    font-size: large;
    padding: 6px;
}


/* Styling for the icon in the item */
.default-features-area .item-box .item i {
    display: inline-block;
    font-size: 50px;
    color: var(--uni_color_primary);
    position: relative;
    margin-bottom: 25px;
}

/* Icon background styling */
.default-features-area .item-box .item i:after {
    position: absolute;
    left: -11px;
    top: -33px;
    content: "";
    height: 70px;
    width: 70px;
    background: var(--uni_color_primary);
    z-index: -1;
    opacity: .07;
    clip-path: polygon(45% 1.33975%, 46.5798% .60307%, 48.26352% .15192%, 50% 0%, 51.73648% .15192%, 53.4202% .60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    border-radius: 5px;
    z-index: 1;
}

/* Default design item adjustments */
.default-features-area.default-design .item-box .single-item .item {
    padding: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    margin-right: 30px;

}

@media (min-width: 1024px) {
    .default-features-area.default-design {
        position: relative;
        z-index: 1;
        margin-bottom: -120px;
        padding-bottom: 90px;
    }
}


@media only screen and (max-width: 991px) {
    .default-features-area.default-design .item-box .single-item .item {
        padding: 20px;
        height: 100%;
        width: 100% !important;
    }
}


/*Fixed Default Features css Area end */


/* About Area css start*/
.about-area {
    padding-top: 100px;
}


@media only screen and (max-width: 991px) { 
    .about-area {
        padding-top: 0px !important;
    }
    
}
.about-area .about-items .info {
    padding-right: 35px;
    position: relative;
    z-index: 1;
    padding-top: 150px;
}


.about-area .about-items .info h2{
font-size: 36px;
}

.about-area .about-items .info p{
    color: #666;
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400 !important;
}


.about-area .about-items .info:after {
    position: absolute;
    left: -75px;
    top: 125px;
    content: "";
    height: 150px;
    width: 150px;
    background-image: url(https://di3xp7dfi3cq.cloudfront.net/media/wysiwyg/marketing/up-homepage/dotted-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1
}

.about-area ul li {
    display: inline-block;
    margin-right: 50px;
    margin-top: 15px;
    border-right: 1px dashed #ddd;
    padding-right: 50px
}

@media only screen and (max-width: 576px) {

    .about-area ul{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .about-area ul li {
        border: none;
        padding: 0;
        margin: 0
    }
}
.about-area ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none
}

.about-area ul li .timer {
    display: inline-block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #232323;
    position: relative;
    z-index: 1
}



.about-area ul li .medium {
    display: block;
    color: #232323;
    font-weight: 600
}





@media (max-width: 1024px) {
    .about-area .fixed-bg {
        display:none
    }
}



@media only screen and (max-width: 991px) {
    .about-area .about-items .row {
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center; 
        width: 100%; 
        margin: 0 auto;
    }

    .about-area .about-items .col-lg-6 {
        max-width: 100%; 
        text-align: center; 
        /* margin-bottom: 20px; */
    }
    .about-area .about-items .info {
        padding-right: 35px;
        position: relative;
        z-index: 1;
        padding-top: 75px !important;
    }

    .about-area .about-items .info:after {
        left: 15px !important;
        top: -20px !important;
    }

    .about-area .about-items .buttonsWrapper {
        display: flex; /* Enable flexbox */
        justify-content: center; /* Center the button horizontally */
        align-items: center; /* Center the button vertically */
        height: 100%; /* Ensure the container takes up the full height, if necessary */
    }
    .about-area .about-items .buttonsWrapper .btn-qs-theme {
        text-align: center;
            width: 100% !important;
            flex: 0 0 100%;
            max-width: 100%
    }
    .about-area .about-items .info:after {
        left: 48px;
    }
    
}

.about-area .img_holder img {
    display: none; /* Hide all images by default */
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.about-area.elcamino .img_holder .elcamino,
.about-area.gatewaycc .img_holder .gatewaycc,
.about-area.estrellamountain .img_holder .estrellamountain,
.about-area.csn .img_holder .csn,
.about-area.lanecc .img_holder .lanecc,
.about-area.cei .img_holder .cei,
.about-area.arapahoe .img_holder .arapahoe,
.about-area.unm .img_holder .unm,
.about-area.isu .img_holder .isu,
.about-area.umt .img_holder .umt,
.about-area.sheltonstate .img_holder .sheltonstate,
.about-area.hawkeyecollege .img_holder .hawkeyecollege,
.about-area.saintpaul .img_holder .saintpaul,
.about-area.otcc .img_holder .otcc,
.about-area.southeast .img_holder .southeast,
.about-area.nwacc .img_holder .nwacc,
.about-area.nscc .img_holder .nscc,
.about-area.und .img_holder .und,
.about-area.elgin .img_holder .elgin,
.about-area.laurelridge .img_holder .laurelridge,
.about-area.qcc .img_holder .qcc,
.about-area.lorainccc .img_holder .lorainccc,
.about-area.fsw .img_holder .fsw,
.about-area.brookdalecc .img_holder .brookdalecc,
.about-area.nashuacc .img_holder .nashuacc,
.about-area.cwu .img_holder .cwu,
.about-area.kbcc .img_holder .kbcc,
.about-area.fresno .img_holder .fresno,
.about-area.ccp .img_holder .ccp,
.about-area.wku .img_holder .wku,
.about-area.uwp .img_holder .uwp,
.about-area.miracosta .img_holder .miracosta,
.about-area.loyalistcollege .img_holder .loyalistcollege,
.about-area.saultcollege .img_holder .saultcollege,
.about-area.humber .img_holder .humber,
.about-area.bridgevalley .img_holder .bridgevalley,
.about-area.hodges .img_holder .hodges,
.about-area.bellarmine .img_holder .bellarmine,
.about-area.lcc .img_holder .lcc,
.about-area.iavalley .img_holder .iavalley,
.about-area.baker .img_holder .baker,
.about-area.lacc .img_holder .lacc,
.about-area.sierra .img_holder .sierra,
.about-area.sjrstate .img_holder .sjrstate,
.about-area.scc .img_holder .scc,
.about-area.fdtc .img_holder .fdtc,
.about-area.nsu .img_holder .nsu{
    display: block;
}

.about-area.elcamino .img_holder .default,
.about-area.gatewaycc .img_holder .default,
.about-area.estrellamountain .img_holder .default,
.about-area.csn .img_holder .default,
.about-area.lanecc .img_holder .default,
.about-area.cei .img_holder .default,
.about-area.arapahoe .img_holder .default,
.about-area.unm .img_holder .default,
.about-area.isu .img_holder .default,
.about-area.umt .img_holder .default,
.about-area.sheltonstate .img_holder .default,
.about-area.hawkeyecollege .img_holder .default,
.about-area.saintpaul .img_holder .default,
.about-area.otcc .img_holder .default,
.about-area.southeast .img_holder .default,
.about-area.nwacc .img_holder .default,
.about-area.nscc .img_holder .default,
.about-area.und .img_holder .default,
.about-area.elgin .img_holder .default,
.about-area.laurelridge .img_holder .default,
.about-area.qcc .img_holder .default,
.about-area.lorainccc .img_holder .default,
.about-area.fsw .img_holder .default,
.about-area.brookdalecc .img_holder .default,
.about-area.nashuacc .img_holder .default,
.about-area.cwu .img_holder .default,
.about-area.kbcc .img_holder .default,
.about-area.fresno .img_holder .default,
.about-area.ccp .img_holder .default,
.about-area.wku .img_holder .default,
.about-area.uwp .img_holder .default,
.about-area.miracosta .img_holder .default,
.about-area.loyalistcollege .img_holder .default,
.about-area.saultcollege .img_holder .default,
.about-area.humber .img_holder .default,
.about-area.bridgevalley .img_holder .default,
.about-area.hodges .img_holder .default,
.about-area.bellarmine .img_holder .default,
.about-area.lcc .img_holder .default,
.about-area.iavalley .img_holder .default,
.about-area.baker .img_holder .default,
.about-area.lacc .img_holder .default,
.about-area.sierra .img_holder .default,
.about-area.sjrstate .img_holder .default,
.about-area.scc .img_holder .default,
.about-area.fdtc .img_holder .default,
.about-area.nsu .img_holder .default{
    display: none;
}



/* Default image displayed for other cases */
.about-area .img_holder .default {
    display: block;
}

/* For small screens, adjust the margin */
@media screen and (max-width: 768px) {
    .about-area .img_holder img {
        margin: 40px auto 50px auto;
    }
}

@media screen and (max-width: 576px) {
    .about-area ul li:first-child {
        margin-bottom: 30px !important;
    }
}


@media only screen and (max-width: 767px) {
    .default-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
/* General Reset */
img {
    border: none;
    outline: none;
    max-width: 100%;
}

/* Parent Element for Background */
.img_holder {
    position: relative; 
    padding: 40px;
    margin-bottom: -20px;
    overflow: visible; 
}

.about-area .img_holder {
    position: relative; 
}

.about-area .img_holder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; 
    background-color: var(--uni_color_primary); 
    z-index: -1; 
    border-radius: 0 0 5px 5px;
    pointer-events: none;
    transform: scaleX(1.35);
    transform-origin: left center;
}

/*about-area css Area wnd */


/* Categories Section */
.categories-area {
    background-color: #f3f7fd;
    padding: 50px 0;
}

.categories-area .heading h2 {
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 36px;
}

.categories-box .heading p {
    margin-bottom: 20px;
}

.category-items .item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-items .item h5 {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
}

.category-items .item p {
    font-size: 14px;
    margin: 10px 0;
}

.categories-area .categories-box .item h5 {
    min-height: 43px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 991px) {

    .categories-area {
        text-align: center;    
    }

    .categories-area .buttonsWrapper {
        display: flex; /* Enable flexbox */
        justify-content: center; /* Center the button horizontally */
        align-items: center; /* Center the button vertically */
    }


}

@media only screen  and (max-width: 767) {

    .categories-area {
        text-align: center;    
    }

    .categories-area .buttonsWrapper {
        display: flex; /* Enable flexbox */
        justify-content: center; /* Center the button horizontally */
        align-items: center; /* Center the button vertically */
    }
    .categories-area .buttonsWrapper .btn-qs-theme 
        {
            width: 100% !important;
        }
    

}

/* Choose Us Area css start*/
.choose-us-area {
    position: relative; /* Parent for positioning pseudo-elements */
}

.choose-us-area .fixed-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
}

.choose-us-area .fixed-shape img {
    width: 100%;
}

.choose-us-area .item-box {
    padding-top: 100px;

}

.choose-us-area .item-box .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 109px;

}

@media (max-width: 768px) {
    .choose-us-area .item-box{
        padding-top: 0;
    }
    .choose-us-area .item-box .col-lg-6 , .col-lg-5{
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px; /* Adjust padding for smaller screens */
    }
    .why-choseus-area .thumb .thumb-box picture.mfwebp {
        width: 0;
    }
    
}
.choose-us-area .item-box::after {
    background-image: url('https://di3xp7dfi3cq.cloudfront.net/media/wysiwyg/marketing/up-homepage/dotted-bg.png');
    position: absolute;
    left: -50px;
    top: 40px;
    content: "";
    height: 100px;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
/* Left Info in Choose Us Area */
.choose-us-area .item-box .left-info h2 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 36px;
}

.choose-us-area .item-box .left-info a {
    margin-top: 15px;
}

/* Right Info in Choose Us Area */
.choose-us-area .item-box .right-info ul {
    border-left: 1px solid #ddd;
    padding-left: 38px;
    margin-left: 15px;
}

.choose-us-area .item-box .right-info ul li {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.choose-us-area .item-box .right-info ul li:last-child {
    margin-bottom: 0;
}

.choose-us-area .item-box .right-info ul li h4 {
    font-weight: 700;
    font-size: 20px;
}

.choose-us-area .item-box .right-info ul li p {
    margin: 0;
}

.choose-us-area .item-box .right-info ul li i {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background: var(--uni_color_primary);
    text-align: center;
    color: #fff;
    position: absolute;
    left: -53px;
    border-radius: 50%;
    font-size: 12px;
}

@media (max-width: 768px) {
    

    .choose-us-area .item-box .right-info ul li i {
        left: -40px; /* Adjust icon position */
    }
    .choose-us-area .item-box .col-lg-5 {
        padding-left: 50px;
        padding-top: 0;
    }

    .choose-us-area .item-box .col-lg-6 {
        padding-left: 35px;
        padding-top: 40px;
    }

    .choose-us-area .item-box::after {
        left: -34px;
        top: 85px;
        display: none;
    }

    .choose-us-area .item-box .right-info ul {
        padding-left: 25px;
    }
}
@media (max-width: 576px) {
    .choose-us-area .item-box .col-lg-5,
    .choose-us-area .item-box .col-lg-6 {
        padding-left: 30px;
        padding-right: 30px;
    }
}
/* Choose Us Area css end*/


/* Event Area css start*/
.event-area .single-event .item .info h5 {
    margin-bottom: 0;
}

.event-area .single-event .item .info h2 strong {
    font-size: 30px;
}

.event-area span.date_time {
    font-weight: 700;
    color: #016530;
}

.event-area span.badge-2 {
    display: block;
    background: #026430;
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    max-width: 240px;
}

.event-area .single-event .item .info h2:after {
    background-size: cover;
}

.event-area .single-event .item .info ul {
    margin-bottom: 0;
}

.event-area .info ul li,
.event-area .content ul li{
    position: relative;
}

.event-area .info ul li i:hover +.custom_tooltip_new,
.event-area .content ul li:hover .custom_tooltip_new {
    display: block;
}

.event-area .content .custom_tooltip_new{
    top: 40px;
    left: 60px;
}

.event-area .content .custom_tooltip_new:after {
    left: 16px;
    top: -14px;
    border-bottom-color: #fff;
    border-right-color: transparent;
    border-width: 10px;
}

.event-area .content .custom_tooltip_new:before {
    border-bottom-color: #bbb;
    border-right-color: transparent;
    top: -14px;
    left: 16px;
    border-width: 10px;

}

.single-event .item .content h3 a:hover,
.single-event .item .content h3 a:focus{
    color: var(--uni_color_primary) !important;
}

.event-area .single-event .event-box{
    overflow: inherit;
}

.event-area .single-event .item {
    border-radius: 5px 0 0 5px;
}

.event-area .single-event .item .info {
    padding: 55px 15px 35px 15px;
}

.event-area .single-event .item .info ul li{
    outline: 0;
}

.event-area .single-event .item .info ul li i {
    margin-right: 10px;
    font-size: 16px;
    min-width: 30px;
    position: relative;
    top: -4px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}




.event-area .single-event .event-box {
    box-shadow: 1px 4px 20px -2px rgba(0,0,0,.1);
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 5px;
    background: #fff
}

.event-area .single-event {
    margin-bottom: 30px
}

.event-area .single-event .item .thumb {
    padding-right: 20px
}

.event-area .single-event .item .info h2 {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1
}

.event-area .single-event .item .info h2 strong {
    font-size: 36px;
    text-transform: uppercase
}

.event-area .single-event .item .info h2:after {
    position: absolute;
    left: -20px;
    top: -20px;
    content: "";
    height: 50px;
    width: 50px;
    /* background: url(/assets/img/shape/brush.png);
    background-size: contain;
    background-repeat: no-repeat; */
    z-index: -1;
    opacity: .05
}

.event-area .single-event .item .info ul {
    margin-top: 25px
}

.event-area .col-lg-3.col-md-5.item {
    padding-right: 0
}

.event-area .single-event .item .content {
    position: relative;
    padding: 70px 50px
}

.event-area .single-event .item .content:after {
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 50px;
    border-left: 1px solid #e7e7e7;
    width: 1px;
    content: ''
}

.event-area .single-event .item .content h4 {
    margin-bottom: 20px;
    margin-top: -5px
}

.event-area .single-event .item .content h2 a:hover,.event-area .single-event .item .content h3 a:hover,.event-area .single-event .item .content h4 a:hover {
    color: var(--uni_color_primary);
}

.event-area .single-event .item .content a {
    margin-top: 10px;
    font-weight: 700
}

.event-area .content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    font-weight: 700;
    color: #232323
}

.event-area .content ul li img {
    height: 45px;
    width: 45px;
    max-width: 45px;
    border-radius: 50%;
    border: 2px solid #e7e7e7;
    padding: 3px;
    margin-right: 10px
}

.event-area .single-event .item {
    background-size: cover;
    background-position: center
}

.event-area .single-event .item .info {
    padding: 70px 35px
}

.event-area .single-event .item .info h5 {
    font-weight: 700;
    text-transform: capitalize
}

.event-area .single-event .item .info ul li {
    margin-bottom: 10px;
    display: flex
}

.event-area .single-event .item .info ul li:last-child {
    margin-bottom: 0
}

.event-area .single-event .item .info>a {
    margin-top: 25px
}

.event-area .single-event .item .info ul li i {
    margin-right: 5px;
    color: var(--uni_color_primary);
    font-size: 24px;
    min-width: 30px;
    position: relative;
    top: 3px
}

.event-area .event-box {
    margin-bottom: -20px
}

.event-area .event-box .single-item {
    margin-bottom: 50px
}

.event-area .event-box .single-item .info {
    padding: 0 30px
}

.event-area .event-box .single-item .item img {
    border-radius: 7px
}

.event-area .event-box .single-item .info h4 a:hover {
    color: var(--uni_color_primary);
}

.event-area .event-box .single-item .info .top-info ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 13px
}

.event-area .event-box .single-item .info .location {
    font-weight: 600;
    color: #232323
}

.event-area .event-box .single-item .info i {
    margin-right: 5px;
    color: var(--uni_color_primary);
}

.event-area .event-box .single-item .info .bottom-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    padding-top: 20px;
    margin-top: 20px
}

.event-area .event-box .single-item .info .content {
    box-shadow: 1px 4px 20px -2px rgba(0,0,0,.1);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    top: -80px;
    background: #fff;
    margin-bottom: -80px
}
/* Event Area css start*/

/* Why Choseus Area css start*/

.why-choseus-area{
    position: relative;
}
.site-heading {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center; 
    margin: 0 auto; 
    padding: 20px;
}

.site-heading h2{
 font-size: 41px !important;
 margin-bottom: 45px !important;
}

.why-choseus-area .fixed-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    max-width: 38%;
    left: 0;
    right: auto;
    height: 100%;

}

.why-choseus-area .fixed-bg::after {
       content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 66%;
    height: 39%;
    background-color: var(--uni_color_primary);
    z-index: -1;
    border-radius: 0 0 5px 5px;
    pointer-events: none;
    transform: scaleX(1.35);
    transform-origin: left center;
}



.why-choseus-area .thumb .thumb-box{
    /* background-color: var(--uni_color_primary); */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
}
.icon_check:before {
    content: "\2713";
    font-style: normal;
    font-size: 13px;
}



.why-choseus-area .thumb .thumb-box img {
    width: 100%;
    height: 100% !important;
    margin: 0 auto;
    object-fit: cover;
    display: none;
}


.why-choseus-area.elcamino .thumb-box .elcamino,
.why-choseus-area.gatewaycc .thumb-box .gatewaycc,
.why-choseus-area.estrellamountain .thumb-box .estrellamountain,
.why-choseus-area.csn .thumb-box .csn,
.why-choseus-area.lanecc .thumb-box .lanecc,
.why-choseus-area.cei .thumb-box .cei,
.why-choseus-area.arapahoe .thumb-box .arapahoe,
.why-choseus-area.unm .thumb-box .unm,
.why-choseus-area.isu .thumb-box .isu,
.why-choseus-area.umt .thumb-box .umt,
.why-choseus-area.sheltonstate .thumb-box .sheltonstate,
.why-choseus-area.hawkeyecollege .thumb-box .hawkeyecollege,
.why-choseus-area.saintpaul .thumb-box .saintpaul,
.why-choseus-area.otcc .thumb-box .otcc,
.why-choseus-area.southeast .thumb-box .southeast,
.why-choseus-area.nwacc .thumb-box .southeast,
.why-choseus-area.nscc .thumb-box .nscc,
.why-choseus-area.und .thumb-box .und,
.why-choseus-area.elgin .thumb-box .elgin,
.why-choseus-area.laurelridge .thumb-box .laurelridge,
.why-choseus-area.qcc .thumb-box .qcc,
.why-choseus-area.lorainccc .thumb-box .lorainccc,
.why-choseus-area.fsw .thumb-box .fsw,
.why-choseus-area.brookdalecc .thumb-box .brookdalecc,
.why-choseus-area.nashuacc .thumb-box .nashuacc,
.why-choseus-area.cwu .thumb-box .cwu,
.why-choseus-area.kbcc .thumb-box .kbcc,
.why-choseus-area.fresno .thumb-box .fresno,
.why-choseus-area.ccp .thumb-box .ccp,
.why-choseus-area.wku .thumb-box .wku,
.why-choseus-area.uwp .thumb-box .uwp,
.why-choseus-area.miracosta .thumb-box .miracosta,
.why-choseus-area.loyalistcollege .thumb-box .loyalistcollege,
.why-choseus-area.saultcollege .thumb-box .saultcollege,
.why-choseus-area.humber .thumb-box .humber,
.why-choseus-area.bridgevalley .thumb-box .bridgevalley,
.why-choseus-area.hodges .thumb-box .hodges,
.why-choseus-area.bellarmine .thumb-box .bellarmine,
.why-choseus-area.lcc .thumb-box .lcc,
.why-choseus-area.iavalley .thumb-box .iavalley,
.why-choseus-area.baker .thumb-box .baker,
.why-choseus-area.lacc .thumb-box .lacc,
.why-choseus-area.sierra .thumb-box .sierra,
.why-choseus-area.sjrstate .thumb-box .sjrstate,
.why-choseus-area.scc .thumb-box .scc,
.why-choseus-area.fdtc .thumb-box .fdtc,
.why-choseus-area.nsu .thumb-box .nsu{
    display: block;
}

.why-choseus-area.elcamino .thumb-box .default,
.why-choseus-area.gatewaycc .thumb-box .default,
.why-choseus-area.estrellamountain .thumb-box .default,
.why-choseus-area.csn .thumb-box .default,
.why-choseus-area.lanecc .thumb-box .default,
.why-choseus-area.cei .thumb-box .default,
.why-choseus-area.arapahoe .thumb-box .default,
.why-choseus-area.unm .thumb-box .default,
.why-choseus-area.isu .thumb-box .default,
.why-choseus-area.umt .thumb-box .default,
.why-choseus-area.sheltonstate .thumb-box .default,
.why-choseus-area.hawkeyecollege .thumb-box .default,
.why-choseus-area.saintpaul .thumb-box .default,
.why-choseus-area.otcc .thumb-box .default,
.why-choseus-area.southeast .thumb-box .default,
.why-choseus-area.nwacc .thumb-box .default,
.why-choseus-area.nscc .thumb-box .default,
.why-choseus-area.und .thumb-box .default,
.why-choseus-area.elgin .thumb-box .default,
.why-choseus-area.laurelridge .thumb-box .default,
.why-choseus-area.qcc .thumb-box .default,
.why-choseus-area.lorainccc .thumb-box .default,
.why-choseus-area.fsw .thumb-box .default,
.why-choseus-area.brookdalecc .thumb-box .default,
.why-choseus-area.nashuacc .thumb-box .default,
.why-choseus-area.cwu .thumb-box .default,
.why-choseus-area.kbcc .thumb-box .default,
.why-choseus-area.fresno .thumb-box .default,
.why-choseus-area.ccp .thumb-box .default,
.why-choseus-area.wku .thumb-box .default,
.why-choseus-area.uwp .thumb-box .default,
.why-choseus-area.miracosta .thumb-box .default,
.why-choseus-area.loyalistcollege .thumb-box .default,
.why-choseus-area.saultcollege .thumb-box .default,
.why-choseus-area.humber .thumb-box .default,
.why-choseus-area.bridgevalley .thumb-box .default,
.why-choseus-area.hodges .thumb-box .default,
.why-choseus-area.bellarmine .thumb-box .default,
.why-choseus-area.lcc .thumb-box .default,
.why-choseus-area.iavalley .thumb-box .default,
.why-choseus-area.baker .thumb-box .default,
.why-choseus-area.scc .thumb-box .default,
.why-choseus-area.fdtc .thumb-box .default,
.why-choseus-area.nsu .thumb-box .default{
    display: none;
}

.why-choseus-area .info .item ul{
    min-height: 148px;
}

@media screen and (max-width: 768px) {

    .why-choseus-area .fixed-bg::after {
        height: 24%;
    }

}

@media screen and (max-width: 576px) {

    .why-choseus-area .fixed-bg {
        max-width: 50%;
    }

    .why-choseus-area .site-heading h2{
        font-size: 36px !important;
    }

}


@media only screen and (min-width: 1367px) {
    .why-choseus-area .container-full {
        margin-left:calc((100% - 1140px)/2);
        width: auto;
        min-width: auto;
        max-width: inherit
    }
}

.why-choseus-area .single-item {
    margin-bottom: 30px
}

.why-choseus-area .fixed-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%
}

.why-choseus-area .fixed-bg img {
    width: 100%
}

.why-choseus-area .thumb {
    padding-right: 35px
}

.why-choseus-area .thumb .thumb-box {
    position: relative
}

.why-choseus-area .info>h5 {
    text-transform: uppercase;
    color: #888;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 25px;
    display: inline-block;
    z-index: 1;
    position: relative;
    padding-bottom: 24px
}

.why-choseus-area .info>h5:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    background:  var(--uni_color_primary);
    z-index: -1
}

.why-choseus-area .info h2 {
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: -8px
}

.why-choseus-area .info .item {
    position: relative;
    padding: 55px 30px;
    z-index: 1;
    box-shadow: 0 0 10px #ccc;
    background: #fff;
    transition: all .35s ease-in-out
}

.why-choseus-area .info .item:hover {
    margin-top: -15px
}

.why-choseus-area .info .item:last-child {
    margin-bottom: 0
}

.why-choseus-area .info .item h4 {
    font-weight: 700
}

.why-choseus-area .info .item span {
    display: block;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 50px;
    opacity: .3
}

.why-choseus-area .info .item>i {
    position: absolute;
    right: 30px;
    top: 40px;
    font-size: 50px;
    color: #999
}

.why-choseus-area .info .item h5 {
    font-weight: 700;
    font-size: 20px;
    min-height: 54px;
}

.why-choseus-area .info .item p {
    margin: 0
}

.why-choseus-area .info .item a {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background:  var(--uni_color_primary);
    color: #fff;
    border-radius: 50%;
    margin-top: 20px
}

.why-choseus-area .info .item ul li {
    font-weight: 600;
    color: #232323;
    position: relative;
    margin-top: 7px
}

.why-choseus-area .info .item ul li:first-child {
    margin-top: 0
}

.why-choseus-area .info .item ul {
    margin-top: 15px;
    position: relative
}

.why-choseus-area .info .item ul:after {
    position: absolute;
    content: "";
    left: -32px;
    top: 5%;
    height: 90%;
    width: 4px;
    background:  var(--uni_color_primary);
}


.partner-items .item img {
    width: auto;
    margin: auto
}

@media only screen and (max-width: 991px) {
    .why-choseus-area .info .item h5 {
        min-height: inherit;
    }
}

@media only screen and (max-width: 991px) {
    .learningtracks_area  .heading-left .row {
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center; 
        width: 100%; 
        margin: 0 auto;
    }

    .learningtracks_area  .heading-left .col-lg-6 {
        max-width: 100%; 
        text-align: center; 
        margin-bottom: 20px;
    }

    .learningtracks_area  .heading-left .buttonsWrapper {
        display: flex;
        justify-content: center; 
    }
    .default-padding.bottom-less {
        padding-bottom: 20px;
        padding-top: 50px;
    }    
    
}


@media (max-width: 768px) {
    .event-area {
        max-width: 80%; 
        padding: 0; 
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .event-area {
        max-width: 100%;
        padding: 10px; 
    }
}

@media only screen and (max-width: 991px) {

    .why-choseus-area .info .row {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%; 
        margin: 0; 
    }

    .why-choseus-area .info .row .item-box {
        max-width: 100%;
    }

    .why-choseus-area .info .row .item-box .col-lg-6 {
        min-height: 300px;
        flex: 0 0 100%;
        max-width: 100%;
    }

}
/* Why Choseus Area css end*/

  



