@charset "UTF-8";
/*** BREAKPOINTS ***/
@media (min-width: 1600px) {
    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .container {
        max-width: 1560px;
    }
}
/*** PARTIALS ***/
header {
    display: flex;
    position: fixed;
    z-index: 9;
    width: 100%;
    top: 0;
    padding: 7px 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
    header {
        justify-content: center;
        flex-direction: column;
        height: 0;
        padding: 0;
        overflow-y: hidden;
        transition: 0.2s ease all;
    }
    header.open {
        height: 100vh;
        padding: 8px 0;
        overflow-y: visible;
        transition: 0.2s ease all;
    }
}
header a {
    font-weight: 400;
    text-decoration: none;
    transition: 0.25s ease all;
}
header a svg {
    transition: 0.25s ease all;
}
header a:hover {
    transition: 0.25s ease all;
}
header a:hover svg {
    transition: 0.25s ease all;
}
@media (min-width: 769px) {
    header div:nth-of-type(1) {
        flex: 0 0 20%;
    }
}
header div:nth-of-type(1) ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
header div:nth-of-type(1) ul li {
    display: inline-block;
    margin: 0 5px;
}
@media (max-width: 991px) {
    header div:nth-of-type(1) ul li {
        margin: 0 3px;
    }
}
header div:nth-of-type(1) ul li a svg {
    height: 20px;
    width: auto;
}
@media (max-width: 991px) {
    header div:nth-of-type(1) ul li a svg {
        height: 18px;
    }
}
@media (max-width: 768px) {
    header div:nth-of-type(1) ul li a svg {
        height: 32px;
    }
}
@media (max-width: 768px) {
    header div:nth-of-type(1) {
        order: 3;
        text-align: center;
    }
}
@media (min-width: 769px) {
    header div:nth-of-type(2) {
        flex: 0 0 60%;
    }
}
header div:nth-of-type(2) ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
header div:nth-of-type(2) ul li {
    display: inline-block;
    margin: 0 15px;
}
@media (max-width: 991px) {
    header div:nth-of-type(2) ul li {
        margin: 0 5px;
    }
    header div:nth-of-type(2) ul li a {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    header div:nth-of-type(2) {
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }
    header div:nth-of-type(2) ul li {
        display: block;
        line-height: 2;
        margin-bottom: 10px;
    }
    header div:nth-of-type(2) ul li a {
        font-size: 26px;
    }
}
header div:nth-of-type(3) {
    font-weight: 600;
    text-align: right;
}
@media (min-width: 769px) {
    header div:nth-of-type(3) {
        flex: 0 0 20%;
    }
}
@media (max-width: 768px) {
    header div:nth-of-type(3) {
        order: 2;
        text-align: center;
    }
    header div:nth-of-type(3) a {
        font-size: 26px;
    }
}
#mobile-nav {
    display: none;
    position: fixed;
    z-index: 10;
    background: transparent;
    border: none;
    top: 9px;
    right: 5px;
}
#mobile-nav:hover {
    cursor: pointer;
}
@media (max-width: 768px) {
    #mobile-nav {
        display: block;
        font-size: 24px;
    }
}
#mobile-nav div {
    height: 20px;
    width: 30px;
    position: relative;
}
#mobile-nav div span {
    width: 30px;
    height: 2px;
    display: block;
    position: absolute;
}
#mobile-nav div span:nth-of-type(1) {
    top: 0px;
}
#mobile-nav div span:nth-of-type(2) {
    top: 9px;
    opacity: 1;
    transition: 0.2s linear all;
}
#mobile-nav div span:nth-of-type(3) {
    top: 18px;
}
#mobile-nav.active div span:nth-of-type(1) {
    animation-delay: 0;
    animation-direction: normal;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-name: hamburgerTop;
    animation-play-state: running;
    animation-timing-function: linear;
}
#mobile-nav.active div span:nth-of-type(2) {
    opacity: 0;
    transition: 0.2s linear all;
}
#mobile-nav.active div span:nth-of-type(3) {
    animation-delay: 0;
    animation-direction: normal;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-name: hamburgerBot;
    animation-play-state: running;
    animation-timing-function: linear;
}
@keyframes hamburgerTop {
    0% {
        top: 0px;
        transform: rotate(0deg);
    }
    50% {
        top: 10px;
        transform: rotate(0deg);
    }
    100% {
        top: 10px;
        transform: rotate(45deg);
    }
}
@keyframes hamburgerBot {
    0% {
        top: 18px;
        transform: rotate(0deg);
    }
    50% {
        top: 10px;
        transform: rotate(0deg);
    }
    100% {
        top: 10px;
        transform: rotate(-45deg);
    }
}
#mobile-nav.inactive div span:nth-of-type(1) {
    animation-delay: 0;
    animation-direction: normal;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-name: hamburgerTopReverse;
    animation-play-state: running;
    animation-timing-function: linear;
}
#mobile-nav.inactive div span:nth-of-type(2) {
    opacity: 1;
    transition: 0.2s linear all;
}
#mobile-nav.inactive div span:nth-of-type(3) {
    animation-delay: 0;
    animation-direction: normal;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-name: hamburgerBotReverse;
    animation-play-state: running;
    animation-timing-function: linear;
}
@keyframes hamburgerTopReverse {
    0% {
        top: 10px;
        transform: rotate(45deg);
    }
    50% {
        top: 10px;
        transform: rotate(0deg);
    }
    100% {
        top: 0px;
        transform: rotate(0deg);
    }
}
@keyframes hamburgerBotReverse {
    0% {
        top: 10px;
        transform: rotate(-45deg);
    }
    50% {
        top: 10px;
        transform: rotate(0deg);
    }
    100% {
        top: 18px;
        transform: rotate(0deg);
    }
}
footer {
    position: relative;
    padding: 20px 0;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
}
footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer #photo-credits {
    margin-bottom: 0;
}
footer .copyright {
    margin-bottom: 7px;
}
footer .links {
    text-transform: uppercase;
    margin-bottom: 7px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-weight: 300;
    font-style: normal;
    position: relative;
    line-height: 1.4;
    background-color: #000;
    overflow-x: hidden;
}
h2 {
    line-height: 1.4;
}
@media (min-width: 1200px) {
    .animate-zoom-in {
        transform: scale(0.8);
        opacity: 0;
        transition: 1.5s ease all;
        filter: blur(1);
    }
    .animate-zoom-in.ready {
        transform: scale(1);
        opacity: 1;
        transition: 1.5s ease all;
        filter: blur(0);
    }
}
@media (min-width: 992px) {
    .animate-zoom-in {
        transform: scale(0.9);
        opacity: 0;
        transition: 1.5s ease all;
        filter: blur(1);
    }
    .animate-zoom-in.ready {
        transform: scale(1);
        opacity: 1;
        transition: 1.5s ease all;
        filter: blur(0);
    }
}
@media (min-width: 1200px) {
    .animate-zoom-out {
        transform: scale(1.5);
        opacity: 0;
        transition: 1.5s ease all;
        filter: blur(1);
    }
    .animate-zoom-out.ready {
        transform: scale(1);
        opacity: 1;
        transition: 1.5s ease all;
        filter: blur(0);
    }
}
@media (min-width: 992px) {
    .animate-zoom-out {
        transform: scale(1.1);
        opacity: 0;
        transition: 1.5s ease all;
        filter: blur(1);
    }
    .animate-zoom-out.ready {
        transform: scale(1);
        opacity: 1;
        transition: 1.5s ease all;
        filter: blur(0);
    }
}
.animate-slide-up {
    transform: translateY(100px);
    opacity: 0;
    transition: 1.5s ease all;
}
.animate-slide-up.ready {
    transform: translateY(0px);
    opacity: 1;
    transition: 1.5s ease all;
}
@media (min-width: 992px) {
    .animate-slide-right {
        transform: translateX(-100px);
        opacity: 0;
        transition: 1.5s ease all;
    }
    .animate-slide-right.ready {
        transform: translateX(0px);
        opacity: 1;
        transition: 1.5s ease all;
    }
}
@media (min-width: 992px) {
    .animate-slide-left {
        transform: translateX(100px);
        opacity: 0;
        transition: 1.5s ease all;
    }
    .animate-slide-left.ready {
        transform: translateX(0px);
        opacity: 1;
        transition: 1.5s ease all;
    }
}

