/*** UTILITIES ***/
@import url("https://use.typekit.net/pvm4wjx.css");
/*** COLORS ***/
/*** BREAKPOINTS ***/
@media (min-width: 1600px) {
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}
/*** PARTIALS ***/
header {
  background: #e5bead;
  background: -moz-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
  background: -webkit-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
  background: linear-gradient(to left, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5bead', endColorstr='#fefcfd', GradientType=0);
  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: #111111;
  transition: 0.25s ease all;
}
header a svg {
  fill: #111111;
  transition: 0.25s ease all;
}
header a:hover {
  color: #454545;
  transition: 0.25s ease all;
}
header a:hover svg {
  fill: #454545;
  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: 60px;
  display: block;
  line-height: 2;
}
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;
}
@media (max-width: 420px) {
  header ul:nth-of-type(1) li a {
    font-size: 18px;
    line-height: 2.8;
  }
}
#hamburger {
  display: block;
  color: #111111;
  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: #111111;
      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: #111111; }
  #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: #e5bead;
  /* Old browsers */
  background: -moz-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to left, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5bead', endColorstr='#fefcfd',GradientType=0 );
  /* IE6-9 */
  padding: 20px 0;
  color: #111;
  text-align: center;
  font-weight: 300;
  font-size: 12px; }
  footer a {
    color: #111;
    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: "proxima-nova", 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: "Larken", 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: -6px;
        border-radius: 20px;
        background: #b8b8b8;
        /* Old browsers */
        background: -moz-linear-gradient(right, #fff 0%, #b8b8b8 50%, #fff 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(right, #fff 0%, #b8b8b8 50%, #fff 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to left, #fff 0%, #b8b8b8 50%, #fff 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8b8b8', endColorstr='#fff',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */ }
      #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner {
        padding: 25px 20px;
        border-radius: 18px;
        background: #e6bfae;
        /* Old browsers */
        background: -moz-linear-gradient(right, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(right, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to left, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6bfae', endColorstr='#fefefe',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */ }
        #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h2 {
          display: block;
          letter-spacing: 1px;
          font-family: "proxima-nova", helvetica, sans-serif;
          text-transform: uppercase;
          color: #ffffff;
          font-size: 36px;
          margin-bottom: 30px; }
          #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h2 span {
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: "Larken", georgia, serif;
            line-height: 1;
            font-size: 70px;
            display: inline-block;
            background: #b3e0c5;
            background: -webkit-linear-gradient(-45deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
            background: -moz-linear-gradient(-45deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
            background: linear-gradient(135deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0px 0px #00000000;
            filter: drop-shadow(1px 1px 0px white); }
        #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h3 {
          margin-bottom: 20px;
          font-size: 35px;
          display: block;
          letter-spacing: 1px;
          font-weight: 100;
          color: #000;
          font-family: "proxima-nova", helvetica, sans-serif; }
        #welcome-modal .modal-dialog .modal-content .modal-body .wrapper .inner h4 {
          font-family: "Larken", georgia, serif;
          letter-spacing: 0;
          font-size: 28px;
          color: #666; }
        #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/bg-square.jpg") no-repeat center center/cover; }
  .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 {
    position: relative;
    z-index: 1;
    font-size: 26px;
    display: inline-block;
    letter-spacing: 2px;
    margin: 100px auto auto;
    font-weight: 200;
    text-transform: uppercase;
    background: #b0b0b0;
    background: -webkit-linear-gradient(right, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
    background: -moz-linear-gradient(right, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
    background: linear-gradient(to left, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px #00000000;
    filter: drop-shadow(5px 4px 4px rgba(0, 0, 0, 0.75)); }
    @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: #d6b09d;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000000; }
  .intro .hashtag {
    position: relative;
    z-index: 1;
    display: block;
    color: #e6bfae;
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0px 0px 3px #000000;
    filter: drop-shadow(0px 0px 3px black); }

#about {
  background: #000000;
  overflow-x: hidden;
  padding: 50px 0; }
  #about .wrapper {
    text-align: center;
    margin: auto;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 3px transparent;
    z-index: 1;
    transform: scale(1);
    transition: 0.2s ease all; }
    #about .wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      margin: -6px;
      border-radius: 20px;
      background: #b8b8b8;
      /* Old browsers */
      background: -moz-linear-gradient(right, #fff 0%, #b8b8b8 50%, #fff 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(right, #fff 0%, #b8b8b8 50%, #fff 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to left, #fff 0%, #b8b8b8 50%, #fff 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8b8b8', endColorstr='#fff',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */ }
    #about .wrapper .inner {
      padding: 75px 20px;
      border-radius: 18px;
      background: #e6bfae;
      /* Old browsers */
      background: -moz-linear-gradient(right, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(right, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to left, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6bfae', endColorstr='#fefefe',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */ }
      #about .wrapper .inner h2 {
        display: block;
        letter-spacing: 1px;
        font-family: "proxima-nova", helvetica, sans-serif;
        text-transform: uppercase;
        color: #111111;
        font-size: 36px;
        margin-bottom: 30px; }
        #about .wrapper .inner h2 span {
          letter-spacing: 1px;
          text-transform: uppercase;
          font-family: "Larken", georgia, serif;
          line-height: 1;
          font-size: 70px;
          display: inline-block;
          background: #b3e0c5;
          background: -webkit-linear-gradient(-45deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
          background: -moz-linear-gradient(-45deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
          background: linear-gradient(135deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          text-shadow: 0px 0px #00000000;
          filter: drop-shadow(1px 1px 0px black); }
      #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: #fff;
        padding: 4px;
        font-weight: 600;
        font-size: 18px;
        width: 220px;
        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%); }
        #about .wrapper .inner button span {
          width: 100%;
          border-radius: 8px;
          height: 100%;
          display: block;
          align-content: center;
          background: #000;
          background: -webkit-linear-gradient(-45deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
          background: -moz-linear-gradient(-45deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
          background: linear-gradient(135deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
          color: #fff;
          transition: 0.2s ease all;
          text-shadow: 0px 0px 0px #000000;
          border: 0; }
        #about .wrapper .inner button:hover {
          padding: 0;
          transition: 0.2s ease all; }
          #about .wrapper .inner button:hover span {
            color: #fff;
            transition: 0.2s ease all;
            text-shadow: 0px 0px 3px #000000;
            border: 1px solid #454545; }
      @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; } }
    #about .wrapper:hover {
      transform: scale(1.05);
      transition: 0.2s ease all; }

#awards {
  background: url("../img/bg-tall.jpg") no-repeat center top/cover;
  padding-bottom: 100px;
  position: relative; }
  #awards::before {
    content: "";
    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=0 );
    /* IE6-9 */
    position: absolute;
    height: 200px;
    width: 100%;
    top: 0; }
  #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: 334px;
      fill: #fff;
      height: 34px;
      stroke: #fff; }
    #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(-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);
      text-shadow: 0px 0px #00000000;
      display: inline-block;
      font-size: 70px;
      font-weight: 100; }
      @media (max-width: 991px) {
        #awards .heading h2 {
          font-size: 38px; } }
    #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: -6px;
        border-top-right-radius: 20px;
        border-bottom-right-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 */
        color: #000; }
      #awards .award-type1 .wrapper .inner {
        padding-top: 50px;
        padding-bottom: 50px;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
        background: #b0b0b0;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b0b0b0',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */
        color: #000; }
        @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: 50px;
          background: #000;
          background: -webkit-linear-gradient(-45deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
          background: -moz-linear-gradient(-45deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
          background: linear-gradient(135deg, #000 0%, #aaa 20%, #222 35%, #bbb 60%, #333 75%, #666 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          text-shadow: 0px 0px #00000000;
          display: block;
          text-transform: capitalize;
          font-family: "Larken", georgia, serif;
          letter-spacing: 1px;
          filter: drop-shadow(1px 1px 0px white); }
          @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: "proxima-nova", helvetica, sans-serif;
          letter-spacing: 1px;
          font-size: 30px;
          color: #000;
          font-weight: 600; }
          #awards .award-type1 .wrapper .inner .container h4 a {
            color: #000;
            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(-45deg, #e6bfae 0%, #fefaf9 50%, #e6bfae 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: #b8b8b8;
        /* Old browsers */
        background: -moz-linear-gradient(right, #fff 0%, #b8b8b8 50%, #fff 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(right, #fff 0%, #b8b8b8 50%, #fff 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to left, #fff 0%, #b8b8b8 50%, #fff 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8b8b8', endColorstr='#fff',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */ }
      #awards .award-type2 .wrapper .inner {
        padding-top: 50px;
        padding-bottom: 50px;
        background: #e6bfae;
        /* Old browsers */
        background: -moz-linear-gradient(right, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(right, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to left, #e6bfae 0%, #fefefe 50%, #e6bfae 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6bfae', endColorstr='#fefefe',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */ }
        @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: "Larken", 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: "proxima-nova", 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: #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 */ }
      #awards .award-type3 .wrapper .inner {
        padding-top: 50px;
        padding-bottom: 50px;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
        background: #b0b0b0;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b0b0b0',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */
        color: #000; }
        @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: "Larken", georgia, serif;
          letter-spacing: 1px; }
        #awards .award-type3 .wrapper .inner .container h4 {
          font-family: "Larken", 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: url("../img/bg-square3.jpg") no-repeat center top/cover;
  padding-bottom: 200px;
  position: relative;
  padding: 100px 0; }
  #highlights::before {
    content: "";
    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=0 );
    /* IE6-9 */
    position: absolute;
    height: 200px;
    width: 100%;
    top: 0; }
  #highlights::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; }
  #highlights .heading {
    text-align: center;
    padding-bottom: 50px; }
    #highlights .heading svg {
      display: block;
      margin: auto;
      width: 334px;
      fill: #fff;
      height: 34px;
      stroke: #fff; }
    #highlights .heading h2 {
      background: #e5bead;
      /* Old browsers */
      background: -moz-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to left, #e5bead 0%, #fefcfd 50%, #e5bead 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);
      display: inline-block;
      font-size: 50px;
      font-weight: 100; }
    #highlights .heading p {
      font-size: 20px; }
  #highlights .divider {
    width: 75px;
    fill: #e3d8e6; }
  #highlights h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: "Larken", 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; } }

