/*
Project Name: Beast Coast Festival
Description: This is the website for the Beast Coast Music Festival
Author: Lawrence Perry
Version: 1.0
License: 

Tags: (optional)

General comments (optional)

Table of Contents in CSS
1. Global
2. Links
3. Headings
4. Header
5. Navigation
6. Middle
7. Forms
8. Extras
9. Footer
*/
/* FONT FACE */
@font-face {
    font-family: 'hk_grotesklight';
    src: url('../fonts/hkgrotesk-light-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_grotesklight_italic';
    src: url('../fonts/hkgrotesk-lightitalic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskmedium';
    src: url('../fonts/hkgrotesk-medium-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskmedium_italic';
    src: url('../fonts/hkgrotesk-mediumitalic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskregular';
    src: url('../fonts/hkgrotesk-regular-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_grotesksemibold';
    src: url('../fonts/hkgrotesk-semibold-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_grotesksemibold_italic';
    src: url('../fonts/hkgrotesk-semibolditalic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-semibolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'nowblack';
    src: url('../fonts/now-black-webfont.woff2') format('woff2'),
         url('../fonts/now-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'nowbold';
    src: url('../fonts/now-bold-webfont.woff2') format('woff2'),
         url('../fonts/now-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'nowmedium';
    src: url('../fonts/now-medium-webfont.woff2') format('woff2'),
         url('../fonts/now-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'roboto_condensedlight';
    src: url('../fonts/robotocondensed-light-webfont.woff2') format('woff2'),
         url('../fonts/robotocondensed-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* 01. Global */
html,body  { 
    margin: 0;
    padding: 0;
    font-size: 14px; 
}
.container {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
}
* {
    box-sizing: border-box;
}
.row {
    display: flex;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.col-5 {
    flex: 5%;
}
.col-10 {
    flex: 10%;
}
.col-15 {
    flex: 15%;
}
.col-20 {
    flex: 20%;
}
.col-33 {
    flex: 33%
}
.col-25 {
    flex: 25%;
}
.col-50 {
    flex: 50%;
}
.col-75 {
    flex: 75%;
}
.column {
    flex: 50%;
}
.center {
    display: flex;
    justify-content: center;
    align-content: center;
    display: -webkit-flex; 
    -webkit-justify-content: center;
}
.space {
    padding-bottom: 3%;
}
.boldtext {
    font-family: 'nowbold';
}
.lighttext {
    
}
/* 02. Navigation */
.bc_logo {
    left: 30px;
    padding: 1%;
    position: absolute;
    width: 10%;
    text-decoration: none;
}
.bc_logo a { 
    color: inherit; 
    text-decoration: none;
} 
.bc_nav {
    text-transform: uppercase;
    overflow: hidden;
    background-color: #000;
    text-align: center;
    z-index: 6;
    padding: 1%;
}
.bc_nav a {
    font-family: 'nowbold';
    display: inline-block;
    margin-right: -4px;  /* inline-block gap fix */
    color: #fff;
    padding: 0.5% 2%;
    text-decoration: none;
    font-size: 1em;
    -webkit-transition: background 0.3s linear;
    -moz-transition: background 0.3s linear;
    -ms-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
    z-index: 9;
}
.bc_nav a:hover {
    color: #bdfe02;
}
.bc_nav .icon {
    display: none;
}
ul.breadcrumb {
    font-family: 'hk_groteskregular';
    padding: 1%;
    list-style: none;
    background-color: transparent;
    border-top: 0.5px solid #000;
    border-bottom: 0.5px solid #000;
}
ul.breadcrumb li {
    display: inline;
    
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: #000;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
/* 03. Headings */
.headerbanner {
    background: url("../images/beastcoastheader1.jpg") no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
}
.headerlogo {
    width: 20%;
}
/* 04. Homepage */
.homepage {
    background: url("../images/beastcoasthero.jpg") no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.bc_content {
    margin: 0 auto;
    width: 50%;
    padding: 6% 0;
}
.herobanner {
    width: 100%;
    padding-bottom: 1%;
}
/* 05. Tickets */
.tickets {
    padding: 5% 0 10%;
}
.ticket_content h3 {
    font-family: 'hk_grotesklight';
}
.ticket_content h2, .ticket_box {
    font-family: 'hk_grotesksemibold';
}
.ticket_content h4 {
    font-family: 'hk_groteskregular';
}
.ticket_content {
    text-align: center;
    border: 0.5px solid #000;
    padding-bottom: 3%;
}
.ticket_box_info {
    font-family: 'hk_groteskregular';
    line-height: 2em;
    padding-bottom: 1%;
}
.ticketlink {
    font-family: 'nowbold';
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 2% 8%;
}
/* 06. Lineup */
.poster {
    padding: 3% 0;
}
.bcposter {
    width: 50%;
}
.lineup {
    padding: 5% 0;
}
.tab {
    overflow: hidden;
    border: none;
    background-color: #fff;
    padding: 1% 0;
}
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 1%;
    transition: 0.3s;
    font-size: 1em;
}
.tab button:hover {
    background-color: #ddd;
}
.tab button.active {
    border-bottom: 1px solid #ccc;
}
.tabcontent {
    display: none;
    padding: 0;
    border: none;
    border-top: none;
}
.lineupact_content {
    height: 40vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    justify-content: center;
}
.lineupact_photo {
    width: 100%;
}
.lineupact_text {
    font-family: 'nowblack';
    background-color: #fff;
    width: 40%;
    padding: 1%;
/*    margin: 35% 0 0;*/
    
}
.boxend {
    display: flex;
    justify-content: flex-start;
    align-content: flex-end;
    flex-wrap: wrap;
}
/* 07. Info/About */
.info {
    padding-bottom: 3%;
}
.infoabout {
    width: 50%;
    margin: 0 auto;
}
.info h1 {
    font-size: 4em;
}
.info h2 {
    font-size: 3em;
    border-bottom: 0.5px solid #000;
}
.info h3 {
    font-size: 2em;
}
.info h4 {
    font-size: 1.5em;
}
.info p {
    font-size: 1.25em;
}
.info h1, .info h2 {
    text-align: center;
    font-family: 'nowbold';
}
.info h3, .info h4 {
    font-family: 'nowmedium';
}
.info p, .info li {
    font-family: 'hk_groteskmedium';
}
.info li {
    line-height: 2em;
}
.tinkerfield {
    width: 100%;
}
/* 00. Location */
.locationtext {
    text-align: center;
    padding-bottom: 3%;
}
.locationtext_desc {
    font-size: 1em;
    text-align: left;
    padding-bottom: 3%;
}
/* 07. Artists */
.asap {
    background: url("../images/asaprocky.jpg") no-repeat;
    background-size: cover;
}
.ferg {
    background: url("../images/asapferg.jpg") no-repeat;
    background-size: cover;
}
.banks {
    background: url("../images/banks.jpg") no-repeat;
    background-size: cover;
}
.childish {
    background: url("../images/childishgambino.jpg") no-repeat;
    background-size: cover;
}
.dave {
    background: url("../images/daveeast.jpg") no-repeat;
    background-size: cover;
}
.doja {
    background: url("../images/dojacat.jpg") no-repeat;
    background-size: cover;
}
.dualipa {
    background: url("../images/dualipa.jpg") no-repeat;
    background-size: cover;
}
.freddie {
    background: url("../images/freddiegibbsmadlib.jpg") no-repeat;
    background-size: cover;
}
.haim {
    background: url("../images/haim.jpg") no-repeat;
    background-size: cover;
}
.jadensmith {
    background: url("../images/jadensmith.jpeg") no-repeat;
    background-size: cover;
}
.kelela {
    background: url("../images/kelela.jpg") no-repeat;
    background-size: cover;
}
.pushat {
    background: url("../images/pushat.jpg") no-repeat;
    background-size: cover;
}
.shygirls {
    background: url("../images/shygirls.jpg") no-repeat;
    background-size: cover;
}
.syd {
    background: url("../images/syd.jpg") no-repeat;
    background-size: cover;
}
.sza {
    background: url("../images/s") no-repeat;
    background-size: cover;
}
.tame {
    background: url("../images/tameimpala.jpg") no-repeat;
    background-size: cover;
}
.toro {
    background: url("../images/toroymoi.jpg") no-repeat;
    background-size: cover;
}
.tyler {
    background: url("../images/tylerthecreator.jpg") no-repeat;
    background-size: cover;
}
.win {
    background: url("../images/winonaforever.jpg") no-repeat;
    background-size: cover;
}
.yellow {
    background: url("../images/yellowdays.jpg") no-repeat;
    background-size: cover;
}
/* 00. Shop */
.shop_title {
    font-family: 'nowbold';
    border-bottom: 0.5px solid #000;
}
.tshirt {
    padding-bottom: 3%;
}
.shop {
    padding: 3% 0;
}
.shopping_content a {
    color: #000;
    text-decoration: none;
}
.bc_tshirt {
    width: 100%;
}
.garment_desc {
    font-family: 'hk_grotesksemibold';
}
/* 00. Cart */
.cart {
    font-family: 'hk_groteskmedium';
    padding: 5% 0;
}
.cart_items {
    align-items: center;
}
.cart_subtotal_text {
    border-top: 0.5px solid #000;
    text-align: right; 
}
.right {
    text-align: right;
}
.cart_items_content a {
    font-family: 'hk_grotesklight';
    text-decoration: none;
    color: #ccc;
}
.cart_items_content a:hover {
    color: #08F7BD;
}
.cartlink {
    text-decoration: none;
    color: #000;
    border: 0.5px solid #000;
    padding: 1% 6%;
}
.cartlink:hover {
    text-decoration: none;
    color: #fff;
    background-color: #08F7BD;
    border: 0.5px solid #08F7BD;
    padding: 1% 6%;
}
.cartlink_inverse {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    border: 0.5px solid #000;
    padding: 1% 6%;
}
.cartlink_inverse:hover {
    text-decoration: none;
    color: #000;
    background-color: #08F7BD;
    border: 0.5px solid #08F7BD;
    padding: 1% 6%;
}
.bc_package {
    width: 50%;
}
/* 00. Footer */
.product {
    padding: 5% 0;
    font-family: 'hk_groteskmedium';
}
.product_content {
    font-family: 'hk_groteskmedium';
}
.product_shot {
    width: 100%;
}
.product_selection {
    display: flex;
    flex-direction: row;
}
.product_selection_shot {
    width: 25%;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #f3f3f3;
    padding: 5%;
    width: 100%;
    margin: 5% 0;
    background-image: none;
}
.productlink {
    text-decoration: none;
    color: #000;
    border: 0.5px solid #000;
    padding: 2% 20%;
}
.productlink:hover {
    text-decoration: none;
    color: #fff;
    background-color: #08F7BD;
    border: 0.5px solid #08F7BD;
    padding: 2% 20%;
}
/* 00. Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 0;
    font-family: 'hk_grotesklight';
}
.footerbox {
    padding: 1% 0;
}
.footerbox a {
    color: #fff;
    text-decoration: none;
    padding-right: 5%;
}
.footerbox input[type=text] {
    width: 80%;
    padding: 2%;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background-color: #fff;
    color: #000;
}
.footerbox button[type=submit] {
    float: right;
    width: 20%;
    padding: 2%;
    background: #242424;
    color: white;
    font-size: ;
    border: none;
    border-left: none;
    cursor: pointer;
}
.downloadapp {
    width: 20%;
    padding-right: 2%;
}
.borderline {
    border: 0.5px solid #fff;
}
/* 00. Footer */
@media only screen and (max-width: 1024px) {
    .bc_nav a {
        display: none;
    }
    .bc_nav a.icon {
        float: right;
        display: block;
        width: 100px;
    }
    .mobilehide {
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .bc_nav.responsive {
        position: relative; 
    }
    .bc_nav.responsive .icon {
        position: fixed;
        right: 0;
        top: 0;
    }
    .bc_nav.responsive a {
        float: none;
        display: block;
        text-align: center;
        padding: 3% 0;
        font-size: 2em;
    }
}
@media only screen and (max-width: 1024px) {
    .col-5, .col-10, .col-15, .col-20, .col-25, .col-33, .col-50, .col-75 {
        width: 5%;
    }
    .column {
        width: 100;
    }
    .bc_nav {
        padding: 3%;
    }
    .bc_logo {
        width: 25%;
    }
    .bc_content {
        margin: 0 auto;
        width: 80%;
        padding: 6% 0;
    }
    .homepage {
        background: url("../images/beastcoasthero.jpg") no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .herobanner {
        width: 100%;
        padding-bottom: 1%;
    }
    .shop {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .bcposter {
        width: 100%;
    }
    .tab button {
        font-size: 2em;
    }
    .tab {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
        font-size: 1.25em;
    }
    .ticket_box h2 {
        font-size: 2em;
        line-height: 2em;
    }
    .ticket_box p {
        font-size: 1.5em;
        line-height: 2em;
    }
    .ticket_box li {
        font-size: 1.5em;
        line-height: 2em;
    }
    .ticket_box {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .ticket_content {
        width: 100%; 
    }
    .ticket_content h3, .ticket_content h4 {
        font-size: 1.75em;
    }
    .ticket_text {
        padding-bottom: 3%;
    }
    .ticketlink {
        padding: 4% 25%;
        font-size: 1.5em;
    }
    .lineupact {
        flex-wrap: wrap;
        flex-direction: column;
        height: 700px;
    }
    .lineupact_content {
        width: 100%;
    }
    .lineupact_text {
        width: 50%;
        padding: 4%;
        font-size: 1em;
    }
    .infoabout {
        width: 90%;
        margin: 0 auto;
    }
    .info h3 {
        font-size: 2.25em;
    }
    .info h4 {
        font-size: 1.75em;
    }
    .info p {
        font-size: 1.5em;
    }
    footer {
        padding: 5% 0;
    }
    .footerbox {
        padding: 1% 0;
    }
    .footerbox a {
        padding-right: 5%;
    }
    .footerbox input[type=text] {
        width: 100%;
        padding: 5%;
    }
    .footerbox button[type=submit] {
        float: right;
        width: 100%;
        padding: 5%;
    }
    .downloadapp {
        width: 50%;
        padding-right: 2%;
    }
}
@media only screen and (max-width: 768px) {
    .col-5, .col-10, .col-15, .col-20, .col-25, .col-33, .col-50, .col-75 {
        width: 100%;
    }
    .homepage {
        background: url("../images/beastcoasthero.jpg") no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .bc_nav {
        padding: 4%;
    }
    .bc_logo {
        width: 25%;
        padding: 2%;
    }
    .bc_content {
        margin: 0 auto;
        width: 80%;
        padding: 6% 0;
    }
    .info h3 {
        font-size: 2em;
    }
    .info h4 {
        font-size: 2em;
    }
    .info p {
        font-size: 1.55em;
        line-height: 2em;
    }
    .infoabout_list {
        font-size: 1.5em;
    }
    .ticket_text {
        padding-bottom: 5%;
    }
    .shop {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .cart {
        flex-wrap: wrap;
        flex-direction: column;
    }
    footer {
        padding: 5% 0;
    }
    .footerbox {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
    }
    .footerbox a {
        padding-right: 5%;
    }
    .footerbox input[type=text] {
        width: 100%;
        padding: 3%;
        margin-bottom: 3%;
        font-size: 1.5em;
    }
    .footerbox button[type=submit] {
        float: right;
        width: 100%;
        padding: 3%;
        font-size: 1.5em;
    }
    .downloadapp {
        width: 30%;
    }
}
@media only screen and (max-width: 414px) {
    .col-5, .col-10, .col-15, .col-20, .col-25, .col-33, .col-50, .col-75 {
        width: 100%;
    }
    .icon {
        width: 100%;
    }
    .homepage {
        background: url("../images/beastcoasthero.jpg") no-repeat;
        background-size: cover;
        background-attachment: fixed;
        height: 70vh;
    }
    .bc_nav {
        padding: 5%;
    }
    .bc_logo {
        width: 35%;
        padding: 4%;
    }
    .bc_content {
        margin: 0 auto;
        width: 80%;
        padding: 6% 0;
    }
    .herobanner {
        padding-bottom: 5%;
    }
    .tab {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
        font-size: 1em;
    }
    .shopping_content {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .cart_items {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .right {
        text-align: center; 
    }
    .cartlink_checkout {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .cartlink {
        padding: 7% 6%;
        margin-bottom: 5%; 
    }
    .cartlink_inverse {
        padding: 7% 6%;
        margin-bottom: 5%;
    }
    .product_content {
        flex-wrap: wrap;
        flex-direction: column;
    }
    select {
        margin: 10% 0;
    }
    .productlink {
        padding: 7% 35%;
        margin-bottom: 15%;
    }
    .product_content h3 {
        padding-top: 15%;
    }
    .lineupact {
        height: 400px;
    }
    .lineupact_text {
        width: 100%;
        padding: 1%;
        font-size: 1em;
    }
    .info h3 {
        font-size: 2em;
    }
    .info h4 {
        font-size: 2em;
    }
    .info p {
        font-size: 1.55em;
        line-height: 2em;
    }
    .infoabout_list {
        font-size: 1.5em;
    }
    .ticket_text {
        padding-bottom: 5%;
    }
    footer {
        padding: 5% 0;
    }
    .footerbox {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
    }
    .footerbox a {
        padding-right: 5%;
    }
    .footerbox input[type=text] {
        width: 100%;
        padding: 3%;
        font-size: 1.5em;
    }
    .footerbox button[type=submit] {
        float: right;
        width: 100%;
        padding: 3%;
        font-size: 1.5em;
    }
    .downloadapp {
        width: 49%;
    }
}
@media only screen and (max-width: 375px) {
    .col-5, .col-10, .col-15, .col-20, .col-25, .col-33, .col-50, .col-75 {
        width: 100%;
    }
    .icon {
        width: 100%;
    }
    .homepage {
        background: url("../images/beastcoasthero.jpg") no-repeat;
        background-size: cover;
        background-attachment: fixed;
        height: 70vh;
    }
    .bc_nav {
        padding: 5%;
    }
    .bc_logo {
        width: 35%;
        padding: 4%;
    }
    .bc_content {
        margin: 0 auto;
        width: 80%;
        padding: 6% 0;
    }
    .tab {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
        font-size: 1em;
    }
    .lineupact {
        height: 400px;
    }
    .lineupact_text {
        width: 100%;
        padding: 1%;
        font-size: 1em;
    }
    .info h1 {
        font-size: 2em;
    }
    .info h2 {
        font-size: 1.5em;
    }
    .info h3 {
        font-size: 1.5em;
    }
    .info h4 {
        font-size: 1.25em;
    }
    .info p {
        font-size: 1em;
        line-height: 2em;
    }
    .infoabout_list {
        font-size: 1em;
    }
    .ticket_text {
        padding-bottom: 5%;
    }
    .ticket_box h2 {
        font-size: 1.5em;
        line-height: 2em;
    }
    .ticket_box p {
        font-size: 1em;
        line-height: 2em;
    }
    .ticket_box li {
        font-size: 1em;
        line-height: 2em;
    }
    .ticket_content h3, .ticket_content h4 {
        font-size: 1.25em;
    }
    .ticket_text {
        padding-bottom: 16%;
    }
    .ticketlink {
        padding: 4% 25%;
        font-size: 1em;
    }
    footer {
        padding: 5% 0;
    }
    .footerbox {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
    }
    .footerbox a {
        padding-right: 5%;
    }
    .footerbox input[type=text] {
        width: 100%;
        padding: 3%;
        font-size: 1.25em;
    }
    .footerbox button[type=submit] {
        float: right;
        width: 100%;
        padding: 3%;
        font-size: 1.25em;
    }
    .downloadapp {
        width: 49%;
    }
}
@media only screen and (max-width: 320px) {
    .col-5, .col-10, .col-15, .col-20, .col-25, .col-33, .col-50, .col-75 {
        width: 100%;
    }
    .icon {
        width: 100%;
    }
    .homepage {
        background: url("../images/beastcoasthero.jpg") no-repeat;
        background-size: cover;
        background-attachment: fixed;
        height: 70vh;
    }
    .bc_nav {
        padding: 5%;
    }
    .bc_logo {
        width: 35%;
        padding: 4%;
    }
    .bc_content {
        margin: 0 auto;
        width: 80%;
        padding: 6% 0;
    }
    .shopping_content {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .tab {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
        font-size: 0.75em;
    }
    .lineupact {
        height: 400px;
    }
    .lineupact_text {
        width: 100%;
        padding: 1%;
        font-size: 1em;
    }
    .productlink {
        padding: 7% 32%;
        margin-bottom: 15%;
    }
    .product_content h3 {
        padding-top: 15%;
    }
    .ticket_box h2 {
        font-size: 1.5em;
        line-height: 2em;
    }
    .ticket_box p {
        font-size: 1em;
        line-height: 2em;
    }
    .ticket_box li {
        font-size: 1em;
        line-height: 2em;
    }
    .ticket_content h3, .ticket_content h4 {
        font-size: 1.25em;
    }
    .ticket_text {
        padding-bottom: 16%;
    }
    .ticketlink {
        padding: 4% 25%;
        font-size: 1em;
    }
    .info h3 {
        font-size: 1.5em;
    }
    .info h4 {
        font-size: 1.25em;
    }
    .info p {
        font-size: 1em;
        line-height: 2em;
    }
    .infoabout_list {
        font-size: 1em;
    }
    .ticket_text {
        padding-bottom: 5%;
    }
    footer {
        padding: 5% 0;
    }
    .footerbox {
        flex-wrap: wrap;
        flex-direction: column;
        padding: 1% 0;
    }
    .footerbox a {
        padding-right: 5%;
    }
    .footerbox input[type=text] {
        width: 100%;
        padding: 3%;
        font-size: 1em;
    }
    .footerbox button[type=submit] {
        float: right;
        width: 100%;
        padding: 3%;
        font-size: 1em;
    }
    .downloadapp {
        width: 49%;
    }
}