@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.woff') format('woff');

    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.hero-container {
    overflow: hidden;
}

.container {
    margin: auto;
    max-width: 1280px;
}

.header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
}

.nav-links {
    display: flex;
    gap: 15px;
    padding: 0 30px;
    list-style: none;
    background: #EDF4F5;

    border-radius: 28px;
    /* width: 640px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 61px;
    margin-right: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #181C1C;
    font-size: 16px;
    font-family: 'Gilroy';
    padding: 12px 16px;
    font-weight: 400;
    /* padding: 8px 14px;
    border-radius: 20px; */
}

.nav-links li a:hover {
    background-color: #4C949D;

    border-radius: 100px;
    color: white;
}

.nav-links li a.active {
    background-color: #4C949D;

    border-radius: 100px;
    color: white;
}


/* Social Icons */
.social-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #181C1C;
}

.social-icons3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 23px;
    color: #181C1C;
}

.social-icons1 {
    display: flex;
    gap: 30px;
    font-size: 18px;
    color: #181C1C;
}

.social-icons i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #008CBA;
}

.sidebar {
    position: fixed;
    display: none;
    z-index: 99;
    top: 0;
    left: -100%;
    width: 310px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
    transition: left 0.4s ease-in-out;
}

.sidebar ul {
    list-style: none;
    padding: 0 20px;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    text-decoration: none;
    font-size: 16px;
    font-family: 'Gilroy';
    font-weight: 400;
    color: #181C1C;
    display: block;
    padding: 10px;
    border-radius: 100px;
}

.sidebar ul li a.active {
    background: #008080;
    color: white;
}

.sidebar.show {
    left: 0;
}