#photos .heading {
  text-align: center;
  padding-bottom: 50px; }
  #photos .heading h2 {
    text-transform: uppercase;
    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;
    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: "Larken", georgia, serif;
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #fff 0%, #333 20%, #eee 40%, #121212 60%, #ddd 80%, #222 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #fff 0%, #333 20%, #eee 40%, #121212 60%, #ddd 80%, #222 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #fff 0%, #aaa 20%, #fff 40%, #aaa 60%, #fff 80%, #aaa 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;
    text-shadow: 0px 0px #00000000;
    filter: drop-shadow(1px 1px 0px black);
    display: inline-block;
    font-size: 50px;
    font-weight: 100;
    margin-bottom: 0; }
  #photos .heading svg {
    display: block;
    margin: auto;
    width: 334px;
    fill: #fff;
    height: 34px;
    stroke: #fff; }
#photos .gallery-slider-wrap {
  position: relative;
  overflow: hidden; }
  #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; }
  #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: url("../img/bg-tall.jpg") no-repeat center top/cover;
  padding-bottom: 100px;
  position: relative; }
  #more_awards::before {
    content: "";
    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=0 );
    /* IE6-9 */
    position: absolute;
    height: 200px;
    width: 100%;
    top: 0; }
  #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: 4px;
      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: #000;
        background: -webkit-linear-gradient(-45deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
        background: -moz-linear-gradient(-45deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
        background: linear-gradient(135deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 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);
      text-shadow: 0px 0px #00000000;
      display: inline-block;
      font-size: 70px;
      font-weight: 100; }
      @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: "Larken", georgia, serif;
      text-transform: uppercase;
      background: #e5bead;
      /* Old browsers */
      background: -moz-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(right, #e5bead 0%, #fefcfd 50%, #e5bead 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to left, #e5bead 0%, #fefcfd 50%, #e5bead 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);
      display: inline-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: #fab999; }
  #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, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 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; }
        #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: #ebcbbe;
              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: 4px;
    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: #000;
      background: -webkit-linear-gradient(-45deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
      background: -moz-linear-gradient(-45deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 100%);
      background: linear-gradient(135deg, #000 0%, #aaa 25%, #666 50%, #ccc 75%, #333 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; }
