/*================================================
Index 02 What We Do Area CSS
=================================================*/
.why-we-2 {
    overflow: hidden;
    position: relative;
}

.why-we-2::before {
    content: '';
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.why-we-text-area-2 {
    margin-left: auto;
    max-width: 630px;
}

.why-we-centre-points.secondary:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--blackFadeOverlay);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.8;
}

.why-we-centre-points.secondary {
    background-image: url('/wp-content/uploads/2025/08/abstract-black-with-halftone-pattern-circles.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.why-we-centre-points.secondary .content-title h2,
.why-we-centre-points.secondary .content-title p {
    color: #ffffff;
}

.why-we-centre-points.secondary .why-we-card * {
    color: #ffffff;
}

.why-we-centre-points > div > div.row {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.why-we-card {
    position: relative;
    padding-left: 80px;
    margin-top: 20px;
    max-width: 600px;

    @media only screen and (max-width: 767px) {
        padding-left: 40px;
    }
}

.why-we-card img {
    height: 100%;
    width: 100%;
    max-width: 45px;
}

.why-we-card__icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--primaryColor);
    background-color: var(--primaryLight);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;

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

.why-we-card h4 {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 24px;
}

.why-we-card:hover i {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.why-we-img-area-2 {
    position: relative;
    z-index: 2;
    @media screen and (min-width: 1200px) {
        margin-right: -30px;
    }
}

.why-we-img-area-2 img{
    aspect-ratio: 500 / 500;
    object-fit: cover;
}

.why-we-img-area-2 a {
    z-index: 2;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    border: 10px solid #fff;
    background-color: var(--primaryColor);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.why-we-img-area-2 a::before {
    content: '';
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid #eeeeeef3;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: breathe 1.5s infinite linear forwards;
    animation: breathe 1.5s infinite linear forwards;
}

.why-we-img-area-2 a::after {
    content: '';
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid var(--primaryColor);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: breathe 3s infinite linear forwards;
    animation: breathe 3s infinite linear forwards;
}

@media screen and (max-width: 767px) {
    .why-we-card h4{
        font-size: 20px;
    }
}