/*-----------------------------------------------------------------------------------

    Template Name: Erudition - Erudition Html Template
    Template URI: 
    Description: Erudition Html Template
    Author: Rashadul Islam
    Author URI: http://rashadulislam.com/
    Version: 1.0

-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
  
    1. Home One
        1.1 Header Top
        1.2 Header Bottom
        1.3 Slider Area
        1.4 Course Subscription
        1.5 Feature Area
        1.6 Populer Course
        1.7 Callto Action
        1.8 Teacher Area
        1.9 Event Testimonial
       1.10 Subscription Area
       1.11 Feature Blog
       1.12 Footer Area
    2. About Page
    3. Contact Area
    4. Course Page
    5. Blog
    6. Event

-----------------------------------------------------------------------------------*/

/*============================================
* 1. Home One / 1.1 Header Top
*=============================================*/

.header-top {
    background-color: #339999;
}
ul.htp-addresss li {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    margin-right: 28px;
}

ul.htp-addresss li i {
    margin-right: 8px;
}

ul.htp-social {
    text-align: right;
}

ul.htp-social li {
    display: inline-block;
}

ul.htp-social li a {
    display: block;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    margin: 9px 3px;
}

ul.htp-social li:last-child a {
    margin-right: 0;
}

ul.htp-social li a:hover {
    background-color: #ffb606;
    border: 1px solid #ffb606;
}


/*============================================
* END Header Top
*=============================================*/

/*============================================
* 1.2 Header Bottom
*=============================================*/

.header-bottom {
    position: relative;
    height: 78px;
}
.hb-inner{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
}
.sticky-header .hb-inner{
    position: fixed;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

.logo {
    display: block;
}

.logo a {
    display: inline-block;
}

.logo a img {
    max-width: 100%;
}
.main-menu nav ul {
    text-align: right;
}

.main-menu nav ul li {
    display: inline-block;
    position: relative;
}

.main-menu nav ul li a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 30px 20px;
}

.main-menu nav ul li:last-child a {
    padding-right: 0;
}

.main-menu nav ul li:hover>a,
.main-menu nav ul li.active>a {
    color: #ffb606;
}

.main-menu nav .submenu {
    position: absolute;
    left: 0;
    top: 78px;
    z-index: 5;
    width: 220px;
    padding: 4px 0px;
    text-align: left;
    background-color: #fff;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.main-menu nav ul li:hover>.submenu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.main-menu nav .submenu li {
    display: block;
}

.main-menu nav .submenu li a {
    padding: 11px 20px;
    font-weight: 500;
}

.htp-register-btn {
    text-align: right;
}

.htp-register-btn a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ffb606;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
}

.htp-register-btn a:hover {
    background-color: #339999;
}

/*mobile menu start*/
.slicknav_menu .slicknav_menutxt {
    display: none;
}

.slicknav_menu {
    background: transparent;
    padding: 0;
}

.slicknav_menu .slicknav_icon-bar {
    height: 4px;
    width: 27px;
    margin: 4px 0px;
    background-color: #ffb606;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slicknav_btn {
    background-color: transparent;
    position: relative;
    margin-top: -46px;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(2px, 10px);
    transform: rotate(45deg) translate(2px, 10px);
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-9px);
    transform: rotate(-45deg) translateY(-9px);
}

.slicknav_nav {
    margin: 0px;
    padding: 16px 0px 18px;
    background-color: #222;
}

.slicknav_nav a:hover,
.slicknav_nav a:visited {
    background: #fefefe none repeat scroll 0 0;
    border-radius: 0;
    color: #fff;
}

.slicknav_nav .slicknav_arrow {
    float: right;
}

.slicknav_nav>a {
    font-size: 14px;
    letter-spacing: 0.01em;
}

.slicknav_menu>a {
    position: relative;
    top: -19px;
    cursor: pointer;
}

.slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: #444;
}

.slicknav_nav li.active>a>a {
    color: #ffb607;
}

