.card-lists {
    width: 400px;
    margin: 10px;
    height: 500px;
    display: block;
    background: var(--design);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: 0.2s ease;
}

.contant-table {

    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 700px;
    min-height: 400px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);

}

.as-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.as-button button:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 1em 2.1em;
}

.btn-1 {
    padding: 1em 2em;
    border-radius: 20px;
    margin: 0 15px;
    color: green;
    font-size: 15px;
    font-weight: bolder;
    border: 1px solid black;
}

.btn-2 {
    padding: 1em 2em;
    border-radius: 20px;
    margin: 0 15px;
    color: red;
    font-size: 15px;
    font-weight: bolder;
    border: 1px solid black;
}

.btn-3 {
    padding: 1em 2em;
    border-radius: 20px;
    margin: 0 15px;
    color: blue;
    font-size: 15px;
    font-weight: bolder;
    border: 1px solid black;
}

.btn-4 {
    padding: 1em 2em;
    border-radius: 20px;
    margin: 0 15px;
    color: orangered;
    font-size: 15px;
    font-weight: bolder;
    border: 1px solid black;
}

.btn-5 {
    padding: 1em 1.7em;
    border-radius: 20px;
    margin: 0 15px;
    color: purple;
    font-size: 15px;
    font-weight: bolder;
    border: 1px solid black;
}

.contant-table {
    display: none;
}

.contant-table.co-1 {
    display: table;
}

.table-container {
    margin-top: 20px;
}

.contant-table tr:nth-of-type(even) {
    background-color: #f3f3f3;

}

.contant-table tr:last-of-type {
    border-bottom: 2px solid var(--design);
}

.contant-table tr th {
    background-color: var(--design);
    color: var(--common);
    text-align: left;
    font-weight: bold;
    font-size: 20px;

}

.contant-table tr th,
.contant-table tr td {
    padding: 15px 17px;
    border: 1px solid #b4b3b3;
    font-family: monospace;
}

.contant-table tr td {
    font-size: 15px;

}

.card-lists:hover {
    border-color: gold;
}

.card-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 15px;
}

.card-link h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    text-align: center;
    font-size: 35px;
    padding: 20px 0;
    color: var(--common);
}

.card-link h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 15px;
    padding: 20px;
    color: var(--ok);
}

.card-link h4>span {
    color: var(--common);
}


.card-link h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 20px;
    padding: 10px;
    color: azure;
}

.card-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
}

.card-links h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--common);
}

.card-links h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 15px;
    padding: 7px;
    color: var(--ok);
}

.card-links h4>span {
    color: var(--common);
}

.card-links h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 20px;
    padding: 5px;
    color: azure;
}




/* Card styles */
.container {
    position: relative;
}

.slider-wrapper {
    overflow: hidden;

}

.second {

    margin: 35px;
}

.card-item p {
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}


/* Swiper Navigation Buttons in White */
.second .swiper-button-next,
.second .swiper-button-prev {
    color: #fff;
    /* white arrow color */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    /* optional background */
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.second .swiper-button-next:hover,
.second .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Position arrows */
.second .swiper-button-next {
    right: 10px;
}

.second .swiper-button-prev {
    left: 10px;
}

/* Pagination Bullets in White */
.second .swiper-pagination {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.second .swiper-pagination-bullet {
    background-color: #fff;
    height: 15px;
    width: 15px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.second .swiper-pagination-bullet-active {
    opacity: 1;
}

.third {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    background-color: var(--ok);

}

.third h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: xx-large;
    margin-bottom: 12px;
    text-align: center;
    color: var(--design);

}

.third p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 700px;
    margin: 15px;
}

.third h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 15px;
    font-weight: 300;
}

.sa {
    width: 80vw;
    color: var(--design);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px
}

.third p>span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    text-align: left;
}

.third h2 {
    color: var(--design);
    font-size: 23px;
    font-weight: 500;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    padding: 12px;
    text-align: center;
}

.third li {
    color: var(--design);
    font-size: 20px;
    font-weight: 500;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    padding: 12px;
    text-align: center;

}

.third li>span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: red;
    font-size: x-large;
}

@media screen and (max-width:1300px) {
    .second {
        margin: 10px;
    }

    .third ul {
        list-style: none;
    }

    .third li {
        font-size: 17px;
    }

    .third p {

        display: none;

    }

    .third h2 {
        font-size: 16px;
        padding: 6px
    }

    .third img {
        width: 300px;
    }

    .card-lists {
        width: 290px;
        padding: 5px;
        margin: auto;
    }

    .card-link .five button {
        width: 21em;
    }

    .card-links .five button {
        width: 21em;
    }

    .card-link h1 {
        padding: 10px 0;
    }

    .card-link h4 {
        padding: 18px;
    }

    .contant-table {

        min-width: 30px;
        min-height: 100px;
    }

    .contant-table tr th,
    .contant-table tr td {
        padding: 8px 9px;
    }

    .contant-table tr th {
        font-size: 10px;
    }

    .contant-table tr td {
        font-size: 9px;
    }

    .btn-1 {
        margin: 0 5px;
        font-size: 6px;
        font-weight: bolder;
    }

    .btn-2 {

        margin: 0 5px;
        font-size: 6px;
        font-weight: bolder;
    }

    .btn-3 {

        margin: 0 5px;
        font-size: 6px;
        font-weight: bolder;
    }

    .btn-4 {
        margin: 0 5px;
        font-size: 6px;
        font-weight: bolder;
    }

    .btn-5 {

        margin: 0 5px;
        font-size: 6px;
        font-weight: bolder;
    }
}