/*==================================================*
* RESPONSIVE CSS
* Tablet + Mobile + Small Devices
*==================================================*/


/*==================================================*
* TABLET — MAX WIDTH 1199px
*==================================================*/

@media (max-width: 1199px) {

    /*------------------------------------------
        COMMON CONTAINER
    ------------------------------------------*/

    .container {
        max-width: 1100px;
        padding-left: 20px;
        padding-right: 20px;
    }

/*==================================================*
* RESPONSIVE CSS
* Tablet + Mobile + Small Devices
*==================================================*/


/*==================================================*
* TABLET — MAX WIDTH 1199px
*==================================================*/

@media (max-width: 1199px) {

    /*------------------------------------------
        COMMON CONTAINER
    ------------------------------------------*/

    .container {
        max-width: 1100px;
        padding-left: 20px;
        padding-right: 20px;
    }


/*======================================*
* MOBILE NAVBAR - FINAL FIX
*======================================*/

@media (max-width: 768px){

    nav{
        position: relative;
        z-index: 9999;
    }

    nav .row{
        position: relative;
    }

    /* Hamburger */
    nav .menu-toggle{
        display: flex !important;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10001;
    }

    /* Menu CLOSED */
    nav .menu{
        display: none !important;

        position: absolute !important;

        top: calc(100% + 8px) !important;
        left: 0 !important;

        width: 100% !important;
        height: auto !important;

        padding: 10px 15px !important;
        margin: 0 !important;

        background: #ffffff !important;

        border-radius: 12px !important;

        box-shadow: 0 10px 30px rgba(0,0,0,.12) !important;

        z-index: 10000 !important;
    }

    /* Menu OPEN */
    nav .menu.active{
        display: block !important;
    }

    /* UL */
    nav .menu ul{
        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 0 !important;

        list-style: none !important;
    }

    /* LI */
    nav .menu ul li{
        display: block !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;

        border-bottom: 1px solid #eeeeee;
    }

    nav .menu ul li:last-child{
        border-bottom: none;
    }

    /* LINKS */
    nav .menu ul li a{
        display: block !important;

        width: 100% !important;

        padding: 13px 10px !important;

        font-size: 14px !important;
        line-height: 1.5 !important;

        color: var(--PrimaryColor) !important;

        text-align: center !important;

        transform: none !important;
    }

    /* Remove desktop lines */
    nav .menu ul li a::before,
    nav .menu ul li a::after{
        display: none !important;
    }

}

    /*------------------------------------------
        BANNER
    ------------------------------------------*/

    #banner {
        padding: 60px 0;
    }

    #banner .row {
        gap: 30px;
    }

    #banner .b-text {
        width: 55%;
    }

    #banner .banner-img {
        width: 45%;
    }

    .b-text h1 {
        font-size: 44px;
        line-height: 55px;
    }

    .b-text p {
        font-size: 18px;
        line-height: 31px;
    }


    /*------------------------------------------
        ABOUT
    ------------------------------------------*/

    #about {
        margin-top: 60px;
        padding: 85px 0;
    }

    #about .row {
        gap: 55px;
    }

    #about .abt-img {
        width: 46%;
    }

    #about .abt-text {
        width: 54%;
    }

    #about .abt-text h2 {
        font-size: 44px;
    }

    #about .abt-text p {
        font-size: 17px;
        line-height: 31px;
    }


    /*------------------------------------------
        SERVICE
    ------------------------------------------*/

    #service {
        margin-top: 100px;
        padding: 90px 0 100px;
    }

    #service .service-heading h2 {
        font-size: 48px;
    }

    #service .service-heading > p {
        max-width: 760px;
        font-size: 16px;
        line-height: 29px;
    }

    #service .service-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;

        margin-top: 58px;
    }

    #service .service-card {
        min-height: 365px;
        padding: 36px 29px 40px;
    }

    #service .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    #service .service-icon i {
        font-size: 25px;
    }

    #service .service-card h3 {
        font-size: 22px;
        line-height: 30px;
    }

    #service .service-card p {
        font-size: 16px;
        line-height: 28px;
    }
}



/*==================================================*
* TABLET — MAX WIDTH 992px
*==================================================*/

@media (max-width: 992px) {

    /*------------------------------------------
        NAVBAR
    ------------------------------------------*/

    nav {
        padding: 17px 0;
    }

    nav .logo {
        width: auto;
    }

    nav .logo img {
        width: 160px;
    }

    nav .menu {
        width: auto;
    }

    nav .menu ul {
        gap: 18px;
    }

    nav .menu ul li a {
        font-size: 13px;
    }


    /*------------------------------------------
        BANNER
    ------------------------------------------*/

    #banner {
        padding: 55px 0;
    }

    #banner .row {
        gap: 25px;
    }

    .b-text h5 {
        font-size: 21px;
    }

    .b-text h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .b-text p {
        font-size: 17px;
        line-height: 29px;
    }

    .button {
        padding: 14px 25px;
        font-size: 16px;
        border-radius: 16px;
    }


    /*------------------------------------------
        ABOUT
    ------------------------------------------*/

    #about {
        margin-top: 55px;
        padding: 80px 0;
    }

    #about .row {
        flex-direction: column;
        gap: 55px;
        text-align: center;
    }

    #about .abt-img {
        width: 72%;
        margin: 0 auto;
    }

    #about .abt-text {
        width: 100%;
    }

    #about .abt-text h2 {
        font-size: 43px;
    }

    #about .abt-text p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
        line-height: 30px;
    }

    #about .abt-text .button {
        display: inline-flex;
    }


    /*------------------------------------------
        SERVICE
    ------------------------------------------*/

    #service {
        margin-top: 90px;
        padding: 80px 0 90px;
    }

    #service .service-heading h2 {
        font-size: 45px;
    }

    #service .service-heading > p {
        max-width: 700px;
        font-size: 16px;
        line-height: 28px;
    }

    #service .service-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 23px;

        margin-top: 52px;
    }

    #service .service-card {
        min-height: 350px;
        padding: 34px 27px 38px;
        border-radius: 23px;
    }

    #service .service-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 22px;
        border-radius: 18px;
    }

    #service .service-icon i {
        font-size: 24px;
    }

    #service .service-card h3 {
        font-size: 21px;
        line-height: 29px;
    }

    #service .service-card p {
        font-size: 15.5px;
        line-height: 27px;
    }
}



