.container.content {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.tab-section-title {
    background-color: #f8f8f8;
    margin-top: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tab-item {
    text-decoration: none;
    padding: 41.5px 20px 26.5px 20px;
}

.tab-arrow-item {
    display: block;
    height: 15px;
    overflow: hidden;
    position: relative;
    top: 8px;
}

.tab-arrow-item .arrow {
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    top: 45px;
    background-color: #fff;
}

.tab-arrow-item.active {
    overflow: visible;

}

.tab-arrow-item.active .arrow {
    top: 30px;
}

.tab-item.active span {
    color: rgb(19, 16, 201);
}

.tab-item span {
    display: block;
    color: #919191;
    font-size: 13px;
    width: 90px;
    text-align: center;
}

.wrap-content {
    display: none;
}

.wrap-content.active {
    padding: 50px 0 100px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 72px;
    row-gap: 36px;
}

@media only screen and (max-width: 768px) {
    .wrap-content.active {
        column-gap: 36px;
        row-gap: 24px;
    }

    .wrap-content .content-item .content-item-text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .wrap-content.active {
        column-gap: 24px;
        row-gap: 12px;
    }
}

.wrap-content .content-item .top {
    position: relative;
    padding-top: 44%;
    margin-bottom: 12px;
}

.wrap-content .content-item .top img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap-content .content-item .content-item-text {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .wrap-content .content-item .content-item-text {
        font-size: 15px;
    }
}