.animate-expand {
    width: 0;
    transition: 1.5s ease all;
}
.animate-expand.ready {
    width: 300px;
    transition: 1.5s ease all;
}

@media (min-width: 1400px) {
    .container-lg {
        max-width: 1399px;
    }
}
@media (min-width: 769px) {
    #welcome-modal .modal-dialog {
        max-width: 700px;
    }
}
@media (min-width: 1200px) {
    #welcome-modal .modal-dialog {
        max-width: 1000px;
    }
}
#welcome-modal .modal-dialog .modal-content {
    background-color: transparent;
    border: 0px;
}
#welcome-modal .modal-dialog .modal-content .modal-body {
    padding: 0;
}
#welcome-modal .modal-dialog .modal-content .modal-body button {
    background: transparent;
    border: none;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
}
#welcome-modal .modal-dialog .modal-content .modal-body button svg {
    width: 20px;
}
#welcome-modal .modal-dialog .modal-content .modal-body button svg polygon {
    fill: #fff;
}
#welcome-modal .modal-dialog .modal-content .modal-body button:hover svg polygon {
    fill: #e6d29f;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper {
    border-radius: 20px;
    text-align: center;
    margin: auto;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 3px transparent;
    z-index: 1;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: 10px;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner {
    padding: 30px;
    border-radius: 8px;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h2 {
    display: block;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 20px;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h2 span {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
    line-height: 100px;
    display: inline-block;
    text-shadow: 0px 0px #00000000;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h2 span::first-letter {
    text-transform: capitalize;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h3 {
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 1px;
    display: block;
    font-weight: 100;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h4 {
    letter-spacing: 0;
    font-size: 20px;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner p {
    font-size: 16px;
    margin: auto auto 8px auto;
    text-align: justify;
}
#winners-modal {
    padding-right: 0 !important;
}
#winners-modal.show .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: auto;
}
#winners-modal.show .modal-dialog .modal-content {
    border: 30px solid rgba(0, 0, 0, 0.2);
}
@media (min-width: 960px) {
    #winners-modal.show .modal-dialog .modal-content {
        border: 100px solid rgba(0, 0, 0, 0.2);
    }
}
#winners-modal.show .modal-dialog button {
    background: transparent;
    border: none;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
}
#winners-modal.show .modal-dialog button svg {
    width: 20px;
}
#winners-modal.show .modal-dialog button svg polygon {
    fill: #fff;
}
#winners-modal.show .modal-dialog button:hover svg polygon {
    fill: #000;
}
#winners-modal.show .modal-dialog picture img {
    width: 100%;
}
.insta-modal .modal-content {
    padding: 0;
    background: transparent;
}
.insta-modal .modal-content button {
    border: none;
    background: transparent;
    border: none;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
}
.insta-modal .modal-content button img {
    width: 20px;
}
.insta-modal .modal-content .instagram-media {
    width: 100%;
    max-width: 400px;
}
/*** SECTIONS ***/
#intro {
    width: 100%;
    position: relative;
    overflow: hidden;
}
#intro::after {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 250px;
    width: 100%;
    bottom: 0;
}
#intro .congrats-text {
    font-size: 26px;
    display: block;
    letter-spacing: 1px;
    margin: 100px auto auto;
    text-transform: uppercase;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
    #intro .congrats-text {
        margin: 75px auto 100px;
        font-size: 1.25rem;
    }
    #intro .congrats-text span {
        display: block;
    }
}
@media (max-width: 430px) {
    #intro .congrats-text {
        font-size: 1rem;
    }
}
#intro .logo {
    text-align: center;
    display: block;
    height: 60vh;
    max-width: 800px;
    margin: 30px auto 20px auto;
}
#intro .logo img {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
@media (max-width: 575px) {
    #intro .logo {
        height: 45vh;
    }
}
#intro .intro-arrow {
    position: relative;
    z-index: 2;
    background: transparent;
    background-repeat: no-repeat;
    border: 0;
    margin-bottom: 10px;
    margin-top: 20px;
    display: inline-block;
    transition: 0.2s ease all;
    transform: translateY(0px);
}
#intro .intro-arrow:hover {
    cursor: pointer;
    transition: 0.5s ease all;
    transform: translateY(5px);
}
#intro .intro-arrow svg {
    width: 50px;
    height: 33px;
    fill: url(#scrollArrowGrad);
}
#intro .seemore {
    margin-bottom: 0px;
    padding-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
}
#intro .hashtag {
    position: relative;
    z-index: 2;
    display: block;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}
