/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

.blog_card_Wrap {
  border-radius: 4px;
  border-bottom: 5px solid #E30613;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: #FFFFFF;
  width: 100%;
}

.blog_card_Wrap a {
  color: inherit;
}

.blog_card_Wrap .feature_Img {
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 227px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.blog_card_Wrap .feature_Content {
  width: 100%;
  height: 185px;
  padding: 25px;
  position: relative;
}

.blog_card_Wrap .feature_Content h4 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -.4px;
  margin: 0;
}

.blog_card_Wrap .feature_Content h4:after {
  display: none;
}

.blog_card_Wrap .feature_Content .date_float_btm {
  position: absolute;
  bottom: 20px;
  left: 25px;
  font-size: 10px;
  line-height: 14px;
  display: flex;
  align-items: center;
  color: #4A4A4A;
}

.blog_card_Wrap .feature_Content .date_float_btm img {
  width: 18px;
  margin-right: 10px;
}

.orangeCdUnderline {
  border-color: #DB8920;
}

.blueCdUnderline {
  border-color: #1C388D;
}

.lightblueCdUnderline {
  border-color: #04AEEE;
}

.ywllowCdUnderline {
  border-color: #FECF22;
}

#blog_post_bps {
  background-color: #FFFFFF;
  padding-bottom: 50px;
}

#blogPost_Content {
  margin-bottom: 25px;
}

#blogPost_Content #headerBlogPostInner {
  margin: 20px 0;
  height: 80px;
  display: flex;
  align-items: center;
}

#blogPost_Content #headerBlogPostInner .cat_wrap {
  border: 1px solid #4A4A4A;
  color: #4A4A4A;
  display: inline-block;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 19px;
}

#blogPost_Content #headerBlogPostInner .cat_wrap a {
  color: inherit;
}

#blogPost_Content .date_posted_bps {
  margin: 10px 0 5px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}

#blogPost_Content .date_posted_bps img {
  margin-right: 10px;
}

#blogPost_Content h1 {
  letter-spacing: -.7px;
  max-width: 610px;
  margin-bottom: 50px;
}

#blogPost_Content p {
  max-width: 90%;
  font-size: 15px;
  line-height: 26px;
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

@media only screen and (max-width: 1150px) {
  #blogPost_Content p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 680px) {
  #blogPost_Content {
    float: none;
  }
}

#blogPost_Sb #headerBlogPostSidebar {
  height: 80px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1120px) {
  #blogPost_Sb #headerBlogPostSidebar {
    flex-direction: column;
    height: inherit;
  }
  #blogPost_Sb #headerBlogPostSidebar a {
    margin-bottom: 10px;
  }
}

#blogPost_Sb .blog_feature_bps img {
  width: 100%;
  border-radius: 5px;
}

#blogPost_Sb .socail_sharer {
  background-color: #F1F1F1;
  border-radius: 4px;
  margin: 30px 0 25px 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#blogPost_Sb .socail_sharer h4 {
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

#blogPost_Sb .socail_sharer h4:after {
  content: '';
  position: absolute;
  width: 46px;
  background-color: #E30613;
  height: 4px;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico {
  position: relative;
  display: inline-block;
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico img {
  display: inline-block;
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico:after {
  position: absolute;
  content: 'Share by Email';
  background-color: #E30613;
  color: #FFFFFF;
  top: -30px;
  width: 110px;
  padding: 3px;
  font-size: 10px;
  left: -38px;
  border-radius: 4px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all;
  webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico:hover:after {
  visibility: visible;
  opacity: 1;
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico:nth-child(2):after {
  content: 'Share on Facebook';
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico:nth-child(3):after {
  content: 'Share on Twitter';
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico:nth-child(4):after {
  content: 'Share on LinkedIn';
}

#blogPost_Sb .socail_sharer .socialImgWrap .social_ico:nth-child(5):after {
  content: 'Share on Pinterest';
}

#blogPost_Sb .orangeTitle {
  font-weight: 300;
  margin-top: 0;
}

#blogPost_Sb .orangeTitle:after {
  bottom: -10px;
}

#blogPost_Sb .blog_card_Wrap {
  margin-bottom: 35px;
}

#blogPost_Sb .blog_card_Wrap:nth-child(3) {
  margin-bottom: 0;
}

@media only screen and (max-width: 680px) {
  #blogPost_Sb {
    max-width: 420px;
    width: 100%;
    margin: 40px auto;
    display: block;
    float: none;
  }
}

#blog_post_slider_bps {
  background-color: #FFFFFF;
  margin-bottom: -20px;
  position: relative;
}

#blog_post_slider_bps .item {
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
}

