*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.wrapper{
    padding: 0 20px;
    height: 100%;
    margin: 0 auto;
}

/* Header */

header{
    width: 100%;
    height: 14vh;
}
nav{
    width: 100%;
    height: 100%;
    background-color: #9C052E;
}
.nav-items{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.nav-items li{
    height: 100%;
}
.logo-image{
    height: 90%;
}
.logo-image img{
    height: 100%;
    object-fit: contain;
    padding: 10px 0;
}
.partners-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.partners-logos img{
    margin-left: 10px;
    margin-right: 10px;
    width: 80px;
    height: 80px;
    background: #fff;
    object-fit: contain;
}


/* Main */


.main-title{
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid #9C052E;
    border-bottom: 2px solid #9C052E;
    text-align: center;
    margin: 40px 0;
}

.spickers-container{
    width: 100%;
    display: grid;
    grid-template-columns: 33fr 33fr 33fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}
.spicker{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 30px;
    border: 4px solid #9C052E;
}
.spicker-icon{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.spicker-name{
    font-size: 18px;
    color: #000;
    margin-top: 14px;
    margin-bottom: 2px;
}
.spickr-company{
    color: #727B82;
    font-size: 14px;
}
.description{
    font-size: 18px;
    color: #000;
    margin-top: 14px;
    margin-bottom: 8px;
}
.social-group{
    display: flex;
    align-items: center;
}
.social-group img{
    width: 40px;
    height: 40px;
    margin-left: 6px;
    margin-right: 6px;
}


/* Footer */


footer{
    width: 100%;
    padding: 20px 0px;
    height: 18vh;
    overflow: hidden;
    margin-top: 20px;
    background-color: #9C052E;
}
.footer-nav-items{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.footer-nav-items li{
    height: 100%;
}
.footer-logo-image{
    height: 100%;
}
.footer-logo-image img{
    height: 100%;
    object-fit: contain;
    padding: 10px 0;
}
.footer-nav{
    width: 100%;
    height: 100%;
}
.vatchers{
    width: 100%;
    height: 100%;
}
.gtable{
    width: 100%;
    height: 40vh;
}
.vatchers{
    display: grid;
    grid-template-columns: 33fr 33fr 33fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}
.vatchers article{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: #727B82;
    flex-direction: column;
    padding: 20px;
}
.vatchers article h2{
    color: #fff;
    font-size: 24px;
}
.vatchers article p{
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}
.vatchers article a{
    margin-top: 20px;
}