/*
TEMP
--------- */

body {
    margin-top: 0;
}

:root {
    --blue: #0081c9;
    --blueLight: #13a2f3;
    --blueDark: #076498;
    --purple: #6f2c91;
    --purpleLight: #aa44de;
    --violet: #ad208e;
    --violetLight: #dc3db9;
    --pink: #f386a7;
    --pinkLight: #f5b8ca;
    --green: #a6ce39;
    --greenLight: #ccea78;
    --grey: #beb5b5;
    --greyLight: #f7f8f9;
    --black: #31312f;
    --font: #878787;
    --turquoise: #00ada5;
    --turquoiseLight: #2cefe6;
    --success: #4BB543;
    --error: #ed4337;
    --notification: #ef9548;    
    --transitionDefault: all .4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.pointer {
    cursor: pointer;
}

/*
HEADER ANIMATION
-- For Homepage Only
--------------------------------------------------------------------------------------------- *

.id2 #dr_header,
.id32041 #dr_header {
    opacity: 0;
    visibility: hidden;
}

.id2 #dr_header .header-logo,
.id32041 #dr_header .header-logo {
    opacity: 0 !important;
}

.is-home-header-stick .banner-content .logo-svg svg {
    position: fixed;
    top: 0px;
    left: 50%;
    padding: 40px 20px;
    height: var(--headerHeight);
    transform: rotateY(0) translateX(-50%) !important;
    transition: height .4s ease, padding .4s ease;
    transition-delay: 0s !important;
    z-index: 1000;
}

.admin-bar.is-home-header-stick .banner-content .logo-svg svg {
    top: 32px;
}

.header-sticky.is-home-header-stick .banner-content .logo-svg svg {
    padding: 15px 20px;
}

.is-home-header-stick #dr_header {
    opacity: 1;
    visibility: visible
}

.home-header-was-stuck:not(.is-home-header-stick) .logo-svg svg {
    transition: height .4s ease, padding .4s ease;
    transition-delay: 0s !important;
}

/*
GLOBAL ELEMENTS
--------------------------------------------------------------------------------------------- */

/*
Setup
----------------------------------------------- */

.parent-large {
    padding-top: 140px;
    padding-bottom: 110px;
}

.overflow-hidden {
    position: relative;
    overflow: hidden;
}

.no-pointer-events {
    pointer-events: none;
}

.block {
    display: block;
}

.box-shadow {
    box-shadow: 0 0 24px var(--grey)
}

.box-shadow-dark,
.big-cta-card:hover {
    box-shadow: 0 0 24px var(--black)
}

.border-radius {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/*
Buttons
----------------------------------------------- */

.button {
    position: relative;
    display: inline-block;
    border-radius: 6px;
    color: #fff !important;
    border: none !important;
    text-align: center;
    line-height: 1 !important;
    opacity: 1 !important;
    padding: 20px 24px;
    background: #0081c9;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .18s linear;
    overflow: hidden;
    cursor: pointer;
}

.button.small {
    padding: 11px 16px;
}

.button.block {
    display: block;
    width: 100%;
}

.button.no-radius {
    border-radius: 0;
}

.button.no-bg {
    color: var(--blue) !important;
}

.button:before {
    display: none;
}

/*
Icon */

.button.has-icon {
    text-align: left;
    padding-right: 60px
}

.button.has-icon svg {
    position: absolute;
    top: 50%;
    width: 22px;
    height: auto;
    transform: translateY(-50%);
    transition: all .15s ease-in-out;
    right: 24px;
}

/*
No Padding */

.button.no-padding {
    padding: 0 34px 0 0;
    background: transparent;
    box-shadow: none !important;
    overflow: visible;
}

.button.no-padding svg {
    right: 0;
}

/*
Light */

.button.light:hover {
    box-shadow: 0 0 24px #fff;
}

.button.light {
    background: #fff;
    color: #0081c9 !important;
}

/*
Outline */

.button.outline {
    border: solid 1px var(--purple) !important;
    color: var(--purple) !important;
    padding: 18px 22px;
    background: transparent;
}

.button.outline.light {
    border: solid 1px #fff !important;
    color: #fff !important;
}

.button.outline:hover {
    color: var(--blue) !important;
    background: #fff;
}

/*
Hover */

.button:hover {
    box-shadow: 0 0 24px var(--blue);
    transform: scale(1.06);
}

.big-cta-card:hover .button,
.button-arrow-move:hover .button {
    transform: none;
}

.button:hover svg,
.big-cta-card:hover .button svg,
.button-arrow-move:hover .button svg {
    transform: translate(8px, -50%);
}

.button.svg-static:hover svg {
    transform: none;
}

/*
Dual Buttons */

.dual-buttons .button:first-child {
    margin-right: 25px;
}

/*
Play Icon
-- included optional text
----------------------------------------------- */

.video-modal-trigger {
    cursor: pointer;
}

.play-icon-wrap {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.play-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
}

.large .play-icon {
    height: 100px;
    width: 100px;
}

.play-icon svg {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 0;
}

/*
Circle */

.play-icon .svg-circle {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.play-icon .svg-play,
.play-icon .svg-circle circle {
    -webkit-transition: var(--transitionDefault);
    transition: var(--transitionDefault);
}

.play-icon .svg-circle circle {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
}

.play-icon .svg-play {
    padding: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

/*
Text */

.play-icon-wrap .play-text {
    margin-left: 20px;
}

.play-icon-wrap h4 {
    margin-bottom: 0;
}

/*
Hover */

.play-icon-wrap:hover svg,
.play-icon-wrap:hover svg circle {
    color: var(--blue);
    transition-delay: 0s !important;
}

/*
Stacked */

.play-icon-wrap.stacked {
    flex-flow: row wrap;
}

.play-icon-wrap.stacked .play-icon {
    margin: 0 auto 10px;
}

.play-icon-wrap.stacked .play-text {
    width: 100%;
    margin-left: 0;
    text-align: center;
}

.play-icon-wrap.stacked h4 {
    margin-top: 20px;
}

/*
Animation */

.loaded .play-icon {
    animation: pulse 3s infinite;
    animation-delay: 1.4s;
}

.loaded .play-icon:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    border-radius: 50%;
    top: -25%;
    left: -25%;
    /*background: #a6ce39;*/
    opacity: 1;
    z-index: -1;
}

@-webkit-keyframes pulsate1 {
    
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
    }
    
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
    
}

@keyframes pulsate1 {
    
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
    }
    
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
    
} 

.play-icon.no-pulse,
.play-icon.no-pulse:before,
.play-icon.no-pulse:after {
    animation: none !important;
}

.loaded .play-icon .svg-circle circle {
    stroke-dasharray: 180;
    stroke-dashoffset: 0;
}

.loaded .play-icon:after {
    animation-delay: 2s;
}

@-webkit-keyframes pulse {
    
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 129, 201, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 129, 201, 0.4);
  }
    
  50% {
      -moz-box-shadow: 0 0 0 19px rgba(0, 129, 201, 0);
      box-shadow: 0 0 0 19px rgba(0, 129, 201, 0);
  }
    
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(0, 129, 201, 0);
      box-shadow: 0 0 0 0 rgba(0, 129, 201, 0);
  }
    
}