#blog_post_slider_bps .item .inner_Wrap {
  max-width: 1030px;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 15px;
}

#blog_post_slider_bps .item .inner_Wrap h3 {
  color: #FFFFFF;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: -0.7px;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  #blog_post_slider_bps .item .inner_Wrap h3 {
    font-size: 28px;
    line-height: 40px;
  }
}

#blog_post_slider_bps .item .inner_Wrap a {
  -ms-grid-row-align: center;
  align-self: center;
  display: table;
  margin: 40px auto 0 auto;
  padding: 15px 25px;
}

@media only screen and (max-width: 998px) {
  #blog_post_slider_bps .item .inner_Wrap a {
    margin: 25px auto 0 auto;
  }
}

#blog_post_slider_bps .item .background-imageCaro {
  position: absolute;
  opacity: 0.95;
  filter: saturate(0);
  webkit-filter: saturate(0);
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#blog_post_slider_bps .item .background-overlayCaro {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(37, 47, 101, 0.925);
}

#blog_post_slider_bps .owl-dots {
  position: absolute;
  bottom: 10px;
  z-index: 5;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}

#blog_post_slider_bps .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  margin-right: 3px;
  border-radius: 50%;
}

#blog_post_slider_bps .owl-dots .active {
  background-color: #DB8920;
}

#blog_post_slider_bps .btnCaroControl {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
  webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}

#blog_post_slider_bps .btnCaroControl:hover {
  background-color: rgba(37, 47, 101, 0.85);
}

@media only screen and (max-width: 998px) {
  #blog_post_slider_bps .btnCaroControl {
    display: none;
  }
}

#blog_post_slider_bps .prevControl {
  position: absolute;
  left: 25px;
  top: 45%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #FFFFFF;
}

#blog_post_slider_bps .nextControl {
  position: absolute;
  right: 25px;
  top: 45%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #FFFFFF;
}

#sector_archive_bps {
  padding: 50px 0 85px 0;
}

#sector_banner_bps {
  height: 345px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#sector_banner_bps .row {
  position: relative;
  z-index: 5;
}

#sector_banner_bps .row h1 {
  color: #FFFFFF;
  font-size: 50px;
  line-height: 55px;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  #sector_banner_bps .row h1:after {
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  #sector_banner_bps .row h1 {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 520px) {
  #sector_banner_bps .row h1 {
    font-size: 42px;
    line-height: 50px;
  }
}

#sector_banner_bps .bnr_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #sector_banner_bps {
    text-align: center;
  }
}

#sector_menubar_bps {
  background-color: #FFFFFF;
  width: 100%;
  border-bottom: 1px solid #979797;
}

#sector_menubar_bps ul {
  display: flex;
  margin: 0;
  padding: 0;
  height: 55px;
  list-style-type: none;
}

#sector_menubar_bps ul li {
  height: 55px;
  margin-right: 25px;
}

#sector_menubar_bps ul li a {
  height: 100%;
  display: flex;
  padding: 0;
  color: inherit;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  align-items: center;
  position: relative;
}

#sector_menubar_bps ul li a:after {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #DB8920;
  visibility: hidden;
  opacity: 0;
  transition: 0.15s all;
  webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
}

#sector_menubar_bps ul li:nth-child(2) a:after {
  background-color: #1C388D;
}

#sector_menubar_bps ul li:nth-child(3) a:after {
  background-color: #FECF22;
}

#sector_menubar_bps ul li:nth-child(4) a:after {
  background-color: #04AEEE;
}

#sector_menubar_bps ul li:nth-child(6) a:after {
  background-color: #E30613;
}

#sector_menubar_bps ul li:hover a:after {
  visibility: visible;
  opacity: 1;
}

#sector_menubar_bps ul li:last-child {
  margin-right: 0;
}

#sector_menubar_bps ul .active a {
  font-weight: 700;
}

#sector_menubar_bps ul .active a:after {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #sector_menubar_bps {
    display: none;
  }
}

#sectorHubs_sidebar {
  border-left: 1px solid #979797;
}

#sectorHubs_sidebar #innerWrapFnd {
  position: relative;
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

#sectorHubs_sidebar #innerWrapFnd #hub_partnerTitle {
  background-color: #DB8920;
  color: #FFFFFF;
  padding: 5px 20px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.25px;
}

#sectorHubs_sidebar #innerWrapFnd img {
  display: block;
  margin-bottom: 5px;
}

#sectorHubs_sidebar #innerWrapFnd h4 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 40px;
}

#sectorHubs_sidebar #innerWrapFnd h4:after {
  bottom: -15px;
}

#sectorHubs_sidebar #innerWrapFnd ul {
  list-style-type: none;
  margin-left: 13px;
}

