@charset "UTF-8";
/*** UTILITIES ***/
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:ital,wght@0,200;0,500;0,800;1,200;1,500;1,800&family=Roboto+Condensed:ital,wght@0,700;1,300;1,700&display=swap");
/*** COLORS ***/
/*** BREAKPOINTS ***/
@media (min-width: 1600px) {
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}
/*** PARTIALS ***/
header {
  background: #858076;
  /* Old browsers */
  background: -moz-linear-gradient(left, #858076 0%, #eee 50%, #858076 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #858076 0%, #eee 50%, #858076 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #858076 0%, #eee 50%, #858076 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#858076", endColorstr="#858076",GradientType=0 );
  /* IE6-9 */
  background-size: 100%;
  background-position: right;
  transition: 0.5s ease all;
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
  padding: 7px 15px;
  display: flex;
  text-align: center;
}
header a {
  text-decoration: none;
  color: #fff;
  transition: 0.25s ease all;
}
header a svg {
  fill: #fff;
  transition: 0.25s ease all;
}
header a:hover {
  color: #333;
  transition: 0.25s ease all;
}
header a:hover svg {
  fill: #333;
  transition: 0.25s ease all;
}
header ul:nth-of-type(1) {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
header ul:nth-of-type(1) li {
  display: block;
}
header ul:nth-of-type(1) li a {
  font-size: 26px;
  text-transform: uppercase;
}
header ul:nth-of-type(2) {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
header ul:nth-of-type(2) li {
  display: inline-block;
  margin: 0 5px;
}
header ul:nth-of-type(2) li a svg {
  height: 20px;
  width: auto;
}
@media (max-width: 768px) {
  header ul:nth-of-type(2) {
    text-align: center;
  }
}
header.open {
  background-size: 300%;
  transition: 0.5s ease all;
  height: 100vh;
  overflow-y: visible;
  flex-direction: column;
  justify-content: center;
}
header.open ul:nth-of-type(1) {
  margin-bottom: 20px;
  display: block;
  line-height: 1.6;
}
header.open ul:nth-of-type(2) {
  text-align: center;
}
header.open ul:nth-of-type(2) li a {
  font-size: 26px;
}
header.open ul:nth-of-type(2) li a svg {
  height: 32px;
}

#hamburger {
  display: block;
  color: #fff;
  position: fixed;
  z-index: 10;
  background: transparent;
  border: none;
  top: 5px;
  right: 5px;
}
#hamburger:hover {
  cursor: pointer;
  color: #ccc;
}
@media (max-width: 768px) {
  #hamburger {
    display: block;
    font-size: 24px;
  }
}
#hamburger svg {
  fill: #fff;
}
#hamburger div {
  height: 20px;
  width: 30px;
  position: relative;
}
#hamburger div span {
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
}
#hamburger div span:nth-of-type(1) {
  top: 0px;
}
#hamburger div span:nth-of-type(2) {
  top: 9px;
  opacity: 1;
  transition: 0.2s linear all;
}
#hamburger div span:nth-of-type(3) {
  top: 18px;
}
#hamburger.active div span {
  background: #fff;
}
#hamburger.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;
}
#hamburger.active div span:nth-of-type(2) {
  opacity: 0;
  transition: 0.2s linear all;
}
#hamburger.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);
  }
}
#hamburger.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;
}
#hamburger.inactive div span:nth-of-type(2) {
  opacity: 1;
  transition: 0.2s linear all;
}
#hamburger.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;
  background: #356c4d;
  /* Old browsers */
  background: -moz-linear-gradient(top, #356c4d 0%, #3a7a57 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #356c4d 0%, #3a7a57 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #356c4d 0%, #3a7a57 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#356c4d", endColorstr="#3a7a57",GradientType=0 );
  /* IE6-9 */
  padding: 20px 0;
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #666;
  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-family: "Montserrat", helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
  color: #fff;
  line-height: 1.4;
  background-color: #000;
  overflow-x: hidden;
}

h2, h3, h4 {
  letter-spacing: 4px;
  font-family: "DM Serif Display", georgia, serif;
}

@media (min-width: 1200px) {
  .animate-zoom-in {
    transform: scale(0.8);
    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);
    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);
    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);
    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);
  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);
    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);
    transition: 1.5s ease all;
  }
  .animate-slide-left.ready {
    transform: translateX(0px);
    opacity: 1;
    transition: 1.5s ease all;
  }
}