@keyframes pulse {
    
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 129, 201, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 129, 201, 0.4);
  }
    
  50% {
      -moz-box-shadow: 0 0 0 14px rgba(0, 129, 201, 0);
      box-shadow: 0 0 0 14px rgba(0, 129, 201, 0);
  }
    
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(0, 129, 201, 0);
      box-shadow: 0 0 0 0 rgba(0, 129, 201, 0);
  }
    
}

/*
Scroll Next Arrow
----------------------------------------------- */

.scroll-next-arrow {
    visibility: hidden;
}

.scroll-next-arrow svg {
    position: absolute;
    bottom: 30px;
    height: 40px;
    width: auto;
    left: 50%;
    margin-left: -12.5px;
    animation: bannerBounce 2s ease infinite;
    cursor: pointer;
    opacity: 0;
}

.loaded .scroll-next-arrow svg {
    opacity: 1;
    transition: all .3s ease-out;
}

@keyframes bannerBounce {
    
    0%   {
        transform: translateY(0);
    }
    
    50%  {
        transform: translateY(-30px);
    }
    
    100% {
        transform: translateY(0);
    }
}

/*
Big CTA Card
----------------------------------------------- */

.container-services {
    width: 100%;
    padding: 0 40px;
}

.big-cta-card {
    position: relative;
    display: block;
    background: #0081c9;
    padding: 80px 60px;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.big-cta-card svg {
    display: block;
    height: 50px;
    width: auto;
}

/*
Video CTA
----------------------------------------------- */

.video-cta {
    position: relative;
    padding: 24% 40px;
    justify-content: center;
    height: 100%;
    min-height: 34vh;
    border-radius: 6px;
    overflow: hidden;
}

.video-cta .absolute-cover {
    opacity: .5;
    transition: all .3s ease-in-out;
}

.video-cta:hover .absolute-cover {
    opacity: .75
}

.video-cta .play-icon-wrap:hover svg, 
.video-cta .play-icon-wrap:hover svg circle {
    color: #fff;
}

/*
Text
----------------------------------------------- */

.txt-success {
    color: var(--success)
}

.txt-notification {
    color: var(--notification)
}

.txt-error,
.txt-red{
    color: var(--error)
}

.txt-blue {
    color: var(--blue)
}

.txt-violet {
    color: var(--violet)
}

.txt-purple {
    color: var(--purple)
}

.txt-black {
    color: var(--black);
}

/*
Backgrounds
----------------------------------------------- */

.bg-blue {
    background-color: var(--blue)
}

.bg-dark-blue {
    background-color: #101136;
}

.bg-dark {
    background-color: #050820;
}

.bg-violet {
    background-color: var(--violet)
}

.bg-purple {
    background-color: var(--purple)
}

.bg-turquoise {
    background-color: var(--turquoise)
}

.bg-white {
    background-color: #fff;
}

.bg-grey {
    background-color: var(--grey)
}

.bg-success {
    background-color: var(--success)
}

.bg-grey-light,
.bg-greylight {
    background-color: var(--greyLight)
}

/*
Gradients
----------------------------------------------- */
    
.gradient-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(357deg, var(--purple) 0%, var(--blue) 100%);
    background: -o-linear-gradient(357deg, var(--purple) 0%, var(--blue) 100%);
    background: linear-gradient(87deg, var(--purple) 0%, var(--blue) 100%);
    opacity: .52;
}

