.home-page {
    background-color: #fff;
    padding: 0px 0px 0px 0px;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.home-page .achievements {
    display: flex;
    flex-direction: column;
    padding: 100px 8% 0px 8%;
    gap: 20px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.home-page .achievements.animate {
    opacity: 1;
}

.home-page .achievements .col {
    display: flex;
    flex-direction: column;
}

.home-page .achievements .col span {
    color: #000;
    font-size: 14px;
}

.home-page .achievements .col b {
    font-size: 30px;
    font-weight: 500;
    color: #000;
}

.home-page .achievements img {
    height: 40px;
}

.home-page .achievements p {
    font-size: 14px;
    font-weight: 400;
    max-width: 640px;
}

.home-page .our-services {
    display: flex;
    flex-direction: column;
    padding: 100px 8% 0px 8%;
    gap: 30px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.home-page .our-services.animate {
    opacity: 1;
}

.home-page .our-services .img-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.home-page .our-services .img-content .col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-self: flex-start;
}

.home-page .our-services .img-content .col span {
    color: #000;
    font-size: 14px;
}

.home-page .our-services .img-content .col b {
    font-weight: 500;
    font-size: 25px;
    color: #000;
}

.home-page .our-services .img-content .img-group {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 400px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.home-page .our-services .img-content .img-group img {
    width: 200px;
    position: absolute;
    object-fit: cover;
    height: 100%;
    min-width: 100%;
}

.home-page .our-services .img-content .img-group a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    width: 120px;
    height: 40px;
    border-radius: 20px;
    color: #fff;
    border: 1px solid #fff;
    bottom: 20px;
    font-size: 13px;
    position: absolute;
}

.home-page .our-services ul {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 0px 20px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    top: 500px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.home-page .our-services ul.animate {
    top: 0px;
    opacity: 1;
} 

.home-page .our-services ul li {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
    width: 100%;
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 10px;
}

.home-page .our-services ul li:last-child {
    border-bottom: none;
}

.home-page .our-services ul li .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D9D9D9;
}

.home-page .our-services ul li .img-box img {
    height: 30px;
}

.home-page .our-services ul li .info {
    flex: 1;
}

.home-page .our-services ul li .info h4 {
    font-size: 18px;
    font-weight: 500;
    color: #02457A;
    margin-bottom: 10px;
    text-align: center;
}

.home-page .our-services ul li .info p {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 24px;
}

.home-page  .our-services a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    background-color: #467BA3;
    color: #fff;
    font-size: 13px;
    height: 40px;
    width: 130px;
    border-radius: 20px;
    text-transform: capitalize;
    margin: 0px auto;
}

.home-page .next-project {
    padding: 100px 8% 20px 8%;
    background: linear-gradient(0deg, rgba(215, 238, 255, 1) 68%, rgba(255, 255, 255, 1) 100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    position: relative;
    top: 100px;
}

.home-page .next-project.animate {
    opacity: 1;
    top: 0px;
}

.home-page .next-project h6 {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.home-page .next-project h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

.home-page .next-project .img-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-page .next-project .img-row img {
    border-radius: 10px;
    flex: 1;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 0px 20px -5px #0007;
}

.home-page .next-project .action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.home-page .next-project .action p {
    font-size: 14px;
    text-align: center;
    max-width: 320px;
    color: #000;
}

.home-page .next-project .action a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    background-color: #467BA3;
    color: #fff;
    font-size: 14px;
    height: 40px;
    border-radius: 20px;
    text-transform: capitalize;
}

.home-page .workflow {
    padding: 100px 8% 20px 8%;
    background: linear-gradient(180deg, rgba(215, 238, 255, 1) 68%, rgba(255, 255, 255, 1) 100%);
    opacity: 0;
    top: 100px;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.home-page .workflow.animate {
    opacity: 1;
    top: 0px;
}

.home-page .workflow h6 {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.home-page .workflow h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

.home-page .workflow .steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.home-page .workflow .steps-wrapper ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border: 1px solid #fff;
    padding: 20px 20px;
    width: 100%;
    max-width: 720px;
    border-radius: 15px;
    position: relative;
}

.home-page .workflow .steps-wrapper ul::before {
    content: '';
    width: 2px;
    height: 90%;
    position: absolute;
    background-color: #000;
    z-index: 1;
}

.home-page .workflow .steps-wrapper ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.home-page .workflow .steps-wrapper ul li .title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    border-radius: 20px;
    background-color: #000;
    color: #fff;
}

.home-page .workflow .steps-wrapper ul li .title span {
    font-size: 13px;
}

.home-page .workflow .steps-wrapper ul li .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100%;
    max-width: 480px;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #fff;
    color: #000;
}

.home-page .workflow .steps-wrapper ul li .content p {
    font-size: 14px;
}

.home-page .workflow .steps-wrapper ul .lanuch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100%;
    max-width: 480px;
    background-color: #20FFB5;
    border-radius: 6px;
    color: #000;
    position: relative;
    z-index: 2;
}

.home-page .workflow .steps-wrapper ul .lanuch span {
    font-size: 14px;
}

.home-page .workflow a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 40px;
    background-color: #467BA3;
    color: #fff;
    font-size: 14px;
    height: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.home-page .stand-out {
    padding: 100px 8% 20px 8%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 100px;
    position: relative;
}