@media (min-width: 1400px) {
  .container-lg {
    max-width: 1399px;
  }
}
@media (min-width: 576px) {
  #welcome-modal .modal-dialog {
    max-width: 624px;
  }
}
@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;
}
#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: #000;
}
#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: -3px;
  background: #bab6ac;
  /* Old browsers */
  background: -moz-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #bab6ac 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#bab6ac", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner {
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  padding: 75px 100px;
  background: #858076;
  /* Old browsers */
  background: -moz-linear-gradient(top, #858076 0%, #eee 50%, #858076 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #858076 0%, #eee 50%, #858076 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #858076 0%, #eee 50%, #858076 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#858076", endColorstr="#858076",GradientType=0 );
  /* IE6-9 */
}
@media (max-width: 1199px) {
  #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner {
    background: -moz-linear-gradient(top, #858076 0%, #eee 15%, #858076 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #858076 0%, #eee 15%, #858076 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #858076 0%, #eee 15%, #858076 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
@media (max-width: 768px) {
  #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner {
    padding: 30px;
  }
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h3 {
  margin-bottom: 20px;
  font-size: 45px;
  display: block;
  letter-spacing: 1px;
  font-weight: 100;
  color: #000;
  font-family: "Montserrat", helvetica, sans-serif;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h4 {
  font-family: "DM Serif Display", georgia, serif;
  letter-spacing: 0;
  font-size: 28px;
}
#welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner p {
  font-size: 16px;
  font-weight: 400;
  margin: auto auto 8px auto;
  text-align: justify;
  color: #333;
}

#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 .modal-content button {
  background: transparent;
  border: 0;
  position: fixed;
  right: 20px;
  color: #fff;
  font-size: 30px;
  width: 50px;
}
#winners-modal.show .modal-dialog .modal-content button svg {
  fill: #fff;
}
#winners-modal.show .modal-dialog .modal-content button:hover {
  cursor: pointer;
}
#winners-modal.show .modal-dialog .modal-content button:hover svg {
  fill: #000;
}
#winners-modal.show .modal-dialog .modal-content 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 {
  min-height: 100vh;
  width: 100%;
  position: relative;
  backface-visibility: hidden;
  overflow: hidden;
  background: url("../img/hero3.jpg") no-repeat center center/cover;
}
.intro::before {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  animation: background-gradient 6s;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
  animation-timing-function: ease-in-out;
  background-image: radial-gradient(circle at 50% 50%, black, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
@keyframes background-gradient {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.intro::after {
  content: "";
  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=0 );
  /* IE6-9 */
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0;
}
.intro .congrats-text {
  color: #bab6ac;
  position: relative;
  z-index: 1;
  font-size: 26px;
  display: block;
  margin: 100px auto auto;
  font-weight: 200;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .intro .congrats-text {
    margin: 75px auto 100px;
    font-size: 1.75rem;
  }
}
.intro .logo {
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
  height: 50vh;
}
.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: 1;
  background: transparent;
  background-repeat: no-repeat;
  border: 0;
  margin-top: 20px;
  display: inline-block;
}
.intro .intro-arrow:hover {
  cursor: pointer;
}
.intro .intro-arrow svg {
  width: 50px;
  height: 33px;
  fill: url(#scrollArrowGrad);
}
.intro .seemore {
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
  padding-bottom: 5px;
  font-size: 1.2rem;
  color: #9d9c91;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}
.intro .hashtag {
  position: relative;
  z-index: 1;
  display: block;
  color: #bab6ac;
  font-size: 1.2rem;
  font-weight: 400;
}

#about {
  background: #000000;
  overflow-x: hidden;
  padding: 0 0 50px;
}
#about .wrapper {
  text-align: center;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  background-clip: padding-box;
  border: solid 3px transparent;
  z-index: 1;
}
#about .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3px;
  background: #bab6ac;
  /* Old browsers */
  background: -moz-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #bab6ac 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#bab6ac", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
}
#about .wrapper .inner {
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  padding: 75px 100px;
  background: #858076;
  /* Old browsers */
  background: -moz-linear-gradient(top, #858076 0%, #eee 50%, #858076 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #858076 0%, #eee 50%, #858076 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #858076 0%, #eee 50%, #858076 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#858076", endColorstr="#858076",GradientType=0 );
  /* IE6-9 */
}
@media (max-width: 1199px) {
  #about .wrapper .inner {
    background: -moz-linear-gradient(top, #858076 0%, #eee 15%, #858076 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #858076 0%, #eee 15%, #858076 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #858076 0%, #eee 15%, #858076 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
#about .wrapper .inner h2 {
  display: block;
  letter-spacing: 1px;
  font-family: "DM Serif Display", georgia, serif;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 30px;
}
#about .wrapper .inner h2 span {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", helvetica, sans-serif;
  margin-top: 7px;
  font-size: 70px;
  display: block;
  font-weight: 300;
  background: #b3e0c5;
  background: -webkit-linear-gradient(to bottom, #356c4d 0%, #4a9d70 35%, #4a9d70 50%, #356c4d 90%);
  background: -moz-linear-gradient(to bottom, #356c4d 0%, #4a9d70 35%, #4a9d70 50%, #356c4d 90%);
  background: linear-gradient(to bottom, #356c4d 0%, #4a9d70 35%, #4a9d70 50%, #356c4d 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
}
#about .wrapper .inner p {
  font-size: 18px;
  margin: auto;
  color: #000;
  font-weight: 400;
}
#about .wrapper .inner button {
  position: relative;
  border: none;
  margin: 20px auto;
  color: #9bf9d3;
  font-weight: 600;
  font-size: 18px;
  width: 220px;
  height: 50px;
  background: transparent;
  text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  transition: 0.25s ease all;
}
#about .wrapper .inner button:before {
  z-index: -1;
  content: "";
  position: absolute;
  background: radial-gradient(circle at 0 0, transparent 8%, #41a369 8%) top left, radial-gradient(circle at 100% 0, transparent 8%, #41a369 8%) top right, radial-gradient(circle at 0 100%, transparent 8%, #41a369 8%) bottom left, radial-gradient(circle at 100% 100%, transparent 8%, #41a369 8%) bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  width: 220px;
  height: 50px;
  left: 0;
  top: 0;
  transition: 0.25s ease all;
}
#about .wrapper .inner button:hover {
  width: 240px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: 0.25s ease all;
}
#about .wrapper .inner button:hover:before {
  width: 240px;
  transition: 0.25s ease all;
}
@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: 20px;
  }
  #about .wrapper .inner h2 span {
    font-size: 55px;
    letter-spacing: 2px;
  }
}
@media (max-width: 575px) {
  #about .wrapper .inner {
    padding: 20px 15px;
  }
  #about .wrapper .inner h2 {
    font-size: 20px;
  }
  #about .wrapper .inner h2 span {
    font-size: 28px;
    letter-spacing: 2px;
  }
  #about .wrapper .inner .btns a {
    margin: 10px 0px;
  }
  #about .wrapper .inner p {
    font-size: 18px;
  }
}

