@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

:root {
    --card-transform: calc((100% - 1040px)/2)
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'El Messiri', sans-serif;
}

p,
a,
li,
button {
    font-family: 'Exo 2', sans-serif;
}

header {
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #cecece;
    position: fixed;
    top: 0px;
    z-index: 999;
}

.containerx {
    width: 340px;
    height: auto;
    margin-inline: auto;
}

.nav-container {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.navigation-menu {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
}

.navigation-menu.menuBtnOpen>.navTwo {
    width: 0%;
}

.navigation-menu.menuBtnOpen>.navOne {
    transform: rotate(-45deg) translateY(8px) translateX(-5px);
    width: 100%;
}

.navigation-menu.menuBtnOpen>.navThree {
    transform: rotate(45deg) translateY(-8px) translateX(-5px);
    width: 100%;
}

.navigation-menu:hover .navOne,
.navigation-menu:hover .navThree {
    width: 100%;
}

.navTwo {
    width: 100%;
    height: 2px;
    background: #2251FF;
    transition: width 0.2s ease-in-out;
}

.navOne,
.navThree {
    width: 60%;
    height: 2px;
    background: #2251FF;
    transition: all ease-in-out 0.2s;
}

.navigation-menu-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    column-gap: 40px;
    margin-bottom: 0px;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    position: absolute;
    left: 100%;
    justify-content: center;
    top: 80px;
    align-items: center;
    z-index: -1;
    border-bottom: 1px solid #cecece;
    transition: left ease-in-out 0.2s;
}

.navigation-menu-container ul.menuContainerOpen {
    left: 0%;
}

.navigation-menu-container ul li a {
    text-decoration: none;
    color: #222;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    width: max-content;
}


.navigation-menu-container ul li a::before {
    content: '';
    width: 0%;
    height: 4px;
    top: 50px;
    position: absolute;
    background: #2251FF;
    border-radius: 4px 4px 0px 0px;
    transition: width ease-in-out 0.25s;
}

.navigation-menu-container ul li a:hover::before {
    width: 100%;
}

.contactBtn {
    padding: 10px 30px;
    border-radius: 30px;
    background-color: #E8F3FF;
    font-family: 'Exo 2';
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    text-transform: capitalize;
    color: #2251FF !important;
    transition: all ease-in-out 0.2s;
    cursor: pointer;
}

.contactBtn:hover {
    box-shadow: 0px 2px 4px rgba(34, 81, 255, 0.5);
}

.contactBtn::before {
    display: none;
}

.hero-section {
    width: 100%;
    height: 550px;
    background-image: url(media/heroBanner.png);
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 80px;
    border-bottom: 1px solid #cecece;
}

.hero-card {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    background: #fff;
    padding: 40px 20px;
}

.hero-txt h1 {
    font-family: 'El Messiri';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: start;
    color: #222222;
}

.hero-txt p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.25px;
    text-align: start;
    color: #444444;
    margin-top: 24px;
}

.hero-txt .primaryCTA {
    padding: 12px 40px;
    background: #2251FF;
    border-radius: 10px;
    border: none;
    outline: none;
    font-family: 'Exo 2';
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 40px;
    cursor: pointer;
    transition: all ease-in-out 0.2s;
}

.hero-txt .primaryCTA:hover {
    box-shadow: 4px 4px 0px rgba(34, 81, 255, 0.5);
}

.sectionOne-flex {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
}

.sectionOne-title {
    width: 400px;
    height: auto;
}

.sectionOne-title h2 {
    font-family: 'El Messiri';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.25px;
    text-transform: capitalize;
    color: #222222;
    padding: 0px;
    text-align: start;
    margin-right: 40px;
}

.sectionOne-txt {
    width: 100%;
    height: auto;
}

.sectionOne-txt p {
    width: 100%;
    height: auto;
    font-family: 'Exo 2';
    font-weight: 400;
    text-align: start;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
}

.sectionTwo-title {
    font-family: 'El Messiri';
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #222222;
    width: 100%;
    justify-content: center
}

