/*——————————————————————————————————————————————————
	ALWAYS FILL HEIGHT
  ——————————————————————————————————————————————————*/

  body {
    min-height: 100vh;
    display: flex;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: column;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
  }
  #main {
    flex: 1;
  }


  /*——————————————————————————————————————————————————
    CUSTOM CURSOR
    ——————————————————————————————————————————————————*/
  
  .no-touch .flickity-prev-next-button {
    border-radius: 0px;
    right: 0px;
    height: 100%;
    width: 50%;
  }
  .no-touch .flickity-prev-next-button.previous {
    left:0;
  }
  .no-touch .flickity-prev-next-button.next {
    right:0;
  }
  .no-touch .flickity-prev-next-button.previous:hover {
    cursor: url("data:image/svg+xml,%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' width='70' height='9' viewBox='0 0 70 9'%3E%3Cpath d='M5.55,9c-.11-1.31-.4-2.87-1.18-4H70v-1H4.37c.77-1.11,1.14-2.78,1.18-4C4.11,1.91,2.25,3.57,0,4.5c2.25,.89,4.03,2.66,5.55,4.5Z' fill='%23ffffff'/%3E%3C/svg%3E") 35 4, none;
  }
  .no-touch .flickity-prev-next-button.next:hover,
  .no-touch .hover-overlay:hover {
    cursor: url("data:image/svg+xml,%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' width='70' height='9' viewBox='0 0 70 9'%3E%3Cpath d='M64.45,0c.11,1.31,.4,2.87,1.18,4H0v1H65.63c-.77,1.11-1.14,2.78-1.18,4,1.43-1.91,3.29-3.57,5.55-4.5-2.25-.89-4.03-2.66-5.55-4.5Z' fill='%23ffffff'/%3E%3C/svg%3E") 35 4, none;
  }
  @media all and (min-width:768px) {
    .no-touch .flickity-prev-next-button.previous:hover {
      cursor: url("data:image/svg+xml,%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' width='128' height='15' viewBox='0 0 128 15'%3E%3Cpath d='M11.56,14.32c-.16-1.99-.61-4.35-1.78-6.07h118.22v-1.5H9.79c1.15-1.68,1.71-4.22,1.77-6.07C9.41,3.57,6.62,6.09,3.24,7.5c3.38,1.35,6.05,4.02,8.32,6.82Z' fill='%23ffffff'/%3E%3C/svg%3E") 64 7, none;
    }
    .no-touch .flickity-prev-next-button.next:hover,
    .no-touch .hover-overlay:hover {
      cursor: url("data:image/svg+xml,%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' width='128' height='15' viewBox='0 0 128 15'%3E%3Cpath d='M116.44,.68c.16,1.99,.61,4.35,1.78,6.07H0v1.5H118.21c-1.15,1.68-1.71,4.22-1.77,6.07,2.15-2.89,4.94-5.41,8.32-6.82-3.38-1.35-6.05-4.02-8.32-6.82Z' fill='%23ffffff'/%3E%3C/svg%3E") 64 7, none;
    }
  }
  .no-touch .flickity-button-icon {
    display:none;
  }

  .touch .flickity-prev-next-button {
    border-radius: 0px;
    right: 0px;
    height: 100%;
    width: 50%;
    padding: 20px;
    text-align:left;
  }
  .touch .flickity-prev-next-button.next {
    right:0;
    text-align: right;
    padding: 20px;
  }
  .touch .flickity-prev-next-button .flickity-button-icon {
    left:0;
    width:70px;
  }
  .touch .flickity-prev-next-button.previous .flickity-button-icon {
    background:url('../img/arrow_left_white.svg') no-repeat center center;
    background-size:70px;
  }
  .touch .flickity-prev-next-button.next .flickity-button-icon {
    background:url('../img/arrow_right_white.svg') no-repeat center center;
    background-size:70px;
  }
  @media all and (min-width:1100px) {
    .touch .flickity-prev-next-button .flickity-button-icon {
      width:140px;
    }
    .touch .flickity-prev-next-button.previous .flickity-button-icon {
      background:url('../img/arrow_left.svg') no-repeat center center;
      background-size:140px;
    }
    .touch .flickity-prev-next-button.next .flickity-button-icon {
      background:url('../img/arrow_right.svg') no-repeat center center;
      background-size:140px;
    }
  }
  .touch .flickity-button-icon > * {
    display:none;
  }

  /*——————————————————————————————————————————————————
    CSS RESET
    ——————————————————————————————————————————————————*/

    * {box-sizing:border-box;}
    html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,blockquote,q{quotes:none}blockquote{&:before,&:after{content:'';content:none}}q{&:before,&:after{content:'';content:none}}table{border-collapse:collapse;border-spacing:0}img{max-width:100%;}
    
    html {
      -webkit-text-size-adjust: 100%;
    }
    .a-fade {
        transition: .4s;
        opacity: 1;
    }
    html.is-animating .a-fade{
        opacity: 0;
    }
    
  
  /*——————————————————————————————————————————————————
    FONT FACE
    ——————————————————————————————————————————————————*/
  
    @font-face {
      font-family: 'TobiasLight';
      src: url('../fonts/TobiasLight.woff');
      src: url('../fonts/TobiasLight.woff2') format('woff2'),
           url('../fonts/TobiasLight.woff') format('woff');
    }
    @font-face {
      font-family: 'TobiasLight';
      src: url('../fonts/TobiasLightItalic.woff');
      src: url('../fonts/TobiasLightItalic.woff2') format('woff2'),
           url('../fonts/TobiasLightItalic.woff') format('woff');
      font-style:italic;
    }
    @font-face {
      font-family: 'DenimRegular';
      src: url('../fonts/DenimRegular.woff');
      src: url('../fonts/DenimRegular.woff2') format('woff2'),
           url('../fonts/DenimRegular.woff') format('woff');
    }
    @font-face {
      font-family: 'DenimRegular';
      src: url('../fonts/DenimTRIALSemiBold.woff');
      src: url('../fonts/DenimTRIALSemiBold.woff2') format('woff2'),
           url('../fonts/DenimTRIALSemiBold.woff') format('woff');
      font-weight:bold;
    }
    @font-face {
      font-family: 'Sneak';
      src: url('../fonts/Sneak-Regular.woff');
      src: url('../fonts/Sneak-Regular.woff2') format('woff2'),
           url('../fonts/Sneak-Regular.woff') format('woff');
      font-weight:normal;
    }
    @font-face {
      font-family: 'Sneak';
      src: url('../fonts/Sneak-Regular-Italic.woff');
      src: url('../fonts/Sneak-Regular-Italic.woff2') format('woff2'),
           url('../fonts/Sneak-Regular-Italic.woff') format('woff');
      font-weight:normal;
      font-style:italic;
    }
    @font-face {
      font-family: 'Sneak';
      src: url('../fonts/Sneak-Bold.woff');
      src: url('../fonts/Sneak-Bold.woff2') format('woff2'),
           url('../fonts/Sneak-Bold.woff') format('woff');
      font-weight:bold;
    }
  
  
  /*——————————————————————————————————————————————————
    HEADER
    ——————————————————————————————————————————————————*/
  
  .logo.banner {
    margin: 0 auto;
    width:100%;
    max-width:90%;
    transition: opacity 0.3s ease;
    opacity:1 !important;
  }
  .logo img {
    margin-bottom:0;
  }
  .logo {
    min-width: 60px;
    max-width: 146px;
    position:relative;
  }
  .er-logo {
    width:55%;
    min-width: 100px;
    max-width: 265px;
    position:relative;
    transition: all 0.3s ease;
  }
  .er-logo svg {
    width:100%;
  }
  /* header .logo:after {
    content:'';
    position:absolute;
    background-image:url('../img/icon-dates-2021.svg');
    background-repeat:no-repeat;
    background-position:left center;
    background-size:contain;
    left: 130%;
    top: 50%;
    transform: translateY(-50%);
    height: 61.56%;
    width: 400px;
    pointer-events: none;
  } */
  
  .festival-dates {
    line-height:1.3;
  }
  .home .festival-dates {
    display:none;
  }
  .menu .logo.banner {
    opacity:0;
  }
  @media all and (max-width:768px) {
    .er-logo {
      max-width: 150px;
    }
    .logo {
      min-width: 80px;
      max-width: 100px;
    }
  }
  @media all and (max-width:500px) {
    .er-logo {
      max-width:100px;
      min-width:60px;
    }
    header .logo:after {
      left: 120%;
      height: 53.56%;
    }
  }
  
  
  
  .arrow-down, .arrow-left {
    display:block;
  }
  .arrow {
    background:url('../img/arrow_right_white.svg') no-repeat center center;
    height:9px;
    width:70px;
    margin:0px 0px;
    display:inline-block;
    transition:transform 0.4s ease;
  }
  .inline-arrow.arrow {
    width:inherit;
    height:100%;
    background-size:contain; 
  }
  .arrow-left:hover .arrow {
    transform:translateX(-10px),rotate(-90deg);
  }
  .arrow-down {
    position:relative;
    text-decoration:none;
  }
  .arrow-down .arrow {
    transform:rotate(-130deg);
    margin:20px;
  }
  .arrow-down:hover .arrow {
    transform:rotate(-0deg);
  }
  
  .home.page-template #main {
    min-height:0px !important;
  }

  .arrow-down .arrow {
    transform: rotate(0deg);
    margin: 20px;
    width: 30px;
    background: url('../img/arrow_right_white.svg') no-repeat center right;
    background-size: 70px;
  }
  .arrow-down:hover .arrow {
    transform: rotate(90deg);
  }
  
  /*——————————————————————————————————————————————————
    IMAGES
    ——————————————————————————————————————————————————*/
  
  img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .images-not-fullwidth img {
    width:auto;
  }
  .hover-overlay .overlay .track-arrow {
    transition: opacity 1s ease;
    content:'–';
    color:white;
    font-size:40px;
    position:absolute;
    top:40%;
    left:40%;
    opacity:0;
  }
  .hover-overlay:hover .overlay .track-arrow {
    transition: opacity 0.3s ease;
  }
  .hover-overlay:hover .overlay .track-arrow {
    opacity:1;
  }
  .cover {
    background-size:cover;
    background-position:center;
  }
  .contain {
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
  }
  
  /*——————————————————————————————————————————————————
    COLOURS
    ——————————————————————————————————————————————————*/
  
  html {
    background: #1a1a1a;
    position:relative;
  }
  #main {
    background: #1a1a1a;
    position:relative;
  }
  .black {
    background:#000000;
  }
  .black-text {
    color:#000000;
  }
  .dark {
    background:#1a1a1a;
  }
  .dark-text {
    color:#1a1a1a;
  }
  .red {
    background: #FF4947;
  }
  .red-text {
    color: #FF4947;
  }
  .red-border {
    border-color: #FF4947;
  }
  .white {
    background:#fff;
  }
  .white-text, body {
    color:#fff;
  }
  .orange {
    background: #ee9555;
  }
  .orange-text {
    color: #ee9555;
  }
  .orange-border {
    border-color: #ee9555;
  }
  .purple {
    background: #d29ed6;
  }
  .purple-text {
    color: #d29ed6;
  }
  .purple-border {
    border-color: #d29ed6;
  }
  
  /*——————————————————————————————————————————————————
    TYPOGRAPHY
    ——————————————————————————————————————————————————*/
  
  
  
  body {
    width:100%;
  }
  body, h6 {
    font-family: 'DenimRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size:14px;
    line-height:1.3;
  }
  .buch,
  .caslonitalic,
  .featured,
  .sub-nav ul.children li,
  h1,
  h1 b,
  h1 strong,
  h2,
  h2 b,
  h2 strong,
  h3,
  h3 b,
  h3 strong,
  h3 b,
  h4,
  h4 b,
  h4 strong,
  h5,
  h5 b,
  h5 strong,
  #nav #searchform input {
    font-weight:400;
    font-family: 'TobiasLight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing:-0.0425em;
    line-height:1.065;
  }
  
  body.page-template-page-expanded-realities,
  body.page-template-page-expanded-realities p,
  body.page-template-page-expanded-realities h2,
  body.page-template-page-expanded-realities h3,
  body.page-template-page-expanded-realities h4,
  .expanded-realities {
    font-family: 'Sneak', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: normal;
  }
  
  p a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
  }
  h1 p, h2 p, h3 p, h4 p, h5 p, h6 p {
    font-size: inherit;
    line-height:inherit;
    margin-bottom:0px;
  }
  .subtitle {
    font-weight:400;
  }
  ul {
    padding-left: 20px;
    margin-bottom:20px;
  }
  p {
    margin-bottom:15px;
    line-height:1.3;
  }
  li {
    margin-bottom:5px;
  }
  
  h1, h2, .h1 {
    font-size: 25px;
  }
  h3, .h3, .sub-nav ul.children li {
    font-size:22px;
    margin-bottom: 2px;
  }
  h4, .h4 {
    font-size: 15px;
  }
  h5, .h5, .sub-nav > ul > li {
    font-size: 12px;
  }
  h6 {
    font-size:14px;
  }
  #sort, .btn, .alm-load-more-btn {
    font-size: 12px;
  }
  h1.large {
    font-size:40px;
    line-height:1;
  }
  h3.large {
    font-size: 25px;
  }
  
  strong, b {
    font-weight: bold;
  }
  .center {
    text-align:center;
  }
  .right {
    text-align:right;
  }
  .p-large p {
    line-height:1.5;
  }
  
  @media all and (min-width:768px) { 
    h1, h2, .h1 {
      font-size: 50px;
    }
    h2 {
      font-size: 50px;
      margin-bottom: 15px;
    }
    h3, .h3, .sub-nav ul.children li {
      font-size: 22px;
    }
    h4, .h4 {
      font-size: 16px;
    }
    .sub-nav li .sub-nav, #sort, .btn,.alm-load-more-btn {
      font-size: 14px;
    }
    h5, .h5, .sub-nav > ul > li {
      font-size: 12px;
    }
  
    h1.large {
      font-size: 50px;
    }
    h2.large {
      font-size: 30px;
    }
    h3.large {
      font-size: 40px;
    }
    .p-large p {
      font-size:20px;
    }
    .p-xlarge p {
      font-size:26px;
    }
  
    body, .body-content {
      font-size:14px;
    }
    p {
      margin-bottom:15px;
    }
  }
  
  @media all and (min-width:1100px) { 
    h1, h2, .h1 {
      font-size: 70px;
    }
    h3, .h3, .sub-nav ul.children li {
      font-size: 28px;
    }
    h4, .h4 {
      font-size: 22px;
    }
    h5, .h5, .sub-nav > ul > li {
      font-size: 16px;
    }
    .sub-nav, #sort, .btn:not(.small-btn), .alm-load-more-btn {
      font-size: 22px;
    }
  
    h1.large {
      font-size: 100px;
    }
    h2.large {
      font-size: 34px;
    }
    h3.large {
      font-size: 70px;
    }
  
    body, .body-content {
      font-size:20px;
    }
    p.small {
      font-size:15px;
      line-height:20px;
    }
    p {
      margin-bottom:20px;
    }
  
  }
  
  
  .body-content > * {
    margin-bottom:20px;
    line-height:1.34;
  }
  .fb_reset, #fb-root {
    margin-bottom:0px !important;
  }
  p a {
    text-decoration:underline;
    font-weight:bold;
  }
  p.no-underline a {
    text-decoration:none;
  }
  .content li a {
    text-decoration:underline;
  }
  .line-height {
    line-height:0px;
  }
  hr {
    border: none;
    border-top: 1px solid #ffffff;
  }
  @media all and (min-width:768px) {
    hr {
      margin: 30px 0px !important;
    }
  }
  .nomarginbottom {
    margin-bottom:0px !important;
  }
  
  .justify, .justify p {
    text-align: justify !important;
  }
  
  /*——————————————————————————————————————————————————
    HEADER
    ——————————————————————————————————————————————————*/
  
    header {
      /* backdrop-filter: blur(30px);
      background: rgba(46,45,44,0.15);
      transition:all 0.2s ease; */
      z-index:15;
    }
    /* .menu header {
      backdrop-filter: blur(0px);
      background: rgba(46,45,44,0);
      z-index:15;
    } */
    
    #main {
      padding-top:105px;
    }
    
    .page-template-page-home header .logo:after {
      display:none;
    }
    
    /*——————————————————————————————————————————————————
      HAMBURGER
      ——————————————————————————————————————————————————*/
    
    body.overflow {
      overflow:hidden;
    }
    .menubutton {
      position: relative;
      cursor:pointer;
    }	
    .menubutton span {
      width: 28px;
      margin: 4px 0px;
      display: block;
      height: 1px;
      display: flex;
      position:absolute;
      top:50%;
      left: 50%;
      margin-left: -14px;
      margin-top:0px;
      transition: transform 0.25s ease 0s, margin 0.25s ease 0.25s;
    }
    .menubutton span:first-child {
      margin-top:-6px;
    }
    .menubutton span:nth-child(2) {
      opacity:0;
      transition: opacity 0s ease 0.25s;
    }
    .menubutton span:last-child {
      margin-top:6px;
    }
    .menubutton .inner {
      position:absolute;
      width:100%;
      left:0;
      top:0;
      height:100%;
      transform-origin:50% 50%;
      transition: all 0.5s ease;
    }
    .menubutton.active .inner {
      transform: rotate(0deg);
      transition: all 0.5s ease 0.5s;
    }
    .menubutton.active span:first-child {
      margin-top:0px;
      transform: rotate(-45deg);
      transition: transform 0.25s ease 0.25s, margin 0.25s ease 0s;
    }
    .menubutton.active span:nth-child(2) {
      opacity:0;	
      transition: opacity 0s ease 0.25s;
    }
    .menubutton.active span:last-child {
      transform: rotate(45deg);
      margin-top:0px;
      transition: transform 0.25s ease 0.25s, margin 0.25s ease 0s;
    }
    .menubutton {
      width: 50px;
      height: 50px;
      -webkit-appearance: none;
      border: none;
      z-index: 20;
    }
    .menubutton span, 
    .menubutton.active#searchclose span {
      background:#FF4947;
    }
    
  
    a.hover-red, footer li a {
      transition:color 0.3s ease;
    }
    a.hover-red:hover, footer li a:hover {
      color:#FF4947;
    }
    
    /*——————————————————————————————————————————————————
      MOBILE BACKGROUND
      ——————————————————————————————————————————————————*/
    
    #menubackdrop {
      opacity:0;
      background-color:rgba(0,0,0,0.3);
      width: 100%;
      position:absolute;
      height:100%;
      cursor:pointer;
      width:100%;
      transition:opacity 0.5s ease;
    }
    .menu #menubackdrop {
      opacity:0;
    }
  
    #mobilemenu {
      background-color:#f8c4ba;
      opacity:0;
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      transition:opacity 0.3s ease;
    }
    .menu #mobilemenu {
      background-color:#f8c4ba;
      opacity:1;
    }
  
    /* #nav > ul > li,
    #nav #searchform input {
      padding-left:25px;
      padding-right:25px;
    }
    @media all and (min-width:700px) {
      #nav > ul > li,
      #nav #searchform input {
        padding-left:60px;
        padding-right:60px;
      }
    } */
    
    
    /*——————————————————————————————————————————————————
      MOBILE MENU
      ——————————————————————————————————————————————————*/
    
    .menu-container {
      pointer-events:none;
      z-index:9;
    }
    .menu .menu-container {
      pointer-events:all;
    }
    
    /*——————————————————————————————————————————————————
      NAV FADE IN
      ——————————————————————————————————————————————————*/
    
    #nav {
      opacity:0;
      transition:opacity 0.3s ease;
    }
    .menu	#nav {
      opacity:1;
      transition:opacity 0.6s ease;
    }
    #nav ul, #nav ul li {
      list-style:none;
      margin-bottom:0px;
    }
    
    /*——————————————————————————————————————————————————
      ACCORIDION MENU
      ——————————————————————————————————————————————————*/
    
    .text-left {
      text-align:left;
    }
    .main_menu,
    .main_menu > .menu-item > a {
      padding:0px;
      line-height:1.2;
    }
    .main_menu .menu-item {
      list-style:none;
      width:100%;
      overflow:hidden;
    }
    .main_menu .menu-item a {
      display:block;
      text-decoration: none;
    }
    .main_menu > .menu-item > a {
      display: block;
      text-decoration: none;
      position:relative;
    }
  
    .main_menu a:hover,
    .main_menu a.active {
      color:#FF4947;
    }
  
    .main_menu .menu-item-has-children > a::before {
      content: "";
      height: 9px;
      left: 0px;
      position: absolute;
      top: 150%;
      margin-top: 0px;
      width:0px;
      background:url('../img/arrow_right_red.svg') no-repeat right center;
      background-size:70px;
    }
  
    .main_menu .menu-item-has-children .sub-menu a:after {
      display:none;
    }
    .main_menu .sub-menu {
      padding:0;
      margin:0;
      float:left;
      display:none;
      width: 100%;
    }
    .main_menu .sub-menu > li {
      float:left;
    }
    .main_menu .sub-menu .sub-menu {
      display:none !important;
    }

    .main_menu .menu-item-has-children > a::before {
      background-size:50px;
    }
    .main_menu .sub-menu {
      padding-left:80px;
    }
    .main_menu .menu-item-has-children > a.active::before {
      width:50px;
    }
    @media all and (min-width:768px) {
      .main_menu .menu-item-has-children > a::before {
        background-size:70px;
      }
      .main_menu .sub-menu {
        padding-left:100px;
      }
      .main_menu .menu-item-has-children > a.active::before {
        width:70px;
      }
    }
    @media all and (min-width:1100px) {
      .main_menu .menu-item-has-children > a::before {
        background-size:119px;
        height: 15px;
        margin-top: -4px;
      }
      .main_menu .sub-menu {
        padding-left:150px;
      }
      .main_menu .menu-item-has-children > a.active::before {
        width:119px;
      }
    }
    
    /*——————————————————————————————————————————————————
      SEARCH
      ——————————————————————————————————————————————————*/


      body input:-webkit-autofill, body textarea:-webkit-autofill, body select:-webkit-autofill {
        background-color: rgba(255,255,255,0) !important;
        color: #FF4947 !important;
      }
    
      .alm-reveal > * {
        opacity:0;
      }
      #nav #searchform .clear {
        display:none;
      }
      #nav #searchform input {
        display: block;
        text-decoration: none;
        line-height: 1;
        position:relative;
        border-bottom: 0px solid #000;
        background:transparent;
        transition: background-color 3000s ease 3000s;
      }
      
      #nav #searchform input::-webkit-input-placeholder {
        color: #fff !important;
      }
      #nav #searchform input:-moz-placeholder { /* Firefox 18- */
        color: #fff !important;  
      }
      #nav #searchform input::-moz-placeholder {  /* Firefox 19+ */
        color: #fff !important;  
      }
      #nav #searchform input:-ms-input-placeholder {  
        color: #fff !important;  
      }

      #nav #searchform input:-webkit-autofill,
      #nav #searchform input:-webkit-autofill:hover,
      #nav #searchform input:-webkit-autofill:focus {
        -webkit-text-fill-color: #ffffff;
        transition: background-color 5000s ease-in-out 0s;
        -moz-text-size-adjust: 100%;
        color:#fff;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        font-size:70px;
        font-family: 'TobiasLight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        letter-spacing: -0.0425em;
      }
      
      /* #nav #searchform input#searchsubmit {
        background:url('../img/icon-search_thin.svg') no-repeat center center;
        background-size:30px;
        position: absolute;
        right: 15px;
        top: 0px;
        border-bottom: 0px;
      } */
    
      
    /* @media all and (max-width:660px) {
    .main_menu .sub-menu > li {
      width: 100%;
      padding: 5px 0px;
    }
    .main_menu > .menu-item > a,
    #nav #searchform input {
      font-size: 28px;
    }
    } */
    
    /* ——————————————————————————————————————————————————
      CHILD SUB-MENU
      ——————————————————————————————————————————————————*/
  
  .sub-nav > ul > li {
    padding:15px 0px;
  }
  @media all and (min-width:768px) {
    .sub-nav > ul > li {
      padding:25px 0px;
    }
  }
  @media all and (min-width:1100px) {
    .sub-nav > ul > li {
      padding:35px 0px;
    }
  }
  
  .sub-nav > ul > li {
    text-transform:uppercase;
    letter-spacing:0.05em;
    margin:0px;
  }
  .sub-nav > ul {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position:unset;
    width: 100%;
    /* -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
     */
  }
  .sub-nav > ul > li {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .sub-nav ul.children {
    position: absolute;
    z-index:1;
    width: 100%;
    background: #1a1a1a;
    left: 0;
    top: calc(100% + 1px);
    overflow: hidden;
    box-shadow: 0px 1px 0px 0px white;
    margin-bottom:0px;
    transition: transform 0.4s ease 0.2s;
    transform:scaleY(0);
    transform-origin:top center;
  }
  .sub-nav ul.children li {
    opacity:0;
    transition: opacity 0.2s ease, color 0.3s ease;
  }
  .sub-nav > ul > li.page_item_has_children > a {
    pointer-events: none;
  }
  
  
  .no-touch .sub-nav > ul > li.page_item_has_children:hover ul.children {
    transform:scaleY(1);
    transition: transform 0.4s ease;
  }
  .no-touch .sub-nav > ul > li.page_item_has_children:hover ul.children li {
    opacity:1;
    transition: all 0.2s ease 0.4s, color 0.3s ease;
  }
  
  .touch .sub-nav > ul > li.active ul.children {
    transform:scaleY(1);
    transition: transform 0.4s ease;
  }
  .touch .sub-nav > ul > li.active ul.children li {
    opacity:1;
    transition: all 0.2s ease 0.4s, color 0.3s ease;
  }
  
  .sub-nav ul.children li {
    width:100%;
    color:#ffffff;
    padding: 5px 0px;
    text-transform: none;
    margin: 0px;
  }
  .sub-nav ul.children li:first-child {
    padding-top:30px;
  }
  .sub-nav ul.children li:last-child {
    padding-bottom:30px;
  }
  .sub-nav ul.children li:hover {
    color:#FF4947;
    transition: all 0.2s ease 0.4s, color 0.3s ease;
  }
  .sub-nav > ul > li.page_item_has_children {
    cursor:pointer;
  }
  
  .sub-nav ul {
    list-style: none;
    text-align:center;
    padding-left:0px;
  }
  .sub-nav > ul {
    margin-bottom:0px;
  }
  .sub-nav li {
    margin: 6px 10px 4px;
    display:inline-block;
  }
  .sub-nav > ul > li > a {
    position:relative;
    transition:color 0.3s ease; 
  }
  .sub-nav > ul > li.current_page_item > a,
  .sub-nav li.current_page_item,
  .sub-nav .current_page_parent,
  .sub-nav ul.children li.current_page_item,
  .sub-nav > ul > li:hover > a {
    color:#FF4947;
  }
  .sub-nav > ul > li.current_page_item > a:after,
  .sub-nav > ul > li.current_page_parent > a:after {
    content:'';
    position:absolute;
    width:100%;
    height:1px;
    background:#FF4947;
    bottom:-2px;
    left:0;
  }
  
    
  
  /*——————————————————————————————————————————————————
    WRAPPERS
    ——————————————————————————————————————————————————*/
    
  .wrapper {
      max-width: 1800px;
      margin: 0 auto;
  }
  .wrapper {
    padding: 0px 10px;
  }
  @media all and (min-width:661px) {
    .wrapper {
      padding: 0px 30px;
    }
  }
  @media all and (min-width:1024px) {
    .wrapper {
      padding: 0px 50px;
    }
  }
  .max-750 {
    max-width:750px !important;
    margin-left:auto;
    margin-right:auto;
    display:block;
  }
  
  /*——————————————————————————————————————————————————
    BUTTONS
    ——————————————————————————————————————————————————*/
  
  button:focus, .btn:focus {
    outline: none;
  }
  .btn {
    text-transform:uppercase;
    border:1px solid #FF4947;
    color:#ffffff;
    padding: 4px 8px 4px 8px;
    cursor: pointer;
    letter-spacing:0em;
    background:transparent;
    display: inline-block;
    text-align:center;
  }
  @media all and (min-width:1100px) {
    .btn:not(.small-btn) {
      padding: 4px 11px 4px 11px;
    }
  }
  .btn:hover, #sort.active .btn, #sort:hover .btn {
    border:1px solid #FF4947;
    background:#FF4947;
    color:#fff;
  }
  .btn.disabled, .btn.disabled:hover {
    border:1px solid #999;
    color:#999;
    background:transparent;
  }
  .alm-load-more-btn {
    color:#ffffff;
    margin:0 auto;
    text-align:center;
    border:0px;
    background:transparent;
    -webkit-appearance:none;
    width: 100%;
    margin: 0px;
    padding: 0px;
    padding-top: 0px;
  }
  .alm-load-more-btn.done {
    display:none;	
  }
  
  /*——————————————————————————————————————————————————
    REVEAL
    ——————————————————————————————————————————————————*/
  
  @keyframes fdsseq { 
    100% { opacity: 1; }
  }
  .alm-reveal > * {
    animation: fdsseq 1s forwards;
  }
  .alm-reveal > *:nth-child(1) {
    animation-delay: .0s;
  }
  .alm-reveal > *:nth-child(2) {
    animation-delay: .2s;
  }
  .alm-reveal > *:nth-child(3) {
    animation-delay: .4s;
  }
  .alm-reveal > *:nth-child(4) {
    animation-delay: .8s;
  }
  .alm-reveal > *:nth-child(5) {
    animation-delay: 1s;
  }
  .alm-reveal > *:nth-child(6) {
    animation-delay: 1.2s;
  }
  .alm-reveal > *:nth-child(7) {
    animation-delay: 1.4s;
  }
  .alm-reveal > *:nth-child(8) {
    animation-delay: 1.6s;
  }
  .alm-reveal > *:nth-child(9) {
    animation-delay: 1.8s;
  }
  .alm-reveal > *:nth-child(10) {
    animation-delay: 2.0s;
  }
  .alm-reveal > *:nth-child(11) {
    animation-delay: 2.2s;
  }
  .alm-reveal > *:nth-child(12) {
    animation-delay: 2.4s;
  }

  /*——————————————————————————————————————————————————
  TWO COLUMNS
  ——————————————————————————————————————————————————*/

  @media all and (min-width:1100px) {
    .two-columns {
      column-count:2;
      column-gap:30px;
      column-span: all;
    }
  }
  
  
  /*——————————————————————————————————————————————————
    SORT DROPDOWN
    ——————————————————————————————————————————————————*/
  
  #sort ul li {
    width:100%;
    text-align: center;
    display:block;
    position: relative;
    font-size:15px;
    line-height:30px;
  }
  #sort {
    position:relative;
  }
  /* .alm-reveal {
    margin: 0px -10px;
  } */
  #sort:after {
    content:'';
    position:absolute;
    top:100%;
    width:100%;
    height:20px;
    right:0;
  }
  #sort ul li {
    width:100% !important;
    margin-bottom: 0px;
  }
  #sort .sub-menu {
    z-index: 100;
    padding: 10px 0px;
    background: #fff;
    color:#FF4947;
  }
  #sort .sub-menu:after {
    content:"";
    position:absolute;
    top:-6px;
    right:25px;
    height:0px;
    width:0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
  }
  #sort ul {
    width: 255px;
    right: 0;
    left: unset !important;
    top: 40px;
  }
