/*——————————————————————————————————————————————————
	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: 'PolySans';
      src: url('../fonts/PolySansNeutral.woff');
      src: url('../fonts/PolySansNeutral.woff2') format('woff2'),
           url('../fonts/PolySansNeutral.woff') format('woff');
      font-weight:normal;
    }
    @font-face {
      font-family: 'PolySans';
      src: url('../fonts/PolySansNeutralItalic.woff');
      src: url('../fonts/PolySansNeutralItalic.woff2') format('woff2'),
           url('../fonts/PolySansNeutralItalic.woff') format('woff');
      font-weight:normal;
      font-style:italic;
    }
    @font-face {
      font-family: 'PolySans';
      src: url('../fonts/PolySansMedian.woff');
      src: url('../fonts/PolySansMedian.woff2') format('woff2'),
           url('../fonts/PolySansMedian.woff') format('woff');
      font-weight:bold;
    }
    @font-face {
      font-family: 'TiemposHeadlineLightItalic';
      src: url('../fonts/TiemposHeadlineLightItalic.woff');
      src: url('../fonts/TiemposHeadlineLightItalic.woff2') format('woff2'),
           url('../fonts/TiemposHeadlineLightItalic.woff') format('woff');
    }
  
    @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;
    }
  
  
  /*——————————————————————————————————————————————————
    COLOURS
    ——————————————————————————————————————————————————*/
  
    :root {
      --dark-grey:#1f1f1f;
      --white:#ffffff;
      --cream:#cbc4b6;
      --red:#FF4947;
      --body-font:    'PolySans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --heading-font: 'PolySans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --feature-font: 'TiemposHeadlineLightItalic', 'Times', serif;
      --heading-font-weight: 600;
      --feature-font-weight: 400;
      --body-text-color: var(--white);
      --button-border-color: var(--white);
      --button-text-color: var(--white);
      --button-background-color: transparent;
      --button-hover-border-color: transparent;
      --button-hover-background-color: var(--white);
      --button-hover-text-color: var(--dark-grey);
    }
    
  .light {
    --body-text-color: var(--dark-grey);
    --button-border-color: var(--dark-grey);
    --button-text-color: var(--dark-grey);
    --button-background-color: transparent;
    --button-hover-border-color: var(--dark-grey);
    --button-hover-background-color: var(--dark-grey);
    --button-hover-text-color: var(--white);
  }
  .red-button {
    --button-border-color: var(--red);
    --button-text-color: var(--dark-grey);
    --button-background-color: var(--red);
    --button-hover-border-color: var(--red);
    --button-hover-background-color: transparent;
    --button-hover-text-color: var(--red);
  }
  
  sup {
    font-size: 50%;
    vertical-align: super;
  }

  html {
    background:var(--dark-grey);
    position:relative;
  }
  html.light {
    background:var(--cream);
  }
  #main {
    position:relative;
  }

  .light, .light .sub-nav ul.children {
    background:var(--cream);
    color:var(--dark-grey);
  }
  .light #mce-EMAIL, .light input {
    color: var(--dark-grey) !important;
  }
  .sub-nav ul.children:after {
    background:var(--dark-grey);
  }
  .light .sub-nav ul.children:after {
    background:var(--cream);
  }
  .light #mce-EMAIL {
    border-bottom: 1px solid var(--dark-grey);
  }
  .light span#arrow {
    background: url('../img/arrow_dark.svg') no-repeat center left;
  }
  .light #mc_embed_signup input::-webkit-input-placeholder {
    color: var(--dark-grey) !important;
  }
  .light #mc_embed_signup input:-moz-placeholder { /* Firefox 18- */
    color: var(--dark-grey) !important;  
  }
  .light #mc_embed_signup input::-moz-placeholder {  /* Firefox 19+ */
    color: var(--dark-grey) !important;  
  }
  .light #mc_embed_signup input:-ms-input-placeholder {  
    color: var(--dark-grey) !important;  
  }
  .svg-mask > * {
    fill:var(--dark-grey);
  }
  .light .svg-mask > * {
    fill:var(--cream);
  }
  .svg-fill svg > * {
    fill:var(--white);
  }
  .light .svg-fill svg > * {
    fill:var(--dark-grey);
  }
  .black {
    background:#000000;
  }
  .black-text {
    color:#000000;
  }
  .dark {
    background:var(--dark-grey);
  }
  .dark-fill > * {
    fill:var(--dark-grey);
  }
  .white-fill > * {
    fill:#ffffff;
  }
  .dark-text {
    color:var(--dark-grey);
  }
  .red {
    background: var(--red);
  }
  /* .red-text {
    color: var(--red);
  }
  .red-border {
    border-color: var(--red);
  } */
  .festival-dates {
    color: var(--red);
  }
  .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;
  }

  /*——————————————————————————————————————————————————
    HERO
    ——————————————————————————————————————————————————*/

  .hero-2023-height {
    height:80vw;
    max-height:100vh;
    min-height:600px;
  }
  .svg-mask {
    height: 100%;
    width: auto;
    display: block;
  }


  /*——————————————————————————————————————————————————
    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;
  }
  .logotype {
    width: 100%;
    display: block;
    max-width: 300px;
  }
  .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.1;
    font-size:18px;
  }
  .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%;
    }
    .festival-dates {
      line-height:1.1;
      font-size:13px;
    }
  }
  
  .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;
  }
  
  /*——————————————————————————————————————————————————
    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;
  }

  /*——————————————————————————————————————————————————
    SCHEDULE
    ——————————————————————————————————————————————————*/

  .schedule_accordion_head {
    cursor:pointer;
  }

  .alm-load-more-btn.done {
    display:none !important;
  }

  .accordion-arrow svg > * {
    fill:none;
    stroke:var(--body-text-color); 
  }

  .accordion-arrow {
    content: "";
    height: 31px;
    width: 31px;
    right: 0px;
    padding: 0px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    transform:rotate(0deg);
    transition:transform 0.2s ease;
  }
  .active .accordion-arrow  {
    transform:rotate(180deg);
  }

    .accordion_container h2 {
      font-weight:400;
    }
    .schedule_accordion_head.active h2 {
      font-weight:600;
    }
    
    @media all and (max-width:400px) {
      .schedule_accordion_head h2 span:nth-child(2) {
        display:none;
      }
    }

    .accordion_container.boxed {
      min-height:260px;
    }
    .accordion_container .accordion_head {
      cursor:pointer;
    }
    .accordion_container .accordion_body {
      height:0px;
      overflow:hidden;
      opacity:0;
      transition:all 0.2s ease 0.2s, opacity 0.2s ease 0s;
    }
    .accordion_container .accordion_body.active {
      opacity:1;
      height:auto;
      transition:all 0.2s ease 0s, opacity 0.2s ease 0.2s;
    }
    .arrow {
      transition:transform 0.2s ease;
      display: inline-block;
    }
    .arrow.active {
      transform:rotate(180deg);
    }
    .accordions.borders .accordion_container {
      border-bottom-width:1px;
      border-bottom-style:solid;
    }
    .accordions.borders .accordion_container:first-child {
      border-top-style:solid;
    }
  
    /*——————————————————————————————————————————————————
      SCHEDULE ACCORDION
      ——————————————————————————————————————————————————*/
    
    .schedule_accordion_body {
        overflow:hidden;
    }
    .schedule_accordion_body {
        transition:opacity 0.2s ease 1s;
        opacity:0;
    }
    .schedule_accordion_head {
        cursor:pointer;
    }
    .schedule_accordion_body.active {
      opacity:1;
      transition:opacity 0.4s ease 1s;
    } 
  
  
  /*——————————————————————————————————————————————————
    TYPOGRAPHY
    ——————————————————————————————————————————————————*/
  
  body {
    width:100%;
    font-family:var(--body-font);
    letter-spacing: -0.03em;
  }
  body, h6 {
    font-weight: normal;
    font-size:16px;
    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;
  }
  .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 {
    line-height:1.065;
  }

  .uppercase {
    text-transform:uppercase;
  }

  .featured {
    font-family:var(--feature-font);
    letter-spacing: -0em !important;
  }

  footer ul {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0px;
  }
  
  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;
  }

  #fb-root {
    position:fixed;
    display:none !important;
  }

  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;
  }
  h1 p, h2 p, h3, h4 p, h5 p, h6 p, h1, h2, h3, h4 {
    font-family:var(--heading-font);
    letter-spacing: -0.025em;
  }
  .body-content > * {
    margin-bottom:5px;
  }
  .body-content > p {
    margin-bottom:8px;
  }
  .body-content h2, .body-content h3 {
    font-weight:600;
  }
  .regular {
    font-weight:400;
  }
  .subtitle {
    font-weight:400;
  }
  .quote {
    font-weight: 400;
    font-family: var(--feature-font);
    text-transform: uppercase;
    line-height: 1.2;
  }
  .body-content h3.quote {
    font-weight: 400;
  }

  ul {
    padding-left: 20px;
    margin-bottom:20px;
  }
  p {
    margin-bottom:10px;
    line-height:1.3;
  }
  li {
    margin-bottom:5px;
  }
  
  h1, h2, .h1 {
    font-size: 35px;
  }
  h1, .h1 {
    line-height: 1.05;
  }
  h3, .h3, .sub-nav ul.children li {
    font-size:18px;
    line-height: 1.135;
  }
  .h3.details-list {
    line-height:1.3;
  }
  h4, .h4 {
    font-size: 14px;
  }
  .sub-nav > ul > li {
    font-size: 11px;
  }
  h5, .h5 {
    font-size: 12px;
  }
  h6 {
    font-size:12px;
  }
  #sort, .btn, .alm-load-more-btn {
    font-size: 17px;
  }
  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;
  }
  
  .home-page-titles {
    font-size:6.5vw;
  }

  .home-festival-dates {
    color: var(--white);
    font-size: 6vw;
    font-weight: 400;
    line-height: .95 !important;
  }
  
  @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;
    }
    .h3.large {
      font-size: 28px;
    }
    h4, .h4 {
      font-size: 16px;
    }
    .sub-nav li .sub-nav, #sort, .btn,.alm-load-more-btn {
      font-size: 14px;
    }
    .sub-nav > ul > li {
      font-size: 15px;
    }
  
    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;
    }
    .home-page-titles {
      font-size:4.75vw;
    }
    .home-festival-dates {
      font-size: 50px;
    }
  
    body, .body-content {
      font-size:16px;
    }
    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: 23px;
    }
    h4, .h4 {
      font-size: 22px;
    }
     .sub-nav > ul > li {
      font-size: 16px;
    }
    .sub-nav, #sort, .btn:not(.small-btn), .alm-load-more-btn {
      font-size:17px;
    }
  
    h1.large {
      font-size: 100px;
    }
    h2.large {
      font-size: 34px;
    }
    h3.large {
      font-size: 70px;
    }
  
    body {
      font-size:18px;
    }
    .body-content {
      font-size:20px;
    }
    p.small {
      font-size:15px;
      line-height:20px;
    }
    p {
      margin-bottom:20px;
    }
  
  }
  
  @media all and (min-width:1360px) { 
    .home-page-titles {
      font-size:65px;
    }
  }

  .single-hero {
    max-width:1440px !important;
    margin:0 auto;
    overflow:hidden;
  }
  @media all and (min-width:1441px) { 
  .single-hero {
    border-radius: 0px 0px 10px 10px;
    overflow: hidden;
  }
}
  
  
  .body-content > * {
    margin-bottom:8px;
    line-height:1.2;
  }
  .body-content > p {
    margin-bottom:15px;
  }
  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 ;
  }
  @media all and (min-width:768px) {
    hr {
      margin: 30px 0px !important;
    }
  }
  .nomarginbottom {
    margin-bottom:0px !important;
  }
  
  .justify, .justify p {
    text-align: justify !important;
  }
  
  
  /*——————————————————————————————————————————————————
    WRAPPERS
    ——————————————————————————————————————————————————*/
    
  .wrapper {
      max-width: 1360px;
      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:capitalize;
    border:1px solid var(--button-border-color);
    color:var(--button-text-color);
    background:var(--button-background-color);
    padding: 4px 10px 3px 10px;
    cursor: pointer;
    letter-spacing:0em;
    display: inline-block;
    border-radius: 20px;
    letter-spacing: -0.02em;
  }
  @media all and (min-width:1100px) {
    .btn:not(.small-btn) {
      padding: 4px 12px 2px 12px;
    }
  }
  .btn:hover, #sort.active .btn, #sort:hover .btn {
    background:var(--button-hover-background-color);
    color:var(--button-hover-text-color);
    border:1px solid var(--button-hover-border-color);
  }
  .btn.disabled, .btn.disabled:hover {
    /* border:1px solid #999;
    color:#999;
    background:transparent; */
    opacity:0.3;
  }
  .alm-load-more-btn {
    padding:0px 0px;
    margin:20px auto;
    font-family: var(--body-font);
    text-align:center;
    border:0px;
    background:transparent;
    -webkit-appearance:none;
    width: 100%;
    border: 1px solid;
    border-radius: 20px;
    padding: 5px 10px 4px;
    width: auto;
    display: block;
    color:inherit;
  }
  /* .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;
  }
  body input:-webkit-autofill, body textarea:-webkit-autofill, body select:-webkit-autofill {
    background-color: rgba(255,255,255,0) !important;
    color: var(--red) !important;
  }
  
  
  /*——————————————————————————————————————————————————
    SORT DROPDOWN
    ——————————————————————————————————————————————————*/
  
  #sort ul li {
    width:100%;
    display: block;
    font-size: 4.5vw;
    text-align: left;
  }
  #sort ul li a {
    padding: 3px 20px 3px 18px;
    text-align: left;
    display: block;
    line-height: 1.5;
  }
  #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: var(--white);
    color:var(--dark-grey);
    border-radius:10px;
  }
  #sort ul li a:hover {
    background:rgba(31,31,31,0.065);
  }
  #sort .sub-menu:after {
    content:"";
    position:absolute;
    top:-6px;
    right:calc(50% - 6px);
    height:0px;
    width:0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--white);
  }

  .light #sort .sub-menu {
    background: var(--dark-grey);
    color:var(--white);
  }
  .light #sort .sub-menu:after {
    border-bottom: 6px solid var(--dark-grey);
  }
  .light #sort ul li a:hover {
    background:rgba(255,255,255,0.1);
  }

  #sort ul {
    width: calc(100vw - 40px);
    top: 40px;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
  }
  @media all and (min-width:768px) {
    #sort ul {
      left: unset !important;
      right: 0;
      transform: translateX(-0%);
    }
    #sort .sub-menu:after {
      right:25px;
    }
  }
  #sort ul li a span {
    position:relative;
  }
  #sort ul li.active a {
    color:var(--red);
  }
  /* #sort ul li.active a span:after {
    content: "";
    position: absolute;
    right: 0px;
    width: 100%;
    background: var(--red);
    height: 1px;
    top: 11px;
  } */
  #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;
    display: none;
    margin-bottom:0px;
  }
  #sort ul li:not(.active):hover {
    background:rgba(0,0,0,0.03);
  }
  @media all and (min-width:500px) {
    #sort ul {
      max-width: 315px; 
    }
    #sort ul li { 
      font-size:17px; 
    }
  }
  /*——————————————————————————————————————————————————
    GRID
    ——————————————————————————————————————————————————*/
  
  .grid {
    opacity:0;
    transition: opacity 1s ease;
  }
  .grid.show {
    opacity:1;
    transition: opacity 1s ease;
  }
  .posttype {
    background: var(--red);
    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;
  }
  .rounded-corners,
  .image, p > img {
    border-radius: 6px;
    overflow: hidden;
  }
  .single-hero .image {
    border-radius: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 {
    border-radius: 6px;
    overflow: hidden;
  }
  .hover .overlay, .hover .content, .ratio.hover > .image:after {
    opacity:0;
  }
  .content.fill {
    height: calc(100% + 16px) !important;
    width:calc(100% - 0px);
    line-height:1.25;
  }
  .ratio.hover > .image:after {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:25px;
    background: linear-gradient(180deg, rgba(255,73, 71,0) 0%, rgba(255, 73, 71,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.2s;
    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.2s;
    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.2s;
  }
  }
  
  
  /*——————————————————————————————————————————————————
    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: 9px 50px 10px 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;
    line-height:1.4;
  }
  
  span#arrow {
    height: 17px;
    width: 31px;
    right: 0px;
    position: absolute;
    top: 50%;
    background: url('../img/arrow.svg') no-repeat center left;
    background-size: contain;
    transform: translateY(-50%) rotate(180deg);
  }
  
  input {
    border-bottom: 1px solid var(--red);
    color:var(--red) !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
    —————————————————————————————————————————————————— */

  .details-list > span:last-child .comma {
    display:none;
  }
  
  .back {
    width:31px;
    height: 31px;
    display: block;
    background: url('../img/icon-search_thin_white.svg') no-repeat center center;
    background-size:contain;
    appearance:none;
    border:none;
    -webkit-appearance:none;
    transform:rotate(90deg);
  }
  .back-container {
    border-right: 1px solid rgba(255,255,255,0.2);
    margin-right: 15px;
    padding-left: 10px;
    padding-right: 20px;
  }
  .light .back {
    background: url('../img/icon-search_thin.svg') no-repeat center center;
    background-size:contain;
  }
  .light .back-containe {
    border-right: 1px solid rgba(31,31,31,0.2);
  }

  @media all and (max-width:660px) {
    .back {
      width: 21px;
      height: 21px;
    }
    .back-container {
      margin-right: 10px;
      padding-left: 10px;
      padding-right: 15px;
    }
  }
  
  .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:var(--dark-grey);
  }
  .searchheader {
    background:var(--dark-grey);
    border-bottom: 1px solid #fff;
    padding-bottom:40px;
    z-index:10;
  }
  .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: 16px !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;
  }
  a.hover-red:hover {
    color:var(--red);
  }
  
  /*——————————————————————————————————————————————————
    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:var(--red);
    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:var(--red);
    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;
  }
  body {
    min-height:100vh;
    display: flex;
    flex-direction: column;
  }
  #main {
    overflow:hidden;
    flex:1;
  }
  .twenty {
    padding-top: 12px !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) {
    #mce-EMAIL {
      font-size: 21px;
    }
    #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: var(--red);
  }
  /* 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, .row.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;
    border-bottom:none;
  }
  .border-bottom {
    border-bottom:1px solid;
  }
  .no-border-bottom {
    border-bottom:0px solid;
  }
  .border-top {
    box-shadow:inset 0px 1px 0px;
  }
  .border-left {
    border-left:1px solid;
  }
  .border-right {
    border-right:1px solid;
  }
  .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;
  } */
  .alm-load-more-btn[disabled] {
    opacity:0;
  }
  #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.6%;
    flex-basis: 16.6%;
    max-width: 16.6%;
  }
  
  .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.6%;
      flex-basis: 16.6%;
      max-width: 16.6%;
    }
  
    .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-100 {
      padding:100px;
    }
    .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.6%;
      flex-basis: 16.6%;
      max-width: 16.6%;
    }
  
    .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.6%;
      flex-basis: 16.6%;
      max-width: 16.6%;
    }
  
    .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.6%;
    }
  
    .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;
    }
  }
  