/* breadcrumb_wrapper */
.breadcrumb_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/breadcrumb.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #ccc;
    background-position: center;
}

.breadcrumb_wrapper h3 {
    font-weight: 700;
    text-shadow: 0 0 4px rgba(0, 0, 0, .5);
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 55px;
}


.about_card__box {
    display: flex;
    gap: 1rem;
    background-color: #F2F4F8;
    border: 1px solid #E7E7E7;
    padding: 30px;
    transition: all 0.5s;
}

.about_card__box-content h3 {
    font-weight: 600;
    font-size: 24px;
}

.about_card__box-content p {
    margin-top: 10px;
}

.about_card__box:hover {
    transform: translateY(8px);
    transition: all .5s;
}

.about_card__box img {
    transition: all .5s;
}

.about_card__box:hover img {
    transform: scaleX(-1);
    transition: all .5s;
}

/* why_wrapper */
.why_wrapper {
    background-color: var(--black-color);
}

.why_heading p {
    font-size: 14px;
    max-width: max-content;
    padding: 4px 24px;
    border: 1px solid #ccc;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--main-color);
    letter-spacing: 1px;
}

.why_heading h3 {
    font-size: 45px;
    margin-top: 6px;
    font-weight: 600;
    color: var(--white-color);
}

.why_img img {
    height: 341px;
    width: 100%;
    object-fit: cover;
}

.why_img {
    margin-top: 1rem;
}

.why_us {
    margin-top: 2rem;
}

.why_box__icon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.why_box__icon h3 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 26px;
}

.why_box p {
    margin-top: 1rem;
    color: #c2c2c2b3;
}

/* why_counter */
.why_counter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    height: 100%;
}

.why_counter__box {
    padding: 1rem;
    text-align: center;
    background-color: var(--green-color);
    border: 1px solid #E7E7E7;
    color: #E7E7E7;
}

.why_counter__box h3 {
    font-size: 75px;
    font-weight: 800;
    line-height: 85px;
    letter-spacing: 0.02em;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.9);
    -webkit-text-fill-color: transparent;
}

/* what_box */
.what_box {
    background-color: var(--white-color);
    height: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.what_box__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: .4s ease all;
}

.what_content h3 {
    font-weight: 700;
    margin-top: 1rem;
    font-size: 24px;
    color: var(--main-color);
}

.what_content p {
    margin-top: 10px;
}

.what_box:hover img {
    filter: grayscale(1);
    transition: .4s ease all;
}


@media(max-width:992px){
    .what_box{
        height: auto;
        margin-bottom: 1rem;
    }
}
@media(max-width:768px) {
    .breadcrumb_wrapper {
        padding: 50px 0;
    }
    .what_box__img img{
        height: auto;
    }
    .what_content h3{
        font-size: 18px;
    }
    .what_content p{
        font-size: 15px;
        line-height: 25px;
        margin-top: 5px;
    }

    .breadcrumb_wrapper h3 {
        font-size: 32px;
    }
}