@media all and (min-width:660px) {
	#sort ul {
    	width: 360px;
	}
}
  #sort ul li a {
    display: block;
    font-size: 15px;
    text-align: right;
    padding: 2px 20px 2px 20px;
  }
  #sort ul li a span {
    position:relative;
  }
  #sort ul li.active a {
    pointer-events: none;
  }
  #sort ul li.active a span:after {
    content: "";
    position: absolute;
    right: 0px;
    width: 100%;
    background: #FF4947;
    height: 1px;
    top: 11px;
  }
  #sort ul li {
    line-height:30px;
    display:inline-block;
    text-align: right;
    width:auto;
  }
  #sort.active ul, .no-touch #sort:hover ul {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  #sort ul {
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    left: 0;
    display: none;
    margin-bottom:0px;
  }
  #sort ul li:not(.active):hover {
    background:rgba(0,0,0,0.03);
  }
  
  
  /*——————————————————————————————————————————————————
    GRID
    ——————————————————————————————————————————————————*/
  
  .grid {
    opacity:0;
    transition: opacity 1s ease;
  }
  .grid.show {
    opacity:1;
    transition: opacity 1s ease;
  }
  .posttype {
    background: #FF4947;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px 4px 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
  }
  .search-terms {
    text-transform:capitalize;
  }
  .alm-filters-edit {
    display:none !important;
  }
    
  /*——————————————————————————————————————————————————
    HOME VIDEO
    ——————————————————————————————————————————————————*/
  
  #scrolldown {
    background: transparent url(../img/down.svg) no-repeat center center;
    background-size:50px;
    width: 100%;
    display: block;
    height: 70px;
  }
  .scrollbtn {
    position: absolute;
    bottom: 0px;
    width: 100%;
  }
  .videobg {
    position: fixed;
    width: 100%; /* Set video container element width here */
    height: 100%; /* Set video container element height here */
    overflow: hidden;
    z-index: -5;
    background: #111; /* bg color, if video is not high enough */
  }
  .videobg-width {
    position: absolute;
    width: 100%; /* Change width value to cover more area*/
    height: 100%;
    left: -9999px;
    right: -9999px;
    margin: auto;
  }
  .videobg-aspect {
    position: absolute;
    width: 100%;
    height: 0;
    top: -9999px;
    bottom: -9999px;
    margin: auto;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
  }
  .videobg-make-height {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
  }
  .videobg-hide-controls {
    box-sizing: content-box;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 55px 97.7777px; /* 16:9 ratio */
    top: -55px; 
    left: -97.7777px; /* 16:9 ratio */
  }
  .videobg iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0 none;
  }
  
  /*——————————————————————————————————————————————————
    FULL HEIGHT VIDEO
    ——————————————————————————————————————————————————*/
  
  .full-height {
    height:100vh;
    position: relative;
  }
  @media all and (max-width:900px) {
    #homevid {
      height:80vh;
    }
    .videobg iframe {
      position: absolute;
      top: -20px;
    }
  }
  .fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow:hidden;
  }
  .vimeo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .vimeo-wrapper iframe {
    width: 110vw;
    height: 58.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .videoContainer {
    position:absolute;
    height:100%;
    width:100%;
    overflow: hidden;
    min-height:450px;
  }
  .videoContainer video  {
    min-width: 100%;
    min-height: 100%;
  }
  
  /*——————————————————————————————————————————————————
    ACCORDION
    ——————————————————————————————————————————————————*/
  
  .accordion_head, .product_accordion_head {
    cursor:pointer;
  }
  /* 
  .accordion_container, .product_accordion_container {
    transition:background-color 0.4s ease;
  }
  .accordion_container.active {
    background-color:rgba(0,0,0,0.1);
    transition:background-color 2s ease;
  }
  .white-text .accordion_container.active {
    background-color:rgba(255,255,255,0.1);
    transition:background-color 2s ease;
  } */
  .accordion_container .accordion_body {
    opacity:0;
    transition:opacity 0.5s ease 0.6s;
  }
  .accordion_container.active .accordion_body {
    opacity:1;
    transition:opacity 0.3s ease 0s;
  }
  .plusminus {
    transition:transform 0.2s ease;
    transform-origin: center center;
    display: inline-block;
  }
  .plusminus.active {
    transform:rotate(45deg);
  }
  .regular-slider .flickity-viewport, .regular-slider .flickity-viewport, .regular-slider .carousel-cell {
    position:absolute;
    width:100%;
    height:100% !important;
  }
  
  
  /* —————————————————————————————————————
    FLICKITY FADE
     ————————————————————————————————————— */
  
  .fadeslider {
    z-index:1;
  }
  
  .fadeslider .flickity-viewport {
    overflow:hidden;
  }
  
  .vertical-sub-slider.fadeslider .flickity-viewport {
    overflow:visible;
  }
  
  .fadeslider .flickity-slider {
    transform: none !important;
  }
  
  .fadeslider .carousel-cell {
    left: 0 !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1; 
  }
  
  .fadeslider .carousel-cell.is-selected {
    opacity: 1;
    z-index: 0
  }
  
  /*——————————————————————————————————————————————————
    PHOTOS
    ——————————————————————————————————————————————————*/
  
  p.cite {
    align-self: flex-end;
      margin-bottom: 0px;
  }
  .fill {
    position: absolute !important;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }
  .ratio .image {
        position: relative;
  }
  .ratio h3 {
     z-index: 3;
  }
  .content::-webkit-scrollbar {
      width: 0px;
      background: transparent;
  }
  .ratio .fill {
    overflow:scroll;
  }
  .hover .overlay, .hover .content, .ratio.hover > .image:after {
    opacity:0;
  }
  .content.fill {
    height: calc(100% + 16px) !important;
    width:calc(100% - 0px);
  }
  .ratio.hover > .image:after {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:25px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  }
  
  @media all and (min-width:768px) {
  .no-touch .hover {
    cursor:pointer;
  }
  .no-touch .hover .overlay, .no-touch .hover .content, .ratio.hover > .image:after {
    opacity:0;
  }
  .no-touch .hover .overlay, .no-touch .hover .content, .ratio.hover > .image:after {
    opacity:0;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
  }
  .no-touch .hover .overlay, .ratio.hover > .image:after {
    transition-delay: 0.1s;
  }
  .no-touch .hover .content {
    transition-delay: 0s;
  }
  .no-touch .hover:hover *, .ratio.hover:hover > .image:after {
    opacity:1;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
  }
  .no-touch .hover:hover .overlay, .ratio.hover > .image:after {
    transition-delay: 0s;
  }
  .no-touch .hover:hover .content {
    transition-delay: 0.3s;
  }
  }
  
  
  /*——————————————————————————————————————————————————
    MAP
    ——————————————————————————————————————————————————*/
    
    .map-outline {
      margin-top: -1px;
      margin-left: -1px;
      width: calc(100% + 2px);
      z-index: 10;
    }
    .map-cell {
      position:absolute;
      z-index: 1;
    }
    #map-cell-1 {
      height: 75.5%;
      width: 33.3%;
      bottom: 0;
    }
    #map-cell-2 {
      height: 57%;
      width: 16.8%;
      left: 33.3%;
    }
    #map-cell-3 {
      height: 33.7%;
      width: 25%;
      left: 50%;
    }
    #map-cell-4 {
      height: 66%;
      width: 25%;
      left: 50%;
      top: 33.7%;
    }
    #map-cell-5 {
      height: 37%;
      width: 25%;
      right: 0;
    }
    #map-cell-5 .background-hover {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 40% 75%, 40% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 75%, 40% 75%, 40% 100%, 0 100%);
      height: 132%;
    }
    #map-cell-6 .background-hover {
      -webkit-clip-path: polygon(0% 24%, 40% 24%, 40% 0%, 100% 0%, 100% 100%, 0 100%);
      clip-path: polygon(0% 24%, 40% 24%, 40% 0%, 100% 0%, 100% 100%, 0 100%);
    }
    #map-cell-6 {
      height: 51.5%;
      width: 25%;
      right: 0;
      top: 36.6%;
      z-index: 1;
    }
    #map-cell-6 .cell-number {
      top:24.4%;
    }
    
    #map-cell-7 {
      height: 43%;
      width: 16.8%;
      left: 33.3%;
      top: 57%;
    }
    .cell-number {
      padding:1vw 1.25vw;
      position:absolute;
      top:0;
      left:0;
    }
    .cell-number {
      font-size:1.9vw;
    }
    .cell-info h4 {
      font-size:calc(1.5vw - 0px);
    }
    .cell-info .padding {
      padding:1vw;
    }
    
    @media all and (min-width:1470px) {
      .cell-number {
        padding:15px 20px;
        font-size:28px;
      }
      .cell-info h4 {
        font-size:26px;
      }
      .cell-info .padding {
        padding:20px;
      }
    }
    
    .map-cell .background-hover {
      opacity:0;
      transition:opacity 0.3s ease;
    }
    .map-cell:hover .background-hover {
      opacity:1;
    }
    .map-cell:hover h4 {
      text-decoration:underline;
    }
    
    /*——————————————————————————————————————————————————
      VIDEO PLAYER
      ——————————————————————————————————————————————————*/
    
    .square .plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
      padding-bottom: 79.8817%;
      position: relative;
      transform: translateY(0%);
    }
    .plyr__control--overlaid, .plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
      opacity:1;
      color:#333333;
    }
    :root {
      --plyr-control-radius: 0px;
    }
    .plyr__controls__item.plyr__volume .plyr__control:hover {
      background:transparent;
      color:#fff;
    }
    .plyr--video, .plyr__video-wrapper {
      background: transparent;
    }
    
    /*——————————————————————————————————————————————————
      AUDIO PLAYER
      ——————————————————————————————————————————————————*/
    
    .waveform {
      background: rgba(0,0,0,0.2);
      border-radius: 5px;
      cursor:pointer;
    }
    .player-button {
      position: absolute;
      bottom: 20px;
      left: 20px;
      width: 50px;
      height: 50px;
      border: none;
      -webkit-appearance: none;
      appearance: none;
      border-radius: 30px;
      z-index: 10;
    }
    .player-button:after {
      content:'';
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 11px 0px 11px 18px;
      border-color: transparent transparent transparent #333333;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-36%, -50%);
    }
    .player-button.active:after {
      width: 4px;
      height: 20px;
      border-right: 6px solid #333333;
      border-bottom: 0px solid #333333;
      border-left: 6px solid #333333;
      border-top: 0px;
      transform: translate(-50%, -50%);
    }
    /*——————————————————————————————————————————————————
      VOYAGES IMAGE HOVER
      ——————————————————————————————————————————————————*/
    
    .voyages p {
      margin-bottom:30px;
    }
    .z-index {
      z-index:1;
    }
    #hover-image {
      position: absolute;
      transform: translate(-50%, -50%);
      pointer-events:none;
      opacity:0;
      width:0px;
      transition:opacity 0.15s ease;
      background-size:contain;
      background-position:center center;
      background-repeat:no-repeat;
    }
    
    @media all and (min-width:1024px) {
      #hover-image {
        width:400px;
      }
      #hover-image.active {
        opacity:1;
      }
    }
    .contain {
      background-size:contain;
    }
    .uppercase {
      text-transform:uppercase;
    }
    
    /*——————————————————————————————————————————————————
      FADE IN
      ——————————————————————————————————————————————————*/
    
    .grid {
      opacity:0;
      transition: opacity 1s ease;
    }
    .page-template-page-expanded-realities .grid.show {
      opacity:1;
      transition: opacity 2s ease 0.3s;
    }
    
    /*——————————————————————————————————————————————————
      EXPANDED REALITIES
      ——————————————————————————————————————————————————*/
    
    .er-header .inner {
      background: #2e2d2c;
      /* background: linear-gradient(0deg, rgba(0,0,0,0.052258403361344574) 0%, rgba(46,45,44,1) 20%); */
    }
    .grad {
      background:url('../img/grad.png') repeat-x top left;
      background-size:30px;
      pointer-events:none;
    }
    .inline {
      display:inline;
    }
    .accordion_container sup {
      transform: translate(10px, -70%);
      display: inline-block;
    }
    
    @media all and (max-width:1024px) {
    .er-backlink p {
      font-size:12px;
    }
    }
    
    /*——————————————————————————————————————————————————
      INLINE AUDIO PLAYER
      ——————————————————————————————————————————————————*/
    
    .inline-audio-text {
      font-weight:400;
      padding:2px;
      border-style:solid;
      border-radius:2px;
      cursor:pointer;
    }
    .inline-audio-text:hover, .inline-audio-text.active {
      opacity:1;
    }
    .inline-audio-text:before {
      content: '';
      width: 0px;
      height: 0px;
      margin: 0px 6px 0px 5px;
      display: inline-block;
      border-style: solid;
      border-width: 5px 0px 5px 9px;
      border-color: transparent transparent transparent #ffffff;
      transform: translateY(-2px);
    }
    .inline-audio-text.active:before {
      content:'';
      width: 3px;
      height: 10px;
      border-style: solid;
      border-width: 0px 3px 0px 3px;
      border-color:#ffffff;
    }
    
    /*——————————————————————————————————————————————————
      SPRAY
      ——————————————————————————————————————————————————*/
    
    .spray {
      z-index:0;
      pointer-events:none;
      width: 120vw;
      position: fixed;
      max-width:1000px;
    }
    @media all and (min-width:1024px) {
      .spray {
        width: 80vw;
      }
    }
    .spray-red {
      background:url('../img/spray-red.jpg') no-repeat center center;
      background-size:cover;
    }
    .spray-purple {
      background:url('../img/spray-purple.jpg') no-repeat center center;
      background-size:cover;
    }
    .spray-orange {
      background:url('../img/spray-orange.jpg') no-repeat center center;
      background-size:cover;
    }
    .spray.top-left {
      top: -5vw;
      left: 5vw;
    }
    .spray.top-right {
      top: 5vw;
      right: -10vw;
    }
    .spray.bottom-left {
      top: 13vw;
      left: 0vw;
    }
    .spray.bottom-right {
      top: 20vw;
      right: -15vw;
    }
    
    /*——————————————————————————————————————————————————
      SIDE LOGO
      ——————————————————————————————————————————————————*/
    
    .side-logo {
      position: fixed;
      width: 100vh;
      top: 160px;
      height: calc(100vh - 220px);
      width: 60px;
      right: 60px;
      min-height:300px;
    }
    @media all and (min-width:1800px) {
      .side-logo {
          right: calc(50vw - 845px);
      }
    }
    .sl {
      font-size:40px;
      transform:translateY(-100%) rotate(90deg);
    }
    
    /*——————————————————————————————————————————————————
      GUIDE
      ——————————————————————————————————————————————————*/
      
     #guide {
      position:fixed;
      height:100%;
      width:100%;
      top:0;
      left:0;
      z-index: 100;
      pointer-events:none;
      opacity:0;
    }
    #guide.active {
      opacity:1;
    }
    #guide .wrapper, #guide .row {
      height:100%;
      width:100%;
    }
    #guide .col-xs {
      height:100%;
      position:relative;
      box-shadow: 1px 0px 0px rgba(255, 255, 255,0.2);
    }
    #guide .col-xs:before, #guide .col-xs:after {
      height:100%;
      content:'';
      width:0px;
      position: absolute;
      border-right:1px solid rgba(255, 255, 255,0.2);
    }
    #guide .col-xs:before {
      left:10px;
    } 
    #guide .col-xs:after {
      left:-10px;
    }   
    #guide .col-xs:first-child:before {
      border-left:1px solid rgba(255, 255, 255,0.2);
      left:0px;
      width:9px;
    }
    #guide .col-xs span {
      width:0px;
      height:100%;
      position:absolute;
      top:0;
      right:-11px;
      width:21px;
      border-left:1px solid rgba(255, 255, 255,0.1);
      border-right:1px solid rgba(255, 255, 255,0.2);
    } 
    
    
  
  /*——————————————————————————————————————————————————
    MAILCHIMP
    —————————————————————————————————————————————————— */
  
   #mce-EMAIL {
    padding: 8px 70px 8px 0px;
  }
   #mce-EMAIL, input {
    width: 100%;
    border: none;
    color: #fff !important;
    background: transparent;
    border-bottom: 1px solid #fff;
    -webkit-appearance:none;
    border-radius:0px !important;
  }
  
  span#arrow {
    height: 9px;
    width: 70px;
    right:0px;
    position: absolute;
    top: 50%;
    background:url('../img/arrow_right_white.svg') no-repeat top left;
    background-size:contain;
    transform:translateY(-50%);
  }
  
  input {
    border-bottom: 1px solid #FF4947;
    color:#FF4947 !important;
  }
  input:focus {
    outline:none !important;
  }
  #mc-embedded-subscribe, input[type="submit"] {
    position:absolute;
    height:100%;
    width:40px;
    right:0;
    top:0;
    display:block;
    background:transparent;
    background-size:20px;
    text-indent:-9999px;
    border:none;
    color:transparent;
  }
  input[type="submit"]:hover {
    background:transparent;
  }
  #mc-embedded-subscribe-form {
    position:relative;
    width: 100%;
    position: relative;
  }
  @media all and (min-width:768px) {
  #mc-embedded-subscribe-form {
     width: 90%;
  }
  }
  #mc_embed_signup input::-webkit-input-placeholder {
  color: white !important;
  }
  
  #mc_embed_signup input:-moz-placeholder { /* Firefox 18- */
  color: white !important;  
  }
  
  #mc_embed_signup input::-moz-placeholder {  /* Firefox 19+ */
  color: white !important;  
  }
  
  #mc_embed_signup input:-ms-input-placeholder {  
  color: white !important;  
  }
  
  /*——————————————————————————————————————————————————
    ICONS
    —————————————————————————————————————————————————— */
  
  .back {
    width: 119px;
    height: 50px;
    display: block;
    background: url('../img/arrow_left_red.svg') no-repeat center center;
    background-size:contain;
    appearance:none;
    border:none;
    -webkit-appearance:none;
  }
  @media all and (max-width:768px) {
    .back {
      width: 70px;
      height: 30px;
      display: block;
    }
  }
  
  .icons > * {
    padding-left:35px !important;
  }
  
  @media all and (max-width:660px) {
    .icons > *:last-child {
      padding-left:30px !important;
    }
  }
  .icons .icon {
    position:relative;
  }
  .icons .icon:after {
    position:absolute;
    width:20px;
    height:30px;
    background-color:transparent;
    top:2px;
    left:-30px;
    display:block;
    content:"";
    background-size:100%;
    background-repeat: no-repeat;
    background-position:top left;
  }
  .icon.director:after {
    background-image: url('../img/svg_director-white.svg');
  }
  .icon.country:after {
    background-image: url('../img/svg_country-white.svg');
  }
  .icon.duration:after {
    background-image: url('../img/svg_duration-white.svg');
  }
  .icon.awards:after {
    background-image: url('../img/svg_awards-white.svg');
  }
  .icon.date:after {
    background-image: url('../img/svg_date-white.svg');
  }
  .icon.location:after {
    background-image: url('../img/svg_location-white.svg');
  }
  .icon.transport:after {
    background-image: url('../img/svg_transport-white.svg');
  }
  .icon.contact:after {
    background-image: url('../img/svg_contact-white.svg');
  }
  .icon.email:after {
    background-image: url('../img/svg_email-white.svg');
  }
  
  @media all and (min-width:661px) {
  .icons > * {
    padding-left:55px !important;
  }
  .icons .icon:after {
    left:-50px;
    width:30px;
  }
  }
  
  .past {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: grayscale 0.5s;
  }
  .past img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: grayscale 0.5s;
  }
  /*
  .past:hover {
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%);
    transition: grayscale 0.5s;
  }*/
  
  /*——————————————————————————————————————————————————
    SEARCH RESULTS
    ——————————————————————————————————————————————————*/
  
  #searchheaders .ajax-load-more-wrap.alm-loading {
    height:0;
    overflow:hidden;
  }
  #searchheaders .row {
    position:relative;
    background:#1a1a1a;
  }
  .searchheader {
    background:#1a1a1a;
    border-bottom: 1px solid #fff;
    padding-bottom:40px;
    z-index:1;
  }
  .searchheader {
    position:absolute;
    top:0;
    width:100%;
  }
  #searchheaders .ajax-load-more-wrap .alm-reveal {
    border-bottom: none;
    padding-top: 90px;
    padding-bottom: 30px;
  }
  #searchheaders #ajax-load-more {
    padding-bottom:0px;
  }
  @media all and (min-width:768px) {
    #searchheaders .ajax-load-more-wrap .alm-reveal {
        border-bottom: none;
        padding-top: 140px;
        padding-bottom: 30px;
    }	
  }
  @media all and (min-width:1100px) {
    #searchheaders .ajax-load-more-wrap .alm-reveal {
        border-bottom: none;
        padding-top: 170px;
        padding-bottom: 40px;
    }	
  }
  
  /*——————————————————————————————————————————————————
    PADDING
    ——————————————————————————————————————————————————*/
    
  .forty {
      padding: 40px !important;
  }
  .forty-lr {
      padding-left: 40px !important;
    padding-right: 40px !important;
  }
  
  .twenty {
      padding: 20px !important;
  }
  .twenty-bottom {
      padding-bottom: 20px !important;
  }
  .sp-5, .sp-10, .sp-15, .sp-20, .sp-30, .sp-40, .sp-50, .sp-55, .sp-60, .sp-80 {
    width:100%;
    display:block;
  }
  .sp-5 {
    min-height:5px;
  }
  .sp-10 {
    min-height:10px;
  }
  .sp-15 {
    min-height:20px;
  }
  .sp-20 {
    min-height:20px;
  }
  .sp-30 {
    min-height:30px;
  }
  .sp-40 {
    min-height:40px;
  }
  .sp-50 {
    min-height:50px;
  }
  .sp-55 {
    min-height:55px;
  }
  .sp-60 {
    min-height:60px;
  }
  .sp-80 {
    min-height:80px;
  }
  
  .tb-40 {
    padding-top:40px;
    padding-bottom:40px;
  }
  .tb-20 {
    padding-top:20px;
    padding-bottom:20px;
  }
  .b-20 {
    padding-bottom:20px;
  }
  
  /*——————————————————————————————————————————————————
    LINKS
    ——————————————————————————————————————————————————*/
    
  a {
    text-decoration:none;
    color: inherit;
  }
  a[href], input[type='submit'], input[type='image'], label[for], select, button,a label {
         cursor: pointer;
  }
  
  /*——————————————————————————————————————————————————
    FOOTER
    ——————————————————————————————————————————————————*/
  
  footer {
    display:none;
  }
  
  footer ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style:none;
  }
  .twitter, .facebook, .instagram {
    width: 25px;
    background: red;
    display: inline-block;
    height: 25px;
    margin: 0 12px;
  }
  
  .twitter {
    background: transparent url('../img/social-twitter.svg') no-repeat center center;
    background-size:100%;
  }
  .facebook {
    background: transparent url('../img/social-facebook.svg') no-repeat center center;
    background-size:100%;
  }
  .instagram {
    background: transparent url('../img/social-instagram.svg') no-repeat center center;
    background-size:100%;
  }
  
  /*——————————————————————————————————————————————————
    WINNER
    ——————————————————————————————————————————————————*/
  
  .winner .ratio .image, .special .ratio .image {
    position: relative; 
  }
  .winner .ratio .image:before, .special .ratio .image:before {
    content:"Winner";
    position:absolute;
    top:0;
    right:0;
    background:#FF4947;
    line-height: 17px !important;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    padding: 11px 16px 9px 15px;
    cursor: pointer;
    letter-spacing:0.06em;
    font-family: 'Nuckle', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  .special .ratio .image:before {
    content:"Special Mention";
    background:#ffffff;
    color:#FF4947;
    min-width: 142px;
  }
  
  
  /*——————————————————————————————————————————————————
    NEW
    ——————————————————————————————————————————————————*/
  #searchheaders .ajax-load-more-wrap .alm-reveal {
    border-bottom:none;
  }
  footer {
    overflow:hidden;
    display:block !important;
  }
  p a {
    font-weight:400;
  }
  #main {
    overflow:hidden;
  }
  .twenty {
    padding-top: 15px !important;
  }
  
  @media all and (min-width:661px) {
    .icons > * {
      padding-left:60px !important;
    }
    .icons .icon:after {
      left:-50px;
      width:30px;
    }
  }
  
  @media all and (min-width:1360px) {
    .icons > * {
      padding-top:15px !important;
    }
  }
  
  #mce-EMAIL {
    color:#ffffff;
    border-bottom: 1px solid #ffffff;
    font-size: 16px;
    transition:background-color 0s ease 99999s,color 0s ease 99999s;
  }
  #mc_embed_signup {
    margin-top: 3px;
  }
  #mc_embed_signup input::-webkit-input-placeholder {
    color: #ffffff !important;
  }
  #mc_embed_signup input:-moz-placeholder { /* Firefox 18- */
    color: #ffffff !important;  
  }
  #mc_embed_signup input::-moz-placeholder {  /* Firefox 19+ */
    color: #ffffff !important;  
  }
  #mc_embed_signup input:-ms-input-placeholder {  
    color: #ffffff !important;  
  }
  @media (min-width: 768px) {
    #mc-embedded-subscribe-form {
      width: calc(100% - 15px);
      width: 100%;
    }
  }
  
  /*——————————————————————————————————————————————————
    FLICKITY
    ——————————————————————————————————————————————————*/
  
  .flickity-prev-next-button {
    top: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
  }
  /* icon color */
  .flickity-button-icon {
    fill: #FF4947;
  }
  /* position outside */
  .flickity-prev-next-button.previous {
    left: 10px;
  }
  .flickity-prev-next-button.next {
    right: 10px;
  }
  /* hide disabled button */
  .flickity-button:disabled {
    display: none;
  }
  
  .flickity-enabled {
    position: relative;
  }
  
  .flickity-enabled:focus { outline: none; }
  
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  
  .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100% !important;
  }
  
  .carousel-cell {
    width: 100%;
      height: auto;
      display: block;
  }
  
  /*——————————————————————————————————————————————————
    FLEXBOX GRID
    ——————————————————————————————————————————————————*/
  
  .fixed {
    position:fixed;
    top:0;
  }
  .absolute {
    position:absolute;
    top:0;
  }
  .pointer-events {
    pointer-events:none;
  }
  .relative {
    position:relative;
  }
  .block {
    display:block;
  }
  .fullwidth {
    width:100%;
  }
  .fullheight {
    height: 100%;
  }
  .overflow-scroll {
    overflow:auto;
    -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
  }
  .border {
    border:1px solid white;
    border-bottom:none;
  }
  .border-bottom {
    border-bottom:1px solid white;
  }
  .no-border-bottom {
    border-bottom:0px solid white;
  }
  .border-top {
    box-shadow:inset 0px 1px 0px white;
  }
  .border-left {
    border-left:1px solid white;
  }
  .border-right {
    border-right:1px solid white;
  }
  .border-after,
  .border-before {
    position:relative;
  }
  .border-after:after {
    content: '';
    position: absolute;
    width: 200vw;
    bottom: 0px;
    height: 1px;
    background: white;
    left: -100%;
  }
  .border-before:before {
    content: '';
    position: absolute;
    width: 200vw;
    top: -1px;
    height: 1px;
    background: white;
    left: -100%;
  }
  .text-left {
    text-align:left;
  }
  .text-center {
    text-align:center;
  }
  .text-right {
    text-align:right;
  }
  
  
  /*——————————————————————————————————————————————————
    FLEXBOX GRID
    ——————————————————————————————————————————————————*/
  
  .flexfill {
    flex:1 !important;
  }
  
  .box, .box-first, .box-large, .box-nested, .box-row {
    position: relative;
    box-sizing: border-box;
    min-height: 1rem;
    margin-bottom: 0;
    background: #007FFF;
    border: 1px solid #FFF;
    border-radius: 2px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding:1em;
  }
  .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .row, .flex, .alm-reveal {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
        width: 100%;
  }
  .alm-load-more-btn {
    display:none !important;
  }
  #ajax-load-more {
    padding-bottom:10px;
  }
  .row.reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
  .col.reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
  .show-sm, .show-md, .show-lg, .show-inline-md {
      display:none;
  }
  .col-xs,
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .noflex {
    display:block;
  }
  
  .col-xs {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  
  .col-xs-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  
  .col-xs-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  
  .col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  
  .col-xs-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  
  .col-xs-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  
  .col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  
  .col-xs-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  
  .col-xs-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  
  .col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  
  .col-xs-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  
  .col-xs-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  
  .col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  
  .col-xs-offset-1 {
    margin-left: 8.333%;
  }
  
  .col-xs-offset-2 {
    margin-left: 16.6%;
  }
  
  .col-xs-offset-3 {
    margin-left: 25%;
  }
  
  .col-xs-offset-4 {
    margin-left: 33.333%;
  }
  
  .col-xs-offset-5 {
    margin-left: 41.667%;
  }
  
  .col-xs-offset-6 {
    margin-left: 50%;
  }
  
  .col-xs-offset-7 {
    margin-left: 58.333%;
  }
  
  .col-xs-offset-8 {
    margin-left: 66.667%;
  }
  
  .col-xs-offset-9 {
    margin-left: 75%;
  }
  
  .col-xs-offset-10 {
    margin-left: 83.333%;
  }
  
  .col-xs-offset-11 {
    margin-left: 91.667%;
  }
  
  .start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  
  .center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  
  .end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  
  
  .top-xs {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  
  .middle-xs {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  
  .bottom-xs {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  
  .around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  
  .between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  
  .first-xs {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  
  .last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  
  .fill-xs {
     height:100%;
    flex:1;
  }
  .pad-top-bottom {
    padding-left:0px !important;
    padding-right:0px !important;
  }
  .pad-left-right {
    padding-top:0px !important;
    padding-bottom:0px !important;
  }
  .pad-top {
    padding-bottom:0px !important;
    padding-left:0px !important;
    padding-right:0px !important;
  }
  .pad-bottom {
    padding-top:0px !important;
    padding-left:0px !important;
    padding-right:0px !important;
  }
  .pad-left {
    padding-top:0px !important;
    padding-bottom:0px !important;
    padding-right:0px !important;
  }
  .pad-right {
    padding-top:0px !important;
    padding-bottom:0px !important;
    padding-left:0px !important;
  }
  .no-pad-bottom {
    padding-bottom:0px !important;
  }
  .pad-xs-0 {
    padding:0px;
  }
  .pad-xs-5 {
    padding:5px;
  }
  .pad-xs-10 {
    padding:10px;
  }
  .pad-xs-15 {
    padding:15px;
  }
  .pad-xs-20 {
    padding:20px;
  }
  .pad-xs-25 {
    padding:25px;
  }
  .pad-xs-30 {
    padding:30px;
  }
  .pad-xs-40 {
    padding:40px;
  }
  .pad-xs-50 {
    padding:50px;
  }
  .pad-xs-60 {
    padding:60px;
  }
  .pad-xs-70 {
    padding:70px;
  }
  .pad-xs-80 {
    padding:80px;
  }
  .pad-xs-120 {
    padding:120px;
  }
  
  @media only screen and (min-width: 768px) {
    .container {
      width: 46rem;
    }
    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
      box-sizing: border-box;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
    }
    .absolute-sm {
      position:absolute;
      top:0;
    }
  
    .col-sm {
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      max-width: 100%;
    }
    .col-sm-unset {
      -webkit-flex-grow: unset;
      -ms-flex-positive: unset;
      -webkit-box-flex: unset;
      flex-grow: unset;
      -ms-flex-preferred-size: unset;
      flex-basis: unset;
      max-width: unset;
    }
    .col-sm-1 {
      -ms-flex-preferred-size: 8.333%;
      flex-basis: 8.333%;
      max-width: 8.333%;
    }
  
    .col-sm-2 {
      -ms-flex-preferred-size: 16.667%;
      flex-basis: 16.667%;
      max-width: 16.667%;
    }
  
    .col-sm-3 {
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .col-sm-4 {
      -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
      max-width: 33.333%;
    }
  
    .col-sm-5 {
      -ms-flex-preferred-size: 41.667%;
      flex-basis: 41.667%;
      max-width: 41.667%;
    }
  
    .col-sm-6 {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .col-sm-7 {
      -ms-flex-preferred-size: 58.333%;
      flex-basis: 58.333%;
      max-width: 58.333%;
    }
  
    .col-sm-8 {
      -ms-flex-preferred-size: 66.667%;
      flex-basis: 66.667%;
      max-width: 66.667%;
    }
  
    .col-sm-9 {
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
      max-width: 75%;
    }
  
    .col-sm-10 {
      -ms-flex-preferred-size: 83.333%;
      flex-basis: 83.333%;
      max-width: 83.333%;
    }
  
    .col-sm-11 {
      -ms-flex-preferred-size: 91.667%;
      flex-basis: 91.667%;
      max-width: 91.667%;
    }
  
    .col-sm-12 {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
    }
  
   .col-sm-offset-0 {
      margin-left: 0%;
    }
    .col-sm-offset-1 {
      margin-left: 8.333%;
    }
  
    .col-sm-offset-2 {
      margin-left: 16.6%;
    }
  
    .col-sm-offset-3 {
      margin-left: 25%;
    }
  
    .col-sm-offset-4 {
      margin-left: 33.333%;
    }
  
    .col-sm-offset-5 {
      margin-left: 41.667%;
    }
  
    .col-sm-offset-6 {
      margin-left: 50%;
    }
  
    .col-sm-offset-7 {
      margin-left: 58.333%;
    }
  
    .col-sm-offset-8 {
      margin-left: 66.667%;
    }
  
    .col-sm-offset-9 {
      margin-left: 75%;
    }
  
    .col-sm-offset-10 {
      margin-left: 83.333%;
    }
  
    .col-sm-offset-11 {
      margin-left: 91.667%;
    }
  
    .start-sm {
      -ms-flex-pack: start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      text-align: start;
    }
  
    .center-sm {
      -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
      text-align: center;
    }
  
    .end-sm {
      -ms-flex-pack: end;
      -webkit-box-pack: end;
      justify-content: flex-end;
      text-align: right;
    }
  
    .top-sm {
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
    }
  
    .middle-sm {
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
    }
  
    .bottom-sm {
      -ms-flex-align: end;
      -webkit-box-align: end;
      align-items: flex-end;
    }
  
    .around-sm {
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }
  
    .between-sm {
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
    }
  
    .first-sm {
      -ms-flex-order: -1;
      -webkit-box-ordinal-group: 0;
      order: -1;
    }
  
    .last-sm {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
    }
    .show-sm {
      display:block;
    }
    .hide-sm {
     display:none;
     }
    .fill-sm {
      height:100%;
    }
    .pad-sm-0 {
      padding:0px;
    }
    .pad-sm-5 {
      padding:5px;
    }
    .pad-sm-10 {
      padding:10px;
    }
    .pad-sm-15 {
      padding:15px;
     }
     .pad-sm-20 {
      padding:20px;
     }
     .pad-sm-25 {
      padding:25px;
     }
    .pad-sm-30 {
      padding:30px;
    }
    .pad-sm-40 {
      padding:40px;
    }
    .pad-sm-50 {
      padding:50px;
    }
    .pad-sm-60 {
      padding:60px;
    }
    .pad-sm-70 {
      padding:70px;
    }
    .pad-sm-80 {
      padding:80px;
    }
    .pad-sm-120 {
      padding:120px;
    }
    .lr-40-sm {
      padding-left: 40px !important;
    padding-right: 40px !important;
    
    }
    .center-sm .button {
          margin: 0 auto;
    }
    .pad-top-sm {
      padding-bottom:0px !important;
    }
  
  }
  
  @media only screen and (min-width: 1024px) {
  
    .plus-5-grid-md {
      width:calc(100% + 10px);
      margin-left:-5px;
    }
    .container {
      width: 61rem;
    }
  
    .flexfill-md {
      flex:1 !important;
    }
  
    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
      box-sizing: border-box;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
    }
  
    .col-md {
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      max-width: 100%;
    }
    .col-md-unset {
      -webkit-flex-grow: unset;
      -ms-flex-positive: unset;
      -webkit-box-flex: unset;
      flex-grow: unset;
      -ms-flex-preferred-size: unset;
      flex-basis: unset;
      max-width: unset;
      width:unset;
    }
  
    .col-md-1 {
      -ms-flex-preferred-size: 8.333%;
      flex-basis: 8.333%;
      max-width: 8.333%;
    }
  
    .col-md-2 {
      -ms-flex-preferred-size: 16.667%;
      flex-basis: 16.667%;
      max-width: 16.667%;
    }
  
    .col-md-3 {
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .col-md-4 {
      -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
      max-width: 33.333%;
    }
  
    .col-md-5 {
      -ms-flex-preferred-size: 41.667%;
      flex-basis: 41.667%;
      max-width: 41.667%;
    }
  
    .col-md-6 {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .col-md-7 {
      -ms-flex-preferred-size: 58.333%;
      flex-basis: 58.333%;
      max-width: 58.333%;
    }
  
    .col-md-8 {
      -ms-flex-preferred-size: 66.667%;
      flex-basis: 66.667%;
      max-width: 66.667%;
    }
  
    .col-md-9 {
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
      max-width: 75%;
    }
  
    .col-md-10 {
      -ms-flex-preferred-size: 83.333%;
      flex-basis: 83.333%;
      max-width: 83.333%;
    }
  
    .col-md-11 {
      -ms-flex-preferred-size: 91.667%;
      flex-basis: 91.667%;
      max-width: 91.667%;
    }
  
    .col-md-12 {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
    }
    
    .col-md-offset-0 {
      margin-left: 0;
    }
    .col-md-offset-1 {
      margin-left: 8.333%;
    }
  
    .col-md-offset-2 {
      margin-left: 16.6%;
    }
  
    .col-md-offset-3 {
      margin-left: 25%;
    }
  
    .col-md-offset-4 {
      margin-left: 33.333%;
    }
  
    .col-md-offset-5 {
      margin-left: 41.667%;
    }
  
    .col-md-offset-6 {
      margin-left: 50%;
    }
  
    .col-md-offset-7 {
      margin-left: 58.333%;
    }
  
    .col-md-offset-8 {
      margin-left: 66.667%;
    }
  
    .col-md-offset-9 {
      margin-left: 75%;
    }
  
    .col-md-offset-10 {
      margin-left: 83.333%;
    }
  
    .col-md-offset-11 {
      margin-left: 91.667%;
    }
  
    .start-md {
      -ms-flex-pack: start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      text-align: start;
    text-align:left;
    }
  
    .center-md {
      -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
      text-align: center;
    }
  
    .end-md {
      -ms-flex-pack: end;
      -webkit-box-pack: end;
      justify-content: flex-end;
      text-align: end;
    }
    
     .right-md {
      text-align: right;
    }
  
    .top-md {
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
    }
  
    .middle-md {
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
    }
  
    .bottom-md {
      -ms-flex-align: end;
      -webkit-box-align: end;
      align-items: flex-end;
    }
  
    .around-md {
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }
  
    .between-md {
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
    }
  
    .first-md {
      -ms-flex-order: -1;
      -webkit-box-ordinal-group: 0;
      order: -1;
    }
  
    .last-md {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
    }
    .column-md {
      flex-direction:column;
    }
    .show-md {
      display:block;
    }
    .show-inline-md {
      display:inline-block;
    }
    .row.show-md {
      display:flex;
    }
     .hide-md {
      display:none;
    }
    .fill-md {
      height:100%;
    }
    
    .pad-md-0 {
      padding:0px;
    }
    .pad-md-10 {
      padding:10px;
    }
    .pad-md-15 {
      padding:15px;
    }
    .pad-md-20 {
      padding:20px;
    }
    .pad-md-25 {
      padding:25px;
    }
    .pad-md-30 {
      padding:30px;
    }
    .pad-md-40 {
      padding:40px;
    }
    .pad-md-60 {
      padding:60px;
    }
    .pad-md-70 {
      padding:70px;
    }
    .pad-md-80 {
      padding:80px;
    }
    .pad-md-120 {
      padding:120px;
    }
  }
  
  @media only screen and (min-width: 1240px) {
    .container {
      width: 71rem;
    }
  
    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
      box-sizing: border-box;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
  /*    padding-right: 1rem;
      padding-left: 1rem; */
    }
  
    .col-lg {
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      max-width: 100%;
    }
  
    .col-lg-1 {
      -ms-flex-preferred-size: 8.333%;
      flex-basis: 8.333%;
      max-width: 8.333%;
    }
  
    .col-lg-2 {
      -ms-flex-preferred-size: 16.66%;
      flex-basis: 16.66%;
      max-width: 16.66%;
    }
  
    .col-lg-3 {
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .col-lg-4 {
      -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
      max-width: 33.333%;
    }
  
    .col-lg-5 {
      -ms-flex-preferred-size: 41.667%;
      flex-basis: 41.667%;
      max-width: 41.667%;
    }
  
    .col-lg-6 {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .col-lg-7 {
      -ms-flex-preferred-size: 58.333%;
      flex-basis: 58.333%;
      max-width: 58.333%;
    }
  
    .col-lg-8 {
      -ms-flex-preferred-size: 66.667%;
      flex-basis: 66.667%;
      max-width: 66.667%;
    }
  
    .col-lg-9 {
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
      max-width: 75%;
    }
  
    .col-lg-10 {
      -ms-flex-preferred-size: 83.333%;
      flex-basis: 83.333%;
      max-width: 83.333%;
    }
  
    .col-lg-11 {
      -ms-flex-preferred-size: 91.667%;
      flex-basis: 91.667%;
      max-width: 91.667%;
    }
  
    .col-lg-12 {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
    }
  .col-lg-offset-0 {
      margin-left: 0%;
    }
    .col-lg-offset-1 {
      margin-left: 8.333%;
    }
  
    .col-lg-offset-2 {
      margin-left: 16.667%;
    }
  
    .col-lg-offset-3 {
      margin-left: 25%;
    }
  
    .col-lg-offset-4 {
      margin-left: 33.333%;
    }
  
    .col-lg-offset-5 {
      margin-left: 41.667%;
    }
  
    .col-lg-offset-6 {
      margin-left: 50%;
    }
  
    .col-lg-offset-7 {
      margin-left: 58.333%;
    }
  
    .col-lg-offset-8 {
      margin-left: 66.667%;
    }
  
    .col-lg-offset-9 {
      margin-left: 75%;
    }
  
    .col-lg-offset-10 {
      margin-left: 83.333%;
    }
  
    .col-lg-offset-11 {
      margin-left: 91.667%;
    }
  
    .start-lg {
      -ms-flex-pack: start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      text-align: start;
      text-align:left;
    }
  
    .center-lg {
      -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
      text-align: center;
    }
  
    .end-lg {
      -ms-flex-pack: end;
      -webkit-box-pack: end;
      justify-content: flex-end;
      text-align: end;
    }
  
    .top-lg {
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
    }
  
    .middle-lg {
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
    }
  
    .bottom-lg {
      -ms-flex-align: end;
      -webkit-box-align: end;
      align-items: flex-end;
    }
  
    .around-lg {
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }
  
    .between-lg {
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
    }
  
    .first-lg {
      -ms-flex-order: -1;
      -webkit-box-ordinal-group: 0;
      order: -1;
    }
  
    .last-lg {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
    }
    
    .show-lg {
      display:block;
    }
    
    .hide-lg {
      display:none;
    }
    .fill-lg {
      height:100%;
    }
    .pad-lg-0 {
      padding:0px;
    }
    .pad-lg-10 {
      padding:10px;
    }
    .pad-lg-15 {
      padding:15px;
    }
    .pad-lg-20 {
      padding:20px;
    }
    .pad-lg-25 {
      padding:25px;
    }
    .pad-lg-30 {
      padding:30px;
    }
    .pad-lg-40 {
      padding:40px;
    }
    .pad-lg-60 {
      padding:60px;
    }
    .pad-lg-80 {
      padding:80px;
    }
    .pad-lg-120 {
      padding:120px;
    }
    .start-lg .button {
          margin-left: 0;
    }
  }
  