#about {
    padding: 50px 0;
    position: relative;
}
#about::after {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 250px;
    width: 100%;
    bottom: 0;
}
#about::before {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 250px;
    width: 100%;
    top: 0;
}
#about .wrapper {
    border-radius: 20px;
    text-align: center;
    margin: auto;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 2px transparent;
    z-index: 1;
}
#about .wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: 10px;
    background: #adacad;
}
#about .wrapper .inner {
    padding: 100px;
    border-radius: 8px;
}
#about .wrapper .inner h2 {
    display: block;
    letter-spacing: 2px;
    font-weight: 500;
    color: #e6d29f;
    font-size: 34px;
    margin-bottom: 20px;
}
#about .wrapper .inner h2 span {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
    line-height: 100px;
    color: #fbe7ca;
    display: block;
}
#about .wrapper .inner h2 span::first-letter {
    text-transform: capitalize;
}
#about .wrapper .inner p {
    font-size: 20px;
    margin: auto;
}
#about .wrapper .inner .btns {
    margin: 30px auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 575px) {
    #about .wrapper .inner .btns {
        flex-direction: column;
    }
}
#about .wrapper .inner .btns button {
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 30px;
    border: 0;
    padding: 10px 40px;
    position: relative;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0);
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease all;
    background-size: 100%;
}
#about .wrapper .inner .btns button:hover {
    color: #002c37;
    text-decoration: none;
    padding: 10px 60px;
    transition: 0.2s ease all;
    background-size: 200%;
}
#about .wrapper .inner .btns button:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: 30px;
}
@media (min-width: 1200px) {
    #about .wrapper .inner #about-copy {
        max-width: 80%;
        margin: auto;
    }
}
@media (max-width: 1199px) {
    #about .wrapper .inner {
        padding: 50px;
    }
    #about .wrapper .inner h2 {
        font-size: 24px;
    }
    #about .wrapper .inner h2 span {
        font-size: 55px;
        line-height: 70px;
        letter-spacing: 2px;
    }
}
@media (max-width: 991px) {
    #about .wrapper .inner {
        padding: 40px;
    }
    #about .wrapper .inner h2 {
        font-size: 22px;
    }
    #about .wrapper .inner h2 span {
        font-size: 45px;
        line-height: 60px;
        letter-spacing: 2px;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    #about .wrapper .inner h2 span {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width: 575px) {
    #about .wrapper .inner {
        padding: 20px 15px;
    }
    #about .wrapper .inner h2 {
        font-size: 18px;
    }
    #about .wrapper .inner h2 span {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: 2px;
    }
    #about .wrapper .inner .btns a {
        margin: 10px 0px;
    }
    #about .wrapper .inner p {
        font-size: 18px;
    }
}
#awards {
    overflow-x: hidden;
    position: relative;
    padding-bottom: 200px;
}
#awards::after {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 250px;
    width: 100%;
    bottom: 0;
}
#awards::before {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 100px;
    width: 100%;
    top: 0;
}
#awards .heading {
    padding: 100px 0 0;
}
#awards .heading svg {
    width: 350px;
    fill: none;
}
#awards .divider {
    height: 3px;
    margin: auto;
    background: #b88c85;
    filter: drop-shadow(0px 0px 4px #000);
}
#awards .heading svg path {
    fill: #fff;
    -webkit-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
}
@media (max-width: 575px) {
    #awards .heading svg {
        width: 320px;
    }
}
@media (max-width: 430px) {
    #awards .heading svg {
        width: 250px;
    }
}
#awards .heading h2 {
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 85px;
    line-height: 1.1;
    display: inline-block;
    display: block;
    font-size: 65px;
    font-weight: 100;
}
@media (max-width: 991px) {
    #awards .heading h2 {
        font-size: 68px;
    }
}
@media (max-width: 575px) {
    #awards .heading h2 {
        font-size: 48px;
    }
}
@media (max-width: 430px) {
    #awards .heading h2 {
        font-size: 45px;
    }
}
#awards .heading p {
    font-size: 20px;
}
#awards .award:nth-of-type(even) {
    padding: 100px 50px 100px 0;
}
#awards .award:nth-of-type(even) .videos {
    padding-left: 50px;
}
@media (max-width: 991px) {
    #awards .award:nth-of-type(even) {
        padding: 100px 20px 100px 0;
    }
    #awards .award:nth-of-type(even) .videos {
        padding-left: 20px;
    }
}
#awards .award:nth-of-type(even) .wrapper {
    margin: auto auto 100px auto;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    z-index: 1;
}
#awards .award:nth-of-type(even) .wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -4px;
}
#awards .award:nth-of-type(even) .wrapper .inner {
    padding-top: 50px;
    padding-bottom: 75px;
}
@media (min-width: 992px) and (max-width: 1599px) {
    #awards .award:nth-of-type(even) .wrapper .inner .container {
        margin-right: 0;
    }
}
#awards .award:nth-of-type(even) .wrapper .inner .container h3 {
    font-weight: 100;
    margin-bottom: 25px;
    font-size: 40px;
    display: inline-block;
}
#awards .award:nth-of-type(even) .wrapper .inner .container h4 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
}
#awards .award:nth-of-type(even) .wrapper .inner .container h4 a {
    display: flex;
    text-decoration: none;
}
#awards .award:nth-of-type(even) .wrapper .inner .container h4 a svg {
    display: inline-block;
    margin: -10px 10px 0 -10px;
    width: 60px;
    transform: scale(1);
    transition: 0.2s ease all;
}
#awards .award:nth-of-type(even) .wrapper .inner .container h4 a svg path, #awards .award:nth-of-type(even) .wrapper .inner .container h4 a svg polygon {
    fill: #fff;
}
#awards .award:nth-of-type(even) .wrapper .inner .container h4 a:hover svg {
    transform: scale(1.05);
    transition: 0.2s ease all;
}
#awards .award:nth-of-type(even) .wrapper .inner .container .award-copy {
    font-weight: 500;
}
@media (min-width: 769px) {
    #awards .award:nth-of-type(even) .wrapper .inner .container .award-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    #awards .award:nth-of-type(even) .wrapper .inner .container .award-copy {
        margin-bottom: 20px;
    }
}
#awards .award:nth-of-type(even) .wrapper .inner .container img {
    width: 100%;
    border: 3px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-color: #333333;
}
@media (max-width: 430px) {
    #awards .award:nth-of-type(even) .wrapper .inner .container img {
        width: 90%;
        margin-bottom: 10px;
    }
}
@media (max-width: 991px) {
    #awards .award:nth-of-type(even) .wrapper .inner .container .award-img {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
#awards .award:nth-of-type(even) .wrapper .inner .container ul:first-of-type {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
#awards .award:nth-of-type(even) .wrapper .inner .container ul:first-of-type li {
    display: block;
}
#awards .award:nth-of-type(even) .wrapper .inner .container ul:last-of-type {
    list-style: none;
    padding: 0;
    margin: 0;
}
#awards .award:nth-of-type(even) .wrapper .inner .container ul:last-of-type li {
    font-style: italic;
    display: block;
}
#awards .award:nth-of-type(even).poty img {
    border: 0 !important;
}
#awards .award:nth-of-type(even).icons .wrapper .inner .container {
    margin-right: auto;
}
#awards .award:nth-of-type(even).double .wrapper .inner .container {
    margin-right: auto;
}
#awards .award:nth-of-type(even) .wrapper, #awards .award:nth-of-type(even) .wrapper:before, #awards .award:nth-of-type(even) .wrapper .inner {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
#awards .award:nth-of-type(odd) {
    padding: 100px 0 100px 50px;
}
#awards .award:nth-of-type(odd) .videos {
    padding-right: 50px;
}
@media (max-width: 991px) {
    #awards .award:nth-of-type(odd) {
        padding: 100px 0 100px 20px;
    }
    #awards .award:nth-of-type(odd) .videos {
        padding-right: 20px;
    }
}
#awards .award:nth-of-type(odd) .wrapper {
    margin: auto auto 100px auto;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    z-index: 1;
}
#awards .award:nth-of-type(odd) .wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -3px;
}
#awards .award:nth-of-type(odd) .wrapper .inner {
    padding-top: 50px;
    padding-bottom: 75px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
@media (min-width: 992px) and (max-width: 1599px) {
    #awards .award:nth-of-type(odd) .wrapper .inner .container {
        margin-left: 0;
    }
}
#awards .award:nth-of-type(odd) .wrapper .inner .container h3 {
    margin-bottom: 25px;
    font-size: 40px;
    display: block;
    letter-spacing: 1px;
    text-shadow: 0px 0px 1px #a8a9a8;
}
@media (min-width: 769px) {
    #awards .award:nth-of-type(odd) .wrapper .inner .container .award-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    #awards .award:nth-of-type(odd) .wrapper .inner .container .award-copy {
        margin-bottom: 20px;
    }
}
#awards .award:nth-of-type(odd) .wrapper .inner .container h4 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container h4 a {
    display: flex;
    text-decoration: none;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container h4 a svg {
    display: inline-block;
    margin: -10px 10px 0 -10px;
    width: 60px;
    height: 60px;
    transform: scale(1);
    transition: 0.2s ease all;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container h4 a svg path, #awards .award:nth-of-type(odd) .wrapper .inner .container h4 a svg polygon {
    fill: #fff;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container h4 a:hover svg {
    transform: scale(1.05);
    transition: 0.2s ease all;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container img {
    border: 3px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-color: #333333;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container ul li {
    display: block;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container ul li span {
    font-size: 14px;
    font-style: italic;
}
#awards .award:nth-of-type(odd) .wrapper .inner .container img {
    width: 100%;
}
@media (max-width: 430px) {
    #awards .award:nth-of-type(odd) .wrapper .inner .container img {
        width: 90%;
        margin-bottom: 10px;
        margin-top: 0;
    }
}
@media (max-width: 991px) {
    #awards .award:nth-of-type(odd) .wrapper .inner .container img {
        margin-top: 0;
    }
}
#awards .award:nth-of-type(odd).publishers .wrapper .inner .container {
    margin-left: auto;
}
#awards .award:nth-of-type(odd).publishers .wrapper .inner .container img {
    border: 0 !important;
}
@media (max-width: 991px) {
    #awards .award:nth-of-type(odd).publishers .wrapper .inner .container img {
        width: 45%;
        margin-left: 8%;
        margin-top: 0;
    }
}
#awards .award:nth-of-type(odd).poty .wrapper .inner .container img {
    border: 0px !important;
}
#awards .award:nth-of-type(odd) .wrapper, #awards .award:nth-of-type(odd) .wrapper:before, #awards .award:nth-of-type(odd) .wrapper .inner {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
@media (max-width: 430px) {
    #awards .award:nth-of-type(odd).poty .wrapper .inner .container img {
        width: 70%;
    }
}
#awards .videos .video {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    margin: 20px 0 10px 0;
    align-items: center;
}
#awards .videos .video a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
#awards .videos .video a svg {
    opacity: 0.75;
    display: inline-block;
    margin: auto;
    width: 150px;
    transform: scale(1);
    transition: 0.2s ease all;
}
#awards .videos .video a svg path, #awards .videos .video a svg polygon {
    fill: #fff;
}
#awards .videos .video a:hover svg {
    opacity: 1;
    transform: scale(1.05);
    transition: 0.2s ease all;
}
#awards .videos p {
    margin: 15px 0 0 0;
    font-size: 20px;
}