.sectionTwoFlex {
    width: 100%;
    height: auto;
    margin: 40px 0px;
    display: flex;
    flex-direction: column-reverse;
    column-gap: 40px;
    row-gap: 90px;
    align-items: center;
    justify-content: center;
}

.sectionTwoFlex .sectionTwo-img,
.sectionTwo-img img {
    width: 340px;
}

.sectionTwoFlex .sectionTwo-img button {
    width: 324px;
    height: 60px;
    background-color: #F7941D;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #FFFFFF;
    border: none;
    outline: none;
    margin: 0px;
}

.sectionTwoFlex .sectionTwo-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sectionTwoFlex .sectionTwo-text p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.25px;
    text-transform: capitalize;
    color: #0033FE;
}

.sectionTwoFlex .sectionTwo-text .sectionTwo-contect-flex {
    width: 340px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.sectionTwoFlex .sectionTwo-text .sectionTwo-contect-flex>.sectionTwo-hex {
    width: 200px;
    filter: drop-shadow(0px 10px 34px rgba(34, 81, 255, 0.15));
}



.sectionThree-title {
    font-family: 'Exo 2';
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.25px;
    text-transform: capitalize;
    color: #0033FE;
    padding-top: 40px;
}

.sectionThreeFlex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 0px;
    gap: 40px;
}

.sectionThreeFlex .sectionThreeBtn {
    width: 320px;
    height: 60px;
    border: 1px solid #0033FE;
    outline: none;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.sectionThreeFlex .sectionThreeBtn>.icon {
    width: 72px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0033FE;
}
.sectionThreeFlex .sectionThreeBtn>.icon>svg{
    width: 24px;
    height: 24px;
}

.sectionThreeFlex .sectionThreeBtn>p {
    width: 100%;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #0033FE;
    margin-bottom: 0px;
    padding-top: 0px;
}

.sectionFour>.containerx>h2 {
    font-family: 'El Messiri';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
    color: #222222;
    padding: 0px;
}

.sectionFour>.containerx>p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    align-items: center;
    width: 100%;
    text-transform: capitalize;
    color: #B2B5B7;
    padding: 0px;
}

.sectionFourFlex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    margin-inline: auto;
    width: fit-content;
    width: -moz-fit-content;
}

.sectionFourFlex .sectionFourCard {
    width: 340px;
    height: 260px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.25s ease-in-out;
}

.cardOne {
    background-image: url(media/Rectangle\ 40.png);
    background-position: center;
    background-size: cover;
}

.cardTwo {
    background-image: url(media/Rectangle\ 41.png);
    background-position: center;
    background-size: cover;
}

.cardThree {
    background-image: url(media/Rectangle\ 38.png);
    background-position: center;
    background-size: cover;
}

.cardFour {
    background-image: url(media/Rectangle\ 39.png);
    background-position: center;
    background-size: cover;
}

.sectionFourFlex .sectionFourCard h3 {
    font-family: 'Exo 2';
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.sectionFourFlex .sectionFourCard button {
    background: #FFFFFF;
    border-radius: 10px;
    width: 160px;
    height: 40px;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-transform: capitalize;
    color: #2251FF;
}

.sectionFive>.containerx>h2 {
    font-family: 'El Messiri';
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    align-items: center;
    text-transform: capitalize;
    color: #FFFFFF;
    width: 100%;
    margin-bottom: 36px;
}

.sectionFiveFlex {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.sectionFiveFlex .sectionFiveCard {
    width: 340px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all ease-in-out 0.25s;
}

.sectionFiveFlex .sectionFiveCard:hover .sectionFiveCard-img>img {
    transform: scale(1.2);
}

.sectionFiveFlex .sectionFiveCard .sectionFiveCard-img {
    width: 340px !important;
    height: 200px;
    overflow: hidden;
}

.sectionFiveFlex .sectionFiveCard .sectionFiveCard-img>img {
    width: 340px !important;
    height: 200px;
    object-fit: cover;
    transition: all ease-in-out 0.25s;
}

.sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt {
    width: 340px;
    height: 260px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt h3 {
    font-family: 'Exo 2';
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    align-items: flex-start;
    color: #222222;
}

.sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt p {
    /* height: 42px; */
    width: 100%;
    font-family: 'Exo 2';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: start;
    margin-bottom: 0px;
    padding-top: 0px;
    text-overflow: ellipsis;

}

.sectionSix .containerx h2 {
    font-family: 'El Messiri';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.2px;
    width: 100%;
    text-align: center;
    color: #F7941D;
}

.about-hero {
    width: 100%;
    height: 520px;
    margin-top: 80px;
    background-position: center;
    background-size: cover;
}

.about-hero-txt {
    max-width: 720px;
}

.about-hero-txt h1 {
    font-family: 'El Messiri';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
    text-transform: capitalize;
    color: #FFFFFF;
    text-align: start;
}

.about-hero-txt p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
    text-align: start;
}

.ftaAbout img {
    max-width: 440px;
    height: 312px;
    border-radius: 10px;
    object-fit: cover;
}

.ftaAbout p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #444444;
    text-align: start;
}

.aboutCardFta .containerx>h2 {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.25px;
    text-transform: capitalize;
    color: #2251FF;
}

.aboutCardFta .containerx>p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #444444;
    margin-bottom: 24px;
}