/*==================================================*
* MOBILE — MAX WIDTH 768px
*==================================================*/

@media (max-width: 768px) {

    /*------------------------------------------
        COMMON
    ------------------------------------------*/

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /*------------------------------------------
        NAVBAR
    ------------------------------------------*/

    nav {
        padding: 15px 0;
    }

    nav .row {
        position: relative;
    }

    nav .logo {
        width: auto;
    }

    nav .logo img {
        width: 145px;
    }

    nav .menu {
        width: auto;
    }

    nav .menu ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /*------------------------------------------
        BANNER
    ------------------------------------------*/

    #banner {
        padding: 55px 0 65px;
    }

    #banner .row {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    #banner .b-text {
        width: 100%;
    }

    #banner .banner-img {
        width: 90%;
    }

    .b-text h5 {
        justify-content: center;
        font-size: 20px;
    }

    .b-text h1 {
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 20px;
    }

    .b-text p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        line-height: 28px;
    }

    .banner-btn {
        justify-content: center;
    }

    .button {
        padding: 13px 23px;
        font-size: 15px;
    }

    #banner .banner-img img {
        max-width: 430px;
    }


    /*------------------------------------------
        ABOUT
    ------------------------------------------*/

    #about {
        margin-top: 45px;
        padding: 70px 0;
    }

    #about .row {
        gap: 45px;
    }

    #about .abt-img {
        width: 82%;
        padding: 12px;
    }

    #about .abt-text {
        width: 100%;
    }

    #about .abt-text h2 {
        font-size: 37px;
        margin-bottom: 32px;
    }

    #about .abt-text h2::before {
        left: -13px;
        width: 7px;
        height: 7px;
    }

    #about .abt-text p {
        font-size: 16px;
        line-height: 29px;
    }

    #about .circle1 {
        width: 160px;
        height: 80px;
        right: -80px;
        bottom: -30px;
    }


    /*------------------------------------------
        SERVICE
    ------------------------------------------*/

    #service {
        margin-top: 75px;
        padding: 70px 0 80px;
    }

    #service::before {
        width: 290px;
        height: 290px;
        left: -170px;
        top: 20px;
    }

    #service::after {
        width: 240px;
        height: 240px;
        right: -135px;
        bottom: -125px;
    }

    #service .service-heading h2 {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    #service .service-heading h2::before {
        width: 7px;
        height: 7px;
        left: 2px;
        top: 7px;
    }

    #service .service-heading h2::after {
        width: 65px;
        bottom: -16px;
    }

    #service .service-heading > p {
        width: 94%;
        max-width: 94%;
        margin-top: 38px;
        font-size: 15.5px;
        line-height: 27px;
    }

    #service .service-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 45px;
    }

    #service .service-card {
        min-height: auto;
        padding: 32px 26px 36px;
        border-radius: 21px;
    }

    #service .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 21px;
        border-radius: 17px;
    }

    #service .service-icon i {
        font-size: 24px;
    }

    #service .service-card h3 {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 15px;
    }

    #service .service-card p {
        font-size: 15px;
        line-height: 27px;
    }

    /*
        Keep hover effect,
        but reduce movement for mobile.
    */

    #service .service-card:hover {
        transform: translateY(-5px);
    }
}



/*==================================================*
* SMALL MOBILE — MAX WIDTH 576px
*==================================================*/