.home-page .stand-out.animate {
    top: 0px;
    opacity: 1;
}

.home-page .stand-out .col {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 40px;
    gap: 40px;
}

.home-page .stand-out .col .text-content {
    flex: 1;
    max-width: 640px;
}

.home-page .stand-out .col .text-content h6 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.home-page .stand-out .col .text-content h2 {
    font-size: 25px;
    font-weight: 500;
    color: #02457A;
    margin-bottom: 20px;
}

.home-page .stand-out .col .text-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.home-page .stand-out ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-page .stand-out ul li {
    flex: 1;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0px 10px 20px -5px #0006;
}

.home-page .stand-out ul li img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.home-page .stand-out ul li h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: #000;
    text-transform: capitalize;
}

.home-page .stand-out ul li p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-top: 10px;
    line-height: 24px;
}

.home-page .past-projects {
    padding: 100px 8% 20px 8%;
    top: 100px;
    position: relative;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.home-page .past-projects.animate {
    opacity: 1;
    top: 0px;
}

.home-page .past-projects h6 {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.home-page .past-projects h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.home-page .past-projects ul {
    display: flex;
    overflow-x: scroll;
    gap: 40px;
}

.home-page .past-projects ul img {
    width: 100%;
    min-width: 320px;
}

.home-page .past-projects a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    background-color: #467BA3;
    color: #fff;
    font-size: 14px;
    height: 40px;
    width: 130px;
    margin: 40px auto 0px auto;
    border-radius: 20px;
    text-transform: capitalize;
}

.home-page .testimony {
    padding: 100px 8% 20px 8%;
}

.home-page .testimony h6 {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.home-page .testimony h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.home-page .testimony ul {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    gap: 30px;
}

.home-page .testimony ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #D7EEFF;
    padding: 20px;
    border-radius: 10px;
    min-width: 320px;
}

.home-page .testimony ul li img {
    height: 80px;
    margin-bottom: 30px;
}

.home-page .testimony ul li .head {
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    background-color: #fff;
    width: 100%;
}

.home-page .testimony ul li .head span {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.home-page .testimony ul li .head span:first-child {
    color: #00AB00;
}

.home-page .testimony ul li .head img {
    height: 16px;
    margin-left: auto;
    margin-bottom: 0px;
}

.home-page .testimony ul li .review {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
}

.home-page .testimony ul li .review img {
    width: 100%;
    height: unset;
    object-fit: contain;
}

.home-page .work-with-us {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 100px 8% 100px 8%;
    background: linear-gradient(0deg, rgba(215, 238, 255, 1) 68%, rgba(255, 255, 255, 1) 100%);
}

.home-page .work-with-us .text-content {
    max-width: 640px;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.home-page .work-with-us.animate .text-content {
    opacity: 1;
}
.home-page .work-with-us .text-content h6 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.home-page .work-with-us .text-content h2 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.home-page .work-with-us .text-content h2 b {
    color: #02457A;
    font-weight: 500;
}

.home-page .work-with-us .text-content a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    background-color: #467BA3;
    color: #fff;
    font-size: 13px;
    height: 40px;
    width: 130px;
    border-radius: 20px;
    text-transform: capitalize;
}

.home-page .work-with-us img {
    width: 100%;
    max-width: 640px;
    border-radius: 10px;
    position: relative;
    right: -100px;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.home-page .work-with-us.animate img {
    right: 0px;
    opacity: 1;
}

.book-appointment-modal {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 20px 20px;
    background-color: #0006;
    cursor: pointer;
    z-index: 99999;
}
.book-appointment-modal .content {
    width: 100%;
    max-width: 480px;
    cursor: default;
}

@media screen and (min-width: 880px) {
    .home-page .achievements {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .home-page .achievements p {
        max-width: 320px;
    }
}

@media screen and (min-width: 720px) {
    .home-page .our-services ul {
        flex-direction: row;
    }
    .home-page .our-services ul li {
        width: calc(50% - 10px);
    }
}

@media screen and (min-width: 1080px) {
    .home-page .our-services ul li {
        width: calc(33.33% - 13.33px);
    }
}

@media screen and (min-width: 880px) {
    .home-page .next-project .img-row {
        flex-direction: row;
    }
}

@media screen and (min-width: 880px) {
    .home-page .stand-out .col {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .home-page .stand-out .col h2 {
        font-size: 40px;
    }

    .home-page .stand-out .col img {
        max-width: 480px;
    }
}

@media screen and (min-width: 880px) {
    .home-page .stand-out ul {
        flex-direction: row;
    }
}

@media screen and (min-width: 880px) {
    .home-page .past-projects ul {
        flex-direction: row;
    }
}
/* 
@media screen and (min-width: 720px) {
    .home-page .testimony ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 720px) {
    .home-page .testimony ul li {
        width: calc(50% - 15px);
    }
}

@media screen and (min-width: 1080px) {
    .home-page .testimony ul li {
        width: calc(33.33% - 20px);
    }
} */

@media screen and (min-width: 880px) {
    .home-page .work-with-us {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 880px) {
    .home-page .work-with-us .text-content h6 {
        font-size: 20px;
    }
}

@media screen and (min-width: 880px) {
    .home-page .work-with-us .text-content h2 {
        font-size: 40px;
    }
}