/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif; */
/*====================================================== Banner ========================================*/
.banner{
    width: 100%;
    display: block;
    padding: 200px 0 40px;
    margin: 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.banner:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 26, 66, 0.40);
}
.banner .banner-content{
    width: 100%;
    max-width: 780px;
    color: #fff;
    position: relative;
    z-index: 2;
}
.banner .banner-heading{
    width: 100%;
    position: relative;
    height: 100%;
}
.banner .banner-heading .block {
    width: 0%;
    height: inherit;
    background: #fff;
    position: absolute;
    /* animation: mainBlock 2s cubic-bezier(.74, .06, .4, .92) forwards; */
    display: flex;
}
body.animation-wrap  .block{
    animation: mainBlock 2s cubic-bezier(.74, .06, .4, .92) forwards;
}
.banner .banner-content h1{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;    
    text-transform: capitalize;
    margin: 0;
    opacity: 0;
}
body.animation-wrap .banner .banner-content h1{
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
}
@keyframes mainBlock {
    0% {
      width: 0%;
      left: 0;
  
    }
    50% {
      width: 100%;
      left: 0;
  
    }
    100% {
      width: 0;
      left: 100%;
    }
  }
  
  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
.banner-para-n-cta{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.9s ease-in-out;
    -moz-transition: 0.9s ease-in-out;
    -ms-transition: 0.9s ease-in-out;
    -o-transition: 0.9s ease-in-out;
    transition: 0.9s ease-in-out;
    top: -100px;
    position: relative;
}
.banner-para-n-cta.active{
    top: 0;
    opacity: 1;
    visibility: visible;
}
.banner .banner-content p{
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 30px;
    line-height: 39px;
    text-transform: capitalize;
    margin: 30px 0;
    width: 100%;
    max-width: 700px;
}
.banner .banner-cta{
    display: flex;
    align-items: center;
}
.banner .banner-cta .cta{
    padding: 13px 37px;
    margin-right: 35px;
}
.banner .banner-blocks{
    width: 100%;
    display: block;
    padding: 44px 0 0;
    margin: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.banner .banner-blocks .each-block{
    background: transparent;
    border-radius: 10px;
    padding: 20px 10px;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/*.banner .banner-blocks .each-block:hover{
    background: rgba(39, 48, 68, 0.6);
}*/
.banner .banner-blocks .each-block h3{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 22px;
    text-transform: capitalize;
    margin: 15px 0;
}
.banner .banner-blocks .each-block p{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}


.moveable_item{
    position: absolute;
    top: 44px;
    left: -100%;
    background: rgba(39, 48, 68, 0.6);
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    z-index: -9;
}
/* ==========================================Feature Sec========================================== */
.feature-sec{
	width: 100%;
	display: block;
	padding: 80px 0 50px;
	margin: 0;
}
.feature-sec .each-feature{
    margin-bottom: 30px;
    position: relative;
}
.feature-sec .each-feature:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.56);
    border-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.feature-sec .each-feature:hover:after{
    background: rgba(38,48,68,.8);
}
.feature-sec .each-feature img{
    width: 100%;
    border-radius: 10px;
}
.feature-sec .each-feature .content-wrap{
    color: #fff;
    position: absolute;
    left: 20px;
    bottom: 35px;
    z-index: 2;
}
/* ==========================================hy Us Sec========================================== */
.why-us-sec{
    width: 100%;
    display: block;
    padding: 200px 0 0;
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.why-us-sec:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #273044;
    opacity: 0.85;
}
.why-us-sec .img-wrap{
    position: absolute;
    bottom: 0;
}
.why-us-sec .row{
    position: relative;
    z-index: 2;
    align-items: center;
}
.why-us-sec .content-wrap{
    /* padding: 70px 0 0; */
    margin-top: -70px;
}
.why-us-sec .content-wrap .subheading,
.why-us-sec .content-wrap .heading{
    color: #fff;
}
.why-us-sec .content-wrap ul{
    padding: 0;
    margin: 25px 0 0;
}
.why-us-sec .content-wrap ul li{
    position: relative;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    padding: 0 0 25px 30px;
    background-image: url('../images/img-12.png');
    background-position: top left;
    background-repeat: no-repeat;
}
.why-us-sec .cta-wrap{
    position: relative;
    left: -15px;
}
/*====================================================== Courses Sec ========================================*/
.courses-sec{
    width: 100%;
    display: block;
    padding: 80px 0;
    margin: 0;
    text-align: center;
}
.courses-sec .row{
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
}
.courses-sec .each-course{
    background: #fff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}
/* .courses-sec .each-course:hover{
    transform: translateY(-10px);
} */
.course-hover-box{
    background: #fff;
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.13);
    border-radius: 16px;
    padding: 30px 20px;
    width: 355px;
    min-height: 425px;
    position: absolute;
    z-index: 999999999;
    top: -20px;
    left: -50px;
    right: -50px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.courses-sec .each-course:hover .course-hover-box{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: .3s ease;
}
.course-hover-box .user-wrap{
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}
.course-hover-box .user-wrap img{
    border-radius: 100% !important;
    width: 46px !important;
    height: 46px !important;
}
.course-hover-box .user-wrap h6{
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    color: #9EA5BD;
    margin: 0 0 0 10px;
}
.course-hover-box h2{
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-transform: capitalize;
    color: #252525;
    margin: 0;
}
.course-hover-box p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;        
    color: #9EA5BD;
    margin: 10px 0;
}
.course-hover-box .lecture-n-hour{
    display: flex;
    align-items: center;
}
.course-hover-box .lecture-n-hour img{
    width: unset !important;
    height: unset !important;
    border-radius: 0 !important;
    padding-right: 10px;
    display: inline-block;
}
.course-hover-box .lecture-n-hour p i{
    padding-right: 10px;
}
.course-hover-box .lecture-n-hour p{
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #9EA5BD;
    margin: 0;
}
.course-hover-box .lecture-n-hour p + p{
    margin-left: 10px;
}
.course-hover-box .cta-n-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 0;
}
.course-hover-box .cta-n-price .cta{
    font-size: 15px;
}
.course-hover-box .cta-n-price .price-wrap{
    text-align: right;
}
.course-hover-box .cta-n-price .price-wrap h6{
    font-weight: 400;
    font-size: 16px;
    text-decoration-line: line-through;
    text-transform: capitalize;    
    color: #9EA5BD;
    margin: 0;
}
.course-hover-box .cta-n-price .price-wrap h5{
    font-weight: 400;
    font-size: 24px;
    text-transform: capitalize;    
    color: #385BCE;
    margin: 0;  
}
.courses-sec .each-course img{
    width: 100%;
    border-radius: 16px 16px 0 0;
}
.courses-sec .each-course .content-wrap{
    padding: 20px 10px;
}
.courses-sec .each-course .content-wrap h5{
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    color: #9EA5BD;
    margin: 10px 0;
}
.courses-sec .each-course .content-wrap h3{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-transform: capitalize;
    color: #252525;
    margin: 0;
}
.courses-sec .each-course .time-n-eye{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.courses-sec .each-course .time-n-eye p{
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #9EA5BD;
    margin: 0;
}
.courses-sec .each-course .time-n-eye p a{
    color: #9EA5BD;
}
.courses-sec .each-course .time-n-eye p a:hover{
    color: #385BCE;
}
.courses-sec .each-course .time-n-eye p i{
    margin-right: 5px;
}
.courses-sec .each-course .time-n-eye p .fa-eye{
    color: #385BCE;
}
.courses-sec .cta-wrap .cta{
    padding: 13px 47px;
}
.course-listing-page{
    padding-top: 50px;
    padding-bottom: 0;
}
.course-listing-page .heading{
    text-align: left;
    padding-top: 50px;
}
.course-listing-page > hr{
    height: 2px !important;
    background: #E4E4E4;
    margin: 0;
}
.course-listing-page .container{
    padding-left: 0;
    padding-right: 0;
}
/*====================================================== Teaching and Hire Sec ========================================*/
.teaching-n-hire-sec{
    width: 100%;
    display: block;
}
.teaching-n-hire-sec .row{
    border-top: 2px solid #E4E4E4;
    padding-top: 80px;
}
.teaching-n-hire-sec .each-sec{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.teaching-n-hire-sec .each-sec .content-wrap{
    margin-left: 25px;
}
.teaching-n-hire-sec .each-sec .content-wrap h3{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 28px;
    text-transform: capitalize;    
    color: #3C4858;
    margin: 0;
}
.teaching-n-hire-sec .each-sec .content-wrap p{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: #3C4858;
    margin: 15px 0 25px;
}
.teaching-n-hire-sec .each-sec .content-wrap .cta{
    padding: 13px 22px;
    min-width: 160px;
    text-align: center;
}
/*====================================================== Feedback Sec ========================================*/
.feedback-sec{
    width: 100%;
    display: block;
    margin: 105px 0 0;
    padding: 100px 0 90px;
    background: #F5F5F5;
    text-align: center;
}
.feedback-sec .feedback-slider{
    margin-top: 35px;
    text-align: left;
}
.feedback-sec .feedback-slider .slick-list {
    overflow: visible;
}
.feedback-slider .item{
    margin: 0;
}
.feedback-slider .each-item{
    background: #fff;
    box-shadow: 0px 0px 14px 10px rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 106px 30px 30px 45px;
    width: 100%;
    max-width: 555px;
    position: relative;
    opacity: 0.56;
    transition: all 0.5s ease-in-out;
    transform: scale(85%);
}
.feedback-slider .item.slick-center .each-item{
    opacity: 1;
    transform: scale(105%);
}
.feedback-slider .each-item:after{
    position: absolute;
    content: '';
    top: 45px;
    left: 45px;
    width: 54px;
    height: 43px;
    background-image: url('../images/img-25.png');
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.feedback-slider .each-item:hover:after{
    animation: bellshake .5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes bellshake {
    0% { transform: rotate(0); }
    15% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    45% { transform: rotate(4deg); }
    60% { transform: rotate(-4deg); }
    75% { transform: rotate(2deg); }
    85% { transform: rotate(-2deg); }
    92% { transform: rotate(1deg); }
    100% { transform: rotate(0); }
}
.feedback-slider .each-item blockquote{
    margin: 0;
}
.feedback-slider .each-item p{
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    text-transform: capitalize;
    color: #3C4858;
    margin: 0;
}
.feedback-slider .each-item .profile-n-info{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.feedback-slider .profile-n-info img{
    border-radius: 100%;
    margin-right: 5px;
}
.feedback-slider .profile-n-info .info-wrap h5{
    font-weight: 400;
    font-size: 17px;    
    text-transform: capitalize;    
    color: #000;
    margin: 0 0 5px;    
}
.feedback-slider .profile-n-info .info-wrap h6{
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #9EA5BD;
    margin: 0;
}
.feedback-slider .slick-dots{
    padding: 0;
    margin: 40px 0;
    text-align: center;
}
.feedback-slider .slick-dots li{
    display: inline-block;
    font-size: 0;
    border: none;
    width: 10px;
    height: 10px;
    background: #A19FF4;
    border-radius: 100%;
}
.feedback-slider .slick-dots li + li{
    margin-left: 10px;
}
.feedback-slider .slick-dots li.slick-active{
    background: #433EF3;
    border-radius: 6px;
    width: 50px;
}
.feedback-slider .slick-dots li button{
    border: none;
    background: transparent;
    outline: none;
}
/*====================================================== Newsletter Sec ========================================*/
.newsletter-sec{
    width: 100%;
    display: block;
    padding: 45px 0;
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    position: relative;
}
.newsletter-sec:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.newsletter-sec .row{
    position: relative;
    z-index: 2;
}
.newsletter-sec .content-wrap p{
    font-weight: 500;
    font-size: 22px;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.56);
    margin: 0;
}
.newsletter-sec .content-wrap h6{
    font-weight: 500;
    font-size: 28px;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.56);
    margin: 10px 0;
}
.newsletter-sec .content-wrap h2{
    font-weight: 700;
    font-size: 44px;
    line-height: 64px;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.56);
    margin: 0 0 20px;
}
.newsletter-sec .content-wrap .cta-2 span{
    background: #385BCE;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.14);
    border-radius: 10px;
}
.newsletter-sec .content-wrap .cta-2 span:hover:after{
    background: rgba(56, 91, 206, 0.3);
}
.newsletter-sec .content-wrap .cta-2 span:hover:before{
    background: rgba(56, 91, 206, 0.2);
}
.newsletter-sec .form-wrap{
    background: #fff;
    border-radius: 20px;
    padding: 25px 15px 50px 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.newsletter-sec .form-wrap:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    border-radius: 0 0 110% 110%;
    background: #5277F7;
    z-index: -1;
}
.newsletter-sec .form-wrap h2{
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-transform: capitalize;
    color: #fff;
}
.newsletter-sec .form-wrap .row{
    margin-top: 80px;
}
.newsletter-sec .form-wrap .each-field{
    margin-bottom: 20px;
}
.newsletter-sec .form-wrap .each-field input,
.newsletter-sec .form-wrap .each-field select,
.newsletter-sec .form-wrap .each-field textarea{
    width: 100%;
    background: #F5F5F5;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #9F9F9F;
    border: none;
    padding: 15px 10px;
}
.newsletter-sec .form-wrap .each-field select{
    appearance: none;
    background-image: url('../images/img-29.png');
    background-repeat: no-repeat;
    background-position: 96%;
}
.newsletter-sec .form-wrap .each-field textarea{
    height: 90px;
}
.newsletter-sec .form-wrap .each-field input:focus,
.newsletter-sec .form-wrap .each-field select:focus,
.newsletter-sec .form-wrap .each-field textarea:focus{
    outline: none;
}
.newsletter-sec .form-wrap .submit-field button{
    border: none;
    outline: none;
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #385BCE;
}
.newsletter-sec .form-wrap .submit-field button span{
    background: #5277F7;
    border-radius: 10px;
}
.newsletter-sec .form-wrap .submit-field button span:hover:after{
    background: rgba(56, 91, 206, 0.3);
}
.newsletter-sec .form-wrap .submit-field button span:hover:before{
    background: rgba(56, 91, 206, 0.2);
}
.newsletter-sec .form-wrap .submit-field input{
    background-image: url('/images/img-64.png');
    background-repeat: no-repeat;
    /* background-size: contain; */
    border: none;
    outline: none;
    background-color: transparent;
    padding: 20px;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #385BCE;
    background-position-x: -11px;
    padding-left: 60px;
    padding-top: 28px;
}
.newsletter-sec .form-wrap .submit-field input:hover{
    color: #3C4858;
}
/*====================================================== Modal ========================================*/
.modal-body.newsletter-sec .form-wrap h3{
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;    
    color: #fff;
    margin: 0 0 5px;
}
.modal-body.newsletter-sec .form-wrap h2{
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.modal-body.newsletter-sec .form-wrap input[type=file]{
    border: none;
    outline: none;
    font-size: 0;
    position: relative;
    background-image: url(/images/img-69.png);
    background-repeat: no-repeat;
    background-position: 98%;
    height: 60px;
}
.modal-body.newsletter-sec .form-wrap input[type=file]::file-selector-button {
    opacity: 0;
    visibility: hidden;
    display: none;
}
.modal-body.newsletter-sec .form-wrap input[type=file]::-webkit-file-upload-button {
    visibility: hidden;
}
.modal-body.newsletter-sec .form-wrap .each-field.input-file{
    margin-bottom: 0;
}
.modal-body.newsletter-sec .form-wrap .each-field span{
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #9F9F9F;
    position: relative;
    top: -42px;
    left: 10px;
}
#teaching-modal .modal-content{
    background-color: transparent;
    border: none;
}
#teaching-modal .modal-header{
    border: none;
    padding: 0;
    text-align: right;
    justify-content: end;
}
#teaching-modal .modal-body {
    background: none;
    padding: 0;
    border-radius: 20px;
    box-shadow: none;
}
#teaching-modal .close {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #fff;
    font-size: 26px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 5;
    border: none;
    right: -10px;
    top: -2px;
}
/*====================================================== Responsive ========================================*/
@media only screen and (max-width:1920px){ 
    .course-hover-box {
        width: 400px;
        min-height: 480px;
    }
}
@media only screen and (max-width:1440px){ 
    .course-hover-box{
        width: 355px;
        min-height: 425px;
    }
}
@media only screen and (max-width:1199px){ 
    .course-hover-box{
        display: none;
    }
    .courses-sec .each-course:hover{
        transform: translateY(-10px);
    }
}

