    /* <====Google Fonts====> */

    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    /* <====BASE====> */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: Poppins, sans-serif;
    padding-top: 65px;
}

.section{
    display: inline-block;
    width: 100%;
    overflow: visible;
}

.section-tittle{
    font-size: 36px;
    font-weight: 600;
    color: #2C5364;
}

.section-para{
    font-size: 24px;
    font-weight: 500;
    color: gray;
    margin: 0;

}

@media only screen and (max-width: 768px){

    .section-tittle{
        font-size: 28px;
        font-weight: 600;
        color: #2C5364;
    }
    
    .section-para{
        font-size: 18px;
        font-weight: 500;
        color: gray;
        margin: 0 10px;
    }
}

    /* <====Navbar Section Start====> */

.navbar{
    padding: 0;
    background: #FF057C;
    background-color: transparent;
    background-image: linear-gradient(90deg, #0F2027 0%,#203A43 0%, #2C5364 100%)
}

.navbar-light .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-toggler{
    border: 2px solid #a3007c;
}
 
.logo-img{
    width: 70%;
    padding: 0;
}

.nav-ul li a{
    font-weight: 600;
    margin-right: 40px;
    font-size: 0.93rem;
    color: white;
    padding: 0;
    text-decoration: none;
    border: none;
    transition: .3s;
    position: relative;
    display: block;
}

.nav-ul li a:hover{
    font-size: 0.95rem;
    cursor: pointer;
}


.nav-ul li a::after{
    content: '';
    height: 3px;
    width: 0px;
    background: #FF057C;
    position: absolute;
    bottom: -5px;
    right: 0%;
    transition: .3s;
}

.nav-ul li a:hover::after{
    width: 100%;
    left: 0%;
}

.log-reg button{
    background: transparent;
    color: white;
    font-size: 1rem;
    padding: 7px 5px 7px 5px;
    border: white 1px solid;
    border-radius: 4px;
    margin: 0 5px 0 5px;
    transition: all .3s;
}

.log-reg button:hover{
    border: 1px solid #FF057C;
}

@media only screen and (max-width: 767px){
    .navbar-brand{
        margin: 0;
    }
}

    /* <====Navbar Section end====> */

    /* <====Hero Section Start====> */

.hero-banner{
    background-image: url(img/banner-bg.59ddabf7.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 520px;
    background-position: bottom;
    background-position-x: center;
    background-position-y: bottom;
}

.shape-1{
    padding: 50px 0 50px 0;
}

.hero-heading{
    font-size: 3.1rem;
    font-weight: 600;
    color: #2C5364;
}

.hero-span{
    position: relative;
    z-index: 1;
}

.hero-span::after {
    content: '';
    display: block;
    position: absolute;
    background-color: #DAE7FB;
    height: 26px;
    width: 99%;
    left: 3px;
    top: 36px;
    z-index: -1;
}

.find-tutor{
    font-size: 1.5rem;
    color: gray;
    margin: 20px 0 30px 0;
}

.hero-find-btn{
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    border: none;
    padding: 13px 46px 13px 45px;
    border-radius: 50px;
    background: #FF057C;
    background-image: linear-gradient(90deg, #0F2027 0%,#203A43 0%, #2C5364 100%);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;

}

.hero-find-btn::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #ff0080b4;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

@keyframes ring{
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
  }

.shape-2{
    animation: hero-thumb-animation 1.7s linear infinite alternate;
    padding: 0;
}

.teacher-img{
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

/* <====MEDIA QUERIES====> */

@media only screen and (max-width: 767px){
    .hero-banner{
        background-image: url(/assets/img/banner-bg.59ddabf7.svg);
        background-size: cover;
        background-repeat: no-repeat;
        height: 450px;
        background-position: bottom;
        background-position-x: center;
        background-position-y: bottom;
        
    }

    .shape-1{
        padding: 50px 0 20px 0;
    }
    
    .hero-heading{
        font-size: 2rem;
        font-weight: 600;
        color: #2C5364;
        line-height: 50px;
    }

    
    .hero-span::after {
        content: '';
        display: block;
        position: absolute;
        background-color: #DAE7FB;
        height: 0px;
        width: 0%;
        left: 3px;
        top: 36px;
        z-index: -1;
    }

    .find-tutor{
        font-size: 1.1rem;
        color: gray;
        margin: 20px 0 30px 0;
    }

    .shape-2{
        animation: none;
        height: 0;
        width: 0;
    }

    .teacher-img{
        min-width: 100%;
        max-width: 100%;
        min-height: 100%;
        max-height: 100%;
    }


}

/* <====Hero Section END====> */

/* <====Tutoring Jobs Start====> */

.tutoring-jobs-img{
    animation: hero-thumb-animation 1.7s linear infinite alternate;
    padding: 0;
}

@keyframes hero-thumb-animation{
    0% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}



.search-job-right h5{
    font-size: 20px;
    font-weight: 600;
}

.search-job-right p{
    color: #66789c;
}

.animated-find-btn{
    background: linear-gradient(-30deg, #2C5364 50%, #a71678 0);
    padding: 15px 30px;
    margin: 12px;
    display: inline-block;
    transform: translate(0);
    overflow: hidden;
    color: #f7d4d4;
    font-size: 16px;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.animated-find-btn:hover{
    color: lightgray;
}

.animated-find-btn span {
    position: absolute;
}

a, button, h4, img, input, span {
    transition: all .3s ease 0s;
}

.child-1 {
    top: 0;
    left: 0;
    width: 100%;    
    height: 2px;
    background: linear-gradient(270deg, rgba(43, 8, 8, 0), #d92626);
    animation: animateTop 2s linear infinite;
}

@keyframes animateTop{
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.child-2 {
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(0deg, rgba(43, 8, 8, 0), #d92626);
    animation: animateRight 2s linear -1s infinite;
}

@keyframes animateRight{
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.child-3 {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(43, 8, 8, 0), #d92626);
    animation: animateBottom 2s linear infinite;
}

@keyframes animateBottom{
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.child-4 {
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, rgba(43, 8, 8, 0), #d92626);
    animation: animateLeft 2s linear -1s infinite;
}

@keyframes animateLeft{
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

    /* <====Tutoring Jobs END====> */

    /* <====OUR TUTORS Section Start====> */

.our-tutors{
    background-color: #F1F6FD;
    height: 700px;
}

.our-tutor-debuging{
    padding: none;
}

.card{
    height: 75%;
    width: 20em; 
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border-radius: 10px;
    transition: all .25s cubic-bezier(.02,.01,.47,1);
}

.card:hover{
    margin-bottom: 10px;
}

.swiper{
    width: 100%;
    height: 90%;
    position: absolute;
}

.swiper-wrapper{
    width: 100%;
    height: 35em;
    display: flex;
    padding: 0;
    align-items: center;
    position: relative;
}

.swiper-slide:not(.swiper-slide-active){
    filter: blur(1px);
    background-color: #f8faff;
}

.card_img img{
    width: 10em;
    height: 10em;
    border-radius: 50%;
    padding: 3px;
    margin-bottom: 2em;
    border: 2px solid #ff0080b4;
}

.card_content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card_title{
    font-size: 1.5em;
    font-weight: 600;
    top: .2em;
    margin: 0;
}
.card_title2{
    font-size: 1em;
    font-weight: 600;
    margin: 0;
}

.card_text{
    margin: 5px 0;
    color: gray;
}

.card_btn{
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 6px 100px;
    border-radius: 3px;
    border: none;
    color: white;
    background: #FF057C;
    background-image: linear-gradient(90deg, #0F2027 0%,#203A43 0%, #2C5364 100%);
}

.card_btn::before{
        content: "";
        position: absolute;
        height: 150px;
        width: 50px;
        background: #fff;
        left: -55px;
        top: -40px;
        transform: rotate(37deg);
        transition: all .3s;
        opacity: .3;
}

.card_btn:hover:before {
    left: 95%;
}

.card_btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.card_location{
    padding: 7px 10px;
    border: 1px solid #1078ff;
    border-radius: 5px;
    font-size: .9em;
    color: #1078ff;
    background-color: #eff3fc;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 10px 0;
    transition: all .25s cubic-bezier(.02,.01,.47,1);
}

.card_location:hover{
    background-color: white;
}

.card_location i{
    font-size: 1.3em;
    margin-right: 5px;
    color: #ff0080b4;
}

    /* <====OUR TUTORS Section END====> */


    /* <====RATINGS Section Start====> */

    .ratings-section {
        background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(img/ratings.jpg);
    }
    
    .count {
        font-size: 1.5em;
        text-shadow: 1px 1px black;
    }
    


    /* <====RATINGS Section END====> */


    /* <====TUITION TYPES Section Start====> */

.tuition-types{
    background-color: #F1F6FD;
    padding-bottom: 50px;
}

.tuition-types-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    height: 490px;
    margin-bottom: 0;
    background-color: #f8faff;
    border: 1px solid #e0e6f7;
    border-radius: 15px;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    transition: all .25s cubic-bezier(.02,.01,.47,1);
}

.tuition-types-card:hover{
    background-color: #fff;
}

.ttc-img{
    width: 300px;
}

.ttc-info{
    padding: 5px 20px 20px;
}

.ttc-info h4{
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.ttc-briefcase{
    font-size: 12px;
    color: #a0abb8;
}

.ttc-info p{
    font-size: 14px ;
    font-weight: 700;
    color: #6c757d;
    margin-top: 20px;
    line-height: 24px;
}

    /* <====MEDIA QUERIES====> */

@media only screen and (max-width: 767px){

    .tuition-types{
        background-color: #F1F6FD;
        padding-bottom: 30px;
    }

    .tuition-types-card{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        height: 490px;
        margin-bottom: 20px;
        background-color: #f8faff;
        border: 1px solid #e0e6f7;
        border-radius: 15px;
        box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
        transition: all .25s cubic-bezier(.02,.01,.47,1);
    }

    .tuition-types-card:hover{
        background-color: #fff;
    }
    
    .ttc-img{
        width: 300px;
    }
    
    .ttc-info{
        padding: 0 10px;
    }
    
    .ttc-info h4{
        font-weight: 600;
        font-size: 24px;
        line-height: 30px;
    }
    
    .ttc-briefcase{
        font-size: 12px;
        color: #a0abb8;
    }
    
    .ttc-info p{
        font-size: 14px ;
        font-weight: 700;
        color: #6c757d;
        margin-top: 20px;
        line-height: 24px;
    }
}

@media (min-width: 768px) and (max-width: 1024px){

    .ttc-img{
        width: 200px;
    }
    
}

    /* <====TUITION TYPES Section END====> */

    /* <====WE HIRING Section START====> */


.we-hiring-box{
    max-width: 85%;
    border: 1px solid #e0e6f7;
    padding: 40px 250px 40px 190px;
    position: relative;
    display: flex;
    align-items: center;
    overflow-wrap: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    margin: auto;
    border: none;
    border-radius: 15px;
    background-color: #f8f9fa;
}

.we-hiring-text1 p{
    font-size: 16px;
    line-height: 20px;
    color: #a0abb8;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.we-hiring-text1 h2{
    font-size: 49px;
    line-height: 51px;
    color: #05264e;
    font-weight: 800;
    letter-spacing: 1px;
}

.we-hiring-text2{
    font-size: 18px;
    line-height: 23px;
    color: #66789c;
    font-weight: 500;
    padding: 29px 20px 0;
}

.we-hiring-text3{
    padding: 34px 0 0 20px;
}

.hiring-btn{
    color: white;
    background-color: #00274e;
    padding: 12px 20px;
    transition: all .25s cubic-bezier(.02,.01,.47,1);
}

.hiring-btn:hover{
    color: #a30a74;
}

    /* <====MEDIA QUERIES====> */

@media only screen and (max-width: 767px){

    .we-hiring-box{
        
        border: 1px solid #e0e6f7;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
        border: none;
        border-radius: 15px;
        background-color: #f8f9fa;
    }
    
    .we-hiring-text1 p{
        font-size: 16px;
        line-height: 20px;
        margin: 0;
        color: #a0abb8;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
    }
    
    .we-hiring-text1 h2{
        font-size: 49px;
        line-height: 51px;
        color: #05264e;
        font-weight: 800;
        letter-spacing: 1px;
    }
    
    .we-hiring-text2{
        font-size: 18px;
        line-height: 23px;
        color: #66789c;
        font-weight: 500;
        padding:  0;
        margin-top: 10px;
    }
    
    .we-hiring-text3{
        padding: 20px 10px 0 10px;
    }
    
    .hiring-btn{
        color: white;
        background-color: #00274e;
        padding: 12px 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .we-hiring-box{
        padding: 40px 200px 40px 190px;
        justify-content: center;
    }
}

    /* <====WE HIRING Section END====> */

    /* <====People Love Us Section Start====> */

.people-love-us{
    background-color: #F1F6FD;
    padding-bottom: 50px;  
}

.people-love-card{
    background-color: #f8faff;
    border-radius: 15px;
    border: 1px solid #e0e6f7;
    transition: all .25s cubic-bezier(.02,.01,.47,1);
    padding: 15px 25px;
    height: 520px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.people-love-card:hover{
    background-color: #fff;
    border-color: #b4c0e0;
}

.people-love-card h4{
    font-size: 1.45em;
    font-weight: 600;
}

.people-card-img{
    overflow: hidden;
    margin: 10px 0;
    width: 230px;
    height: 220px;
    display: inline-block;
    position: relative;
    border: 3px solid #a30a74;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.people-card-img img{
    max-width: 100%;
}

.people-card-info h5{
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
}

.people-card-brand{
    font-size: .8em;
    
}

.people-card-info p{
    margin: 15px 0 0 0;
    color: #6c757d;
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
}

    /* <====MEDIA QUERIES====> */

@media only screen and (max-width: 767px){
    .people-love-card{
        background-color: #f8faff;
        border-radius: 15px;
        border: 1px solid #e0e6f7;
        transition: all .25s cubic-bezier(.02,.01,.47,1);
        padding: 15px 25px;
        height: 540px;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        margin-bottom: 20px;
    }

    .card-grid{
        height: 650px;
    }
    
}

    /* <====MEDIA QUERIES FOR TAB/DESKTOPS====> */

@media (min-width: 768px) and (max-width: 1024px){
    .people-love-card{
        height: 650px;
    }
}

    /* <====People Love Us Section END====> */

    /* <====Our Services Section Start====> */


.our-services{
    height: 420px;
}

.services-card-main{
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(350px * 12);
    animation: scroll 40s linear infinite;
}

.services-slide:hover{
    animation-play-state: paused;
}

@keyframes scroll{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6));
    }
}

.services-card{
    height: 200px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 20px;
    border: 1px solid #e0e6f7;
}

.services-card h5{
    font-weight: 600;
    font-size: 20px;
    margin-top: 1em;
}

    /* <====Our Services Section END====> */

    /* <====Timeline Section Start====> */

.timeline-section{
    background-color: #EFF6FD;
    position: relative;
    z-index: -2;
    height: 780px;
}

.timeline{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeline-profile{
    display: flex;
    flex-direction: row-reverse;
    margin: 20px 0;
    border-radius: 10px;
    align-self: center;
    width: 50vw;
}

.timeline-profile-item-1{
    color: #9251ac;
    align-self: center;
    margin: 0 20px;
    background: #f6a4ec;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    padding: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-profile-item-1 h3{
    font-size: 28px;
    color: white;
    line-height: 35px;
    margin: 0;
    font-family: sans-serif;
    font-weight: 700;
}

.timeline-profile-item-1::before{
    content: "";
    background: #f6a4ec;
    position: absolute;
    z-index: -1;
    width: 2px;
    height: 100%;
    top: 96%;
    left: 50%;
}

.timeline-profile-item-1::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: -30%;
    transform: translateY(-50%);
}

.timeline-profile-item-2{
    color: #f6a4ec;
    font-weight: 600;
    background: #9d4eaa;
    white-space: nowrap;
    border-radius: var(--bdrs) 0 0 var(--bdrs);
    font-size: 30px;
    padding: 10px;
    display:flex ;
    align-items: center;
    justify-content: center;
    border-radius: 0 6px 6px 0;
    height: 95px;
    position: relative;
    z-index: 1;
}

.timeline-profile-item-2 i{
    font-size: 24px;
}

.timeline-profile-item-3{
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    background: #fff;
    width: 600px;
    height: 95px;
    border-radius: 6px 0 0 6px;
}

.timeline-profile-tittle{
    font-size: 1.3rem;
    line-height: 1.4;
    text-transform: uppercase;
    color: #9d4eaa;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.timeline-para{
    font-size: 13px;
    margin: 0;
    color: #6a7a7f;
}

.timeline-jobs{
    display: flex;
    margin: 20px 0;
    border-radius: 10px;
    align-self: center;
    width: 50vw;
}

.timeline-jobs-item-1{
    color: #9251ac;
    align-self: center;
    margin: 0 20px;
    background: #71bdfe;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    padding: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.timeline-jobs-item-1 h3{
    font-size: 28px;
    color: white;
    line-height: 35px;
    margin: 0;
    font-family: sans-serif;
    font-weight: 700;
}

.timeline-jobs-item-2{
    color: #f6a4ec;
    font-weight: 600;
    background: #505abf;
    white-space: nowrap;
    font-size: 30px;
    padding: 10px;
    display:flex ;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0 0 6px;
    height: 115px;
    position: relative;
    z-index: 1;
}

.timeline-jobs-item-2 i{
    font-size: 24px;
}

.timeline-jobs-item-3{
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    background: #fff;
    width: 600px;
    height: 115px;
    border-radius: 0 6px 6px 0;
    position: relative;
    z-index: 1;
}

.timeline-jobs-item-3 h6{
    font-size: 1.3rem;
    line-height: 1.4;
    text-transform: uppercase;
    color: #9251ac;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.timeline-jobs-item-1::before{
    content: "";
    background: #f6a4ec;
    position: absolute;
    z-index: -1;
    width: 2px;
    height: 100%;
    top: 96%;
    left: 50%;
}

.timeline-jobs-item-1::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

.timeline-job-alert-item-1{
    color: #9251ac;
    align-self: center;
    margin: 0 20px;
    background: #98f3ba;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    padding: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-job-alert-item-1 h3{
    font-size: 28px;
    color: white;
    line-height: 35px;
    margin: 0;
    font-family: sans-serif;
    font-weight: 700;
}

.timeline-job-alert-item-1::before{
    content: "";
    background: #f6a4ec;
    position: absolute;
    z-index: -1;
    width: 2px;
    height: 100%;
    top: 96%;
    left: 50%;
}

.timeline-job-alert-item-1::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: -30%;
    transform: translateY(-50%);
}

.timeline-job-alert-item-2{
    color: #f6a4ec;
    font-weight: 600;
    background: #00b783;
    white-space: nowrap;
    border-radius: var(--bdrs) 0 0 var(--bdrs);
    font-size: 30px;
    padding: 10px;
    display:flex ;
    align-items: center;
    justify-content: center;
    border-radius: 0 6px 6px 0;
    height: 95px;
}

.timeline-job-alert-item-2 i{
    font-size: 24px;
}

.job-alert-tittle{
    font-size: 1.3rem;
    line-height: 1.4;
    text-transform: uppercase;
    color: #00b783;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2px;
}

.timeline-income-item-1{
    color: #9251ac;
    align-self: center;
    margin: 0 20px;
    background: #ffa0e9;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    padding: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-income-item-1 h3{
    font-size: 28px;
    color: white;
    line-height: 35px;
    margin: 0;
    font-family: sans-serif;
    font-weight: 700;
}

.timeline-income-item-1::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: 28%;
    transform: translateY(-50%);
}

.timeline-income-item-2{
    color: #f6a4ec;
    font-weight: 600;
    background: #9d4eaa;
    white-space: nowrap;
    font-size: 30px;
    padding: 10px;
    display:flex ;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0 0 6px;
    height: 95px;
    position: relative;
    z-index: 1;
}

.timeline-income-item-2 i{
    font-size: 24px;
}

.timeline-income-item-3{
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025);
    background: #fff;
    width: 600px;
    height: 95px;
    border-radius: 0 6px 6px 0;
    position: relative;
    z-index: 1;
}

.timeline-income-item-3 h6{
    font-size: 1.3rem;
    line-height: 1.4;
    text-transform: uppercase;
    color: #9d4eaa;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2px;
}

    /* <====MEDIA QUERIES====> */

@media only screen and (max-width: 767px){

    .timeline-section{
        position: static;
        height: 1080px;
        
    }

    .timeline{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .timeline i{
        font-size: 35px;
    }
    
    .timeline-profile{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 20px 0;
        border-radius: 10px;
        align-self: center;
        width: 100%;
    }

    .timeline-profile-item-1{
        display: none;
    }

    .timeline-profile-item-2{

        border-radius: 6px 6px 0 0;
    }

    .timeline-profile-item-3{
        border-radius: 0 0 6px 6px;
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 5px;
    }

    .timeline-profile-tittle{
        font-size: 1.5rem;
        line-height: 1.4;
        text-transform: uppercase;
        color: #9d4eaa;
        letter-spacing: 1px;
        font-weight: 700;
        margin: 0;
    }
    
    .timeline-para{
        font-size: 13px;
        margin: 0;
        color: #6a7a7f;
    }

    .timeline-jobs{
        display: flex;
        flex-direction: column;
        margin: 20px 0;
        border-radius: 10px;
        align-self: center;
        width: 100%;
    }

    .timeline-jobs-item-1{
        display: none;
        
    }

    .timeline-jobs-item-2{
        height: 95px;
        border-radius: 6px 6px 0 0;
    }

    .timeline-jobs-item-3{
        border-radius: 0 0 6px 6px;
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 5px;
        height: 95px;
    }

    
    .timeline-job-alert-item-1{
        display: none;
    }

    .timeline-job-alert-item-2{

        border-radius: 6px 6px 0 0;
    }
    
    .timeline-income-item-1{
        display: none;
    }

    .timeline-income-item-2{
        border-radius: 6px 6px 0 0;
    }

    .timeline-income-item-3{
        border-radius: 0 0 6px 6px;
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
        /* gap: 5px; */
        height: 100px;
    }
    
    .timeline-income-item-3 h6{
        font-size: 1.3rem;
        line-height: 1.4;
        text-transform: uppercase;
        color: #9d4eaa;
        letter-spacing: 1px;
        font-weight: 700;
        margin: 0;
    }
    
}

    /* <====MEDIA QUERIES FOR TAB/DESKTOP====> */

@media (min-width: 768px) and (max-width: 1024px){

    .timeline-profile{
        width: 80%;
    }

    .timeline-jobs{
        width: 80%;
    }

    .job-alert-tittle{
        font-size: 1.2rem;
    }

    .timeline-income-item-2{
        height: 115px;
    }

    .timeline-income-item-3{
        height: 115px;
    }

    .timeline-income-item-3 h6{
        font-size: 1rem;
    }
}

    /* <====Timeline Section END====> */

    /* <====How it Works Section Start====> */

.howitworks-img-1{
    width:  65px;
    height: 75px;
}

.howitworks-tittle{
    font-size: 1.2rem;
    line-height: 1.4em;
}

.howitworks-para{
    font-size: .8rem;
}

.dashed-img{
    position:absolute;
    left:-120px;
    top:-40px
}

    /* <====How it Works Section End====> */

    /* <====Featured/News Section Start====> */

.news-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(320px * 5);
    animation: scroll 40s linear infinite;
}

.news-slide:hover{
    animation-play-state: paused;
}

@keyframes scroll{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 2));
    }
}

.news-card{
    height: 110px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 20px;
    border: 1px solid #e0e6f7;
}

    /* <====Featured/News Section End====> */

    /* <====Footer Start====> */

.footer{
    height: 600px;
}

.footer-para{
    margin: 20px 0;
}

.footer-para-text{
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #66789c;
}

.footer-bottom{
    border-top: 1px solid #e0e6f7;
    padding: 30px;
}

.footer-link{
    text-decoration: none;
    color: #05264e;
    font-size: 14px;
    margin-right: 10px;
}

.footer-link-end{
    text-decoration: none;
    color: #05264e;
    font-size: 14px;
}

    /* <====Footer End====> */