body,
code,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: "Poppins";
    color: #3F3F3E;
}

    div.sticky {
        /*position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 5px;*/
        z-index: 29999;
    }

#toTop {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 5px;
    right: 20px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}


    #toTop:hover {
        cursor: pointer;
        background-color: #333;
    }

    #toTop:active {
        background-color: #555;
    }

    #toTop.show {
        opacity: 1;
        visibility: visible;
    }


.w-900 {
    width: 900px;
}

.w-1180 {
    width: 1180px;
}



.ld-1 {
    border-radius: 50%;
    height: 320px;
    background: rgba(245, 138, 69, 0.15);
}

.ld-2 {
    border-radius: 50%;
    height: 320px;
    background: rgba(56, 186, 235, 0.15);
}

.ld-3 {
    border-radius: 50%;
    height: 320px;
    background: rgba(52, 181, 99, 0.15);
}

.ld-4 {
    border-radius: 50%;
    height: 320px;
    background: rgba(237, 64, 66, 0.15);
}

.ld-5 {
    border-radius: 50%;
    height: 320px;
    background: rgba(52, 181, 99, 0.15);
}

.ld-6 {
    border-radius: 50%;
    height: 320px;
    background: rgba(245, 138, 69, 0.15);
}

.card-box-2 {
    width: 350px;
    border-radius: 25px;
    padding: 0px;
    position: relative;
    /* display: flex; */
    align-items: flex-end;
    margin: 20px;
}

.img-2 {
    width: 100%;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}


.overlay-txt {
    position: absolute;
    bottom: 10px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 1;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}


.box-1 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 301px;
    height: 452px;
}

    .box-1 .front {
        position: relative;
        width: 100%;
        height: 100%;
        background: #262626;
        backface-visibility: hidden;
        transform: perspective(1000px) rotateY(0deg);
        transition: 1s;
    }

    .box-1:hover .front {
        transform: perspective(1000px) rotateY(180deg);
    }

    .box-1 .back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f00;
        backface-visibility: hidden;
        transform: perspective(1000px) rotateY(-180deg);
        transition: 1s;
    }

    .box-1:hover .back {
        transform: perspective(1000px) rotateY(0deg);
    }

/* modal starts */

