/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.services-plugin__container {
    position: relative;

}

.services-plugin__tabs {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.services-plugin__tabs li {
    width: 33.3%;
    display: flex;
    flex-wrap: wrap;
    color: #000;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    cursor: pointer;
    padding-bottom: 10px;
}

.services-plugin__tabs li:hover {
    color: #fc4f4f;
    position: relative;
    z-index: 1;
}

.active {
    color: #fc4f4f !important;
    position: relative;
    z-index: 1;
}

.services-plugin__content {
    width: 100%;
    margin: auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.services-plugin__box {
    gap: 20px;
    padding: 0;
    width: 100%;
    animation: moving 1s ease;
    -webkit-animation: moving 1s ease;
    grid-template-columns: repeat(12, 1fr);
}

.services-plugin__textarea {
    grid-column-start: 1;
    grid-column-end: 8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-plugin__textarea h3,
.services-plugin__textarea h5 {
    text-align: right;
}

.services-plugin__img {
    grid-column-start: 8;
    grid-column-end: end;
    position: relative;
    margin-left: auto;
}

.services-plugin__img img {
    max-width: 100%;
}

.services-plugin__sign {
    position: absolute;
    bottom: 0;
    left: -30%;
    z-index: 999;
    width: 60%;
}

.services-plugin__box h3 {
    color: #000;
    font-size: 2rem;
    align-self: flex-end;
    margin: 0;
}

.services-plugin__box h5 {
    color: #000;
    font-size: 1.4rem;
    align-self: flex-end;
    margin: 0;
}

.services-plugin__box p {
    color: #000;
    opacity: .5;
    font-size: 1rem;
}

.show {
    display: grid;
}

.hide {
    display: none;
}

@keyframes moving {
    from {
        transform: translateX(-50px);
        -webkit-transform: translateX(-50px);
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        -o-transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .show {
        display: flex;
        flex-direction: column;
    }

    .services-plugin__tabs {
        width: 100%;
    }

    .services-plugin__tabs li {
        width: 50%;
        margin-left: 0 !important;
    }

    .services-plugin__sign {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        width: 60%;
    }

    .services-plugin__img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {}


@media (max-width: 991.98px) {}


@media (max-width: 1199.98px) {}


@media (max-width: 1399.98px) {}