.section-padding-tb {
    padding: 80px 0;
}

.bg-lightGrey {
    background: #f3f7fc;
}

.topic-reset-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.topic-reset-title {
    display: flex;
    flex-direction: column;
}

.topic-reset-title .letter-title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    color: #010101;
}

.topic-reset-title .letter-subtitle {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--sub-color);
}

.topic-reset-title .letter-subtitle::after {
    content: '';
    display: block;
    border-top: 2px solid var(--red);
    width: 80px;
    margin-left: 10px;
}

.topic-reset-title .letter-title::first-letter {
    color: var(--red);
}

.red-more-btn {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    padding: 10px 30px;
}

.red-more-btn span {
    display: flex;
    align-items: baseline;
    color: var(--white);
}

.red-more-btn span::after {
    content: '+';
    display: block;
    color: var(--white);
    margin-left: 5px;
}

.red-more-line-btn {
    background: transparent;
    border: 1px solid var(--red);
}

.red-more-line-btn:hover {
    background: var(--red);
}

.index-product-tab {
    display: grid;
    /* flex-direction: row; */
    grid-template-columns: 20% calc(80% - 30px);
    gap: 30px;
    align-items: center;
    padding-top: 50px;
}

.index-product-tab .product-name {
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.index-product-tab .product-name a,
.index-product-tab .product-name a:not(:last-child) {
    border-radius: 5px;
    margin-right: 0;
}

.index-product-tab .product-name a.active,
.index-product-tab .product-name a:hover {
    background: var(--red);
    border-color: var(--red);
}

.index-product-tab .product-show .item-show .list-products {
    display: grid ;
    grid-template-columns: repeat(4,calc((100% - 60px) / 4));
    gap: 20px ;
    padding: 0;
}

.index-product-tab .product-show .item-show .list-products .item-product{
    width: 100% ;
}

.index-product-tab .product-show .item-show .list-products .item-product:not(:nth-child(4n)){
    margin-right: 0 ;
}

.index-product-tab .product-show .item-show .list-products .item-product .thumb-desc{
    padding: 20px 15px ;
}

.index-product-tab .product-show .item-show .list-products .item-product .thumb-desc .name{
    font-size: 16px ;
    margin-bottom: 0 ;
}

.index-product-tab .product-show .item-show .list-products .item-product .more{
    padding: 10px 0 ;
}

.index-product-tab .product-show .item-show .list-products .item-product:hover .more{
    background: var(--red);
    color: var(--white);
}

.index-features .topic-reset-title .letter-title {
    color: var(--white);
}

.index-features .topic-reset-title .letter-subtitle {
    color: var(--white);
}

.grid-list-features {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    gap: 20px;
    padding-top: 50px;
}

.grid-list-features .item-features {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    transition: all .5s;
    cursor: pointer;
}

.grid-list-features .item-features:hover {
    transform: translateY(-10px);
}

.grid-list-features .item-features .num {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #fc5505, #fa2d3f);
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
}

.grid-list-features .item-features .title {
    font-size: 20px;
    font-weight: bold;
    color: #010101;
    padding: 20px 0;
}

.grid-list-features .item-features .desc {
    font-weight: 500;
    color: var(--sub-color);
}

.grid-reset-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-reset-about .about-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.grid-reset-about .about-thumb-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-reset-about .about-thumb-wrapper .about-info-wrapper {
    padding: 50px 80px;
}

.about-info-container .about-title {
    font-size: 28px;
    font-weight: bold;
    color: #010101;
    margin: 20px 0;
}

.about-info-container .about-content {
    margin-bottom: 20px;
}

.grid-reset-about .about-thumb-wrapper .about-grid-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(to right, #fbfbfb 0 25%, #f2f2f2 25% 50%, #e5e5e5 50% 75%, #cac8c8 75% 100%);
}

.about-grid-points .grid-item-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
}

.about-grid-points .grid-item-point .item-point-data {
    display: flex;
    align-items: baseline;

}

.about-grid-points .grid-item-point .item-point-data span.num {
    display: block;
    font-size: 42px;
    color: #010101;
}

.about-grid-points .grid-item-point .item-point-data .unit {
    display: block;
    font-size: 12px;
    background-color: var(--red);
    color: var(--white);
    padding: 2px 5px;
    margin-left: 3px;
    border-radius: 3px;
    transform: translateY(-5px);
}

.grid-reset-news {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 40px) / 4));
    grid-gap: 20px;
    padding-top: 50px;
}

.grid-item-news:not(:first-of-type) {
    display: block;
    background: var(--white);
    color: var(--sub-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.grid-item-news:first-of-type {
    grid-column: 1/3;
}

.grid-item-news .thumb {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.grid-item-news .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16/9; */
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

/* .grid-item-news .thumb svg{
    display: block;
    width: 100% ;
    aspect-ratio: 4/3;
} */

.grid-item-news .thumb .thumb-mask {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 5px;
}

.grid-item-news .thumb .thumb-mask .date {
    display: flex;
    justify-content: flex-end;
}

.grid-item-news .thumb .thumb-mask .date .date-format {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    padding: 10px;
    border: 1px solid var(--white);
}

.grid-item-news .thumb .thumb-mask .date .date-format span {
    font-size: 12px;
}

.grid-item-news .thumb .thumb-mask .date .date-format .day {
    font-size: 24px;
    line-height: 24px;
}

.grid-item-news .thumb .thumb-mask .content .title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.grid-item-news:hover .thumb .thumb-mask .content .title {
    color: var(--red);
}

.grid-item-news .thumb .thumb-mask .content .desc {
    margin-bottom: 10px;
}

.grid-item-news .item-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.grid-item-news .item-date .day {
    font-size: 24px;
    line-height: 24px;
    color: var(--red);
}

.grid-item-news .item-title {
    font-size: 18px;
    color: #010101;
    margin-bottom: 10px;
}

.grid-item-news .item-description {
    margin-bottom: 10px;
}

.grid-partner-brands {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, calc((100% - 30px) / 4));
    padding-top: 50px;
}

.grid-item-partner {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 5px;
}

.grid-item-partner img {
    display: block;
    max-width: 100%;
    border-radius: 5px;
    /* filter: grayscale(100%);
    transition: all .3s ease-in-out; */
}