:root{
    --clr:#243673;
    --clrScendry:#348D77;
    --clrScendry2:#2777db;
}
.primary-clr{
    color: var(--clr) !important;
}
.secondary-clr{
    color: var(--clrScendry) !important;
}
html{
    overflow-x: hidden;
}
body{
 font-family: 'Montserrat', sans-serif;
 font-weight: 400;
 overflow-x: hidden;
}
a {
    text-decoration: none;
    color: #fff;
}
a:hover {
    text-decoration: none;
    color: var(--clrScendry);
}
button {
    outline: none;
    cursor: pointer;
}
.siteHead {}
.siteHead h2 {}
/********** MOBILE SIDE NAVBAR ***********/
#sidebar {
    min-width: 300px;
    max-width: 300px;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: -300px;
    /* top layer */
    z-index: 9999;
}
#sidebar.active{
    left:0;
}
.overlay {
    display: none;
    position: fixed;
    /* full screen */
    width: 100vw;
    height: 100vh;
    top: 0;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
}
/* display .overlay when it has the .active class */
.overlay.active {
    display: block;
    opacity: 1;
}

#dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    /* top right corner of the sidebar */
    top: 10px;
    right: 10px;
}
.mobileLogo img {
    width: 50px;
}
.fas.fa-bars {
    font-size: 30px;
}
.mobBav {
    padding: 20px;
}
.mobBav li {
    margin-bottom: 5px;
}
/********* TOP HEADER SIDE ***********/
.headTop {
    background-color: var(--clr);
    padding: 8px 0;
}
.headTop ul li, .headTop ul li i {
    color: #fff;
}
.headSocial ul li {
    font-size: 14px;
}
.headSocialIcon ul li i {
    font-size: 18px;
}

/********** TOP CENTER LOGO SIDE **********/
.centerLogo {
    text-align: center;
}
.centerLogo img {
    width: 120px;
}