@media (max-width: 576px) {

    /*------------------------------------------
        COMMON
    ------------------------------------------*/

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /*------------------------------------------
        NAVBAR
    ------------------------------------------*/

    nav {
        padding: 13px 0;
    }

    nav .logo img {
        width: 130px;
    }

    .menu-toggle {
        font-size: 25px;
    }


    /*------------------------------------------
        BANNER
    ------------------------------------------*/

    #banner {
        padding: 45px 0 55px;
    }

    #banner .row {
        gap: 40px;
    }

    .b-text h5 {
        font-size: 18px;
    }

    .b-text h5 img {
        width: 25px;
        height: 25px;
    }

    .b-text h1 {
        font-size: 31px;
        line-height: 41px;
    }

    .b-text p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 27px;
    }

    .banner-btn {
        gap: 12px;
    }

    .button {
        padding: 12px 19px;
        font-size: 14px;
        border-radius: 14px;
    }

    #banner .banner-img {
        width: 94%;
    }


    /*------------------------------------------
        ABOUT
    ------------------------------------------*/

    #about {
        padding: 58px 0;
    }

    #about .abt-img {
        width: 91%;
    }

    #about .abt-text h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    #about .abt-text p {
        font-size: 15px;
        line-height: 27px;
        margin-bottom: 28px;
    }

    #about .abt-img::before {
        transform: translate(9px, 9px);
    }

    #about .abt-img::after {
        transform: translate(-9px, -9px);
    }

    #about .abt-img:hover::before {
        transform: translate(15px, 15px);
    }

    #about .abt-img:hover::after {
        transform: translate(-15px, -15px);
    }

    #about::before {
        width: 270px;
        height: 270px;
        left: -210px;
    }

    #about::after {
        width: 190px;
        height: 190px;
        right: -125px;
        top: -95px;
    }


    /*------------------------------------------
        SERVICE
    ------------------------------------------*/

    #service {
        margin-top: 60px;
        padding: 58px 0 68px;
    }

    #service::before {
        width: 230px;
        height: 230px;
        left: -150px;
        top: 25px;
    }

    #service::after {
        width: 190px;
        height: 190px;
        right: -110px;
        bottom: -95px;
    }

    #service .service-heading h2 {
        font-size: 31px;
        padding: 0 17px;
        letter-spacing: 0;
    }

    #service .service-heading h2::before {
        width: 6px;
        height: 6px;
        left: 0;
        top: 6px;
    }

    #service .service-heading h2::after {
        width: 58px;
        height: 3px;
        bottom: -14px;
    }

    #service .service-heading > p {
        width: 94%;
        max-width: 94%;
        margin-top: 34px;
        font-size: 14px;
        line-height: 25px;
    }

    #service .service-list {
        gap: 18px;
        margin-top: 38px;
    }

    #service .service-card {
        padding: 27px 21px 31px;
        border-radius: 19px;
    }

    #service .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
        border-radius: 15px;
    }

    #service .service-icon i {
        font-size: 22px;
    }

    #service .service-card h3 {
        font-size: 19px;
        line-height: 27px;
        margin-bottom: 14px;
    }

    #service .service-card p {
        font-size: 14px;
        line-height: 25px;
    }

    #service .service-card:hover {
        transform: translateY(-4px);
    }
}



/*==================================================*
* EXTRA SMALL DEVICES — MAX WIDTH 400px
*==================================================*/

@media (max-width: 400px) {

    /*------------------------------------------
        COMMON
    ------------------------------------------*/

    .container {
        padding-left: 13px;
        padding-right: 13px;
    }


    /*------------------------------------------
        NAVBAR
    ------------------------------------------*/

    nav .logo img {
        width: 118px;
    }

    .menu-toggle {
        font-size: 23px;
    }


    /*------------------------------------------
        BANNER
    ------------------------------------------*/

    #banner {
        padding: 38px 0 48px;
    }

    .b-text h5 {
        font-size: 16px;
    }

    .b-text h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .b-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-btn {
        gap: 10px;
    }

    .button {
        padding: 11px 17px;
        font-size: 13px;
    }


    /*------------------------------------------
        ABOUT
    ------------------------------------------*/

    #about {
        padding: 50px 0;
    }

    #about .abt-img {
        width: 94%;
    }

    #about .abt-text h2 {
        font-size: 28px;
        margin-bottom: 27px;
    }

    #about .abt-text p {
        font-size: 14px;
        line-height: 24px;
    }


    /*------------------------------------------
        SERVICE
    ------------------------------------------*/

    #service {
        margin-top: 50px;
        padding: 52px 0 62px;
    }

    #service .service-heading h2 {
        font-size: 27px;
        padding: 0 14px;
    }

    #service .service-heading h2::before {
        width: 5px;
        height: 5px;
        top: 6px;
    }

    #service .service-heading h2::after {
        width: 52px;
        bottom: -13px;
    }

    #service .service-heading > p {
        width: 96%;
        max-width: 96%;
        margin-top: 32px;
        font-size: 13px;
        line-height: 23px;
    }

    #service .service-list {
        gap: 16px;
        margin-top: 34px;
    }

    #service .service-card {
        padding: 24px 18px 28px;
        border-radius: 17px;
    }

    #service .service-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 17px;
        border-radius: 14px;
    }

    #service .service-icon i {
        font-size: 20px;
    }

    #service .service-card h3 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 12px;
    }

    #service .service-card p {
        font-size: 13px;
        line-height: 23px;
    }

    #service .service-card:hover {
        transform: translateY(-3px);
    }
}



/*==================================================*
* VERY SMALL DEVICES — MAX WIDTH 350px
*==================================================*/