#awards {
  background: url("../img/awards-bg2.jpg") repeat-y center top/cover;
  padding-bottom: 100px;
  position: relative;
}
#awards::after {
  content: "";
  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=0 );
  /* IE6-9 */
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
}
#awards .heading {
  padding: 100px 0 0;
}
#awards .heading svg {
  display: block;
  margin: auto;
  width: 150px;
  fill: #3a7854;
  height: 4px;
}
#awards .heading .spotify-btn {
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: 10px;
  border: 2px solid #ffeab7;
  padding: 10px 40px;
  background: #000;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
#awards .heading .spotify-btn svg {
  fill: #1DB954;
  width: 20px;
  margin-right: 10px;
  display: inline-block;
}
#awards .heading .spotify-btn:hover {
  background: #ffeab7;
  color: #000;
  text-decoration: none;
}
#awards .heading .spotify-btn:hover svg {
  fill: #000;
}
@media (max-width: 767px) {
  #awards .heading .spotify-btn {
    width: 100%;
    margin: auto auto 10px;
  }
}
#awards .heading h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000", endColorstr="#ffffff",GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-size: 70px;
  font-weight: 100;
}
@media (max-width: 991px) {
  #awards .heading h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  #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;
  }
}
#awards .heading p {
  font-size: 20px;
}
#awards .award-type1 {
  padding: 100px 50px 100px 0;
}
@media (max-width: 991px) {
  #awards .award-type1 {
    padding: 100px 20px 100px 0;
  }
}
#awards .award-type1 .wrapper {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  background-clip: padding-box;
  z-index: 1;
}
#awards .award-type1 .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3px;
  background: #49996b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #bab6ac 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#49996b", endColorstr="#5ec088",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-clip-path: polygon(98% 0, 100% 5%, 100% 96%, 98% 100%, 0 100%, 0 0);
  clip-path: polygon(98% 0, 100% 5%, 100% 96%, 98% 100%, 0 100%, 0 0);
}
@media (max-width: 768px) {
  #awards .award-type1 .wrapper:before {
    -webkit-clip-path: polygon(90% 0, 100% 5%, 100% 95%, 90% 100%, 0% 100%, 0 0);
    clip-path: polygon(90% 0, 100% 5%, 100% 95%, 90% 100%, 0% 100%, 0 0);
  }
}
#awards .award-type1 .wrapper .inner {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #356c4d;
  /* Old browsers */
  background: -moz-linear-gradient(-55deg, #0e341f 0%, #356e4f 45%, #78ba96 60%, #4e986f 70%, #2d5d43 95%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-55deg, #0e341f 0%, #356e4f 45%, #78ba96 60%, #4e986f 70%, #2d5d43 95%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(125deg, #0e341f 0%, #356e4f 45%, #78ba96 60%, #4e986f 70%, #2d5d43 95%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#356c4d", endColorstr="#3a7a57",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-clip-path: polygon(98% 0, 100% 5%, 100% 96%, 98% 100%, 0 100%, 0 0);
  clip-path: polygon(98% 0, 100% 5%, 100% 96%, 98% 100%, 0 100%, 0 0);
}
@media (max-width: 768px) {
  #awards .award-type1 .wrapper .inner {
    -webkit-clip-path: polygon(90% 0, 100% 5%, 100% 95%, 90% 100%, 0% 100%, 0 0);
    clip-path: polygon(90% 0, 100% 5%, 100% 95%, 90% 100%, 0% 100%, 0 0);
  }
}
@media (min-width: 992px) and (max-width: 1599px) {
  #awards .award-type1 .wrapper .inner .container {
    margin-right: 0;
  }
}
#awards .award-type1 .wrapper .inner .container h3 {
  margin-bottom: 40px;
  font-size: 40px;
  background: #ffffff;
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  text-transform: capitalize;
  font-family: "DM Serif Display", georgia, serif;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  #awards .award-type1 .wrapper .inner .container h3 {
    background: -moz-linear-gradient(-55deg, #666 0%, #fff 45%, #fff 55%, #666 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-55deg, #666 0%, #fff 45%, #fff 55%, #666 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(125deg, #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;
  }
}
#awards .award-type1 .wrapper .inner .container h4 {
  font-family: "Montserrat", helvetica, sans-serif;
  letter-spacing: 1px;
  font-size: 30px;
  background: #ffffff;
  background: -webkit-linear-gradient(left, #808080 0%, #fff 45%, #fff 55%, #808080 100%);
  background: -moz-linear-gradient(left, #808080 0%, #fff 45%, #fff 55%, #808080 100%);
  background: linear-gradient(to right, #808080 0%, #fff 45%, #fff 55%, #808080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  font-weight: 400;
}
#awards .award-type1 .wrapper .inner .container h4 a {
  color: #7fd1a0;
  display: flex;
  text-decoration: none;
}
#awards .award-type1 .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-type1 .wrapper .inner .container h4 a svg path, #awards .award-type1 .wrapper .inner .container h4 a svg polygon {
  fill: #fff;
}
#awards .award-type1 .wrapper .inner .container h4 a:hover svg {
  transform: scale(1.05);
  transition: 0.2s ease all;
}
#awards .award-type1 .wrapper .inner .container img {
  width: 100%;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(to left, #858076 0%, #eee 50%, #858076 100%);
}
#awards .award-type1 .wrapper .inner .container ul:first-of-type {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#awards .award-type1 .wrapper .inner .container ul:first-of-type li {
  display: block;
}
#awards .award-type1 .wrapper .inner .container ul:last-of-type {
  list-style: none;
  padding: 0;
  margin: 0;
}
#awards .award-type1 .wrapper .inner .container ul:last-of-type li {
  font-style: italic;
  display: block;
}
#awards .award-type2 {
  padding: 100px 0 100px 50px;
}
@media (max-width: 991px) {
  #awards .award-type2 {
    padding: 100px 0 100px 20px;
  }
}
#awards .award-type2 .wrapper {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  background-clip: padding-box;
  z-index: 1;
}
#awards .award-type2 .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3px;
  background: #bab6ac;
  /* Old browsers */
  background: -moz-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #bab6ac 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #bab6ac 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#bab6ac", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 0 96%, 0 5%);
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 0 96%, 0 5%);
}
#awards .award-type2 .wrapper .inner {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #b6ada1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #b6ada1 0%, #b6ada1 50%, #bab6ac 50%, #bab6ac 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #b6ada1 0%, #b6ada1 50%, #bab6ac 50%, #bab6ac 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #b6ada1 0%, #b6ada1 50%, #bab6ac 50%, #bab6ac 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b6ada1", endColorstr="#bab6ac",GradientType=0 );
  /* IE6-9 */
  -webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 0 96%, 0 5%);
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 0 96%, 0 5%);
}
@media (min-width: 992px) and (max-width: 1599px) {
  #awards .award-type2 .wrapper .inner .container {
    margin-left: 0;
  }
}
#awards .award-type2 .wrapper .inner .container h3 {
  font-weight: 800;
  margin-bottom: 40px;
  font-size: 40px;
  background: #5e5b53;
  background: -webkit-linear-gradient(to bottom, #5e5b53 0%, #78756b 100%);
  background: -moz-linear-gradient(to bottom, #5e5b53 0%, #78756b 100%);
  background: linear-gradient(to bottom, #5e5b53 0%, #78756b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  text-transform: capitalize;
  display: block;
  font-family: "DM Serif Display", georgia, serif;
  letter-spacing: 1px;
}
@media (min-width: 769px) {
  #awards .award-type2 .wrapper .inner .container .award-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #awards .award-type2 .wrapper .inner .container .award-copy {
    margin-bottom: 20px;
  }
}
#awards .award-type2 .wrapper .inner .container a {
  color: #ffeab7;
}
#awards .award-type2 .wrapper .inner .container h4 {
  font-family: "Montserrat", helvetica, sans-serif;
  font-size: 28px;
  color: #444444;
  font-weight: 100;
  letter-spacing: 1px;
}
#awards .award-type2 .wrapper .inner .container h4 a {
  color: #444444;
  display: flex;
  text-decoration: none;
}
#awards .award-type2 .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-type2 .wrapper .inner .container h4 a svg path, #awards .award-type2 .wrapper .inner .container h4 a svg polygon {
  fill: #fff;
}
#awards .award-type2 .wrapper .inner .container h4 a:hover svg {
  transform: scale(1.05);
  transition: 0.2s ease all;
}
#awards .award-type2 .wrapper .inner .container ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#awards .award-type2 .wrapper .inner .container ul li {
  display: block;
}
#awards .award-type2 .wrapper .inner .container img {
  width: 100%;
}
#awards .award-type3 {
  padding: 100px 50px 100px 0;
}
@media (max-width: 991px) {
  #awards .award-type3 {
    padding: 100px 20px 100px 0;
  }
}
#awards .award-type3 .wrapper {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  background-clip: padding-box;
  z-index: 1;
}
#awards .award-type3 .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -3px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #c4af6a;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #c4af6a 0%, #ffeec5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #c4af6a 0%, #ffeec5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #c4af6a 0%, #ffeec5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#c4af6a", endColorstr="#ffeec5",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
#awards .award-type3 .wrapper .inner {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  background: #644701;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #644701 0%, black 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #644701 0%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #644701 0%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#644701", endColorstr="#000000",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
@media (min-width: 992px) and (max-width: 1599px) {
  #awards .award-type3 .wrapper .inner .container {
    margin-right: 0;
  }
}
#awards .award-type3 .wrapper .inner .container h3 {
  font-weight: 800;
  margin-bottom: 40px;
  font-size: 40px;
  text-transform: capitalize;
  background: #edc870;
  background: -webkit-linear-gradient(to bottom, #edc870 0%, #89640C 100%);
  background: -moz-linear-gradient(to bottom, #edc870 0%, #89640C 100%);
  background: linear-gradient(to bottom, #edc870 0%, #89640C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-family: "DM Serif Display", georgia, serif;
  letter-spacing: 1px;
}
#awards .award-type3 .wrapper .inner .container h4 {
  font-family: "DM Serif Display", georgia, serif;
  font-size: 30px;
  color: #ffeab7;
  font-weight: 500;
  letter-spacing: 1px;
}
#awards .award-type3 .wrapper .inner .container h4 a {
  color: #ffeab7;
  display: flex;
  text-decoration: none;
}
#awards .award-type3 .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-type3 .wrapper .inner .container h4 a svg path, #awards .award-type3 .wrapper .inner .container h4 a svg polygon {
  fill: #fff;
}
#awards .award-type3 .wrapper .inner .container h4 a:hover svg {
  transform: scale(1.05);
  transition: 0.2s ease all;
}
#awards .award-type3 .wrapper .inner .container img {
  width: 100%;
}
#awards .award-type3 .wrapper .inner .container .writers {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#awards .award-type3 .wrapper .inner .container .writers li {
  display: block;
}
#awards .award-type3 .wrapper .inner .container .publishers {
  list-style: none;
  padding: 0;
  margin: 0;
}
#awards .award-type3 .wrapper .inner .container .publishers li {
  font-style: italic;
  display: block;
}
#awards .award-type3 .wrapper .inner .container ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#awards .award-type3 .wrapper .inner .container ul li {
  display: block;
}
#awards .videos .video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
  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: #eee;
}
#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;
}

