.topheader{
    background-color: var(--primary-color);
    padding: 10px;
}

.topheader ul{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.topheader ul li{
    list-style-type: none;
}

.topheader ul li a{
    font-size: 16px;
    line-height: 20px;
    display: block;
    color: var(--white-color);
}

.topheader ul li a:hover{
    color: var(--secondary-color);
}

.logo{
    max-width: 240px
}

.menu nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.menu nav ul li{
    list-style-type: none;
}

.menu nav ul li a{
    font-size: 18px;
    line-height: 25px;
    color: var(--text-color);
    display: block;
    font-weight: 600;
}

.menu nav ul li.active a,
.menu nav ul li a:hover{
    color: var(--secondary-color);
}

header{
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,14,32,.06);
    background-color: var(--white-color);
}

.rightBtn ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rightBtn ul li{
    list-style-type: none;
}

.rightBtn ul li a{
    font-size: 18px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 12px;
    text-align: center;
    display: block;
    padding: 0 15px;
    min-width: 100px;
}

.rightBtn ul li.active a,
.rightBtn ul li a:hover{
    background-color: var(--secondary-color);
}

.heroSlider{
    position: relative;
    min-height: 630px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    background-image: url(../image/heroBanner1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
}

.heroSlider:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9;
}

/* Animation */
.animate{
    position: absolute;
    z-index: 99;
    width: auto;
    display: block;
}

.animate1 {
    top: 32%;
    left: 2%;
    -webkit-animation: hero-leaf 3s linear infinite alternate;
    -moz-animation: hero-leaf 3s linear infinite alternate;
    -o-animation: hero-leaf 3s linear infinite alternate;
    animation: hero-leaf 3s linear infinite alternate;
}

.animate2 {
    top: 44%;
    left: 0.5%;
    -webkit-animation: hero-leaf-2 3s linear infinite alternate;
    -moz-animation: hero-leaf-2 3s linear infinite alternate;
    -o-animation: hero-leaf-2 3s linear infinite alternate;
    animation: hero-leaf-2 3s linear infinite alternate;
}

.animate3 {
    top: 57%;
    left: 72%;
    -webkit-animation: hero-leaf-4 3s linear infinite alternate;
    -moz-animation: hero-leaf-4 3s linear infinite alternate;
    -o-animation: hero-leaf-4 3s linear infinite alternate;
    animation: hero-leaf-4 3s linear infinite alternate;
}

.animate4 {
    top: 20%;
    right: 1%;
    -webkit-animation: hero3-image 3s linear infinite alternate;
    -moz-animation: hero3-image 3s linear infinite alternate;
    -o-animation: hero3-image 3s linear infinite alternate;
    animation: hero3-image 3s linear infinite alternate;
}

@keyframes hero-leaf {
    0% {
      transform:translateY(-50px)
    }
    100% {
      transform:translateY(0)
    }
}

@keyframes hero-leaf-2 {
    0% {
        transform:translateY(0)
    }
    100% {
        transform:translateY(-30px)
    }
}

@keyframes hero3-image {
    0% {
        transform:translateY(-20px)
    }
    100% {
        transform:translateY(0)
    }
}

@keyframes hero-leaf-4 {
    0% {
        transform:translateX(-30px)
    }
    100% {
        transform:translateX(0)
    }
}

.bannerText{
    max-width: 675px;
    margin: auto;
    z-index: 99;
    text-align: center;
}

h3.bannerTitle{
    font-size: 50px;
    line-height: 60px;
    color: var(--white-color);
    padding-bottom: 25px;
}

p.bannerSubTitle{
    font-size: 22px;
    line-height: 30px;
    color: var(--white-color);   
}

.popularTopics{
    padding: 70px 0;
    background-color: var(--bg-color);
}

h3.sectionTitle{
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: var(--primary-color);
    padding-bottom: 20px;
    margin-bottom: 50px;
    position: relative;
}

h3.sectionTitle:after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 5px;
    background-color: var(--secondary-color);
    left: 0;
    right: 0;
    margin: auto;
}

.topicblock{
    max-width: 275px;
    width: 100%;
    border-radius: 12px;
    padding: 40px 35px 35px;
    cursor: pointer;
    border: 2px solid transparent;
    border-top: 5px solid transparent;
    background-color: var(--white-color);
}

.topicblock:hover{
    box-shadow: 0 30px 50px 0 rgba(0,15,56,.1),inset 0 3px 0 0 rgba(42,109,245,.004);
    border: 2px solid var(--border-color);
    border-top: 5px solid var(--secondary-color);
}

