.feature-two-area svg {
    width: 1em;
    height: 1em;
}

.feature-large-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}
@media (max-width: 575px) {
    .feature-large-title {
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 576px) {
    .feature-large-title {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) {
    .feature-large-title {
        font-size: 70px;
    }
}
@media only screen and (min-width: 992px) {
    .feature-large-title {
        font-size: 100px;
    }
}
.feature-two-top-content {
    max-width: 500px;
    margin: auto;
    text-align: center;
}
.feature-two-top-content p {
    color: #fff;
    margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
    .feature-two-top-content p {
        margin-bottom: 50px;
    }
}
.feature-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 100px 10px;
    position: relative;
    align-items: center;
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .feature-list {
        grid-template-columns: 1fr;
        gap: 15px 10px;
    }
}
@media only screen and (min-width: 576px) {
    .feature-list {
        gap: 15px;
    }
}
@media only screen and (min-width: 768px) {
    .feature-list {
        gap: 20px 30px;
    }
}
@media only screen and (min-width: 992px) {
    .feature-list {
        gap: 20px 50px;
    }
}
@media only screen and (min-width: 1200px) {
    .feature-list {
        gap: 10px 40px;
    }
}
@media only screen and (min-width: 1400px) {
    .feature-list {
        gap: 100px 10px;
    }
}
.feature-item {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: 0.5;
    opacity: 0;
    overflow: hidden;
}
.feature-item:nth-child(2n) {
    text-align: end;
}
.feature-item img {
    width: 100%;
    object-fit: cover;
}
@media only screen and (min-width: 768px) {
    .feature-item img {
        width: inherit;
    }
}

.feature-btn-two {
    text-align: center;
}
.feature-btn-two .theme-btn .icon-box {
    background-color: #DDDDDD;
    color: #222;
    border-color: #454545;
}
.feature-btn-two .theme-btn .text-content {
    background-color: #DDDDDD;
    color: #222;
}
.feature-btn-two .theme-btn:hover .icon-box {
    background-color: #7FE85A;
    color: #121212;
    border-color: #FFFFFF;
}
.feature-btn-two .theme-btn:hover .text-content {
    background-color: #7FE85A;
    color: #121212;
}
.feature-bottom {
    margin-top: 30px;
}
@media only screen and (min-width: 768px) {
    .feature-bottom {
        margin-top: 60vh;
    }
}
@media only screen and (min-width: 992px) {
    .feature-bottom {
        margin-top: 75vh;
    }
}
@media only screen and (min-width: 1200px) {
    .feature-bottom {
        margin-top: 80vh;
    }
}

.theme-btn .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121212;
    background-color: #7FE85A;
    border: 2px solid #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s 0s ease-out;
}

.theme-btn .text-content {
    font: 400 16px "Kanit", sans-serif;
    color: #121212;
    background-color: #7FE85A;
    padding: 12px 28px;
    border-radius: 24px;
    letter-spacing: 5%;
}

.theme-btn .icon-box.icon-box-2 {
    transform: scale3d(1, 1, 1);
    margin-left: -17px;
    opacity: 1;
}

.theme-btn .icon-box i,
.theme-btn .icon-box svg {
    transform: rotate(-45deg);
}

.theme-btn .icon-box.icon-box-1 {
    transform: scale3d(0.5, 0.5, 1);
    margin-right: -50px;
    opacity: 0;
}

.theme-btn:hover .icon-box.icon-box-1 {
    transform: scale3d(1, 1, 1);
    margin-right: -17px;
    opacity: 1;
}

.theme-btn:hover .icon-box.icon-box-2 {
    transform: scale3d(0.5, 0.5, 1);
    margin-left: -50px;
    opacity: 0;
}
.theme-btn:hover .text-content {
    transform: scale3d(1, 1, 1);
}