
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    background-color: #f4f4f4;
}

.red-text {
    color: #ce4b29;
}

.winners-laurel {
    max-width: 200px;
}

/* Global */

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.two-by-one-grid {
    display: grid;
    grid-template-columns: 4fr 2fr;
    grid-gap: 25px;
    align-items: center;
}

ul {
    margin: 0;
    padding: 0;

}

.button_1 {
    height: 38px;
    background: #FAB533;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    color: #ffffff;
}

.dark {
    padding: 15px;
    background: #35424a;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.light {
    padding: 15px;
    background: #e6e6e6;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;
}

.active-link {
    color: #FAB533;
    font-weight: bold;
}

.center-stuff {
    text-align: center;
}

.dark-text {
    color: #35424a;
}

.orange-text {
    color:#F39816;
}

.text-12px {
    font-size: 11px;
}

#white-link a,
#white-link a:hover,
#white-link a:link {
    text-decoration: none;
    color: #ffffff;
}

/* Video header */

#videobanner {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
  }
  
  #videobanner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  
  #videobanner .vcontainer {
    position: relative;
    z-index: 2;
  }
  
  #videobanner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 1;
  }
  
  @media (pointer: coarse) and (hover: none) {
    #videobanner {
       background: url('../img/ib-still.jpg') black no-repeat center center scroll;
    }
    #videobanner video {
      display: none;
    }
  }

/* Nav etc */

header {
    background: #35424a;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 15px;
    min-height: 70px;
    border-bottom: #FAB533 3px solid;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    text-decoration: none;
}

header .current a {
    color: #FAB533;
    font-weight: bold;
}

header li {
    float: left;
    display: inline;
    padding: 20px 20px 0 20px;
}

header li a:hover {
    color: #cccccc;
    font-weight: bold;
}

header #branding {
    float: left;
}

header #branding img {
    height: 75px;
}

header nav {
    float: right;
    margin-top: 10px;
}

/* Showcase */

#showcase {
    min-height: 500px;
    background: url('../img/banner-subs.jpg') no-repeat 0 0;
    text-align: center;
    color: #ffffff;
}

#showcase h1 {
    margin-top: 160px;
    font-size: 65px;
    margin-bottom: 10px;
}

#showcase p {
    margin-top: 100px;
    font-size: 22px;
}

/* Boxes */

#boxes {
    margin-top: 40px;
}

#boxes .box {
    float: left;
    width: 25%;
    padding: 10px;
    text-align: center;
}

#boxes h4 {
    margin-top: 10px;
}

.yellow-text {
    color: #d48c05;
}

/* Sidebar */

aside#sidebar {
    float: right;
    width: 30%;
    margin-top: 30px;
}

/* Article */

article#main-col {
    float: left;
    width: 65%;
    margin-top: 30px;
}

/* Patrons */

ul#patrons li {
    list-style: none;
    padding: 20px;
    border: #cccccc solid 1px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #e6e6e6;
}

.patrow {
    padding: 20px;
}

/* Sponsors */

ul#sponsor li {
    list-style: none;
    padding: 20px;
    border: #cccccc solid 1px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #e6e6e6;
}

.sponrow {
    padding: 20px;
}

/* Shortlist */

.shortlist img {
    width : 100%;
    height: auto; /*to preserve the aspect ratio of the image*/
}

.grid-for-shortlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    align-items: center;
}

/* Voting */

.grid-for-vote {
    display: grid;
    grid-template-columns: repeat(1fr, 3fr);
    grid-gap: 5px;
}

/* Contact Us */

.contactus {
    margin-top: 30px;
}

/* 2018 video */
#video2018 {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Past events grids */

.grid-for-2023 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    align-items: center;
}

.grid-for-2020 {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 25px;
    align-items: center;
}

.grid-edh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    padding: 15px;
}

/* footer */

footer {
    padding: 20px;
    margin-top: 20px;
    color: #ffffff;
    background-color: #FAB533;
    text-align: center;
}

footer i {
    color: #ffffff;
}

/* Media queries */

@media(max-width: 1024px) {

    article#main-col {
        float: left;
        width: 55%;
        margin-top: 30px;
    }

    aside#sidebar {
        float: right;
        width: 40%;
        margin-top: 30px;
    }

    .patrow img {
        width: 40%;
    }
}

@media(max-width: 768px) {
    
    header #branding,
    header nav,
    #socialmedia h1,
    #socialmedia form,
    #boxes .box,
    article#main-col,
    aside#sidebar {
        float: none;
        text-align: center;
        width: 100%;
    }

    header nav li {
        float: none;
        text-align: center;
        width: 100%;
        padding-bottom: 30px;
    }

    header {
        padding-bottom: 20px;
    }

    #videobanner h1 {
        margin-top: 40px;
        font-size: 45px;
    }
    
    #socialmedia button {
        display: block;
        width: 100%;
    }

    #socialmedia form input[type="email"] {
        width: 100%;
        margin-bottom: 5px;
    }

    #boxes h1 {
        font-size: 35px;
    }

    .mob-hide {
        display: none;
    }

    .grid-for-2020 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 25px;
        align-items: center;
    }

    .two-by-one-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 25px;
        align-items: center;
    }
    
}