/********** BOTTOM NAVBAR SIDE **********/
.bottomNavbar {
    background-color: var(--clr);
    padding: 12px 0;
}
.bottomNavbar ul li {
    color: #fff;
    font-size: 16px;
}
/********** TOP BANNER SIDE **********/
.topBanner {
/*    background-image: url("../images/top-banner.jpg");
    background-repeat: no-repeat;
    background-color: #cdcdcd;
    background-size: cover;
    background-position: center center;*/
    /*padding: 20px 0 150px 0;
    position: relative;
    margin-bottom: 50px;*/
}
.topBannerBox {
    position: relative;
}
.topBanner:before {
    /*content: '';*/
    width: 100%;
    height: 100%;
    background-color: #243673;
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
}
.topBanImg {
    width: 100%;
    /*height: 90vh;*/
}
.topBanImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.topBanTxt {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.topBanner h1 {
    font-family: 'Anton', sans-serif;
    /*font-weight: bold;*/
    font-size: 90px;
    position: relative;
    z-index: 99;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}
.topBanner h4 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    position: relative;
    z-index: 99;
    color: transparent;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    z-index: 99;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #fff;
}
#icapswip .swiper-button-next:after, #icapswip .swiper-button-prev:after {
    font-size: 22px!important;
    color: #fff;
   /* background: var(--clrScendry2);
    padding: 10px 16px;
    border-radius: 8px;*/
}
.topBanBox {
    display: flex;
    column-gap: 10px;
    background-color: transparent;
    background-image: linear-gradient(180deg, var( --clr )  0%, #009bdf 100%);
    border-radius: 20px;
    padding: 33px 0;
    color: #fff;
    /*position: absolute;
    right: 50%;
    bottom: -34px;
    transform: translateX(50%);*/
    transform: translateY(-30px);
    position: relative;
    width: 100%;
    z-index: 999;
}
.topBanBoxOne, .topBanBoxTwo, .topBanBoxThree {
    width: 33.333333%;
    padding: 0 20px;
}
.topBanBoxOne {
    border-right: 1px solid #fff;

}
.topBanBoxTwo {
    border-right: 1px solid #fff;
}
.topBanBoxThree {
    
}
.topBanBox h2 {
    font-size: 22px;
    font-weight: 500;
}
.topBanBox p {}
.topBanBox i {
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.popHead {
    font-family: "Anton", Sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 3em;
    transform: translateY(20px);
    border-bottom: 1px solid #000;
    display: inline-block;
    padding-bottom: 24px;
}
.popBox {
    border-radius: 20px;
    overflow: hidden;
}
.popBoxImg {
    width: 100%;
    height: 250px;
    overflow: hidden;
    transition: 1s;
}
.popBoxImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.popBoxImg:hover img {
    transform: scale(1.2);
    filter: brightness(0.5);
}
.popBoxContent {
    padding: 25px;
    background-color: var(--clr);
    text-align: center;
}
.popBoxContent h2 {
    font-size: 20px;
    color: #FFFFFF;
}
.popBoxContent .popBoxLin {
    font-size: 16px;
    color: #FFFFFF;
    padding: 6px 10px;
    background-color: #348D77;
    border-radius: 10px;
    display: inline-block;

}
.popBoxContent p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 25px;
}
.popBtn button, a.popBtn {
    background-color: #fff;
    background-image: linear-gradient(130deg, #243673 31%, #009BDF 100%);
    border: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    text-transform: uppercase;
}
/********** FOCUS TOP SIDE **********/
.focusUp {
    background-image: url("../images/focus-back-img.webp");
    background-repeat: no-repeat;
    background-color: #cdcdcd;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 150px 0;
    position: relative;
}
.focusUpR {

}
.focusUpR h6 {
    font-size: 12px;
    text-transform: uppercase;
    background-color: var(--clrScendry2);
    padding: 4px 40px;
    display: inline-block;
    border-radius: 20px;
    color: #fff;
}
.focusUpR h2 {
    font-size: 40px;
}
.focusUpR p {
    font-size: 12px;
}
.focusUpR button {
        border: none;
    background: #fe7f88;
    padding: 14px 30px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}
.focusUpL {
    display: flex;
    column-gap: 40px;
    justify-content: center;
    overflow: hidden;
}
.focusUpImgOne, .focusUpImgTwo {
    width: 38%;
    height: 320px;
    border-radius: 113px;
    overflow: hidden;
}
.swiper-slide-active .focusUpImgOne, .swiper-slide-active .focusUpImgTwo {
    transform: translateY(0px);
}
.focusUpImgOne {
    transform: translateY(-2000px);
    transition: 1s;
}
.focusUpImgTwo {
    transform: translateY(2000px);
    transition: 1s;
}
.focusUpImgOne img, .focusUpImgTwo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.focusUpImgTwo {
    margin-top: 12%;
}
#focusUpswip .swiper-button-next:after, #focusUpswip .swiper-button-prev:after {
    font-size: 17px!important;
    color: #fff;
    background: var(--clrScendry2);
    padding: 10px 16px;
    border-radius: 8px;
}
#focusUpswip .swiper-button-next{
    top: 95%; 
    right: 47% !important;
}
#focusUpswip .swiper-button-prev  {
    top: 95%; 
    left: 47% !important;
} 
/********** FOCUS BOTTOM SIDE **********/
.focusBtmBx {
    background-color: transparent;
    background-image: linear-gradient(180deg, #009BDF 0%, var( --clr ) 100%);
    padding: 50px;
    position: relative;
    top: -100px;
    box-shadow: 0px 4px 10px 0pxrgba(0,0,0,0.5);
    border-radius: 20px;
}
.focusBtmBx h2 {
    color: #FFFFFF;
    /*font-family: "Anton", Sans-serif;*/
    font-size: 33px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}
.focusBtmBx p {
    color: #FFFFFF;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}
.focusBtmBx ul {
    text-align: center;
}
.focusBtmBx li {
    margin-right: 80px !important;
    color: #FFFFFF;
}
.focusBtmBx li:nth-last-child(1) {
    margin-right: 0 !important;
}
.focusBtmImg {

}
.focusBtmImg img {
    height: 100px;
}
.slideOneL img, .slideOneL video {
    width: 300px;
}
.focusBtmBx h3 {
    color: #FFFFFF;
    /*font-family: "Anton", Sans-serif;*/
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 2px solid #fff;
    padding-top: 26px;
    margin-top: 30px;

}
#midSlideswip .swiper-button-next:after, #midSlideswip .swiper-button-prev:after {
    font-size: 20px!important;
    color: #000;
}


/********** MID SLIDER SIDE **********/
.midSlider {
    background-image: url("../images/mid-slider.webp");
    background-repeat: no-repeat;
    background-color: #cdcdcd;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 80px 0;
    position: relative;
}
.midSlider {}
.slideOneL {}
.slideOneL h2 {
    font-family: "Anton", Sans-serif;
    font-size: 100px;
}
.slideOneR {}
.slideOneImg {}
.slideOneImg1 img, .slideOneImg2 img {
    width: 200px;
}
.slideOneImg2 img {
   margin-top: 100px;
}
.slideTwoImg {
    text-align: center;
}
.slideTwoImg img {
    height: 100%;
    width: 550px;
}
.slideOneImg1 h2, .slideOneImg2 h2 {
    font-size: 17px;
    padding-right: 58px;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: "Anton", Sans-serif;
}
.slideOneImg2 h2 {
    padding-left: 78px;
    padding-right: 0
}
.slideTwo h2 {
    font-family: "Anton", Sans-serif;
    font-size: 30px;
    color: #000;
    text-align: center;
}
.slideTwo button {
    background-color: #fff;
    background-image: linear-gradient(130deg, #243673 31%, #009BDF 100%);
    border: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    text-align: center;
}
.swiper-slide-active .slideTwoBx1, .swiper-slide-active .slideTwoBx2 {
    transform: translateX(0px);
}
.slideTwoBx1 {
    transform: translateX(-2000px);
    transition: 1s;
}
.slideTwoBx2 {
    transform: translateX(2000px);
    transition: 1s;
}
.slideTwoBx1 {
    transition: 1s ;
}

/********** FOCUS POINT CHANNEL OR IQBAL CHANNEL SIDE **********/
.pointChannel {}
.pointChnBx {
    margin-bottom: 25px;
    position: relative;
}
.pointChnBxIframe {
    width: 100%;
    height: 280px;
}
.pointChnBxIframe iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.watchbtn {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000000d4;
    padding: 12px 17px;
    color: #fff;
}
.watchbtn a {}
.iqbalChannel {}

/********** STUDENT REVIEW SIDE **********/
.studentReviewbg {
    background-color: #fafafa;
    padding: 60px 0;
    position: relative;
}
.studentReview {}
.studentCont {
    padding-left: 20px;
}
.studentCont h2 {
    font-size: 3.5em;
}
.studentCont span {
    color: #00d9a6;
}
.studentCont img {
    width: 100px;
}
.studentCont p {
    font-size: 20px;
    font-family: "Ubuntu";
    font-weight: 400;
    line-height: 160%;
    background-color: transparent;
    color: #758398;
}
.studentImgBx {
    height: 700px;
}
.studentImg {
    width: 600px;
    height: 600px;
    background: #DBDBDB;
    padding: 30px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-2000%);
    transition: 1s;
}
.studentImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#studentRevswip .swiper-button-next:after, #studentRevswip .swiper-button-prev:after {
    font-size: 15px!important;
    color: #fff;
    background-color: #DBDBDB;
    border-radius: 50%;
    padding: 10px 14px;
}
#studentRevswip .swiper-button-next{
    top: 95%; 
    right: 47% !important;
}
#studentRevswip .swiper-button-prev  {
    top: 95%; 
    left: 47% !important;
}