/*============================================
* END Header Bottom
*=============================================*/

/*============================================
* 1.3 Slider Area
*=============================================*/
.zoom-slider-area {
    height: 650px;
    position: relative;
    z-index: 1;
}

.zoom-slider-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6);
}

.slider-content {
    position: relative;
    z-index: 1;
    padding: 60px 15px 60px 100px;
}

.slider-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 6px;
    background-color: rgba(51, 153, 153,0.3);
}

.slider-content h2 {
    font-size: 63px;
    font-weight: 900;
    color: #ffffff;
    line-height: 60px;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.slider-content a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #339999;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
}

.slider-content a i{
    margin-left: 6px;
}
.slider-content a:hover {
    background-color: #fff;
    color: #222;
}

/*============================================
* END Slider Area
*=============================================*/

/*============================================
* 1.4 Course Subscription
*=============================================*/
.course-subscription-area{
    position: relative;
    z-index: 5;
}
.course-subscription{
    background: #ffb606 url(../img/icon/pie-face.png);
    padding: 50px 60px;
    border-radius: 5px;
    margin-top: -77px;
}
.course-subscription form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.course-subscription input,
.course-subscription .select-course{
    flex: 1;
    margin-right: 15px;
}
.select-course .course-select,
.course-subscription input{
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: none;
    padding-left: 20px;
    line-height: 50px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 15px;
}
.nice-select .list{
    width: 100%;
}
.course-subscription button{
    flex-basis: 150px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #222222;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 52px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.course-subscription button i{
    margin-left: 6px;
}
.course-subscription button:hover {
    background-color: #fff;
    color: #222;
}

/*============================================
* END Course Subscription
*=============================================*/

/*============================================
* 1.5 Feature Area
*=============================================*/
.single-feature{
        border: 1px solid #e9e0e0;
    padding: 45px 35px;
    position: relative;
    z-index: 1;
}
.bl-none{
    border-left: none;
}
.single-feature:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0;
    background: url(../img/feature-bg.jpg) center center/cover no-repeat;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(27,27,27,0.9);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature:hover:before,