.cardSection {
    display: flex;
    flex-direction: row;
    align-items: center;
    row-gap: 20px;
    flex-wrap: wrap;
    column-gap: 10px;
    width: auto;
}

.cardFta {
    width: 330px;
    height: 560px;
    border: 1px solid #CECECE;
    border-radius: 10px;
    overflow: hidden;
}

.cardFta .setFta {
    width: 328px;
    height: 320px;
}

.cardFta .setFta>img {
    width: 328px;
    height: 320px;
    object-fit: cover;
    border-radius: 0px;
}

.cardFta-txt {
    width: 100%;
    height: 240px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.cardFta-txt>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cardFta-txt h4 {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: #222222;
}

.cardFta-txt p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: start;
    color: #444444;
}

.cardFta-btn {
    padding: 0px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #F7941D;
    cursor: pointer;
}

.cardFta-txt .modal {
    pointer-events: none;
    display: none;
}

.cardFta-txt .modal.show {
    pointer-events: unset;
    display: block;
}

.cardSectionService {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 20px;
    justify-content: center;
}

.serviceCardOne {
    width: 250px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
}

.serviceCardOne>p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    text-align: start;
    color: #F3F3F3;
}

.serviceCardTwo {
    width: 250px;
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #cecece;
    border-radius: 10px;
    overflow: hidden
}

.serviceCardTwo>img {
    width: 248px;
    height: 120px;
    object-fit: cover;
}

.serviceCardTwo>div {
    width: 100%;
    height: 150px;
    padding: 10px 20px 20px;
}

.serviceCardTwo>div>p {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    color: #444444;
    text-align: start;
}

.clientSectionFlex {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-inline: auto;
}

.clientCover {
    filter: drop-shadow(0px 0px 1px #000000);
}

.clientBox {
    width: 220px;
    height: 250px;
    background: #fff;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clientBox>img {
    width: 220px;
    height: 120px;
    object-fit: contain;
}

.contactSectionFlex {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto;
}

.contactSectionFlex>form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.contactSectionFlex>form>.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
}

.contactSectionFlex>form>.input-group>label {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: capitalize;
    color: #222222;
}

.contactSectionFlex>form>.input-group>input {
    width: 320px;
    height: 60px;
    padding: auto 20px;
    border: 1px solid #868686;
    border-radius: 10px;
    background: #fff;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #444444;
}

.contactSectionFlex>form>.input-group>textarea {
    width: 320px;
    height: 100px;
    padding: auto 20px;
    border: 1px solid #868686;
    border-radius: 10px;
    background: #fff;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #444444;
}

.contactSectionFlex>form>.input-group>textarea::placeholder {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #444444;
}

.contactSectionFlex>form>.input-group>input::placeholder {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #444444;
}