.topicblock img{
    max-width: 80px;
    display: block;
    margin-bottom: 25px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    padding: 15px;
}

.topicblock .blockTitle{
    font-size: 20px;
    line-height: 26px;
    color: var(--primary-color);
}

.topicblock .blockSubTitle{
    font-size: 16px;
    line-height: 20px;
    color: var(--text-color);
}

.aboutCourse{
    padding: 100px 0;
}

.imageBlock{
    position: relative;
    max-width: 540px;
    margin: auto;
}

.arrowleft{
    position: absolute;
    top: -20px;
    left: -20px;
    max-width: 60px;
    z-index: -1;
}

.arrowbottom{
    position: absolute;
    bottom: -20px;
    right: -20px;
    max-width: 370px;
    z-index: -1;
}

.animate5{
    left: -8%;
    top: 57%;
    -webkit-animation: slide-top 5000ms linear infinite alternate;
    animation: slide-top 5000ms linear infinite alternate;
    z-index: 1;
}

.animate6{
    left: calc(100% + 10px);
    top: 60px;
    -webkit-animation: slide-top 5000ms linear infinite alternate;
    animation: slide-top 5000ms linear infinite alternate;
    z-index: 1;
}

@keyframes slide-top{
    0%{
        transform:translateY(0); 
    }
    100%{
        transform:translateY(-100px);
    }
}

.aboutRight h3{
    font-size: 44px;
    line-height: 56px;
    color: var(--text-color);
    padding-bottom: 25px;
}

.aboutRight h3 span{
    font-weight: 700;
    color: var(--secondary-color);
}

.aboutRight p{
    font-size: 18px;
    line-height: 28px;
    color: var(--text-color);
    padding-bottom: 25px;
}

.aboutRight ul li{
    font-size: 18px;
    line-height: 40px;
    color: var(--text-color);
    list-style-type: none;
}

.aboutRight ul li i{
    color: var(--primary-color);
}

.aboutImage{
    cursor: pointer;
}

.videoIframe{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.videoIframe.active{
    display: flex;
}

.videoIframe iframe{
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: block;
}

.popularCourse{
    background: var(--bg-color);
    padding: 100px 0 70px;
}

.popularCourse .topBlock{
    padding-bottom: 25px;
}

h3.sectionTitle2{
    font-size: 35px;
    line-height: 45px;
    color: var(--primary-color);
}

p.subTitle{
    font-size: 18px;
    line-height: 25px;
    color: var(--text-color);
}

a.allCourseBtn,
a.allMentorsBtn{
    font-size: 18px;
    line-height: 50px;
    padding: 0 20px;
    background-color: var(--primary-color);
    border-radius: 12px;
    max-width: 150px;
    display: block;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
}

a.allCourseBtn:hover,
a.allMentorsBtn:hover{
    background-color: var(--secondary-color);
}

.courseSingle{
    max-width: calc(33.33% - 30px);
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--white-color);
    margin: 20px 0;
    cursor: pointer;
}

.coourseContent.flex{
    align-items: start;
}