@media (max-width: 350px) {

    .container {
        padding-left: 11px;
        padding-right: 11px;
    }


    /*------------------------------------------
        NAVBAR
    ------------------------------------------*/

    nav .logo img {
        width: 105px;
    }

    .menu-toggle {
        font-size: 21px;
    }


    /*------------------------------------------
        BANNER
    ------------------------------------------*/

    .b-text h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .b-text p {
        font-size: 13px;
        line-height: 23px;
    }

    .button {
        padding: 10px 14px;
        font-size: 12px;
    }


    /*------------------------------------------
        ABOUT
    ------------------------------------------*/

    #about .abt-text h2 {
        font-size: 26px;
    }

    #about .abt-text p {
        font-size: 13px;
        line-height: 23px;
    }


    /*------------------------------------------
        SERVICE
    ------------------------------------------*/

    #service {
        padding: 48px 0 58px;
    }

    #service .service-heading h2 {
        font-size: 25px;
    }

    #service .service-heading > p {
        font-size: 12.5px;
        line-height: 22px;
    }

    #service .service-card {
        padding: 22px 16px 26px;
    }

    #service .service-icon {
        width: 49px;
        height: 49px;
    }

    #service .service-icon i {
        font-size: 19px;
    }

    #service .service-card h3 {
        font-size: 17px;
        line-height: 24px;
    }

    #service .service-card p {
        font-size: 12.5px;
        line-height: 22px;
    }
}



/*==================================================*
* LANDSCAPE MOBILE
*==================================================*/

@media (max-width: 768px) and (orientation: landscape) {

    #banner {
        padding: 40px 0;
    }

    #banner .row {
        flex-direction: row;
        text-align: left;
        gap: 25px;
    }

    #banner .b-text {
        width: 55%;
    }

    #banner .banner-img {
        width: 45%;
    }

    .b-text h5 {
        justify-content: flex-start;
    }

    .banner-btn {
        justify-content: flex-start;
    }

    #about .row {
        flex-direction: row;
        text-align: left;
        gap: 30px;
    }

    #about .abt-img {
        width: 45%;
    }

    #about .abt-text {
        width: 55%;
    }

    #about .abt-text p {
        margin-left: 0;
        margin-right: 0;
    }
}



/*==================================================*
* REDUCED MOTION
*==================================================*/

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
    
    /*=====================================
            PROJECT SECTION
    =====================================*/
    
    @media (max-width:992px){
    
    #project .row{
        flex-direction:column;
    }
    
    #project .project-content,
    #project .project-text{
        width:100%;
    }
    
    #project .project-content{
        margin-bottom:50px;
    }
    
    #project .project-text{
        text-align:center;
    }
    
    .project-text .list ul{
        justify-content:center;
    }
    
    }
    
    @media (max-width:768px){
    
    #project{
        margin-top:100px;
    }
    
    .project-text .list ul{
        flex-direction:column;
        gap:25px;
    }
    
    .project-card{
        margin-bottom:25px;
    }
    
    }
    
    
    /*=====================================*
* EXPERIENCE SECTION - RESPONSIVE
*=====================================*/


/*=====================================*
* TABLET
*=====================================*/

@media (max-width: 992px){

    #experience{
        margin-top: 130px;
        padding: 20px 0 35px;
    }

    #experience .container > h2{
        font-size: 44px;
        margin-bottom: 75px;
    }

    /* Timeline stays visible */
    .experience-area{
        position: relative;
    }

    .experience-area::before{
        display: block;

        left: 32%;

        top: 0;
        bottom: 0;

        border-left:
            2px dashed
            rgba(189,189,189,.75);
    }

    #experience .experience-content .row{
        display: flex;

        flex-direction: row;

        align-items: flex-start;
        justify-content: space-between;
    }

    .experience-content{
        margin-bottom: 65px;
    }

    /* LEFT */

    .experience-content .left-content{
        width: 32%;

        padding-right: 35px;

        margin-bottom: 0;

        text-align: right;
    }

    .experience-content .left-content h3{
        font-size: 19px;
        line-height: 29px;
    }

    .experience-content .left-content p{
        font-size: 14px;
        line-height: 23px;

        margin-top: 9px;
    }

    /* RIGHT */

    .experience-content .right-content{
        position: relative;

        width: 63%;

        padding-left: 35px;
    }

    .experience-content .right-content h3{
        font-size: 20px;
        line-height: 29px;

        margin-bottom: 16px;
    }

    .experience-content .right-content p{
        width: 100%;

        font-size: 16px;
        line-height: 29px;

        margin-bottom: 15px;
    }

    /* OUTER CIRCLE */

    .experience-content .right-content::after{
        display: block;

        left: -59px;

        top: -2px;

        width: 40px;
        height: 40px;
    }

    /* INNER BULLET */

    .experience-content .right-content::before{
        display: block;

        left: -48px;

        top: 8px;

        width: 20px;
        height: 20px;
    }
}


/*=====================================*
* MOBILE
*=====================================*/