.contactSectionFlex>form>.submitForm {
    width: 320px;
    height: 60px;
    background: #2251FF;
    border-radius: 10px;
    border: none;
    outline: none;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.contactSectionFlex>form>.submitForm:hover {
    box-shadow: 8px 8px 0px rgba(34, 81, 255, 0.5);
}






@media (min-width: 768px) {
    .containerx {
        width: 680px;
    }

    .hero-card {
        width: 680px;
        margin-inline: auto;
        border-radius: 20px 20px 0px 0px;
        padding: 40px;
    }

    .sectionTwoFlex .sectionTwo-img,
    .sectionTwo-img img {
        width: 430px;
    }

    .sectionTwoFlex .sectionTwo-img button {
        width: 410px;
    }

    .sectionTwoFlex .sectionTwo-text .sectionTwo-contect-flex {
        width: 440px;
        gap: 40px;
    }

    .sectionTwoFlex .sectionTwo-text .sectionTwo-contect-flex>.sectionTwo-hex:last-child {
        margin-top: -65px;
    }

    .sectionFourFlex {
        flex-direction: row;
        gap: 40px;
        margin-bottom: 40px;
    }

    .sectionFourFlex .sectionFourCard {
        width: 320px;
    }

    .sectionFiveFlex .sectionFiveCard {
        width: 680px;
        height: 260px;
        flex-direction: row;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-img {
        width: 200px !important;
        height: 260px;
        overflow: hidden;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-img>img {
        width: 200px !important;
        height: 260px;
        object-fit: cover;
        transition: all ease-in-out 0.25s;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt {
        width: 460px;
        height: 260px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .cardSection {
        row-gap: 60px;
        flex-wrap: wrap;
        column-gap: 20px;
    }

    .clientSectionFlex {
        max-width: 500px;
    }

    .clientCover:nth-child(n+3) {
        margin-top: -60px;
    }

    .clientCover:nth-child(3n+3) {
        margin-left: 120px;
    }

    .contactSectionFlex>form>.input-group>input {
        width: 680px;
    }

    .contactSectionFlex>form>.input-group>textarea {
        width: 680px;
    }
}






@media (min-width: 1080px) {
    .containerx {
        width: 1040px;
    }

    .navigation-menu {
        display: none;
    }

    .hero-section {
        justify-content: center;
    }

    .hero-card {
        width: calc((var(--card-transform) + 540px));
        padding-left: calc(var(--card-transform));
        border-radius: 0px 20px 20px 0px;
        background: #fff;
        padding: 70px 100px;
        padding-left: calc(var(--card-transform));
        margin: 0px;
    }

    .navigation-menu-container ul {
        position: unset;
        top: unset;
        width: 100%;
        flex-direction: row;
        height: auto;
        border-bottom: none;
    }

    .sectionOne-flex {
        flex-direction: row;
        align-items: flex-start;
    }

    .sectionTwoFlex {
        flex-direction: row;
        margin-bottom: 40px;
    }

    .sectionFourFlex .sectionFourCard {
        width: 340px;
    }

    .sectionFiveFlex .sectionFiveCard {
        width: 100%;
        height: 240px;
        gap: 24px;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-img {
        width: 400px !important;
        height: 240px;
        overflow: hidden;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-img>img {
        width: 400px !important;
        height: 240px;
        object-fit: cover;
        transition: all ease-in-out 0.25s;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt {
        width: 640px;
        height: 240px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt h3 {
        font-size: 24px;
        line-height: 24px;
    }

    .sectionFiveFlex .sectionFiveCard .sectionFiveCard-txt p {
        /* height: 42px; */
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .cardSection {
        row-gap: 90px;
        flex-wrap: wrap;
        column-gap: 25px;
    }

    .clientSectionFlex {
        max-width: 1040px;
    }

    .cardSectionService {
        justify-content: flex-start;
    }

    .clientCover:nth-child(n+5) {
        margin-top: -60px !important;
    }

    .clientCover:nth-child(7n+5) {
        margin-left: 120px !important;
    }

    .clientCover:nth-child(n+3) {
        margin-top: unset;
    }

    .clientCover:nth-child(3n+3) {
        margin-left: unset;
    }
}