.gradient-blue-purple {
    background: linear-gradient(50deg,var(--blue) 0,var(--purple) 80%) !important;
}

.gradient-pink-purple {
    background: linear-gradient(50deg,var(--pink) 0,var(--purple) 80%) !important;
}

.gradient-pink-violet {
    background: linear-gradient(50deg,var(--pink) 0,var(--violet) 80%) !important;
}

.gradient-green-turquoise {
    background: linear-gradient(50deg,var(--green) 0,var(--turquoise) 80%) !important;
}

.gradient-green-blue {
    background: linear-gradient(50deg,var(--green) 0,var(--blue) 80%) !important;
}

.gradient-violet-green {
    background: linear-gradient(50deg,var(--violet) 0,var(--green) 80%) !important;
}

/*
Neon Lights
----------------------------------------------- */

.neon-light {
    position: absolute;
    height: 0;
    width: 6px;
    border-radius: 6px;
    color: var(--blue);
    background: currentColor;
    transition: height .4s ease-out, width .4s ease-out;
    box-shadow: 0 0 2rem currentColor, 0 0 0.8rem currentColor, 0 0 2.8rem currentColor, inset 0 0 1.3rem currentColor;
    right: 10vw;
}

.neon-light.no-move {
    transform: none !important
}

.neon-light.h {
    height: 6px;
    width: 0;
}

