

/* help section */
@media screen and (min-width: 992px) {
    .image-box img {
        /* width: 420px; */
        height: 403px;
    }
}

@media screen and (min-width: 992px) {
    .image-box {
        position: relative;

        padding-top: 3rem;
        padding-bottom: 5rem;
    }
   

    .box-content {
        /* width: 250px; */
        width: 295px;
        height: 117px;
        overflow: hidden;
    }

    .box-content  h1 {
        font-size: 1.6rem !important;
        color: #ea4343 !important;
        margin-bottom: 0px;
    }

    .box-content h2 {
        font-size: 0.7rem;
        border: 2px solid #ea4343 !important;
        color: #ea4343 !important;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        margin-bottom: 0px;
        margin: 0 auto;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-content p {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 0px;
    }

    .box-content-one {
        position: absolute;
        top: 50px;
        left: 160px;
    }

    .box-content-four {
        position: absolute;
        top: 50px;
        right: 160px;
    }

    .box-content-two {
        position: absolute;
        top: 195px;
        left: 65px;
    }

    .box-content-five {
        position: absolute;
        top: 195px;
        right: 65px;
    }

    .box-content-three {
        position: absolute;
        top: 330px;
        left: 90px;
    }

    .box-content-six {
        position: absolute;
        top: 330px;
        right: 90px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .box-content-one {
        position: absolute;
        top: 55px;
        left: 73px;
    }

    .box-content-four {
        position: absolute;
        top: 55px;
        right: 73px;
    }

    .box-content-two {
        position: absolute;
        top: 180px;
        left: -27px;
    }

    .box-content-five {
        position: absolute;
        top: 180px;
        right: -27px;
    }

    .box-content-three {
        position: absolute;
        top: 310px;
        left: 2px;
    }

    .box-content-six {
        position: absolute;
        top: 310px;
        right: 2px;
    }
}

/* @media screen and (max-width: 991px) and (min-width: 768px) {
    .image-box img {
        width: 305px;
        height: 250px;
    }

    .box-content-one {
        position: absolute;
        top: 65px;
        left: 58px;
    }

    .box-content-four {
        position: absolute;
        top: 65px;
        right: 58px;
    }

    .box-content-two {
        position: absolute;
        top: 164px;
        left: 0px;
    }

    .box-content-five {
        position: absolute;
        top: 164px;
        right: 0px;
    }

    .box-content-three {
        position: absolute;
        top: 300px;
        left: 29px;
    }

    .box-content-six {
        position: absolute;
        top: 300px;
        right: 29px;
    }
} */

@media screen and (max-width: 991px) {
    .box-content h2 {
        color: #3c3c3c;
        font-size: 1rem;
        margin-bottom: 0px;
    }

    .box-content h1 {
        font-size: 1rem;
        color: #ea4343 !important;
        margin-bottom: 0px;
    }

    .box-content p {
        color: #fff;
        font-size: 0.8rem;
        margin-bottom: 0px;
    }

    .image-box img {
        display: none;
    }

    .image-box {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        grid-gap: 10px !important;
        align-items: stretch;
    }

    .box-content {
        border: 1px dashed #ea4343;
        border-radius: 10px;
        padding: 20px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

.tech-section-heading h1 {
    color: #ea4343;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
}

/* situation portion */
.box-model {
    background: transparent;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px dashed #ea4343;
}
.serv-heading h1 {
    color: #ea4343;
    font-size: 2.5rem;
    font-weight: 700;
}

.box-model .image-wrapper {
    border: 1px solid #ea4343;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-model .image-wrapper img {
    width: 40px;
   
}

.box-model h1 {
    color: #ea4343;
    margin-bottom: 0px;
    font-size: 2rem;
}

.box-model p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 1.3rem;
}

.box-model a {
    color: #fff !important;
    border: 1px solid #ea4343;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-weight: 900;
    max-width: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition: all 1s;
    /* background-color: #fff; */
}

.box-model a:hover {
    letter-spacing: 2px;
    color: white !important;
    background: #ea4343;
}

.box-model:hover .image-wrapper img {
    animation: flip-icon 2s infinite;
}

@keyframes flip-icon {
    0% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}
