    @import url('./fonts-Poppins.css'); 
* {
    margin: 0;
    /*! padding: 0; */
    /*! box-sizing: border-box; */
    font-family: 'Poppins', sans-sarif;
    transition: 0.3s ease;
    text-decoration: none;
    list-style: none;
}

body {
    min-height: 100vh;
    font-size: 16px;
}




/* CARDS */

.card-container {
    min-height: calc(4vh - 54rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*! margin-top: 4em; */
}

.card-content {
    display: flex;
    /*! justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    /*! margin: 2em; */
}

.card {
    position: relative; 
    background: #fff;
    /*! max-width: 40em; */ 
    /*! width: 40em; */ 
    height: auto; 
    /*! margin: 1.5em; */ 
    box-shadow: 0 5px 25px rgba(1, 1, 1, 0.6); 
    /*! border-radius: 10px; */ 
    /*! overflow: hidden; */ 
    /*! cursor: pointer; */ 
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    max-height: 0em;
    /*! float: right; */
}

.card-image img {
    /*! max-width: 100%; */
    height: 14em;
}

.card-info {
    /*! position: relative; */
    /*! color: #222; */
    /*! padding: 0.6em .2em .2em; */
    /*! float:right; */ 
    /*! margin: 0em 0.4em .0em 3.0em; */
    /*! margin-left: 4em; */
}

.card-info h3 {
    /*! font-size: 1.8em; */
    font-weight: 800;
    margin-bottom: 0.3em;
    /*! padding: .6em .2em .2em; */
    /*! float:inherit; */
    margin-left: 13em;
}

.card-info p {
    font-size: 1em;
    margin-bottom: 0.3em;
    padding: .6em .2em .2em 15.5em;
    /*! float: inherit; */
}


/* PAGINATION */

.pagination {
    text-align: center;
    margin: 1.9em 1.9em 3.8em;
    user-select: none;
}

.pagination li {
    display: inline-block;
    margin: 0.3em;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 0.3);
}

.pagination li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    /* line-height: 2.6em; */
}

.previous-page,
.next-page {
    background: #0AB1CE;
    width: 5em;
    border-radius: 45px;
    cursor: pointer;
}

.previous-page:hover {
    transform: translateX(-5px);
}

.next-page:hover {
    transform: translateX(5px);
}

.current-page,
.dots {
    background: #ccc;
    width: 2.8em;
    border-radius: 50%;
    cursor: pointer;
}

.current-page:hover,
.dots:hover {
    transform: translateY(-5px);
}

.pagination li.active {
    background: #333;
}

.pagination li.disable {
    background: #ccc;
}


/* MEDIA QUERIES */

@media (max-width: 952px) {
    
}

@media (min-width: 100px) and (max-width: 800px) {
    body {
        font-size: 12px;
    }
    .pagination {
        display: flex;
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }
}

@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }
    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #121211;
        top: 4rem;
        right: -100%;
        text-align: center;
        margin: 0;
    }
    nav ul li {
        display: block;
        margin: 3rem 0;
        line-height: 2rem;
    }
    nav ul li a {
        font-size: 1.3rem;
    }
    nav ul li a.active,
    nav ul li a:hover,
    nav ul li a:focus {
        background: none;
        color: #fff;
        letter-spacing: 2px;
        font-weight: 600;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        border-radius: 0;
        text-decoration: none;
    }
    #check:checked~ul {
        right: 0;
    }
}


/* DISABLED */


@media (max-width: 858px) {
.card-content {
    margin: 30px;
}

.card {
    max-width: 325px;
    width: 325px;
    height: auto;
    margin: 25px;
}

.card-info {
    position: relative; 
    color: #222; 
    padding: 0.6em .2em .2em;
    float:left; 
    margin: 10em .4em .0em .0em;
     
      width: 225px;
}

.card-info h3 {
    /*! font-size: 1.8em; */
    font-weight: 800;
    margin-bottom: 0.3em;
    margin: 3em .4em .0em .0em;
    float:inherit;
    margin-left: 1em;
}

.card-info p {
    font-size: 1em;
    margin-bottom: 0.3em;
    padding: .6em .2em .2em 0.0em;
    /*! float: inherit; */
}



/*
.card-image {
    max-height: 200px;
}

/*.card-image img {
    max-width: 100%;
    height: auto;
}

.card-info {
    padding: 10px 20px 20px;
}

.card-info h3 {
    margin-bottom: 5px;
}

.card-info p {
    margin-bottom: 5px;
}


.pagination {
    display: flex;
    flex-direction: row;
    margin: 30px 30px 60px;
}

.pagination li {
    margin: 5px;
}

.pagination li a {
    font-size: 1em; 1.2em
    line-height: 35px; 45px
}

.previous-page,
.next-page {
    width: 60px; 80px
}

.current-page,
.dots {
    width: 35px; 45px
}
}