@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.eot');
    src: url('../fonts/Helvetica.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Helvetica.woff2') format('woff2'),
        url('../fonts/Helvetica.woff') format('woff'),
        url('../fonts/Helvetica.ttf') format('truetype'),
        url('../fonts/Helvetica.svg#Helvetica') format('svg');
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Bold.eot');
    src: url('../fonts/Helvetica-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Helvetica-Bold.woff2') format('woff2'),
        url('../fonts/Helvetica-Bold.woff') format('woff'),
        url('../fonts/Helvetica-Bold.ttf') format('truetype'),
        url('../fonts/Helvetica-Bold.svg#Helvetica-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

h1 {
    font-family: 'Anton';
    font-size: 45px;
    line-height: 55px;
    font-weight: 400;
}

h2 {
    font-family: 'Anton';
    font-size: 40px;
    line-height: 45px;
    font-weight: 400;
}

h3 {
    font-family: 'Anton';
    font-size: 30px;
    line-height: 35px;
    font-weight: 400;
}

h4 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.05em;
}

p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

p.bold {
    font-weight: 700;
}

a:focus {
    color: #FFFFFF;
    text-decoration: none;
}

.btnLink {
    display: inline-block;
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    color: #FFFFFF;
    padding: 15px 30px;
    background: #EC1847;
    border-radius: 30px;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.btnLink:hover {
    color: #ffffff;
    transform: translateY(-5px);
    text-decoration: none;
}

/* Banner Section */
.banner-section {
    position: relative;
    padding-top: 50px;
    background: linear-gradient(180deg, #354FA0 0%, #2EACDE 100%);
    margin-bottom: 230px;
    z-index: 1;
}

.banner-section .banner-sarkal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-section .banner-sarkal::before {
    position: absolute;
    left: 50%;
    top: 155px;
    transform: translateX(-50%);
    content: '';
    width: 1180px;
    height: 1180px;
    border-radius: 100%;
    background: rgba(40, 63, 132, 20%);
    z-index: -1;
}

.banner-section .banner-sarkal::after {
    position: absolute;
    left: 50%;
    top: 315px;
    transform: translateX(-50%);
    content: '';
    width: 865px;
    height: 865px;
    border-radius: 100%;
    background: rgba(40, 63, 132, 25%);
    z-index: -1;
}

.banner-section .caption {
    position: relative;
    max-width: 895px;
    width: 100%;
    margin: 0 auto 18px auto;
}

.banner-section .caption h1 {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.banner-section .caption p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.banner-section .caption h3 {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.banner-section .caption .text-center {
    margin-bottom: 10px;
}

.banner-section .caption .bannerInfoBox {
    display: flex;
    gap: 27px;
    justify-content: center;
    margin-bottom: 25px;
}

.banner-section .caption .bannerInfoBox h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
}

.banner-section .dashboardImg {
    width: 100%;
    margin: 0 auto;
}

.banner-section .dashboardImg img {
    width: 100%;
    margin-bottom: -287px;
}

/* Project Directory Section */
.projectDirectory {
    margin: 150px 0 55px;
}

.projectDirectory .row {
    margin-bottom: 55px;
}

.projectDirectory .row:last-child {
    margin-bottom: 0;
}

.projectDirectory .leftCol {
    width: 100%;
}

.projectDirectory .leftCol .titleBox {
    display: flex;
    margin-bottom: 20px;
}

.projectDirectory .leftCol .titleBox .icons {
    width: 70px;
    height: 70px;
}

.projectDirectory .leftCol .titleBox .icons img {
    width: 100%;
    height: auto;
}

.projectDirectory .leftCol .titleBox .title {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.projectDirectory .leftCol .titleBox .title h6 {
    color: #EC1847;
    margin-bottom: 7px;
}

.projectDirectory .leftCol .titleBox .title h2 {
    color: #354FA0;
    margin: 0;
}

.projectDirectory .leftCol p {
    margin-bottom: 20px;
}

.projectDirectory .leftCol ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 20px;
}

.projectDirectory .leftCol ul li {
    margin-bottom: 8px;
}

.projectDirectory .leftCol ul li:last-child {
    margin: 0;
}

.projectDirectory .leftCol ul li p {
    position: relative;
    margin: 0;
    padding-left: 38px;
}

.projectDirectory .leftCol ul li p::before {
    position: absolute;
    left: 0;
    top: 5px;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
}

.projectDirectory .leftCol .downloadPdfBtn {
    position: relative;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #EC1847;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.projectDirectory .leftCol .downloadPdfBtn::before {
    position: absolute;
    left: 30px;
    bottom: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: #EC1847;
    transition: all .5s ease-in-out;
}

.projectDirectory .leftCol .downloadPdfBtn:hover:before {
    width: calc(100% - 30px);
}

.projectDirectory .rightCol {
    width: 100%;
}

.projectDirectory .rightCol img {
    width: 100%;
    height: auto;
}

.projectDirectory .row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Request For Proposal Section */
.requestProposalSec {
    width: 100%;
    margin-bottom: 60px;
}

.requestProposalSec .projectBox {
    width: 100%;
}

.requestProposalSec .projectBox .projectImg {
    width: 100%;
    margin-bottom: 37px;
}

.requestProposalSec .projectBox .projectImg img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.requestProposalSec .projectBox .projectInfo {
    display: flex;
    gap: 100px;
    width: 100%;
}

.requestProposalSec .projectBox .projectInfo .colBox {
    width: 35%;
}

.requestProposalSec .projectBox .projectInfo .colBox .titleBox {
    display: flex;
    margin-bottom: 27px;
}

.requestProposalSec .projectBox .projectInfo .colBox .titleBox .icons {
    width: 60px;
    height: 60px;
}

.requestProposalSec .projectBox .projectInfo .colBox .titleBox .icons img {
    width: 100%;
    height: auto;
}

.requestProposalSec .projectBox .projectInfo .colBox .titleBox .title {
    width: calc(100% - 60px);
    padding-left: 20px;
}

.requestProposalSec .projectBox .projectInfo .colBox .titleBox .title h6 {
    color: #EC1847;
    margin: 0;
}

.requestProposalSec .projectBox .projectInfo .colBox .titleBox .title h2 {
    color: #354FA0;
    margin: 0;
}

.requestProposalSec .projectBox .projectInfo .colBox.rightBox {
    width: calc(100% - 43%);
}

.requestProposalSec .projectBox .projectInfo .colBox p {
    margin-bottom: 15px;
}

.requestProposalSec .projectBox .projectInfo .colBox p:last-child {
    margin: 0;
}

.requestProposalSec .projectBox .projectInfo .colBox ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.requestProposalSec .projectBox .projectInfo .colBox ul li {
    margin-bottom: 8px;
}

.requestProposalSec .projectBox .projectInfo .colBox ul li:last-child {
    margin: 0;
}

.requestProposalSec .projectBox .projectInfo .colBox ul li p {
    position: relative;
    margin: 0;
    padding-left: 38px;
}

.requestProposalSec .projectBox .projectInfo .colBox ul li p::before {
    position: absolute;
    left: 0;
    top: 5px;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
}

.requestProposalSec .projectBox .projectInfo .colBox .downloadPdfBtn {
    position: relative;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #EC1847;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.requestProposalSec .projectBox .projectInfo .colBox .downloadPdfBtn::before {
    position: absolute;
    left: 30px;
    bottom: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: #EC1847;
    transition: all .5s ease-in-out;
}

.requestProposalSec .projectBox .projectInfo .colBox .downloadPdfBtn:hover:before {
    width: calc(100% - 30px);
}

/* Other Project Section */
.otherProjectSec {
    margin-bottom: 90px;
}

.otherProjectSec .projectBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.otherProjectSec .projectBox .projectImg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 310px;
    border-radius: 15px;
    margin-bottom: 32px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    background: linear-gradient(124.15deg, #F0F4FE 21.02%, #EAC6CE 87.44%);
}

.otherProjectSec .projectBox .projectImg img {
    max-width: 100%;
    height: auto;
}

.otherProjectSec .projectBox .projectInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
}

.otherProjectSec .projectBox .projectInfo .titleBox {
    display: flex;
    min-height: 88px;
    margin-bottom: 20px;
}

.otherProjectSec .projectBox .projectInfo .titleBox .icons {
    width: 40px;
    height: 40px;
}

.otherProjectSec .projectBox .projectInfo .titleBox .icons img {
    width: 100%;
    height: auto;
}

.otherProjectSec .projectBox .projectInfo .titleBox .title {
    width: calc(100% - 40px);
    padding-left: 20px;
}

.otherProjectSec .projectBox .projectInfo .titleBox .title h6 {
    color: #EC1847;
    margin: 0;
}

.otherProjectSec .projectBox .projectInfo .titleBox .title h3 {
    color: #354FA0;
    margin: 0;
}

.otherProjectSec .projectBox .projectInfo p {
    margin-bottom: 20px;
}

.otherProjectSec .projectBox .projectInfo .downloadPdfBtn {
    display: inline-flex;
    position: relative;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #EC1847;
    text-decoration: none;
    margin-top: auto;
    transition: all .5s ease-in-out;
}

.otherProjectSec .projectBox .projectInfo .downloadPdfBtn::before {
    position: absolute;
    left: 30px;
    bottom: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: #EC1847;
    transition: all .5s ease-in-out;
}

.otherProjectSec .projectBox .projectInfo .downloadPdfBtn:hover:before {
    width: calc(100% - 30px);
}

/* Extra Benefits Section */
.extraBenefitsSec {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(124.15deg, #F0F4FE 21.02%, #EAC6CE 87.44%);
}

.extraBenefitsSec .leftCol {
    width: 100%;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extraBenefitsSec .leftCol h2 {
    color: #363636;
    margin-bottom: 20px;
}

.extraBenefitsSec .leftCol p {
    margin: 0;
}

.extraBenefitsSec .rightCol {
    display: flex;
    align-items: center;
}

.extraBenefitsSec .rightCol .leftIcon {
    position: relative;
    max-width: 223px;
    width: 100%;
    z-index: 1;
}

.extraBenefitsSec .rightCol .leftIcon::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 30px);
    content: '';
    border-width: 1px 0px 0 0;
    border-style: dashed;
    border-color: #EC1847;
    z-index: -1;
}

.extraBenefitsSec .rightCol .leftIcon .benefitsIcon {
    width: 123px;
    height: 123px;
    border-radius: 100%;
    background-color: #ffffff;
}

.extraBenefitsSec .rightCol .leftIcon .benefitsIcon img {
    width: 100%;
    height: auto;
}

.extraBenefitsSec .rightCol .benefitsCol {
    position: relative;
    width: calc(100% - 223px);
    z-index: 1;
}

.extraBenefitsSec .rightCol .benefitsCol::before {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: calc(100% - 50px);
    content: '';
    border-width: 1px 0px 1px 1px;
    border-style: dashed;
    border-color: #EC1847;
    border-radius: 15px 0px 0px 15px;
    z-index: -1;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox.benefitsBox2::before {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    content: '';
    border-width: 1px 0px 0px 0px;
    border-style: dashed;
    border-color: #EC1847;
    z-index: -1;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox {
    position: relative;
    display: flex;
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 15px;
    background: #ffffff;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox:last-child {
    margin: 0;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: #EC1847;
    border-radius: 35px;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .icons img {
    max-width: 100%;
    height: auto;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .title {
    width: calc(100% - 70px);
    padding-left: 10px;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .title p {
    margin: 0;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .title h6 {
    color: #000000;
    margin-bottom: 10px;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .title .benefitsBtn {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #EC1847;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.extraBenefitsSec .rightCol .benefitsCol .benefitsBox .title .benefitsBtn:hover {
    color: #000000;
}

/* Teams Work Section */
.teamsWorkSec {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
    z-index: 1;
}

.teamsWorkSec::before {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    max-width: 100%;
    width: 100%;
    height: 525px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 70.76%);
    z-index: 1;
}

.teamsWorkSec .infoBox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 825px;
    width: 100%;
    height: 825px;
    margin: 0 auto;
    padding-bottom: 225px;
    margin-bottom: -135px;
    background-image: url(../images/teamsWork-banner-img.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.teamsWorkSec .infoBox .title {
    width: 100%;
    position: relative;
    z-index: 1;
}

.teamsWorkSec .infoBox .iconsBox {
    width: 100%;
}

.teamsWorkSec .infoBox .iconsBox img {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    animation: slide-down 1.4s infinite;
    will-change: transform;
    z-index: 1;
}

.teamsWorkSec .infoBox .iconsBox .icon1 {
    top: 40px;
    left: 160px;
    animation-delay: 0s;
}

.teamsWorkSec .infoBox .iconsBox .icon2 {
    top: -25px;
    left: 400px;
    animation-delay: .4s;
}

.teamsWorkSec .infoBox .iconsBox .icon3 {
    top: 140px;
    right: 70px;
    animation-delay: .8s;
}

.teamsWorkSec .infoBox .iconsBox .icon4 {
    top: 250px;
    left: 110px;
    animation-delay: 1.2s;
}

.teamsWorkSec .infoBox .iconsBox .icon5 {
    top: 105px;
    left: 520px;
    animation-delay: 1.6s;
}

.teamsWorkSec .infoBox .iconsBox .icon6 {
    top: 350px;
    right: 80px;
    animation-delay: 2s;
}


@keyframes slide-down {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.teamsWorkSec .infoBox .title h2 {
    color: #354FA0;
    text-align: center;
    margin: 0;
}

.teamsWorkSec .infoBox .title h2 span {
    color: #EC1847;
}

/* ---------- Service Providers Page Css ---------- */
.projectDirectory.serviceProjectDirectory .row:first-child .leftCol .titleBox .title h2 {
    font-size: 34px;
}

.teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon1 {
    top: 45px;
    left: 160px;
}

.teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon2 {
    top: 45px;
    right: 145px;
    left: auto;
}

.teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon3 {
    top: 350px;
    left: 80px;
    right: auto;
}

.teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon4 {
    top: 350px;
    right: 80px;
    left: auto;
}

/* ---------- Project Owners Page Css ---------- */
.banner-section.project-ownersBanner {
    margin-bottom: 290px;
}

.banner-section.project-ownersBanner .dashboardImg {
    position: relative;
    max-width: 889px;
}

.banner-section.project-ownersBanner .dashboardImg::before {
    position: absolute;
    left: 0;
    bottom: -300px;
    content: '';
    width: 100%;
    height: 36px;
    background: #000000;
    opacity: 0.5;
    border-radius: 100%;
    filter: blur(25px);
    z-index: -1;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon1 {
    top: 400px;
    left: -30px;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon2 {
    top: 180px;
    left: 30px;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon3 {
    top: 10px;
    left: 210px;
    right: auto;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon4 {
    top: 10px;
    right: 210px;
    left: auto;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon5 {
    top: 180px;
    right: 30px;
    left: auto;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon6 {
    top: 400px;
    right: -30px;
    animation-delay: 2.4s;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon7 {
    top: 300px;
    left: 85px;
    animation-delay: 2.8s;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon8 {
    top: 130px;
    left: 205px;
    animation-delay: 3s;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon9 {
    top: 70px;
    right: 395px;
    animation-delay: 3.4s;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon10 {
    top: 140px;
    right: 195px;
    animation-delay: 3.8s;
}

.teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon11 {
    top: 310px;
    right: 85px;
    animation-delay: 4s;
}

.projectDirectory.projectOwnersSec .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.projectDirectory.projectOwnersSec .row:nth-child(even) {
    flex-direction: unset;
}

/* ---------- Build With Confidence Page Css ---------- */
.confidence .banner-section {
    height: 775px;
    padding-top: 200px;
    margin: 0;
}

.confidence .banner-section .caption p {
    margin-bottom: 80px;
}

.confidence .banner-section .caption h3 {
    position: relative;
    padding-bottom: 12px;
    margin: 0;
}

.confidence .banner-section .caption h3::before {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    margin: 0 auto;
    content: '';
    width: 15px;
    height: 70px;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    animation: downArrow 1600ms infinite;
}

@keyframes downArrow {
    50% {
        transform: translateY(-10px);
    }
}

.confidence .banner-section .caption {
    position: relative;
}

.confidence .banner-section .caption .iconsBox img {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    z-index: 1;
    animation: iconAnimesan 5s infinite;
}

.confidence .banner-section .caption .iconsBox .icon1 {
    top: -120px;
    left: 80px;
    animation-delay: 0s;
}

.confidence .banner-section .caption .iconsBox .icon2 {
    top: -100px;
    right: 80px;
    animation-delay: .4s;
}

.confidence .banner-section .caption .iconsBox .icon3 {
    top: 20px;
    left: -90px;
    animation-delay: .8s;
}

.confidence .banner-section .caption .iconsBox .icon4 {
    top: 90px;
    right: -160px;
    animation-delay: 1.2s;
}

.confidence .banner-section .caption .iconsBox .icon5 {
    top: 235px;
    left: 80px;
    animation-delay: 1.6s;
}

.confidence .banner-section .caption .iconsBox .icon6 {
    top: 285px;
    right: -10px;
    animation-delay: 2s;
}

@keyframes iconAnimesan {
    50% {
        transform: translateX(-10px);
    }
}

/* Explore Your Path Section */
.exploreYourPathSec {
    position: relative;
    margin-top: -135px;
    margin-bottom: 80px;
    z-index: 1;
}

.exploreYourPathSec .pathSec {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exploreYourPathSec .pathSec h2 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 26.67%, #FFFFFF 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: -10px;
}

.exploreYourPathSec .pathSec .projectImg {
    display: flex;
    align-items: center;
    width: 100%;
    height: 312px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 50px 0px #0000001A;
    background: linear-gradient(124.15deg, #F0F4FE 21.02%, #EAC6CE 87.44%);
}

.exploreYourPathSec .pathSec .projectImg img {
    width: 100%;
    height: auto;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 15px 0px #0000001A;
}

.exploreYourPathSec .pathSec .projectInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
    margin-top: 30px;
}

.exploreYourPathSec .pathSec .projectInfo p.bold {
    margin-bottom: 20px;
}

.exploreYourPathSec .pathSec .projectInfo p {
    text-align: center;
    margin-bottom: 30px;
}

.exploreYourPathSec .pathSec .projectInfo .btnLink {
    margin-top: auto;
}

.exploreYourPathSec .pathSec .projectInfo .btnLink.owners {
    background-color: #354FA0;
}

.exploreYourPathSec .pathSec .projectInfo .btnLink.exploreProject {
    background-color: #4dbd74;
}

.confidence .extraBenefitsSec {
    margin-bottom: 25px;
}



@media only screen and (min-width: 1200px) and (max-width: 1366px) {
    h2 {
        font-size: 38px;
    }

    .btnLink {
        padding: 15px 25px;
    }


    /* ---------- Service Providers Page Css ---------- */
    .projectDirectory.serviceProjectDirectory .row:first-child .leftCol .titleBox .title h2 {
        font-size: 34px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 40px;
        line-height: 45px;
    }

    h2 {
        font-size: 35px;
        line-height: 40px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 18px;
        line-height: 28px;
    }

    .btnLink {
        font-size: 18px;
        line-height: 26px;
        padding: 12px 20px;
    }

    .banner-section .banner-sarkal::before {
        width: 970px;
        height: 970px;
    }

    .banner-section .banner-sarkal::after {
        top: 235px;
        width: 810px;
        height: 810px;
    }

    .projectDirectory {
        margin: 70px 0;
    }

    .projectDirectory .row {
        margin-bottom: 70px;
    }

    .otherProjectSec {
        margin-bottom: 70px;
    }

    .otherProjectSec .projectBox .projectImg {
        height: 250px;
    }

    .otherProjectSec .projectBox .projectImg img {
        padding: 10px;
    }

    .requestProposalSec {
        margin-bottom: 70px;
    }

    .requestProposalSec .projectBox .projectInfo {
        gap: 50px;
    }

    .requestProposalSec .projectBox .projectInfo .colBox {
        width: 40%;
    }

    .extraBenefitsSec .leftCol {
        padding-right: 0;
    }

    .extraBenefitsSec .rightCol .leftIcon {
        max-width: 150px;
    }

    .extraBenefitsSec .rightCol .leftIcon .benefitsIcon {
        width: 90px;
        height: 90px;
    }

    .extraBenefitsSec .rightCol .benefitsCol {
        width: calc(100% - 150px);
    }

    .teamsWorkSec {
        padding-top: 100px;
    }


    /* ---------- Service Providers Page Css ---------- */
    .projectDirectory.serviceProjectDirectory .row:first-child .leftCol .titleBox .title h2 {
        font-size: 34px;
    }


    /* ---------- Build With Confidence Page Css ---------- */
    .confidence .banner-section .caption .iconsBox img {
        width: 60px;
        height: 60px;
    }

    .confidence .banner-section .caption .iconsBox .icon1 {
        top: -160px;
        left: 120px;
    }

    .confidence .banner-section .caption .iconsBox .icon2 {
        top: -120px;
        right: 120px;
    }

    .confidence .banner-section .caption .iconsBox .icon3 {
        top: 0px;
        left: 0px;
    }

    .confidence .banner-section .caption .iconsBox .icon4 {
        top: 40px;
        right: -20px;
    }

    .confidence .banner-section .caption .iconsBox .icon5 {
        top: 190px;
        left: 80px;
    }

    .confidence .banner-section .caption .iconsBox .icon6 {
        top: 250px;
        right: -10px;
    }

    .confidence .banner-section .caption p {
        margin-bottom: 40px;
    }

    .confidence .banner-section {
        height: 670px;
        padding-top: 180px;
    }

    .exploreYourPathSec .pathSec .projectImg {
        height: 240px;
    }

    .exploreYourPathSec .pathSec .projectInfo {
        margin-top: 20px;
    }

    .exploreYourPathSec .pathSec .projectInfo p {
        margin-bottom: 20px;
    }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 35px;
        line-height: 40px;
    }

    h2 {
        font-size: 30px;
        line-height: 35px;
    }

    h3 {
        font-size: 25px;
        line-height: 28px;
    }

    h4 {
        font-size: 20px;
        line-height: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .btnLink {
        font-size: 16px;
        line-height: 20px;
        padding: 12px 20px;
    }

    .banner-section {
        margin-bottom: 180px;
    }

    .banner-section .banner-sarkal::before {
        width: 750px;
        height: 750px;
    }

    .banner-section .banner-sarkal::after {
        top: 235px;
        width: 590px;
        height: 590px;
    }

    .banner-section .dashboardImg img {
        margin-bottom: -215px;
    }

    .banner-section .dashboardImg::before {
        bottom: -275px;
    }

    .projectDirectory {
        margin: 70px 0;
    }

    .projectDirectory .row {
        margin-bottom: 50px;
    }

    .projectDirectory .leftCol p {
        margin-bottom: 15px;
    }

    .projectDirectory .leftCol .downloadPdfBtn {
        font-size: 16px;
    }

    .projectDirectory .leftCol .titleBox .icons {
        width: 60px;
        height: 60px;
    }

    .projectDirectory .leftCol .titleBox .title {
        padding-left: 15px;
    }

    .otherProjectSec {
        margin-bottom: 50px;
    }

    .otherProjectSec .projectBox .projectImg {
        height: 200px;
    }

    .otherProjectSec .projectBox .projectImg img {
        padding: 10px;
    }

    .otherProjectSec .projectBox .projectInfo .downloadPdfBtn {
        font-size: 15px;
        line-height: 20px;
    }

    .otherProjectSec .projectBox .projectInfo p {
        margin-bottom: 15px;
    }

    .otherProjectSec .projectBox .projectInfo .titleBox {
        min-height: 102px;
    }

    .requestProposalSec {
        margin-bottom: 50px;
    }

    .requestProposalSec .projectBox .projectImg {
        padding: 25px;
        margin-bottom: 30px;
    }

    .requestProposalSec .projectBox .projectInfo {
        gap: 50px;
    }

    .requestProposalSec .projectBox .projectInfo .colBox {
        width: 45%;
    }

    .requestProposalSec .projectBox .projectInfo .colBox .titleBox .title {
        padding-left: 15px;
    }

    .extraBenefitsSec .leftCol {
        padding: 0;
        margin-bottom: 30px;
    }

    .extraBenefitsSec .rightCol .leftIcon {
        max-width: 200px;
    }

    .extraBenefitsSec .rightCol .leftIcon .benefitsIcon {
        width: 110px;
        height: 110px;
    }

    .extraBenefitsSec .rightCol .benefitsCol {
        width: calc(100% - 200px);
    }

    .teamsWorkSec {
        padding-top: 80px;
    }

    .teamsWorkSec .infoBox {
        padding-bottom: 250px;
        margin-bottom: -180px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon1 {
        left: 140px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon2 {
        left: 360px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon3 {
        right: 40px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon4 {
        left: 80px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon5 {
        left: 490px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon6 {
        right: 60px;
    }


    /* ---------- Service Providers Page Css ---------- */
    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon1 {
        left: 125px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon2 {
        right: 125px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon3 {
        left: 60px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon4 {
        right: 60px;
    }


    /* ---------- Project Owners Page Css ---------- */
    .banner-section.project-ownersBanner {
        margin-bottom: 240px;
    }

    .banner-section.project-ownersBanner .dashboardImg::before {
        bottom: -240px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon1 {
        left: -10px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon2 {
        left: 20px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon3 {
        top: 0px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon4 {
        top: 0px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon5 {
        right: 20px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon6 {
        right: -10px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon7 {
        left: 70px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon8 {
        left: 170px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon9 {
        top: 60px;
        right: 355px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon10 {
        top: 130px;
        right: 170px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon11 {
        top: 300px;
        right: 70px;
    }


    /* ---------- Build With Confidence Page Css ---------- */
    .confidence .banner-section {
        height: 500px;
        padding-top: 130px;
    }

    .exploreYourPathSec {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .confidence .banner-section .caption .iconsBox img {
        width: 50px;
        height: 50px;
    }

    .confidence .banner-section .caption .iconsBox .icon1 {
        top: -100px;
        left: 140px;
    }

    .confidence .banner-section .caption .iconsBox .icon2 {
        top: -60px;
        right: 140px;
    }

    .confidence .banner-section .caption .iconsBox .icon3 {
        top: 0px;
        left: 10px;
    }

    .confidence .banner-section .caption .iconsBox .icon4 {
        top: 40px;
        right: 0;
    }

    .confidence .banner-section .caption .iconsBox .icon5 {
        top: 160px;
        left: 80px;
    }

    .confidence .banner-section .caption .iconsBox .icon6 {
        top: 205px;
        right: 0px;
    }

    .confidence .banner-section .caption p {
        margin-bottom: 40px;
    }

    .exploreYourPathSec .pathSec {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .exploreYourPathSec .pathSec h2 {
        -webkit-background-clip: inherit;
        background-clip: inherit;
        -webkit-text-fill-color: #000000;
        color: #000000;
    }

    .exploreYourPathSec .pathSec .projectImg {
        height: 280px;
    }

    .exploreYourPathSec .pathSec .projectInfo p {
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 35px;
    }

    h2 {
        font-size: 28px;
        line-height: 35px;
    }

    h3 {
        font-size: 28px;
        line-height: 35px;
    }

    h4 {
        font-size: 18px;
        line-height: 22px;
    }

    h6 {
        font-size: 12px;
        line-height: 16px;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    .btnLink {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 15px;
    }

    .banner-section {
        margin-bottom: 90px;
    }

    .banner-section .banner-sarkal::before {
        width: 800px;
        height: 800px;
    }

    .banner-section .banner-sarkal::after {
        width: 600px;
        height: 600px;
    }

    .banner-section .caption h1 br {
        display: none;
    }

    .banner-section .caption p br {
        display: none;
    }

    .banner-section .caption .bannerInfoBox {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .banner-section .dashboardImg::before {
        bottom: -120px;
    }

    .banner-section .dashboardImg img {
        margin-bottom: -100px;
    }

    .projectDirectory {
        margin: 30px 0;
    }

    .projectDirectory .leftCol .titleBox .icons {
        width: 60px;
        height: 60px;
    }

    .projectDirectory .leftCol .titleBox .title {
        padding-left: 10px;
    }

    .projectDirectory .row {
        margin-bottom: 30px;
    }

    .projectDirectory .leftCol {
        margin-bottom: 20px;
    }

    .projectDirectory .leftCol p {
        margin-bottom: 15px;
    }

    .projectDirectory .leftCol .downloadPdfBtn {
        font-size: 16px;
    }

    .requestProposalSec {
        margin-bottom: 30px;
    }

    .requestProposalSec .projectBox {
        display: flex;
        flex-direction: column-reverse;
    }

    .requestProposalSec .projectBox .projectImg {
        margin: 0;
    }

    .requestProposalSec .projectBox .projectInfo {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .requestProposalSec .projectBox .projectInfo .colBox {
        width: 100%;
    }

    .requestProposalSec .projectBox .projectInfo .colBox.rightBox {
        width: 100%;
    }

    .requestProposalSec .projectBox .projectInfo .colBox .downloadPdfBtn {
        font-size: 16px;
    }

    .requestProposalSec .projectBox .projectInfo .colBox .titleBox {
        margin-bottom: 20px;
    }

    .requestProposalSec .projectBox .projectInfo .colBox .titleBox .title {
        padding-left: 10px;
    }

    .otherProjectSec {
        margin-bottom: 30px;
    }

    .otherProjectSec .projectBox {
        flex-direction: column-reverse;
        margin-bottom: 30px;
        height: calc(100% - 30px);
    }

    .otherProjectSec .projectBox .projectInfo {
        margin-bottom: 30px;
    }

    .otherProjectSec .projectBox .projectInfo p {
        margin-bottom: 15px;
    }

    .otherProjectSec .projectBox .projectInfo .titleBox {
        width: 100%;
        min-height: auto;
    }

    .otherProjectSec .projectBox .projectImg {
        padding: 10px;
        margin-bottom: 0;
        height: auto;
    }

    .otherProjectSec .projectBox .projectInfo .downloadPdfBtn {
        font-size: 16px;
        line-height: 20px;
    }

    .extraBenefitsSec {
        padding: 30px 0;
    }

    .extraBenefitsSec .leftCol {
        padding: 0;
        margin-bottom: 30px;
    }

    .extraBenefitsSec .rightCol .leftIcon {
        display: none;
    }

    .extraBenefitsSec .rightCol .benefitsCol {
        width: 100%;
    }

    .extraBenefitsSec .rightCol .benefitsCol::before {
        display: none;
    }

    .extraBenefitsSec .rightCol .benefitsCol .benefitsBox {
        margin-bottom: 20px;
    }

    .extraBenefitsSec .rightCol .benefitsCol .benefitsBox.benefitsBox2::before {
        display: none;
    }

    .extraBenefitsSec .rightCol .benefitsCol .benefitsBox .icons {
        width: 60px;
        height: 60px;
    }

    .extraBenefitsSec .rightCol .benefitsCol .benefitsBox .icons img {
        max-width: 60%;
    }

    .teamsWorkSec {
        padding-top: 50px;
    }

    .teamsWorkSec .infoBox {
        height: 515px;
    }

    .teamsWorkSec .infoBox .iconsBox img {
        width: 35px;
        height: 35px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon1 {
        top: 50px;
        left: 30px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon2 {
        top: -20px;
        left: 150px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon3 {
        top: 90px;
        right: 0;
    }

    .teamsWorkSec .infoBox .iconsBox .icon4 {
        top: 160px;
        left: 20px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon5 {
        top: 40px;
        left: 210px;
    }

    .teamsWorkSec .infoBox .iconsBox .icon6 {
        top: 170px;
        right: 30px;
    }


    /* ---------- Service Providers Page Css ---------- */
    .projectDirectory.serviceProjectDirectory .row:first-child .leftCol .titleBox .title h2 {
        font-size: 28px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon1 {
        top: 40px;
        left: 30px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon2 {
        top: 40px;
        right: 30px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon3 {
        top: 150px;
        left: 20px;
    }

    .teamsWorkSec.providersTeamsWorkSec .infoBox .iconsBox .icon4 {
        top: 150px;
        right: 20px;
    }


    /* ---------- Project Owners Page Css ---------- */
    .banner-section.project-ownersBanner {
        margin-bottom: 120px;
    }

    .banner-section.project-ownersBanner .dashboardImg::before {
        bottom: -115px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon1 {
        top: 180px;
        left: -10px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon2 {
        top: 60px;
        left: 0px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon3 {
        top: 0px;
        left: 70px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon4 {
        top: 0px;
        right: 70px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon5 {
        top: 60px;
        right: 0;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon6 {
        top: 180px;
        right: -10px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon7 {
        top: 120px;
        left: 30px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon8 {
        top: 55px;
        left: 65px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon9 {
        top: 20px;
        right: 145px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon10 {
        top: 55px;
        right: 65px;
    }

    .teamsWorkSec.ownersTeamsSec .infoBox .iconsBox .icon11 {
        top: 120px;
        right: 30px;
    }


    /* ---------- Build With Confidence Page Css ---------- */
    .confidence .banner-section {
        padding-top: 120px;
        height: 500px;
    }

    .confidence .banner-section .caption .iconsBox img {
        width: 40px;
        height: 40px;
    }

    .confidence .banner-section .caption .iconsBox .icon1 {
        top: -95px;
        left: 60px;
    }

    .confidence .banner-section .caption .iconsBox .icon2 {
        top: -90px;
        right: 60px;
    }

    .confidence .banner-section .caption .iconsBox .icon3 {
        top: -45px;
        left: 0px;
    }

    .confidence .banner-section .caption .iconsBox .icon4 {
        top: -40px;
        right: 0;
    }

    .confidence .banner-section .caption .iconsBox .icon5 {
        top: 215px;
        left: 30px;
    }

    .confidence .banner-section .caption .iconsBox .icon6 {
        top: 245px;
        right: 5px;
    }

    .confidence .banner-section .caption p {
        margin-bottom: 30px;
    }

    .exploreYourPathSec .pathSec .projectInfo {
        margin-top: 20px;
    }

    .exploreYourPathSec .pathSec .projectInfo p.bold {
        margin-bottom: 15px;
    }

    .exploreYourPathSec .pathSec .projectInfo p {
        margin-bottom: 15px;
    }

    .confidence .banner-section .caption h3::before {
        height: 50px;
        background-size: contain;
    }

    .exploreYourPathSec {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .exploreYourPathSec .pathSec {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .exploreYourPathSec .pathSec h2 {
        -webkit-background-clip: inherit;
        background-clip: inherit;
        -webkit-text-fill-color: #000000;
        color: #000000;
    }

}

@media only screen and (min-width: 480px) and (max-width: 767px) {}