.social-icons2 {
    position: absolute;
    /* bottom: 20px; */
    left: 33%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.social-icons2 i {
    font-size: 20px;
    color: black;
    cursor: pointer;
}

.footer {
    background: url('assets/footer.png') no-repeat;
    /* height: 424px;
    max-width: 1280px; */
    background-size: contain;
    content: "";



    padding: 44px 40px 80px 40px;
    text-align: center;
    border-radius: 32px;
    margin-top: 120px;
    position: relative;
}

/* .footer-img{
    position: absolute;
  
   
    background: url('assets/footer.png') no-repeat center center;
    background-size: contain;
    content: "";
    z-index: 30;
} */


.footer-top {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;

    gap: 30px;
}

.logo {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: start;
}

nav {
    width: 50%;
}

nav ul {
    list-style: none;
    padding-left: 3px;
    display: flex;
    justify-content: end;
    gap: 30px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    color: #181C1C;

}

nav ul li a:hover {
    color: #4C949D;
}

.newsletter {
    margin: 20px 0;
    display: flex;
    text-align: center;
    gap: 30px;
}

.newsletter span {
    text-align: start;
    font-size: 20px;
    font-family: 'Gilroy';
    font-weight: 600;
    color: #181C1C;
    margin: 0;
    padding: 0;
}

.newsletter p {
    font-size: 16px;
    color: #181C1C;
    font-family: 'Gilroy';
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 20.8px;
    margin: 0;
    text-align: start;
    margin-top: 7px;
    padding: 0;
}

.subscribe {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative;
}

.subscribe input {
    padding: 15px;
    width: 100%;
    color: #181C1C;
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    background-color: #F4F6F6;
    border: 1px solid #DFE6E7;

    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;

    outline: none;
}

.subscribe input::placeholder {
    color: #181C1C;
    font-family: 'Gilroy';
    font-weight: 400;
}

.subscribe button {
    padding: 10px 15px;
    background: #4C949D;
    color: white;
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    gap: 5px;
    border: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 10px;

}

.newsletter-col1 {
    width: 50%;
}

.newsletter-col2 {
    width: 50%;
}

.footer-bottom p {
    font-size: 16px;
    color: #181C1C;
    font-family: 'Gilroy';
    font-weight: 400;
}

.footer-bottom-col1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.links li {
    display: inline;
}

.links li a {
    text-decoration: none;
    color: #181C1C;
    font-size: 16px;
    font-family: 'Gilroy';
    font-weight: 400;
}

.social-icons a {
    margin-left: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.newsletter-row1 {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.newsletter-row1 .newsletter-row2 {
    width: 50%;
}

.service-hero {
    background: url('assets/about/about-hero.png') no-repeat;
    height: 600px;
    max-width: 1280px;
    background-size: cover;
    content: "";
    position: relative;

    margin-top: 40px;
}

.service-hero-left {
    position: absolute;
    top: 2%;
    right: -5%;
}

.service-hero-bottom {
    display: none;
}

.service-hero-left img {
    width: 800px;

    /* border: 14px solid #FFFFFF;
    border-radius: 16px; */
}

.service-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-content h1 {
    font-size: 54px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 64.8px;
    color: #181C1C;
    margin: 0;
}

.service-content p {
    font-size: 16px;
    color: #181C1C;
    font-family: 'Gilroy';
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 20.8px;
    margin: 20px 0 0 0;
    text-align: justify;
    width: 80%;


}

.service-content .col1 {
    width: 50%;
}

.service-content .col2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 90px 0 0 40px;

}

.demobtn1 {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 40px;
}


.demo-button {
    background-color: #4C949D;
    color: white;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Gilroy';
    border: none;
    border-radius: 25px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* position: relative; */
    outline: none;
    text-decoration: none;
    z-index: 20;
}

.demo-button .arrow1 {
    background-color: white;
    color: #168b8f;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.demo-button:hover {
    background-color: #13767b;
}

.find-section {
    background: url('assets/about/find.png') no-repeat;
    height: 500px;

    background-size: cover;
    content: "";
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.find-section h2 {
    font-size: 54px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 64.8px;
    color: #181C1C;
}

.arrow-second {
    position: absolute;
    bottom: 0%;

}

.arrow1 {
    font-size: 14px;
    color: #6EA9B0;
    font-weight: bold;
    cursor: pointer;
    background: #EDF4F5;
    border-radius: 100%;
    width: 130px;
    height: 130px;
    border: solid 1px #6EA9B0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-second p {
    padding: 10px 0 0 0;
    margin: 0;
    color: #6EA9B0;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Gilroy';
    text-align: center;
}

.custom-icon {
    font-size: 50px;

    height: 50px;
}

.Management {
    margin-top: 50px;
    position: relative;
}

.Management h2 {
    font-size: 54px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 64.8px;
    color: #181C1C;
    width: auto;
    margin: 0;
    padding: 0;
}

.Management p {
    padding: 10px 0 0 0;
    margin: 0;
    color: #181C1C;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Gilroy';
    width: 70%;

}

.history-section {
    background: url('assets/about/histroy.png') no-repeat;
    height: 1061px;

    background-size: cover;
    content: "";
    position: relative;

    margin-top: 40px;
}

.arrow-second1 {
    display: flex;
    position: absolute;
    bottom: -80%;
    right: 0;
    z-index: 99;

}

.arrow2 {
    font-size: 14px;
    color: #008080;
    font-weight: bold;
    cursor: pointer;
    background: #EDF4F5;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow2 img {
    width: 40px;
}

.overview {
    padding: 10% 0 0 10%;
}

.overview h3 {
    font-size: 54px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 64.8px;
    color: #181C1C;

    margin: 0;
    padding: 0;
}

.overview p {
    padding: 10px 0 0 0;
    margin: 0;
    color: #181C1C;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    font-family: 'Gilroy';
    line-height: 20.8px;

}

.profile {
    position: absolute;
    bottom: 0;
    right: 12%;
}

.timeline-box {
    padding: 130px 20px 0 60px;
}

.timeline-container {
    position: relative;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-line {
    position: absolute;
    bottom: -69%;

    right: 2%;
    width: 96%;
    height: 4px;
    background: #fff;

}

.timeline-item {
    position: relative;
    text-align: center;
    font-weight: 500;
    font-family: 'Gilroy';
    color: #87979C;
    font-size: 16px;
    cursor: pointer;
}

.timeline-item strong {
    font-size: 20px;
    color: #008c9e;
}

.timeline-item:last-child strong {
    color: #ff6b6b;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    background: white;
    border: 3px solid #ddd;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-marker1 {
    width: 12px;
    height: 12px;
    background: white;
    border: 5px solid #008c9e;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item:first .timeline-marker {
    border: 3px solid #008c9e;
    width: 16px;
    height: 16px;
}

.timeline-item:last-child .timeline-marker {
    color: #ff6b6b;
    font-size: 16px;
}

.timeline-item:last-child .timeline-marker::after {
    content: "\f3c5";
    /* FontAwesome location icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff6b6b;
}

.journey {
    padding: 180px 20px 0 60px;
}

.journey-arrows {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 50px;
}

.journey-arrows .arrow13 {
    color: #6EA9B0;
    cursor: pointer;
}

.journey-arrows .arrow21 {
    color: #6EA9B0;
    cursor: pointer;
}

.journey-content {
    width: 50%;
}

.journey-content h3 {
    font-size: 54px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 64.8px;
    color: #181C1C;

    margin-top: 50px;
    padding: 0;
}

.journey-content p {
    padding: 10px 0 0 0;
    margin: 0;
    color: #181C1C;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Gilroy';
    line-height: 20.8px;
}

.timeline-item.active-year {
    color: #008c9e;
    font-weight: bold;
}

.timeline-item.active-year .timeline-marker {
    border: 5px solid #008c9e;
}

.modal3 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content1 {
    position: relative;
    background: white;
    padding: 20px;
    width: 60%;
    max-width: 800px;
    border-radius: 8px;
}

.close2 {
    position: absolute;
    top: -1%;
    right: 5px;
    font-size: 40px;
    cursor: pointer;
    color: #000000;
}

video {
    width: 100%;
    border-radius: 8px;
}

.cookie-popup {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-popup button {
    margin: 5px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}

.cookie-popup button:first-child {
    background-color: green;
    color: white;
}

.cookie-popup button:last-child {
    background-color: red;
    color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Modal Content */
.modal-content {
    background: url('assets/contact/popup.png') no-repeat center;
    background-size: contain;
    width: 400px;
    height: 379px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

}

/* Modal Logo */
.modal-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Modal Heading */
.modal-content h3 {
    font-size: 28px;
    font-family: 'Gilroy';
    font-weight: 600;
    color: #181C1C;
    margin-bottom: 20px;
}

/* Close Button */

.close1 {
    padding: 10px 70px;
    background: #f2f8f8;
    font-family: 'Gilroy';
    font-size: 16px;
    color: #008080;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-second5 {
    position: absolute;
    top: 4.9%;
    left: 41.5%;


}

.arrow3 {
    font-size: 14px;
    color: #6EA9B0;
    font-weight: bold;
    cursor: pointer;
    background: #EDF4F5;
    border-radius: 32px;
    width: 334px;
    height: 211px;
    display: flex;

    align-items: center;
    justify-content: center;
}

.arrow3 img {
    width: 150px;
}

.hero-vector {
    display: none;
}

@media (max-width: 500px) {
    .modal-content {

        width: 280px;


    }

    .arrow-second5 {
        position: absolute;
        top: 10%;
        left: auto;
    }
}

@media (max-width: 767px) {
    .hero-container {
        overflow: visible;
    }

    .sidebar {
        display: block;
    }


    .timeline-line {
        position: absolute;
        bottom: -69%;

        right: 2.5%;
        width: 90%;
        height: 4px;
        background: #fff;

    }

    .close2 {
        position: absolute;
        top: -1%;
        right: 4px;
        font-size: 30px;
        cursor: pointer;
        color: #000000;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .nav-links {
        display: none;
    }

    .social-icons3 {
        display: none;
    }

    /* .social-icons{
        display: none;
    } */

    .Management h2 {
        font-size: 24px;
        line-height: 28.8px;
        width: auto;

    }

    .Management p {

        width: auto;

    }

    .history-section {
        background: url('assets/about/history1.png') no-repeat;
        height: 1100px;

        background-size: cover;
        content: "";
        position: relative;

        margin-top: 40px;
    }

    .overview {
        padding: 22% 0 0 22%;
    }

    .overview h3 {
        font-size: 24px;
        font-weight: 500;
        font-family: 'Gilroy';
        line-height: 64.8px;
        color: #181C1C;

        margin: 0;
        padding: 0;
    }

    .overview p {
        text-align: left;
        margin: 0;
        color: #181C1C;
        font-weight: 400;
        font-size: 16px;
        font-family: 'Gilroy';
        line-height: 16px;

    }

    .journey {
        padding: 50px 10px 0 10px;
    }

    .journey-content {
        width: auto;
    }

    .journey-content h3 {
        font-size: 40px;
        font-weight: 600;
        font-family: 'Gilroy';
        line-height: 50px;
        color: #181C1C;
        text-align: center;
        margin: 0;
        padding: 40px 10px 0 10px;
    }

    .journey-content p {
        padding: 10px 0 0 0;
        margin: 0;
        color: #181C1C;
        font-weight: 400;
        font-size: 16px;
        font-family: 'Gilroy';
        line-height: 20.8px;
    }

    .profile {
        position: absolute;
        bottom: -18%;
        right: 0;
        padding: 0 13%
    }

    .timeline-box {
        padding: 180px 10px 0 10px;
    }

    .timeline-hidden {
        display: none;
    }

    .modal-content h3 {
        font-size: 22px;
    }

    /* .service-hero{
                    background: url('/assets/about/about-hero1.png') no-repeat  ;
           
            overflow: visible;
                background-size: contain;
                content: "";
                position: relative;
                margin-top: 20px;
                } */

    .demobtn1 {

        margin-top: 20px;
    }


    .footer-bottom {
        display: flex;
        flex-direction: column;

        align-items: start;
        padding: 20px;
        margin-top: 10px;


    }

    .footer-bottom-col1 {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: start;

    }

    .links {
        list-style: none;
        flex-direction: column;
        padding: 0;
        display: flex;
        gap: 15px;
    }

    .find-section {
        margin-top: 300px;
    }

}
@media (max-width: 350px) {
.overview h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;
    color: #181C1C;

    margin: 10px 0 0 0;
    padding: 0;
}

.overview p {
    padding: 2px 0 0 0;
    margin: 0;
    color: #181C1C;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    font-family: 'Gilroy';
    line-height: 20.8px;

}
}
@media (min-width: 768px) and (max-width: 950px) {
    .Management h2 {
        font-size: 40px;
        font-weight: 500;
        font-family: 'Gilroy';
        line-height: 45.8px;
        color: #181C1C;
        width: auto;
        margin: 0;
        padding: 0;
    }

    .overview h3 {
        font-size: 40px;

        font-family: 'Gilroy';
        line-height: 45.8px;
    }

    .journey-content h3 {
        font-size: 40px;

        font-family: 'Gilroy';
        line-height: 45.8px;
    }
}

@media (max-width: 440px) {
    .history-section {
        background: url('assets/about/history1.png') no-repeat;
        height: 920px;

        background-size: cover;
        content: "";
        position: relative;

        margin-top: 40px;
    }

    .overview p {
            padding: 2px 0 0 0;
        text-align: left;
        margin: 0;
        color: #181C1C;
        font-weight: 400;
        font-size: 10px;
        font-family: 'Gilroy';
        line-height: 16px;

    }

    .timeline-box {
        padding: 130px 10px 0 10px;
    }

    .journey-arrows {
        position: absolute;
        bottom: 18%;
        left: 35%;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 50px;
    }


}

@media(max-width: 1020px) {

    .footer {
        background: url('assets/footer.png') no-repeat center center;
        /* height: 424px;
        max-width: 1280px; */
        background-size: cover;
        content: "";



        padding: 44px 40px 44px 40px;
        text-align: center;

        margin-top: 40px;
        position: relative;
    }

    .footer-top {

        flex-direction: column;
        /* justify-content: space-between; */
        align-items: start;

    }

    .logo {
        width: 100%;

    }

    nav {
        width: 100%;
    }

    nav ul {
        list-style: none;
        flex-direction: column;
        padding: 0;
        display: flex;
        align-items: start;
        text-align: start;
        gap: 30px;
    }

    .newsletter {
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-row1 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        /* justify-content: center; 
         align-items: center; */
    }

    .newsletter-col1 {
        width: auto;
    }

    .newsletter-col2 {
        width: auto;
    }

    .newsletter-row1 .newsletter-row2 {
        width: 100%;
    }

    .subscribe button {
        width: 250px;
    }
}

@media (max-width: 550px) {
    .hero-vector {
        display: flex;
        position: absolute;
        top: -1%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-vector img {
        width: 30px;
    }
}

@media(min-width: 551px) and (max-width: 1279px) {

    .hero-vector {
        display: flex;
        position: absolute;
        top: 1.5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-vector img {
        width: 100%;
    }

    .history-section {
        background-color: #EDF4F5;
        height: 1100px;
        background-image: none;
        background-size: cover;
        content: "";
        position: relative;
        border-radius: 20px;
        margin-top: 40px;
    }

    .overview {
        padding: 20px;
    }

    .journey {
        padding: 50px 20px 0 60px;
    }

    .journey-content {
        width: 100%;
    }

    .profile {
        position: absolute;
        margin: auto;
        bottom: 1%;
        padding: 0 13%;
        display: flex;
        justify-content: center;
        align-self: center;
    }

    .timeline-box {
        padding: 80px 20px 0 60px;
    }

    .find-section {
        margin-top: 40px;
    }

    .Management h2 {
        width: auto;
    }

    .Management p {
        width: auto;
    }
}

@media(max-width: 1279px) {

    .arrow-second1 {
        display: none;
    }

    .find-section {
        background: url('assets/about/find.png') no-repeat center center;
        height: 320px;
        border-radius: 28px;
        background-size: cover;
        content: "";
        position: relative;


        display: flex;
        justify-content: center;
        align-items: center;
    }

    .find-section h2 {
        font-size: 28px;
        font-weight: 500;
        font-family: 'Gilroy';
        text-align: center;
        padding: 0 10px 50px 10px;
        line-height: 38.8px;
        color: #181C1C;
    }

    .arrow1 {
        font-size: 14px;
        color: #6EA9B0;
        font-weight: bold;
        cursor: pointer;
        background: #EDF4F5;
        border-radius: 100%;
        width: 70px;
        height: 70px;
        border: solid 1px #6EA9B0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-icon {
        font-size: 30px;

        height: 30px;
    }

    .arrow-second {
        position: absolute;
        bottom: -1%;

    }

    .service-content h1 {
        font-size: 28px;
        font-weight: 600;
        font-family: 'Gilroy';
        line-height: 36.4px;
        color: #181C1C;
        margin: 0;
        padding: 20px 10px;
        text-align: center;
    }

    .service-content p {

        text-align: center;
    }

    .service-content .col1 {
        display: none;
    }

    .service-content .col2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0 0 0;
    }

    .service-hero-left {
        display: none;
    }
}

@media (max-width:420px) {
    .service-hero {
        background: url("assets/services/services-bg3.png") no-repeat;
        background-size: contain;
        content: "";
        position: relative;
        margin-top: 20px;
        border-radius: 20px;
    }

    .service-hero-bottom {
        position: absolute;
        bottom: 16%;
        left: 10%;
        right: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        max-width: 500px;
    }
}

@media (min-width:421px) and (max-width:1279px) {
    .service-hero {
        background: url("assets/services/services-bg3.png") no-repeat;
        background-size: cover;
        content: "";
        position: relative;
        margin-top: 20px;
        border-radius: 20px;
    }

    .service-hero-bottom {
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        max-width: 500px;
    }
}

@media (min-width:421px) and (max-width:450px) {
    .hero-vector {
        display: flex;
        position: absolute;
        top: -1%;
        left: 55.5%;
        transform: translateX(-50%);
    }
}

@media(max-width:400px) {
    .timeline-box {
        padding: 130px 10px 0 10px;
    }

    .journey-arrows {
        position: absolute;
        bottom: 18%;
        left: 35%;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 50px;
    }
}

@media (min-width:401px) and (max-width:550px) {
    .journey-arrows {
        position: absolute;
        bottom: 22%;
        left: 40%;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 50px;
    }
}