@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Abril Fatface';
    src: url('../fonts/AbrilFatface-Regular.woff2') format('woff2'),
        url('../fonts/AbrilFatface-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*root*/
:root {
    --primary_color: #0038FF;
    --black_color: #000000;
    --content_color: #393939;
    --yellow_color: #FFC000;
    --white_color: #ffffff;
    --bg_light: #EFF3FF;
    --light_gray:#A3A3A3;
    --font_poppins: 'Poppins', sans-serif;
    --font_AbrilFatface: 'Abril Fatface';
}
/*reset css*/
button{
    cursor: pointer;
    background-color: transparent;
    background-image: none;
    padding: 0;
    line-height: inherit;
    color: inherit;
    border: none;
}
button:focus {
    outline: none;
}
html{
	margin: 0;
	padding: 0;
}
body{
	font-family: var(--font_poppins);
    font-size: 14px;
    color: var(--content_color);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
ul,li{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a{
    color: var(--primary_color);
    text-decoration: none;
    transition: all cubic-bezier(.55,.06,.68,.19) 0.4s;
}
a:hover,a:focus{
	color: initial;
	text-decoration: none;
}
audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}
button, input, optgroup, select, textarea {
    padding: 0;
    line-height: inherit;
    color: inherit;
}
.form-control:focus {
    color: inherit;
    background-color: inherit;
    border-color: inherit;
    outline: 0;
    box-shadow: none;
}
p{
    margin: 0;
}
.form-control,.form-control:focus{
    color: var(--primary_color);
}

/*common*/
.overflow{
    overflow: hidden;
}
h1,h2,h3,h4{
    font-family: var(--font_poppins);
    color: var(--primary_color);
}
.ptb-60{
    padding-top: 60px;
    padding-bottom: 60px;
}
.pb-60{
    padding-bottom: 60px;
}
.pt-60{
    padding-top: 60px;
}
.pt-30{
    padding-top: 30px;
}
.ptb-40{
    padding-bottom: 40px;
    padding-top: 40px;
}
.pb-40{
    padding-bottom: 40px;
}
.mt-20{
    margin-top: 20px;
}
.mt-40{
    margin-top: 40px;
}
.headingArea{
    max-width: 70%;
    margin: 0 auto;
}
.section_title{
    font-size: 50px;
    line-height: 1.29;
    color: var(--black_color);
    margin-bottom: 15px;
    font-weight: 700;
}
.title_description{
    font-size: 18px;
    margin-bottom: 10px;
}
.title-center{
    text-align: center;
}
.titleStyleTwo{
    font-size: 32px;
    font-weight: 600;
}
.title_top{
    font-size: 20px;
    color: var(--black_color);
    margin: 0;
    font-weight: 400;
}
.headingbg{
    background-color: var(--primary_color);
    border-radius: 10px;
    padding-bottom: 100px;
}
.headingbg .section_title,.headingbg .title_description{
    color: var(--white_color);
}
.btn_common{
    font-size: 14px;
    border-radius: 10px;
    padding: 10px 25px;
    background: var(--primary_color);
    color: var(--white_color);
    cursor: pointer;
    word-break: break-word;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: none;
    position: relative;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    z-index: 2;
    text-transform: capitalize;
}
.btn_common::before, .btn_common::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    background-color: transparent;
    border: 1px solid transparent;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    display: inherit;
    opacity: 1;
    margin-left: 0;
}
.btn_common::after {
    right: 0;
    border-radius: 0 10px 10px 0;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.btn_common::before {
    left: 0;
    border-radius: 10px 0 0 10px;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.btn_common:hover::before, .btn_common:hover::after {
    background-color: var(--black_color);
    width: 55%;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.btn_common:hover{
    color: var(--white_color);
    background: transparent;
}
.btn_gray{
    background: #f6f7fb;
    color: var(--primary_color);
    border: 1px solid var(--content_color);
}
.btn_gray:hover{
    background: #f6f7fb;
    color: var(--primary_color);
    border-color: var(--content_color);
}
a.btn_common{
    display: inline-block;
}
.link_btn{
    color: var(--red_color);
    font-family: var(--font_arialMTBold);
    font-size: 16px;
    position: relative;
    padding-bottom: 6px;
    opacity: 0.8;
}
.link_btn:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 2px;
    width: 10px;
    opacity: 0.8;
    background-color: currentColor;
    transition: width 500ms ease;
}
.link_btn:hover{
    color: var(--red_color);
    opacity: 1;
}
.link_btn:hover::before {
    width: 100%;
    opacity: 1;
}
.link_no_border:before{
    content: none;
}
.radius-10{
    border-radius: 10px;
}
@media (max-width:991px){
    .section_title{
        font-size: 34px;
    }
    .title_description {
        font-size: 16px;
    }
}
@media (max-width: 767px){
    .title_description {
        font-size: 14px;
        line-height: 18px;
    }
    .section_title{
        font-size: 24px;
        line-height: 1.12;
    }
    .ptb-60{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .pb-60{
        padding-bottom: 40px;
    }
    .pt-60{
        padding-top: 40px;
    }
}
/*header*/
@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }

.header_main .navbar-expand-lg .navbar-collapse{
    justify-content: center;
}

.search-bar{
    background-color: var(--white_color);
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    display: flex;
    position: relative;
}
#selectdiv{
    display: flex;
    background-color: #D5DBF2;
    justify-content: space-between;
    align-items: center;
    color: var(--black_color);
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    position: relative;
}
#selectdiv img{
    width: 15px;
    margin-top: 6px;
    margin-left: 5px;
  }
#selectdiv ul{
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--white_color);
    color: var(--black_color);
    width: 100%;
    border-radius: 10px;
    padding: 5px 0;
    overflow: hidden;
    transition: all .5s ease-out;
    transform: rotateX(90deg);
  transform-origin: top;
  z-index: 999;
}
#selectdiv ul li{
    padding: 5px 20px;
    cursor: pointer;
}
#selectdiv ul li:hover{
    background-color: #edebeb;
}
#selectdiv ul.open{
    transform: rotateX(0deg);
    transition: transform .5s ease-out;
}
.search-bar input{
    width: calc( 100% - 150px );
    border: 1px solid #d8d9db;
    height: 50px;
    padding: 10px 20px;
    outline: none;
}
.btn_search{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.23);
    gap:6px;
    border-radius: 0 10px 10px 0;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.40);
}
.btn_search img{
    width: 18px;
}
.btn_search::before{
    border-radius: 0;
}
.header_left{
    background-color: var(--primary_color);
    display: flex;
    align-items: center;
    padding: 0 25px;
}
.header_main .navbar{
    padding: 0;
}
.header_right{
    padding: 0 15px;
}
.regbtn{
    display: flex;
    justify-content: flex-end;
}
.header_left img{
    max-width: 165px;
}