/* removed non-modal Top Producers overrides from Dan's CSS */
#highlights {
    padding: 100px 0 0;
    position: relative;
}
#highlights::after {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 250px;
    width: 100%;
    bottom: 0;
}
#highlights::before {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 100px;
    width: 100%;
    top: 0;
}
#highlights .heading {
    text-align: center;
    padding-bottom: 50px;
}
/* revert non-modal highlight heading override */
#highlights .heading svg {
    margin-top: 5px;
    width: 150px;
    fill: #f5e8ca;
}
#highlights .heading p {
    font-size: 20px;
}
#highlights .divider {
    width: 75px;
    fill: #f5e8ca;
}
#highlights h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
}
#highlights .video {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    align-items: center;
    margin-bottom: 20px;
}
#highlights .video a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
#highlights .video a svg {
    opacity: 0.75;
    display: inline-block;
    margin: auto;
    width: 150px;
    transform: scale(1);
    transition: 0.2s ease all;
}
#highlights .video a svg path, #highlights .video a svg polygon {
    fill: #fff;
}
#highlights .video a:hover svg {
    opacity: 1;
    transform: scale(1.05);
    transition: 0.2s ease all;
}
@media (max-width: 575px) {
    #highlights .swiper-col {
        padding-right: 0px;
        padding-left: 0px;
    }
}
#highlights .swiper-col .swiper-button-next, #highlights .swiper-col .swiper-button-prev, #highlights .swiper-col .swiper-button-next-1, #highlights .swiper-col .swiper-button-prev-1, #highlights .swiper-col .swiper-button-next-2, #highlights .swiper-col .swiper-button-prev-2 {
    top: 240px;
}
@media (max-width: 1199px) {
    #highlights .swiper-col .swiper-button-next, #highlights .swiper-col .swiper-button-prev, #highlights .swiper-col .swiper-button-next-1, #highlights .swiper-col .swiper-button-prev-1, #highlights .swiper-col .swiper-button-next-2, #highlights .swiper-col .swiper-button-prev-2 {
        top: 205px;
    }
}
@media (max-width: 991px) {
    #highlights .swiper-col .swiper-button-next, #highlights .swiper-col .swiper-button-prev, #highlights .swiper-col .swiper-button-next-1, #highlights .swiper-col .swiper-button-prev-1, #highlights .swiper-col .swiper-button-next-2, #highlights .swiper-col .swiper-button-prev-2 {
        top: 180px;
    }
}
@media (max-width: 768px) {
    #highlights .swiper-col .swiper-button-next, #highlights .swiper-col .swiper-button-prev, #highlights .swiper-col .swiper-button-next-1, #highlights .swiper-col .swiper-button-prev-1, #highlights .swiper-col .swiper-button-next-2, #highlights .swiper-col .swiper-button-prev-2 {
        top: 130px;
    }
}
@media (max-width: 575px) {
    #highlights .swiper-col .swiper-button-next, #highlights .swiper-col .swiper-button-prev, #highlights .swiper-col .swiper-button-next-1, #highlights .swiper-col .swiper-button-prev-1, #highlights .swiper-col .swiper-button-next-2, #highlights .swiper-col .swiper-button-prev-2 {
        display: none;
    }
}
#highlights .swiper-col .swiper-pagination, #highlights .swiper-col .swiper-pagination-2 {
    top: 285px;
}
@media (min-width: 576px) {
    #highlights .swiper-col .swiper-pagination, #highlights .swiper-col .swiper-pagination-2 {
        display: none;
    }
}
#highlights .swiper-col .swiper-slide {
    text-align: center;
}
#highlights .swiper-col .swiper-slide img {
    width: auto;
    margin: auto auto 30px;
    height: 520px;
}
@media (max-width: 1199px) {
    #highlights .swiper-col .swiper-slide img {
        height: 450px;
    }
}
@media (max-width: 991px) {
    #highlights .swiper-col .swiper-slide img {
        height: 400px;
    }
}
@media (max-width: 768px) {
    #highlights .swiper-col .swiper-slide img {
        height: 300px;
    }
}
@media (max-width: 575px) {
    #highlights .swiper-col .swiper-slide img {
        height: 275px;
    }
}
#highlights .swiper-col .swiper-slide p {
    font-size: 20px;
}
#highlights .swiper-col .swiper-slide p span {
    margin-top: 10px;
    display: block;
    font-size: 16px;
}
@media (max-width: 575px) {
    #highlights .swiper-col .swiper-slide p {
        padding: 0 15px;
    }
}
#songwriters {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
#songwriters::before {
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    height: 250px;
    width: 100%;
    top: 0;
}
#songwriters .top h2 {
    position: relative;
    margin-bottom: 20px;
}
/* revert non-modal songwriters heading overrides from Dan's CSS */
#songwriters .top hr {
    border-top: 2px dotted #D7B492;
    margin: auto auto 20px auto;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
}
#songwriters .top .divider {
    height: 4px;
    margin: auto;
    background: #fff;
    box-shadow: 0px 0px 1px #a8a9a8;
    filter: drop-shadow(2px 2px 4px #5e67b0);
}
#songwriters .top > div {
    position: relative;
    font-size: 20px;
}
#songwriters .top #first-time-winners {
    font-size: 23px;
}
@media (max-width: 575px) {
    #songwriters .top #first-time-winners {
        font-size: 1.1rem;
    }
}
#songwriters .top div:nth-of-type(4), #songwriters .top #spotify {
    text-align: center;
}
#songwriters .top div:nth-of-type(4) a, #songwriters .top #spotify > a {
    border-radius: 30px;
    display: inline-block;
    border: 0;
    padding: 10px 40px;
    position: relative;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0);
    position: relative;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease all;
    margin: 30px auto;
    font-size: 16px;
}
#songwriters .top div:nth-of-type(4) a svg, #songwriters .top #spotify > a svg {
    width: 20px;
    margin-right: 7px;
    fill: #62cd6b;
    transition: 0.2s ease all;
}
#songwriters .top div:nth-of-type(4) a:hover, #songwriters .top #spotify > a:hover {
    text-decoration: none;
    padding: 10px 60px;
    transition: 0.2s ease all;
}
#songwriters .top div:nth-of-type(4) a:hover svg, #songwriters .top #spotify > a:hover svg {
    fill: #fff;
    transition: 0.2s ease all;
}
#songwriters .top div:nth-of-type(4) a:before, #songwriters .top #spotify > a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: 30px;
}
#songwriters #songwriters-winners {
    margin-top: 50px;
}
#songwriters #songwriters-winners .song-card-wrap {
    padding-top: 65px;
    margin-bottom: 80px;
}
@media (max-width: 575px) {
    #songwriters #songwriters-winners .song-card-wrap {
        margin-bottom: 30px;
    }
}
#songwriters #songwriters-winners .song-card-wrap .song-card, #top-songs-modal .modal-body {
    width: 100%;
    position: relative;
    border-radius: 4px;
    padding: 2px;
}
/* Modal specific (Read More) minimal styles */