#highlights {
  background: #000000;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000000 0%, #356c4d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000000 0%, #356c4d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000000 0%, #356c4d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#356c4d",GradientType=0 );
  /* IE6-9 */
  padding: 100px 0;
}
#highlights .heading {
  text-align: center;
  padding-bottom: 50px;
}
#highlights .heading svg {
  margin-top: 5px;
  width: 150px;
  fill: #3a7854;
  height: 4px;
}
#highlights .heading h2 {
  text-transform: uppercase;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-size: 50px;
  font-weight: 100;
}
@media (max-width: 768px) {
  #highlights .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;
  }
}
#highlights .heading p {
  font-size: 20px;
}
#highlights .divider {
  width: 75px;
  fill: #e3d8e6;
}
#highlights h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Serif Display", georgia, serif;
  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: #eee;
}
#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;
  color: #FE5752;
}
@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-button-next:hover, #highlights .swiper-col .swiper-button-prev:hover, #highlights .swiper-col .swiper-button-next-1:hover, #highlights .swiper-col .swiper-button-prev-1:hover, #highlights .swiper-col .swiper-button-next-2:hover, #highlights .swiper-col .swiper-button-prev-2:hover {
  color: #fff;
}
#highlights .swiper-col .swiper-button-next::after, #highlights .swiper-col .swiper-button-prev::after, #highlights .swiper-col .swiper-button-next-1::after, #highlights .swiper-col .swiper-button-prev-1::after, #highlights .swiper-col .swiper-button-next-2::after, #highlights .swiper-col .swiper-button-prev-2::after {
  color: #b4a1ca;
}
#highlights .swiper-col .swiper-button-next:hover::after, #highlights .swiper-col .swiper-button-prev:hover::after, #highlights .swiper-col .swiper-button-next-1:hover::after, #highlights .swiper-col .swiper-button-prev-1:hover::after, #highlights .swiper-col .swiper-button-next-2:hover::after, #highlights .swiper-col .swiper-button-prev-2:hover::after {
  color: #fff;
}
#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-pagination .swiper-pagination-bullet, #highlights .swiper-col .swiper-pagination-2 .swiper-pagination-bullet {
  background: #fff;
}
#highlights .swiper-col .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, #highlights .swiper-col .swiper-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
#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: #745e9b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #564477 0%, #072f3c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #564477 0%, #072f3c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #564477 0%, #072f3c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#745e9b", endColorstr="#072f3c",GradientType=0 );
  /* IE6-9 */
  overflow: hidden;
  padding: 100px 0;
}
#songwriters .top h2 {
  position: relative;
}
#songwriters .top h2 .line1 {
  font-weight: 100;
  text-align: center;
  margin-bottom: 0;
  font-size: 32px;
  display: block;
  color: #fff;
  letter-spacing: 0;
  font-family: "DM Serif Display", georgia, serif;
}
@media (max-width: 767px) {
  #songwriters .top h2 .line1 {
    font-size: 30px;
  }
}
#songwriters .top h2 .line2 {
  letter-spacing: 4px;
  font-weight: 100;
  text-align: center;
  font-size: 60px;
  text-transform: uppercase;
  background: -webkit-linear-gradient(to bottom, #E3D8E6 0%, #8C75B3 100%);
  background: -moz-linear-gradient(to bottom, #E3D8E6 0%, #8C75B3 100%);
  background: linear-gradient(to bottom, #E3D8E6 0%, #8C75B3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  position: relative;
  /*&::before {
  	content: "Most Performed Songs";
  	display: block;
  	position: absolute;
  	left: 0;
  	right: 0;
  	z-index: -1;
  	text-shadow: 4px 4px 0px rgba(0,0,0,0.5);
  }*/
}
@media (max-width: 767px) {
  #songwriters .top h2 .line2 {
    font-size: 30px;
  }
}
#songwriters .top h2 .line3 {
  letter-spacing: 0;
  font-family: "DM Serif Display", georgia, serif;
  font-weight: 100;
  text-align: center;
  font-size: 32px;
  display: block;
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  #songwriters .top h2 .line3 {
    font-size: 30px;
  }
}
#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 {
  width: 150px;
  fill: #e3d8e6;
}
#songwriters .top #top-songs-copy {
  color: #fff;
  position: relative;
  font-size: 20px;
}
#songwriters .top #first-time-copy {
  font-size: 24px;
}
#songwriters .top #first-time-copy span {
  color: #eabfff;
}
@media (max-width: 575px) {
  #songwriters .top #first-time-copy {
    font-size: 1.1rem;
  }
}
#songwriters .top .share {
  text-align: center;
}
#songwriters .top .share .spotify-btn {
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 30px;
  border: 2px solid #cfbfda;
  padding: 10px 40px;
  background: #0c3e4e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  margin: auto 10px;
}
#songwriters .top .share .spotify-btn svg {
  fill: #1DB954;
  width: 20px;
  margin-right: 10px;
}
#songwriters .top .share .spotify-btn:hover {
  background: #cfbfda;
  color: #fff;
  text-decoration: none;
}
#songwriters .top .share .spotify-btn:hover svg {
  fill: #fff;
}
@media (max-width: 767px) {
  #songwriters .top .share .spotify-btn {
    width: 100%;
    margin: auto auto 10px;
  }
}
#songwriters .top .share .youtube-btn {
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 30px;
  border: 2px solid #cfbfda;
  padding: 10px 40px;
  background: #0c3e4e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  margin: auto 10px;
}
#songwriters .top .share .youtube-btn svg {
  fill: #CF4039;
  width: 20px;
  margin-right: 10px;
}
#songwriters .top .share .youtube-btn:hover {
  background: #cfbfda;
  color: #fff;
  text-decoration: none;
}
#songwriters .top .share .youtube-btn:hover svg {
  fill: #fff;
}
@media (max-width: 767px) {
  #songwriters .top .share .youtube-btn {
    width: 100%;
    margin: auto auto 10px;
  }
}
#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 {
  width: 100%;
  position: relative;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #e4d9e7, #9680b9) 1;
}
@media (max-width: 575px) {
  #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: 100%;
  height: 100%;
  padding: 45px 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.25);
}
@media (max-width: 1400px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
    padding: 15px 10px;
  }
}
@media (max-width: 1199px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
    padding: 30px 10px;
  }
}
@media (max-width: 990px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
    padding: 50px 10px;
  }
}
@media (max-width: 768px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
    padding: 110px 10px;
  }
}
@media (max-width: 575px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner {
    padding: 50px 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 {
  font-family: "Inter", helvetica;
  color: #67c0d5;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 700;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers {
  list-style: none;
  padding: 0;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li:not(:last-child)::after {
  content: "• ";
  margin-left: 3px;
  margin-right: 3px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li {
    font-size: 19px;
  }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .writers li .star {
  color: #eabfff;
  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;
  }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers {
  list-style: none;
  padding: 0;
  line-height: 1;
}
@media (max-width: 1400px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers {
    line-height: 1;
  }
}
@media (max-width: 1199px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers {
    line-height: 1.1;
  }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
  line-height: 1;
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-weight: 100;
  font-style: italic;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  #songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li {
    font-size: 12px;
  }
}
#songwriters #songwriters-winners .song-card-wrap .song-card .inner .publishers li:not(:last-child)::after {
  content: "• ";
  margin-left: 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: #D1B35D;
}
#songwriters .winners-list {
  border: none;
  margin: 0 20px;
  padding: 2px;
  display: inline-block;
  background: #79b7d8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #79b7d8 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #79b7d8 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #79b7d8 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#79b7d8", endColorstr="#ffffff",GradientType=0 );
  /* IE6-9 */
  border-radius: 30px;
  margin: auto;
}
#songwriters .winners-list span {
  padding: 10px 30px;
  display: inline-block;
  background: #5ea2c7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #5ea2c7 0%, #f2eef1 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #5ea2c7 0%, #f2eef1 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #5ea2c7 0%, #f2eef1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#5ea2c7", endColorstr="#f2eef1",GradientType=0 );
  /* IE6-9 */
  color: #000;
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
}
#songwriters .winners-list:hover {
  color: #fff;
  text-decoration: none;
}
#songwriters .winners-list:hover span {
  color: #fff;
  text-decoration: none;
}