@media (max-width: 768px){

    #experience{
        margin-top: 100px;
        padding: 15px 0 30px;
    }

    #experience .container > h2{
        font-size: 38px;
        margin-bottom: 65px;
    }

    /*-----------------------------------*
    * MOBILE TIMELINE
    *-----------------------------------*/

    .experience-area{
        position: relative;

        padding-left: 38px;
    }

    .experience-area::before{
        display: block;

        left: 14px;

        top: 0;
        bottom: 0;

        border-left:
            2px dashed
            rgba(189,189,189,.75);
    }

    /*-----------------------------------*
    * ROW
    *-----------------------------------*/

    #experience .experience-content .row{
        display: block;

        width: 100%;
    }

    .experience-content{
        margin-bottom: 50px;
    }

    /*-----------------------------------*
    * LEFT CONTENT
    *-----------------------------------*/

    .experience-content .left-content{
        width: 100%;

        padding: 0;

        margin-bottom: 18px;

        text-align: left;
    }

    .experience-content .left-content h3{
        font-size: 20px;
        line-height: 29px;
    }

    .experience-content .left-content p{
        margin-top: 7px;

        font-size: 14px;
        line-height: 22px;
    }

    /*-----------------------------------*
    * RIGHT CONTENT
    *-----------------------------------*/

    .experience-content .right-content{
        position: relative;

        width: 100%;

        padding-left: 0;
    }

    .experience-content .right-content h3{
        font-size: 20px;
        line-height: 29px;

        margin-bottom: 14px;
    }

    .experience-content .right-content p{
        width: 100% !important;

        font-size: 15px;
        line-height: 27px;

        margin-bottom: 15px;
    }

    /*-----------------------------------*
    * TIMELINE OUTER CIRCLE
    *-----------------------------------*/

    .experience-content .right-content::after{
        display: block;

        left: -43px;

        top: -3px;

        width: 38px;
        height: 38px;
    }

    /*-----------------------------------*
    * TIMELINE BULLET
    *-----------------------------------*/

    .experience-content .right-content::before{
        display: block;

        left: -34px;

        top: 6px;

        width: 20px;
        height: 20px;
    }

    /*-----------------------------------*
    * HOVER
    *-----------------------------------*/

    .experience-content:hover .left-content h3{
        transform: none;
    }

    .experience-content:hover .left-content p{
        transform: none;
    }

    .experience-content:hover .right-content h3{
        transform: translateX(2px);
    }
}


/*=====================================*
* SMALL MOBILE
*=====================================*/

@media (max-width: 576px){

    #experience{
        margin-top: 80px;
        padding: 10px 0 25px;
    }

    #experience .container > h2{
        font-size: 32px;
        margin-bottom: 55px;
    }

    /*-----------------------------------*
    * TIMELINE
    *-----------------------------------*/

    .experience-area{
        padding-left: 30px;
    }

    .experience-area::before{
        display: block;

        left: 11px;
    }

    /*-----------------------------------*
    * EXPERIENCE
    *-----------------------------------*/

    .experience-content{
        margin-bottom: 42px;
    }

    /*-----------------------------------*
    * COMPANY
    *-----------------------------------*/

    .experience-content .left-content{
        margin-bottom: 15px;
    }

    .experience-content .left-content h3{
        font-size: 18px;
        line-height: 27px;
    }

    .experience-content .left-content p{
        font-size: 13px;
        line-height: 21px;
    }

    /*-----------------------------------*
    * JOB TITLE
    *-----------------------------------*/

    .experience-content .right-content h3{
        font-size: 18px;
        line-height: 27px;

        margin-bottom: 12px;
    }

    /*-----------------------------------*
    * DESCRIPTION
    *-----------------------------------*/

    .experience-content .right-content p{
        font-size: 14px;
        line-height: 25px;
    }

    /*-----------------------------------*
    * CIRCLE
    *-----------------------------------*/

    .experience-content .right-content::after{
        display: block;

        left: -38px;

        top: -3px;

        width: 34px;
        height: 34px;
    }

    /*-----------------------------------*
    * BULLET
    *-----------------------------------*/

    .experience-content .right-content::before{
        display: block;

        left: -28px;

        top: 4px;

        width: 18px;
        height: 18px;
    }
}


/*=====================================*
* EXTRA SMALL MOBILE
*=====================================*/

@media (max-width: 400px){

    #experience{
        margin-top: 70px;
    }

    #experience .container > h2{
        font-size: 28px;
        margin-bottom: 50px;
    }

    /*-----------------------------------*
    * TIMELINE
    *-----------------------------------*/

    .experience-area{
        padding-left: 27px;
    }

    .experience-area::before{
        display: block;

        left: 10px;
    }

    /*-----------------------------------*
    * COMPANY
    *-----------------------------------*/

    .experience-content .left-content h3{
        font-size: 17px;
        line-height: 25px;
    }

    .experience-content .left-content p{
        font-size: 12px;
        line-height: 20px;
    }

    /*-----------------------------------*
    * JOB TITLE
    *-----------------------------------*/

    .experience-content .right-content h3{
        font-size: 17px;
        line-height: 25px;
    }

    /*-----------------------------------*
    * DESCRIPTION
    *-----------------------------------*/

    .experience-content .right-content p{
        font-size: 13px;
        line-height: 24px;
    }

    /*-----------------------------------*
    * CIRCLE
    *-----------------------------------*/

    .experience-content .right-content::after{
        display: block;

        left: -34px;

        top: -3px;

        width: 32px;
        height: 32px;
    }

    /*-----------------------------------*
    * BULLET
    *-----------------------------------*/

    .experience-content .right-content::before{
        display: block;

        left: -25px;

        top: 4px;

        width: 16px;
        height: 16px;
    }
}


/*=====================================*
* REDUCED MOTION
*=====================================*/

@media (prefers-reduced-motion: reduce){

    #experience *,
    #experience *::before,
    #experience *::after{
        transition: none !important;
        animation: none !important;
    }
}
/*==================================================*
* EXPERTISE SECTION - RESPONSIVE
*==================================================*/