.single-feature:hover:after{
    opacity: 1;
}
.single-feature .icon{
        font-size: 57px;
    color: #ffb606;
    margin-bottom: 20px;
}
.single-feature h4{
        font-size: 20px;
    font-weight: 500;
    color: #339999;
    letter-spacing: 0;
    margin-bottom: 13px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature p{
    color: #515151;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-feature:hover h4,
.single-feature:hover p{
    color: #fff;
}

/*============================================
* END Feature Area
*=============================================*/

/*============================================
* 1.6 Populer Course
*=============================================*/
.section-title{
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2{
        font-size: 36px;
    font-weight: 500;
    color: #339999;
    letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 30px;
}
.section-title p{
        font-size: 14px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}
.single-course{
    overflow: hidden;
    border: 1px solid #e9e0e0;
    border-radius: 0px 0px 8px 8px;
}
.course-thumb{
    display: block;
    border-radius: 0px 0px 5px 5px;
    overflow: hidden;
}
.course-thumb a{
    display: inline-block;
}
.course-thumb a img{
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-course:hover .course-thumb a img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.course-content{
    position: relative;
    z-index: 1;
    margin-top: -22px;
    padding: 0px 15px 50px 30px;
}
.course-feee{
        display: inline-block;
    background: #ffb606;
    border: 2px solid #fff;
    border-radius: 23px;
    color: #fff;
    letter-spacing: 0;
    justify-content: space-between;
}
.course-feee span{
    display: inline-block;
    padding: 4px 0;
    width: 90px;
    text-align: center;
}
.course-feee span:last-child{
    border-left: 2px solid #fff;
}
.course-content h2 a{
        display: block;
    font-size: 19px;
    color: #339999;
    font-weight: 500;
    margin: 17px 0px 17px;
    letter-spacing: 0;
}
.course-content h2 a:hover{
    color: #ffb606;
}
.course-content p{
    font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
    line-height: 28px;
    margin-bottom: 24px;
}
.s-course-meta{
    overflow: hidden;
}
.s-course-meta .sc-thumb{
        float: left;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}
.s-course-meta .sc-text{
    overflow: hidden;
}
.s-course-meta .sc-text h4{
        font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: #222222;
}
.s-course-meta .sc-text span{
    font-size: 14px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}

/*============================================
* END Populer Course
*=============================================*/

/*============================================
* 1.7 Callto Action
*=============================================*/
.callto-action{
    position: relative;
    z-index: 1;
    background: #339999 url(../img/icon/pie-face.png);
}
.callto-action:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: -1;
    background: #fdb506 url(../img/icon/pie-face.png);
}
.cta-left{
    position: relative;
    z-index: 1;
    padding: 50px 0px;
    padding-right: 19%;
}
.cta-left-inner{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    -webkit-transform: skew(32deg);
    -ms-transform: skew(32deg);
    -o-transform: skew(32deg);
    transform: skew(32deg);
    border-right: 10px solid #fff;
}
.cta-left-inner:before{
    content: '';
    position: absolute;
    right: -40%;
    top: 0;
    height: 100%;
    width: 140%;
    z-index: -1;
    -webkit-transform: skew(-32deg);
    -ms-transform: skew(-32deg);
    -o-transform: skew(-32deg);
    transform: skew(-32deg);
    background: #fdb506 url(../img/icon/pie-face.png);
}
.cta-left h2{
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 35px;
    margin-bottom: 21px;
}
.cta-left a{}
.cta-left a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #222222;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
}

.cta-left a i{
    margin-left: 6px;
}
.cta-left a:hover {
    background-color: #fff;
    color: #222;
}
.cta-right{
    display: flex;
    flex-wrap: wrap;
    padding-left: 100px;
    justify-content: space-between;
}
.cta-count-single{
    text-align: center;
}
.cta-count-single .icon{
        height: 70px;
    width: 70px;
    font-size: 59px;
    background: #fff;
    color: #222;
    text-align: center;
    line-height: 70px;
    border-radius: 3px;
    margin: auto;
    margin-bottom: 9px;
}
.cta-count-single span{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
}

/*============================================
* END Callto Action
*=============================================*/

/*============================================
* 1.8 Teacher Area
*=============================================*/
.teacher-area{}
.single-teacher{
    box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    border-radius: 0px 0px 40px 40px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-teacher:hover{
    box-shadow: 0px 1px 5px rgba(255, 182, 6,0.3);
}
.teacher-thumb{
    position: relative;
    display: block;
    border-radius: 0px 0px 40px 40px;
    overflow: hidden;
}
.teacher-thumb img{
    max-width: 100%;
}
ul.t-social{
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-teacher:hover ul.t-social{
    opacity: 1;
}
ul.t-social li{
    display: inline-block;
}
ul.t-social li a{
    display: block;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    margin: 0px 5px;
    background: #ffb606;
}
ul.t-social li a:hover{
    background-color: #fff;
    color: #ffb606;
}
.single-teacher:hover ul.t-social li a{
    margin: 0;
}
.tch-meta{
    padding: 13px 0px;
    text-align: center;
}
.tch-meta h4 a{
        font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    color: #222222;
}
.tch-meta h4 a:hover{
    color: #f3ae06;
}
.tch-meta span{
	font-size: 14px;
	font-weight: 300;
	color: #000000;
	letter-spacing: 0;
}

/*============================================
* END Teacher Area
*=============================================*/

/*============================================
* 1.9 Event Testimonial
*=============================================*/
.upcooming-event >h2,
.our-student-say >h2{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    margin-bottom: 70px;
    padding-bottom: 36px;
    position: relative;
}
.upcooming-event >h2:before,
.our-student-say >h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 80px;
    background-color: #ffb606;
    border-radius: 5px;
}
.event-list{}
.signle-event:first-child{
    border-top: 1px solid #d9d9d9;
}
.signle-event{
    padding: 30px 0px;
    border-bottom: 1px solid #d9d9d9;
}
.ev-left{
        float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #ffb606;
    padding: 18px 10px;
    border-radius: 4px;
    margin-right: 25px;
}
.ev-left strong{
    font-size: 35px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 5px;
}
.ev-left span{
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 20px;
}
.ev-content{
    overflow: hidden;
}
.ev-content h2 a{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0;
    margin-bottom: 6px;
}
.ev-meta{}
.ev-meta span{
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    color: #515151;
    font-weight: 300;
    letter-spacing: 0;
    margin-right: 10px;
}
.ev-meta span i {
    margin-right: 5px;
}
.ev-content p{
    font-size: 16px;
    color: #515151;
    font-weight: 300;
    letter-spacing: 0;
    margin-top: 8px;
}
.our-student-say{
    position: relative;
    z-index: 1;
}
.our-student-inner:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 7px;
    border-bottom: 15px solid #222222;
}
.our-student-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0px;
    border-radius: 5px;
    background: #ffb606 url(../img/icon/pie-face.png);
}
.student-thumbnil-active{
    margin-bottom: 45px;
    padding-top: 30px;
}
.student-thumbnil-active .item{
    display: block;
    border: 3px solid #fff;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 25px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.student-thumbnil-active .center .item{
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
}
.student-thumbnil-active .item img{
    max-width: 100%;
}
.student-cmnt-active{
    padding: 0px 40px;
}
.student-cmnt-active .item{
    text-align: center;
}
.student-cmnt-active .item h4{
        font-size: 17px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0;
    line-height: 23px;
}
.student-cmnt-active .item span{
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0;
}
.student-cmnt-active .item p{
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    font-style: italic;
    margin-top: 22px;
}

.student-cmnt-active .owl-dots{
    text-align: center;
    margin-top: 40px;
}
.student-cmnt-active .owl-dot{
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0px 4px;
    display: inline-block;
}
.student-cmnt-active .owl-dot.active{
    background: #222222;
}

/*============================================
* END Event Testimonial
*=============================================*/

/*============================================
* 1.10 Subscription Area
*=============================================*/
.subscription-area{
    padding: 60px 0px;
    background: #ffb606 url(../img/icon/pie-face.png);
}
.subscription-area h2{
    font-size: 27px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 33px;
}
.subs-form{}
.subs-form form{
    position: relative;
}
.subs-form form input[type='email']{
    height: 56px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    padding-left: 20px;
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 300;
    outline: none;
    border: none;
}
.subs-form form input[type='submit']{
    position: absolute;
    right: 4px;
    top: 4px;
    height: 48px;
    background-color: #222222;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    padding: 0px 15px;
    line-height: 48px;
    border: none;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.subs-form form input[type='submit']:hover{
    background-color: #fcb406;
}

/*============================================
* END Subscription Area
*=============================================*/

/*============================================
* 1.11 Feature Blog
*=============================================*/
.ft-single-blog{
    border-radius: 7px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #e9e0e0;
}
.ft-single-blog:hover{
    border: 1px solid #ffb606;
}
.blg-thumb{
    display: block;
    overflow: hidden;
}
.blg-thumb a{
    display: inline-block;
}
.blg-thumb a img{
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.ft-single-blog:hover .blg-thumb a img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.blg-meta{
    text-align: center;
    margin-top: -19px;
    position: relative;
    z-index: 5;
}
.blg-meta span{
    background: #ffb606;
    border: 2px solid #fff;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    color: #ffffff;
    display: inline-block;
    padding: 4px 18px;
}
.blg-content{
    padding: 0px 15px 30px 40px;
}
.blg-content h2 a{
        display: block;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    margin: 23px 0px 16px;
}
.blg-content h2 a:hover{
    color: #ffb606;
}
.blg-content p{
    font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
}
.blg-content a.readmore_btn{
        display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ffb606;
    padding: 6px 20px;
    border-radius: 20px;
    margin-top: 26px;
}
.blg-content a.readmore_btn:hover{
    background-color: #222;
}

/*============================================
* END Feature Blog
*=============================================*/

/*============================================
* 1.12 Footer Area
*=============================================*/
.footer-top{
    background-color: #339999;
}
.about-company a {
    display: inline-block;
}
.about-company a img{
    max-width: 100%;
}
.about-company p{
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0;
    margin: 24px 0px 24px;
}
.about-company ul{
    text-align: left;
}
.important-link h2{
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    margin-bottom: 37px;
}
.important-link ul li a i{
    margin-right: 10px;
}
.important-link ul li a{
        display: block;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 13px;
    letter-spacing: 0;
}
.important-link ul li a:hover{
    color: #ffb606;
}
.footer-map{}
.footer-map #google-map{
    height: 185px;
    border-radius: 8px;
}
.footer-contact{
    overflow: hidden;
    margin-top: 20px;
}
.footer-contact ul li{
    float: left;
    width: 50%;
    overflow: hidden;
}
.footer-contact ul li p{
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0;
    overflow: hidden;
    line-height: 23px;
}
.footer-contact ul li span{
        float: left;
    font-size: 24px;
    color: #fff;
    margin-top: 4px;
    margin-right: 14px;
}

/*footer-bottom*/
.footer-bottom{
    text-align: center;
    background-color: #343333;
}
.footer-bottom p{
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0;
    padding: 8px 0px;
}

/*============================================
* END Footer Area
*=============================================*/

/*============================================
* 2. About Page
*=============================================*/
.crumbs-area{
    z-index: 1;
    padding: 104px 0px;
    position: relative;
    background: #222 url(../img/bg/crumbs-bg.jpg) center center/cover no-repeat;
}
.crumbs-area:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: rgba(31, 51, 69, 0.7);
}
.crumbs-inner{}
.crumbs-inner h2{
    font-size: 31px;
    color: #ffb606;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 14px;
}
.crumbs-inner ul{}
.crumbs-inner ul li{
    display: inline-block;
}
.crumbs-inner ul li a,
.crumbs-inner ul li span{
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0;
    display: block;
}
.crumbs-inner ul li a{
    position: relative;
    margin-right: 14px;
}
.crumbs-inner ul li a:hover{
    text-decoration: underline;
}
.crumbs-inner ul li a:before{
    content: '-';
    position: absolute;
    right: -13px;
    top: 0;
}

/*about-area*/
.about-area{}
.abt-left{}
.abt-left img{
    width: 387px;
    max-width: 100%;
}
.abt-right-content{}
.abt-right-content h2{
        font-size: 30px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: 32px;
}
.abt-right-content p{
        font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
    margin-bottom: 21px;
}
.abt-right-content a{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ffb606;
    display: inline-block;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    margin-top: 30px;
}
.abt-right-content a:hover{
    background-color: #222;
}

/*education-years-area*/
.education-years-area{}
.edu-years{}
.edu-years-filter{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
    margin-bottom: 32px;
}
.edu-years-filter:before{
    content: '';
    position: absolute;
    left: 3%;
    top: 58px;
    width: 94%;
    height: 3px;
    background: #e0e0e0;
}
.edu-years-filter a{
        display: block;
    height: 80px;
    width: 80px;
    background: #ffb606;
    text-align: center;
    line-height: 80px;
    border-radius: 5px;
    font-size: 21px;
    font-weight: 900;
    color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.edu-years-filter a.active{
    background-color: #222222;
    color: #fff!important;
}
.edu-years-filter a span{
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.edu-yeras-content{}
.edu-yeras-content .tab-pane ul li{
        font-size: 16px;
    font-weight: 300;
    color: #515151;
    letter-spacing: 0;
    line-height: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.edu-yeras-content .tab-pane ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 10px;
    width: 10px;
    background-color: #222222;
    border-radius: 50%;
}
.edu-right-thumb{
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: url(../img/bg/edu-right-thumb.jpg) center center/cover no-repeat;
}

/*============================================
* END About Page
*=============================================*/

/*============================================
* 3. Contact Area
*=============================================*/
.wpcf7 h2{
        font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
    margin-bottom: 70px;
    padding-bottom: 36px;
    position: relative;
}
.wpcf7 h2:before{
        content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 80px;
    background-color: #ffb606;
    border-radius: 5px;
}
.wpcf7 form{}
.wpcf7 form input,
.wpcf7 form textarea{
        width: 100%;
    height: 50px;
    border: 1px solid #e9e0e0;
    border-radius: 3px;
    padding-left: 20px;
    letter-spacing: 0;
    font-weight: 300;
    margin-bottom: 20px;
}
.wpcf7 form textarea{
    height: 155px;
}
.wpcf7 form input[type='submit']{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #ffb606;
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.02em;
    max-width: 100%;
    border-radius: 3px;
    outline: none;
    padding: 0;
    cursor: pointer;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.wpcf7 form input[type='submit']:hover{
    background-color: #222;
}
.contact-r-thumb{}
.contact-r-thumb img{}

.contact-info-section{
    position: relative;
    z-index: 1;
    padding: 100px 0px;
}
.contact-info-section #google-map{
    height: 550px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.ft-map-img{
    height: 180px;
    border-radius: 5px;
    overflow: hidden;
    background: url(../img/bg/contact-gmp-bg.jpg) center center/cover no-repeat;
}

.contact-info-box{
    width: 330px;
    max-width: 100%;
    border-radius: 5px;
    padding: 80px 15px 30px 40px;
    background-color: #ffb606;
}
.cnt-single{
    margin-bottom: 40px;
}
.cnt-single .icon{
        float: left;
    height: 50px;
    width: 50px;
    background: #fff;
    color: #222222;
    font-size: 22px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}
.cnt-content span{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 23px;
}

/*============================================
* END Contact Area
*=============================================*/

/*============================================
* 4. Course Page
*=============================================*/
.all-courses .single-course{
    margin-bottom: 30px;
}
.courses-list .single-course{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.courses-list .course-thumb{
    flex-basis: 40%;
}
.courses-list .course-content{
    flex-basis: 60%;
    margin-top: 0;
    padding-bottom: 0;
}
.pagination-area {
    margin-top: 20px;
}

.pagination-area ul {
    text-align: center;
}

.pagination-area ul li {
    display: inline-block;
}

.pagination-area ul li a,
.pagination-area ul li span{
        display: block;
    background: #222222;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
.pagination-area ul li span,
.pagination-area ul li:hover a,
.pagination-area ul li:hover span{
    background-color: #ffb606;
}
.widget {
    margin-bottom: 50px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget_search form {
    position: relative;
}

.widget_search form input {
    height: 45px;
    width: 100%;
    border: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 45px;
    background: #fff;
    letter-spacing: 0;
}

.widget_search form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    background-color: #f8c000;
}

h2.widget_title {
    font-size: 24px;
    color: #333333;
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 34px;
}

h2.widget_title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 40px;
    height: 6px;
    z-index: 1;
    background: #f8c000;
}

h2.widget_title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 230px;
    height: 1px;
    background: #b7b7b7;
}

.widget_category ul li {
    display: block;
}

.widget_category ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    border-bottom: 1px solid #b7b7b7;
    letter-spacing: 0;
    line-height: 20px;
    margin: 13px 0px;
    padding-bottom: 13px;
    position: relative;
    padding-left: 18px;
}

.widget_category ul li a:first-child {
    margin-top: 0;
}

.widget_category ul li a:before {
    content: '\f0da';
    position: absolute;
    left: 0;
    top: 0;
    font-family: fontawesome;
}

.widget_category ul li a:hover {
    color: #f8c000;
}

.widget_category ul li a span {
    float: right;
}
.rcp_single {
    overflow: hidden;
    margin-bottom: 20px;
}

.rcp_single:last-child {
    margin-bottom: 0;
}

.rcp_thumb {
    float: left;
    margin-right: 20px;
}

.rcp_thumb img {
    max-width: 70px;
}

.rcp_content {
    overflow: hidden;
    margin-top: -7px;
}

.rcp_content h2 a {
    display: block;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 600;
}

.rcp_content h2 a:hover {
    color: #f8c000;
}

.rcp_content span {
        font-size: 13px;
    font-weight: 400;
    color: #999999;
    letter-spacing: 0;
}

.widget_tags ul li {
    display: inline-block;
}

.widget_tags ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0;
    border: 1px solid #333333;
    padding: 8px 13px;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-right: 3px;
}

.widget_tags ul li a:hover {
    background-color: #333333;
    color: #fff;
}

/*course details*/
.course-tags{
    margin-top: 30px;
}
.course-tags h4{
        display: inline-block;
    margin-right: 17px;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
}
.course-tags a{
        display: inline-block;
    color: #ffb606;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-right: 8px;
    border-right: 1px solid #f1e9e9;
    padding-right: 8px;
    line-height: 15px;
    margin-bottom: 9px;
}
.course-tags a:hover{
    color: #444;
}

/*comment area*/
.comment-area {
    overflow: hidden;
    margin-bottom: 22px;
    margin-top: 60px;
}

h4.comment-title {
    font-size: 21px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 19px;
}

h4.comment-title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 70px;
    background-color: #999999;
}

.comment-info-inner article {
    overflow: hidden;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.comment-thumb {
    float: left;
}

.comment-thumb img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.comment-content {
    overflow: hidden;
}

.comment-content .meta-data h2 {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.comment-content .meta-data span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.comment-content p {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0;
    line-height: 23px;
    margin-top: 16px;
}

.comment-content a {
    margin-top: 12px;
    display: inline-block;
    color: #999999;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 14px;
}

.comment-content a:hover {
    color: #f8c000;
}

.children {
    padding-left: 60px;
}

/*leave-comment-area*/
.leave-comment-area form input,
.leave-comment-area form textarea {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #999999;
    padding-left: 20px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: capitalize;
}

.leave-comment-area form textarea {
    height: 120px;
    padding-top: 12px;
}

.leave-comment-area form #c_submit {
    margin-bottom: 0;
    max-width: 120px;
    background-color: #ffb606;
    text-align: center;
    padding-left: 0;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.leave-comment-area form #c_submit:hover {
    background-color: #333;
}

/*============================================
* END Course Page
*=============================================*/

/*============================================
* Blog
*=============================================*/
.all-blog .ft-single-blog{
    margin-bottom: 30px;
}

/*============================================
* 6. Event
*=============================================*/
.event-list-type{
    margin-bottom: 30px;
}
.event-list-type .evnt-thumb{
        border-radius: 10px;
    overflow: hidden;
}
.event-list-type .evnt-thumb img{
    max-width: 100%;
}
.event-list-type .ev-left{
        float: none;
    width: 120px;
    margin-bottom: 40px;
}
.event-list-type .ev-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-list-type .ev-content p {
    margin-top: 20px;
}
.ev-content h2 a:hover{
    color: #ffb606;
}
/*event details*/
.event-details{}
.event-details .ev-content{
    padding: 20px 15px;
    display: flex;
    align-items: center;
}
.event-details .ev-meta{
    overflow: hidden;
}
.event-details p.text{
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 28px;
}
.countdown{
    margin-top: 15px;
    padding: 0px 10px;
    margin-bottom: 30px;
}
.countdown >div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cdown{
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 34px 0px 15px;
    margin: 5px;
    text-align: center;
}
.cdown span{
    display: block;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
}
.cdown p{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #555;
}
.feature-teacher{
    margin-top: 60px;
}

/*============================================
* END Event
*=============================================*/
