/* .feature-con .generic-title2 h2,
.feature-con .generic-title2 p{
    color: var(--secondary--color);
} */
.feature-con{
    background-color: var(--secondary--color);
}
.feature-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.feature-box-item {
    gap: 21px;
    display: flex;
    text-align: center;
    border-radius: 10px;
    flex-direction: column;
    padding: 40px 22px 30px;
    border: 1px solid rgb(255 221 220 / 100%);
}
.feature-box-item figure img{
    transition: all 0.5s ease-in-out;
}
.feature-box-item figure {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--accent--color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.feature-box-item figure img{
    filter: brightness(0) invert(1)
}
/* .feature-box-content *{
    color: var(--secondary--color);
} */
.feature-box-item:hover figure img{
    transform: translateY(5px);
}
.feature-box-content h4{
    margin-bottom: 19px;
}
.feature-box-content {
    flex-grow: 1;
}
.feature-box-content p{
    margin-top: auto;
}

/* Hosting Faq */

.hostingfaq-con {
    background-color: var(--secondary--color) !important;
}
.hostingfaq-con .faq-box .faq-item {
    gap: 48px;
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    /* align-items: center; */
}
.hostingfaq-con .faq-box h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hostingfaq-con .faq-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
    color: #666666;
}
.hostingfaq-con .faq-box span {
    font-weight: 600;
    display: inline-block;
    color: var(--primary--color);
}
.hostingfaq-con .faq-box .description {
    margin-bottom: 14px;
}
.hostingfaq-con .faq-box .description:last-child {
    margin-bottom: 0 !important;
}
.hostingfaq-con .faq-box .answer-text1 {
    margin-bottom: 14px;
}

/* RESPONSIVE */
@media screen and (max-width: 1199px) {
    .feature-box {
        gap: 25px;
    }
    .feature-box-item {
        gap: 10px;
        padding: 24px 15px;
    }

    /* Hosting Faq */
    
    .hostingfaq-con .faq-box .faq-item {
        gap: 30px;
    }
    .hostingfaq-con .faq-box h5 {
        margin-bottom: 14px;
    }
    .hostingfaq-con .faq-box p {
        font-size: 14px;
        line-height: 22px;
    }
    .hostingfaq-con .faq-box .description {
        margin-bottom: 10px;
    }
    .hostingfaq-con .faq-box .answer-text1 {
        margin-bottom: 12px;
    }
}
@media screen and (max-width: 991px) {
    .feature-box-item figure {
        width: 70px;
        height: 70px;
    }
    .feature-box {
        gap: 20px;
    }
    .feature-box-item {
        gap: 10px;
        padding: 20px 15px;
        flex-direction: column;
    }
    .feature-box-content h4 {
        margin-bottom: 12px;
    }    

    /* Hosting Faq */
    
    .hostingfaq-con .faq-box .faq-item {
        gap: 20px;
        grid-template-columns: 100%;
    }
    .hostingfaq-con .faq-box h5 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 12px;
    }
}
@media screen and (max-width: 767px) {
    .feature-box {
        gap: 20px;
        grid-template-columns: 48% 48%;
    }
    .feature-box-content h4 {
        margin-bottom: 8px;
    }

    /* Hosting Faq */
    
    .hostingfaq-con .faq-box h5 {
        margin-bottom: 10px;
    }
    .hostingfaq-con .faq-box .description {
        margin-bottom: 8px;
    }
    .hostingfaq-con .faq-box .answer-text1 {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 575px) {
    .feature-box {
        grid-template-columns: 100%;
    }

    /* Hosting Faq */
    
    .hostingfaq-con .faq-box .faq-item {
        gap: 15px;
    }
    .hostingfaq-con .faq-box h5 {
        font-size: 16px;
        line-height: 20px;
    }
}