#photos {
  padding-bottom: 100px;
  background: #000000;
  /* Old browsers */
  background: -moz-linear-gradient(top, #356c4d 0%, #000000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #356c4d 0%, #000000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #356c4d 0%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#356c4d", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
#photos .heading {
  text-align: center;
  padding-bottom: 50px;
}
#photos .heading h2 {
  text-transform: uppercase;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#ffffff",GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-size: 50px;
  font-weight: 100;
}
@media (max-width: 768px) {
  #photos .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;
  }
}
#photos .heading p {
  font-family: "DM Serif Display", georgia, serif;
  text-transform: uppercase;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-size: 50px;
  font-weight: 100;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #photos .heading p {
    background: -moz-linear-gradient(left, #000 0%, #fff 45%, #fff 55%, #000 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000 0%, #fff 45%, #fff 55%, #000 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000 0%, #fff 45%, #fff 55%, #000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px #00000000;
    display: block;
  }
}
#photos .heading svg {
  margin-top: 5px;
  width: 150px;
  fill: #dcdad3;
  height: 4px;
}
#photos .gallery-slider-wrap {
  position: relative;
  overflow: hidden;
}
#photos .gallery-slider-wrap .mySwiper {
  width: 200%;
  margin-left: -50%;
}
@media (max-width: 767px) {
  #photos .gallery-slider-wrap .mySwiper {
    width: 100%;
    margin-left: auto;
  }
}
#photos .gallery-slider-wrap .mySwiper .slider-image {
  height: 550px;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 990px) {
  #photos .gallery-slider-wrap .mySwiper .slider-image {
    height: 250px;
  }
}
#photos .gallery-slider-wrap .mySwiper .slider-image img {
  height: 100%;
}
#photos .gallery-slider-wrap .mySwiper .caption {
  height: auto;
  width: 85%;
  text-align: center;
  padding: 10px 20px;
  color: #fff;
  margin: auto;
  font-size: 20px;
}
@media (min-width: 767px) {
  #photos .gallery-slider-wrap .mySwiper .caption {
    width: 35%;
  }
}
#photos .gallery-slider-wrap .swiper-button-next, #photos .gallery-slider-wrap .swiper-button-prev {
  top: calc(50% - 30px);
  color: #FE5752;
}
#photos .gallery-slider-wrap .swiper-button-next:hover, #photos .gallery-slider-wrap .swiper-button-prev:hover {
  color: #dcdad3;
}
#photos .gallery-slider-wrap .swiper-button-next::after, #photos .gallery-slider-wrap .swiper-button-prev::after {
  color: #dcdad3;
}
#photos .gallery-slider-wrap .swiper-button-next:hover::after, #photos .gallery-slider-wrap .swiper-button-prev:hover::after {
  color: #fff;
}
#photos .gallery-slider-wrap .swiper-button-next {
  right: 15%;
}
#photos .gallery-slider-wrap .swiper-button-prev {
  left: 15%;
}

