@import url('../../css/fonts-poppins.css');
* {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-sarif;
    transition: 0.3s ease;
    text-decoration: none;
    list-style: none;
}


.sprung {
   background: #e7015e none repeat scroll 0 0;
  cursor: pointer;
  height: 0px;
  z-index: 9;
 }
sprung a {
   background: #e7015e none repeat scroll 0 0;
}



/* HEADER */

nav {
    position: sticky;
    top: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

label.logo {
    color: #fff;
    font-size: 1.8rem;
    line-height: 4rem;
    text-transform: uppercase;
    margin: 0px 0px;
    letter-spacing: 0px;
}

nav ul li a.active {
    color: #fff;
    letter-spacing: 0px;
    font-weight: 600;
}

nav ul li a:hover,
nav ul li a:focus {
    letter-spacing: 0px;
    font-weight: 600;
    
}

.checkbtn {
    display: none;
    font-size: 2rem;
    color: #fff;
    float: right;
    line-height: 4rem;
    margin-right: 2rem;
    cursor: pointer;
}

#check {
    display: none;
}

#title {
    animation: show 3s ease infinite;
}


/* CARDS */

.card-container {
    min-height: calc(100vh - 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -100px;
}

.card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2em;
    
}

.card {
    position: relative;
    background: #fff;
	max-width: 46em;
	width: 46em;
    height: auto;
    margin: 1.5em;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 0.6);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding:10px 0px 0px 0px;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    max-height: 14em;
}

.card-image img {
    max-width: 100%;
    height: 14em;
}

.card-info {
    position: relative;
    color: #222;
    padding: 0.6em 2.2em 2.2em;
}

.card-info h3 {
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 0.3em;
}

.card-info p {
    font-size: 1em;
    margin-bottom: 0.3em;
}

/* 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: 1.4em;
}

.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) {
    label.logo {
        font-size: 1.6rem;
        padding-left: 1rem;
}
nav ul li a {
        font-size: 1rem;
}
}

@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%;
        
        background: #121211;
        top: 4rem;
        text-align: center;
        margin: 0;
}
nav ul li {
        display: block;
        margin: 0rem 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;
}
}

@media (max-width: 428px) {
.checkbtn {
        display: block;
    }
    
nav {
    position: sticky;
    top: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

label.logo {
    color: #fff;
    font-size: 1.8rem;
    line-height: 4rem;
    text-transform: uppercase;
    margin: 0px 0px;
    letter-spacing: 0px;
}

nav ul {
        position: fixed;
        width: 100%;
        background: #121211;
        top: 4rem;
       
        text-align: center;
        margin: 0;
}

nav ul li {
        display: block;
        margin: 0rem 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;
}
    
nav ul li a.active {
    color: #fff;
    letter-spacing: 0px;
    font-weight: 600;
    float:left;
}

nav ul li a:hover,
nav ul li a:focus {
    letter-spacing: 0px;
    font-weight: 600;
    
}
.card-container {
    min-height: calc(100vh - 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -100px;
}

.card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2em;
}

.card {
    position: relative;
    background: #fff;
	max-width: 30em;
	width: 30em;
    height: auto;
    margin: 1.5em;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 0.6);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding:10px 0px 0px 0px;
}
}


/* DISABLED */


/* 
.card-content {
    margin: 30px;
}

.card {
    max-width: 325px;
    width: 325px;
    height: auto;
    margin: 25px;
}

.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
}
*/