.swiper-slide-active .studentImg, .swiper-slide-active .studentImg {
    transform: translateY(-50%);
}

/********** FOOTER SIDE **********/
.footerSubs {
    background-color: transparent;
    background-image: linear-gradient(180deg, #009bdf 0%, var( --clr ) 100%);
    padding: 50px;
}
.subsHead {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-family: "Anton", Sans-serif;
}
.subsBox {
    display: flex;
}
.subsBox .subsBoxInp{
    width: 80%;
}
.subsBox .subsBoxBtn{
    width: 20%;
}
.subsBox .subsBoxInp input, .subsBox .subsBoxBtn button{
    width: 100%;
    max-width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    color: #FFF;
    vertical-align: middle;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 16px;
    border-radius: 3px;
    height: 50px;
}
.subsBox .subsBoxInp input::placeholder {
    color: #fff;
}
.subsBox .subsBoxBtn button{
   
}
.subsBox .subsBoxBtn button i{}
.fooBox {
    background-color: #000;
    text-align: center;
}
.fooLine {
    width: 25%;
    height: 1px;
    background: #fff;
    margin: 40px auto;
}
.fooHead {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.fooNavbar ul li, .fooSocial ul li, .fooSocialIcon ul li i {
    color: #fff;
}
.fooHead {}
.fooSocial ul li {}
.fooSocialIcon ul li i {
    font-size: 22px;
}

/*************************************** 
              COURSES PAGE 
 ***************************************/
.coursbanner {
    background-image: url("../images/page-banner.jpg");
    background-repeat: no-repeat;
    background-color: #cdcdcd;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 80px 0;
    position: relative;
    text-align: center;
}
.coursbanner h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.5rem;
}
.coursbanner p {
    color: #fff;
    font-size: 1.2rem;
    width: 50%;
    margin: 0 auto;
}
.coursHead {
    text-align: center;
}
.coursHead h1 {
    font-size: 2rem;
    font-weight: 600;
}
.coursBox:hover {
    -webkit-box-shadow: 4px 4px 11px -3px rgba(112,112,112,1);
    -moz-box-shadow: 4px 4px 11px -3px rgba(112,112,112,1);
    box-shadow: 4px 4px 11px -3px rgba(112,112,112,1);
}
.coursBox:hover .coursImg img {
    transform: scale(1.1);
}
.coursImg {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.coursImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s;
}
.courscont {
    background-color: #f5f6f7;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    display: inline-grid;
    padding: 20px;
}
.courseColle {
    background-color: #f5f6f7;
    padding: 20px;
}
.courscont h2, .courseColle h2 {
    font-size: 14px;
    font-weight: 500;
    color: #8f8f8f;
}
.courscont h3, .courseColle h3 {
    font-size: 20px;
    font-weight: 600; 
}
.courscont p {
    font-size: 14px; 
    height: 45px;
    overflow: hidden;
}
.courscont .rating i, .coursD1 .rating i, .courseColle .rating i {
    color: #ffa900;
    font-size: 14px;
}
.courscont .rating span, .coursD1 .rating span, .courseColle span { 
    font-size: 14px;
}
.courscont button, .courseColle button {
    border: none;
    background:  var(--clr);
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 40px;
}

/*************************************** 
              COURSES SINGLE PAGE 
 ***************************************/
.coursD0 {
    width: 100%;
    height: 500px;
    /*transform: translateY(-50px);*/
}
.coursD0 iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 .coursD1 {
     background-image: url("../images/course-single-1.jpg");
    background-repeat: no-repeat;
    /*background-color: #cdcdcd;*/
    background-size: cover;
    background-position: center center;
    padding: 20px 0 50px 0;
    position: relative;
    text-align: center;
 }
 .coursD1 .topInner {
    justify-content: center;
    align-items: start;
    display: flex;
    flex-direction: column;
    color: #fff;
 }
 .coursD1 h2 {
    font-size: 2.3rem;
    font-weight: 600;
 }
 .coursD1 p {
    width: 80%;
    font-size: 14px;
    text-align: left;
 }
 .coursD1 button {
    border: 1px solid transparent;
    background: var(--clr);
    border-radius: 30px;
    padding: 6px 40px;
    margin-top: 20px;
    font-weight: 600;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.5s;
 }
 .coursD1 button:hover {
    border: 1px solid #fff;
    background: transparent;
    transform: translateY(-5px);
    color: #fff;
 }
.coursD1Img {
    width: 100%;
    height: 301px;
    padding: 20px;

}
.coursD1Img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-box-shadow: 4px 4px 11px -3px rgba(112,112,112,1);
    -moz-box-shadow: 4px 4px 11px -3px rgba(112,112,112,1);
    box-shadow: 4px 4px 11px -3px rgba(112,112,112,1);
}

