.services {
    background-color: #3F3F44;
    padding: 0px 0 100px;
    margin-top: -1px;
    position: relative;
}
.services p {
    color: #F5F5F5;
    text-align: center;
    font-family:  "Open Sans",sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}
.services-items__container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.services-items__item {
    background: #5B5B5E;
    position: relative;
    width: 260px;
    height: 350px;
    overflow: hidden;
    z-index: 3;
}
.services-items__item .services-items__item-image {
    width: 260px;
    height: 260px;
    object-fit: cover;
}
.services-items__item-body {
    position: absolute;
    transition: all 0.4s ease-in-out;
    top: 250px;
}
.services-items__item-body h3 {
    font-family: "Poppins", sans-serif;
    color: #F5F5F5;
    padding: 20px 20px 10px;
    margin-bottom: 0;
    text-transform: uppercase;
}
.services-items__item-body p {
    color: #F5F5F5;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    text-align: left;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.services-items__item-arrow {
    position: absolute;
    right: 0;
    top: -70px;
    margin-right: 18px;
}
.hovered .services-items__item-body {
    top: 0px;
    background: #5B5B5E;
    width: 100%;
    height: 100%;
}
.hovered .services-items__item-body h3 {
    color: #F5F5F5;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: normal;
    text-transform: none !important;
}
.hovered .services-items__item-body h3 > br {
    display: none;
}
.hovered .services-items__item-body p {
    opacity: 1;
}
.triangle-2-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
@media only screen and (max-width: 1400px) {
    .services-items__container{
        display: flex;
        flex-flow: wrap;
        justify-content: center;
    }
}
@media only screen and (max-width: 1280px) {
    .triangle-2-img {
        display: none;
    }
    .services {
        padding: 0px 0 60px;
    }
    .services-items__item {
        width: 280px;
        height: 325px;
    }
    .services-items__item .services-items__item-image {
        width: 280px;
    }
}