
.client-connect_us {
   display: grid;
    grid-template-columns: calc(60% - 100px) 40%;
    padding: 0px 0px 90px;
    justify-content: space-between;
}

.content_connect h2 {
    font-family: 'Helvetica Neue';
    font-weight: 500;
    font-size: 64px;
    color: rgba(201, 201, 202, 1);
    line-height: 80px;
    letter-spacing: 0px;
}

.content_connect h3 {
    font-family: 'Helvetica Neue';
    font-weight: 500;
    color: rgba(104, 104, 104, 1);
    font-size: 70px;
    line-height: 90px;
    letter-spacing: 0px;
}

.content_connect p {
    font-family: 'futura-pt';
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    width: 100%;
    padding-block: 30px 20px;
    letter-spacing: 0px;
    max-width: 78%;
}

.content_connect a {
padding: 7px 34px;
    border: 2px solid #2EA3DC;
    font-family: 'futura-pt';
    font-weight: 450;
    display: flex;
    width: fit-content;
    gap: 14px;
    color: rgba(46, 163, 220, 1);
    text-decoration: none;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
}

.content_connect a img {
    width: 18px;
}
.client-connect {padding-block: 80px 0px;}
.countdown_wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-items: center;
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.countdown_head {
    background: rgba(138, 138, 138, 1);
    padding: 40px 0px;
}

.countdown_wrap h2 {
      font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 56px;
    line-height: 80px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(222, 221, 221, 1);
}

.countdown_wrap p {
       font-family: 'Helvetica Neue';
       font-weight: 500;
    font-size: 13px;
    color: rgba(222, 221, 221, 1);
    line-height: 24px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

/* footer css start */

.footer {
    background: var(--color-banner-below);
    color: var(--color-white);
    padding: 50px 75px 65px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-picture.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    margin: 0 auto;
    display: grid;
    gap: inherit;
    position: relative;
    z-index: 1;
    grid-template-columns: 30% max-content max-content max-content;
    column-gap: 50px;
    justify-content: space-between;
}

.footer-logo img {
    max-width: 220px;
}

.footer-logo img {
    max-width: 220px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.footer-social a img {
    max-width: 19px;
}

.footer-tagline {
    font-size: var(--fs-footer-sub-paragraph);
    line-height: var(--lh-footer-sub-paragraph);
    font-weight: var(--fw-footer-sub-paragraph);
    letter-spacing: var(--ls-footer-sub-paragraph);
    margin-bottom: 40px;
}

.footer-desc {
    font-size: var(--fs-footer-paragraph);
    line-height: var(--lh-footer-paragraph);
    font-weight: var(--fw-footer-paragraph);
    letter-spacing: var(--ls-footer-paragraph);
}

.footer-about+.footer-section h3 {
    border-bottom: 0;
    padding-bottom: 0;
    display: block;
    /* unset avoid karo */
}

.footer-section h3 {
    font-size: var(--fs-footer-title);
    font-weight: var(--fw-footer);
    margin-bottom: 25px;
    color: var(--color-white);
    border-bottom: 1px solid #fff;
    padding-bottom: 25px;
    display: inline-table;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: var(--fs-footer-menu);
    color: var(--color-white);
    line-height: var(--lh-footer-menu);
    text-decoration: none;
    font-weight: var(--fw-medium);
}

.footer-contact p {
    font-size: var(--fs-footer-menu);
    color: var(--color-white);
    line-height: var(--lh-footer-menu);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-contact p:first-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 25px;
    display: inline-table;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-social a {
    font-size: var(--fs-footer-menu);
    color: var(--color-white);
    line-height: var(--lh-footer-menu);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8B8C8E;
    color: var(--color-white);
    font-weight: var(--fw-footer-paragraph);
    font-size: var(--fs-footer-menu);
    padding: 10px 85px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .client-connect_us {
    padding-block: 40px;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}
.client-connect{
    padding-block: 0px 0px;
}

.content_connect h2 {
    font-size: 45px;
    line-height: 60px;
}

.content_connect h3 {
    font-size: 45px;
    margin-top: 12px;
    line-height: 50px;
}

.content_connect p {
    font-size: 15px;
    line-height: 25px;
    max-width: 100%;
    padding-block-end: 15px;
}

.content_connect {
    order: 2;
}
}

/* footer css end */