.neon-light.ew {
    width: 9px;
}

.neon-light.eh {
    height: 9px;
}

.neon-light.green {
    color: var(--green);
}

.neon-light.purple {
    color: var(--purple);
}

.neon-light.turquoise {
    color: var(--turquoise);
}

.neon-light.pink {
    color: var(--pink);
}

/*
Standout List
----------------------------------------------- */

ul.standout-list {
    list-style: none;
}

ul.standout-list li {
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 10px;
    color: var(--black);
}

ul.standout-list li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: -18px;
    height: 9px;
    width: 9px;
    border: solid 2px var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 7px -1px var(--purple);
}

/*
BANNER
--------------------------------------------------------------------------------------------- */

.banner-anim,
.default-anim {
    position: relative;
    top: 20px;
    opacity: 0;
    transition: all .4s ease-out;
}

.breakdance-dropdown--open .banner-anim,
.loaded .in-vp .banner-anim,
.in-vp.default-anim {
    top: 0;
    opacity: 1;
}

.in-vp.default-anim {
    transition-delay: .4s;
}

/*
Setup
----------------------------------------------- */

#n_homeBanner {
    height: 100vh;
    max-height: var(--windowHeight);
    position: relative;
    overflow: hidden;
}
.home-intro-wrap .absolute-cover {
    position: fixed;
    opacity: .52;
    bottom: auto;
    height: 100%;
}

/*
Video Background
----------------------------------------------- */

.background-video {
    position: fixed !important;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: -1;
    transition: all .3s ease-in-out;
    background: #000;
}

.background-video:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .52;
    z-index: 10
}

/* horizontally center the video */
.videobg-width {
  position: absolute;
  width: 100%; /* Change width value to cover more area*/
  height: 100%;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

/* set video aspect ratio and vertically center */
.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%;
  /* Vimeo timeline and play button are ~55px high */
  padding: 0; /* 16:9 ratio */
    top: 0 !important;
    left: 0 !important;
  /*top: -55px; 
  left: -97.7777px; /* 16:9 ratio */
}

.background-video iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  border: 0 none;
}

.hover-video-playing .background-video {
    opacity: .3;
}

/*
Content
----------------------------------------------- */

.banner-content {
    position: relative;
    width: 1400px;
    margin: 0 auto;
}

.banner-content .logo-svg {
    display: block;
    height: 160px;
    margin-bottom: 60px;
}

.banner-content .logo-svg svg {
    position: relative;
    display: block;
    height: 160px;
    width: auto;
    margin: 0 auto;
    color: #fff;
    transform: rotateY(90deg);
    transition: all .4s ease-out;
}

.loaded .banner-content .logo-svg svg {
    transform: rotateY(0);
    transition-delay: .2s;
}

/*
H1
----------------------------------------------- */

.banner-content h1 {
    opacity: 0;
}

.loaded .banner-content h1 {
    opacity: 1;
}

.banner-content h1 > span {
    display: inline-block;
    margin-bottom: 10px;
}

.banner-content h1 > span:nth-child(1) span:after {
    content: '';
    position: absolute;
    height: 5px;
    border-radius: 3px;
    width: 0;
    top: 105%;
    left: 0;
    background: #0081c9;
    transition: all .2s ease-out;
    box-shadow: 
              0 0 2rem #0081c9,
              0 0 0.8rem #0081c9,
              0 0 2.8rem #0081c9,
              inset 0 0 1.3rem #0081c9;
}

.loaded .banner-content h1 > span:nth-child(1) span:after {
    width: 100%;
    transition-delay: .95s;
}

/*
Banner Links
----------------------------------------------- */

.banner-links {
    text-shadow: 0 0 10px rgba(0,0,0,.8);
}

.banner-links .learn {
    opacity: .7;
}