/*profile login*/
.avatar {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    margin-right: 5px;
}
.avatar-indicators:before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 5%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border: 2px solid var(--white_color);
    display: table;
}
.avatar-online:before {
    background-color: green;
}
.avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.dropdown-menu {
    padding: 0.7rem 0rem;
    font-size: 0.875rem;
    line-height: 22px;
    color: var(--content_color);
    border: none;
    box-shadow: 0 10px 30px 0 rgb(31 45 61 / 10%);
    border-radius: 0.5rem;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    transform: rotateX(90deg);
    transform-origin: top;
    opacity: 0;
    z-index: -999;
}
.show.dropdown-menu {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
    z-index: 1000;
}
.dropdown-item {
     display: flex;
    align-items: center;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.mobileright{
    display: none;
}
@media (min-width:992px){
    .header_main {
        box-shadow: 7px 0 9px #bcbcbc;
        background-color: var(--bg_light);
        transition: all 0.35s ease-out;
      }
    .header_main.sticky{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1199;
        background: var(--bg_light);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-animation: slideDown 0.35s ease-out;
        animation: slideDown 0.35s ease-out;
    }
    .header_main.nav-up {
        transition : all 0.35s  ease-out;
    }
}
@media (max-width: 991px){
    .navbar-toggler{
        padding: 0;
    }
    .mobileright{
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .mobileright .login_btn {
        background-color: var(--yellow_color);
    }
    .header_right .after_login,.header_right .regbtn{
        display: none;
    }
    .nav_bar img{
        max-width: 30px;
    }
    .header_left{
        justify-content: space-between;
        box-shadow: 7px 0 9px #bcbcbc;
    }
    .header_main.sticky .header_left{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1199;
        background: #0040FF;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-animation: slideDown 0.35s ease-out;
        animation: slideDown 0.35s ease-out;
    }
    .header_main.nav-up .header_left{
        transition: all 0.35s ease-out;
      }
    .navbar{
        justify-content: flex-start !important;
        padding-left: 0px;
        padding-right: 0px;
    }
    .nav_bar{
        margin-right: 0;
    }
    .after_login{
        margin-left: auto;
    }
    .mobileright .dropdown-menu {
        left: auto;
        right: 0;
    }
    .search-bar{
        padding: 0 15px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .btn_search{
        right: 15px;
    }
    #selectdiv ul{
        border: 1px solid #d8d9db;
    }
    .deskmenuOuter{
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9999;
        background: #fff;
        width: 300px;
        opacity: 0;
        visibility: hidden;
        transition: all .3s linear;
    }
    .deskmenuOuter.show{
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    .navbar-toggler:focus{
        box-shadow:none
    }
}
@media (max-width: 576px){
    .header_left img {
        max-width: 118px;
    }
    .header_left {
        padding: 10px 12px;
    }
    .mobileright .dropdown-menu {
        left: auto;
        right: 50%;
        transform: translateX(27%);
    }
    .mobileright .show.dropdown-menu{
        left: auto;
        right: 50%;
        transform: translateX(27%);
    }
}
/* Body area */
.top-90{
    top: 90px;
}
.z-index-5{
    z-index: 5;
}
.deskmenuOuter{
    padding: 0 15px 0 25px;
}
.desktopMenu{
    padding: 20px 20px 20px 0;
    background-color: var(--white_color);
    transition: top 0.5s linear;
    height: calc(100vh - 90px);
    overflow: auto;
}
.desktopMenu .deskMenuList{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.desktopMenu .deskMenuList li a{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: var(--bg_light);
    border-radius: 10px;
    text-transform: uppercase;
    color: var(--content_color);
    padding: 25px 0;

}
.desktopMenu .deskMenuList li a.active,
.desktopMenu .deskMenuList li a:hover{
    color: var(--primary_color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.23);
}
.desktopMenuFooter ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.desktopMenuFooter ul li a img{
    width: 30px;
    transform: rotate(0) scale(1);
    transition: all 0.4s linear;
}
.desktopMenuFooter ul li a:hover img{
    transform: rotate(15deg) scale(1.05);
    transition: all 0.4s linear;
    box-shadow: 0px 0px 2px 0.4px rgba(0, 0, 0, 0.23);
}
.btn_center button{
    margin: 0 auto;
}
.desktopMenu .deskMenuList li a span{
    display: flex;
    justify-content: center;
}
.svg_hover{
    fill: var(--content_color);
    transition: all 0.4s linear;
}
.svg_stroke{
    stroke:var(--content_color);
    transition: all 0.4s linear;
}
.svg_hover:hover,
.deskMenuList li a:hover .svg_hover{
    fill:var(--primary_color);
}
.svg_stroke:hover,
.deskMenuList li a:hover .svg_stroke{
    stroke:var(--primary_color);
}
.desktopMenu .deskMenuList li a img{
    width: 30px;
}
/*banner*/
.contentArea{
    padding: 20px 15px 0 0;
}
.banner{
    position: relative;
}
.bannerImg{
    position: relative;
    z-index: 2;
}
.bannerImg::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(39, 39, 39, 0);
    z-index: 0;
    border-radius: 10px;
}
.bannerImg img{
    width: 100%;
    border-radius: 10px;
}
.bannerImg video{
    width: 100%;
    border-radius: 10px;
}
.bannerCall{
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 4;
}
.bannerContent{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    left: 0;
    right: 0;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}
.bannerContent h1{
    font-family: var(--font_AbrilFatface);
    font-size: 64px;
    font-weight: 400;
    color: var(--primary_color);
    -webkit-text-stroke: 2px var(--white_color);
    margin-bottom: 20px;
}
.bannerContent p{
    font-family:var(--font_poppins);
    font-size: 18px;
    line-height: 30px;
    color: var(--white_color);
    margin-bottom: 20px;
}
.bannerContent  .btn_common{
    font-weight: 600;
    font-size: 18px;
    padding: 15px 30px;
}
.pulse{
    width: 80px;
    height: 80px;
    background: var(--primary_color);
    border-radius: 50%;
    color: var(--white_color);
    font-size: 20px;
    text-align: center;
    line-height: 100px;
    font-family: sans-serif;
    text-transform: uppercase;
    animation: animate-pulse 3s linear infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulse img{
    width: 45px;
}
@keyframes animate-pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(208, 254, 22, 0.7),  0 0 0 0 rgba(208, 254, 22, 0.7);
    }
    40%{
        box-shadow: 0 0 0 40px rgba(255,109,74,0.0),  0 0 0 0 rgba(208, 254, 22, 0.7);
    }
    80%{
        box-shadow: 0 0 0 40px rgba(255,109,74,0.0),  0 0 0 20px rgba(255,109,74,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(255,109,74,0.0),  0 0 0 20px rgba(255,109,74,0);
    }
}

/* Banner end */
/* Our Courses */
.ourCourse {

}
.course_title{
    padding: 15px;
}
.coursePrice{
    display: grid;
    grid-template-columns: auto 80px;
    margin-bottom: 10px;
    gap: 10px;
}
.course_title h3{
    font-size: 24px;
    line-height: 34px;
    color: var(--primary_color);
    margin-bottom: 0px;
    font-weight: 500;
}
.course_title .courseFee{
    color: var(--primary_color);
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    display: inline-block;
    text-align: right;
}
.course_title span .fa{
    margin-right: 3px;
}
.course_area{
    display: flex;
    align-items: center;
    column-gap: 6px;
    color: #A3A3A3;
    margin-bottom: 10px;
}
.ourCourse  .course_area img{
    width: 14px;
}
.course_img{
    position: relative;
    z-index: 2;
}
.course_img::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(39, 39, 39, 0.34);
    z-index: 0;
    border-radius: 10px;
}
.single_course{
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg_light);
    transition: all 0.3s linear;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.course_class{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    color: var(--white_color);
    background: var(--primary_color);
    font-weight: 600;
    z-index: 1;
}
.owl-item .single_course{
    transform: scale(0.9);
}
.owl-item.center .single_course{
    transform: scale(1);
    box-shadow: 0px 0px 23px 2px rgba(163, 163, 163, 1);
}
.single_course:hover .course_title h3,.single_course:hover .course_title .courseFee,.single_course a{
    color: var(--black_color);
}
.courseSlider{
    padding: 0 20px;
    margin-top: -140px;
}
.courseSlider  .owl-stage-outer{
    padding-bottom: 22px;
    padding-top: 15px;
}
.single_course p{
    color: var(--content_color);
}
.single_course .enrollnow{
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--primary_color);
    color: var(--white_color);
    font-weight: 500;
    font-size: 16px;
}
.single_course .enrollnow:hover{
    background-color: var(--black_color);
    color: var(--white_color);
}
/* Our Courses end */
/* program */
.programImg img{
    width: 100%;
}
.programCon{
    padding: 0 20px;
}
.programCon .smalltitle{
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: var(--black_color);
    margin-bottom: 15px;
}
.programCon p{
    font-size: 18px;
    line-height:30px;
    color: var(--black_color);
    margin-bottom: 15px;
}
ul.iconList li{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    color: var(--primary_color);
    margin-bottom: 10px;
}
ul.iconList li span{
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary_color);
    border-radius: 50%;
    flex: 0 0 55px;
}
ul.iconList li span img{
    width: 30px;
}
.singleProgram:nth-child(odd) .row{
    flex-direction: row-reverse;
}
.singleProgram + .singleProgram{
    margin-top: 30px;
}
/* program end */
/* Top Student */
.topstudentSlider{
    padding: 0 20px;
    margin-top: -150px;
}
.topstudentSlider  .owl-stage-outer{
    padding-bottom: 22px;
    padding-top: 60px;
}
.single_student{
    border-radius: 10px;
    background: var(--bg_light);
    transition: all 0.3s linear;
    transform: scale(0.9);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
.owl-item.center .single_student {
    transform: scale(1);
    box-shadow: 0px 0px 23px 2px rgba(163, 163, 163, 1);
}
.student_img{
    max-width: 50%;
    margin-top: -50px;
}
.topstudentSlider .student_img img{
    border-radius: 10px;
}
.tops_content{
    padding: 20px 30px;
    text-align: center;
}
.tops_content h3{
    font-size: 24px;
    line-height: 34px;
    color: var(--primary_color);
    margin-bottom: 10px;
    font-weight: 500;
}
.tops_date{
    color: #3F3D56;
    margin-bottom: 10px;
}
.single_student .enrollnow {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--primary_color);
    color: var(--white_color);
    font-weight: 500;
    font-size: 16px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
.single_student .enrollnow:hover {
    background-color: var(--black_color);
    color: var(--white_color);
}
  /* top student end */
  /* testimonial  */
.testimonial{
    padding: 50px 0px;
    background: rgba(0, 0, 0, 0.90) url(../img/testimonial_bg.svg) no-repeat;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    position: relative;
}
.testimonial::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.60);
}
.singletesti{
    text-align: center;
}
.testiImg{
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 15px;
}
.testiImg img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.testicontent{
    max-width: 90%;
    margin: 0 auto;
    color: var(--white_color);
}
.starrating{
    margin-bottom: 10px;
}
.starrating i{
    color: var(--yellow_color);
}
.testicontent h3{
    font-size: 36px;
    font-weight: 500;
    color: var(--white_color);
}
.testicontent p{
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
}
  /* testimonial end */