.courseSingle img{
    height: 200px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.courseSingle h3{
    font-size: 22px;
    line-height: 30px;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.courseSingle:hover,
.courseContent .courseSingle{
    box-shadow: 0 30px 50px 0 rgba(0,15,56,.1),inset 0 3px 0 0 rgba(42,109,245,.004);
}

.courseContent .courseSingle{
    border: 1px solid transparent;
}

.courseContent .courseSingle:hover{
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}

.courseSingle p{
    font-size: 16px;
    line-height: 25px;
    max-height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.commonQuestions{
    padding: 100px 0;
}

.commonQuestions .container{
    gap: 20px;
}

.commonQuestions h5,
.leftInfoBlock h5{
    font-size: 16px;
    line-height: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.commonQuestions h3,
.leftInfoBlock h3{
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: 54px;
}

.commonQuestions p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 26px;
    margin-bottom: 25px;
}

.commonQuestions a {
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    padding: 12px 35px;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 10px;
    line-height: 20px;
}

.commonQuestions a i{
    padding-left: 10px;
}

.commonQuestions a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

.commonQuestions .leftBlock{
    position: relative;
    max-width: calc(50% - 10px);
    width: 100%;
}

.commonQuestions .rightBlock{
    max-width: calc(50% - 10px);
    width: 100%;
}

.acrrodionSingle{
    margin-bottom: 10px;
    box-shadow: 0 20px 40px rgba(15,18,22,.1);
    border-radius: 6px;
}

.acrrodionSingle h4{
    padding: 20px;
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
}

.acrrodionSingle h4:after{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(../image/down-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: transform ease-in-out 0.5s;
}

.acrrodionSingle.active h4:after{
    transform: rotate(180deg);
}

.acrrodionSingle figure{
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out 0.5s;
}

.acrrodionSingle.active figure{
    max-height: 200px;
}

.acrrodionSingle p{
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 30px;
    color: var(--text-color);
    margin-bottom: 0;
}

.animate7{
    left: -40px;
    top: calc(100% - 20px);
    z-index: -1;
}

.site-footer{
    background: var(--primary-color);
}

.bigfooter{
    padding: 70px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: start;
}

.bottomfooter{
    padding: 20px 0;
}

.widget{
    max-width: 25%;
}

.copyright{
    text-align: center;
    color: var(--white-color);
}

.copyright a{
    color: var(--white-color);
}

.widget1 p{
    padding: 25px 0;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.bigfooter li{
    list-style-type: none;
}

ul.footerContacts li a{
    color: var(--white-color);
    font-size: 18px;
    line-height: 35px;
    display: block;
}

ul.footerContacts li a i{
    padding-right: 5px;
}

ul.footerContacts li a:hover{
    color: var(--secondary-color);
}

h4.widgetTitle{
    font-size: 22px;
    line-height: 30px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 55px;
}

ul.footerLinks li a{
    color: var(--white-color);
    font-size: 18px;
    line-height: 30px;
}

ul.footerLinks li a:hover{
    color: var(--secondary-color);
}

.widget4 span{
    color: var(--white-color);
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px;
    display: block;
}

.footerForm{
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
}

.footerForm input{
    border: 0;
    line-height: 40px;
    width: calc(100% - 65px);
    font-size: 18px;
}

.footerForm button{
    width: 60px;
    line-height: 60px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    cursor: pointer;
    border-radius: 0;
    position: relative;
    right: -2px;
}

.footerForm button:hover{
    background: var(--primary-color);
}

.mainForm{
    background-image: url(../image/formbg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 20px;
}

.formblock{
    max-width: 500px;
    border-radius: 15px;
    background-color: var(--white-color);
    box-shadow: 0 40px 60px rgba(15, 18, 22, .08);
    padding: 50px;
    margin: auto;
}

h4.formTitle{
    font-size: 26px;
    line-height: 40px;
    padding-bottom: 10px;
    color: var(--primary-color);
    font-weight: 400;
    text-align: center;
}

p.formSub{
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    padding-bottom: 30px;
    text-align: center;
}

p.formSub a{
    color: var(--secondary-color);
}

p.formSub a:hover{
    color: var(--primary-color);
}

form label{
    font-size: 16px;
    line-height: 22px;
    color: var(--primary-color);
}

.formblock input{
    background-color: var(--bg-color2);
    border: 0;
    font-size: 18px;
    line-height: 30px;
}

.input-group {
    position: relative;
}

.input-group-text {
    position: absolute;
    top: 35px;
    right: 10px;
    color: var(--secondary-color);
    cursor: pointer;
}

a.forget{
    font-size: 14px;
    text-align: right;
    display: block;
    line-height: 20px;
    padding-right: 10px;
}

a.forget:hover{
    color: var(--secondary-color);
}

.form-button{
    margin: 10px;
}

.sub_btn{
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    line-height: 50px;
    margin-top: 30px;
}

.sub_btn:hover{
    background: var(--secondary-color);
}

.listClass{
    position: relative;
}

.selectList{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 15px;
    z-index: 999;
    box-shadow: 0 40px 60px rgba(15, 18, 22, .06);
    width: 100%;
    border: 1px solid var(--bg-color2);
}

.selectList li{
    list-style: none;
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--primary-color);
    cursor: pointer;
}

.selectList li:hover{
    background-color: var(--bg-color2);
}

.selectList li:last-child{
    border: 0;
}

.university{
    display: none;
}

.university.active{
    display: block;
}

.innerbanner{
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../image/innerBanner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.innerbanner h2{
    font-size: 35px;
    line-height: 50px;
    color: var(--white-color);
}

.innerAreas{
    margin: 50px auto;
}

.formBlock{
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

h4.form_section_title {
    background-color: var(--primary-color);
    padding: 10px;
    line-height: normal;
    font-size: 20px;
    color: var(--white-color);
    font-weight: 500;
    text-transform: capitalize;
    margin: 10px;
}

.formBlock .sub_btn {
    max-width: 50%;
    margin: auto;
}

.edit-btn {
    padding: 0px 25px;
    line-height: 40px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--white-color);
    display: inline-block;
    border-radius: 15px;
}

.edit-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.homeMentor{
    padding: 50px 0 100px;
}

.leftInfoBlock{
    width: 100%;
    max-width: 50%;
}

.mentorSingle{
    width: 100%;
    max-width: 25%;
    padding: 35px 25px;
}

.mentorSingle:hover {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 30px 40px 0 rgba(1,11,60,.06);
}

.mentorSingle img{
    width: 120px;
    height: 120px;
    margin: auto;
    border: 4px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(15,18,22,.1);
    border-radius: 50%;
}

.mentorSingle h3{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    padding: 10px 0;
    color: var(--text-color);
}

.mentorSingle p{
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: var(--text-color);
}

.mentorSingle a{
    width: 30px;
    line-height: 30px;
    margin: auto;
    display: block;
    text-align: center;
    border-radius: 50%;
    background-color: #0072b1;
    color: #fff
}

.mentorSingle a:hover{
    background-color: #FFA439;
}

.courseContent{
    align-items: start;
}

.testimonials{
    background-image: url(../image/bg3.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.testimonials h5{
    font-size: 16px;
    line-height: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
}

.testimonials h3 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: 54px;
    text-align: center;
}

.reviewBlock{
    max-width: 1100px;
    margin: 30px auto 0;
    border-radius: 25px;
    background: var(--white-color);
    padding: 50px;
    overflow: hidden;
}

.reviewItems .iamge{
    max-width: 25%;
    width: 100%;
}

.reviewItems .iamge img{
    max-width: 200px;
}

.reviewItems .content{
    max-width: 75%;
    width: 100%;
    padding-right: 50px;
}

.reviewItems .content h4{
    color: var(--text-color);
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.reviewItems .content h6{
    color: var(--text-color);
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    padding-bottom: 10px;
}

.reviewItems .content ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-bottom: 20px;
}

.reviewItems .content ul li{
    list-style-type: none;
    font-size: 18px;
    color: #FFA439;
}

.reviewItems .content p{
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9999;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.allMentors{
    padding: 30px 0;
}

.centerBlock{
    margin: 30px auto 0;
}

.mobileView{
    display: none;
}

.courseButton,
.modelButton,
.myCourseBtn,
.btnGroup{
    background-color: var(--primary-color);
    width: auto;
    margin: 20px auto 0;
    display: block;
    color: var(--white-color);
    margin-top: 20px;
}

.courseButton:hover,
.modelButton:hover,
.myCourseBtn:hover,
.btnGroup:hover{
    background-color: var(--secondary-color);
}

#courseModel{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modelContent{
    max-width: 500px;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    position: relative;
}

.closeModel{
    background-color: var(--primary-color);
    width: 25px;
    line-height: 25px;
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.closeModel:hover{
    background-color: var(--secondary-color);
}

.modelImage{
    display: block;
    padding-bottom: 15px;
}

.modelHeading{
    font-size: 25px;
    line-height: 30px;
    color: var(--primary-color);
    padding-bottom: 15px;
}

.modelDescription{
    font-size: 16px;
    line-height: 25px;
}

.myCourses{
    padding: 50px 15px;
}

.myCourses h4{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: var(--text-color);
    padding-bottom: 15px;
}

ul.courseNumber{
    padding: 0;
    margin: 0;
}

ul.courseNumber li{
    list-style-type: none;
    margin-right: 15px;
    font-size: 20px;
    line-height: 35px;
    display: inline-block;
    border-bottom: 3px solid var(--secondary-color);
}

.myCourseList{
    padding: 30px 0;
}

.myCourseSingle{
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 15px;
    gap: 30px;
    justify-content: start;
}

.mySingleImage{
    height: 160px;
    width: 240px;
    display: block;
    border: 1px solid var(--primary-color);
}

.myCourseTitle{
    font-size: 30px;
    line-height: 40px;
    color: var(--primary-color);
}

.myCourseBtn{
    width: 200px;
    padding: 10px 25px;
    line-height: 30px;
    text-align: center;
    border-radius: 25px;
    margin-left: 0;
}

.profileView{
    padding: 50px 15px;
}

.form-group{
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.form-group{
    padding: 10px 0;
}

.form-group button{
    margin: 20px 0;
}

.previewIamge{
    max-width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 1030px){
    .topicblock {
        max-width: 48%;
    }

    .popularTopics .flex,
    .commonQuestions  .flex{
        gap: 30px;
    }

    .aboutCourse .width60,
    .aboutCourse .width40,
    .commonQuestions .leftBlock,
    .commonQuestions .rightBlock{
        max-width: 100%;
    }

    .aboutCourse .flex{
        gap: 50px;
    }

    .courseSingle {
        max-width: calc(50% - 30px);
    }
}

@media(max-width: 900px){
    .reviewItems .content{
        max-width: 70%;
        padding-right: 0;
    }

    .innerbanner {
        min-height: 250px;
    }
}

@media(max-width: 850px){
    .desktopView{
        display: none;
    }

    .mobileView{
        display: block;
        position: relative;
    }

    .menuToggle{
        background: #2a6df5;
        padding: 8px;
        border-radius: 5px;
        cursor: pointer;
    }

    .menuLine{
        display: block;
        width: 25px;
        height: 2px;
        background-color: #fff;
        margin: 6px 0;
        transition: all 500ms ease;
    }

    .line1{
        width: 16px;
        margin-left: auto;
    }

    .line2{
        width: 20px;
        margin-left: auto;
    }

    .menuToggle:hover span.menuLine {
        width: 25px;
    }

    .mobileMenu{
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: var(--white-color);
        box-shadow: 0 30px 50px 0 rgba(0,15,56,.1),inset 0 3px 0 0 rgba(42,109,245,.004);
        z-index: 999;
        border: 1px solid var(--border-color);
        display: none;
    }

    .mobileMenu li a{
        font-size: 16px;
        line-height: 35px;
        border-bottom: 1px solid var(--border-color);
        display: block;
        padding: 5px 15px;
    }

    .mobileMenu li:last-child a{
        border: 0;
    }

    .mobileMenu li a:hover{
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    .innerAreas {
        margin: 35px auto;
    }
}

@media(max-width: 770px){
    .heroSlider{
        min-height: 450px;
    }

    .popularTopics,
    .commonQuestions,
    .homeMentor,
    .testimonials,
    .bigfooter {
        padding: 35px 0;
    }

    .topicblock {
        max-width: 47%;
    }

    .textblock h3 br{
        display: none;
    }

    .aboutCourse,
    .popularCourse {
        padding: 50px 0 35px;
    }

    .mentorSingle{
        max-width: 50%;
    }

    .widget {
        max-width: 50%;
        width: 100%;
        padding-bottom: 20px;
    }
}

@media(max-width: 600px){
    .bannerText{
        padding: 20px;
    }

    h3.bannerTitle,
    h3.sectionTitle,
    .aboutRight h3,
    h3.sectionTitle2,
    .commonQuestions h3,
    .leftInfoBlock h3,
    .testimonials h3 {
        font-size: 35px;
        line-height: 40px;
    }

    .heroSlider {
        min-height: 350px;
    }

    .animate,
    .leftInfoBlock h3 br{
        display: none;
    }

    .leftInfoBlock{
        max-width: 100%;
    }

    .leftInfoBlock h3{
        text-align: center;
    }

    .widget {
        max-width: 100%;
    }

    h4.widgetTitle{
        margin-bottom: 15px;
    }

    .innerbanner {
        min-height: 200px;
    }

    .innerAreas {
        margin: 10px auto;
    }
}

@media(max-width: 480px){
    .topicblock {
        max-width: 100%;
        text-align: center;
    }

    .topicblock img{
        margin: auto auto 20px;
    }

    .popularTopics .flex, 
    .commonQuestions .flex {
        gap: 20px;
    }

    .popularCourse .topBlock > div{
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .aboutCourse, .popularCourse {
        padding: 35px 0;
    }

    .popularCourse .topBlock {
        padding-bottom: 0;
    }

    a.allCourseBtn{
        margin: auto;
    }

    .courseSingle {
        max-width: 100%;
        margin: 10px 0;
    }

    .courseSingle h3{
        text-align: center;
    }

    .mentorSingle {
        max-width: 100%;
        padding: 15px;
    }

    .reviewItems .iamge img {
        margin: auto auto 20px;
    }

    .reviewItems .iamge {
        max-width: 100%;
    }

    .reviewItems .content {
        max-width: 100%;
    }

    .reviewBlock{
        padding: 25px;
    }
}