.banner-links .bg {
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale(.67);
    opacity: 0;
    transition: all .35s ease-out;
    pointer-events: none;
    border-radius: 30px;
    background: center center / cover;
    overflow: hidden;
}

.banner-links .bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .4;
}

.banner-links a {
    position: relative;
    display: block;
    z-index: 10;
    padding: 20px;
}

.banner-links a:hover .learn {
    color: var(--blue);
    opacity: 1 !important;
}

.banner-links .flex-1-1:hover .bg {
    transform: scale(1.1);
    opacity: 1;
}

.loaded .banner-links .link1 {
    transition-delay: 1.2s;
}

.loaded .banner-links .link2 {
    transition-delay: 1.4s;
}

.loaded .banner-links .link3 {
    transition-delay: 1.6s;
}

/*
Banner Play
----------------------------------------------- */

.banner-play .play-icon {
    width: 70px;
    height: 70px;
}

.banner-play .play-icon .svg-play {
    padding: 20px;
    transform: translate(-50%, -50%) scale(0);
}

.banner-play .play-icon .svg-play svg {
    transform: scale(0);
}

.loaded .banner-play .play-icon .svg-circle circle {
    transition-delay: 1.2s;
}

.loaded .banner-play .play-icon .svg-play {
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 1.4s;
}

.loaded .banner-play .banner-anim {
    transition-delay: 1.4s;
}

/*
INTRO BG
--------------------------------------------------------------------------------------------- */

.intro-bg {
    top: 20%;
}

.intro-bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(#fff, transparent);
    background: -o-linear-gradient(#fff, transparent);
    background: linear-gradient(#fff, transparent);
    /*background: #fff;
    opacity: .7;
    /*background: linear-gradient(90deg, #fff, transparent);*/
}

.grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/*
TESTIMONIAL ROTATE
--------------------------------------------------------------------------------------------- */

.testimonial-bg {
    filter: grayscale(1);
    opacity: .35;
}

.testimonial .avatar img {
    display: block;
    width: 160px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 40px;
    /*border: solid 2px var(--blue);*/
    box-shadow: 0 0 2rem var(--blue), 0 0 0.8rem var(--blue), 0 0 2.8rem var(--blue), inset 0 0 1.3rem var(--blue);
}

.testimonial .quote svg {
    display: block;
    height: 50px;
    opacity: .4;
    margin: 0 auto 40px;
}

.testimonial .quote {
    color: #fff;
    font-size: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 20px;
    font-style: italic;
    font-weight: 600;
}

.testimonial .author {
    font-weight: 900;
    color: #fff;
}

.testimonial .author .title {
    opacity: .89;
}

.testimonial-dots .dot {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-dots .dot:before,
.testimonial-dots .dot:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #fff;
    opacity: .7;
}

.testimonial-dots .dot:after {
    display: none;
}

.testimonial-dots .dot.active:before {
    opacity: 1;
}

.testimonial-dots .dot.active:after {
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    opacity: 1;
    border: solid 1px #fff;
    display: block;
    background: transparent;
}

/*
Reviews
-------------------------------------------------- */

.reviews .review {
    margin: 0 30px;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.reviews .review.in-vp {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.reviews .review {
    border: solid 1px #fff;
    padding: 20px;
    border-radius: 10px;
}

/*
Small */

.reviews.small-show .review {
    margin: 0 30px 0 0;
    border: none;
    padding: 0;
}

.reviews.small-show .review > div {
    display: inline-block;
}

.reviews.small-show .review .count {
    display: none;
}

.reviews.small-show .review .stars {
    margin-right: 10px;
    position: relative;
    top: 2px;
}

/*
Stars */

.stars .icon-wrap {
    display: inline-block;
    max-width: none;
}

.stars svg {
    height: 20px;
    top: 0;
    padding: 0 4px;
}

/*
Count */

.count {
    line-height: 30px;
    margin: 4px 0 6px 0;
    font-size: 16px;
    font-weight: 600;
}

/*
Company */

.company svg {
    display: block;
    height: 30px;
    width: auto;
    margin: 0 auto;
}

.review-facebook .company svg {
    padding-bottom: 6px;
}

/*
Hover */

.reviews.small-show .review:hover {
    color: #fff
}

/*
GALLERY
--------------------------------------------------------------------------------------------- */

.gallery h2 {
    position: absolute;
    top: 60px;
    line-height: 1;
    margin: 0;
    left: 40px;
    font-size: 120px;
    white-space: nowrap;
    opacity: .2;
    pointer-events: none;
}

.gallery .gallery-items a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.gallery .gallery-items a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.6) 60%, rgba(0,0,0,.8));
    background: -o-linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.6) 60%, rgba(0,0,0,.8));
    background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.6) 60%, rgba(0,0,0,.8));
    z-index: 2;
    border-radius: 6px;
    opacity: .5;
}

