* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    width: 100%;
}

.banner-web {
    display: block;
    min-height: 400px;
    max-height: 800px;
    @media (max-width: 768px) {
        display: none;
    }
}

.banner-mob {
    display: none;
    min-height: 173px;
    max-height: 346px;
    @media (max-width: 768px) {
        display: block;
    }
}


.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap {
    padding-top: 32px;
    padding-bottom: 116px;
    display: flex;
    flex-direction: column;

    @media (max-width: 768px) {
        padding-bottom: 80px;
      }
}

.content:last-child {
    padding-bottom: 0;
}

.content {
    width: 935px;
    margin: 0 auto;
    padding-bottom: 64px;

    @media (max-width: 1200px) {
        width: 620px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        padding-bottom: 48px;
        width: 100%;
    }
}

.card-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    @media (max-width: 768px) {
        width: 345px;
        margin: 0 auto;
        justify-content: flex-start;
    }
}

.card {
    width: 295px;
    border-radius: 12px;
    box-shadow: 0px 2px 16px -8px rgba(2, 4, 22, 0.20), 0px 4px 24px 0px rgba(2, 4, 22, 0.08);
        
    display: flex;
    flex-direction: column;
    min-height: 100%;

    @media (max-width: 768px) {
        width: 160px;
    }
}

.card-img {
    width: 100%;
    max-height: 150px;
    display: flex;

    @media (max-width: 768px) {
        max-height: 220px;
        margin: 0 auto;
    }
}

.card-image-pc {
    display: block;
    @media (max-width: 1200px) {
        display: none;
    }
}

.card-image-mob {
    display: none;
    @media (max-width: 1200px) {
        display: block;
    }
}

.card-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card-text {
    color: #0C0E1F;
    padding: 16px;
    font-size: 18px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    line-height: 24px;
    height: 100%;
    @media (max-width: 768px) {
        font-size: 16px;
        padding: 12px 16px;
    }
}

.title {
    color: #2B76AB;
    font-size: 40px !important;
    font-weight: 700;
    text-align: center;
    padding-bottom: 24px;
    margin: 0 !important;

    @media (max-width: 1200px) {
        font-size: 24px !important;

        
    }
}

.tip {
    padding-bottom: 40px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;

    @media (max-width: 1200px) {
        text-align: center;
        align-items: flex-start;
        padding-bottom: 24px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.tip img {
    width: 24px;
    height: 24px;
}