.info-section {
    width: 100%;
    padding-top: 130px;
    height: auto;
    background-color: #000;
    padding-bottom: 40px;
}

.card {
    background: transparent;
    color: #fff;
}

.ft14 {
    font-size: 14px;
}

.ft12 {
    font-size: 12px;
}

.member-info {
    width: 95%;
    max-width: 1160px;
    border: var(--border-main);
    border-radius: 40px;
    box-shadow: var(--blue-box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 10px;
    background: transparent linear-gradient(0deg, #000 0%, #0f0026 74%, #020722 100%) 0% 0% no-repeat padding-box;
}

.mx300 {
    max-width: 300px;
}

.tab {
    overflow: hidden;
    width: 95%;
    max-width: 1160px;
    height: auto;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.tab button {
    cursor: pointer;
    transition: 0.3s;
    width: 232px;
    height: 86px;
    box-shadow: var(--blue-box-shadow);
    border: var(--border-thick);
    border-radius: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* gap: 10px; */
    background-color: black;
    margin-top: 10px;
}

.tablinks h3 {
    width: 100;
    margin: 0;
    text-align: center;
    font: normal normal normal 28px/32px Kanit;
    letter-spacing: 0px;
    color: var(--white-text-color);
    text-shadow: var(--blue-text-shadow-299FF5);
}

.tablinks h4 {
    margin: 0;
    text-align: center;
    font: normal normal normal 16px/16px Kanit;
    letter-spacing: 0px;
    color: var(--white-text-color);
    text-shadow: var(--blue-text-shadow-299FF5);
}

.tablinks img {
    height: auto;
    max-width: 52px;
}

.tabcontent {
    width: 95%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4%;
}

.promotion-card {
    width: 98%;
    max-width: 480px;
    height: auto;
    min-height: 240px;
    display: flex;
    margin-bottom: 30px;
}

.promotion-card>img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    margin-right: 10px;
}

.promotion-details {
    width: 236px;
    height: 240px;
    display: flex;
    flex-direction: column;
    color: var(--white-text-color);
}

.promotion-details>div {
    width: 100%;
    height: 50%;
}

.promotion-details>div:nth-of-type(1) {
    border-bottom: 1px solid white;
    margin-bottom: 5px;
}

.promotion-details h5 {
    font: normal normal 500 24px/35px Kanit;
    letter-spacing: 1px;
}

.promotion-details p {
    font: normal normal normal 16px/24px Kanit;
}

.promotion-details a,
.promotion-details a:hover {
    display: block;
    text-decoration: none;
    width: 109px;
    height: 33px;
    border-radius: 60px;
    text-align: center;
    font: normal normal normal 18px/31px Kanit;
    color: var(--white-text-color);
    background: var(--blue-btn-bg);
    box-shadow: var(--blue-box-shadow);
}

@media (max-width:576px) {
    .tab button {
        width: 139px;
        height: 52px;
        gap: 5px;
        border: var(--border-main);
    }
    .tablinks h3 {
        font: normal normal normal 16px/24px Kanit;
    }
    .tablinks h4 {
        font: normal normal normal 8px/12px Kanit;
    }
    .tablinks img {
        height: auto;
        max-width: 40px;
    }
    .promotion-card {
        min-height: 150px;
        display: flex;
        margin-bottom: 20px;
    }
    .promotion-card>img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        margin-right: 10px;
    }
    .promotion-details {
        width: 150px;
        height: 150px;
        flex-direction: column;
    }
    .promotion-details>div {
        width: 100%;
        height: 50%;
    }
    .promotion-details>div:nth-of-type(1) {
        border-bottom: 1px solid white;
        margin-bottom: 5px;
    }
    .promotion-details h5 {
        font: normal normal 500 18px/22px Kanit;
        letter-spacing: 1px;
    }
    .promotion-details p {
        font: normal normal normal 14px/24px Kanit;
        margin: 0;
    }
    .promotion-details a,
    .promotion-details a:hover {
        width: 60px;
        height: 20px;
        border-radius: 30px;
        font: normal normal normal 14px/18px Kanit;
    }
}