.coursD2 {}
.coursD2 h3, .coursD3 h3, .coursInstrucHead {
    font-size: 2rem;
    font-weight: 600;
}
.coursD2 p {
    font-size: 15px;
}

.coursD3 {}
.coursD3 h3 {}
.coursD3 .accordion {}
.accordion-button:focus { 
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;
}
.coursD3 button:not(.collapsed) {
    color: var(--clr) !important;
}
#accordionExample .accordion-button {
    font-size: 18px !important;
}

.coursInstruc {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
}
.coursInstrucHead {
    display: flex;
    align-items: center;
    padding: 15px;
}
.coursInstrucHead .img {
    width: 150px;
}
.coursInstrucHead .img img {}
.coursInstrucHead h2 {
    font-size: 2rem;
    font-weight: 600;
}
.coursInstrucHead h3 {
     font-size: 1.3rem;
    font-weight: 400;
}
.coursInstrucHead h3 i {
    font-size: 16px;
}

.coursInstrucCont {
    background-color: #f6f6f7;
    padding: 15px;
}
.coursInstrucCont p {
    font-size: 15px;
}

.courSingleR {
    border: 1px solid #d9d9d9;
    padding: 20px;
    border-radius: 8px;
    position: sticky;
}
.courSingleR h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.courSingleR h2 span {
    color: #8f8f8f;
    font-size: 18px;
    font-weight: 500;
}
.courSingleR h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
.courSingleR h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: var(--clr);
}
.courSingleR ul {
    list-style: none;
    padding-left: 0;
}
.courSingleR ul li {
    line-height: 50px;
    padding: 0 15px;
}
.courSingleR ul li:nth-child(odd) {
    background-color: #f6f6f7;
}
.courSingleR ul li i {
    font-size: 20px;
    margin-right: 10px;
}
.collSection {
    background-color: #f6f6f7;
    padding: 50px 0px;
} 
.collSection h5 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
} 
.courseColleBox {
    -webkit-box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    border-radius: 8px;
    overflow: hidden;
}
.expColleBox{
    background-color: #2436739e;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
}
@media screen and (max-width:575px) {
    .coursD1 .topInner {
        align-items: center;
    }
    .coursD1 h2, .coursD1 p { 
        text-align: center;
    }
    .coursD2 {
        text-align: center;
        padding: 0 10px;
    }
    .coursD2 h3, .coursD3 h3 {
        text-align: center;
    }
    .focusBtmBx {
    padding: 25px; 
    }
    .focusBtmBx h3 {
        font-size: 20px;
    }
    .mobBav li a {
        color: #000;
    } 

    .topBanner {
        padding: 20px 10px 0px 10px;
    }
    .topBanner h1 {
        font-size: 60px;
    }
    .topBanBox {
    flex-direction: column;
    position: relative;
     right: 0; 
    bottom: -34px;
     transform: unset; 
    width: 100%;
    border-radius: 20px;
    row-gap: 40px;
    margin-bottom: 50px;
}
.topBanBoxOne, .topBanBoxTwo, .topBanBoxThree {
    width: 100%;
    padding: 0 20px;
}
.topBanBoxOne {
    border-right: none;
}
.topBanBoxTwo{
    border-right: none;
}
.headImg img {
    width: 230px;
}
.focusUpR {
    text-align: center;
}
.focusUpL {
    margin-top: 70px;
}
.focusBtmBx h2 {
    font-size: 40px;
}
.focusBtmBx li {
    margin-right: 0px !important;
    width: 65%;
    margin-bottom: 40px;
}
.slideOneL h2 {
    font-size: 60px;
    text-align: center;
    margin-bottom: 40px;
}
.slideOneL img, .slideOneL video {
    width: 222px;
    margin: 0 auto;
    display: block;
}
.slideOneR {
    padding-top: 30px;
}
.slideOneImg1 img, .slideOneImg2 img {
    width: 140px;
}
.slideTwoImg img {
    width: 320px;
}
.slideTwo {
    margin-top: 30px;
}
.studentCont {
    padding: 0 20px;
}
.studentImg {
    width: 400px;
    height: 400px;
    right: 0;
    top: unset;
     transform: unset; 
    bottom: -120px;
}
.studentImgBx {
    height: 500px;
}
#studentRevswip .swiper-button-next, #focusUpswip .swiper-button-next {
    right: 40% !important;
}
#studentRevswip .swiper-button-prev, #focusUpswip .swiper-button-prev {
    left: 40% !important;
}
.footerSubs {
    padding: 25px;
}

}