#songwriters .top div:nth-of-type(2) span, #songwriters .top div:nth-of-type(2) span {
    letter-spacing: 1px;
    font-weight: 100;
    text-align: center;
    text-transform: capitalize;
    line-height: 100px;
    font-size: 70px;
    display: block;
    position: relative;
}
#songwriters .top h2 span:nth-of-type(3), #songwriters .top h2 div:nth-of-type(3) {
    letter-spacing: 0;
    font-weight: 100;
    text-align: center;
    font-size: 40px;
    display: block;
}
#songwriters .top h2 br {
    display: none;
}
#top-songs-modal .modal-body button {
    position: absolute;
    top: 5px;
    right: 5px;
}
#top-songs-modal .modal-body img {
    position: relative;
    margin-top: -50px;
    margin-bottom: 20px !important;
}
#top-songs-modal .modal-body .writers {
    list-style: none;
    padding-left: 20px;
    padding-right: 20px;
}
#top-songs-modal .modal-body .publishers {
    list-style: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0 !important;
    padding-bottom: 20px;
}
#top-songs-modal .modal-body .writers li {
    font-size: 18px;
    display: inline-block;
}
#top-songs-modal .modal-body .publishers li {
    display: inline-block;
}
@media (max-width: 768px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card {
        max-width: 341px;
    }
}
#songwriters #songwriters-winners .song-card-wrap .song-card::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner {
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 2px;
    padding: 45px 10px;
    text-align: center;
}
@media (max-width: 1399px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
        padding: 65px 10px;
    }
}
@media (max-width: 1199px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
        padding: 30px 10px;
    }
}
@media (max-width: 991px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
        padding: 40px 10px;
    }
}
@media (max-width: 768px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
        padding: 60px 10px 30px;
    }
}
@media (max-width: 375px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
        padding: 40px 10px;
    }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner div {
    margin-bottom: 10px;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    width: 30%;
    margin: auto;
    z-index: 2;
    transition: 0.2s ease all;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #2A142A;
    opacity: 0;
    transition: 0.2s ease all;
    left: 0;
    position: absolute;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img img {
    width: 100%;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img:hover {
    cursor: pointer;
    transition: 0.2s ease all;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img:hover::after {
    opacity: 0.5;
    transition: 0.2s ease all;
}
@media (max-width: 767px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img:hover::after {
        opacity: 0;
    }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .song-img.active {
    top: 0;
    width: 100%;
    transition: 0.2s ease all;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner h4 {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: 0;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers {
    list-style: none;
    padding: 0;
    display: block;
    margin-bottom: 10px;
    transition: font-size 0.2s ease;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li, #top-songs-modal .modal-body .writers li {
    line-height: 1.2;
    display: inline;
    font-weight: 600;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li:not(:last-child)::after, #top-songs-modal .modal-body .writers li:not(:last-child)::after {
    content: "• ";
    margin-left: 3px;
    margin-right: 3px;
    display: inline !important;
    white-space: nowrap !important;
    line-height: inherit !important;
    vertical-align: baseline !important;
}






#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li .star, #top-songs-modal .modal-body .writers li .star {
    color: #dec37d;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
    top: -2px;
    position: relative;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li .affiliation {
    font-weight: 100;
}
@media (max-width: 1400px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers {
        margin-bottom: 5px;
    }
}
@media (max-width: 375px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers {
        line-height: 1.2;
        font-size: 15px;
    }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers {
    list-style: none;
    padding: 0;
    line-height: 1;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li, #top-songs-modal .modal-body .publishers li {
    line-height: 1.1;
    display: inline-block;
    font-weight: 100;
    font-style: italic;
}
@media (min-width: 1600px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
        font-size: 13px;
    }
}
@media (min-width: 1200px) and (max-width: 1599px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
        font-size: 14px;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
        line-height: 1.2;
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
        font-size: 14px;
    }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li:not(:last-child)::after, #top-songs-modal .modal-body .publishers li:not(:last-child)::after {
    content: "• ";
    margin-left: 3px;
    margin-right: 3px;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li span {
    padding-right: 3px;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li span.asterisk {
    color: #5e67b0;
}

/* Read More link positioning only */
#songwriters .publishers-wrap { 
    position: relative; 
}

/* Dynamic font sizing for cards with many writers - applied to parent container */

/* MANY WRITERS (5 writers) */
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.many-writers {
    font-size: 0.95em;
}

/* MANY WRITERS - Writers section */
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.many-writers .writers {
    margin-bottom: 5px;
    line-height: 1.1;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.many-writers .writers li {
    font-size: 0.95em;
    padding: 0;
    margin: 0;
    line-height: 1.1;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.many-writers .writers li:not(:last-child)::after {
    margin-left: 2px;
    margin-right: 2px;
    display: inline;
    white-space: nowrap;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.many-writers .writers li .star {
    font-size: 12px;
    padding-right: 3px;
    padding-left: 3px;
}

/* MANY WRITERS - Publishers section */
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.many-writers .publishers li {
    font-size: 0.95em;
    line-height: 1.1;
}

/* VERY MANY WRITERS (6+ writers) */

/* VERY MANY WRITERS - Writers section */
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.very-many-writers .writers {
    margin-bottom: 3px;
    line-height: 1.0;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.very-many-writers .writers li {
    font-size: 0.85em;
    padding: 0;
    margin: 0;
    line-height: 1.0;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.very-many-writers .writers li:not(:last-child)::after {
    margin-left: 1px;
    margin-right: 1px;
    display: inline;
    white-space: nowrap;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.very-many-writers .writers li .star {
    font-size: 11px;
    padding-right: 2px;
    padding-left: 2px;
}

/* VERY MANY WRITERS - Publishers section */
#songwriters #songwriters-winners .song-card-wrap .song-card .inner.very-many-writers .publishers li {
    font-size: 0.85em;
    line-height: 1.0;
}

.publishers-modal-open {
    text-decoration: none;
}

/* Hide Read more links on mobile - cards are big enough to show all content */
@media (max-width: 768px) {
    .publishers-modal-open {
        display: none !important;
    }
    #songwriters #songwriters-winners .song-card-wrap .song-card .inner.very-many-writers {
        padding-top: 40px;
    }
}


#highlights .heading h2 {
    text-transform: capitalize;
    background: #efca85;
    background: -webkit-linear-gradient(to bottom, #efca85 0%, #fef5e3 100%);
    background: -moz-linear-gradient(to bottom, #efca85 0%, #fef5e3 100%);
    background: linear-gradient(to bottom, #efca85 0%, #fef5e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px #00000000;
    display: block;
    font-size: 45px;
    font-weight: 100;
    line-height: 65px;
}
@media (max-width: 768px) {
    #highlights #highlights-heading h2 {
      font-size: 45px !important;
    }
  }
@media (max-width: 575px) {
    #highlights .heading h2 {
        font-size: 40px;
        line-height: 60px;
    }
}
@media (max-width: 430px) {
    #highlights .heading h2 {
        font-size: 30px;
        line-height: 40px;
    }
}
#highlights .heading p {
    font-size: 20px;
}
#highlights .heading svg {
    width: 350px;
    fill: none;
    stroke: #fef5e3;
    margin: auto auto 50px auto;
}
#highlights .heading svg path {
    fill: none;
    stroke: #fef5e3;
}
#highlights .heading h3 {
    font-size: 40px;
    display: inline-block;
}
@media (max-width: 575px) {
    #highlights {
        padding-bottom: 20px;
    }
}
#highlights .gallery-slider-wrap {
    position: relative;
    overflow: hidden;
}
#highlights .gallery-slider-wrap .swiper-pagination-1 {
    position: relative;
    top: 275px;
    text-align: center;
}
@media (min-width: 769px) {
    #highlights .gallery-slider-wrap .swiper-pagination-1 {
        display: none;
    }
}
#highlights .gallery-slider-wrap .mySwiper {
    width: 200%;
    margin-left: -50%;
}
@media (max-width: 768px) {
    #highlights .gallery-slider-wrap .mySwiper {
        width: 100%;
        margin-left: auto;
    }
}
#highlights .gallery-slider-wrap .mySwiper .slider-image {
    height: 550px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    position: relative;
}
@media (max-width: 991px) {
    #highlights .gallery-slider-wrap .mySwiper .slider-image {
        height: 250px;
    }
}
#highlights .gallery-slider-wrap .mySwiper .slider-image img {
    height: 100%;
}
#highlights .gallery-slider-wrap .mySwiper .caption {
    height: auto;
    width: 85%;
    text-align: center;
    padding: 10px 20px;
    color: #fff;
    margin: auto;
}
@media (min-width: 769px) {
    #highlights .gallery-slider-wrap .mySwiper .caption {
        width: 35%;
    }
}
@media (max-width: 769px) {
    #highlights .gallery-slider-wrap .mySwiper .caption {
        padding: 30px 20px 10px;
    }
}
#highlights .gallery-slider-wrap .swiper-button-next, #highlights .gallery-slider-wrap .swiper-button-prev {
    top: calc(50% - 30px);
    color: #e0c683;
}
#highlights .gallery-slider-wrap .swiper-button-next:hover, #highlights .gallery-slider-wrap .swiper-button-prev:hover {
    color: #fff;
}
#highlights .gallery-slider-wrap .swiper-button-next::after, #highlights .gallery-slider-wrap .swiper-button-prev::after {
    color: #e0c683;
}
#highlights .gallery-slider-wrap .swiper-button-next:hover::after, #highlights .gallery-slider-wrap .swiper-button-prev:hover::after {
    color: #fff;
}
@media (max-width: 769px) {
    #highlights .gallery-slider-wrap .swiper-button-next, #highlights .gallery-slider-wrap .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    #highlights .gallery-slider-wrap .swiper-button-next, #highlights .gallery-slider-wrap .swiper-button-prev {
        top: calc(35% - 30px);
    }
}
#highlights .gallery-slider-wrap .swiper-button-next {
    right: 15%;
    transition: 0.2s ease all;
    transform: translateX(0px);
}
@media (min-width: 576px) and (max-width: 768px) {
    #highlights .gallery-slider-wrap .swiper-button-next {
        right: 30px;
    }
}
@media (max-width: 575px) {
    #highlights .gallery-slider-wrap .swiper-button-next {
        right: 5px;
        top: 320px;
    }
}
#highlights .gallery-slider-wrap .swiper-button-next:hover {
    transition: 0.5s ease all;
    transform: translateX(5px);
}
#highlights .gallery-slider-wrap .swiper-button-prev {
    left: 15%;
    transition: 0.2s ease all;
    transform: translateX(0px);
}
@media (min-width: 576px) and (max-width: 768px) {
    #highlights .gallery-slider-wrap .swiper-button-prev {
        left: 30px;
    }
}
@media (max-width: 575px) {
    #highlights .gallery-slider-wrap .swiper-button-prev {
        left: 5px;
        top: 320px;
    }
}
#highlights .gallery-slider-wrap .swiper-button-prev:hover {
    transition: 0.5s ease all;
    transform: translateX(-5px);
}