@media (max-width: 992px){

    #text-1{
        padding: 90px 50px;
        margin-top: 130px;
    }

    #text-1 .row{
        display: flex;
        flex-direction: column;
    }

    #text-1 .text-e,
    #text-1 .text-1-cntnt{
        width: 100%;
        box-sizing: border-box;
    }

    #text-1 .text-e{
        margin-bottom: 70px;
    }

    #text-1 .text-e h2{
        font-size: 44px;
        margin-bottom: 35px;
    }

    #text-1 .text-e p{
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    #text-1 .text-1-cntnt{
        padding-left: 0;
    }

    #text-1 .text-1-cntnt .button{
        margin-bottom: 25px;
    }

    .text-1-cntnt .progress-area{
        margin-top: 30px;
    }

}


/*==================================================*
* MOBILE
*==================================================*/

@media (max-width: 768px){

    #text-1{
        padding: 70px 25px;
        margin-top: 100px;
    }

    #text-1 .text-e{
        margin-bottom: 55px;
    }

    #text-1 .text-e h2{
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    #text-1 .text-e p{
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 22px;
    }

    #text-1 .text-e .button{
        margin-top: 10px;
    }

    #text-1 .text-1-cntnt{
        width: 100%;
        padding-left: 0;
    }

    #text-1 .text-1-cntnt .button{
        margin-bottom: 20px;
    }

    .text-1-cntnt .progress-area{
        margin-top: 28px;
    }

    .text-1-cntnt .progress-area h3{
        font-size: 16px;
        margin-bottom: 12px;
    }

    .text-1-cntnt .progress-bar{
        height: 8px;
    }

    .text-1-cntnt .progress-top span{
        font-size: 14px;
        top: -25px;
    }

}


/*==================================================*
* SMALL MOBILE
*==================================================*/

@media (max-width: 576px){

    #text-1{
        padding: 60px 18px;
        margin-top: 80px;
    }

    #text-1 .text-e{
        margin-bottom: 45px;
    }

    #text-1 .text-e h2{
        font-size: 32px;
        margin-bottom: 25px;
    }

    #text-1 .text-e p{
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    #text-1 .text-1-cntnt .button{
        width: 100%;
        box-sizing: border-box;
    }

    .text-1-cntnt .progress-area{
        margin-top: 25px;
    }

    .text-1-cntnt .progress-area h3{
        font-size: 15px;
        line-height: 23px;
    }

    .text-1-cntnt .progress-bar{
        height: 7px;
    }

    .text-1-cntnt .progress-top span{
        font-size: 13px;
        top: -23px;
    }

}


/*==================================================*
* EXTRA SMALL MOBILE
*==================================================*/

@media (max-width: 400px){

    #text-1{
        padding: 50px 15px;
        margin-top: 70px;
    }

    #text-1 .text-e h2{
        font-size: 28px;
    }

    #text-1 .text-e p{
        font-size: 14px;
        line-height: 24px;
    }

    .text-1-cntnt .progress-area h3{
        font-size: 14px;
    }

    .text-1-cntnt .progress-top span{
        font-size: 12px;
    }

}

 /*==================================================*
* EDUCATION SECTION - RESPONSIVE
*==================================================*/

@media (max-width: 992px){

    /* Education Section */
    #education{
        padding: 90px 50px;
        margin-top: 120px;
    }

    #education .container > h2{
        font-size: 44px;
        margin-bottom: 30px;
    }

    #education .container > p{
        font-size: 18px;
        line-height: 32px;
    }

    /* Education Cards Row */
    #education .row{
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 70px !important;
    }

    /* Education Card */
    #education .education-card{
        width: calc(50% - 15px);
        box-sizing: border-box;
        padding: 30px;
    }

    #education .education-card h3{
        font-size: 21px;
        line-height: 30px;
    }

    #education .education-card h4{
        font-size: 18px;
        line-height: 28px;
    }

    #education .education-card span{
        font-size: 15px;
        line-height: 25px;
    }

    #education .education-card p{
        font-size: 16px;
        line-height: 27px;
    }
}


/*==================================================*
* MOBILE
*==================================================*/

@media (max-width: 768px){

    #education{
        padding: 70px 25px;
        margin-top: 100px;
    }

    #education .container > h2{
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    #education .container > p{
        font-size: 16px;
        line-height: 28px;
    }

    #education .row{
        display: block;
        margin-top: 55px !important;
    }

    #education .education-card{
        width: 100%;
        padding: 28px 25px;
        margin-bottom: 25px;
        box-sizing: border-box;
    }

    #education .education-card:last-child{
        margin-bottom: 0;
    }

    #education .education-card h3{
        font-size: 20px;
        line-height: 29px;
    }

    #education .education-card h4{
        font-size: 17px;
        line-height: 26px;
    }

    #education .education-card span{
        display: block;
        font-size: 14px;
        line-height: 24px;
    }

    #education .education-card p{
        font-size: 15px;
        line-height: 26px;
    }
}


/*==================================================*
* SMALL MOBILE
*==================================================*/

@media (max-width: 576px){

    #education{
        padding: 60px 18px;
        margin-top: 80px;
    }

    #education .container > h2{
        font-size: 32px;
    }

    #education .container > p{
        font-size: 15px;
        line-height: 26px;
    }

    #education .row{
        margin-top: 45px !important;
    }

    #education .education-card{
        padding: 23px 20px;
        margin-bottom: 20px;
    }

    #education .education-card h3{
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    #education .education-card h4{
        font-size: 16px;
        line-height: 24px;
    }

    #education .education-card span{
        font-size: 13px;
        line-height: 22px;
    }

    #education .education-card p{
        font-size: 14px;
        line-height: 24px;
    }
}