@media screen and (min-width:576px) and (max-width:767px){
    .coursD1 h2 {
        text-align: left;
    }
.mobBav li a {
    color: #000;
} 
.topBanner {
    padding: 0px 10px 20px 10px;
}
.headImg img {
    width: 200px;
}
.focusUpR h2 {
    font-size: 34px;
}
.focusBtmBx {
    padding: 20px;
}
.focusBtmBx li {
    margin-right: 85px !important;
    margin-bottom: 35px;
}
.slideOneL h2 {
    font-size: 50px;
}
.slideOneL img, .slideOneL video {
    width: 235px;
}
.slideOneImg1 img, .slideOneImg2 img {
    width: 150px;
}
.slideTwoImg img {
    width: 300px;
}
.studentImg {
    width: 450px;
    height: 450px;
}
.studentImgBx {
    height: 500px;
}
#studentRevswip .swiper-button-next, #focusUpswip .swiper-button-next {
    right: 35% !important;
}
#studentRevswip .swiper-button-prev, #focusUpswip .swiper-button-prev  {
    left: 35% !important;
}
    
}
@media screen and (min-width:768px) and (max-width:991px){
    .coursD1 h2 {
        text-align: left;
    }

.mobBav li a {
    color: #000;
}
.topBanner {
    padding: 0px 10px 20px 10px;
}
.headImg img {
    width: 200px;
}
.focusUpR h2 {
    font-size: 34px;
}
.focusBtmBx {
    padding: 20px;
}
.focusBtmBx li {
    margin-right: 85px !important;
    margin-bottom: 35px;
}
.slideOneL h2 {
    font-size: 50px;
}
.slideOneL img, .slideOneL video {
    width: 235px;
}
.slideOneImg1 img, .slideOneImg2 img {
    width: 150px;
}
.slideTwoImg img {
    width: 300px;
}
.studentImg {
    width: 450px;
    height: 450px;
}
.studentImgBx {
    height: 500px;
}
#studentRevswip .swiper-button-next, #focusUpswip .swiper-button-next {
    right: 35% !important;
}
#studentRevswip .swiper-button-prev, #focusUpswip .swiper-button-prev  {
    left: 35% !important;
}

}
@media screen and (min-width:992px) and (max-width:1280px){

}

.no-src.lazyload,.no-src.lazyloading {
    opacity: 0
}

.no-src.lazyloaded {
    opacity: 1;
    transition: .1s ease-in-out
}