#million-air {
  color: #fff;
  position: relative;
  padding-bottom: 300px; }
  #million-air::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 600px;
    background: #000;
    /* Old browsers */
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
    /* IE6-9 */ }
  #million-air::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: #000;
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
    /* IE6-9 */ }
  #million-air .section-heading {
    position: relative;
    z-index: 1;
    padding: 100px 0 0; }
    #million-air .section-heading svg {
      display: block;
      margin: auto;
      width: 150px;
      fill: #dbd2b1; }
    #million-air .section-heading #awards-subheading {
      font-size: 18px; }
    #million-air .section-heading h4 {
      font-family: "Montserrat", Helvetica Neue, Helvetica times, serif;
      font-size: 23px;
      letter-spacing: 0px;
      color: #dbd2b1;
      font-weight: 300; }
    #million-air .section-heading h2 {
      text-transform: uppercase;
      letter-spacing: 1px;
      background: #be9c4c;
      background: -webkit-linear-gradient(-20deg, #be9c4c 0%, #fdfaf0 25%, #dfc47a 50%, #f2ebd6 75%, #be9c4c 100%);
      background: -moz-linear-gradient(-20deg, #be9c4c 0%, #fdfaf0 25%, #dfc47a 50%, #f2ebd6 75%, #be9c4c 100%);
      background: linear-gradient(130deg, #be9c4c 0%, #fdfaf0 25%, #dfc47a 50%, #f2ebd6 75%, #be9c4c 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0px 0px #00000000;
      display: inline-block;
      font-size: 60px;
      font-weight: 500;
      filter: drop-shadow(1px 1px white); }
      @media (max-width: 768px) {
        #million-air .section-heading h2 {
          font-size: 40px; } }
    #million-air .section-heading p {
      font-size: 20px; }
  #million-air .share {
    position: relative;
    z-index: 1;
    text-align: center; }
    #million-air .share .spotify-btn {
      border: none;
      position: relative;
      margin: 0 20px;
      text-decoration: none;
      padding: 10px 20px 8px;
      display: inline-block;
      background: #c8cAc5;
      /* Old browsers */
      background: -moz-linear-gradient(-45deg, #c8cAc5 0%, #ffffff 50%, #d5cdc2 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(-45deg, #c8cAc5 0%, #ffffff 50%, #d5cdc2 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(135deg, #c8cAc5 0%, #ffffff 50%, #d5cdc2 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efca85', endColorstr='#fef6e5',GradientType=0 );
      /* IE6-9 */
      border-radius: 0px;
      transition: 0.5s ease all;
      background-size: 100% 100%;
      color: #ca3c60;
      font-weight: 700;
      font-size: 18px; }
      #million-air .share .spotify-btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #e1d0ac;
        opacity: 0.5;
        transition: 0.2s ease all; }
      #million-air .share .spotify-btn svg {
        fill: #b99554;
        width: 20px;
        margin-right: 10px;
        transition: 0.5s ease all; }
      #million-air .share .spotify-btn:hover {
        color: #af578b;
        text-decoration: none;
        transition: 0.5s ease all;
        background-size: 200% 100%; }
        #million-air .share .spotify-btn:hover:before {
          opacity: 0.65;
          transition: 0.2s ease all; }
  #million-air .heading {
    padding: 100px 0 0; }
    #million-air .heading svg {
      width: 150px;
      fill: #d2d2d2;
      margin-bottom: 30px; }
      @media (max-width: 768px) {
        #million-air .heading svg {
          margin-left: auto;
          margin-right: auto;
          display: block; } }
    #million-air .heading h2 {
      margin-top: 45px;
      background: #DB9E58;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: #d2d2d2;
      background: -webkit-linear-gradient(-20deg, #d2d2d2 0%, #eee 50%, #7b7b7b 100%);
      background: -moz-linear-gradient(-20deg, #d2d2d2 0%, #eee 50%, #7b7b7b 100%);
      background: linear-gradient(-70deg, #d2d2d2 0%, #eee 50%, #7b7b7b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0px 0px #00000000;
      filter: drop-shadow(1px 1px white);
      display: block;
      font-size: 40px;
      font-weight: 500; }
      @media (max-width: 991px) {
        #million-air .heading h2 {
          font-size: 38px; } }
      @media (max-width: 768px) {
        #million-air .heading h2 {
          text-align: center; } }
    #million-air .heading p {
      font-size: 20px; }
  @media (min-width: 769px) {
    #million-air .more-awards .heading {
      position: sticky;
      top: -90px; } }
  #million-air .more-awards .more-award {
    border: 2px solid #ffeab7;
    border-radius: 20px;
    background: #000;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    #million-air .more-awards .more-award svg {
      width: 75px;
      fill: #b697cc;
      margin: 0 auto 10px auto; }
    #million-air .more-awards .more-award h4 {
      color: #ffeab7;
      letter-spacing: 1px;
      font-size: 18px; }
    #million-air .more-awards .more-award ul {
      margin: 0;
      padding: 0;
      line-height: 1.1;
      list-style: none; }
      #million-air .more-awards .more-award ul li {
        display: block;
        padding: 0;
        margin: 0;
        font-size: 14px; }
        #million-air .more-awards .more-award ul li .star {
          font-size: 12px;
          top: -1px;
          position: relative;
          margin-right: 3px; }
  #million-air .more-awards.more-awards_1 .more-award {
    min-height: 130px; }
  #million-air .more-awards.more-awards1 .more-award {
    min-height: 130px; }
  #million-air .more-awards.more-awards2 .more-award {
    min-height: 130px; }
  #million-air .more-awards.more-awards3 .more-award {
    min-height: 180px; }
  #million-air .more-awards.more-awards4 .more-award {
    min-height: 180px; }
  #million-air .more-awards.more-awards5 .more-award {
    min-height: 130px; }
  #million-air .more-awards.more-awards6 .more-award {
    min-height: 190px; }
  #million-air .winners-list {
    border: none;
    margin: 0 20px;
    padding: 2px;
    display: inline-block;
    background: #79b7d8;
    /* Old browsers */
    background: -moz-linear-gradient(top, #a7842f 0%, #dec487 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #a7842f 0%, #dec487 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #a7842f 0%, #dec487 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#79b7d8', endColorstr='#ffffff',GradientType=0 );
    /* IE6-9 */
    border-radius: 30px; }
    #million-air .winners-list span {
      padding: 10px 20px;
      display: inline-block;
      background: #866109;
      /* Old browsers */
      background: -moz-linear-gradient(top, #866109 0%, #cba64e 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(top, #866109 0%, #cba64e 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom, #866109 0%, #cba64e 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#866109', endColorstr='#cba64e',GradientType=0 );
      /* IE6-9 */
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      border-radius: 30px; }
    #million-air .winners-list:hover {
      color: #000;
      text-decoration: none; }
      #million-air .winners-list:hover span {
        color: #000;
        text-decoration: none; }
  #million-air .winner-cards .song-card {
    margin-top: 150px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    border-width: 3px;
    border-style: solid;
    border-color: #cdba8d; }
    @media (max-width: 575px) {
      #million-air .winner-cards .song-card {
        max-width: 341px;
        margin-left: auto;
        margin-right: auto; } }
    #million-air .winner-cards .song-card::after {
      content: "";
      display: block;
      padding-bottom: 100%; }
    #million-air .winner-cards .song-card .inner {
      border-radius: 10px;
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 45px 10px;
      text-align: center;
      background: #721937;
      /* Old browsers */
      background: -moz-linear-gradient(-45deg, #cd3359 20%, #721937 50%, #cd3359 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(-45deg, #cd3359 20%, #721937 50%, #cd3359 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(135deg, #cd3359 20%, #721937 50%, #cd3359 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efca85', endColorstr='#fef6e5',GradientType=0 );
      /* IE6-9 */ }
      @media (max-width: 1400px) {
        #million-air .winner-cards .song-card .inner {
          padding: 30px 10px; } }
      @media (max-width: 1199px) {
        #million-air .winner-cards .song-card .inner {
          padding: 10px 10px; } }
      @media (max-width: 990px) {
        #million-air .winner-cards .song-card .inner {
          padding: 10px 10px; } }
      @media (max-width: 575px) {
        #million-air .winner-cards .song-card .inner {
          padding: 50px 10px; } }
      #million-air .winner-cards .song-card .inner div {
        margin-bottom: 10px; }
      #million-air .winner-cards .song-card .inner .fa-asterisk {
        color: #D1B35D;
        font-size: 8px;
        margin-left: 3px;
        margin-bottom: 4px;
        vertical-align: unset;
        margin-right: 3px; }
      #million-air .winner-cards .song-card .inner hr {
        width: 20px;
        border-radius: 0;
        height: 2px;
        background-color: #fff;
        margin: 5px auto; }
        @media (max-width: 1400px) {
          #million-air .winner-cards .song-card .inner hr {
            margin-top: 5px;
            margin-bottom: 5px; } }
        @media (max-width: 1199px) {
          #million-air .winner-cards .song-card .inner hr {
            margin-top: 10px;
            margin-bottom: 10px; } }
      #million-air .winner-cards .song-card .inner .song-img {
        position: absolute;
        top: -70px;
        left: 0;
        right: 0;
        width: 30%;
        margin: auto;
        z-index: 2;
        transition: 0.2s ease all; }
        #million-air .winner-cards .song-card .inner .song-img::after {
          content: "";
          width: 100%;
          height: 100%;
          background-color: #2A142A;
          opacity: 0;
          transition: 0.2s ease all;
          left: 0;
          position: absolute;
          border-radius: 9px; }
        #million-air .winner-cards .song-card .inner .song-img img {
          width: 100%;
          border-radius: 9px; }
        #million-air .winner-cards .song-card .inner .song-img:hover {
          cursor: pointer;
          transition: 0.2s ease all; }
          #million-air .winner-cards .song-card .inner .song-img:hover::after {
            opacity: 0.5;
            transition: 0.2s ease all; }
            @media (max-width: 767px) {
              #million-air .winner-cards .song-card .inner .song-img:hover::after {
                opacity: 0; } }
        #million-air .winner-cards .song-card .inner .song-img.active {
          top: 0;
          width: 100%;
          transition: 0.2s ease all; }
      #million-air .winner-cards .song-card .inner h5 {
        font-family: "Montserrat", Helvetica Neue, Helvetica times, serif;
        margin-bottom: 5px;
        font-size: 22px;
        letter-spacing: 0;
        font-weight: 700;
        background: #d8b863;
        background: -webkit-linear-gradient(right, #d8b863 0%, #fdfcfa 50%, #d9d0ae 100%);
        background: -moz-linear-gradient(right, #d8b863 0%, #fdfcfa 50%, #d9d0ae 100%);
        background: linear-gradient(to left, #d8b863 0%, #fdfcfa 50%, #d9d0ae 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(1px 1px #666666);
        display: inline-block; }
        @media (min-width: 576px) and (max-width: 768px) {
          #million-air .winner-cards .song-card .inner h5 {
            font-size: 28px; } }
      #million-air .winner-cards .song-card .inner .writers {
        list-style: none;
        padding: 0;
        color: #fff;
        display: block;
        margin-bottom: 10px;
        line-height: 1.1; }
        #million-air .winner-cards .song-card .inner .writers li {
          font-family: "Montserrat", Helvetica Neue, Helvetica times, serif;
          line-height: 1.2;
          /*&:not(:last-child)::after {
          	content: "• ";
          	margin-left: 3px;
          	margin-right: 3px;
          }*/
          display: block;
          font-weight: 500; }
          @media (min-width: 1600px) {
            #million-air .winner-cards .song-card .inner .writers li {
              font-size: 16px; } }
          @media (min-width: 1200px) and (max-width: 1599px) {
            #million-air .winner-cards .song-card .inner .writers li {
              font-size: 16px; } }
          @media (min-width: 769px) and (max-width: 1199px) {
            #million-air .winner-cards .song-card .inner .writers li {
              font-size: 15px;
              line-height: 1.1; } }
          @media (min-width: 576px) and (max-width: 768px) {
            #million-air .winner-cards .song-card .inner .writers li {
              font-size: 26px; } }
          @media (max-width: 575px) {
            #million-air .winner-cards .song-card .inner .writers li {
              font-size: 19px; } }
          #million-air .winner-cards .song-card .inner .writers li .star {
            padding-right: 5px;
            padding-left: 5px;
            font-size: 14px;
            top: -2px;
            position: relative;
            display: inline-block;
            background: #BF953F;
            background: -webkit-linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
            background: -moz-linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
            background: linear-gradient(-45deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; }
          #million-air .winner-cards .song-card .inner .writers li .affiliation {
            font-weight: 100; }
          #million-air .winner-cards .song-card .inner .writers li span {
            padding-right: 3px;
            font-size: 15px;
            top: -2px;
            position: relative;
            display: inline-block;
            background: #BF953F;
            background: -webkit-linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
            background: -moz-linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
            background: linear-gradient(-45deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; }
        @media (max-width: 1400px) {
          #million-air .winner-cards .song-card .inner .writers {
            margin-bottom: 5px; } }
      #million-air .winner-cards .song-card .inner .publishers {
        list-style: none;
        padding: 0;
        line-height: 1; }
        #million-air .winner-cards .song-card .inner .publishers li {
          font-family: "Montserrat", Helvetica Neue, Helvetica times, serif;
          line-height: 1.2;
          display: inline-block;
          color: #fff;
          font-weight: 100;
          font-style: italic; }
          @media (min-width: 1600px) {
            #million-air .winner-cards .song-card .inner .publishers li {
              font-size: 13px; } }
          @media (min-width: 1200px) and (max-width: 1599px) {
            #million-air .winner-cards .song-card .inner .publishers li {
              font-size: 16px; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            #million-air .winner-cards .song-card .inner .publishers li {
              font-size: 13px; } }
          @media (min-width: 769px) and (max-width: 991px) {
            #million-air .winner-cards .song-card .inner .publishers li {
              font-size: 15px; } }
          @media (min-width: 576px) and (max-width: 768px) {
            #million-air .winner-cards .song-card .inner .publishers li {
              font-size: 22px; } }
          @media (max-width: 575px) {
            #million-air .winner-cards .song-card .inner .publishers li {
              font-size: 14px; } }
          #million-air .winner-cards .song-card .inner .publishers li:not(:last-child)::after {
            content: "• ";
            margin-left: 3px;
            margin-right: 3px; }
          #million-air .winner-cards .song-card .inner .publishers li span {
            padding-right: 3px; }
            #million-air .winner-cards .song-card .inner .publishers li span.asterisk {
              color: #fff; }