/*==================================================*
* EXTRA SMALL MOBILE
*==================================================*/

@media (max-width: 400px){

    #education{
        padding: 50px 15px;
        margin-top: 70px;
    }

    #education .container > h2{
        font-size: 28px;
    }

    #education .container > p{
        font-size: 14px;
        line-height: 24px;
    }

    #education .row{
        margin-top: 40px !important;
    }

    #education .education-card{
        padding: 20px 17px;
    }

    #education .education-card h3{
        font-size: 17px;
        line-height: 25px;
    }

    #education .education-card h4{
        font-size: 15px;
        line-height: 23px;
    }

    #education .education-card span{
        font-size: 12px;
        line-height: 20px;
    }

    #education .education-card p{
        font-size: 13px;
        line-height: 22px;
    }
}
    
 /*======================================*
* CERTIFICATIONS & TRAINING
* RESPONSIVE CSS
*======================================*/


/*======================================*
* TABLET
*======================================*/

@media (max-width: 992px){

    #certifi{
        margin-top:130px;
        padding:80px 0 100px;
    }

    #certifi .container > h2{
        font-size:44px;
        margin-bottom:70px;
    }

    #certifi .container > h2::before{
        width:8px;
        height:8px;

        left:-16px;
        top:9px;
    }

    #certifi .container > h2::after{
        width:65px;
    }

    #certifi .row{
        gap:25px;
    }

    #certifi .certifi-card{
        width:calc(50% - 12.5px);

        min-height:260px;

        padding:30px 25px;
    }

    #certifi .certifi-card h3{
        font-size:20px;
        line-height:29px;
    }

    #certifi .certifi-card span{
        font-size:13px;
        padding:5px 12px;
    }

    #certifi .certifi-card p{
        font-size:15px;
        line-height:27px;
    }

}


/*======================================*
* MOBILE
*======================================*/

@media (max-width: 768px){

    #certifi{
        margin-top:100px;
        padding:70px 0 80px;
    }

    #certifi .container > h2{
        font-size:38px;

        margin-bottom:60px;
    }

    #certifi .container > h2::before{
        width:7px;
        height:7px;

        left:-14px;
        top:8px;
    }

    #certifi .container > h2::after{
        width:60px;
        height:3px;

        bottom:-15px;
    }

    #certifi .row{
        display:block;

        margin:0;
    }

    #certifi .certifi-card{
        width:100%;

        min-height:auto;

        margin-bottom:25px;

        padding:30px 25px;
    }

    #certifi .certifi-card:last-child{
        margin-bottom:0;
    }

    #certifi .certifi-card h3{
        font-size:20px;
        line-height:29px;

        margin-bottom:13px;
    }

    #certifi .certifi-card span{
        font-size:13px;

        margin-bottom:18px;

        padding:5px 12px;
    }

    #certifi .certifi-card p{
        font-size:15px;
        line-height:27px;

        padding-top:16px;
    }

}


/*======================================*
* SMALL MOBILE
*======================================*/

@media (max-width: 576px){

    #certifi{
        margin-top:80px;

        padding:60px 0 70px;
    }

    #certifi .container > h2{
        font-size:32px;

        margin-bottom:55px;
    }

    #certifi .container > h2::before{
        width:6px;
        height:6px;

        left:-11px;
        top:7px;
    }

    #certifi .container > h2::after{
        width:52px;
        height:3px;

        bottom:-13px;
    }

    #certifi .certifi-card{
        padding:27px 22px;

        margin-bottom:20px;

        border-radius:12px;
    }

    #certifi .certifi-card h3{
        font-size:19px;
        line-height:27px;
    }

    #certifi .certifi-card span{
        font-size:12px;
        line-height:19px;

        padding:5px 11px;
    }

    #certifi .certifi-card p{
        font-size:14px;
        line-height:25px;

        padding-top:15px;
    }

}


/*======================================*
* EXTRA SMALL MOBILE
*======================================*/

@media (max-width: 400px){

    #certifi{
        margin-top:70px;
        padding:50px 0 60px;
    }

    #certifi .container > h2{
        font-size:28px;
    }

    #certifi .certifi-card{
        padding:24px 19px;
    }

    #certifi .certifi-card h3{
        font-size:18px;
        line-height:26px;
    }

    #certifi .certifi-card span{
        font-size:11px;
    }

    #certifi .certifi-card p{
        font-size:13px;
        line-height:23px;
    }

}


/*======================================*
* REDUCED MOTION
*======================================*/

@media (prefers-reduced-motion: reduce){

    #certifi *,
    #certifi *::before,
    #certifi *::after{
        transition:none !important;
        animation:none !important;
    }

}
/*======================================*
* WHY HIRE ME - RESPONSIVE
*======================================*/

/*======================================*
* TABLET
*======================================*/