#sectorHubs_sidebar #innerWrapFnd ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 6px;
}

#sectorHubs_sidebar #innerWrapFnd ul li a {
  color: inherit;
}

#sectorHubs_sidebar #innerWrapFnd ul li:before {
  content: ">";
  color: #DB8920;
  display: inline-block;
  margin-left: -0.9em;
  width: 0.9em;
  font-weight: 300;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta {
  height: 180px;
  max-width: 250px;
  width: 100%;
  margin: 30px 0;
  position: relative;
  background-color: #252F65;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta .contentInner {
  padding: 20px;
  height: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta .contentInner h5 {
  margin: 0;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -.4px;
  max-width: 180px;
  color: #FFFFFF;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta .contentInner h5:after {
  display: none;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta .contentInner .btnbps {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 15px;
  height: auto;
  font-size: 14px;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta .overlayCta {
  background-color: rgba(37, 47, 101, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#sectorHubs_sidebar #innerWrapFnd .newsltter_cta .bg_cta_img {
  background-image: url("../img/new-assets/newsletter-mockup.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#sectorHubs_sidebar #innerWrapFnd .development_ctn {
  height: 180px;
  max-width: 250px;
  width: 100%;
  margin: 30px 0 0 0;
  position: relative;
  background-color: #DB8920;
}

#sectorHubs_sidebar #innerWrapFnd .development_ctn .contentInner {
  padding: 20px;
  height: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#sectorHubs_sidebar #innerWrapFnd .development_ctn .contentInner h5 {
  margin: 0;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -.4px;
  max-width: 190px;
  color: #FFFFFF;
}

#sectorHubs_sidebar #innerWrapFnd .development_ctn .contentInner h5:after {
  display: none;
}

#sectorHubs_sidebar #innerWrapFnd .development_ctn .contentInner .btnbps {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 15px;
  height: auto;
  font-size: 14px;
}

#sectorHubs_sidebar #innerWrapFnd .development_ctn .bg_cta_img {
  background-image: url("../img/new-assets/CPD-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 820px) {
  #sectorHubs_sidebar #innerWrapFnd {
    max-width: 70%;
  }
}

@media only screen and (max-width: 1030px) {
  #sectorHubs_sidebar {
    border-left: 0;
  }
}

#sectorHub_LeftWrap #opening_sector_txt {
  margin: 0 0 20px 0;
}

#sectorHub_LeftWrap #opening_sector_txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_title h2 {
  letter-spacing: -.7px;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_title h2:after {
  width: 100%;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_title a {
  color: inherit;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -.4px;
  font-weight: 400;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap {
  max-width: 31%;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap:last-child {
  margin-right: 0;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap .feature_Img {
  height: 227px;
}

@media only screen and (max-width: 520px) {
  #sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap .feature_Img {
    height: 165px;
  }
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap .feature_Content {
  height: 140px;
  padding: 15px;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap .date_float_btm {
  bottom: 10px;
  left: 15px;
}

@media only screen and (max-width: 998px) {
  #sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts .blog_card_Wrap {
    max-width: 46%;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 998px) {
  #sectorHub_LeftWrap .sector_typeRecents_wrap .sector_types_posts {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .category_secotr_formt {
  flex-wrap: wrap;
}

#sectorHub_LeftWrap .sector_typeRecents_wrap .category_secotr_formt .blog_card_Wrap {
  margin-bottom: 25px;
}

.cpd-banner {
  position: relative;
}

.cpd-banner .cpd-logo {
  position: absolute;
  top: 0;
  right: 34px;
  padding: 15px 3px 3px;
  max-width: 134px;
  box-shadow: 1px 2px 8px -3px rgba(0, 0, 0, 0.25);
}

.cpd-banner .cpd-logo img {
  max-width: 100%;
}

.cpd-banner .h1-red {
  margin-top: 5.5em;
}

@media only screen and (min-width: 768px) {
  .cpd-banner .h1-red {
    margin-top: 0;
  }
}

.cpd-banner .cdp-banner-img {
  margin-right: -13px;
}

.h1-red, .h2-red {
  color: #E30613;
}

.p-intro {
  font-size: 1.3em;
}

.process-list {
  font-weight: bold;
}

#cpd-carousel .owl-stage {
  display: block !important;
}

#cpd-carousel .owl-item {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

#cpd-carousel .item {
  text-align: center;
}

#cpd-carousel .item img {
  max-width: 140px;
  margin: 0 auto;
}

#cpd-carousel .owl-nav {
  display: block;
  margin: 15px auto;
  text-align: center;
}