.gallery .gallery-items .info {
    position: absolute;
    left: 0;
    padding: 0 40px;
    bottom: 90px;
    margin: 0;
    color: #fff;
    /*text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--blue), 0 0 82px var(--blue), 0 0 92px var(--blue), 0 0 102px var(--blue), 0 0 151px var(--blue);*/
    /*text-shadow: 0 0 22px var(--blue), 0 0 42px var(--blue), 0 0 52px var(--blue), 0 0 6px var(--blue), 0 0 91px var(--blue);
    /*transform: translateY(30%);*/
    font-size: 42px;
    z-index: 3;
}

.gallery .gallery-items .button {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
}

/*
ARTS1 TV CTA
--------------------------------------------------------------------------------------------- */

.arts1-tv-cta {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.arts1-tv-cta .logo {
    filter: brightness(0) invert(1);
    border-right: solid 1px #878787;
    padding-right: 40px;
    margin-right: 40px;
}

.arts1-tv-cta .content-wrap {
    padding: 30px;
}

.arts1-tv-cta .logo img {
    height: 100px;
    width: auto;
    max-width: none;
}

.arts1-tv-cta h5,
.arts1-tv-cta p {
    margin-bottom: 20px;
}

/*
Vimeo Wrap
----------------------------------------------- */

.arts1-tv-cta .vimeo-wrap .vimeo-play {
    display: none;
}

/*
Rebecca Variation
----------------------------------------------- */

.arts1-tv-cta .profile-circle .img-lazy-wrap {
    width: 200px;
    margin-top: -100px;
    padding-top: 200px !important;
    transform: translateY(-100px);
    margin: 0 auto -100px;
    border-radius: 50%;
    overflow: hidden;
}

/*
Stacked
----------------------------------------------- */

.arts1-tv-cta.stacked .content-wrap {
    padding: 60px 40px;
}

.arts1-tv-cta.stacked .vimeo-wrap {
    padding: 0;
    pointer-events: none;
}

.arts1-tv-cta.stacked .logo {
    border: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.arts1-tv-cta.stacked .logo img {
    margin: 0 auto;
}

/*
2 WEEKS FREE CTA
--------------------------------------------------------------------------------------------- */

.cta-try-free a {
    padding-top: 70px;
    padding-bottom: 70px;
}

.cta-try-free .absolute-cover {
    background: var(--black);
    opacity: .4;
}

/*
CAROUSEL
--------------------------------------------------------------------------------------------- */

.new-carousel .arrow {
    background: transparent;
    border: solid 2px var(--blue);
    color: var(--blue);
    transition: all .3s ease-in-out;
}

.new-carousel .arrow:hover {
    box-shadow: 0 0 9px var(--blue);
    background: var(--blue);
    color: #fff;
}

/*
RESPONSIVE
--------------------------------------------------------------------------------------------- */

@media ( max-width: 991px ) {
    
    #n_homeBanner {
    }
    
    .home-intro-wrap .parent-large {
        padding-top: 0;
    }
    
    #n_homeBanner .scroll-next-arrow {
        display: none
    }
    
}