#more_awards {
  background: -moz-linear-gradient(top, #000000 0%, #356c4d 3%, rgba(0, 0, 0, 0) 10%), url("../img/awards-bg.jpg") repeat-y center top/cover;
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000000 0%, #356c4d 3%, rgba(0, 0, 0, 0) 10%), url("../img/awards-bg.jpg") repeat-y center top/cover;
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000000 0%, #356c4d 3%, rgba(0, 0, 0, 0) 10%), url("../img/awards-bg.jpg") repeat-y center top/cover;
}
#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: #9bf9d3;
  font-weight: 600;
  line-height: 50px;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  z-index: 1;
  width: 260px;
  height: 50px;
  background: transparent;
  text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  transition: 0.25s ease all;
}
#more_awards .section-heading .spotify-btn:before {
  z-index: -1;
  content: "";
  position: absolute;
  background: radial-gradient(circle at 0 0, transparent 8%, #41a369 8%) top left, radial-gradient(circle at 100% 0, transparent 8%, #41a369 8%) top right, radial-gradient(circle at 0 100%, transparent 8%, #41a369 8%) bottom left, radial-gradient(circle at 100% 100%, transparent 8%, #41a369 8%) bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  width: 260px;
  height: 50px;
  left: 0;
  top: 0;
  transition: 0.25s ease all;
}
#more_awards .section-heading .spotify-btn svg {
  fill: #1DB954;
  width: 20px;
  margin-right: 10px;
  display: inline-block;
}
#more_awards .section-heading .spotify-btn:hover {
  width: 280px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: 0.25s ease all;
}
#more_awards .section-heading .spotify-btn:hover:before {
  width: 280px;
  transition: 0.25s ease all;
}
#more_awards .section-heading .spotify-btn:hover svg {
  fill: #000;
}
@media (max-width: 767px) {
  #more_awards .section-heading .spotify-btn {
    margin: auto auto 10px;
  }
}
#more_awards .section-heading .spotify-btn svg {
  height: 20px;
}
#more_awards .section-heading h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-size: 70px;
  font-weight: 100;
}
@media (max-width: 991px) {
  #more_awards .section-heading h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  #more_awards .section-heading h2 {
    background: -moz-linear-gradient(left, #000 0%, #fff 45%, #fff 55%, #000 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000 0%, #fff 45%, #fff 55%, #000 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000 0%, #fff 45%, #fff 55%, #000 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 .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: "DM Serif Display", georgia, serif;
  text-transform: uppercase;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000 0%, #fff 45%, #fff 55%, #000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px #00000000;
  display: block;
  font-size: 40px;
  font-weight: 100;
  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: #4a9d70;
}
#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: -2px;
  background: #ffeab7;
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
}
#more_awards .more-awards .more-award .inner {
  min-height: 130px;
  position: relative;
  text-align: center;
  margin: auto;
  box-sizing: border-box;
  background-clip: padding-box;
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  clip-path: polygon(3% 0, 100% 0, 100% 5%, 100% 95%, 97% 100%, 0% 100%, 0 95%, 0 5%);
  padding: 75px 100px;
  background: #fff;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #858076 0%, #fff 50%, #858076 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #858076 0%, #fff 50%, #858076 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #858076 0%, #fff 50%, #858076 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b6ada1", endColorstr="#bab6ac",GradientType=0 );
  /* IE6-9 */
  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;
}
#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: #356c4d;
  display: block;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
#more_awards .more-awards .more-award .inner ul li .star {
  color: #4a9d70;
  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;
  z-index: 1;
  border: none;
  margin: 20px auto;
  color: #9bf9d3;
  font-weight: 600;
  font-size: 18px;
  width: 340px;
  height: 50px;
  background: transparent;
  text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  transition: 0.25s ease all;
}
#more_awards .winners-list:before {
  z-index: -1;
  content: "";
  position: absolute;
  background: radial-gradient(circle at 0 0, transparent 8%, #41a369 8%) top left, radial-gradient(circle at 100% 0, transparent 8%, #41a369 8%) top right, radial-gradient(circle at 0 100%, transparent 8%, #41a369 8%) bottom left, radial-gradient(circle at 100% 100%, transparent 8%, #41a369 8%) bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  width: 340px;
  height: 50px;
  left: 0;
  top: 0;
  transition: 0.25s ease all;
}
#more_awards .winners-list:hover {
  width: 360px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: 0.25s ease all;
}
#more_awards .winners-list:hover:before {
  width: 360px;
  transition: 0.25s ease all;
}

/*# sourceMappingURL=styles.css.map */