@media only screen and (max-width:1024px){ 
    .courses-sec .col-md-6{
        width: 50%;
    }
    .courses-sec .each-course{
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    .courses-sec .each-course .content-wrap h3{
        min-height: 56px;
    }
    .teaching-n-hire-sec .each-sec .content-wrap h3 {
        font-size: 25px;
    }
    .teaching-n-hire-sec .each-sec .content-wrap p {
        font-size: 15px;
        line-height: 22px;
    }
    .teaching-n-hire-sec .each-sec .content-wrap .cta {
        min-width: 150px;
        font-size: 15px;
    }
}

@media only screen and (max-width:991px) {
    .banner {
        padding: 150px 0 40px;
    }
    .banner .banner-content h1 {
        font-size: 42px;
        line-height: 48px;
    }
    .banner .banner-content p {
        font-size: 25px;
        line-height: 35px;
    }
    .banner .banner-blocks .each-block h3 {
        font-size: 19px;
    }
    .banner .banner-blocks .each-block p {
        font-size: 14px;
    }
    .feature-sec .col-md-6{
        width: 100%;
    }
    .feature-sec .each-feature {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }    
    .feedback-slider .each-item{
        padding: 60px 20px 20px;
    }
    .feedback-slider .each-item p {
        font-size: 14px;
        line-height: 23px;
    }
    .feedback-slider .each-item:after {
        background-size: 33px;
        top: 20px;
        left: 20px;
    }
    .newsletter-sec .content-wrap h6 {
        font-size: 22px;
    }
    .newsletter-sec .content-wrap h2 {
        font-size: 32px;
        line-height: 50px;
    }
    .course-listing-page {
        padding-top: 0;
    }
    .course-listing-page .heading {
        padding-top: 30px;
    }
}

@media only screen and (max-width:840px) {
    .why-us-sec{
        padding: 70px 0 0;
    }
    .why-us-sec .row{
        flex-direction: column-reverse;
    }
    .why-us-sec .row .col-md-6{
        width: 100%;
    }
    .why-us-sec .img-wrap{
        margin-top: 30px;
        position: static;
    }
    .why-us-sec .content-wrap {
        margin-top: 0;
    }
    .newsletter-sec .form-wrap h2 {
        font-size: 20px;
        line-height: 30px;;
    }
}

@media only screen and (max-width:767px) {
    .banner .banner-content h1 {
        font-size: 33px;
        line-height: 40px;
    }
    .banner .banner-content p {
        font-size: 23px;
        line-height: 27px;
    }
    .moveable_item{
        display: none;
    }
    .banner .banner-blocks .col-md-4{
        width: 50%;
    }
    .feature-sec{
        padding: 50px 0 30px;
    }
    /* .why-us-sec .content-wrap, */
    .teaching-n-hire-sec .row{
        padding-top: 50px;
    }
    .courses-sec{
        padding: 50px 0;
    }
    .teaching-n-hire-sec .col-md-6 + .col-md-6{
        margin-top: 50px;
    }
    .teaching-n-hire-sec .each-sec {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .feedback-sec{
        margin: 50px 0 0;
        padding: 50px 0;
    }
    .newsletter-sec .content-wrap{
        text-align: center;
    }
    .newsletter-sec .content-wrap h6 {
        font-size: 21px;
    }
    .newsletter-sec .content-wrap p {
        font-size: 18px;
    }
    .newsletter-sec .form-wrap{
        margin: 50px auto 0;
        max-width: 500px;
    }
    .course-listing-page {
        padding: 0;
    }
    #teaching-modal .close {
        top: 45px;
    }
}

@media only screen and (max-width:640px) {
    .courses-sec .each-course .content-wrap h3 {
        font-size: 20px;
        line-height: 25px;
    }
}

@media only screen and (max-width:575px) {
    .courses-sec .col-md-6 {
        width: 100%;
    }
    .courses-sec .row {
        margin-bottom: 0;
    }
    .modal-body.newsletter-sec .form-wrap h3 {
        font-size: 26px;
    }
    .modal-body.newsletter-sec .form-wrap h2 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 490px){
    .banner .banner-content h1 {
        font-size: 27px;
        line-height: 36px;
    }
    .banner .banner-content p {
        font-size: 20px;
        line-height: 25px;
    }
    .banner .banner-cta .cta {
        padding: 13px 30px;
        margin-right: 25px;
    }
    .banner .banner-blocks .col-md-4 {
        width: 100%;
    }
    .teaching-n-hire-sec .each-sec .content-wrap h3 {
        font-size: 22px;
    }
    .teaching-n-hire-sec .each-sec .content-wrap p {
        font-size: 14px;
        line-height: 21px;
    }
    .newsletter-sec .content-wrap h2 {
        font-size: 26px;
        line-height: 32px;
        margin: 10px 0 20px;
    }
    .newsletter-sec .content-wrap h6 {
        font-size: 17px;
    }
    .newsletter-sec .content-wrap p {
        font-size: 15px;
    }
}
@media screen and (max-width:450px) {

}
@media screen and (max-width: 420px) {
    .banner .banner-content h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .banner .banner-content p {
        font-size: 17px;
        line-height: 24px;
        margin: 15px 0;
    }
    .banner .banner-cta {
        align-items: flex-start;
        flex-direction: column;
    }
    .banner .banner-cta .cta {
        margin: 0 0 15px;
    }
    .newsletter-sec .form-wrap h2 {
        font-size: 19px;
        line-height: 26px;
    }
}
@media screen and (max-width: 375px) {
    .teaching-n-hire-sec .each-sec{
        flex-direction: column;
        text-align: center;
    }
    .teaching-n-hire-sec .each-sec img{
        margin: 0 auto 15px;
    }
    .teaching-n-hire-sec .each-sec .content-wrap {
        margin-left: 0;
    }
    .why-us-sec .content-wrap ul li {
        font-size: 14px;
        padding: 0 0 20px 30px;
    }
    .newsletter-sec .form-wrap h2 {
        font-size: 17px;
        line-height: 23px;
    }
}