#cpd-carousel .owl-nav button {
  position: relative;
  padding: 22px !important;
  outline: 0;
  border: none;
  -moz-outline-style: none;
}

#cpd-carousel .owl-nav span {
  position: absolute;
  font-size: 40px;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  line-height: 35px;
}

@media only screen and (min-width: 1024px) {
  #cpd-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin-top: -22px;
  }
  #cpd-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -22px;
  }
  #cpd-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -22px;
  }
}

@media only screen and (min-width: 1024px) {
  #cpd-carousel {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.cpd-register-col {
  position: relative;
}

.cpd-register-col:after {
  display: none;
  position: absolute;
  content: "";
  width: 1px;
  height: 86%;
  top: 7%;
  right: 0;
  background-color: #979797;
}

@media only screen and (min-width: 681px) {
  .cpd-register-col:after {
    display: block;
  }
}

.cpd-item {
  padding: 0;
}

.cpd-item__img {
  display: block;
  margin: 30px auto;
  max-width: 180px;
  vertical-align: middle;
}

.cpd-item__text {
  background: #f7f7f7;
  background: linear-gradient(0deg, #f7f7f7 0%, #fcfcfc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f7f7",endColorstr="#fcfcfc",GradientType=1);
}

.cpd-item__icons {
  margin-bottom: 1.5em;
}

.cpd-item__icons span {
  display: inline-block;
  vertical-align: middle;
  color: #E30613;
  font-size: 0.9em;
}

.cpd-item__icons img {
  max-width: 20px;
  margin-right: 10px;
}

.popup {
  background: #333333;
  background: rgba(51, 51, 51, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 20000;
  overflow-y: auto;
}

.popup--visible {
  display: flex;
}

.popup .span {
  background: #fff;
}

.popup__close {
  cursor: pointer;
}

.popup__close:hover, .popup__close:active {
  color: #E30613;
}

.popup-content {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  max-width: 770px;
  background-color: #FFFFFF;
  padding: 30px 15px;
  margin-bottom: 15px;
  box-shadow: -1px -1px 11px -3px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin: 0 auto;
}

.popup-content i {
  font-style: normal;
}

.popup-content h1 {
  margin-bottom: 30px;
}

.popup-content .ui.red.button {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 100%;
}

.popup-content .popup__image {
  font-size: 0.9em;
  margin: 15px auto 30px;
}

.popup-content .cdp-popup-img {
  margin-right: -27px;
}

@media only screen and (min-width: 768px) {
  .popup-content {
    position: static;
    top: auto;
    margin-right: 15px;
    margin-left: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .popup-content h1 {
    margin-bottom: 50px;
  }
  .popup-content .popup__close {
    margin: 0;
  }
}

div {
  outline: none !important;
}

.newBps_Style h1, .newBps_Style h2, .newBps_Style h3, .newBps_Style h4, .newBps_Style h5, .newBps_Style h6 {
  position: relative;
  margin: 20px 0 40px 0;
  font-weight: 700;
}

.newBps_Style h1:after, .newBps_Style h2:after, .newBps_Style h3:after, .newBps_Style h4:after, .newBps_Style h5:after, .newBps_Style h6:after {
  content: '';
  position: absolute;
  width: 74px;
  background-color: #E30613;
  height: 6px;
  bottom: -20px;
  left: 0;
}

.newBps_Style .orangeTitle:after {
  background-color: #DB8920;
}

.newBps_Style .blueTitle:after {
  background-color: #1C388D;
}

.newBps_Style .yellowTitle:after {
  background-color: #FECF22;
}

.newBps_Style .ligblueTitle:after {
  background-color: #04AEEE;
}

.txtredTitle {
  color: #E30613 !important;
}

.txtorangeTitle {
  color: #DB8920 !important;
}

.txtblueTitle {
  color: #1C388D !important;
}

.txtyellowTitle {
  color: #FECF22 !important;
}

.txtligblueTitle {
  color: #04AEEE !important;
}

/* Buttons */
.btnbps {
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  border-radius: 4px;
  padding: 0 25px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnbps img {
  margin-right: 8px;
  transition: 0.15s all;
  webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
}

.btnbps:hover {
  color: inherit;
}

.btnbps:hover img {
  margin-bottom: 5px;
}

.orangeBTn {
  background-color: #DB8920;
  color: #FFFFFF;
}

.orangeBTn:hover {
  color: #FFFFFF;
}

.blueBTn {
  background-color: #1C388D;
  color: #FFFFFF;
}

.blueBTn:hover {
  color: #FFFFFF;
}

.greyBTn {
  background-color: #4A4A4A;
  color: #FFFFFF;
}

.greyBTn:hover {
  color: #FFFFFF;
}

/*# sourceMappingURL=style.css.map */