#more_awards {
  padding-bottom: 100px;
  position: relative; }
#more_awards::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 600px;
    background: #000;
    /* Old browsers */
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
    /* IE6-9 */ }
  #more_awards::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    background: #000;
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
    /* IE6-9 */ }

  #more_awards .section-heading {
    padding: 100px 0 0; }
    #more_awards .section-heading svg {
      display: block;
      margin: auto;
      width: 150px;
      fill: #ffeab7;
      height: 4px; }
    #more_awards .section-heading #awards-subheading {
      font-size: 18px; }
    #more_awards .section-heading .spotify-btn {
      position: relative;
      border: none;
      margin: 20px auto;
      color: #fff;
      padding: 2px;
      display: inline-block;
      font-weight: 600;
      font-size: 18px;
      width: 240px;
      height: 50px;
      border-radius: 10px;
      background: transparent;
      transition: 0.25s ease all;
      background: #b3e0c5;
      text-decoration: none;
      background: -webkit-linear-gradient(-45deg, #aaa 0%, #fff 50%, #aaa 100%);
      background: -moz-linear-gradient(-45deg, #aaa 0%, #fff 50%, #aaa 100%);
      background: linear-gradient(135deg, #aaa 0%, #fff 50%, #aaa 100%); }
      #more_awards .section-heading .spotify-btn span {
        width: 100%;
        border-radius: 8px;
        height: 100%;
        text-decoration: none;
        display: block;
        align-content: center;
        background: #212121;
        background: -webkit-linear-gradient(-45deg, #212121 0%, #875e17 100%);
        background: -moz-linear-gradient(-45deg, #212121 0%, #875e17 100%);
        background: linear-gradient(135deg, #212121 0%, #875e17 100%);
        color: #fff;
        transition: 0.2s ease all;
        text-shadow: 0px 0px 0px #000000;
        border: 0; }
        #more_awards .section-heading .spotify-btn span svg {
          fill: #1DB954;
          width: 20px;
          height: 20px;
          margin-right: 10px;
          display: inline-block;
          transition: 0.2s ease all; }
      #more_awards .section-heading .spotify-btn:hover {
        padding: 0;
        transition: 0.2s ease all;
        text-decoration: none; }
        #more_awards .section-heading .spotify-btn:hover span {
          color: #fff;
          text-decoration: none;
          transition: 0.2s ease all;
          text-shadow: 0px 0px 3px #000000;
          border: 1px solid #454545; }
          #more_awards .section-heading .spotify-btn:hover span svg {
            fill: #fff;
            transition: 0.2s ease all; }
    #more_awards .section-heading h2 {
      letter-spacing: 1px;
      background: #ffffff;
      /* Old browsers */
      background: -moz-linear-gradient(-45deg, #fff 0%, #666 20%, #eee 40%, #999 60%, #fff 80%, #333 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(-45deg, #fff 0%, #666 20%, #eee 40%, #999 60%, #fff 80%, #333 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(135deg, #fff 0%, #666 20%, #eee 40%, #999 60%, #fff 80%, #333 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666', endColorstr='#ffffff',GradientType=0 );
      /* IE6-9 */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(1px 1px 0px white);
      line-height: 1.6;
      text-shadow: 0px 0px #00000000;
      display: inline-block;
      font-size: 60px;
      font-weight: 100;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-font-smoothing: subpixel-antialiased; }
      @media (max-width: 991px) {
        #more_awards .section-heading h2 {
          font-size: 38px; } }
    #more_awards .section-heading p {
      font-size: 20px; }
  #more_awards .heading {
    padding: 100px 0 0; }
    #more_awards .heading svg {
      width: 150px;
      fill: #dcdad3;
      margin: 15px auto 30px; }
    #more_awards .heading h2 {
      font-family: "Calisga", georgia, serif;
      background: #e5bead;
      /* Old browsers */
      background: -moz-linear-gradient(right, #ccc 0%, #fff 50%, #ccc 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(right, #ccc 0%, #fff 50%, #ccc 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to left, #ccc 0%, #fff 50%, #ccc 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5bead', endColorstr='#ffffff',GradientType=0 );
      /* IE6-9 */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0px 0px #00000000;
      filter: drop-shadow(1px 1px 0px black);
      line-height: 1.6;
      display: inline-block;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-font-smoothing: subpixel-antialiased;
      font-size: 40px;
      font-weight: 100;
      min-height: 60px;
      margin-bottom: 0; }
      @media (max-width: 768px) {
        #more_awards .heading h2 {
          background: -moz-linear-gradient(left, #666 0%, #fff 45%, #fff 55%, #666 100%);
          /* FF3.6-15 */
          background: -webkit-linear-gradient(left, #666 0%, #fff 45%, #fff 55%, #666 100%);
          /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(to right, #666 0%, #fff 45%, #fff 55%, #666 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          text-shadow: 0px 0px #00000000;
          display: block; } }
    #more_awards .heading p {
      font-size: 20px; }
  #more_awards #awards-subheading span {
    color: #9e853b; }
  #more_awards .more-awards {
    position: relative;
    z-index: 1; }
    #more_awards .more-awards .more-award {
      position: relative; }
      #more_awards .more-awards .more-award::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -3px;
        border-radius: 20px;
        background: #e7c8b6;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #e7c8b6 0%, #fff 50%, #e7c8b6 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #e7c8b6 0%, #fff 50%, #e7c8b6 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #e7c8b6 0%, #fff 50%, #e7c8b6 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7c8b6', endColorstr='#fff',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */ }
      #more_awards .more-awards .more-award .inner {
        min-height: 130px;
        position: relative;
        text-align: center;
        margin: auto;
        border-radius: 18px;
        background: #b0b0b0;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #9e853b 0%, #feefd8 30%, #feefd8 70%, #9e853b 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #9e853b 0%, #feefd8 30%, #feefd8 70%, #9e853b 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #9e853b 0%, #feefd8 30%, #feefd8 70%, #9e853b 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b0b0b0',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center; }
        #more_awards .more-awards .more-award .inner h4 {
          color: #000;
          letter-spacing: 1px;
          font-size: 18px;
          text-transform: uppercase; }
          @media (min-width: 1400px) {
            #more_awards .more-awards .more-award .inner h4 {
              font-size: 14px; } }
        #more_awards .more-awards .more-award .inner ul {
          margin: 0;
          padding: 0;
          line-height: 1.3;
          list-style: none; }
          #more_awards .more-awards .more-award .inner ul li {
            text-transform: uppercase;
            color: #111;
            display: block;
            padding: 0;
            margin: 0;
            font-size: 16px;
            font-weight: 400; }
            #more_awards .more-awards .more-award .inner ul li .star {
              color: #9e853b;
              font-size: 12px;
              top: -1px;
              position: relative;
              margin-right: 3px; }
    #more_awards .more-awards.more-awards1 .more-award {
      min-height: 130px; }
    #more_awards .more-awards.more-awards2 .more-award {
      min-height: 165px; }
      #more_awards .more-awards.more-awards2 .more-award .inner {
        min-height: 165px; }
    #more_awards .more-awards.more-awards3 .more-award {
      min-height: 130px; }
    #more_awards .more-awards.more-awards4 .more-award {
      min-height: 140px; }
      #more_awards .more-awards.more-awards4 .more-award .inner {
        min-height: 140px; }
    #more_awards .more-awards.more-awards5 .more-award {
      min-height: 130px; }
    #more_awards .more-awards.more-awards6 .more-award {
      min-height: 130px; }
      #more_awards .more-awards.more-awards6 .more-award .inner {
        min-height: 130px; }
  #more_awards .winners-list {
    position: relative;
    border: none;
    margin: 20px auto;
    color: #fff;
    padding: 2px;
    font-weight: 600;
    font-size: 18px;
    width: 320px;
    height: 50px;
    border-radius: 10px;
    background: transparent;
    transition: 0.25s ease all;
    background: #b3e0c5;
    background: -webkit-linear-gradient(-45deg, #aaa 0%, #fff 50%, #aaa 100%);
    background: -moz-linear-gradient(-45deg, #aaa 0%, #fff 50%, #aaa 100%);
    background: linear-gradient(135deg, #aaa 0%, #fff 50%, #aaa 100%); }
    #more_awards .winners-list span {
      width: 100%;
      border-radius: 8px;
      height: 100%;
      display: block;
      align-content: center;
      background: #212121;
      background: -webkit-linear-gradient(-45deg, #212121 0%, #875e17 100%);
      background: -moz-linear-gradient(-45deg, #212121 0%, #875e17 100%);
      background: linear-gradient(135deg, #212121 0%, #875e17 100%);
      color: #fff;
      transition: 0.2s ease all;
      text-shadow: 0px 0px 0px #000000;
      border: 0; }
    #more_awards .winners-list:hover {
      padding: 0;
      transition: 0.2s ease all; }
      #more_awards .winners-list:hover span {
        color: #fff;
        transition: 0.2s ease all;
        text-shadow: 0px 0px 3px #000000;
        border: 1px solid #454545; }