@media (max-width: 992px){

    #hire{
        padding:90px 0 100px;
    }

    #hire .container > h2{
        font-size:36px;
        margin-bottom:55px;
    }

    #hire .hire-list{
        width:600px;

        column-gap:55px;
        row-gap:20px;
    }

    #hire .hire-item{
        gap:13px;
        min-height:46px;
    }

    #hire .hire-item > strong{
        font-size:16px;
    }

}


/*======================================*
* MOBILE
*======================================*/

@media (max-width: 768px){

    #hire{
        padding:75px 0 85px;
    }

    #hire .container > h2{
        font-size:32px;

        margin-bottom:50px;
    }

    #hire .container > h2::after{
        bottom:-13px;

        width:40px;
    }

    #hire .hire-list{
        width:100%;

        padding:0 20px;

        box-sizing:border-box;

        grid-template-columns:1fr 1fr;

        column-gap:25px;
        row-gap:18px;
    }

    #hire .hire-item{
        gap:10px;

        min-height:42px;

        padding:7px 8px;
    }

    #hire .hire-item > span{
        width:30px;
        height:30px;

        min-width:30px;
    }

    #hire .hire-item > span i{
        font-size:12px;
    }

    #hire .hire-item > strong{
        font-size:15px;
        line-height:21px;
    }

}


/*======================================*
* SMALL MOBILE
*======================================*/

@media (max-width: 576px){

    #hire{
        padding:65px 0 75px;
    }

    #hire .container > h2{
        font-size:28px;

        margin-bottom:45px;
    }

    #hire .container > h2::after{
        width:35px;
        height:3px;

        bottom:-11px;
    }

    #hire .hire-list{
        padding:0 10px;

        column-gap:15px;
        row-gap:14px;
    }

    #hire .hire-item{
        gap:8px;

        min-height:40px;

        padding:6px 5px;
    }

    #hire .hire-item > span{
        width:27px;
        height:27px;

        min-width:27px;
    }

    #hire .hire-item > span i{
        font-size:11px;
    }

    #hire .hire-item > strong{
        font-size:14px;
        line-height:20px;
    }

    #hire .hire-item:hover{
        transform:translateX(3px);
    }

}


/*======================================*
* EXTRA SMALL MOBILE
*======================================*/

@media (max-width: 400px){

    #hire{
        padding:55px 0 65px;
    }

    #hire .container > h2{
        font-size:25px;

        margin-bottom:40px;
    }

    #hire .hire-list{
        padding:0 5px;

        column-gap:8px;
        row-gap:12px;
    }

    #hire .hire-item{
        gap:7px;

        padding:5px 3px;
    }

    #hire .hire-item > span{
        width:25px;
        height:25px;

        min-width:25px;
    }

    #hire .hire-item > span i{
        font-size:10px;
    }

    #hire .hire-item > strong{
        font-size:13px;
        line-height:18px;
    }

}
    
 /*======================================*
* FOOTER RESPONSIVE
*======================================*/

@media (max-width:992px){

    #contact{
        padding:70px 0 25px;
    }

    #contact .row{
        gap:30px;
    }

    #contact .footer-left{
        width:30%;
    }

    #contact .footer-center{
        width:40%;
    }

    #contact .footer-right{
        width:25%;
    }

    #contact .footer-left img{
        width:180px;
    }

    #contact .footer-center h2{
        font-size:26px;
    }

}


/*======================================*
* MOBILE
*======================================*/

@media (max-width:768px){

    #contact{
        padding:60px 20px 25px;
    }

    #contact .row{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    #contact .footer-left,
    #contact .footer-center,
    #contact .footer-right{
        width:100%;
        text-align:center;
    }

    #contact .footer-left img{
        width:180px;
        margin:0 auto 15px;
    }

    #contact .footer-text{
        max-width:350px;
        margin:0 auto;
    }

    #contact .footer-center h2{
        font-size:27px;
    }

    #contact .footer-center p{
        max-width:400px;
        margin-left:auto;
        margin-right:auto;
    }

    #contact .footer-right h3{
        font-size:23px;
    }

    #contact .footer-right p{
        justify-content:center;
    }

    #contact hr{
        margin:40px 0 20px;
    }

    #topBtn{
        right:18px;
        bottom:18px;
        width:42px;
        height:42px;
    }

}


/*======================================*
* SMALL MOBILE
*======================================*/

@media (max-width:576px){

    #contact{
        padding:50px 15px 20px;
    }

    #contact .row{
        gap:35px;
    }

    #contact .footer-left img{
        width:165px;
    }

    #contact .footer-text{
        font-size:14px;
        line-height:24px;
    }

    #contact .footer-center h2{
        font-size:24px;
    }

    #contact .footer-center p{
        font-size:14px;
        line-height:24px;
    }

    #contact .footer-right h3{
        font-size:21px;
    }

    #contact .footer-right p{
        font-size:14px;
    }

    #contact .copyright{
        font-size:12px;
        line-height:20px;
    }

}


/*======================================*
* EXTRA SMALL
*======================================*/

@media (max-width:400px){

    #contact{
        padding:45px 12px 18px;
    }

    #contact .footer-left img{
        width:150px;
    }

    #contact .footer-center h2{
        font-size:22px;
    }

    #contact .footer-center p{
        font-size:13px;
        line-height:22px;
    }

    #contact .footer-right h3{
        font-size:20px;
    }

    #contact .footer-right p{
        font-size:13px;
    }

    #contact .copyright{
        font-size:11px;
    }

}