/* whyus */
.whyus{
    position: relative;
    overflow: hidden;
}
.whucontent{
    padding: 45px;
    background-color: var(--bg_light);
}
.whyimg img{
    width: 100%;
    margin-left: -60px;
}
.bg_wave_right:after{
    background: url(../img/whyus-bg.svg) no-repeat;
    background-position: top right;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    animation: zoominout 5s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    z-index: -1;
}
@keyframes zoominout {
    0% {
      transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
/* whyus end*/
/* Contact form */
.messageus{
    background-color: #F5F5F5;
    padding-bottom: 60px;
}

.messageus .form-control{
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #A3A3A3;
    line-height: 40px;
    color: var(--content_color);
}
.messageus .btn_common{
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
}
.messageus .btn_common img{
    width: 24px;
    margin-left: 10px;
}
/* Contact form end*/

/* slider style */
.owl_dot_style .owl-theme .owl-dots {
    display: flex;
    column-gap: 10px;
    justify-content: center;
    margin-top: 40px !important;
}
.owl_dot_style .owl-theme .owl-dots .owl-dot {
    zoom: 1;
    height: 14px;
    width: 14px;
    display: flex;
    border: 1px solid #acacac;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.owl_dot_style .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0;
    background: #A3A3A3; 
    border: 1px solid #b9b9b9; 
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 50%;
}
.owl_dot_style .owl-theme .owl-dots .owl-dot.active span{
    background: var(--primary_color); 
    border: 1px solid #8278ff; 
}
/* footer */
.footers{
    background: rgb(0, 0, 0) url(../img/footer-bg.svg) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.footers::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 56, 255, 0.78);
    z-index: -1;
}
.ft_head{
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 15px;
    color: var(--white_color);
    text-transform: uppercase;
    text-decoration: underline;
}
.ft_about{
    font-size: 18px;
    line-height: 30px;
    color: var(--white_color);
    margin-bottom: 20px;
}
.footer_menu{
    margin-bottom: 20px;
}
.footer_menu ul li{
    position: relative;
    padding-left: 25px;
}
.footer_menu ul li::after{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--white_color);
    transform: translateY(-50%);
}
.footer_menu ul li a{
    font-size: 20px;
    color: var(--white_color);
    line-height: 40px;
    font-weight: 500;
    display: inline-block;
}
.footer_menu ul li a:hover{
    color: var(--yellow_color);
}
.footer_address li + li{
    margin-top: 15px;
}
.footer_address{
    color: var(--white_color);
    line-height: 22px;
    line-height: 32px;
    font-size: 20px;
}
.footer_address li span{
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}
.footer_address li a{
    color: var(--white_color);
}
.subScribe{
    margin-bottom: 20px;
}
.subscribeFrm{
    margin-top: 40px;
}
.subscribeFrm .form-control{
    padding: 10px 10px 10px 5px;
    border: none;
    line-height: 40px;
    color: var(--content_color);
    background-color: var(--white_color);
}
.subscribeFrm  .input-group-text {
    background-color: var(--white_color);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.subscribeFrm  .input-group-text img{
    width: 30px;
}
.btnSubcribe{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    background-color: var(--yellow_color);
    color: var(--black_color);
    padding-left:20px;
    padding-right:20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 0.34s ease-out;
}
.btnSubcribe:hover{
    color: var(--white_color);
}
.footer_copy{
    padding-top: 20px;
    margin-top: 40px;
    line-height: 28px;
    text-align: center;
    color: var(--black_color);
    border-top: 1px solid var(--white_color);
    font-size: 18px;
}
.footer_copy a{
    color: var(--black_color);
}
.footer_copy a:hover{
    color: var(--yellow_color);
}
.mobile_menu{
    display: none;
}
@media (max-width: 991px){
    .bannerContent h1 {
        font-size: 50px;
    }
    .contentArea{
        padding: 20px 15px 0 15px;
    }
    .bannerContent p {
        font-size: 18px;
    }
    .programCon .smalltitle,.testicontent h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .programCon p,.testicontent p{
        font-size: 16px;
        line-height: 26px;
    }
    ul.iconList li span {
        width: 45px;
        height: 45px;
        flex: 0 0 45px;
    }
    ul.iconList li span img {
        width: 24px;
    }
    .tops_content h3{
        font-size: 22px;
    }
    .testiImg {
        width: 100px;
        height: 100px;
        margin: 0 auto 10px;
    }
    .whyimg img{
        margin-left: 0;
    }
    .ft_head{
        font-size: 24px;
        line-height: 34px;
    }
    .ft_about {
        font-size: 16px;
        line-height: 24px;
    }
    .footer_menu ul li a {
        font-size: 18px;
        line-height: 34px;
    }
}
@media (max-width: 767px){
    .bannerContent h1 {
        font-size: 35px;
        margin-bottom: 5px;
    }
    .bannerContent p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
      }
      .bannerContent .btn_common {
        font-weight: 500;
        font-size: 16px;
        padding: 10px 20px;
      }
    .pulse {
        width: 54px;
        height: 54px;
        line-height: 54px;
    }
    .pulse img {
        width: 26px;
    }
    ul.iconList li span {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }
    ul.iconList li span img {
        width: 22px;
    }
    ul.iconList li{
        font-size: 15px;
    }
    .courseSlider {
        margin-top: -100px;
    }
    .course_title h3{
        font-size: 20px;
        line-height: 30px;
    }
    .course_title .courseFee{
        font-size: 14px;
        line-height: 30px;
    }
    .programCon p{
        font-size: 15px;
        text-align: center;
    }
    .programImg{
        margin-bottom: 15px;
    }
    .programCon .smalltitle{
        text-align: center;
    }
    .singleProgram + .singleProgram{
        margin-top: 20px;
    }
    .whyimg img{
        margin-left: 0;
    }
    .headingArea {
        max-width: 90%;
    }
    .formBox{
        padding: 0 15px;
    }
    .foote_inner{
        padding-left: 15px;
        padding-right: 15px;
    }
    .mobile_menu .desktopMenu{
        padding-left: 20px;
        padding-top: 40px;
    }
    .mobile_menu{
        display: block;
    }
    .desktopview{
        display: none;
    }
}
@media (max-width: 576px){
    .bannerContent h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .bannerContent p{
        display: none;
    }
    .btn_search span{
        display: none;
    }
    
}
/*index page end*/
/* Course Page */
.inner_banner{
    background-color: var(--primary_color);
    padding-bottom: 60px;
    border-radius: 10px;
    padding-top: 20px;
}
.inner_banner .section_title,.inner_banner .title_description{
    color: var(--white_color);
}
.courseSearch{
    margin-top: -40px;
    padding: 0 40px;
}
.courseSearch .form-control{
    line-height: 40px;
    padding: 15px 30px;
    background-color: #D9D9D9;
    font-size: 30px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: var(--black_color);
    border: none;
}
.courseSearch .form-control:focus{
    border: none;
    box-shadow: none;
}
.courseSearch .btncsearch{
    background: #d9d9d9;
    border-color: #d9d9d9;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-right: 16px;
}
.courseSearch .input-group-text{
    background-color: #D9D9D9;
}
.courseSearch .input-group-text img{
    width: 40px;
}
.inner_padding{
    padding: 0 40px;
}
.course_img img{
    width: 100%;
}
.course_img video{
    position: relative;
}
.course_img iframe,.course_img video{
    width: 100%;
    z-index: 1;
}
@media(max-width: 767px){
    .inner_banner{
        padding-bottom: 30px;
    }
    .courseSearch .form-control {
        line-height: 30px;
        padding: 10px 15px;
        background-color: #D9D9D9;
        font-size: 16px;
      }
      .courseSearch .input-group-text img {
        width: 26px;
      }
      .courseSearch .btncsearch{
        padding-right: 0;
      }
      .courseSearch {
        margin-top: -26px;
        padding: 0 20px;
      }
      .inner_padding {
        padding: 0 20px;
      }
}
/* Contact Page */
.contact-page .messageus .btn_common{
    font-size: 14px;
}
.contact-page .messageus .btn_common img {
    width: 18px;
}
.contact-page .messageus .section_title{
    color: var(--primary_color);
}
.address-box{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.address-box h4{
    color: var(--black_color);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    border-bottom: 2px solid;
    display: inline-block;
    margin-bottom: 15px;
}
.address-box p,.address-box a{
    color: var(--black_color);
}
.address-box a:hover{
    color: var(--yellow_color);
}
.address-box span,.address-box span a{
    color: var(--light_gray);
}
.address-box span a:hover{
    color: var(--black_color);
}
.address-icon span{
    font-size: 28px;
    color: var(--primary_color);
    padding: 6px;
    border-radius: 10px;
    background: rgba(0, 56, 255, 0.039);
    border: 1px solid rgba(0, 56, 255, 0.078);
    display: flex;
    align-content: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
.address-box li {
    margin-bottom: 8px;
}
.address-box li a{
    display: flex;
    align-items: center;
    gap: 8px;
}
.online_class .form-control{
background-color: var(--bg_light);
}

  /* Faculty */
.single_faculty{
    transition: all 0.3s linear;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 50px;
}
.faculty_inner{
    border-radius: 10px;
    background: var(--bg_light);
}
.single_faculty .enrollnow{
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--primary_color);
    color: var(--white_color);
    font-weight: 500;
    font-size: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.39);
}
.single_faculty .enrollnow:hover {
    background-color: var(--black_color);
    color: var(--white_color);
    text-shadow: 3px 2px 4px rgba(255, 255, 255, 0.39);
}
.faculty_text{
    text-align: center;
    padding: 20px 30px;
}
.faculty_text h3{
    font-size: 24px;
    line-height: 34px;
    color: var(--primary_color);
    margin-bottom: 0px;
    font-weight: 500;
}
.exprience{
    color: var(--light_gray);
    margin-bottom: 15px;
}
.faculty_text ul{
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.faculty_img{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: -50px;
}
.faculty_img img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
/* about us */
.aboutarea img{
    width: 100%;
}
.aboutContent h5{
    color: var(--light_gray);
    font-size: 20px;
    font-weight: 500;
}
.aboutContent h2{
    font-family: "Rancho", cursive;
    font-weight: 400;
    font-size: 34px;
}
.signature h3{
    font-size: 20px;
    color: var(--black_color);
    margin-bottom: 0;
}
.signature span{
    color: var(--light_gray);
}
.signature img{
    height: 70px;
    width: auto;
}
.counterup{
    padding: 20px 30px;
    background-color: var(--bg_light);
}
.countr{
    text-align: center;
    border-right: 2px solid var(--light_gray);
}
.countr h3{
    font-size: 42px;
    font-weight: 600;
    color: var(--black_color);
}
.countr p{
    color: var(--black_color);
}
.counterup .col:last-child .countr{
    border-right: 0px;
}
.ourStory{
    background: url(../img/story-bg.png) no-repeat;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}
.ourStory::before{
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 55, 255, 0.525);
    z-index: -1;
}
.storyBox h3{
    color: var(--white_color);
    background-color: var(--primary_color);
    font-size: 20px;
    padding: 15px;
    margin: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.storyBox > div{
    padding: 25px;
    background-color: var(--white_color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.certificate img{
    width: 100%;
}
.play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 62px;
    width: 62px;
    border-radius: 50%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--light_gray);
}
.play-icon span{
    height: 56px;
    width: 56px;
    border: 4px solid var(--white_color);
    border-radius: 50%;
    color: var(--white_color);
    font-size: 30px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.popup-gallery .video:hover .play-icon{
    background: var(--yellow_color);
}
.popup-gallery .video .play-icon:hover span{
    color: var(--primary_color);
}
.popup-gallery img{
    width: 100%;
}