.feature-con{
    background: #00238a;
}
.feature-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 48.65% 48.65%;
}
.feature-con .generic-title2 *{
    color: var(--secondary--color);
}
.feature-box-item {
    padding: 23px 30px;
    border-radius: 10px;
    position: relative;
    background: var(--secondary--color);
}
.feature-box-item:hover{
    background: var(--accent--color);
}
.feature-box-item:hover .feature-box-content h4,
.feature-box-item:hover .feature-box-content p{
    color: var(--secondary--color);
}
.feature-box-item figure img{
    transition: all 0.5s ease-in-out;
}
.feature-box-item:hover figure{
    background: var(--secondary--color);
} 
.feature-box-item:hover figure img{
    filter: none;
}
.feature-box-item:hover figure img{
    transform: translateY(5px);
}
.feature-box-content h4{
    margin-bottom: 18px;
    color: var(--primary--color);
}
.feature-box-content {
    margin-left: 108px;
}
.feature-box-content p{
    margin-top: auto;
    color: var(--text--color);
}
.feature-box-item figure {
    left: 30px;
    width: 80px;
    height: 80px;
    background: var(--accent--color);
    border-radius: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 28px;
}
.feature-box-item figure img{
    filter: brightness(0) invert(1);
}
.feature-box-item:hover figure img{
    filter: brightness(0) saturate(100%) invert(44%) sepia(85%) saturate(5304%) hue-rotate(199deg) brightness(101%) contrast(105%);
}

/* Hosting Feature */

.dedicatedfeature-con {
    background-color: var(--grey-color) !important;
}
.dedicatedfeature-con .generic-title2 span {
    color: var(--accent--color);
}
.dedicatedfeature-con .generic-title2 h2 {
    margin-bottom: 54px;
    color: var(--primary--color);
}
.dedicatedfeature-con .feature-box-item {
    background: transparent;
}
.dedicatedfeature-con .feature-box-item:hover .feature-box-content h4{
    color: var(--primary--color);
}
.dedicatedfeature-con .feature-box-item:hover .feature-box-content p{
    color: var(--text--color);
}
.dedicatedfeature-con .feature-box-item figure img{
    transition: all 0.5s ease-in-out;
}
.dedicatedfeature-con .feature-box-item:hover figure{
    background: var(--accent--color);
}
.dedicatedfeature-con .feature-box-item:hover figure img{
    transform: translateY(5px);
}
.dedicatedfeature-con .feature-box-item figure img,
.dedicatedfeature-con .feature-box-item:hover figure img{
    filter: brightness(0) invert(1);
}

/* VPS Page Feature */

.vpsfeature-con {
    background-color: var(--secondary--color);
}
.vpsfeature-con .generic-title2 span {
    color: var(--accent--color);
}
.vpsfeature-con .generic-title2 h2 {
    color: var(--primary--color);
}
.vpsfeature-con .generic-title2 p {
    color: var(--text--color);
}
.vpsfeature-con .feature-box-item {
    border: 1px solid rgb(255 221 220 / 100%);
}

/* RESPONSIVE */
@media screen and (max-width: 1199px) {
    .feature-box {
        gap: 25px;
    }
    .feature-box-content {
        margin-left: 92px;
    }
    .feature-box-content h4 {
        margin-bottom: 10px;
    }
    .feature-box-item figure {
        width: 70px;
        height: 70px;
    }
}
@media screen and (max-width: 991px) {
    .feature-box-content h4 {
        margin-bottom: 12px;
    }  
    .feature-box-item figure {
        top: 0;
        left: 0;
        position: relative;
        margin-bottom: 15px !important;
        display: inline-block;
        line-height: 70px;
    }
    .feature-box-content {
        margin-left: 0;
    }
    .feature-box {
        gap: 20px;
    }
    .feature-box-item {
        text-align: center;
    }

    /* Dedicated Feature */
    
    .dedicatedfeature-con .generic-title2 h2 {
        margin-bottom: 34px;
    }
    .dedicatedfeature-con .feature-box {
        gap: 30px 20px;
    }
    .dedicatedfeature-con .feature-box-item {
        padding: 0;
    }
}
@media screen and (max-width: 767px) {
    .feature-box-item {
        padding: 15px;
    }
    .feature-box {
        gap: 20px;
        grid-template-columns: 48% 48%;
    }
    .feature-box-content h4 {
        margin-bottom: 8px;
    }

    /* Dedicated Feature */
    
    .dedicatedfeature-con .generic-title2 h2 {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 575px) {
    .feature-box {
        grid-template-columns: 100%;
    }
    /* Dedicated Feature */

    .dedicatedfeature-con .generic-title2 h2 {
        margin-bottom: 24px;
    }
    .dedicatedfeature-con .feature-box {
        gap: 20px;
    }
}