.modal.fade .modal-content {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.modal.show .modal-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.modal-content {
    transform: scale(1.1);
    transition: visibility 0.25s ease-out, opacity 0.25s ease-out, transform 0.25s ease-out;
}

/** Modal static */
.modal.modal-static .modal-content {
    transform: scale(1.02);
}


/* modal ends */

/**********  front  **************/
.box-1 .front .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

    .box-1 .front .center img {
        width: 100px;
        height: 100px;
    }

    .box-1 .front .center h1 {
        font-size: 25px;
        color: #fff;
        white-space: nowrap;
    }

/**********  back  **************/
.box-1 .back .row {
    position: relative;
    width: 100%;
    height: 50%;
}

    .box-1 .back .row:nth-of-type(1) {
        background: #fff;
        border-bottom: 10px solid #f00;
        box-sizing: border-box;
        text-align: center;
        line-height: 150px;
    }

    .box-1 .back .row:nth-of-type(2) {
        background: #262626;
        padding: 20px 30px;
        box-sizing: border-box;
    }

    .box-1 .back .row img {
        width: 100px;
        height: 100px;
        display: inline-block;
        vertical-align: top;
    }

    .box-1 .back .row h1 {
        font-size: 25px;
        color: #262626;
        white-space: nowrap;
        display: inline-block;
    }

    .box-1 .back .row span {
        position: relative;
        display: block;
        font-size: 20px;
        color: #fff;
        box-sizing: border-box;
        padding: 0 0 0 35px;
        margin-bottom: 5px;
    }

        .box-1 .back .row span::before {
            content: '';
            font-family: 'fontAwesome';
            position: absolute;
            top: 2px;
            bottom: 2px;
            left: 2px;
            color: #fff;
            font-size: 20px;
        }

        .box-1 .back .row span:nth-of-type(1)::before {
            content: '\f095';
        }

        .box-1 .back .row span:nth-of-type(2)::before {
            content: '\f003';
        }

        .box-1 .back .row span:nth-of-type(3)::before {
            content: '\f041';
        }

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

a:hover {
    color: #38bdf8 !important;
}

.img-h-bg {
    height: 320px;
    background: rgba(245, 138, 69, 0.15);
}

.tab-btn {
    height: 55px;
    border-radius: 5px;
    border: 0.5px solid #BABAC7;
    background: #fff;
    flex-shrink: 0;
}

.tab-btn-active {
    color: #fff;
    height: 55px;
    border-radius: 5px;
    border: 0.5px solid #BABAC7;
    background: #F58A45;
    flex-shrink: 0;
}

.topicContainer {
    max-height: 85vh;
    overflow-y: auto;
}

.groupContainer {
    overflow-y: auto;
}



.box {
    width: 95%;
    background: rgba(240, 240, 240, 0.50);
}

    .box h2 {
        color: #000;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

.bt-txt {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.h-txt {
    color: #3F3F3E;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.24px;
}

.p-txt {
    color: #3F3F3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
}

.box h3 {
    color: #000;
    padding: 10px 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}



.box p {
    color: #3F3F3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.box-img {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.border-box {
    margin-left: 10px;
    margin-right: 10px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #F58A45;
    flex-shrink: 0;
}

.txt-b {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.txt-1 {
    color: rgba(237, 64, 66, 0.90);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.txt-2 {
    color: rgba(52, 181, 99, 0.90);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.txt-3 {
    color: rgba(56, 186, 235, 0.90);
    text-align: center;
    font-family: Poppins;
    font-display: swap;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.txt-4 {
    color: rgba(245, 138, 69, 0.90);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.txt-5 {
    color: rgba(56, 186, 235, 0.90);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.txt-6 {
    color: rgba(237, 64, 66, 0.90);
    text-align: center;
    font-family: Poppins;
    font-display: swap;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.m-lnk:hover {
    color: #38bdf8 !important;
}

.menu-link:hover {
    color: #38bdf8 !important;
}

.m-link:hover {
    color: #38bdf8 !important;
}




input[type=text]:focus {
    border: 1px solid #555;
}


.cursor-pointer {
    cursor: pointer;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translate(0) scale(1);
    visibility: visible;
}


.h-fs {
    color: #3F3F3E;
    font-size: 40px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 52px */
    letter-spacing: -0.4px;
}

.t-block {
    min-height: 216px;
    border-radius: 10px;
    background: rgba(237, 64, 66, 0.10) !important;
}

.t-block2 {
    min-height: 216px;
    border-radius: 10px;
    background: rgba(56, 186, 235, 0.15);
}

.t-block3 {
    min-height: 216px;
    border-radius: 10px;
    background: rgba(52, 181, 99, 0.15);
}

.t-block4 {
    min-height: 216px;
    border-radius: 10px;
    background: rgba(245, 138, 69, 0.15);
}

.t-block5 {
    min-height: 216px;
    border-radius: 10px;
    background: #E1F5FC;
}

.t-block6 {
    min-height: 216px;
    border-radius: 10px;
    background: #E1F4E8;
}


.closeBtn {
    top: 15px;
    right: 20px;
    font-size: 36px;
}

.rotate-arrow {
    transform: rotate(180deg);
}

.mt-50 {
    margin-top: 50px;
}

.margin-t-40 {
    margin-top: 40px !important;
}


.n-mt-40 {
    margin-top: -40px;
}

.sub-h2 {
    color: #3F3F3E;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.24px;
}


.sub-p {
    color: #3F3F3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.square {
    width: 100px;
    height: 100px;
    background-color: #F58A45;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.square-2 {
    width: 100px;
    height: 100px;
    background-color: #F58A45;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .square {
        visibility: hidden;
    }

    .square-2 {
        visibility: hidden;
    }
}

.square-3 {
    width: 100px;
    height: 100px;
    background-color: #F58A45;
    bottom: 79%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.square-4 {
    width: 100px;
    height: 100px;
    background-color: #F58A45;
    bottom: 86%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}


.big-font {
    color: #3F3F3E;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bullet img {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

/* header css starts */
#overlay:hover + .content-overlay {
    opacity: 1;
}

.overlay-color {
    background-color: rgba(0, 0, 0, 0.4);
}

.header {
    width: 100%;
    height: 70px;
    background-color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 auto;
}

.footer1 {
    text-align: center;
    font-size: 12px;
}

.logo {
    width: 120px;
    margin-top: 0;
}

nav .logo {
    display: none;
}


.m-link {
    color: black;
    display: inline-block;
    margin: 0 0;
    font-weight: 600;
    padding: 9px 20px;
    transition: 0.2s;
    border-radius: 30px;
}


.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

    .hamburger:hover {
        background-color: #f6f4ff;
    }

    .hamburger div {
        width: 30px;
        height: 2px;
        margin: 6px 0;
        background-color: #212526;
    }


.logo-img {
    margin-top: 20px;
}


@media only screen and (max-width: 768px) {
    .header {
        padding-right: 15px;
    }

    .hamburger {
        display: block;
    }

    .logo-img {
        margin-top: 0;
    }
}



/* header css ends */



.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 81px;
    z-index: 999;
}

.inp-pad {
    padding: 5px 10px !important;
}

.btn {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    width: 139px;
    height: 47px;
    border-radius: 50px;
    flex-shrink: 0;
    justify-content: center;
}

.btn-bg-orange {
    background-color: #F58A45 !important;
}

.hero-img {
    margin-top: -170px;
    height: 800px;
}
.h-screen-1
{
    height: 80vh;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background-color: #fff;
    z-index: 99;
}

.menu-link {
    color: #14142B;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.m-lnk:hover {
    color: #38bdf8 !important;
}

.menu-link:hover {
    color: #38bdf8 !important;
}

.m-link:hover {
    color: #38bdf8 !important;
}


.overlay {
    margin-top: -12px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width:640px) {
    .overlay {
        max-height: inherit;
    }
}

/* .hero{

} */

.hero h1 {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    /*line-height: 60.988px;*/
    padding-left: 177px;
}

.hero h2 {
    margin-top: 20px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    /*line-height: 27.106px;*/
    padding-left: 177px;
}

.hero-text-block {
    display: flex;
    align-items: center;
}


.section-1 {
    margin-top: -5px;
    background: rgba(30, 189, 83, 0.10);
    padding-top: 40px;
    padding-bottom: 40px;
}

    .section-1 h1 {
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

.section-22 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-23 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.para-block {
    display: flex;
    width: 1130px;
    height: 110px;
    margin-top: 16px;
    justify-content: center;
    flex-shrink: 0;
}

.services-para-block {
    display: flex;
    width: 1130px;
    height: auto;
    padding-top: 16px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 1280px) {
    .para-block {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }
}


.services-menu-block {
    width: 374px;
    height: 425px;
    margin-right: 20px;
    border-radius: 8.599px;
    background: rgba(237, 64, 66, 0.25);
}

.services-menu-block-2 {
    width: 250px;
    height: 405px;
    padding: 0 20px;
    margin-right: 20px;
    border-radius: 8.599px;
    background: rgba(237, 64, 66, 0.25);
}



.services-menu-block h1 {
    color: #DA3F40;
    padding-left: 20px;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.services-menu-block p {
    color: #000;
    width: 329px;
    padding-left: 23px;
    padding-right: 22px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.services-menu-block button {
    margin-top: 34px;
    padding: 0 34px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.heading-hr {
    background: #DA3F40;
    margin-left: 22px;
    margin-bottom: 24px;
    width: 43px;
    height: 4px;
    border-radius: 2px;
}

/*

 .heading-hr-2 {
     margin-top: 5px;
     margin-bottom: 12px;
     background: #F58A45;
     width: 43px;
     height: 3px;
     border-radius: 1.5px;
 }

 */

.heading-hr-2 {
    margin-top: 5px;
    margin-bottom: 12px;
    background: #F58A45;
    width: 90%;
    height: 3px;
    border-radius: 1.5px;
}

.heading-hr-v2 {
    margin-top: 5px;
    margin-bottom: 12px;
    background: #F58A45;
    width: 90%;
    height: 3px;
    border-radius: 1.5px;
}

.heading-hr-v3 {
    margin-top: 5px;
    margin-bottom: 12px;
    background: #F58A45;
    width: 90%;
    height: 3px;
    border-radius: 1.5px;
}

.heading-hr-v4 {
    margin-top: 5px;
    margin-bottom: 12px;
    background: #F58A45;
    width: 90%;
    height: 3px;
    border-radius: 1.5px;
}

.hr-white {
    margin-top: 18px;
    margin-bottom: 24px;
    background: #FFFFFF;
    width: 225px;
    height: 2.75px;
    border-radius: 1.37px;
}

.hr-red {
    margin-top: 18px;
    margin-bottom: 24px;
    background: #DA3F40;
    width: 225px;
    height: 2.75px;
    border-radius: 1.37px;
}

.hr-blue {
    margin-top: 18px;
    margin-bottom: 24px;
    background: #38BAEB;
    width: 225px;
    height: 2.75px;
    border-radius: 1.37px;
}

.hr-green {
    margin-top: 18px;
    margin-bottom: 24px;
    background: #34B563;
    width: 225px;
    height: 2.75px;
    border-radius: 1.37px;
}

.hr-orange {
    margin-top: 18px;
    margin-bottom: 24px;
    background: #F58A45;
    width: 225px;
    height: 2.75px;
    border-radius: 1.37px;
}

.h1-red {
    color: #DA3F40;
}

.h1-blue {
    color: #38BAEB;
}

.h1-green {
    color: #34B563;
}

.h1-orange {
    color: #F58A45;
}

.frame-block-h2 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.section-1 p {
    color: #3F3F3E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.section-2 {
    background: #fff;
    padding-top: 40px;
}

.head_h1 {
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.head_h2 {
    color: #3F3F3E;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 8px;
    padding-bottom: 64px;
}

.head_h2_2 {
    color: #3F3F3E;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: -8px;
    padding-bottom: 22px;
}

.head-h2-3 {
    color: #3F3F3E;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 8px;
    padding-bottom: 16px;
}


.head_p {
    color: #3F3F3E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 86px;
}

.head-p-color {
    color: #3F3F3E;
}

.head-p-2 {
    color: #3F3F3E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 16px;
}


.head-p-3 {
    color: #3F3F3E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 16px;
}

.widh {
    width: 300px;
}

.card-p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 143.75% */
    letter-spacing: 0.5px;
}

.card-p-2 {
    color: #000;
    font-size: 16px;
    padding: 10px 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 143.75% */
    letter-spacing: 0.5px;
}



.para-block-2 {
    display: flex;
    width: 1188px;
    height: 66px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}



.p-block {
    width: 960px;
}

    .p-block p {
        color: #3F3F3E;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

.p-block-2 {
    width: 1128px;
}

    .p-block-2 p {
        color: #3F3F3E;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }




.para-block-3 {
    display: flex;
    width: 1188px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}


.card-grid-cont {
    width: 1180px;
    border: 1px solid transparent;
}

@media (max-width: 768px) {
    .card-grid-cont {
        width: 100%;
    }

    .p-block {
        width: 100%;
    }

    .p-block-2 {
        width: 100%;
    }

    .para-block-2 {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .services-para-block {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }
}


.services-item1 {
    grid-area: services-item-1;
}

.services-item2 {
    grid-area: services-item-2;
}

.services-item3 {
    grid-area: services-item-3;
}

.services-item4 {
    grid-area: services-item-4;
}

.services-block {
    width: 1280px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .services-block {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
}



.services-grid {
    display: grid;
    gap: 10px;
    grid-template-areas: 'services-item-1 services-item-1 services-item-2 services-item-2'
        'services-item-1 services-item-1 services-item-3 services-item-4';
}

@media (max-width: 640px) {
    .services-grid {
        display: grid;
        grid-template-areas: 'services-item-1' 'services-item-2' 'services-item-3' 'services-item-4';
    }
}


.bg1 {
    background: linear-gradient(to bottom, rgba(237, 64, 66,0.2), rgba(237, 64, 66,0.1));
    background-size: 100%;
    background-repeat: no-repeat;
}

.bg2 {
    background: linear-gradient(to bottom, rgba(56, 186, 235, 0.2), rgba(56, 186, 235, 0.1));
    background-size: 100%;
    background-repeat: no-repeat;
}

.bg3 {
    background: linear-gradient(to bottom, rgba(245, 138, 69, 0.2), rgba(245, 138, 69, 0.1));
    background-size: 100%;
    background-repeat: no-repeat;
}

.bg4 {
    background: linear-gradient(to bottom, rgba(43, 178, 92, 0.2), rgba(43, 178, 92, 0.1));
    background-size: 100%;
    background-repeat: no-repeat;
}

.bg5 {
    background-color: #ECECF6;
}

.bg6 {
    background-color: #ECECF6;
}

.hero-text-m {
    margin-top: -150px;
    margin-left: -30px;
}

@media (max-width:768px) {
    .hero-text-m {
        margin-top: 50px;
        margin-left: 0;
    }

    .hero h1 {
        color: #FFF;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        /*line-height: 46.988px;*/
        padding-left: 10px;
        word-wrap: break-word;
    }

    .hero h2 {
        margin-top: 20px;
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        /*line-height: 17.106px;*/
        padding-left: 10px;
    }

    .hero-text-block {
        display: flex;
        align-items: center;
    }
}

@media (max-width:570px) and (min-width: 490px) {
    .ld-1 {
        max-height: 270px;
    }
    .ld-2 {
        max-height: 270px;
    }
    .ld-3 {
        max-height: 270px;
    }
    .ld-4 {
        max-height: 270px;
    }
    .ld-5 {
        max-height: 270px;
    }
    
    .ld-6 {
        max-height: 270px;
    }

}


@media (max-width:490px) and (min-width: 400px) {
    .ld-1 {
        max-height: 230px;
    }
    .ld-2 {
        max-height: 230px;
    }
    .ld-3 {
        max-height: 230px;
    }
    .ld-4 {
        max-height: 230px;
    }
    .ld-5 {
        max-height: 230px;
    }
    
    .ld-6 {
        max-height: 230px;
    }

}


@media (max-width:400px) and (min-width: 350px) {
    .ld-1 {
        max-height: 190px;
    }
    .ld-2 {
        max-height: 190px;
    }
    .ld-3 {
        max-height: 190px;
    }
    .ld-4 {
        max-height: 190px;
    }
    .ld-5 {
        max-height: 190px;
    }
    
    .ld-6 {
        max-height: 190px;
    }

}

@media (max-width:350px) and (min-width: 300px) {
    .ld-1 {
        max-height: 160px;
    }
    .ld-2 {
        max-height: 160px;
    }
    .ld-3 {
        max-height: 160px;
    }
    .ld-4 {
        max-height: 160px;
    }
    .ld-5 {
        max-height: 160px;
    }
    
    .ld-6 {
        max-height: 160px;
    }

}

@media (max-width:300px) and (min-width: 250px) {
    .ld-1 {
        max-height: 140px;
    }
    .ld-2 {
        max-height: 140px;
    }
    .ld-3 {
        max-height: 140px;
    }
    .ld-4 {
        max-height: 140px;
    }
    .ld-5 {
        max-height: 140px;
    }
    
    .ld-6 {
        max-height: 140px;
    }

}


@media (max-width:250px) and (min-width: 200px) {
    .ld-1 {
        max-height: 120px;
    }
    .ld-2 {
        max-height: 120px;
    }
    .ld-3 {
        max-height: 120px;
    }
    .ld-4 {
        max-height: 120px;
    }
    .ld-5 {
        max-height: 120px;
    }
    
    .ld-6 {
        max-height: 120px;
    }

}


@media (max-width:200px) and (min-width: 150px) {
    .ld-1 {
        max-height: 100px;
    }
    .ld-2 {
        max-height: 100px;
    }
    .ld-3 {
        max-height: 100px;
    }
    .ld-4 {
        max-height: 100px;
    }
    .ld-5 {
        max-height: 100px;
    }
    
    .ld-6 {
        max-height: 100px;
    }

}


@media (max-width:568px) {

    .hero-text-m {
        margin-top: 50px;
        margin-left: 0;
    }

    .hero h1 {
        color: #FFF;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        /*line-height: 36.988px;*/
        padding-left: 10px;
        word-wrap: break-word;
    }

    .hero h2 {
        margin-top: 20px;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        /*line-height: 17.106px;*/
        padding-left: 10px;
    }

    .hero-text-block {
        display: flex;
        align-items: center;
    }
}

.services-overlay {
    border: 1.809px solid rgba(255, 255, 255, 0.50);
    box-shadow: 9.27175px 11.12609px 18.54349px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6.4902215003967285px);
    position: absolute;
    bottom: 0;
    left: 0;
}

.services-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    /*line-height: 27px;*/
}

.section-3 {
    padding-top: 40px;
    padding-bottom: 40px;
    background: rgba(237, 64, 66, 0.15);
}

    .section-3 h1 {
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        /*line-height: 54px;*/
        letter-spacing: -1.62px;
    }

    .section-3 h2 {
        margin-top: 16px;
        color: #3F3F3E;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

.para-block-3 {
    color: #3F3F3E;
    display: flex;
    width: 1188px;
    height: 66px;
    padding-top: 40px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}


/* 27/12/2023 changes by sunil */

@media (max-width:570px) and (min-width: 490px) {
    .ld-1 {
        max-height: 270px;
    }

    .ld-2 {
        max-height: 270px;
    }

    .ld-3 {
        max-height: 270px;
    }

    .ld-4 {
        max-height: 270px;
    }

    .ld-5 {
        max-height: 270px;
    }

    .ld-6 {
        max-height: 270px;
    }

}


@media (max-width:490px) and (min-width: 400px) {
    .ld-1 {
        max-height: 230px;
    }

    .ld-2 {
        max-height: 230px;
    }

    .ld-3 {
        max-height: 230px;
    }

    .ld-4 {
        max-height: 230px;
    }

    .ld-5 {
        max-height: 230px;
    }

    .ld-6 {
        max-height: 230px;
    }

}


@media (max-width:400px) and (min-width: 350px) {
    .ld-1 {
        max-height: 190px;
    }

    .ld-2 {
        max-height: 190px;
    }

    .ld-3 {
        max-height: 190px;
    }

    .ld-4 {
        max-height: 190px;
    }

    .ld-5 {
        max-height: 190px;
    }

    .ld-6 {
        max-height: 190px;
    }

}

@media (max-width:350px) and (min-width: 300px) {
    .ld-1 {
        max-height: 160px;
    }

    .ld-2 {
        max-height: 160px;
    }

    .ld-3 {
        max-height: 160px;
    }

    .ld-4 {
        max-height: 160px;
    }

    .ld-5 {
        max-height: 160px;
    }

    .ld-6 {
        max-height: 160px;
    }

}

@media (max-width:300px) and (min-width: 250px) {
    .ld-1 {
        max-height: 140px;
    }

    .ld-2 {
        max-height: 140px;
    }

    .ld-3 {
        max-height: 140px;
    }

    .ld-4 {
        max-height: 140px;
    }

    .ld-5 {
        max-height: 140px;
    }

    .ld-6 {
        max-height: 140px;
    }

}


@media (max-width:250px) and (min-width: 200px) {
    .ld-1 {
        max-height: 120px;
    }

    .ld-2 {
        max-height: 120px;
    }

    .ld-3 {
        max-height: 120px;
    }

    .ld-4 {
        max-height: 120px;
    }

    .ld-5 {
        max-height: 120px;
    }

    .ld-6 {
        max-height: 120px;
    }

}


@media (max-width:200px) and (min-width: 150px) {
    .ld-1 {
        max-height: 100px;
    }

    .ld-2 {
        max-height: 100px;
    }

    .ld-3 {
        max-height: 100px;
    }

    .ld-4 {
        max-height: 100px;
    }

    .ld-5 {
        max-height: 100px;
    }

    .ld-6 {
        max-height: 100px;
    }

}


@media (max-width:568px) {

    .leader-h2 {
        font-size: 18px !important;
    }

    .card-p {
        font-size: 14px !important;
    }

    .hero-text-m {
        margin-top: 50px;
        margin-left: 0;
    }

    .hero h1 {
        color: #FFF;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        /*line-height: 36.988px;*/
        padding-left: 10px;
        word-wrap: break-word;
    }

    .hero h2 {
        margin-top: 20px;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        /*line-height: 17.106px;*/
        padding-left: 10px;
    }

    .hero-text-block {
        display: flex;
        align-items: center;
    }
}



@media (max-width: 768px) {
    .para-block-3 {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        margin: 0 10px;
    }
}


.card-block-middle {
    width: 380px;
}

@media (max-width: 768px) {
    .card-block-middle {
        width: 50%;
    }
}


.section-3 p {
    margin-top: 16px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.slider-block {
    width: 1188px;
    padding: 0 50px;
}


.section-4 {
    padding-top: 40px;
    padding-bottom: 60px;
    background: rgba(56, 186, 235, 0.15);
}

    .section-4 h1 {
        font-size: 40px;
        font-weight: 600;
        /*line-height: 54px;*/
        text-align: center;
    }

    .section-4 h2 {
        color: #3F3F3E;
        font-size: 24px;
        font-weight: 400;
        text-align: center;
    }

.pipe {
    background-color: #086AD8;
    width: 6px;
    height: 51.235px;
}

.section-4 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.925px;
}

.heading-h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.423px;
}

.button {
    display:flex;
    background: #086AD8;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    justify-content: center;
    vertical-align: middle;
}
.button:hover
{
    background: orange;
    color: black;
    opacity: 1.0;
}

.section-5 {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

    .section-5 h1 {
        font-size: 40px;
        font-weight: 600;
        padding-bottom: 30px;
        text-align: center;
    }

.agreement-text {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.444px;
}


.section-6 {
    background: rgba(245, 138, 69, 0.10);
}

    .section-6 h1 {
        font-size: 16px;
        font-weight: 600;
    }

    .section-6 h2 {
        font-size: 12px;
        font-weight: 600;
    }


    .section-6 h3 {
        font-size: 12px;
        font-weight: 400;
    }


.divider {
    background-color: #000;
    width: 829px;
    height: 0.5px;
}

.heading-divider {
    background-color: #000;
    width: 122px;
    height: 2px;
}

.xs-flex-col {
    display: flex;
    flex-direction: row;
}

@media (max-width: 640px) {
    .xs-flex-col {
        display: flex;
        flex-direction: column;
    }
}

.parent:hover .child {
    visibility: visible;
    height: auto;
    overflow: auto;
    transform: translateY(0);
}

.parent:hover .down-icon1 {
    margin-top: 8px;
    transform: rotate(180deg);
}

.down-icon {
    margin-top: 0;
    transform: rotate(0);
}


.down-icon-active {
    margin-top: 8px;
    transform: rotate(180deg);
}

.show {
    display: block;
}

.child {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(-10%);
}

.frame {
    border-radius: 5px;
    background: #FFF;
    padding-top: 12px;
}

    .frame h1 {
        color: #F58A45;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        padding-bottom: 8px;
    }

.frame-divider {
    background: #F58A45;
    width: 90%;
    height: 1px;
}

.frame-divider-2 {
    background: #F58A45;
    width: 90%;
    height: 1px;
}


.frame-industries-divider {
    background: #F58A45;
    width: 90%;
    height: 0.5px;
}

.frame-sr-divider {
    background: #F58A45;
    width: 90%;
    height: 0.5px;
}

.frame-sr-divider-2 {
    background: #F58A45;
    width: 90%;
    height: 1px;
}

/*

 .frame-seperator {
     background: #F58A45;
     width: 1px;
     height: 90px;
     margin-top: 20px;
 }

 */

.frame-seperator {
    background: #F58A45;
    width: 1px;
    height: 90%;
    margin-top: 20px;
}

.frame-seperator-ind {
    background: #F58A45;
    width: 1px;
    height: 90%;
    margin-top: 20px;
}

.frame-seperator-in {
    background: #F58A45;
    width: 1px;
    height: 90%;
    margin-top: 20px;
}



.frame-block {
    margin-top: 12px;
    margin-bottom: 20px;
}

.sr-block {
    margin-top: 30px;
    /*left: -790px;*/
    left: -100%;
    flex-shrink: 0;
}

.industries-block {
    margin-top: 30px;
    left: -300%;
    flex-shrink: 0;
}

.self-start
{
    min-width: 200px;
}

@media (max-width: 1280px) {
    .industries-block {
        margin-top: 30px;
        left: -300%;
        flex-shrink: 0;
    }

    .sr-block {
        margin-top: 30px;
        left: -100%;
        flex-shrink: 0;
    }

    .self-start
    {
       min-width: 120px;
    }
}



.insights-block {
    margin-top: 30px;
    left: -200px;
    flex-shrink: 0;
}

.aboutUs-block {
    margin-top: 30px;
    left: -200px;
    flex-shrink: 0;
}


.products-block {
    margin-top: 30px;
    left: -200px;
    flex-shrink: 0;
}


.insights-frame-divider {
    background: #F58A45;
    width: 420px;
    height: 1px;
}


.about-us-frame-divider {
    background: #F58A45;
    width: 268px;
    height: 0.5px;
}

.about-us-frame-divider-2 {
    background: #F58A45;
    width: 220px;
    height: 0.5px;
}

.maps-block {
    margin-top: 30px;
    left: -200px;
    flex-shrink: 0;
}


.maps-frame-divider {
    background: #F58A45;
    width: 190px;
    height: 1px;
}

.width-1 {
    width: 90px;
}

.width-2 {
    width: 100px;
}

.fragment {
    height: 570px;
    margin: 0 70px;
}

.fragment-col-width {
    width: 490px;
}

.fragment-bgCol1 {
    background: #F4ECEC;
}

.fragment-bgCol2 {
    background: #EBF2F4;
}


.fragment-bgCol3 {
    background: #EBF2ED;
}

.fragment-bgCol4 {
    background: #F5EFEC;
}

.fragment-h1 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 27.5px;
}

.fragment-bg-red {
    color: #FFF;
    background: rgba(237, 64, 66, 0.8);
}

.fragment-bg-blue {
    color: #FFF;
    background: rgba(56, 186, 235, 0.80);
}

.fragment-bg-green {
    color: #FFF;
    background: rgba(52, 181, 99, 0.80);
}

.fragment-bg-orange {
    color: #FFF;
    background: rgba(245, 138, 69, 0.80);
}

.fragment-col {
    width: 600px;
    padding-left: 34px;
    padding-right: 33px;
    padding-top: 48px;
}

.fragment-col-2 {
    width: 687px;
    padding-left: 34px;
    padding-right: 33px;
    padding-top: 48px;
}

    .fragment-col-2 h1 {
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 27.5px;
    }


.fragment-h2 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
}

.fragment-p {
    margin-top: 5px;
    width: 230px;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fragment-p2 {
    margin-top: 5px;
    width: 260px;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fragment-p3 {
    margin-top: 5px;
    width: 490px;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.overlay-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: inherit;
    height: inherit;
    opacity: 0.99;
}


.swiper-pagination-bullet {
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}





/* about us page */

.about-section-1 {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 30px;
}

    .about-section-1 h1 {
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .about-section-1 h2 {
        color: #3F3F3E;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .about-section-1 h4 {
        color: #3F3F3E;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 150% */
    }


    .about-section-1 p {
        text-align: center;
    }



.section-ind {
    margin-top: -20px;
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

    .section-ind h1 {
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .section-ind h2 {
        color: #3F3F3E;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .section-ind p {
        text-align: center;
    }




.about-hero-p {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.tab {
    min-width: 200px;
    height: 55px;
    padding: 10px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 0.5px solid #BABAC7;
    font-weight: 700;
}

    .tab:hover {
        color: #fff;
        background: #f56200;
        cursor: pointer;
    }

.tab-active {
    min-width: 200px;
    color: #fff;
    padding: 10px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 0.5px solid #BABAC7;
    background: #F58A45;
    cursor: pointer;
}




.sr-block {
    margin-top: 30px;
    left: -790px;
    /*    width: 1520px;
    height: 429px;*/
    flex-shrink: 0;
}


@media (min-width: 1440px) and (max-width: 1540px) {
    .sr-block {
        margin-top: 30px;
        left: -640px;
        /*width: 1320px;
        height: 429px;*/
        flex-shrink: 0;
    }
}

@media (min-width: 1440px) {
    .sr-block {
        margin-top: 30px;
        left: -600px;
        /*width: 1260px;
        height: 429px;*/
        flex-shrink: 0;
    }

    .frame-sr-divider {
        background: #F58A45;
        width: 1205px;
        height: 0.5px;
    }
}


@media (min-width: 1280px) and (max-width: 1440px) {
    .sr-block {
        margin-top: 30px;
        left: -500px;
        /*width: 1120px;
        height: 429px;*/
        flex-shrink: 0;
    }

    .frame-sr-divider {
        background: #F58A45;
        width: 1070px;
        height: 0.5px;
    }

    .services-menu-block {
        width: 274px;
        height: 555px;
        margin-right: 20px;
        border-radius: 8.599px;
        background: rgba(237, 64, 66, 0.25);
    }

        .services-menu-block p {
            color: #000;
            width: 239px;
            padding-left: 23px;
            padding-right: 22px;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }
}




@media (min-width: 1024px) and (max-width: 1280px) {
    .sr-block {
        margin-top: 30px;
        left: -400px;
        width: 1094px;
        height: 429px;
        flex-shrink: 0;
    }

    .frame-sr-divider {
        background: #F58A45;
        width: 1040px;
        height: 0.5px;
    }


    .services-menu-block {
        width: 254px;
        height: 525px;
        margin-right: 20px;
        border-radius: 8.599px;
        background: rgba(237, 64, 66, 0.25);
    }

        .services-menu-block p {
            color: #000;
            width: 270px;
            padding-left: 23px;
            padding-right: 22px;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }


    .para-block-2 {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .para-block-3 {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }
}




@media (min-width: 1024px) {
    .nav-m {
        margin-top: 20px;
    }

    .logo-img {
        width: 1200%;
    }
}


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

    .aboutUs-block {
        margin-top: 60px;
        left: -200px;
        width: 316px;
        height: 230px;
        flex-shrink: 0;
    }


    .margin-t-40 {
        margin-top: 0 !important;
    }

    .m-link {
        color: black;
        display: inline-block;
        margin: 0 0;
        font-weight: 600;
        padding: 0 10px;
        transition: 0.2s;
        border-radius: 30px;
    }

    .down-icon {
        margin-top: 10px;
    }

    .down-icon-active {
        margin-top: 18px;
        transform: rotate(180deg);
    }

    .menu-link {
        font-size: 12px;
        font-weight: 400;
    }

    .nav-m ul {
        width: 620px;
        margin-top: 0;
        margin-left: 150px;
    }

    .logo-img {
        width: 1200%;
    }

    .nav-m img {
        margin-top: 10px;
    }

    .para-block {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .para-block-2 {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .para-block-3 {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .services-para-block {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }
}

.hero {
    background-color: rgba(12,8,9,.39);
    height: 80vh;
    margin: 0 !important;
    position: relative;
    width: 100%;
}

    .hero video {
        height: 100%;
        left: 0;
        object-fit: cover;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }


#zoom-box {
    background: #7d7e7d;
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0);*/
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e));
    background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);
    background: -moz-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);
    /*background:     -ms-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);*/
    background: -o-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);
    background: linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);
    border-radius: 10px;
    width: 0;
    height: 0;
    position: relative;
    top: 150px;
    left: 150px;
    border: solid 4px yellow;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}





/* typography */
/* get your beautiful color names from: http://www.colors.commutercreative.com/grid/ */
/* media queries */
/* timeline layout */


.timeline {
    position: relative;
    margin-top: 55px;
    margin-left: 15px;
}

    .timeline:before {
        /* vertical line*/
        content: "";
        position: absolute;
        top: 10px;
        /* to align with midline*/
        left: 7px;
        width: 2px;
        height: 97%;
        background-color: #F58A45;
    }

.timeline__block {
    position: relative;
    margin-top: 42px;
    margin-bottom: 42px;
    padding-left: 15px;
}

    .timeline__block:last-child {
        margin-bottom: 3em;
    }

    .timeline__block:after {
        content: "";
        display: table;
        clear: both;
    }

.timeline__midpoint {
    position: absolute;
    top: 6px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #F58A45;
}

    .timeline__midpoint:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 16px;
        width: 15px;
        border-top: 1px solid #fff;
    }

.timeline__content {
    position: relative;
    margin-left: 20px;
}

    .timeline__content p + p {
        padding-top: 0;
    }

    .timeline__content:after {
        content: "";
        display: table;
        clear: both;
    }

.timeline__midpoint--highlight > .timeline__year {
    display: none;
}

/* timeline typography */
.timeline__content .timeline__year {
    color: #3F3F3E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.timeline__midpoint--highlight .timeline__year {
    color: #fff;
    line-height: 4;
}

.timeline__year,
.timeline__midpoint--highlight + .timeline__content {
    font-weight: 600;
}

.timeline__content > p {
    font-size: 0.88em;
}

/* timeline layout for desktop */
@media (min-width: 1024px) {


    .timeline {
        margin-left: 0;
    }

        .timeline:before {
            /* vertical line */
            left: 50%;
            margin-left: -1px;
        }

    .timeline__midpoint {
        left: 50%;
        margin-left: -8px;
    }

        .timeline__midpoint:before {
            width: 40px;
        }

        .timeline__midpoint:after {
            content: "";
            position: absolute;
            top: 50%;
            right: 16px;
            width: 40px;
            border-top: 1px solid #fff;
        }

    .timeline__midpoint--highlight {
        top: 0;
        width: 76px;
        height: 76px;
        margin-left: -29px;
        margin-left: -38px;
        text-align: center;
    }

        .timeline__midpoint--highlight.no-top-margin {
            margin-top: 0;
        }

        .timeline__midpoint--highlight .timeline__year {
            display: block;
        }

        .timeline__midpoint--highlight:before,
        .timeline__midpoint.timeline__midpoint--highlight:after {
            content: none;
        }

        .timeline__midpoint--highlight,
        .timeline__midpoint--highlight + .timeline__content {
            margin-top: 2em;
            margin-bottom: 2em;
        }

    .timeline__content {
        width: 50%;
    }

        .timeline__content .timeline__year--mobile {
            display: none;
        }

    .timeline__content--left {
        margin-left: -6%;
    }

        .timeline__content--left .timeline__year {
            text-align: left;
            left: 128%;
        }

    .timeline__year {
        position: absolute;
        width: 50%;
        margin-top: 0;
    }

    .timeline__text--left {
        padding-right: 25px;
        text-align: right;
    }

    .timeline__content--right {
        float: right;
        width: 53%;
        left: 11%;
    }

        .timeline__content--right .timeline__year {
            right: 134%;
            text-align: right;
        }

        .timeline__content--right .timeline__text--right {
            margin-top: 0;
        }

    .timeline__img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .timeline__content--left .timeline__img {
        left: 127%;
    }

    .timeline__content--right .timeline__img {
        right: 133.5%;
    }
}


.list {
    position: relative;
}

    .list h2 {
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .list ul {
        position: relative;
    }

        .list ul li {
            position: relative;
            left: 0;
            color: #111;
            list-style: none;
            margin: 4px 0;
            border-left: 10px solid #f50057;
            transition: 0.5s;
            cursor: pointer;
        }

            .list ul li:hover {
                left: 10px;
            }

            .list ul li span {
                position: relative;
                padding: 8px;
                padding-left: 12px;
                display: inline-block;
                z-index: 1;
                transition: 0.5s;
            }

            .list ul li:hover span {
                color: #fff;
            }

            .list ul li:before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                background: #f50057;
                transform: scaleX(0);
                transform-origin: left;
                transition: 0.5s;
            }

            .list ul li:hover:before {
                transform: scaleX(1);
            }


.leader-txt {
    overflow-y: auto;
    max-height: 50vh;
}

#loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
}

#loading-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}



.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 999;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    color: #333;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #aaa;
    background-color: transparent;
    border: none;
}

.close-btn:hover {
    color: #555;
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
