@charset "UTF-8";


.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownSm {
  from {
    opacity: 0;
    transform: translate3d(0, -40%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownSm {
  animation-name: fadeInDownSm;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpSm {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpSm {
  animation-name: fadeInUpSm;
}


@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}



.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInUp2 {
  from {
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp2 {
  animation-name: slideInUp2;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper,
.dnd-section > .row-fluid,
.page-center {
  margin: 0 auto;
}
.banner-section .dnd-section {
  padding: 0 !important;
}
@font-face { 
  font-family: proxima-nova; 
  src: url("https://use.typekit.net/af/c47696/00000000000000003b9b305e/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n1&v=3") format("woff2"), url("https://use.typekit.net/af/c47696/00000000000000003b9b305e/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n1&v=3") format("woff"), url("https://use.typekit.net/af/c47696/00000000000000003b9b305e/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n1&v=3") format("opentype"); 
  font-style: normal; 
  font-weight: 100; 
  font-display: auto; 
}

@font-face { 
  font-family: proxima-nova; 
  src: url("https://use.typekit.net/af/cebe0e/00000000000000003b9b3060/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/cebe0e/00000000000000003b9b3060/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/cebe0e/00000000000000003b9b3060/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n3&v=3") format("opentype"); 
  font-style: normal; 
  font-weight: 300; 
  font-display: auto; 
}

@font-face { 
  font-family: proxima-nova;
  src: url("https://use.typekit.net/af/40ff7f/00000000000000003b9b3061/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i3&v=3") format("woff2"), 
    url("https://use.typekit.net/af/40ff7f/00000000000000003b9b3061/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i3&v=3") format("woff"), 
    url("https://use.typekit.net/af/40ff7f/00000000000000003b9b3061/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i3&v=3") format("opentype"); 
  font-style: italic;
  font-weight: 300; 
  font-display: auto; }

@font-face { 
  font-family: proxima-nova; 
  src: url("https://use.typekit.net/af/705e94/00000000000000003b9b3062/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/705e94/00000000000000003b9b3062/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/705e94/00000000000000003b9b3062/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("opentype"); 
  font-style: normal; 
  font-weight: 400; 
  font-display: auto; 
}

@font-face { 
  font-family: proxima-nova; 
  src: url("https://use.typekit.net/af/5c70f2/00000000000000003b9b3063/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i4&v=3") format("woff2"), 
    url("https://use.typekit.net/af/5c70f2/00000000000000003b9b3063/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i4&v=3") format("woff"), 
    url("https://use.typekit.net/af/5c70f2/00000000000000003b9b3063/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i4&v=3") format("opentype"); 
  font-style: italic; 
  font-weight: 400; 
  font-display: auto;
}

@font-face { 
  font-family: proxima-nova; 
  src: url("https://use.typekit.net/af/6e816b/00000000000000003b9b3064/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n5&v=3") format("woff2"), url("https://use.typekit.net/af/6e816b/00000000000000003b9b3064/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n5&v=3") format("woff"), url("https://use.typekit.net/af/6e816b/00000000000000003b9b3064/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n5&v=3") format("opentype"); 
  font-style: normal; 
  font-weight: 500; 
  font-display: auto; 
}

@font-face { 
  font-family: proxima-nova; src: 
    url("https://use.typekit.net/af/576d53/00000000000000003b9b3066/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n6&v=3") format("woff2"), url("https://use.typekit.net/af/576d53/00000000000000003b9b3066/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n6&v=3") format("woff"), url("https://use.typekit.net/af/576d53/00000000000000003b9b3066/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n6&v=3") format("opentype"); 
  font-style: normal; 
  font-weight: 600; 
  font-display: auto; 
}

@font-face { 
  font-family: proxima-nova; 
  src: url("https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n7&v=3") format("opentype"); 
  font-style: normal; 
  font-weight: 700; 
  font-display: auto; 
}

body {
  line-height: 1.11111;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0 0 10px;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s linear;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
  line-height: 1.2;
}
h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  h2 {
    margin-top: 0;
  }

}
@media (max-width: 479px) {
  h2 {
    margin-top: 15px;
  }

}
/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

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

/* Code blocks */

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

b, optgroup, strong {
  font-weight: 700;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
.hs-page form {
  margin-bottom: 30px;
}

/* Form fields */

.hs-form-field {
		margin-bottom: 1.4rem;
}

/* Labels */

form label {
		display: block;
		margin-bottom: 0.35rem;
		color: #a4a4a4;
		font-family: Barlow;
		font-size: 13px;
}
.form-title  {
		font-size: 20px;
    line-height: 23px;
		font-weight: 600;		
    margin-bottom: 25px;
}
/* Help text - legends */

form legend {
		font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
		box-sizing: border-box;
		padding: 0 15px;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		border-radius: 15px;
		display: inline-block;
		width: 90%;
		min-height: 40px;
		font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
		font-size: 16px;
		font-weight: normal;
		line-height: 22px;
		border: 1px solid;
		outline:none !important;
}

form fieldset {
		max-width: 100% !important;
}
form .input .hs-button {
    margin-top: 20px;
}
.actions {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 17px 0px;
}
/* Inputs - checkbox/radio */

form .inputs-list {
		margin: 0;
		padding: 0;
		list-style: none;
}

form .inputs-list > li {
		display: block;
		margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
		vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
		cursor: pointer;
		margin-right: 0.35rem;
}

/* Inputs - datepicker */

.hs-dateinput {
		position: relative;
}

.hs-dateinput:before {
		content:'\01F4C5';
		position: absolute;
		right: 10%;
		top: 50%;
		transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
		color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
		border-radius: 0;
		box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
		border-radius: 0 !important;
		color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
		background-color: transparent;
		border: initial;
		padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
		font-size: 0.875rem;
		margin: 0 0 1.4rem;
}

form .hs-richtext img {
		max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
		margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
		color: red;
}

.hs-input.invalid.error {
		border-color: #ef6b51;
}
.hs-error-msgs.inputs-list {
    margin: 0 0 5px;
    width: 100%;
    padding-left: 5px;
}

.hs-error-msgs.inputs-list li {
    margin: 0;
}
.hs-error-msg {
		color: #f2545b;
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 4px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
    line-height: 18px;
    white-space: normal;
    font-weight: normal;
}
.hs-error-msgs label {
		color: #f2545b;
		font-family: Barlow;
}

/* Submit button */

form input[type=submit],
form .hs-button {
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 14px;
    font-family: Barlow;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    position: relative;
    text-align: center;
    transition: all .15s linear;
    border-style: solid;
    border-width: 1px;
}

/* Captcha */

.grecaptcha-badge {
		margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}
.header_outer.no-navigation .header_logo a {
  height: 75px;
}
body.noscroll {
  overflow: hidden;
}
.header_outer {
  position: relative;
  z-index: 10;
}
.main_header {
  padding: 0 6%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.main_header.scroll {
  background: #FFF;
}
.header_container.content-wrapper {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width:100%;
}
.header_logo {
  padding-left: 5px;
  padding-right: 5px;
  width: 7vw;
  min-width: 145px;
}
.header_logo a {
  display: flex;
  flex-wrap: wrap;
}
.header_logo img {
  max-width: 100%;
}
img {
  max-width: 100%;
}


.header_button a {
  border-radius: 5px;
  letter-spacing: 1.5px;
  -webkit-transition: 350ms;
  transition: 350ms;
  font-family: proxima-nova,sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  padding: 9px 15px;
  border: 0;
  line-height: 20px;
  white-space: nowrap;
}
.header_button a:hover {
  margin-top: 0;
  border-radius: 5px;
  letter-spacing: 1.5px;
  -webkit-transform: translate(0,-2px);
  -ms-transform: translate(0,-2px);
  transform: translate(0,-2px);
}

/*-- langauge --*/

.header_menu_wrapper {
  display: flex;
  align-items: center;
}

.header_language > ul > li img {
  width: 30px;
}

.header_language ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header_language > ul > li span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 75px;
  padding-right: 21px;
  padding-left: 21px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.header_language ul li ul {
  position: absolute;
  left: auto;
  top: 70px;
  right: 0;
  bottom: auto;
  display: none;
  width: auto;
  height: auto;
  padding: 5px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #f7f7f7;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgb(0 0 0 / 20%);
}

.header_language ul li {
  position: relative;
}

.header_language ul li ul li a {
  width: auto;
  padding: 5px 20px;
  max-width: 100%;
  display: inline-block;
}
.header_language ul li ul li:last-child a img {
  padding-top: 5px;
  padding-bottom: 5px;
}
.home_se .header_language ul li ul li:last-child a img {
  padding-top: 0;
  padding-bottom: 0;
}
.home_se .header_language ul li ul li a:hover, 
.home_en .header_language ul li ul li a:hover,
.home_no .header_language ul li ul li a:hover{
  transform: scale3d(1.05, 1.05, 1);
}

.header_outer.home_no .header_button a {
  border-radius: 3px;
}
.header_outer.home_no .header_button a:hover {
  box-shadow: 1px 1px 12px 0 rgb(0 0 0 / 8%);
  -webkit-transform: translate(2px,0);
  -ms-transform: translate(2px,0);
  transform: translate(2px,0);
  background-color: #00c3a4;
}

/*-- Hamburger Menu --*/
.hamburger_wrap {
  display: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  margin-left: 9px;
}

.hamburger_line {
  width: 25px;
  height: 1px;
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 0;
  background-color: #15113b;
  color: #15113b;
  transition: all 0.2s ease;
}

.hamburger_wrap .hamburger_line:nth-child(1),
.hamburger_wrap .hamburger_line:nth-child(3) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.hamburger_wrap .hamburger_line:nth-child(2) {
  opacity: 1;
}

.hamburger_wrap.open .hamburger_line:nth-child(1) {
  transform: translate3d(0px, 7px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.hamburger_wrap.open .hamburger_line:nth-child(2) {
  opacity: 0;
}

.hamburger_wrap.open .hamburger_line:nth-child(3) {
  transform: translate3d(0px, -7px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

/*-- Home Page Headers Start --*/
.header_outer.home_da .L_sninger .mega_menu_title-box a {font-size: 14px !important;}
.header_outer.home_da .header_button a,
.header_outer.home_no .header_button a,
.header_outer.home_se .header_button a {letter-spacing: 0px;}

.main_header .header_logo .blue {
  display: none;
}
.main_header.scroll .header_logo .white {
  display:none;
}
.main_header.scroll .header_logo .blue {
  display:block;
}

/*-- Da Header Resources Order --*/
.header_outer.da .header_menu .Ressourcer ul.submenu.level-2>li.Webinarer {order:4;}
.header_outer.da .header_menu .Ressourcer ul.submenu.level-2>li.Events {order:5;}
.header_outer.da .header_menu .Ressourcer ul.submenu.level-2>li.Viden {order:3;}
.header_outer.home_da .header_menu .Ressourcer ul.submenu.level-2>li.Webinarer {order:4;}
.header_outer.home_da .header_menu .Ressourcer ul.submenu.level-2>li.Events {order:5;}
.header_outer.home_da .header_menu .Ressourcer ul.submenu.level-2>li.Viden {order:3;}

/*-- Home Page Headers End --*/

@media (min-width:1025px) and (max-width:1199px) { 
  .header_menu ul.submenu.level-1 > li > a {
    padding: 9px 9px !important;
  }
} 
@media (min-width:992px) and (max-width:1024px) { 
  .header_menu ul.submenu.level-1 > li > a {
    padding: 9px 7px !important;
    font-size:15px !important;
  }
} 
@media (min-width:992px) {
  .mobile_menu {
    display:none;
  }
  .header_language ul li:hover ul {
    display: flex;
  }
}

@media (max-width:991px) {
  body.mobile-open {
    overflow: hidden;
  }
  .main_header {
    padding: 0 3%;
  }
  .header_menu {
    display: none;
  }

  .header_button {
    display: none;
  }
  .hamburger_wrap {
    display:block;
  }
  .header_language ul li ul.lang_show {
    display: flex;
  }
  .hs-landing-page .header_outer {
    min-height: 80px;
  }
  .header_outer.da .header_menu .Ressourcer ul.submenu.level-2>li.Webinarer,
  .header_outer.da .header_menu .Ressourcer ul.submenu.level-2>li.Events,
  .header_outer.da .header_menu .Ressourcer ul.submenu.level-2>li.Viden,
  .header_outer.home_da .header_menu .Ressourcer ul.submenu.level-2>li.Webinarer,
  .header_outer.home_da .header_menu .Ressourcer ul.submenu.level-2>li.Events,
  .header_outer.home_da .header_menu .Ressourcer ul.submenu.level-2>li.Viden {
    order:unset;
  }
}
@media (max-width:767px) {
  .header_logo {
    width: 10vw;
    max-width: 90%;
    min-width: 120px;
  }
  .header_outer {
    min-height: 75px;
  }
  .mobile_menu .header_button a {
    padding-right: 18px;
    padding-left: 18px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    border-radius: 8px;
  }

}
@media (max-width:479px) { 
  .main_header {
    padding: 0 20px;
  }
  .hamburger_wrap {
    margin-left: 4px;
  } 
  .header_outer .mobile_menu {
    margin-top: 49px;
  }

}
footer.footer.no-navigation .footer_cta_wrap {
  margin-bottom: 95px;
}
.footer {
  padding: 95px 6%;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.footer_cta_left h2 {
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 38px;
}

.footer_cta_left {
  max-width: 300px;
}

.footer_cta_left img {}

.footer_cta_left a {
  display: block;
  width: 180px;
  margin-top: 10px;
  margin-bottom: 0;
}

.footer_cta_left a img {
  max-width: 85%;
  padding-top: 20px;
  padding-bottom: 20px;
  object-fit: contain;
}

.footer_cta_right {
  width: 300px;
  margin-left: 150px;
}

.button_demo a, .button_signup a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  -webkit-transition: 350ms;
  transition: 350ms;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
  padding: 9px 15px;
  line-height: 20px;
}
.button_demo a {
  border: 0;
}
.button_signup a {
  border: 1px solid;
  margin-top: 20px;
}

.footer_cta_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.social_links {
  display: flex;
  margin-top: 20px;
  margin-left: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.social_links img {
  width: 30px;
}
.contact_in a , .contact_in span  {
  display:flex;
  line-height: 20px;
}
.contact .contact_in:last-child a {
  display: inline-block;
}
.contact_in a img, .contact_in span img {
  width: 180px;
  max-width: 100%;
}
.social_links a {
  margin-right: 8px;
  padding: 6px;
  border-radius: 4px;
  background-color: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}


.footer_grid {
  display: flex;
  gap: 35px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer_grid_col {
  border-top: 1px solid;
  font-size: 16px;
  width: 25%;
}

.footer_grid_title .hs_cos_wrapper_type_text {
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Barlow,sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  line-height: 20px;
}
.footer_grid_col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer_grid_col ul li a {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 400;
  text-decoration: none;
  line-height: 20px;
}

.footer_grid_col ul li a:hover {
  text-decoration: underline;
}

.contact_in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
footer.footer.home.da .copyrights {
    visibility: hidden;
}
.contact_in img {
  max-width: 30px;
  margin-right: 10px;
}

.copyrights {
  font-size: 16px;
  text-align: left;
}

.copyrights .hs_cos_wrapper_type_text {
  font-weight: 400;
  line-height: 20px;
}
.footer.da .footer_cta_wrap  {
  margin-bottom: -0.5px;
}
.footer.home.da .footer_cta_wrap {
  margin-bottom: 0px;
}
.footer.home.se {
  padding-top: 45px;
}
.footer.home.se .footer_cta_left a img {
  max-width: 100%;
}
.footer.home.se .footer_cta_left a img, .footer.home.no .footer_cta_left a img {
  max-width: 100%;
  padding-bottom: 0;
  padding-top: 0;
}
.footer.home.da, .footer.home.no {
  padding-top: 45px;
}
@media (max-width:991px) {
  .footer {
    padding-top: 50px;
  }
  .footer_container.content-wrapper {
    max-width: 90%;
    margin: auto auto 0;
    padding-bottom: 0;
  }
  .footer_grid {
    flex-wrap: wrap;
  }
  .footer_grid_col {
    width: calc(50% - 18px);
  }
  .footer_cta_left {
    max-width: 339.72px;
  }

  .footer_cta_right {
    width: 360px;
    margin-left: 12px;
  }

  .footer_cta_left a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
    margin-top: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer_cta_left a img {
    max-width: 85%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer_cta_wrap {
    width: 100%;
  }
  .footer_cta_left h2 {
    margin-top: 0;
  }
  .footer.home.da .copyrights, .footer.home.se .copyrights  {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .footer.home.no .footer_cta_left {
    max-width: 20%; 
  }
  .footer.home.no .footer_cta_left a {
    width: 100%; 
  }
  .footer.home.no .footer_cta_wrap {
    width: 95%;
  }
  .footer.home.no .copyrights {
    text-align: center;
  }
  .footer.home.da .footer_cta_wrap {
    width: 95%;
  }
  .footer.home.da .footer_cta_left {
    max-width: 20%;
  }
  .footer.home.da .footer_cta_left a {
    width: 100%; 
  }
  .footer.da .footer_grid_col:nth-child(3) {
    order: 4;
  }
  footer.footer.no-navigation .footer_cta_left a {
    width: 180px;
  }
  footer.footer.no-navigation .footer_cta_wrap {
    margin-bottom: 40px;
  }
}

@media (max-width:767px) { 
  .footer {
    padding-top: 30px;
  }
  .footer_cta_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer_cta_right {
    margin-left: 0;
    padding-top: 24px;
  }
  .social_links {
    margin-top: 9px;
  }
  .footer_cta_left a {
    display: block;
    width: 150px;
    margin-bottom: 5px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer_cta_left {
    max-width: none;
  }

  .footer_cta_left h2 {
    display: none;
  }

  .footer_grid {
    padding-bottom: 0;
  }
  .footer_grid_col {
    width: calc(100% - 0px);
    margin-bottom: 50px;
  }
  .footer_grid .footer_grid_col:nth-child(1) {
    order: 4;
  }

  .footer_grid .footer_grid_col:nth-child(3) {
    order: 3;
  }
  .footer.da .footer_cta_right {
    display: none;
  }
  .footer.da .footer_grid .footer_grid_col:nth-child(1) {
    order: 1;
  }
  .footer.da .footer_grid .footer_grid_col:nth-child(2) {
    order: 2;
  }
  .footer.da .footer_grid .footer_grid_col:nth-child(4) {
    order: 2;
  }

  .footer_cta_right {
    padding-top: 0;
  }
  .footer.home.da .footer_cta_wrap, .footer.home.se .footer_cta_wrap {
    align-items: center;
  }
  .footer.home.da .social_links, .footer.home.se .social_links {
    justify-content: center;
  }

  .footer.home.se .copyrights, .footer.home.no .copyrights {
    padding-top: 27px;
  }
  .footer.home.no .footer_cta_wrap {
    align-items: center;
  }

  footer.footer.home.no .social_links {
    justify-content: center;
  }
  .main_footerEn .footer_cta_right {
    padding-top: 26px;
  }

  .footer.home.da .copyrights {
    padding-top: 27px;
  }
  .footer.home.da .footer_cta_right {
    display: block;
  }
  .footer.home.da .footer_cta_left {
    max-width: 100%;
  }
  .footer.home.da .footer_cta_left a {
    width: 150px;
  }


}
@media (max-width:479px) {
  .footer_cta_right {
    width: 100%;
  }
  .social_links {
    margin-top: 6px;
    justify-content: center;
  }
  .footer_cta_left {
    max-width: none;
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .copyrights {
    font-size: 14px;
    text-align: left;
  }
  .contact_in:nth-child(1) a img, .contact_in:nth-child(2) span img, .contact_in:nth-child(3) a img {
    width: auto;
    max-width: 235px;
    min-width: 235px;
    height: auto;
  }
  .footer.home.da .footer_cta_right {
    display: block;
    padding-top: 0;
  }
  .footer.home.da {
    padding-top: 45px;
  }
  .footer.home.da .copyrights , 
  .footer.home.se .copyrights, 
  .footer.home.no .copyrights {
    padding-top: 52px;
  }
  .footer.home.no .footer_cta_left {
    max-width: 150px;
  }
  .footer.home.da .contact .contact_in:last-child a img {
    max-width: 235px;
    min-width: 235px;
  }
  .footer{
    overflow: hidden;
  }
}
@media (max-width:400px) {
  .post_listings .post_title {
    font-size: 18px;
    line-height:25px;
  }
}

@media (min-width:992px) and (max-width:1440px) {
  .copyrights {
    padding: 0;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Home Page */
.home_pg header.header_outer {
  min-height: auto;
}

.home_pg .banner_wrap h1 {
  margin-bottom: 20px;
  color: #000;
}

.home_pg .banner_wrap .ban_cont p {
  line-height: 1.7vw;
  color: #000;
}

.home_row1 .hscwic-wrapper:last-child {
  margin-bottom: 30px;
}

.home_row1 .cwbg-wrapper .hs-btn {
  border-radius: 5px;
}
html[lang="no"] .home_row1 .cwbg-wrapper .hs-btn {
  border-radius: 6px;
}
.home_row1 .page-header.section-header {
  padding-top: 95px;
  padding-bottom: 35px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.home_row2 .hscwic_cont h3 {
  line-height: 30px;
}

.home_row2 .hscwic_cont p {
  color: #a4a4a4;
  font-size: 23px;
}
.home_row2 .btmpn-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.scroll-header .home_pg .header_logo {
  padding-left: 0;
  padding-right: 0;
}
.fxd_logo {
  display: none; 
} 
body:not(.scroll-header) .home_pg .header_menu ul.submenu.level-1>li>a {
  color: #fff;
}
body:not(.scroll-header) .home_pg .fxd_logo {
  display: block;
}
body:not(.scroll-header) .home_pg .scroll_logo {
  display: none;
}
body:not(.scroll-header) .home_pg .hamburger_line {
  background-color: #fff;
}  



footer.footer.ft2 {
  padding-top: 45px;
}
footer.footer.ft2 .footer_cta_left a img {
  max-width: 100%; 
  padding-top: 0;
  padding-bottom: 0;
}
.nopd .span12 > .dnd-section {
  padding: 0;
}
.nopd .dnd-section>.row-fluid {
  max-width: 100%;
}
.invs_pg .header_outer {
  background-color: #f2f2f2;
}

.invs_pg .tiwc-wrapper .tiwc_main_title {
  margin-left: 20px;
  text-align: left;
}
.invs_row2 .section.book-demo_w_image.devider {
  width: auto;
  height: 25vw;
  padding-bottom: 95px;
  background-color: transparent;
  background-position: 50% 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
}

.invs_row4 .tm_mdl .section.grey-bg.wf-section.dnd-section h2 {
  margin-bottom: 30px;
}
.gdpr_row1 .logos .logo_wrap:nth-child(1) img {
  width: 7vw;
  min-width: 145px;
}

.gdpr_row1 .logos .logo_wrap:nth-child(4) img {
  width: 5vw;
  min-width: 110px; 
}
.body-wrapper .gdpr_row1 .dnd-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.gdpr_row1 .hscwic-wrapper.right.hscwic_3 {
  margin-bottom: 30px;
}
.gdpr_row1 .cwbg-wrapper .cwbg_cont h2 {
  margin-top: 20px;
}
.gdpr_row2   .cmprsn-wrapper .main_sec {
  padding-top: 95px;
}
.gdpr_row3 .hscwic-wrapper .hscwic_col img {
  max-width: 600px;
}

.gdpr_row3 .btmpn-wrapper {
  padding-top: 50px;
}
.gdpr_row2 .hscwic-wrapper .hscwic_col p strong {
  text-transform: uppercase;
}
.gdpr_row2 .hscwic-wrapper .hscwic_list {
  margin-bottom: 0;
}

.gdpr_row2 .hscwic-wrapper .hscwic_list + .hscwic_list {
  margin-top: 15px;
}

.gdpr_row2 .hscwic-wrapper .hscwic_list p {
  color: #333333;
}

.other_sol_pg .header_outer {
  min-height: auto;
}
.other_sol_pg .banner_wrap {
  min-height: 28vw;
}
.other_sol_pg .banner_wrap h1 {
  font-weight: 700;
}


/* Modules 2024 - Blend */

.block {
  display: block;
}

.preheader {
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.63px;
  text-transform: uppercase;
  margin-bottom: -3px;
}

a.btn-reg.btn--text {
  font-size: 16px;
  font-family: Barlow, sans-serif;
  position: relative;
  padding-right: 37px;
  display: inline-block;
  font-weight: 500;
}

a.btn-reg.btn--text:before {
  position: absolute;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: 0;
  background-color: #00acef;
  transition: right .3s ease-in-out;
}

a.btn-reg.btn--text:hover {
  color: #00acef;
}

a.btn-reg.btn--text:hover:before {
  right: 37px;
}

a.btn-reg.btn--text:after {
  content: url('data:image/svg+xml;utf-8,<svg width="6" height="11" viewBox="0 0 6 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5.49297 5.49297" stroke="#00ACEF" stroke-linecap="round"/><path d="M5.49292 5.49292L0.999963 9.86131" stroke="#00ACEF" stroke-linecap="round"/></svg>');
  position: absolute;
  right: 0;
  top: 0;
}

.light-btn a.btn-reg.btn--text {
  color: #ffffff;
}

.light-btn a.btn-reg.btn--text:before {
  background-color: #ffffff;
}

.light-btn a.btn-reg.btn--text:after {
  content: url('data:image/svg+xml;utf-8,<svg width="6" height="11" viewBox="0 0 6 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5.49297 5.49297" stroke="#ffffff" stroke-linecap="round"/><path d="M5.49292 5.49292L0.999963 9.86131" stroke="#ffffff" stroke-linecap="round"/></svg>');
}

a.btn--pill {
  font-family: proxima-nova;
  border-radius: 20px;
  padding: 11px 24px;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  font-weight: 700;
  display: inline-block;
}

a.btn--pill.btn--white {
  background-color: #ffffff;
  color: #00ACEF;
}

a.btn--pill:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media(min-width:992px){
  .home_pg .banner_wrap {
    min-height: 32vw;
    background-position: 50% 100%;
  }
  .home_pg .header_menu ul.submenu.level-1>li>a {
    font-weight: 500;
  }
  .invs_pg .banner_wrap .banner_inner {
    max-width: 38%;
  }
  .invs_row4 .tm_mdl .section.grey-bg.wf-section.dnd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }


}

@media(max-width:991px){
  .home_pg .banner_wrap {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .home_row1 .hscwic-wrapper.right.hscwic_1 .hscwic_col img {
    max-width: 500px;
  }
  .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  .home_row1 .page-header.section-header {
    padding-top: 50px;
  }
  .hscwic-wrapper .hscwic_col .wht_icon>img {
    display: none;
  }

  .home_row2 .hscwic-wrapper .hscwic-content {
    padding: 6% 6% 0;
  }
  .home_row2 .btmpn-wrapper .section.yellow_bg {
    margin-bottom: 0;
  } 
  footer.footer.ft2 .copyrights {
    text-align: center;
  }
  footer.footer.ft2 .footer_cta_left a {
    width: 100%;
  }

  footer.footer.ft2 .footer_cta_left {
    width: 20%;
  }

  footer.footer.ft2 .footer_cta_wrap {
    width: 95%;
  } 
  .invs_pg .banner_wrap {
    min-height: 28vw;
  }

  .invs_pg .tiwc-wrapper .tiwc_main_title {
    text-align: center;
  }
  .invs_pg .tiwc-wrapper .tiwc_row {
    justify-content: center;
    margin-left: 0;
    margin-bottom: -40px;
  }

  .invs_pg .tiwc-wrapper .tiwc_item {
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin-right: 0 !important;
    margin-bottom: 40px;
  }
  .invs_row2 .section.book-demo_w_image.devider { 
    background-position: 0 50%;
  }
  .invs_pg .tiwc-wrapper .icon_perk {
    text-align: center;
  }

  .invs_pg .tiwc-wrapper .tiwc_item:nth-child(even) {
    order: 1;
  }
  .gdpr_row2  .hscwic-wrapper .hscwic-content {
    padding: 6% 6% 0;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic-content h2 {
    text-align: left;
    margin-top: 20px;
  }
  .gdpr_row2 .hscwic-wrapper .hscwic_col>img {
    max-width: 90%;
    margin-left: auto;
  }
  .gdpr_row2 .hscwic-wrapper .hscwic_list {
    padding-left: 15px;
  }
  .gdpr_row2 .cmprsn-wrapper .main_sec {
    padding-top: 50px;
  }
  .gdpr_row2 .cmprsn-wrapper .main_sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .gdpr_row3 .hscwic-wrapper .hscwic-content {
    padding: 6% 6% 0;
    margin-top: 25px;
  }
  .gdpr_row3 .hsigplt-wrapper .hsigplt-content {
    text-align: center;
    padding: 0;
  }
  .gdpr_row3 .hsigplt-wrapper .hsigplt_row {
    grid-row-gap: 15px;
  }
  .body-wrapper .gdpr_row1 .dnd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic_col img {
    max-width: 500px;
  }
  .gdpr_row1 .hscwic-wrapper.right.hscwic_1  .hscwic-content {
    padding: 6% 6% 0;
  } 
  .gdpr_row1 .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  .other_sol_pg .banner_wrap {
    min-height: 27vw;
    padding-top: 40px;
  }
  .scroll-header .home_pg .header_logo {
    min-width: 145px;
    width: 7vw;
  }
  .gdpr_row1 .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  .preheader {
    margin-bottom: 17px;
  }
}

@media(max-width:767px){
  .home_pg .banner_wrap {
    padding-bottom: 0;
  }

  .home_pg .banner_wrap .ban_cont p {
    line-height: 2.5vw;
  }

  .home_pg .banner_wrap .mobile-image {
    height: 200px;
  }

  .home_pg .logos .logo_wrap img {
    width: 10vw !important;
    min-width: 120px !important;
  }
  .home_row1 .hscwic-wrapper:last-child {
    margin-bottom: 60px;
  }

  .home_row1 .page-header.section-header {
    padding-top: 30px;
    width: 90%;
  }
  .home_row2 .btmpn-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  } 
  footer.footer.ft2 .copyrights { 
    margin-top: 27px;
  }
  footer.footer.ft2 .footer_cta_left {
    width: 150px;
    margin: 0 auto;
  }

  footer.footer.ft2 .footer_cta_right {
    padding-top: 0;
    width: auto;
    margin: 0 auto;
  } 

  .invs_pg .banner_wrap .mobile-image.visible-phone {
    height: 49.2vw;
  }
  .invs_pg .banner_wrap h1 {
    margin-top: 0;
  } 
  .invs_pg  .tiwc-wrapper .page-center {
    padding-top: 0;
  }
  .invs_pg .tiwc-wrapper .tiwc_item { 
    margin-right: auto !important; 
  }

  .invs_pg .tiwc-wrapper .tiwc_row { 
    margin-bottom: -30px;
  }
  .invs_row2 .section.book-demo_w_image.devider {
    height: 35vw;
    padding-top: 60px;
    padding-bottom: 60px;
  }


  .gdpr_pg .banner_wrap .mobile-image {
    height: 200px;
  }

  .gdpr_row1 .logos .logo_wrap:nth-child(1) img {
    width: 10vw;
    max-width: 90%;
    min-width: 120px;
  }

  .gdpr_row1 .logos .logo_wrap:nth-child(4) img {
    width: 5vw;
    min-width: 100px;
  }

  .body-wrapper .gdpr_row1 .dnd-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic-content {
    margin-top: 10px;
    padding-top: 0;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic-content {
    padding-top: 0;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic-content h2 {
    text-align: center;
  }

  .gdpr_row2 .cmprsn-wrapper .main_sec {
    padding: 0;
  }

  .gdpr_row2 .cmprsn-wrapper .excel_vs-ris:after {
    display: block;
    content: "";
    clear: both;
  }


  .gdpr_row3 .hscwic-wrapper .hscwic-img {
    margin-top: 0;
  }

  .gdpr_row3 .hscwic-wrapper .hscwic-content {
    padding-top: 0;
    margin-top: 10px;
  }
  .other_sol_pg .banner_wrap {
    padding-top: 4vw;
  } 
  .scroll-header .home_pg .header_logo {
    max-width: 80%;
  }

}
@media(max-width:479px){
  .invs_pg .banner_wrap .mobile-image.visible-phone {
    height: 54vw;
  } 
  .home_row1 .hscwic-wrapper:last-child {
    margin-bottom: 50px;
  }
  .home_pg .banner_wrap .ban_cont p {
    font-size: 3.2vw;
    line-height: 2.8vw;
  }
  .home_row2 .hscwic-wrapper .hscwic-content {
    padding: 0;
  }
  .home_row2 .hscwic_cont h3 {
    display: none;
  }

  .hscwic-wrapper .hscwic_col p {
    font-size: 18px;
  }
  .home_row2 .btmpn-wrapper {
    padding-top: 25px;
    padding-bottom: 30px;
  }
  footer.footer.ft2 .contact_in:nth-child(1) a img,
  footer.footer.ft2 .contact_in:nth-child(2) span img {
    max-width: 100%;
    width: 235px;
    min-width: auto;
    height: auto;
    margin-right: 0;
  } 
  footer.footer.ft2 .copyrights {
    padding-top: 25px;
  }
  .invs_pg .tiwc-wrapper .tiwc_main_title {
    margin-left: 0; 
  }
  .invs_pg .tiwc-wrapper .tiwc_main_title h2 {
    text-align: center;
  }
  .gdpr_row1 .logos .logo_wrap:nth-child(4) img {
    min-width: 90px;
  }

  .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic_row {
    margin-top: 0;
  }

  .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic-content {
    padding: 0;
    margin-top: 0;
  }

  .gdpr_row1 .hscwic-wrapper.left .hscwic_col h2 {
    text-align: left;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic_col>img {
    max-width: 100%;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic-content {
    padding: 0;
    margin-top: 15px;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic-content h2 {
    text-align: left;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic_list_img img {
    padding-right: 10px;
  }

  .gdpr_row2 .hscwic-wrapper .hscwic_list {
    padding-left: 0;
  }
  .gdpr_row3 .hscwic-wrapper.right .hscwic_row {
    margin-top: 0;
  }

  .gdpr_row3 .hscwic-wrapper .hscwic-content {
    padding: 0;
    margin-top: 0;
  }

  .gdpr_row3 .hsigplt-wrapper .hsigplt_col h2 {
    text-align: center;
  }
  .other_sol_pg .banner_wrap {
    padding-top: 30px;
  }

  .other_sol_pg .banner_wrap .mobile-image {
    height: 250px;
  }

}

/* ---- End reset css ---- */

/*====Events Page Style====*/
.hs_sctn{
  padding: 95px 6%;
  font-weight: 100;
}
.event-pg .hs_sctn{
  padding-bottom: 0;
}
.bottom_devider{
  height: 80px;
}
.hs_sctn > .page-center{
  max-width: 1300px;
}
.evnt_grpCon .dnd-section > .row-fluid {
  width: 95%;
  margin: 57px auto 60px;
}
.evnt_grpCon .dnd-section > .row-fluid .span6:first-child {
  width: 43.1%;
}
.evnt_grpCon .dnd-section > .row-fluid .span6:last-child {
  width: 53.8%;
  margin-left: 3.1%;
}
.evnt_grpCon .widget-type-rich_text h1{
  font-family: Barlow,sans-serif;
  color: #012e61;
  font-size: 3vw;
  line-height: 3.2vw;
  font-weight: 700;
  text-align: left;    
  max-width: none;
  margin-right: auto;
  width: 90%;
  margin-top: 0;
  margin-bottom: 14px;
  margin-left: 0;
  padding-left: 0;
}
.evnt_grpCon .span6:first-child .widget-type-rich_text {
  margin-bottom: 30px;
}
.evnt_grpCon .widget-type-rich_text p{
  font-size: 18px;
  color: #15113b;
  line-height: 24px;
  text-align: left;
}
.evnt_grpCon .widget-type-rich_text blockquote {
  padding: 10px;
  border: 0px;
  margin: 0;
  display: block;
}
.evnt_grpCon .widget-type-rich_text blockquote cite {
  margin-right: 20px;
  margin-left: 20px;
  padding: 10px;
  border: 1px solid #8f8f8f;
  background-color: transparent;
  font-style: normal;
  display: block;
  color: #8f8f8f;
  font-size: 18px;
}
:lang(da) .evnt_grpCon .widget-type-rich_text blockquote {
  padding: 0;
}
:lang(da) .evnt_grpCon .widget-type-rich_text blockquote cite {
  padding-right: 45px;
  font-weight: 400;
}

/*====Webinar Page Style====*/
.wbnr_grpCon .widget-type-rich_text h2 {
  width: 90%;
  margin-top: 26px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
}
.wbnr_grpCon .widget-type-rich_text blockquote{
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid hsla(0,0%,84.7%,.3);
  width: 90%;
  margin-right: auto;
  margin-bottom: 70px;
  margin-left: auto;
  border-top-color: hsla(0,0%,84.7%,.3);
  background-color: transparent;
  padding-left: 0;
  border-left-width: 0px;
}
.wbnr_grpCon .widget-type-rich_text blockquote p{
  padding: 10px;
  margin: 0;
  padding-right: 45px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  font-family: proxima-nova,sans-serif;
  color: #333;
  line-height: 20px;
}
:lang(da) .wbnr_grpCon .widget-type-rich_text h2 {
  width: 88%;
  margin-top: 20px;
  padding-left: 0;
}

/*====Privacy Page Style====*/
.fwp_head {
  margin-top: -80px;
}
.fwp_head .widget-type-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 25vw;
  margin-top: 0;
  margin-bottom: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 3px dashed #000;
  background-color: transparent;
}
.fwp_Con1 .dnd-section > .row-fluid {
  width: 100%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}
.fwp_head .widget-type-header h1{
  max-width: none;
  font-family: Barlow,sans-serif;
  position: static;
  top: 0;
  display: block;
  margin: auto;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: transparent;
  color: #000;
  font-size: 3.5vw;
  line-height: 5vw;
  font-weight: 400;
  text-align: center;
}
.fwp_Con .widget-type-rich_text h1 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Barlow,sans-serif;
  color: #002e61;
  font-size: 2.4vw;
  line-height: 3vw;
  font-weight: 400;
  text-align: center;
}
.fwp_Con2 .widget-type-rich_text h1{
  margin-top: 20px;
}
.fwp_Con .widget-type-rich_text h2 {
  margin-top: 60px;
  color: #000;
  font-size: 2.1vw;
  line-height: 3vw;
  text-decoration: none;
}
.fwp_Con .widget-type-rich_text p {
  display: block;
  width: auto;
  margin: 10px auto 0 0;
  padding-right: 20px;
  padding-left: 10px;
  font-family: proxima-nova,sans-serif;
  color: #000;
  font-size: 19px;
  line-height: 28px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
}
.fwp_Con .widget-type-rich_text strong {
  text-transform: uppercase;
}
.fwp_Con1 .widget-type-rich_text a, .fwp_Con1 .widget-type-rich_text a:hover {
  color: unset;
  text-decoration: underline;
  color: -webkit-link;
}
.fwp_Con1{
  overflow: hidden;
}
.fwp_Con1 .widget-type-rich_text ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  color: #15113b;
  font-size: 16px;
  line-height: 26px;
  width: 90vw;
  margin-right: auto;
  margin-left: auto;
}
.fwp_Con1 .widget-type-rich_text ul li {
  color: #333;
  font-size: 18px;
  font-weight: 400;
}


/*====Newsletter Page Style====*/
body:not(.scroll-header) .nwsltr-pg .header_outer, body:not(.scroll-header) .rqstdm-pg .header_outer,
body:not(.scroll-header) .price-pg .header_outer{
  background-color: #f2f2f2;
}
.hs_sctn.demo{
  background-color: #f5f4f2;
  background-position: 40vw 50px;
  background-size: auto 1400px;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.nwsltr-pg .demo > .page-center {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 1500px;
  margin-top: 0;
}
.nwsltr-flex {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  justify-items: stretch;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.nwsltr-content {
  display: block;
  height: auto;
  padding: 0 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nwsltr-content .widget-type-rich_text h1 {
  font-size: 50px;
  line-height: 55px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #012e61;
}
.nwsltr-content .widget-type-rich_text p {
  font-size: 18px;
  line-height: 26px;
}
.nwsltr-content .widget-type-rich_text img{
  position: relative;
  right: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.nwsltr-form .widget-type-rich_text p {
  font-family: proxima-nova,sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 100;
  color: #000;
  margin: 0;
  margin-top: 18px;
}
.cmn_form {
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  height: auto;
  max-width: 100%;
  min-height: 600px;
  min-width: auto;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  align-self: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  border: 1px #e6e6e6;
  border-radius: 20px;
  background-color: #fff;
}
.cmn_form .dnd-section {
  padding: 0 !important;
}
.cmn_form > div {
  width: 100%;
  margin-top: 15px;
}
html[lang="da"] .wbnrdtl-pg .cmn_form > div,
html[lang="no"] .cmn_form > div,
.cmn_form.rqstdm_grp > div {
  margin-top: 0;
}
.cmn_form.nwsltr-form {
  min-height: 200px;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}
.cmn_form.nwsltr-form > .nwsltr_grp {
  width: 100%;
  margin-top: 15px;
}
.cmn_form h3.form-title:empty {
  display: none;
}
.cmn_form .widget-type-form form {
  width: 100%;
  margin: 0;
  padding: 0;

}
.cmn_form .widget-type-form form .hs-submit,.cmn_form .widget-type-form form .hs-form-field > label{
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
}
.cmn_form.nwsltr-form .widget-type-form form {
  margin-top: 15px;
}
.cmn_form .widget-type-form form .hs-form-field {
  margin-bottom: 18px;
}
.cmn_form .widget-type-form form .hs-form-field > label {
  display: block;
  float: none;
  width: auto;
  font-weight: 500;
  line-height: 20px;
  padding-top: 0;
  margin-bottom: 4px;
  font-family: Barlow;
  font-size: 13px;
  color: #a4a4a4;
}
.cmn_form .widget-type-form form .hs-form-field > .input > .hs-input {
  width: 100%;
}
.cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input {
  width: 90%;
}
.cmn_form .widget-type-form form .legal-consent-container .hs-richtext{
  margin-bottom: 3px;
  line-height: 24px;
  font-family: Barlow;
  color: #4f4f4f;
  font-size: 14px;
}
.cmn_form .widget-type-form form .hs-richtext p {
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: Barlow;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 24px;
}
.cmn_form .widget-type-form form .hs-richtext p a {
  color: #0000EE;
  text-decoration: underline;
}
.cmn_form .widget-type-form form .hs-richtext p a:hover {
  color: #551A8B;
  text-decoration: underline;
}
.cmn_form .widget-type-form form .legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
}
.cmn_form .widget-type-form form .inputs-list:first-child {
  padding-top: 6px;
}
.cmn_form .widget-type-form form .inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 5px;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.cmn_form .widget-type-form form .inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
}
.cmn_form .widget-type-form form .inputs-list > li > label{
  margin-bottom: 4px;
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  white-space: normal;
  font-weight: normal;
  font-family: Barlow;
  color: #4f4f4f;
  font-size: 14px;
}
.cmn_form .widget-type-form form .inputs-list .hs-input[type=checkbox] {
  display: inline-block;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #33475b;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: #f5f8fa;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  cursor: pointer;
  max-width: 100%;
  vertical-align: unset;
}
.cmn_form .widget-type-form form .inputs-list > li > label > span {
  display: block;
  margin-left: 20px !important;
  vertical-align: unset;
}
.cmn_form .widget-type-form form .inputs-list > li > label > span p {
  margin: 0 !important;
  display: inline;
  font-family: Barlow;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 18px;
  white-space: normal;
  font-weight: normal;
}
.cmn_form .widget-type-form form .inputs-list > li > label > span .hs-form-required{
  vertical-align: unset;
}
.cmn_form .widget-type-form form .hs_submit .actions{
  text-align: center;
}
.cmn_form .widget-type-form form .hs-button {
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  font-family: Barlow;
}
.cmn_form .widget-type-form form .hs-error-msgs label {
  color: #f2545b !important;
}
.cmn_form .widget-type-form form select.hs-input {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 9px 10px;
}
.cmn_form .widget-type-form form .hs-form-field > .input > textarea.hs-input {
  padding: 10px 15px;
  vertical-align: middle;
}
.cmn_form .widget-type-form form .hs-error-msgs label {
  -webkit-font-smoothing: auto;
  -ms-font-smoothing: auto;
}
.cmn_form .widget-type-form form select.is-placeholder {
  color: #bfbfbf;
}
.cmn_form .widget-type-form form select.is-placeholder:focus {
  color: #33475b;
}

:lang(da).cmn_form .widget-type-form form .hs_submit .actions {
  margin-bottom: 0;
}
:lang(da) .nwsltr-pg .nwsltr-content{
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

/*====Request Demo Page Style====*/
.rqstdm-pg .hs_sctn > .page-center, .price-pg .hs_sctn > .page-center{
  max-width: 1500px;
}
.rqstdm-flex {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  width: auto;
  justify-items: stretch;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.rqstdm-form{
  display: block;
  height: auto;
  padding: 0 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}
.rqstdm-content{
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.rqstdm-content .widget-type-rich_text h1 {
  max-width: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow,sans-serif;
  color: #012e61;
  font-size: 3vw;
  line-height: 3.2vw;
  font-weight: 700;
  text-align: left;
}
.rqstdm-content .widget-type-rich_text p {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: proxima-nova,sans-serif;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  text-align: left;
}
.rqst_logos .logos {
  padding: 0;
}
.rqst_logos .logos .logo_contain {
  padding-top: 20px;
  margin-top: 38px;
  margin-bottom: auto;
}
.rqst_logos .logos .logo_wrap {
  width: 33.33%;
}
.rqst_logos .logos .logo_wrap:nth-child(1){
  width: 33%;
}
.rqst_logos .logos .logo_wrap:nth-child(2){
  margin-bottom: 20px;
}
.rqst_logos .logos .logo_wrap:nth-child(3) {
  margin-bottom: 10px;
}
.rqst_logos .logos .logo_wrap img {
  width: 7vw !important;
  min-width: 145px !important;
  padding-right: 5px;
  padding-left: 5px;
}
.rqst_logos .logos .logo_wrap:nth-child(2) img {
  width: 5vw !important;
  min-width: 110px !important;
}
.rqstdm-form .cmn_form .widget-type-form form .hs_submit .actions,
.prc-form .cmn_form .widget-type-form form .hs_submit .actions{
  margin-bottom: 0;
  padding-bottom: 0;
}
.rqstdm-form .cmn_form .widget-type-form form .hs-button,
.prc-form .cmn_form .widget-type-form form .hs-button{
  font-size: 14px;
  line-height: 14px;
}

:lang(da) .rqstdm-pg .rqstdm-content,
:lang(no) .rqstdm-pg .rqstdm-content,
:lang(no) .price-pg .rqstdm-content{
  display: block;
  height: auto;
  padding: 0 35px;
  align-self: initial;
}
:lang(da) .rqstdm-pg .rqstdm-form,
:lang(no) .rqstdm-pg .rqstdm-form{
  padding: 0;
}

:lang(sv-se) .rqstdm-pg .rqst_logos .logos .logo_contain,
:lang(no) .rqstdm-pg .rqst_logos .logos .logo_contain{
  margin-top: 48px;
}
:lang(sv-se) body:not(.scroll-header) .rqstdm-pg .header_outer .main_header,
:lang(no) body:not(.scroll-header) .rqstdm-pg .header_outer .main_header,
:lang(no) body:not(.scroll-header) .price-pg .header_outer .main_header,
:lang(sv-se) body:not(.scroll-header) .price-pg .header_outer .main_header{
  background-color: rgb(255, 255, 255);
}


/*====Price Page Style====*/
.prc-form {
  display: block;
  width: 95%;
  min-height: auto;
  margin: auto 0 auto auto;
  padding: 6%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: transparent;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}
.price-pg .rqstdm-content .widget-type-rich_text {
  display: block;
  width: 95%;
  min-height: auto;
  margin: auto 0 auto auto;
  padding: 6%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: transparent;
}
.rqstdm-content .widget-type-rich_text ul {
  margin-top: 15px;
  padding-top: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.rqstdm-content .widget-type-rich_text ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.rqstdm-content .widget-type-rich_text ul > li > span{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.rqstdm-content .widget-type-rich_text ul > li > span:first-child{
  width: 20px;
  height: auto;
  min-width: 18px;
  margin-right: 10px;
  margin-left: 0;
  padding-top: 3px;
  padding-left: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 40px;
  line-height: 40px;
}
.rqstdm-content .widget-type-rich_text ul > li > span:last-child{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.rqstdm-content .widget-type-rich_text ul > li p{
  margin-bottom: 0;
}
.price-pg .rqst_logos .logos .logo_wrap:nth-child(3) {
  margin-bottom: 20px;
}
.price-pg .rqst_logos .logos .logo_contain {
  margin-top: 48px;
}
:lang(no) .price-pg .rqstdm-content .widget-type-rich_text,
:lang(sv-se) .price-pg .rqstdm-content .widget-type-rich_text{
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0px;
}
:lang(no) .price-pg .rqstdm-content .widget-type-rich_text img{
  position: relative;
  right: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
:lang(no) .price-pg .prc-form{
  padding: 0;
  width: 100%;
  border: 0px;
  display: block;
}
:lang(sv-se) .price-pg .prc-form {
  display: block;
  height: auto;
  padding: 0 35px;
  width: 100%;
  border: 0px;
}
:lang(sv-se) .price-pg .rqst_logos .logos .logo_wrap:nth-child(3) {
  margin-bottom: 10px;
}

/*====Webinar Detail Page Style====*/
body:not(.scroll-header) .wbnrdtl-pg .header_outer{
  background-color: #f2f2f2;
}
.wbnrdtl-pg .hs_sctn{
  background-color: #efefef;
}
.wbnrdtl-pg .wbnrdtl_flx {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-grid-columns: 1fr 0.8fr;
  grid-template-columns: 1fr 0.8fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-top: 50px;
}
.wbnrdtl-pg .wbnrdtl_frm.cmn_form {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}
.wbnrdtl_frm .widget-type-rich_text h4 {
  font-size: 20px;
  text-align: center;
  line-height: 24px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Barlow,sans-serif;
  color: #15113b;
}
.wbnrdtl-pg .wbnrdtl_frm.cmn_form .widget-type-form form {
  padding-top: 31px;
}
.wbnrdtl-pg .cmn_form .widget-type-form form .hs-button{
  font-size: 14px;
  line-height: 14px;
}
.cmn_form .widget-type-form form .grecaptcha-badge {
  margin: 0;
}
.cmn_form .widget-type-form form .hs_recaptcha.hs-recaptcha {
  padding-left: 8px;
  padding-top: 8px;
  padding-bottom: 2px;
}

/*====Contact Page Style====*/
body:not(.scroll-header) .cntct-pg .header_outer{
  background-color: #f2f2f2;
}
.cntct-pg .cntct-flex{
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  justify-items: stretch;
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.cntct-pg .cntct-content {
  width: auto;
  margin-top: 0;
  padding-top: 0;
  padding-right: 0;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.cntct-pg .cntct-form{
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.cntct-pg .cntct-form > .cntct-formIn{
  width: 95%;
  max-width: 100%;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0;
}
.cntct-pg .cntct-content .widget-type-rich_text h1{
  max-width: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow,sans-serif;
  color: #012e61;
  font-size: 3vw;
  line-height: 3.2vw;
  font-weight: 700;
  text-align: left;
}
.cntct-pg .cntct-content .widget-type-rich_text p{
  margin-top: 0;
  margin-bottom: 10px;
  font-family: proxima-nova,sans-serif;
  color: #000;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  text-align: left;
}
.cntct-pg .cntct-content .widget-type-rich_text img {
  position: relative;
  right: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cntct-pg .cntct-content .row-fluid [class*="span"]{
  min-height: 0;
}
.cntct-pg .cntct-form.cmn_form .widget-type-form form .hs-button{
  font-size: 14px;
  line-height: 14px;
}
:lang(da) .cntct-pg .cntct-flex, :lang(no) .cntct-pg .cntct-flex, :lang(sv-se) .cntct-pg .cntct-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
:lang(da) .cntct-pg .cntct-form > .cntct-formIn, :lang(sv-se) .cntct-pg .cntct-form > .cntct-formIn{
  padding-top: 0;
}
:lang(no) .cntct-pg .hs_sctn > .page-center, :lang(sv-se) .cntct-pg .hs_sctn > .page-center {
  max-width: 1500px;
}
:lang(no) .cntct-pg .cntct-content {
  display: block;
  height: auto;
  padding: 0 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  align-self: initial;
}
:lang(sv-se) .cntct-pg .cntct-content{
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
:lang(no) .cntct-pg .cntct-form {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
:lang(no) .cntct-pg .cntct-form > .cntct-formIn {
  width: 100%;
  margin-top: 15px;
  padding-top: 0;
}
:lang(no) .cntct-pg .cntct-content .widget-type-rich_text p,
:lang(sv-se) .cntct-pg .cntct-content .widget-type-rich_text p{
  font-size: 18px;
  line-height: 26px;
  display: block;
}
:lang(no) body:not(.scroll-header) .cntct-pg .header_outer .main_header,
:lang(sv-se) body:not(.scroll-header) .cntct-pg .header_outer .main_header{
  background-color: #fff;
}
:lang(no) .cntct-pg .cmn_form .widget-type-form form .hs_submit .actions,
:lang(sv-se) .cntct-pg .cmn_form .widget-type-form form .hs_submit .actions{
  margin-bottom: 0;
  padding-bottom: 0;
}
:lang(sv-se) .cntct-pg .cntct-formWrap{
  display: block;
  height: auto;
  padding: 0 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
:lang(sv-se) .cntct-pg .cntct-form > .cntct-formIn{
  width: 100%;
  margin-top: 0;
}

/*=====Nyhetsbrev No Page Style=====*/
body:not(.scroll-header) .nwsltrno-pg .header_outer{
  background-color: #f2f2f2;
}
body:not(.scroll-header) .nwsltrno-pg .header_outer .main_header{
  background-color: #fff;
}
.nwsltrno-pg .hs_sctn > .page-center {
  max-width: 1500px;
}
.nwsltrno-flex{
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  width: auto;
  justify-items: stretch;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.nwsltrno-content, .nwsltrno-formWrap {
  display: block;
  height: auto;
  padding: 0 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
} 
.nwsltrno-content .widget-type-rich_text h1{
  max-width: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow,sans-serif;
  color: #012e61;
  font-size: 3vw;
  line-height: 3.2vw;
  font-weight: 700;
  text-align: left;
}
.nwsltrno-content .widget-type-rich_text p {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: proxima-nova,sans-serif;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  text-align: left;
}
.nwsltrno-content .widget-type-rich_text img {
  position: relative;
  right: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.nwsltrno-form .widget-type-rich_text p{
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-weight: 100;
  font-family: proxima-nova,sans-serif;
  margin: 0;
}
.nwsltrno-form.cmn_form .widget-type-form form .hs_submit .actions{
  margin-bottom: 16px;
}
.nwsltrno-formIn{
  margin-top: 15px;
}
.nwsltrse-pg .nwsltrno-content {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0;
  align-items: initial;
}

.rqstdm-form .cmn_form, .prc-form .cmn_form{
  padding-bottom: 13px;
}
html[lang="no"] .opCmp-pg .esgEnv_grp .tccnont-wrapper .tccnont_lists2 {
  align-items: center;
}



@media screen and (max-width: 1180px) {
  .cmn_form .widget-type-form form .form-columns-2 .hs-form-field{
    float: none;
    width: 100%;
  }
  .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input{
    width: 100%;
  }
  .cntct-pg .cntct-form > .cntct-formIn {
    margin-top: 0;
    padding-top: 0;
  }
}


@media screen and (max-width: 991px) {
  .hs_sctn{
    padding: 50px 5%;
  }
  .event-pg .header_outer, .wbnr-pg .header_outer {
    min-height: 80px;
  }
  .hs_sctn > .page-center{
    max-width: 90%;
    margin: auto auto 0;
  }
  .evnt_grpCon .dnd-section > .row-fluid{
    margin-bottom: 0px;
  }
  .evnt_grpCon .widget-type-rich_text h1{
    font-size: 4vw;
    line-height: 4.2vw;
    width: 100%;
  }
  .evnt_grpCon .widget-type-rich_text blockquote cite{
    margin-right: 0;
    margin-left: 0;
  }
  .evnt_grpCon .dnd-section > .row-fluid .span6:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
  .evnt_grpCon .dnd-section > .row-fluid .span6:last-child {
    width: 100%;
    margin-left: 0;
  }
  .event-pg .bottom_devider {
    height: 60px;
  }
  .wbnr_grpCon .widget-type-rich_text h2{
    width: 100%;
    padding-left: 15px;
  }
  .wbnr_grpCon .widget-type-rich_text blockquote {
    width: 95%;
    margin-bottom: 40px;
  }
  .wbnr-pg .hs_sctn {
    padding-bottom: 115px;
  }
  .wbnr_grpCon .widget-type-rich_text blockquote p{
    padding-right: 35px;
  }
  :lang(da) .evnt_grpCon .widget-type-rich_text blockquote cite {
    padding-right: 35px;
  }
  :lang(da) .wbnr_grpCon .widget-type-rich_text h2 {
    margin-bottom: 0;
    margin-top: 25px;
  }
  :lang(da) .wbnr_grpCon .widget-type-rich_text blockquote {
    margin-bottom: 70px;
  }
  :lang(da) .wbnr-pg .blog-bottomPane .signUp_wrap {
    margin-top: 9px;
  }
  :lang(da) .wbnr-pg .hs_sctn {
    padding-bottom: 65px;
  }
  .fwp_head {
    margin-top: -60px;
  }
  .fwp_head .widget-type-header{
    height: 30vh;
    min-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .fwp_head .widget-type-header h1 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .fwp_Con .widget-type-rich_text p {
    width: auto;
    margin: 0;
    padding-bottom: 20px;
    font-size: 2.2vw;
    line-height: 3vw;
  }
  .fwp_Con1 .widget-type-rich_text ul li {
    color: #000;
    font-size: 2.2vw;
    line-height: 3vw;
    font-weight: 400;
  }
  .fwp_Con2 .widget-type-rich_text h1 {
    margin-top: 0;
  }
  .hs_sctn.demo {
    background-position: 50% 200%;
    background-size: contain;
  }
  .nwsltr-pg .demo > .page-center {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 779px;
  }
  .nwsltr-flex {
    display: -ms-grid;
    display: grid;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .nwsltr-content {
    margin-bottom: 0;
    padding: 0;
  }
  .cmn_form {
    top: 0;
    width: 90%;
    min-height: 500px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: none;
  }
  .cmn_form.nwsltr-form {
    max-width: 60%;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
  .nwsltr-content .widget-type-rich_text p, .nwsltr-content .widget-type-rich_text img {
    display: none;
  }
  .nwsltr-content .widget-type-rich_text h1 {
    text-align: center;
  }
  .nwsltr-form > .nwsltr_grp {
    width: 90%;
    margin-right: 10px;
    margin-left: 10px;
  }
  .nwsltr-form .widget-type-rich_text p {
    margin-left: -5%;
  }
  :lang(da) .nwsltr-pg .demo > .page-center{
    max-width: 100%;
  }
  .rqstdm-content .widget-type-rich_text h1 {
    font-size: 60px;
    line-height: 60px;
    text-align: center;
  }
  .rqstdm-content .widget-type-rich_text p, .rqst_logos .logos, .rqstdm-content .widget-type-rich_text ul {
    display: none;
  }
  .rqstdm-pg .hs_sctn > .page-center, .price-pg .hs_sctn > .page-center {
    margin-top: 20px;
    max-width: 380px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .price-pg .hs_sctn > .page-center{
    max-width: 382px;
  }
  .rqstdm-flex {
    display: -ms-grid;
    display: grid;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .rqstdm-form {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    margin-bottom: 0;
    padding: 0;
  }
  .cmn_form .widget-type-form form .form-columns-2 .hs-form-field {
    float: none;
    width: 100%;
  }
  .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input {
    width: 100%;
  }
  .cmn_form.rqstdm_grp > .row-fluid-wrapper {
    width: 90%;
    font-size: 2.2vw;
    line-height: 3.5vw;
  }
  .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input {
    width: 100% !important;
  }
  .rqstdm-content .row-fluid [class*="span"]{
    min-height: 0px;
  }
  .prc-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: auto;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    padding: 6% 6% 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
  .price-pg .rqstdm-content .widget-type-rich_text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: auto;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    padding: 6% 6% 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .prc-form .cmn_form .widget-type-form form {
    text-align: left;
  }
  .price-pg .rqstdm-content .widget-type-rich_text h1 {
    padding-bottom: 15px;
  }
  :lang(da) .rqstdm-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(no) .rqstdm-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(no) .price-pg .rqstdm-content .widget-type-rich_text h1{
    line-height: 65px;
  }
  :lang(da) .rqstdm-pg .hs_sctn > .page-center{
    max-width: 401px;
  }
  :lang(da) .rqstdm-pg .rqstdm-content, :lang(no) .rqstdm-pg .rqstdm-content,
  :lang(no) .price-pg .rqstdm-content, :lang(sv-se) .price-pg .rqstdm-content{
    padding: 0;
  }
  :lang(sv-se) .rqstdm-content .widget-type-rich_text p,
  :lang(no) .rqstdm-content .widget-type-rich_text p,
  :lang(no) .price-pg .rqstdm-content .widget-type-rich_text p,
  :lang(sv-se) .price-pg .rqstdm-content .widget-type-rich_text p{
    display: block;
  }
  :lang(sv-se) .rqstdm-pg .hs_sctn > .page-center,
  :lang(no) .rqstdm-pg .hs_sctn > .page-center,
  :lang(no) .price-pg .hs_sctn > .page-center,
  :lang(sv-se) .price-pg .hs_sctn > .page-center{
    max-width: 100%;
  }
  :lang(no) .price-pg .rqstdm-content .widget-type-rich_text img{
    display: none;
  }
  :lang(no) .price-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(sv-se) .price-pg .rqstdm-content .widget-type-rich_text h1 {
    padding-bottom: 0;
  }
  :lang(sv-se) .price-pg .prc-form {
    padding: 0;
  }
  .wbnrdtl-pg .wbnrdtl_flx {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .wbnrdtl_frm .wbnrdtl_frmIn {
    width: 90%;
  }
  .cntct-pg .cntct-content .widget-type-rich_text h1{
    font-size: 60px;
    line-height: 60px;
    text-align: center;
  }
  .cntct-pg .cntct-content .widget-type-rich_text p, .cntct-pg .cntct-content .widget-type-rich_text img{
    display: none;
  }
  .cntct-pg .cntct-flex{
    grid-column-gap: 15px;
    grid-row-gap: 25px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .cntct-pg .cntct-content {
    text-align: center;
  }
  .cntct-pg .cntct-form > .cntct-formIn {
    margin-top: 10px;
  }
  .cntct-pg .hs_sctn > .page-center {
    max-width: 447px;
  }
  :lang(en) .cntct-pg .hs_sctn.demo {
    background-position: 50% 78vw;
    background-size: contain;
  }
  .cntct-pg .cmn_form .widget-type-form form .hs_submit .actions {
    margin-bottom: 0;
  }
  :lang(da) .cntct-pg .hs_sctn > .page-center {
    max-width: 90%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  :lang(da) .cntct-pg .cntct-flex {
    display: -ms-grid;
    display: grid;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  :lang(no) .cntct-pg .cntct-flex, :lang(sv-se) .cntct-pg .cntct-flex {
    display: -ms-grid;
    display: grid;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  :lang(no) .cntct-pg .hs_sctn > .page-center, :lang(sv-se) .cntct-pg .hs_sctn > .page-center {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 790px;
  }
  :lang(sv-se) .cntct-pg .hs_sctn > .page-center{
    max-width: 100%;
  }
  :lang(no) .cntct-pg .cntct-content .widget-type-rich_text h1 {
    font-size: 60px;
    line-height: 65px;
    text-align: center;
  }
  :lang(no) .cntct-pg .cntct-content {
    margin-bottom: 0;
    padding: 0;
  }
  :lang(no) .cntct-pg .cntct-form > .cntct-formIn {
    width: 90%;
    margin-top: 15px;
  }
  :lang(sv-se) .cntct-pg .cntct-formWrap {
    margin-bottom: 0;
    padding: 0;
  }
  :lang(sv-se) .cntct-pg .cntct-form > .cntct-formIn {
    width: 90%;
    margin-top: 0px;
  }
  .nwsltrno-content .widget-type-rich_text h1{
    text-align: center;
    font-size: 60px;
    line-height: 65px;
  }
  .nwsltrse-pg .nwsltrno-content .widget-type-rich_text h1 {
    line-height: 60px;
  }
  .nwsltrno-pg .hs_sctn > .page-center {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .nwsltrno-flex{
    display: -ms-grid;
    display: grid;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .nwsltrno-content, .nwsltrno-formWrap {
    margin-bottom: 0;
    padding: 0;
  }
  .nwsltrno-content .widget-type-rich_text img {
    display: none;
  }
  .nwsltrno-formIn {
    margin-top: 15px;
    width: 90%;
    margin-right: 10px;
    margin-left: 10px;
  }
  .nwsltrno-form .widget-type-rich_text p {
    margin-left: -5%;
  }
  .cmn_form.nwsltr-form > .nwsltr_grp, .cmn_form > div {
    width: 90%;
  }
}


@media screen and (max-width: 991px) and (min-width: 768px) {
  :lang(sv-se) .rqstdm-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  :lang(no) .rqstdm-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  :lang(no) .price-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  :lang(sv-se) .price-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  .wbnrdtl-pg .wbnrdtl_frm.cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  :lang(da) .cntct-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  :lang(sv-se) .cntct-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field,
  .nwsltrno-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field{
    float: left;
    width: 50%;
  }
  :lang(sv-se) .rqstdm-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  :lang(no) .rqstdm-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  :lang(no) .price-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  :lang(sv-se) .price-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  .wbnrdtl-pg .wbnrdtl_frm.cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  :lang(da) .cntct-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  :lang(sv-se) .cntct-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input,
  .nwsltrno-pg .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input{
    width: 90%;
  }
  :lang(sv-se) .rqstdm-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input,
  :lang(no) .rqstdm-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input,
  :lang(no) .price-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input,
  :lang(sv-se) .price-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input,
  :lang(da) .cntct-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input,
  :lang(sv-se) .cntct-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input,
  .nwsltrno-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone .hs-input{
    width: 68% !important;
  }
  :lang(sv-se) .rqstdm-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input,
  :lang(no) .rqstdm-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input,
  :lang(no) .price-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input,
  :lang(sv-se) .price-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input,
  :lang(da) .cntct-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input,
  :lang(sv-se) .cntct-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input,
  .nwsltrno-pg .cmn_form .widget-type-form form .hs-input.hs-fieldtype-intl-phone select.hs-input{
    width: 30% !important;
  }
}

@media screen and (max-width: 767px) {
  .hs_sctn{
    padding: 30px 5vw;
  }
  .evnt_grpCon .widget-type-rich_text h1{
    font-size: 5vw;
    line-height: 5.3vw;
    text-align: center;
  }
  .evnt_grpCon .widget-type-rich_text p{
    text-align: center;
  }
  .evnt_grpCon .span6:first-child .widget-type-rich_text {
    margin-bottom: 10px;
  }
  .event-pg .bottom_devider {
    height:40px;
  }
  .wbnr_grpCon .widget-type-rich_text h2 {
    text-align: center;
  }
  .wbnr-pg .hs_sctn {
    padding-bottom: 80px;
  }
  .evnt_grpCon .widget-type-rich_text .hs-cta-wrapper{
    display: block;
    text-align: center;
  }
  :lang(da) .wbnr-pg .hs_sctn {
    padding-bottom: 40px;
  }
  :lang(da) .wbnr-pg .blog-bottomPane {
    width: auto;
    margin-left: -4vw;
    margin-right: -4vw;
    padding-left: 4%;
    padding-right: 4%;
  }
  .fwp_head {
    margin-top: -40px;
  }
  .fwp_head .widget-type-header {
    min-height: 300px;
  }
  .fwp_head .widget-type-header h1 {
    margin-top: 0;
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
  }
  .fwp_Con .widget-type-rich_text p {
    margin-top: 0;
    margin-bottom: 2.5vw;
    margin-left: 0;
    padding-right: 10px;
    padding-bottom: 1vw;
    padding-left: 10px;
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
  .fwp_Con .widget-type-rich_text h2 {
    text-align: center;
  }
  .fwp_Con1 .widget-type-rich_text ul li {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
  .hs_sctn.demo{
    background-position: 50% 50%;
    background-size: contain;
  }
  .nwsltr-pg .demo > .page-center {
    margin-top: 0;
    max-width: 624px;
  }
  .nwsltr-flex {
    min-height: 300px;
    margin-bottom: 30px;
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .nwsltr-content {
    min-height: auto;
    margin-bottom: 0;
  }
  .nwsltr-content .widget-type-rich_text h1 {
    font-size: 40px;
    line-height: 45px;
  }
  .rqstdm-content .widget-type-rich_text h1 {
    font-size: 50px;
    line-height: 55px;
  }
  .rqstdm-flex {
    min-height: 300px;
    margin-bottom: 30px;
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .rqstdm-form {
    min-height: auto;
    margin-bottom: 0;
  }
  .rqstdm-pg .hs_sctn > .page-center, .price-pg .hs_sctn > .page-center {
    margin-top: 0;
  }
  .cmn_form {
    top: 0;
    width: 100%;
    min-height: 200px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .price-pg .rqstdm-content .widget-type-rich_text {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .prc-form {
    margin-top: 10px;
  }
  :lang(da) .rqstdm-pg .hs_sctn > .page-center{
    max-width: 380px;
  }
  :lang(da) .rqstdm-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(no) .rqstdm-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(no) .price-pg .rqstdm-content .widget-type-rich_text h1{
    line-height: 50px;
    margin-bottom: 0;
  }
  :lang(no) .price-pg .prc-form, :lang(sv-se) .price-pg .prc-form {
    margin-top: 0;
  }
  .wbnrdtl_frm .widget-type-rich_text h4{
    margin-right: auto;
    margin-left: auto;
    padding-left: 2vw;
  }
  .cmn_form .widget-type-form form .hs_recaptcha.hs-recaptcha {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .cntct-pg .cntct-content .widget-type-rich_text h1{
    font-size: 50px;
    line-height: 55px;
  }
  .cntct-pg .hs_sctn > .page-center {
    max-width: 90%;
  }
  .cntct-pg .cntct-flex {
    display: -ms-grid;
    display: grid;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-auto-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .cntct-pg .cntct-form > .cntct-formIn {
    padding-left: 10px;
    padding-right: 10px;
  }
  :lang(en) .cntct-pg .hs_sctn.demo {
    background-image: none !important;
  }
  :lang(da) .cntct-pg .cntct-flex {
    min-height: 300px;
    margin-bottom: 30px;
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  :lang(no) .cntct-pg .cntct-content .widget-type-rich_text h1 {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 50px;
  }
  :lang(no) .cntct-pg .hs_sctn > .page-center, :lang(sv-se) .cntct-pg .hs_sctn > .page-center{
    margin-top: 0;
  }
  :lang(no) .cntct-pg .cntct-flex, :lang(sv-se) .cntct-pg .cntct-flex {
    min-height: 300px;
    margin-bottom: 30px;
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  :lang(no) .cntct-pg .cmn_form .widget-type-form form .hs_submit .actions,
  :lang(sv-se) .cntct-pg .cmn_form .widget-type-form form .hs_submit .actions{
    margin-bottom: 18px;
  }
  :lang(sv-se) .cntct-pg .cntct-form > .cntct-formIn {
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .nwsltrno-content .widget-type-rich_text h1{
    margin-bottom: 0;
    font-size: 50px;
    line-height: 50px;
  }
  .nwsltrse-pg .nwsltrno-content .widget-type-rich_text h1 {
    line-height: 55px;
    margin-bottom: 10px;
  }
  .nwsltrno-pg .hs_sctn > .page-center{
    margin-top: 0;
  }
  .nwsltrno-flex{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    min-height: 300px;
    margin-bottom: 30px;
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .nwsltrno-content, .nwsltrno-formWrap{
    min-height: auto;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .hs_sctn{
    padding: 30px 5%;
  }
  .evnt_grpCon .dnd-section > .row-fluid {
    margin-bottom: 10px;
  }
  .evnt_grpCon .widget-type-rich_text h1{
    font-size: 6vw;
    line-height: 6.5vw;
    text-align: center;
  }
  .evnt_grpCon .widget-type-rich_text p{
    padding-top: 8px;
    font-size: 16px;
    text-align: center;
  }
  .wbnr_grpCon .widget-type-rich_text h2 {
    text-align: left;
  }
  .wbnr_grpCon .widget-type-rich_text blockquote {
    width: auto;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 50px;
  }
  .wbnr-pg .hs_sctn {
    padding-bottom: 60px;
  }
  .wbnr_grpCon .widget-type-rich_text blockquote p{
    padding-right: 10px;
  }
  :lang(da) .evnt_grpCon .widget-type-rich_text blockquote cite {
    padding-right: 10px;
  }
  :lang(da) .evnt_grpCon .dnd-section > .row-fluid {
    margin-bottom: 0;
  }
  :lang(da) .wbnr-pg .hs_sctn {
    padding-bottom: 30px;
  }
  :lang(da) .wbnr-pg .blog-bottomPane {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .fwp_head {
    margin-top: 0px;
  }
  .fwp_head .widget-type-header {
    min-height: 180px;
  }
  .fwp_head .widget-type-header {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    padding-top: 0;
  }
  .fwp_head .widget-type-header h1 {
    display: block;
    margin: auto 10px;
    font-size: 25px;
  }
  .fwp_Con .widget-type-rich_text h1 {
    font-size: 5vw;
    line-height: 6vw;
  }
  .fwp_Con .widget-type-rich_text p {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 3.8vw;
    line-height: 6vw;
  }
  .fwp_Con .widget-type-rich_text h2 {
    font-size: 3.5vw;
    line-height: 4vw;
    text-align: left;
  }
  .fwp_Con1 .widget-type-rich_text ul li {
    font-size: 3.8vw;
    line-height: 6vw;
  }
  .cmn_form {
    top: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cmn_form.nwsltr-form {
    max-width: 100%;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
  .nwsltr-content .widget-type-rich_text h1 {
    font-size: 6vw;
    line-height: 8vw;
  }
  .rqstdm-content .widget-type-rich_text h1 {
    font-size: 40px;
    line-height: 45px;
  }
  .price-pg .rqstdm-content .widget-type-rich_text {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .prc-form {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  :lang(da) .rqstdm-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(no) .rqstdm-pg .rqstdm-content .widget-type-rich_text h1,
  :lang(no) .price-pg .rqstdm-content .widget-type-rich_text h1{
    line-height: 45px;
    font-size: 35px;
  }
  .wbnrdtl_frm .widget-type-rich_text h4{
    padding-right: 2vw;
    font-size: 3.8vw;
    line-height: 4vw;
  }
  .cntct-pg .cntct-content .widget-type-rich_text h1{
    font-size: 40px;
    line-height: 45px;
  }
  .cntct-pg .cntct-flex {
    width: 90%;
    margin-bottom: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-row-gap: 10px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .cntct-pg .cntct-form > .cntct-formIn {
    padding-left: 0;
    padding-right: 0;
  }
  :lang(no) .cntct-pg .cntct-content .widget-type-rich_text h1 {
    font-size: 35px;
    line-height: 45px;
  }
  .nwsltrno-content .widget-type-rich_text h1{
    font-size: 35px;
    line-height: 45px;
  }
  .nwsltrse-pg .nwsltrno-content .widget-type-rich_text h1 {
    font-size: 40px;
    line-height: 45px;
  }
  .nwsltrno-flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
}

@media screen and (max-width: 400px) {
  .cmn_form .widget-type-form form .hs_recaptcha.hs-recaptcha iframe {
    width: 100%;
  }
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .cmn_form .widget-type-form form .form-columns-2 .hs-form-field {
    float: none;
    width: 100%;
  }
  .cmn_form .widget-type-form form .hs-form-field>.input>.hs-input {
    width: 100% !important;
  }
  .cmn_form .widget-type-form form .form-columns-2 .hs-form-field:first-child > .input > .hs-input {
    width: 100%;
  }
}


@media all and (-ms-high-contrast:none) {
  .nwsltr-flex, .rqstdm-flex, .cntct-pg .cntct-flex, .wbnrdtl-pg .wbnrdtl_flx{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nwsltr-content, .cntct-pg .cntct-content, .wbnrdtl_Con {
    width: 50%;
  }
  .nwsltr-form{
    width: 45%;
    margin-left: 5%;
    display: block;
  }
  .nwsltr-content, .rqstdm-content, .cntct-pg .cntct-form, .wbnrdtl-pg .wbnrdtl_frm.cmn_form{
    width: 45%;
    display: block;
  }
  .rqstdm-form, .prc-form{
    width: 50%;
    margin-left: 5%;
    display: block;
  }
  .rqstdm-content{
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .rqstdm-form, .prc-form{
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .cmn_form{
    display: block;
  }
  .rqstdm-content .widget-type-rich_text ul > li {
    display: block;
    position: relative;
  }
  .rqstdm-content .widget-type-rich_text ul > li p{
    margin-bottom: 0;
    padding-left: 30px;
  }
  .rqstdm-content .widget-type-rich_text ul > li > span{
    position: absolute;
    display: block;
    top: -13px;
  }
} 


/*======Lnguage Clone Page Style======*/
:lang(da) .implmntsn-pg .hsimpl-wrapper .hsimpl_top {
  margin-bottom: 0;
}
:lang(da) .implmntsn-pg .iwcnt-wrapper .content_contain:first-child p{
  line-height: 26px;
}
:lang(da) .hdrGr.sldtl-pg .sldtl_grp .hscwic-wrapper .hscwic-img,
:lang(no) .hdrGr.sldtl-pg .sldtl_grp .hscwic-wrapper .hscwic-img,
:lang(sv-se) .hdrGr.sldtl-pg .sldtl_grp .hscwic-wrapper .hscwic-img{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
:lang(da) .hdrGr.sldtl-pg .tccnont-wrapper .grey > p,
:lang(no) .hdrGr.sldtl-pg .tccnont-wrapper .grey > p,
:lang(sv-se) .hdrGr.sldtl-pg .tccnont-wrapper .grey > p{
  margin-top: 15px;
}
:lang(da) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.excel, 
:lang(no) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.excel,
:lang(no) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.risma,
:lang(sv-se) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.excel,
:lang(sv-se) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.risma{
  line-height: 24px;
  margin-top: 10px;
}
:lang(no) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.excel, 
:lang(no) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.risma,
:lang(sv-se) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.risma,
:lang(sv-se) .hdrGr.sldtl-pg .cmprsn-wrapper .h4.align_center.excel{
  font-weight: 600;
}
:lang(da) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1,
:lang(no) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1,
:lang(sv-se) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1{
  padding-top: 30px;
  padding-bottom: 30px;
}
:lang(da) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(no) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(sv-se) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_col img{
  max-width: 600px;
}
:lang(da) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper, 
:lang(no) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper,
:lang(sv-se) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper{
  padding-top: 95px;
}
:lang(no) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper a.cta_button{
  padding: 12px 10px;
}


:lang(da) .ismsInfo-pg .banner_wrap .book_demo_ps {
  margin-bottom: 40px;
}
:lang(da) .ismsInfo-pg .esgEnv_grp .dnd-section, 
:lang(no) .ismsInfo-pg .esgEnv_grp .dnd-section,
:lang(sv-se) .ismsInfo-pg .esgEnv_grp .dnd-section{
  padding-top: 40px;
  padding-bottom: 40px;
}
:lang(da) .ismsInfo-pg .esgEnv_grp.ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(no) .ismsInfo-pg .esgEnv_grp.ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(sv-se) .ismsInfo-pg .esgEnv_grp.ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(da) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(no) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
:lang(sv-se) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img{
  max-width: 600px;
}
:lang(da) .ismsInfo-pg .btmpn-wrapper .btmpn-btn {
  padding-right: 0;
  height: 38px;
  max-width: 202px;
}
:lang(da) .ismsInfo-pg .hsfaq-wrapper h2,
:lang(no) .ismsInfo-pg .hsfaq-wrapper h2,
:lang(sv-se) .ismsInfo-pg .hsfaq-wrapper h2{
  padding-bottom: 84px;
  margin-bottom: 0;
}
:lang(da) .ismsInfo-pg .gdprSltn-wrapper .gdprSltn_topcont p,
:lang(no) .ismsInfo-pg .gdprSltn-wrapper .gdprSltn_topcont p,
:lang(sv-se) .ismsInfo-pg .gdprSltn-wrapper .gdprSltn_topcont p{
  text-align: left;
}


:lang(da) .professional_suite_lyt .professional_suite .content h3 strong {
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}
:lang(da) .professional_suite_lyt .hscwic-wrapper.left.hscwic_2 .hscwic_col img{
  max-width: 600px;
}


:lang(da) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1,
:lang(no) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1,
:lang(sv-se) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1 {
  padding-top: 30px;
  padding-bottom: 30px;
}
:lang(da) .opCmp-pg .btmpn-wrapper,
:lang(no) .opCmp-pg .btmpn-wrapper,
:lang(sv-se) .opCmp-pg .btmpn-wrapper{
  padding-top: 95px;
}
:lang(da) .opCmp-pg .hsigplt-wrapper .column-2:first-child .card_header > .faq-icon-wrap-2 > .plus-wrapper-2,
:lang(no) .opCmp-pg .hsigplt-wrapper .column-2:first-child .card_header > .faq-icon-wrap-2 > .plus-wrapper-2{
  margin-right: 0;
}
:lang(sv-se) .opCmp-pg .tccnont-wrapper .tccnont_btn .book-demo {
  border-radius: 3px;
  letter-spacing: 1.5px;
}



@media screen and (min-width: 992px) { 
  :lang(da) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1,
  :lang(no) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1,
  :lang(sv-se) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1{
    padding-right: 0;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px){ 
  :lang(da) .opCmp-pg  .hsigplt-wrapper .hsigplt_heading,
  :lang(no) .opCmp-pg  .hsigplt-wrapper .hsigplt_heading,
  :lang(sv-se) .opCmp-pg  .hsigplt-wrapper .hsigplt_heading{
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) { 
  :lang(da) .implmntsn-pg .banner_wrap, :lang(no) .implmntsn-pg .banner_wrap, :lang(sv-se) .implmntsn-pg .banner_wrap {
    background-position: 100% 50%;
  }
  :lang(da) .implmntsn-pg .iwcnt-wrapper .content_contain:first-child p{
    margin-top: 0;
  }
  :lang(da) .hdrGr.sldtl-pg .sldtl_grp .hscwic-wrapper .hscwic_col,
  :lang(no) .hdrGr.sldtl-pg .sldtl_grp .hscwic-wrapper .hscwic_col,
  :lang(sv-se) .hdrGr.sldtl-pg .sldtl_grp .hscwic-wrapper .hscwic_col{
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  :lang(da) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_row,
  :lang(no) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_row,
  :lang(sv-se) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_row{
    width: 100%;
  }
  :lang(da) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper,
  :lang(no) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper,
  :lang(sv-se) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper{
    padding-top: 40px;
  }
  :lang(da) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper .lets-talk {
    padding-left: 10px;
    padding-right: 10px;
  }
  :lang(da) .hdrGr.sldtl-pg .hsigplt-wrapper .hsigplt-content,
  :lang(no) .hdrGr.sldtl-pg .hsigplt-wrapper .hsigplt-content,
  :lang(sv-se) .hdrGr.sldtl-pg .hsigplt-wrapper .hsigplt-content{
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  :lang(da) .hdrGr.sldtl-pg  .hscwic-wrapper .hs-btn{
    text-align: center;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .hscwic-wrapper .hscwic_col img,
  :lang(no) .ismsInfo-pg .esgEnv_grp .hscwic-wrapper .hscwic_col img,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .hscwic-wrapper .hscwic_col img{
    max-width: 550px;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_3 .hscwic_col img,
  :lang(no) .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_3 .hscwic_col img,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_3 .hscwic_col img{
    max-width: 500px;
  }
  :lang(da) .ismsInfo-pg .hscwic-wrapper.right.hscwic_3 .hscwic-content,
  :lang(no) .ismsInfo-pg .hscwic-wrapper.right.hscwic_3 .hscwic-content,
   :lang(sv-se) .ismsInfo-pg .hscwic-wrapper.right.hscwic_3 .hscwic-content{
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  :lang(da) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic-content,
  :lang(no) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic-content,
  :lang(sv-se) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic-content{
    padding-top: 25px;
  }
  :lang(da) .ismsInfo-pg .btmpn-wrapper .btmpn-btn {
    letter-spacing: 0;
    padding-left: 0;
    border-radius: 8px;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec,
  :lang(no) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec{
    padding-top: 95px;
    padding-bottom: 65px;
  }
  :lang(da) .ismsInfo-pg .banner_wrap .book_demo_ps {
    font-weight: 700;
  }
  :lang(da) .opCmp-pg .btmpn-wrapper,
  :lang(no) .opCmp-pg .btmpn-wrapper,
  :lang(sv-se) .opCmp-pg .btmpn-wrapper{
    padding-top: 40px;
    padding-bottom: 10px;
  }
  :lang(da) .opCmp-pg .tccnont-wrapper .tccnont_btn,
  :lang(sv-se) .opCmp-pg .tccnont-wrapper .tccnont_btn,
  :lang(no) .opCmp-pg .tccnont-wrapper .tccnont_btn{
    display: none;
  }
  :lang(da) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1,
  :lang(no) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1,
  :lang(sv-se) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1{
    padding-right: 6%;
    padding-left: 6%;
  }
  :lang(da) .opCmp-pg .small_padding .hscwic-wrapper.left.hscwic_2 .hscwic-content,
  :lang(no) .opCmp-pg .small_padding .hscwic-wrapper.left.hscwic_2 .hscwic-content,
  :lang(sv-se) .opCmp-pg .small_padding .hscwic-wrapper.left.hscwic_2 .hscwic-content{
    padding-top: 15px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) { 
  :lang(da) .ismsInfo-pg .tiwc-wrapper .tiwc_item,
  :lang(no) .ismsInfo-pg .tiwc-wrapper .tiwc_item,
  :lang(sv-se) .ismsInfo-pg .tiwc-wrapper .tiwc_item{
    width: calc(50% - 50px);
    margin-right: 100px !important;
  }
  :lang(da) .ismsInfo-pg .tiwc-wrapper .tiwc_item,
  :lang(no) .ismsInfo-pg .tiwc-wrapper .tiwc_item,
  :lang(sv-se) .ismsInfo-pg .tiwc-wrapper .tiwc_item{
    margin-bottom: 100px;
  }
  :lang(da) .ismsInfo-pg .tiwc-wrapper .tiwc_item:nth-child(2n),
  :lang(no) .ismsInfo-pg .tiwc-wrapper .tiwc_item:nth-child(2n),
  :lang(sv-se) .ismsInfo-pg .tiwc-wrapper .tiwc_item:nth-child(2n){
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 767px) { 
  :lang(da) .hdrGr.sldtl-pg .tst_slider_mdl .section.book-demo_w_image.gdpr,
  :lang(no) .hdrGr.sldtl-pg .tst_slider_mdl .section.book-demo_w_image.gdpr,
  :lang(sv-se) .hdrGr.sldtl-pg .tst_slider_mdl .section.book-demo_w_image.gdpr{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .dnd-section, 
  :lang(no) .ismsInfo-pg .esgEnv_grp .dnd-section, 
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .dnd-section{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  :lang(da) .ismsInfo-pg .tiwc-wrapper .tiwc_item:not(:first-child),
  :lang(no) .ismsInfo-pg .tiwc-wrapper .tiwc_item:not(:first-child),
  :lang(sv-se) .ismsInfo-pg .tiwc-wrapper .tiwc_item:not(:first-child){
    padding-top: 10px;
  }
  :lang(da) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic-content,
  :lang(no) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic-content,
  :lang(sv-se) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 .hscwic-content{
    padding-top: 0;
  }
  :lang(da) .ismsInfo-pg .btmpn-wrapper .btmpn-btn {
    max-width: 180px;
    width: 100%;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec,
  :lang(no) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec{
    padding-bottom: 4%;
    padding-left: 4%;
    padding-right: 4%;
  }
  :lang(da) .ismsInfo-pg .hsfaq-wrapper h2,
  :lang(no) .ismsInfo-pg .hsfaq-wrapper h2,
  :lang(sv-se) .ismsInfo-pg .hsfaq-wrapper h2{
    padding-bottom: 68px;
  }
  :lang(da) .opCmp-pg .banner_wrap .book-demo-dasm {
    padding-top: 15.5px;
    padding-bottom: 15.5px;
  }
  :lang(da) .opCmp-pg .logos .logo_wrap:last-child,
  :lang(no) .opCmp-pg .logos .logo_wrap:last-child,
  :lang(sv-se) .opCmp-pg .logos .logo_wrap:last-child{
    display: none;
  }
  :lang(da) .opCmp-pg .small_padding .hscwic-wrapper.left.hscwic_2 .hscwic-content,
  :lang(no) .opCmp-pg .small_padding .hscwic-wrapper.left.hscwic_2 .hscwic-content,
  :lang(sv-se) .opCmp-pg .small_padding .hscwic-wrapper.left.hscwic_2 .hscwic-content{
    padding-top: 0;
  }
  :lang(da) .opCmp-pg .tiwc-wrapper .tiwc_item:last-child,
  :lang(no) .opCmp-pg .tiwc-wrapper .tiwc_item:last-child,
  :lang(sv-se) .opCmp-pg .tiwc-wrapper .tiwc_item:last-child{
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 479px) { 
  :lang(da) .implmntsn-pg .logos .logo_wrap:last-child,
  :lang(no) .implmntsn-pg .logos .logo_wrap:last-child,
  :lang(sv-se) .implmntsn-pg .logos .logo_wrap:last-child,
  :lang(da) .hdrGr.sldtl-pg .logos .logo_wrap:last-child,
  :lang(no) .hdrGr.sldtl-pg .logos .logo_wrap:last-child,
  :lang(sv-se) .hdrGr.sldtl-pg .logos .logo_wrap:last-child,
  :lang(da) .ismsInfo-pg .logos .logo_wrap:last-child,
  :lang(no) .ismsInfo-pg .logos .logo_wrap:last-child,
  :lang(sv-se) .ismsInfo-pg .logos .logo_wrap:last-child{
    display: none;
  }
  :lang(da) .implmntsn-pg .iwcnt-wrapper .iwcnt_list_img img,
  :lang(no) .implmntsn-pg .iwcnt-wrapper .iwcnt_list_img img,
  :lang(sv-se) .implmntsn-pg .iwcnt-wrapper .iwcnt_list_img img{
    max-width: 80% !important;
  }
  :lang(da) .implmntsn-pg .iwcnt-wrapper .iwcnt_list:first-child .iwcnt_list_img img,
  :lang(no) .implmntsn-pg .iwcnt-wrapper .iwcnt_list:first-child .iwcnt_list_img img,
  :lang(sv-se) .implmntsn-pg .iwcnt-wrapper .iwcnt_list:first-child .iwcnt_list_img img{
    max-width: 100% !important;
  }
  :lang(no) .implmntsn-pg .iwcnt-wrapper .content_contain:first-child h3{
    font-size: 18px;
  }
  :lang(da) .hdrGr.sldtl-pg .tst_slider_mdl .section.book-demo_w_image.gdpr,
  :lang(no) .hdrGr.sldtl-pg .tst_slider_mdl .section.book-demo_w_image.gdpr,
  :lang(sv-se) .hdrGr.sldtl-pg .tst_slider_mdl .section.book-demo_w_image.gdpr{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  :lang(da) .hdrGr.sldtl-pg .tst_slider_mdl .name---testimonial,
  :lang(no) .hdrGr.sldtl-pg .tst_slider_mdl .name---testimonial,
  :lang(sv-se) .hdrGr.sldtl-pg .tst_slider_mdl .name---testimonial{
    margin-top: 0;
  }
  :lang(da) .hdrGr.sldtl-pg .cmprsn-wrapper .main_sec,
  :lang(no) .hdrGr.sldtl-pg .cmprsn-wrapper .main_sec,
  :lang(sv-se) .hdrGr.sldtl-pg .cmprsn-wrapper .main_sec{
    padding-top: 0;
  }
  :lang(da) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1,
  :lang(no) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1,
  :lang(sv-se) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  :lang(da) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_row,
  :lang(no) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_row,
  :lang(sv-se) .hdrGr.sldtl-pg .hscwic-wrapper.right.hscwic_1 .hscwic_row{
    margin-top: 25px;
  }
  :lang(da) .hdrGr.sldtl-pg .hsigplt-wrapper .text-block,
  :lang(no) .hdrGr.sldtl-pg .hsigplt-wrapper .text-block,
  :lang(sv-se) .hdrGr.sldtl-pg .hsigplt-wrapper .text-block{
    font-size: 17px;
  }
  :lang(da) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper a.cta_button,
  :lang(no) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper a.cta_button,
  :lang(sv-se) .hdrGr.sldtl-pg .sldtl_grp .btmpn-wrapper a.cta_button{
    width: auto;
    min-width: 180px;
  }
  :lang(da) .ismsInfo-pg .banner_wrap .ban_cont p,
  :lang(no) .ismsInfo-pg .banner_wrap .ban_cont p,
  :lang(sv-se) .ismsInfo-pg .banner_wrap .ban_cont p{
    font-size: 3.5vw;
    line-height: 4.3vw;
  }
  :lang(da) .ismsInfo-pg .banner_wrap .book_demo_ps {
    font-size: 3.5vw;
    line-height: 16px;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .dnd-section, 
  :lang(no) .ismsInfo-pg .esgEnv_grp .dnd-section,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .dnd-section{
    padding-top: 25px;
    padding-bottom: 30px;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .tiwc-wrapper .tiwc_main_title h2,
  :lang(no) .ismsInfo-pg .esgEnv_grp .tiwc-wrapper .tiwc_main_title h2,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .tiwc-wrapper .tiwc_main_title h2{
    text-align: center;
  }
  :lang(da) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1,
  :lang(no) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1,
  :lang(sv-se) .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 40px;
    padding-bottom: 35px;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .btmpn-wrapper .section.yellow_bg,
  :lang(no) .ismsInfo-pg .esgEnv_grp .btmpn-wrapper .section.yellow_bg,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .btmpn-wrapper .section.yellow_bg{
    padding: 0;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec,
  :lang(no) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec{
    padding-top: 20px;
    padding-bottom: 100px;
    padding-left: 5%;
    padding-right: 5%;
  }
  :lang(da) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .hs-btn,
  :lang(no) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .hs-btn,
  :lang(sv-se) .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .hs-btn{
    padding-left: 15px;
    padding-right: 15px;
  }
  :lang(da) .professional_suite_lyt .professional_suite .white_boks_ps h2,
  :lang(da) .professional_suite_lyt .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_col h2{
    text-align: center;
  }
  :lang(da) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1,
  :lang(no) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1,
  :lang(sv-se) .opCmp-pg .esgEnv_grp.opCmp_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  :lang(da) .opCmp-pg .banner_wrap .book-demo-dasm {
    padding-top: 9px;
    padding-bottom: 9px;
  }
  :lang(da) .opCmp-pg .esgEnv_grp .hscwic-wrapper .hscwic_row,
  :lang(no) .opCmp-pg .esgEnv_grp .hscwic-wrapper .hscwic_row,
  :lang(sv-se) .opCmp-pg .esgEnv_grp .hscwic-wrapper .hscwic_row{
    margin-top: 0;
  }
  :lang(da) .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_3 .hscwic_row,
  :lang(no) .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_3 .hscwic_row,
  :lang(sv-se) .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_3 .hscwic_row{
    margin-top: 25px;
  }
  :lang(da) .opCmp-pg .tst_slider_mdl .name---testimonial,
  :lang(sv-se) .opCmp-pg .tst_slider_mdl .name---testimonial,
  :lang(no) .opCmp-pg .tst_slider_mdl .name---testimonial{
    margin-top: 0;
  }
  :lang(da) .opCmp-pg .hsigplt-wrapper .hsigplt_heading,
  :lang(no) .opCmp-pg .hsigplt-wrapper .hsigplt_heading,
  :lang(sv-se) .opCmp-pg .hsigplt-wrapper .hsigplt_heading{
    font-size: 18px;
  }
  :lang(no) .opCmp-pg .btmpn-wrapper .book_demo_btn {
    max-width: 180px;
    width: auto;
  }
  :lang(sv-se) .opCmp-pg .btmpn-wrapper .book_demo_btn {
    max-width: 209px;
  }
}

@media screen and (max-width: 420px) {
  :lang(sv-se) .ismsInfo-pg .gdprSltn-wrapper .gdprSltn_itemtitle {
    font-size: 16px;
    padding-left: 0;
  }
  :lang(sv-se) .ismsInfo-pg .gdprSltn-wrapper .card_wrapper:nth-child(2) .card_grc {
    height: auto;
    min-height: 301px;
  }
  :lang(sv-se) .ismsInfo-pg .gdprSltn-wrapper .gdprSltn-btn{
    padding: 9px 14px;
    font-size: 12px;
    word-break: break-all;
  }
}

/* ---- End tables css ---- */

.professional_suite_page div[class*="-full-width-section"] {
  padding-left: 0;
  padding-right: 0px;
} 
.professional_suite_lyt .header_outer {
  background-color: #f2f2f2;
}

.professional_suite_page .widget-type-rich_text,
.outsourcing_page .widget-type-rich_text,
.kontrakt_og_page .widget-type-rich_text{
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.professional_suite_page .btmpn-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.professional_suite_page .row2_wrap .hscwic-wrapper.right .hscwic-img {
  width: 100%;
}
.professional_suite_page .row2_wrap .hscwic-wrapper.right.hscwic_1 .hscwic_col img {
  max-width: 90%;
}
.professional_suite_page .row2_wrap .hscwic-wrapper.right.hscwic_1 .hscwic_row {
  grid-column-gap: 60px;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}
.professional_suite_page .row2_wrap .hscwic-wrapper.right.hscwic_2 .hscwic_col img {
  max-width: 600px;
}
.professional_suite_page .hscwic-wrapper .hs-btn {
  text-align: center;
}

.outsourcing_page .logos .logo_contain {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.outsourcing_page .logos .logo_wrap:first-child img {
  width: 8vw;
  min-width: 170px;
}
.outsourcing_page .hscwic-wrapper .hscwic_list {
  margin-bottom: 0;
  margin-top: 15px;
}
.outsourcing_page .row3_wrap .hscwic-wrapper:last-child {
  margin-bottom: 30px;
}
.outsourcing_page .cwbg-wrapper .cwbg_cont h2 {
  margin-top: 20px;
}
.outsourcing_page .tiwc-wrapper .tiwc_main_title {
  max-width: 700px;
}


.outsourcing_page .row4_wrap .hscwic-wrapper {
  padding: 95px 6%;
}
.outsourcing_page .row4_wrap .hscwic-wrapper .hscwic_row {
  grid-column-gap: 60px;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}
.outsourcing_page .row4_wrap .hscwic-wrapper .hscwic_col img {
  max-width: 90%;
}
.outsourcing_page .row4_wrap .hscwic-wrapper .hscwic-img {
  width: 100%;
}
.outsourcing_page .row5_wrap .hscwic-wrapper .hscwic-img img {
  max-width: 600px;
}
.outsourcing_page .btmpn-wrapper {
  padding-top: 50px;
}

.outsourcing_page .hsfaq-wrapper h2 {
  padding-bottom: 84px;
}
.outsourcing_page .hsfaq-wrapper .rich-text-faq p a {
  color: #00e !important;
}
.outsourcing_page .hscwic-wrapper .hs-btn {
  text-align: center;
}

.kontrakt_og_page .row2_wrap .hscwic-wrapper.hscwic_3 .hscwic_row {
  margin-bottom: 30px;
}
.kontrakt_og_page .cwbg-wrapper .cwbg_cont h2 {
  margin-top: 20px;
}
.kontrakt_og_page .cwbg-wrapper {
  background-position: 50% 10%;
}
.kontrakt_og_page .row3_wrap .hscwic-wrapper.hscwic_1 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.kontrakt_og_page .row3_wrap .hscwic-wrapper.hscwic_1 .hscwic_col img {
  max-width: 600px;
}
.kontrakt_og_page .hscwic-wrapper .hs-btn {
  text-align: center;
}


html[lang="da"] .esgEnv-page .tccnont-wrapper .tccnont_row {
  padding-left: 0;
  grid-column-gap: 80px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
html[lang="da"] .esgEnv-page .tccnont-wrapper .main_sec {
  padding-right: 6%;
  padding-bottom: 95px;
}

html[lang="da"] .other_sol_pg .banner_wrap h1 {
  font-weight: 600;
}
html[lang="da"] .other_sol_pg .service_tabber_mdl .service_card_tab-2.other-solutions {
  padding: 7px 10px;
}
html[lang="da"] .other_sol_pg .service_tabber_mdl .section-78.yellow_bg._80 {
  margin-top: 90px;
  min-height: auto;
  padding-bottom: 20px;
}
html[lang="da"] .other_sol_pg .service_tabber_mdl .ser_btn a {
  padding-top: 0;
  padding-bottom: 0;
}

html[lang="da"] .gdpr_pg .cwbg-wrapper {
  background-position: 50% 10%;
}
html[lang="da"] .gdpr_pg .cmprsn-wrapper .h4 {
    font-weight: 600;
}
html[lang="da"] .gdpr_row3 .hscwic-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
html[lang="da"] .gdpr_row3 .btmpn-wrapper {
  padding-top: 95px;
}
html[lang="da"] .outsourcing_page .cloud_outstanding .section.eipoa {
  background-position: 50% 50%;
}
html[lang="da"] .outsourcing_page .row4_wrap .hscwic-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
html[lang="da"] .row5_wrap .hscwic-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}
html[lang="da"] .outsourcing_page .row5_wrap .hscwic-wrapper .hscwic_row {
  grid-auto-flow: row;
  grid-column-gap: 60px;
}
html[lang="da"] .outsourcing_page .wb_listings {
  padding-top: 40px;
  padding-bottom: 40px;
}
html[lang="da"] .outsourcing_page .wb_listings h2.h2_ressourcer {
  text-align: center;
}
html[lang="da"] .outsourcing_page .wb_listings .blog_cards_collection_list_wrapper-2._90 {
  width: 80%;
  margin-bottom: 0;
}
html[lang="da"] .outsourcing_page .wb_listings .blog_cards_collection_list-2.webinar-site {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
html[lang="da"] .outsourcing_page .wb_listings .blog_card_collection_item._50_procent {
  width: calc(50% - 7px);
}

html[lang="no"] .grc_platform_grp .hscwic-wrapper.hscwic_1 .hscwic-img,
html[lang="sv-se"] .grc_platform_grp .hscwic-wrapper.hscwic_1 .hscwic-img{
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
html[lang="no"] .grc_platform_grp .hscwic_3,
html[lang="sv-se"] .grc_platform_grp .hscwic_3{
  padding-top: 40px;
  padding-bottom: 40px;
}
html[lang="no"] .grc_platform_grp .hscwic_3 .hscwic_col h2,
html[lang="sv-se"] .grc_platform_grp .hscwic_3 .hscwic_col h2{
  margin-bottom: 20px;
  max-width: 100%;
}
html[lang="no"] .grc_platform_grp .cwbg-wrapper,
html[lang="sv-se"] .grc_platform_grp .cwbg-wrapper{
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: 50% 65%;
}
html[lang="no"] .grc_platform_grp2 .hscwic-wrapper.left,
html[lang="sv-se"] .grc_platform_grp2 .hscwic-wrapper.left{
  padding-bottom: 95px;
}
html[lang="no"] .grc_platform_grp2 .srcs-wrapper .srcs_title,
html[lang="sv-se"] .grc_platform_grp2 .srcs-wrapper .srcs_title{
  max-width: 1200px;
}
html[lang="no"] .grc_platform_grp2 .srcs-wrapper .srcs_heading,
html[lang="sv-se"] .grc_platform_grp2 .srcs-wrapper .srcs_heading{
  font-size: 27px;
}
html[lang="sv-se"] .grc_platform_grp2 .Boka_en_demo_nu {
  display: table;
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;
  width: 100%;
  padding: 12px 10px;
}



@media (min-width: 768px) and (max-width: 991px) {
  .professional_suite_page .btmpn-wrapper .cta-grid {
    padding-top: 40px;
    padding-bottom: 40px;
    -ms-grid-columns: 1fr 0.6fr;
    grid-template-columns: 1fr 0.6fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .professional_suite_page .btmpn-wrapper .content-wrap {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item,
  .kontrakt_og_page .tiwc-wrapper .tiwc_item{
    margin-right: 100px !important;
    width: calc(50% - 50px);
    margin-bottom: 100px;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item:nth-child(2n),
  .kontrakt_og_page .tiwc-wrapper .tiwc_item:nth-child(2n){
    margin-right: 0 !important;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item:last-child,
  .outsourcing_page .tiwc-wrapper .tiwc_item:nth-last-child(2) {
    margin-bottom: 50px;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_row{
    margin-bottom: -50px;
  }
  .kontrakt_og_page .tiwc-wrapper .tiwc_row{
    margin-bottom: 0px;
  }
  .kontrakt_og_page .tiwc-wrapper .tiwc_item:last-child,
  .kontrakt_og_page .tiwc-wrapper .tiwc_item:nth-last-child(2){
    margin-bottom: 0px;
  }
}


@media (min-width: 992px) {
  .professional_suite_lyt .banner_wrap {
    background-position: 50% 100%;
  }
  .professional_suite_lyt .banner_wrap .banner_inner {
    max-width: 48%;
  }
  .professional_suite_page .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .professional_suite_page .widget-type-rich_text {
    width: 90%;
  }
  .professional_suite_page .row1_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
    margin-top: 15px;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_1 .hscwic_col h2 {
    margin-top: 20px;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_col h2 {
    text-align: left;
  }
  .outsourcing_page .widget-type-rich_text,
  .kontrakt_og_page .widget-type-rich_text {
    max-width: 90%;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper.hscwic_1 .hscwic-img img {
    max-width: 500px;
  }
  .outsourcing_page .hscwic-wrapper .hscwic_lists {
    padding-top: 0;
    margin-left: 5px;
  }
  .outsourcing_page .hscwic_cont {
    clear: both;
    display: flex;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper.hscwic_2 .hscwic-content h2 {
    text-align: center;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper.hscwic_3 .hscwic_col img {
    max-width: 500px;
  }
  .outsourcing_page .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper {
    padding: 50px 5%;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
    margin-top: 20px;
  }
  .outsourcing_page .row5_wrap .hscwic-wrapper .hscwic_col h2 {
    margin-top: 25px;
    text-align: center;
  }
  .outsourcing_page .hsigplt-wrapper .hsigplt-content {
    text-align: center;
    padding: 0;
  }
  .outsourcing_page .hsigplt-wrapper .hsigplt_col p {
    padding-top: 10px;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.hscwic_1 .hscwic_col img {
    max-width: 500px;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_col h2 {
    text-align: center;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.hscwic_3 .hscwic_col img {
    max-width: 500px;
  }
  .kontrakt_og_page .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  html[lang="da"] .other_sol_pg .service_tabber_mdl .service_card_tab-2.other-solutions {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .professional_suite_page .row1_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: center;
    margin-top: 0;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_1 .hscwic-img {
    margin-top: 0;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_col h2 {
    text-align: center;
  }
  .outsourcing_page .banner_wrap {
    padding-top: 3vw;
  }
  .outsourcing_page .logos .logo_wrap:first-child img {
    min-width: 120px;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper:last-child {
    padding-bottom: 60px;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item,
  .kontrakt_og_page .tiwc-wrapper .tiwc_item{
    margin-bottom: 30px !important;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item:nth-child(2),
  .outsourcing_page .tiwc-wrapper .tiwc_item:nth-child(5) {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper {
    padding: 30px 5vw;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper .hscwic-img {
    margin-top: 0;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: center;
  }
  .outsourcing_page .prcsstb-wrapper .whats_included {
    padding-left: 20px;
    padding-right: 20px;
  }
  .outsourcing_page .row5_wrap .hscwic-wrapper .hscwic_col h2 {
    margin-top: 0;
  }
  .outsourcing_page .hsigplt-wrapper .hsigplt_col h2 {
    text-align: center;
  }
  .kontrakt_og_page .banner_wrap .mobile-image {
    background-size: auto 100%;
    display: block;
    width: 100%;
    height: 200px;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.right.hscwic_3 {
    padding-bottom: 60px;
  }
  .kontrakt_og_page .row3_wrap .hscwic-wrapper.hscwic_1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .kontrakt_og_page .hsigplt-wrapper .hsigplt-content {
    padding: 0;
  }
}

@media (max-width: 479px) {
  .professional_suite_page .widget-type-rich_text {
    width: 80%;
  }
  .professional_suite_page .row1_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
    margin-top: 15px;
  }
  .professional_suite_page .hscwic-wrapper .hscwic_row {
    margin-top: 0;
  }
  .professional_suite_page .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.right.hscwic_1 .hscwic_col img {
    max-width: 100%;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_1 .hscwic-img {
    margin-bottom: 15px;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_1 .hscwic_col h2 {
    text-align: center;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_row {
    margin-top: 25px;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_col h2 {
    text-align: left;
  }
  .professional_suite_page .row2_wrap .hscwic-wrapper.right.hscwic_1 {
    padding-bottom: 35px;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper .hscwic_col img {
    max-width: 100%;
  }
  .outsourcing_page .row4_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
    margin-top: 35px;
  }
  .outsourcing_page .banner_wrap {
    padding-top: 2vw;
  }
  .outsourcing_page .banner_wrap .mobile-image {
    width: 100%;
    background-size: 100% 95%;
    background-position: 50% 100%;
  }
  .outsourcing_page .widget-type-rich_text {
    max-width: 80%;
  }
  .outsourcing_page .hscwic-wrapper .hscwic_row {
    margin-top: 0;
  }
  .outsourcing_page .hscwic-wrapper .hscwic_list_img img {
    max-width: 80% !important;
  }
  .outsourcing_page .hscwic-wrapper .hscwic_lists {
    margin-left: 0;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper.hscwic_2 .hscwic_row {
    margin-top: 25px;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper.hscwic_2 .hscwic-content h2 {
    text-align: left;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper.hscwic_3 .hscwic_row {
    margin-top: 25px;
  }
  .outsourcing_page .row3_wrap .hscwic-wrapper:last-child {
    padding-bottom: 50px;
  }
  .outsourcing_page .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_main_title h2,
  .kontrakt_og_page .tiwc-wrapper .tiwc_main_title h2{
    text-align: center;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item,
  .kontrakt_og_page .tiwc-wrapper .tiwc_item{
    margin-bottom: 35px !important;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_row,
  .kontrakt_og_page .tiwc-wrapper .tiwc_row{
    margin-bottom: 0;
  }
  .outsourcing_page .tiwc-wrapper .tiwc_item:last-child,
  .kontrakt_og_page .tiwc-wrapper .tiwc_item:last-child{
    margin-bottom: 30px !important;
  }
  .outsourcing_page .prcsstb-wrapper .whats_included {
    padding-left: 15px;
    padding-right: 15px;
  }
  .outsourcing_page .row5_wrap .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
    margin-top: 15px;
  }
  .outsourcing_page .hscwic-wrapper .hs-btn {
    text-align: center;
  }
  .outsourcing_page .hsigplt-wrapper .hsigplt_btn {
    text-align: center;
  }
  .outsourcing_page .hsigplt-wrapper .text-block {
    font-size: 17px;
  }
  .kontrakt_og_page .banner_wrap .book-demo-dasm {
    line-height: 22px;
  }
  .kontrakt_og_page .widget-type-rich_text {
    width: 80%;
  }
  .kontrakt_og_page .widget-type-rich_text h2 {
    font-size: 22px;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.hscwic_1 .hscwic_row {
    margin-top: 0;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.hscwic_2 .hscwic_col h2 {
    text-align: left;
  }
  .kontrakt_og_page .row2_wrap .hscwic-wrapper.right.hscwic_3 {
    padding-bottom: 50px;
  }
  .kontrakt_og_page .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  .kontrakt_og_page .row3_wrap .hscwic-wrapper.hscwic_1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .kontrakt_og_page .hscwic-wrapper .hs-btn {
    text-align: center;
  }
}

/* ---- End default module css ---- */

.header_language ul li ul li a[href="#"] {
  display: none;
}
img {
  border: 0;
  vertical-align: middle;
  display: inline-block;
  max-width: 100%;
}
.header_outer {
  min-height: 80px;
}
.main_grp {
  font-size: 17px;
  line-height: 22px;
  word-break: initial;
  color: #222222;
}
.hs-btn {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: #fff;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  margin-top: 12px;
  margin-left: 0;
  border-radius: 8px;
  background-color: #00dbb9;
  -webkit-transition: 350ms;
  transition: 350ms;
  font-family: proxima-nova,sans-serif;
  color: #f7f7f7;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: auto;
  background-color: #00dbb9;
  color: #fff;
  border-radius: 8px;
}
.hs-btn:hover {
  color: #fff;
  background-color: #09d5b0;
  -webkit-transform: translate(0,-2px);
  -ms-transform: translate(0,-2px);
  transform: translate(0,-2px);
}
.grc_platform_grp .page-header.section-header {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-header.section-header h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-header.section-header p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}
.grc_platform_grp .hscwic_3 {
  padding-top: 0;
  padding-bottom: 95px;
}
.grc_platform_grp .hscwic_3 .hscwic_row {
  margin-bottom: 30px;
}
.grc_platform_grp .hscwic_3 .hscwic_col h2 {
  max-width: 440px;
  margin-bottom: 26px;
}
.grc_platform_grp2 .hscwic-wrapper.right .hscwic_row {
  grid-column-gap: 60px;
  grid-template-columns: 50% 50%;
}
.grc_platform_grp2 .hscwic-wrapper.right .hscwic-img {
  padding: 0;
  text-align: center;
  width: 100%;
  border: none;
}
.grc_platform_grp2 .hscwic-wrapper.left {
  padding-top: 95px;
  padding-bottom: 35px;
}
.grc_platform_grp .hscwic-wrapper.hscwic_1 .hscwic-img {
  padding: 6%;
  text-align: initial;
  margin-right: 0;
}
.grc_platform_grp2 .hscwic-wrapper.left .hscwic-img {
  text-align: initial;
}
.partner-pg .banner_wrap .ban_cont p {
  color: #333;
  font-weight: 400;
}
[data-text="bigger-text"] {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-align: center;
}
.h2_bigger {
  font-size: 50px;
  line-height: 60px;
}
.partner_grp .widget-type-rich_text,
.about_grp .widget-type-rich_text,
.dfltCont .widget-type-rich_text {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.partner_grp .widget-type-rich_text h2,
.about_grp .widget-type-rich_text h2,
.dfltCont .widget-type-rich_text h2 {
  text-align: center;
}
.partner_grp .cwbg-wrapper .lets-talk {
  margin-top: 0;
  max-width: 250px;
  min-width: 200px;
  padding: 12px 10px;
  font-family: proxima-nova,sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  font-size: 18px;
  box-sizing: border-box !important;
  transform: none;
}
.partner_grp .hscwic-wrapper .hscwic_row {
  grid-column-gap: 60px;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}
html[lang="da"] .partner_grp .cwbg-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
html[lang="da"] .partner_grp .cwbg-wrapper .page-center {
  max-width: 1400px;
  width: 100%;
}
html[lang="da"] .partner_grp .cwbg-wrapper .cwbg_cont {
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;
}
html[lang="da"] .partner_grp .cwbg-wrapper .lets-talk {
  margin-top: 20px;
  min-width: auto;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
}
.team-pg .header_outer,
html:not([lang="da"]) .about-pg .header_outer,
.implmntsn-pg .header_outer {
  min-height: auto;
}
.team-pg .main_header,
.about-pg .main_header {
  background: transparent;
}
html[lang="da"] body:not(.scroll-header) .about-pg .main_header,
html[lang="da"] body:not(.scroll-header) .about-pg .header_outer,
body:not(.scroll-header) .hdrGr .main_header,
body:not(.scroll-header) .hdrGr .header_outer {
  background: #f2f2f2;
}
.main_sec {
  padding: 95px 6%;
}
.team_grp .btmpn-wrapper {
  padding-bottom: 95px;
  background-color: #f5f4f2;
}
.team_grp .btmpn-wrapper .heading-btmpn,
.about_grp .cwbg-wrapper .cwbg_cont h2 {
  margin-top: 20px;
}
html[lang="da"] .team_grp .btmpn-wrapper {
  padding-top: 0;
}
.about-pg .bantyp2_wrap {
  min-height: 32vw;
}
.body-wrapper .small_padding .dnd-section,
.main_sec.main_sec_small,
.about_grp .cwbg-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.about_grp .cwbg-wrapper {
  background-position: 50% 65%;
}
.about_grp .hscwic-wrapper.left .hscwic-img {
  margin-right: auto;
  margin-left: 0;
}
html[lang="en"] .about_grp .hscwic-wrapper.right .hscwic_col h2 {
  max-width: 440px;
  margin-bottom: 26px;
}
.about_grp .hscwic-wrapper.right .hscwic-img {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
html[lang="sv-se"] .about_grp.small_padding .dnd-section,
html[lang="no"] .about_grp.small_padding .dnd-section,
html[lang="da"] .about_grp.small_padding .dnd-section {
  padding: 30px 6%;
}
html[lang="sv-se"] .about_grp .hscwic-wrapper.right .hscwic-img,
html[lang="no"] .about_grp .hscwic-wrapper.right .hscwic-img,
html[lang="da"] .about_grp .hscwic-wrapper.right .hscwic-img {
  text-align: center;
}
.career-pg .banner_wrap {
  min-height: 25vw;
  background-position: 50% 60%;
}
.implmntsn_grp .logos .logo_wrap:nth-child(4) img {
  width: 7vw;
  min-width: 145px;
}
.implmntsn_grp .hscwic-wrapper.left {
  padding-top: 30px;
  padding-bottom: 80px;
}

.sldtl_grp .logos .logo_wrap:nth-child(1) img {
  width: 8vw;
  min-width: 170px;
}
.sldtl_grp .logos .logo_wrap:nth-child(2) img {
  width: 4vw;
  min-width: 100px;
}
.sldtl_grp .logos .logo_wrap:nth-child(4) img {
  width: 7vw;
  min-width: 145px;
}
.sldtl_grp .logos .logo_wrap:nth-child(5) img {
  width: 8vw;
  min-width: 170px;
}
.sldtl-pg .banner_wrap {
  background-position: 50% 50%;
}
.sldtl_grp .hscwic-wrapper .hscwic-img {
  padding: 6%;
}
.sldtl_grp .hscwic-wrapper.left .hscwic-img {
  margin-right: 0;
  text-align: initial;
}
.sldtl_grp .hscwic-wrapper .hscwic_list,
.esgEnv_grp .hscwic-wrapper .hscwic_list {
  margin-bottom: 15px;
}
.sldtl_grp .hscwic-wrapper .hscwic_list:last-child,
.esgEnv_grp .hscwic-wrapper .hscwic_list:last-child {
  margin-bottom: 0;
}
.sldtl_grp .hscwic-wrapper.hscwic_3 .hscwic_row,
.esgEnv_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
  margin-bottom: 30px;
}
.sldtl_grp .cwbg-wrapper .cwbg_cont h2,
.esgEnv_grp .cwbg-wrapper .cwbg_cont h2 {
  margin-top: 20px;
}
.sldtl_grp .hscwic-wrapper.right.hscwic_1 .hscwic-img {
  margin-right: 0;
}
.sldtl_grp .btmpn-wrapper {
  padding-top: 0;
}
.sldtl_grp .btmpn-wrapper a.cta_button {
  width: 100%;
  margin: 0;
  max-width: 250px;
  min-width: 200px;
  transform: none;
  font-size: 18px;
  letter-spacing: initial;
  display: inline-block;
}
.sldtl_grp .btmpn-wrapper .hs_cos_wrapper_type_cta {
  display: block;
  text-align: center;
}
.esgEnv-page .banner_wrap .banner_inner {
  max-width: 48%;
}
.esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
  padding: 30px 0 30px 6%;
}
.esgEnv_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img {
  max-width: 600px;
}
.hsfaq-wrapper .rich-text-faq p strong,
.prcsstb-wrapper .services_h.align_center strong {
  text-transform: uppercase;
}
.ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .hs-btn {
  padding-left: 20px;
  padding-right: 20px;
}
.ismsInfo-pg .esgEnv_grp .btmpn-wrapper .section.yellow_bg {
  z-index: 1;
  height: 337px;
}
.ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .main_sec {
  position: relative;
}
.ismsInfo-pg .esgEnv_grp .btmpn-wrapper a.cta_button {
  margin: 0;
  padding: 9px 0;
  width: 202px;
}
.ismsInfo-pg .banner_wrap .book-demo,
html[lang="da"] .ismsInfo-pg .banner_wrap a.cta_button {
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  border-radius: 3px;
}
html[lang="da"] .ismsInfo-pg .banner_wrap a.cta_button {
  margin-top: 12px;
}
.ismsInfo-pg .logos .logo_wrap:nth-child(1) img, 
.ismsInfo-pg .logos .logo_wrap:nth-child(4) img {
  width: 7vw;
  min-width: 145px;
}
.ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1,
.opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
  padding-right: 6%;
  padding-left: 6%;
}
.ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
.opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img {
  max-width: 550px;
}
.ismsInfo-pg .hscwic-wrapper .hscwic_lists .hscwic_list:nth-child(3) {
  margin-bottom: 15px;
}
.ismsInfo-pg .esgEnv_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
  margin-bottom: 0;
}
.ismsInfo-pg .esgEnv_grp .hscwic-wrapper.hscwic_4 .hscwic_row {
  margin-bottom: 30px;
}
.ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.opCmp-pg .logos .logo_wrap {
  width: 25%;
}
.opCmp-pg .logos .logo_wrap:nth-child(1) img,
.opCmp-pg .logos .logo_wrap:nth-child(4) img {
  width: 7vw;
  min-width: 145px;
}
.opCmp-pg .logos .logo_wrap:nth-child(2) img,
.opCmp-pg .logos .logo_wrap:nth-child(3) img {
  width: 8vw;
  min-width: 170px;
}
.opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.opCmp-pg .btmpn-wrapper {
  padding-top: 0;
}
.ismsInfo-pg .cwbg-wrapper .lets-talk {
  border-radius: 5px;
}
html[lang="da"] .grc_platform_grp .hscwic-wrapper.hscwic_1 .hscwic-img {
  padding: 0;
  text-align: center;
  margin-right: auto;
}
html[lang="da"] .grc_platform_grp .hscwic_3 {
  padding-top: 40px;
  padding-bottom: 40px;
}
html[lang="da"] .grc_platform_grp .hscwic_3 .hscwic_col h2 {
  max-width: 100%;
  margin-bottom: 20px;
}
html[lang="da"] .grc-platform-pg .cwbg-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: 50% 65%;
}
html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.left {
  padding-bottom: 95px;
}
html[lang="da"] .grc-platform-pg .srcs-wrapper .srcs_title {
  max-width: 1200px;
}
html[lang="da"] .grc-platform-pg .srcs-wrapper .srcs_heading {
  font-size: 27px;
}
.gdpr_pg .gdpr_row2 .tst_slider_mdl span.large-quotes-2 {
  font-size: 40px;
}
.gdpr_pg .gdpr_row3 .hsigplt-wrapper .hs-btn {
  transform: none;
}
html[lang="da"] .home_pg .banner_wrap .ban_cont p,
html[lang="no"] .home_pg .banner_wrap .ban_cont p,
html[lang="sv-se"] .home_pg .banner_wrap .ban_cont p {
  line-height: 1.5vw;
}
html[lang="da"] .home_pg .banner_wrap,
html[lang="no"] .home_pg .banner_wrap,
html[lang="sv-se"] .home_pg .banner_wrap {
  background-position: 50% 50%;
}
html[lang="da"] .home_row1 .hscwic-wrapper:last-child,
html[lang="no"] .home_row1 .hscwic-wrapper:last-child,
html[lang="sv-se"] .home_row1 .hscwic-wrapper:last-child {
  margin-bottom: 0;
}
html[lang="da"] .home_row1 .cwbg-wrapper .cwbg_cont h2,
html[lang="no"] .home_row1 .cwbg-wrapper .cwbg_cont h2,
html[lang="sv-se"] .home_row1 .cwbg-wrapper .cwbg_cont h2 {
  margin-top: 20px;
}
html[lang="da"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
html[lang="no"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
html[lang="sv-se"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img {
  padding: 6%;
}
html[lang="da"] .home_row2 .hscwic_cont h3,
html[lang="no"] .home_row2 .hscwic_cont h3,
html[lang="sv-se"] .home_row2 .hscwic_cont h3 {
  text-transform: uppercase;
}
html[lang="da"] .home_row2 .hscwic-wrapper:last-child {
  margin-bottom: 30px;
}
html[lang="no"] .gdpr_row1 .cwbg-wrapper,
html[lang="sv-se"] .gdpr_row1 .cwbg-wrapper {
  background-position: 50% 10%;
  background-attachment: scroll;
}
html[lang="no"] .gdpr_row3 .hscwic-wrapper,
html[lang="sv-se"] .gdpr_row3 .hscwic-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
html[lang="no"] .gdpr_row3 .btmpn-wrapper,
html[lang="sv-se"] .gdpr_row3 .btmpn-wrapper {
  padding-top: 95px;
}
.cert_mdl .ir-contact a {
  transition: none;
}
html[lang="da"] .prcsstb-wrapper .service_card_tab,
html[lang="no"] .prcsstb-wrapper .service_card_tab,
html[lang="sv-se"] .prcsstb-wrapper .service_card_tab {
  position: relative;
  z-index: 9;
}
html[lang="da"] .prcsstb-wrapper .service_card_tab.w--current:not(:first-child) .pointer,
html[lang="no"] .prcsstb-wrapper .service_card_tab.w--current:not(:first-child) .pointer,
html[lang="sv-se"] .prcsstb-wrapper .service_card_tab.w--current:not(:first-child) .pointer {
  display: flex;
}
html[lang="no"] .gdpr_pg .gdpr_row2 .tst_slider_mdl span.large-quotes-2 {
  font-size: 24px;
}
.wbnrdtl_frm .widget-type-rich_text h4 {
  padding-bottom: 31px;
}
html[lang="da"] .outsourcing_page .hsfaq-wrapper h2 {
  padding-bottom: 0;
}




.hscwic-wrapper .hscwic_col .hscwic_list p {
  color: #333;
}
@media (max-width: 991px) {
  .header_outer {
    min-height: 60px;
  }
  .body-wrapper .page-center,
  .partner_grp .widget-type-rich_text,
  .about_grp .widget-type-rich_text,
  .dfltCont .widget-type-rich_text {
    max-width: 90%;
  }
  .body-wrapper .dnd-section,
  .main_sec {
    padding: 50px 5%;
  }
  .grc_platform_grp .page-header.section-header {
    max-width: 90%;
  }
  .page-header.section-header h2 {
    margin-top: 0;
  }
  .page-header.section-header p {
    margin-bottom: 0;
    font-size: 20px;
  }
  .grc_platform_grp .hscwic_1 .hscwic_col img,
  .grc_platform_grp .hscwic_3 .hscwic_col img {
    max-width: 500px;
  }
  .grc_platform_grp .hscwic-wrapper.hscwic_1 .hscwic-img {
    padding-bottom: 0;
  }
  .grc_platform_grp .hscwic_3 .hscwic_col h2 {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .grc_platform_grp .hscwic_3 {
    padding-bottom: 50px;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic_row {
    grid-row-gap: 20px;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic-content {
    padding: 6% 6% 0;
  }
  .grc_platform_grp2 .hscwic-wrapper.left {
    padding-top: 50px;
  }
  .grc_platform_grp2 .hscwic-wrapper.left .hscwic_row {
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 25px;
  }
  .grc_platform_grp2 .hscwic-wrapper.left h2 {
    text-align: center;
  }
  [data-text="bigger-text"] {
    margin-bottom: 0;
    font-size: 20px;
  }
  .partner-pg .banner_wrap .ban_cont p {
    font-size: 22px;
    line-height: 32px;
  }
  .partner_grp .cwbg-wrapper .lets-talk {
    letter-spacing: 1.5px;
  }
  .partner-pg .banner_wrap {
    min-height: 28vw;
  }
  .body-wrapper .partner_grp .dnd-section {
    padding-bottom: 30px;
  }
  .partner_grp .hscwic-wrapper .hscwic_row {
    grid-row-gap: 20px;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  html[lang="da"] .partner_grp .cwbg-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  html[lang="da"] .partner_grp .cwbg-wrapper .page-center {
    max-width: 90%;
  }
  html[lang="da"] .partner_grp .cwbg-wrapper .cwbg_cont {
    max-width: 100%;
  }
  .team_grp .btmpn-wrapper .heading-btmpn,
  .about_grp .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  html[lang="da"] .team_grp .btmpn-wrapper {
    padding-bottom: 50px;
  }
  .about-pg .bantyp2_wrap {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .about-pg .bantyp2_wrap .banner_inner {
    max-width: 90%;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  html[lang="en"] .about_grp .hscwic-wrapper.right .hscwic_col h2 {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  html[lang="en"] .about_grp .hscwic-wrapper .hscwic-content {
    padding: 6% 6% 0;
  }
  .about_grp .hscwic-wrapper.right .hscwic_col img {
    max-width: 500px;
  }
  .about_grp .hscwic-wrapper .hscwic_row {
    grid-row-gap: 30px;
  }
  .about_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  .career-pg .banner_wrap {
    min-height: 18vw;
    padding-top: 60px;
    padding-bottom: 60px;
    background-position: 65% 50%;
  }
  .implmntsn-pg .banner_wrap {
    min-height: 28vw;
  }
  .implmntsn-pg .banner_wrap .banner_inner {
    margin-top: 60px;
  }
  .implmntsn-pg .hscwic-wrapper.right .hscwic_col img {
    max-width: 500px;
  }
  .implmntsn-pg .hscwic-wrapper.right .hscwic_row {
    grid-row-gap: 25px;
  }
  .implmntsn_grp .hscwic-wrapper.left {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .implmntsn_grp .hscwic-wrapper.left .hscwic_row {
    grid-row-gap: 15px;
  }
  .implmntsn_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  .sldtl_grp .cwbg-wrapper .cwbg_cont h2,
  .esgEnv_grp .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  .sldtl-pg .banner_wrap {
    background-position: 65% 50%;
  }
  .sldtl_grp .hscwic-wrapper:not(.right.hscwic_2) .hscwic_col img {
    max-width: 500px;
    text-align: center;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_col {
    padding: 6% 6% 0;
  }
  .sldtl_grp .hscwic-wrapper.left .hscwic_col h2,
  .esgEnv_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  .esgEnv_grp .hscwic-wrapper.right.hscwic_2 .hscwic_col h2 {
    text-align: left;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_list,
  .esgEnv_grp .hscwic-wrapper .hscwic_list {
    margin-left: 5px;
  }
  .sldtl_grp .hscwic-wrapper.right.hscwic_2 .hscwic-img {
    padding: 0;
  }
  .sldtl_grp .hscwic-wrapper.right.hscwic_2 .hscwic_row,
  .esgEnv_grp .hscwic-wrapper.right.hscwic_2 .hscwic_row {
    grid-column-gap: 25px;
    grid-row-gap: 15px; 
  }
  .sldtl_grp .btmpn-wrapper a.cta_button {
    letter-spacing: 1.5px;
    width: auto;
  }
  .esgEnv_grp .hscwic-wrapper.left .hscwic_col img {
    max-width: 500px;
  }
  .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
    padding-left: 0;
  }
  .esgEnv_grp .hsigplt-wrapper .hsigplt-content {
    padding: 0;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper .hscwic_col img {
    max-width: 500px;
  }
  .ismsInfo-pg .hscwic-wrapper .hscwic_lists .hscwic_list:nth-child(3) {
    margin-bottom: 30px;
  }
  .ismsInfo-pg .hscwic-wrapper.right.hscwic_3 .hscwic-content {
    padding: 6% 6% 0;
  }
  .ismsInfo-pg .cwbg-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 {
    padding: 50px 5% 40px;
  }
  .ismsInfo-pg .btmpn-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ismsInfo-pg .btmpn-wrapper .heading-btmpn {
    margin-bottom: 0;
  }
  .ismsInfo-pg .esgEnv_grp .btmpn-wrapper .section.yellow_bg {
    height: auto;
    padding: 0 2%;
  }
  .ismsInfo-pg .esgEnv_grp .btmpn-wrapper a.cta_button {
    letter-spacing: normal;
  }
  .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .hsigplt-content,
  .opCmp-pg .esgEnv_grp .hsigplt-wrapper .hsigplt-content {
    text-align: center;
  }
  .ismsInfo-pg .hsigplt-wrapper .hsigplt_col p,
  .opCmp-pg .hsigplt-wrapper .hsigplt_col p {
    padding-top: 10px;
  }
  .ismsInfo-pg .tiwc-wrapper .tiwc_row {
    margin-bottom: -100px;
  }
  .ismsInfo-pg .tiwc-wrapper .tiwc_item {
    margin-bottom: 100px;
  }
  .opCmp-pg .logos .logo_wrap {
    margin: 0;
    width: 33.33%;
    margin-bottom: 24px;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 .hscwic_col img,
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.right .hscwic_col img {
    max-width: 500px;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
    padding-right: 5%;
    padding-left: 5%;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.left .hscwic_col img {
    max-width: 550px;
  }
  .opCmp-pg .tccnont-wrapper .content_contain {
    padding: 0;
  }
  .opCmp-pg .opCmp_grp .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
  }
  .opCmp-pg .opCmp_grp .hscwic-wrapper .hscwic_row {
    grid-row-gap: 25px;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.left {
    padding-bottom: 50px;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.right .hscwic-content {
    padding: 0;
  }
  .home_row2 .hscwic-wrapper.hscwic_4 .hscwic-content {
    padding: 0;
  }
  .home_row1 .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  html[lang="da"] .grc_platform_grp2  .hscwic-wrapper.left .hscwic_col h2 {
    text-align: center;
  }
  html[lang="da"] .grc_platform_grp2  .hscwic-wrapper.right .hscwic_col h2 {
    text-align: left;
  }
  html[lang="da"] .home_pg .banner_wrap .ban_cont p,
  html[lang="no"] .home_pg .banner_wrap .ban_cont p,
  html[lang="sv-se"] .home_pg .banner_wrap .ban_cont p {
    line-height: 2.5vw;
  }
  html[lang="da"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row,
  html[lang="no"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row,
  html[lang="sv-se"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row {
    grid-row-gap: 15px;
  }
  html[lang="da"] .home_row1 .cwbg-wrapper .cwbg_cont h2,
  html[lang="no"] .home_row1 .cwbg-wrapper .cwbg_cont h2,
  html[lang="sv-se"] .home_row1 .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  html[lang="da"] .home_row1 .page-header.section-header,
  html[lang="no"] .home_row1 .page-header.section-header,
  html[lang="sv-se"] .home_row1 .page-header.section-header {
    max-width: 90%;
  }
  html[lang="da"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
  html[lang="no"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
  html[lang="sv-se"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img {
    padding: 0;
  }
  html[lang="no"] .gdpr_row3 .btmpn-wrapper,
  html[lang="sv-se"] .gdpr_row3 .btmpn-wrapper {
    padding-top: 40px;
  }
  html[lang="no"] .gdpr_row3 .hscwic-wrapper .hscwic-content,
  html[lang="sv-se"] .gdpr_row3 .hscwic-wrapper .hscwic-content {
    margin-top: 0;
  }
  html[lang="no"] .gdpr_row3 .hscwic-wrapper .hscwic-content,
  html[lang="no"] .gdpr_row2 .hscwic-wrapper .hscwic-content,
  html[lang="no"] .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic-content,
  html[lang="sv-se"] .gdpr_row3 .hscwic-wrapper .hscwic-content,
  html[lang="sv-se"] .gdpr_row2 .hscwic-wrapper .hscwic-content,
  html[lang="sv-se"] .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic-content {
    padding: 0;
  }
  html[lang="no"] .gdpr_row1 .hscwic-wrapper.hscwic_3 .hscwic_col img,
  html[lang="sv-se"] .gdpr_row1 .hscwic-wrapper.hscwic_3 .hscwic_col img {
    max-width: 500px;
  }
  html[lang="no"] .gdpr_row1 .cwbg-wrapper .cwbg_cont h2,
  html[lang="sv-se"] .gdpr_row1 .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 0;
  }
  .about_grp .cwbg-wrapper {
    background-position: 50% 50%;
  }
  .implmntsn-pg .banner_wrap {
    background-position: 100% 50%;
  }
  html[lang="da"] .esgEnv-page .tccnont-wrapper .tccnont_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  html[lang="da"] .esgEnv-page .contract_solution.bg_img .section.grey-onepager {
    margin-bottom: 0;
  }
  html[lang="da"] .prcsstb-wrapper .service_card_tab.w--current .pointer,
  html[lang="no"] .prcsstb-wrapper .service_card_tab.w--current .pointer,
  html[lang="sv-se"] .prcsstb-wrapper .service_card_tab.w--current .pointer {
    display: none !important;
  }
  html[lang="da"] .esgEnv-page .tccnont-wrapper .main_sec {
    padding-bottom: 50px;
  }
  html[lang="da"] .gdpr_row1 .hscwic-wrapper.right.hscwic_1 .hscwic-content,
  html[lang="da"] .gdpr_row2 .hscwic-wrapper .hscwic-content {
    padding: 0;
  }
  html[lang="da"] .gdpr_row3 .hscwic-wrapper .hscwic-content {
    padding: 0;
    margin-top: 0;
  }
  html[lang="da"] .gdpr_row3 .btmpn-wrapper {
    padding-top: 40px;
  }
  html[lang="da"] .outsourcing_page .hsfaq-wrapper h2 {
    padding-bottom: 0;
  }
  html[lang="da"] .gdpr_row2 .hscwic-wrapper .hscwic-content h2 {
    text-align: center;
  }
  html[lang="da"] .outsourcing_page .cloud_outstanding .section.eipoa {
    padding-top: 64px;
    padding-bottom: 60px;
  }
  
}

@media (max-width: 767px) {
  .header_outer {
    min-height: 40px;
  }
  .grc_platform_grp .page-header.section-header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .body-wrapper .dnd-section,
  .main_sec {
    padding: 30px 5vw;
  }
  .page-header.section-header h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .page-header.section-header p {
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    text-align: left;
  }
  .grc_platform_grp .hscwic_3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .grc_platform_grp .hscwic_3 .hscwic_row {
    padding-bottom: 30px;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic-content .hscwic_cont {
    padding-right: 1%;
    padding-left: 1%;
    text-align: left;
  }
  .grc_platform_grp2 .hscwic-wrapper.left {
    padding-top: 30px;
  }
  .grc_platform_grp2 .hscwic-wrapper.left .hscwic_row {
    margin-top: 10px;
  }
  .h2_bigger {
    font-size: 40px;
    line-height: 45px;
  }
  [data-text="bigger-text"] {
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    text-align: left;
  }
  .partner_grp .cwbg-wrapper .lets-talk {
    min-width: 250px;
  }
  html[lang="da"] .partner_grp .hscwic-wrapper .hscwic_row h2 {
    text-align: left; 
  }
  html[lang="da"] .partner_grp .cwbg-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .team_grp .btmpn-wrapper .heading-btmpn {
    font-size: 24px;
    line-height: 30px;
  }
  html[lang="da"] .team_grp .btmpn-wrapper {
    padding-bottom: 30px;
  }
  .about-pg .bantyp2_wrap h1 {
    margin-top: 20px;
  }
  .body-wrapper .small_padding .dnd-section,
  .main_sec.main_sec_small,
  .about_grp .cwbg-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about-pg .bantyp2_wrap {
    padding: 0;
  }
  .about-pg .bantyp2_wrap .banner_inner {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about_grp .cwbg-wrapper {
    padding-top: 40px;
    background-position: 50% 50%;
    padding-bottom: 40px;
  }
  .about_grp .hscwic-wrapper .hscwic_row {
    grid-row-gap: 20px;
  }
  .career-pg .banner_wrap {
    min-height: 18vw;
    padding-top: 4vw;
    padding-bottom: 0;
  }
  html[lang="da"] .career_grp .crntOp-wrapper .main_sec {
    padding-top: 10px;
    background-color: #f2f2f2;
  }
  .implmntsn_grp .logos .logo_wrap:nth-child(4) img {
    width: 10vw;
    min-width: 120px;
  }
  .implmntsn-pg .hscwic-wrapper.right .hscwic_row,
  .implmntsn_grp .hscwic-wrapper.left .hscwic_row {
    grid-row-gap: 0;
  }
  .sldtl_grp .logos .logo_wrap:nth-child(1) img,
  .sldtl_grp .logos .logo_wrap:nth-child(5) img {
    min-width: 120px;
  }
  .sldtl_grp .logos .logo_wrap:nth-child(2) img {
    min-width: 60px;
  }
  .sldtl_grp .logos .logo_wrap:nth-child(4) img {
    width: 10vw;
    max-width: 90%;
    min-width: 120px;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_col .hscwic_list p,
  .ismsInfo-pg .hscwic-wrapper .hscwic_col .hscwic_list p {
    line-height: 25px;
  }
  .sldtl_grp .hscwic-wrapper.right.hscwic_2 .hscwic-img {
    padding: 0 6%;
  }
  .sldtl_grp .hscwic-wrapper.right.hscwic_2 .hscwic_row {
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  .sldtl_grp .hscwic-wrapper.hscwic_3 .hscwic_row,
  .esgEnv_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
    padding-bottom: 30px;
  }
  .sldtl_grp .btmpn-wrapper a.cta_button {
    width: 100%;
  }
  .esgEnv-page .banner_wrap .banner_inner {
    max-width: 90%;
  }
  .esgEnv-page .hscwic-wrapper .hscwic_col .hscwic_list p {
    line-height: 25px;
  }
  .esgEnv_grp .hscwic-wrapper.right.hscwic_2 .hscwic_row {
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  .esgEnv_grp .tccnont-wrapper .tccnont_lists {
    padding-top: 25px;
  }
  .esgEnv_grp .hsigplt-wrapper .hsigplt_col h2 {
    text-align: center;
  }
  .ismsInfo-pg .logos .logo_wrap:nth-child(1) img,
  .ismsInfo-pg .logos .logo_wrap:nth-child(4) img {
    width: 10vw;
    min-width: 120px;
  }
  html[lang="da"] .ismsInfo-pg .banner_wrap a.cta_button,
  .ismsInfo-pg .banner_wrap .book-demo {
    min-height: auto;
    border-radius: 8px;
    padding-right: 18px;
    padding-left: 18px;
  }
  html[lang="da"] .ismsInfo-pg .banner_wrap a.cta_button {
    font-weight: bold;
  }
  .ismsInfo-pg .hscwic-wrapper.right.hscwic_3 .hscwic-content {
    padding-top: 0;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
    padding-bottom: 0;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.hscwic_4 .hscwic_row {
    padding-bottom: 30px;
  }
  .ismsInfo-pg .cwbg-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ismsInfo-pg .tiwc-wrapper .tiwc_row,
  .opCmp-pg .tiwc-wrapper .tiwc_row {
    margin-bottom: -30px;
  }
  .ismsInfo-pg .tiwc-wrapper .tiwc_item,
  .opCmp-pg .tiwc-wrapper .tiwc_item {
    margin-bottom: 30px !important;
  }
  .ismsInfo-pg .prcsstb-wrapper .main_sec,
  .ismsInfo-pg .btmpn-wrapper,
  .ismsInfo-pg .cwbg-wrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
  .ismsInfo-pg .prcsstb-wrapper .whats_included,
  .opCmp-pg .prcsstb-wrapper .whats_included {
    padding-right: 20px;
    padding-left: 20px;
  }
  .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 {
    padding-bottom: 30px;
  }
  .ismsInfo-pg .btmpn-wrapper .btmpn_cont p {
    margin: 10px 0;
    text-align: left;
  }
  .ismsInfo-pg .esgEnv_grp .btmpn-wrapper a.cta_button {
    margin: 0 auto;
    width: 180px;
    min-width: auto;
  }
  .opCmp-pg .logos .logo_wrap:nth-child(1) img,
  .opCmp-pg .logos .logo_wrap:nth-child(4) img {
    width: 10vw;
    max-width: 90%;
    min-width: 120px;
  }
  .opCmp-pg .logos .logo_wrap:nth-child(2) img,
  .opCmp-pg .logos .logo_wrap:nth-child(3) img {
    min-width: 120px;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .opCmp-pg .tccnont-wrapper .div-block-1016.flex.grey {
    padding-left: 40px;
    padding-right: 40px;
  }
  .opCmp-pg .opCmp_grp .hscwic-wrapper .hscwic_row {
    grid-row-gap: 0;
  }
  .opCmp-pg .opCmp_grp .hscwic-wrapper .hscwic_col h2 {
    text-align: center;
  }
  .esgEnv-page .banner_wrap .book-demo-dasm {
    padding-top: 15.9px;
    padding-bottom: 15.9px;
  }
  .esgEnv-page .esgEnv_grp .hscwic-wrapper.right.hscwic_2 .hscwic_col h2 {
    text-align: center;
  }
  .esgEnv-page .esgEnv_grp .hsigplt-wrapper .hsigplt_col h2 {
    text-align: left;
  }
  .home_row2 .tst_slider_mdl .section.book-demo_w_image.gdpr {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  html[lang="da"] .grc_platform_grp .hscwic_3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.left {
    padding-bottom: 30px;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.left .hscwic_row {
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-top: 0;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.right .hscwic-content .hscwic_cont {
    padding: 0;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.right .hscwic_col h2 {
    text-align: center;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.right .hscwic-img {
    margin-top: 0;
  }
  html[lang="da"] .home_pg .banner_wrap .ban_cont p,
  html[lang="no"] .home_pg .banner_wrap .ban_cont p,
  html[lang="sv-se"] .home_pg .banner_wrap .ban_cont p {
    line-height: 3vw;
  }
  html[lang="da"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row,
  html[lang="no"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row,
  html[lang="sv-se"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row {
    grid-row-gap: 0;
  }
  html[lang="da"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
  html[lang="no"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
  html[lang="sv-se"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img {
    padding-left: 6%;
    padding-right: 6%;
  }
  html[lang="da"] .home_row2 .hscwic-wrapper:last-child,
  html[lang="no"] .gdpr_row1 .hscwic-wrapper.right.hscwic_3,
  html[lang="sv-se"] .gdpr_row1 .hscwic-wrapper.right.hscwic_3 {
    margin-bottom: 60px;
  }
  html[lang="no"] .gdpr_row3 .hsigplt-wrapper .hsigplt-content,
  html[lang="sv-se"] .gdpr_row3 .hsigplt-wrapper .hsigplt-content {
    text-align: left;
  }
  html[lang="no"] .gdpr_row3 .hsigplt-wrapper .hsigplt_row,
  html[lang="sv-se"] .gdpr_row3 .hsigplt-wrapper .hsigplt_row {
    grid-row-gap: 0;
  }
  html[lang="no"] .gdpr_row3 .hscwic-wrapper,
  html[lang="sv-se"] .gdpr_row3 .hscwic-wrapper {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  html[lang="no"] .footer_cta_left a img {
    margin-bottom: 25px;
  }
  html[lang="da"] .esgEnv-page .tccnont-wrapper .main_sec {
    padding-bottom: 30px;
  }
  html[lang="da"] .gdpr_row1 .hscwic-wrapper.right.hscwic_3 {
    margin-bottom: 60px;
  }
  html[lang="da"] .outsourcing_page .cloud_outstanding .section.eipoa {
    padding-top: 60px;
    background-position: 0 50%;
  }


}

@media (max-width: 479px) {
  .wbnrdtl-pg .wbnrdtl_frm.cmn_form {
    margin-top: 16px;
  }
  .body-wrapper .dnd-section,
  .main_sec {
    padding: 30px 5%;
  }
  .body-wrapper .small_padding .dnd-section,
  .main_sec.main_sec_small,
  .about_grp .cwbg-wrapper {
    padding-top: 25px;
    padding-bottom: 30px;
  }
  .grc_platform_grp .page-header.section-header {
    max-width: 80%;
    padding-top: 25px;
    padding-bottom: 30px;
  }
  .partner_grp .widget-type-rich_text,
  .about_grp .widget-type-rich_text,
  .dfltCont .widget-type-rich_text {
    max-width: 80%;
  }
  .page-header.section-header h2 {
    margin-top: 15px;
  }
  .page-header.section-header p {
    font-size: 18px;
    line-height: 24px;
  }
  .grc_platform_grp .hscwic-wrapper.hscwic_1 .hscwic-img {
    padding: 0;
  }
  .grc_platform_grp .hscwic_1 .hscwic_row {
    margin-top: 0;
  }
  .grc_platform_grp .hscwic_3 {
    margin-bottom: auto;
    padding-top: 20px;
    padding-bottom: 100px;
  }
  .grc_platform_grp .hscwic_3 .hscwic_col h2 {
    font-size: 22px;
  }
  html[lang="da"] .grc_platform_grp .hscwic_3 .hscwic_col h2 {
    font-size: 24px;
    text-align: left;
  }
  .grc_platform_grp .hscwic_3 .hscwic_row {
    padding-bottom: 20px;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic_row {
    margin-top: 0;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic_col img {
    max-width: 100%;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic-content {
    padding: 0;
  }
  .grc_platform_grp2 .hscwic-wrapper.right .hscwic-content h2 {
    text-align: center;
  }
  .h2_bigger {
    font-size: 30px;
    line-height: 30px;
  }
  [data-text="bigger-text"] {
    font-size: 18px;
    line-height: 24px;
  }
  .partner-pg .banner_wrap .ban_cont p {
    font-size: 18px;
    line-height: 25px;
  }
  .partner_grp .cwbg-wrapper .lets-talk {
    min-width: 180px;
    max-width: 180px;
  }
  .body-wrapper .partner_grp .dnd-section {
    padding-bottom: 15px;
  }
  .partner_grp .hscwic-wrapper .hscwic_row {
    margin-top: 0;
  }
  .partner_grp .hscwic-wrapper .hscwic_row h2 {
    text-align: center;
  }
  html[lang="da"] .partner_grp .cwbg-wrapper {
    padding: 30px 20px;
  }
  .team_grp .btmpn-wrapper .heading-btmpn,
  .about_grp .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  .about_grp .cwbg-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about_grp .hscwic-wrapper .hscwic-content {
    padding: 0;
  }
  .about_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: left;
  }
  html[lang="sv-se"] .about_grp.small_padding .dnd-section,
  html[lang="no"] .about_grp.small_padding .dnd-section,
  html[lang="da"] .about_grp.small_padding .dnd-section {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .career-pg .banner_wrap {
    padding-top: 2vw;
  }
  html[lang="da"] .career_grp .crntOp-wrapper .main_sec {
    padding-top: 20px;
  }
  .implmntsn_grp .hscwic-wrapper .hscwic_row {
    margin-top: 0;
  } 
  .implmntsn_grp .hscwic-wrapper.left {
    padding-top: 30px;
  }
  .implmntsn_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: left;
  }
  .sldtl_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
    margin-bottom: 20px;
  }
  .sldtl_grp .cwbg-wrapper .cwbg_cont h2,
  .esgEnv_grp .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_row {
    margin-top: 0;
  }
  .sldtl_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
    margin-top: 25px;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_col {
    padding: 0;
  }
  .sldtl_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: left;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_list {
    margin-left: 0;
  }
  .sldtl_grp .hscwic-wrapper .hscwic_list_img img {
    max-width: 80% !important;
  }
  .sldtl_grp .hscwic-wrapper.right.hscwic_2 .hscwic-img {
    padding: 0;
  }
  .sldtl_grp .btmpn-wrapper a.cta_button {
    width: 180px;
    min-width: auto;
    padding-right: 5px;
    padding-left: 5px;
  }
  .sldtl_grp .hscwic-wrapper.right.hscwic_1 .hscwic_row {
    margin-top: 5px;
  }
  .esgEnv_grp .hscwic-wrapper .hscwic_row {
    margin-top: 0;
  }
  .esgEnv_grp .hscwic-wrapper.left .hscwic_col h2 {
    text-align: left;
  }
  .esgEnv_grp .hscwic-wrapper .hscwic_list {
    margin-left: 0;
  }
  .esgEnv_grp .hscwic-wrapper .hscwic_list_img img {
    max-width: 80% !important;
  }
  .esgEnv_grp .hscwic-wrapper.hscwic_3 .hscwic_row {
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .esgEnv_grp .tiwc-wrapper .tiwc_main_title h2 {
    text-align: center;
  }
  .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .esgEnv_grp .hscwic-wrapper .hs-btn {
    text-align: center;
  }
  .esgEnv_grp .hsigplt-wrapper .hsigplt_col h2 {
    text-align: left;
  }
  .esgEnv_grp .hsigplt-wrapper .hsigplt_btn {
    text-align: center;
  }
  .esgEnv_grp .hsigplt-wrapper .text-block {
    font-size: 17px;
  }
  .ismsInfo-pg .banner_wrap .ban_cont p {
    font-size: 3.8vw;
    line-height: 4.5vw;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 20px;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper .hscwic_row {
    margin-top: 25px;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 .hscwic_row {
    margin-top: 0;
  }
  .ismsInfo-pg .hscwic-wrapper.right.hscwic_3 .hscwic-content {
    padding: 0;
  }
  .ismsInfo-pg .esgEnv_grp .hscwic-wrapper.hscwic_4 .hscwic_row {
    padding-bottom: 20px;
  }
  .ismsInfo-pg .esgEnv_grp .tiwc-wrapper .tiwc_main_title h2 {
    text-align: left;
  }
  .ismsInfo-pg .tiwc-wrapper .tiwc_row {
    margin-bottom: -5px;
  }
  .opCmp-pg .tiwc-wrapper .tiwc_row {
    margin-bottom: -35px;
  }
  .ismsInfo-pg .tiwc-wrapper .tiwc_item,
  .opCmp-pg .tiwc-wrapper .tiwc_item {
    margin-bottom: 35px !important;
  }
  .ismsInfo-pg .prcsstb-wrapper .main_sec, 
  .ismsInfo-pg .btmpn-wrapper, 
  .ismsInfo-pg .cwbg-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
  .ismsInfo-pg .prcsstb-wrapper .whats_included,
  .opCmp-pg .prcsstb-wrapper .whats_included {
    padding-right: 15px;
    padding-left: 15px;
  }
  .ismsInfo-pg .ismsInfo_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 65px;
    padding-bottom: 35px;
  }
  .ismsInfo-pg .btmpn-wrapper .btmpn_cont p,
  .ismsInfo-pg .esgEnv_grp .hsigplt-wrapper .hsigplt_col h2 {
    text-align: center;
  }
  .opCmp-pg .logos .logo_wrap {
    width: 50%;
    margin-bottom: 34px;
    padding-right: 18px;
    padding-left: 18px;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.right.hscwic_1 {
    padding-top: 25px;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper .hscwic_row {
    margin-top: 25px;
  }
  .opCmp-pg .esgEnv_grp .hscwic-wrapper.hscwic_1 .hscwic_row {
    margin-top: 0;
  }
  .opCmp-pg .tccnont-wrapper .tccnont_topleft_cont h2 {
    text-align: left;
  }
  .opCmp-pg .tccnont-wrapper .div-block-1016.flex.grey {
    padding-left: 20px;
    padding-right: 20px;
  }
  .opCmp-pg .opCmp_grp .hscwic-wrapper .hscwic_col h2 {
    text-align: left;
  }
  .esgEnv_grp .hsigplt-wrapper .hsigplt_col h2 {
    text-align: center;
  }
  .esgEnv-page .banner_wrap .book-demo-dasm {
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .esgEnv-page .esgEnv_grp .hscwic-wrapper.right.hscwic_2 .hscwic_col h2 {
    text-align: left;
  }
  .home_row1 .hscwic-wrapper.left .hscwic_col h2 {
    text-align: left;
  }
  .home_row1 .page-header.section-header {
    width: 80%;
  }
  .home_row2 .tst_slider_mdl .section.book-demo_w_image.gdpr {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  html[lang="da"] .grc_platform_grp .hscwic_3 {
    padding-top: 25px;
  }
  html[lang="da"] .grc-platform-pg .cwbg-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  html[lang="da"] .grc_platform_grp .tiwc-wrapper .tiwc_main_title h2 {
    text-align: center;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.left .hscwic_row {
    max-width: 90%;
    grid-row-gap: 10px;
  }
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.left .hscwic_col h2,
  html[lang="da"] .grc_platform_grp2 .hscwic-wrapper.right .hscwic_col h2 {
    text-align: left;
  }
  html[lang="da"] .grc_platform_grp .tst_slider_mdl .name---testimonial {
    margin-top: 0;
  }
  html[lang="da"] .home_pg .banner_wrap .ban_cont p,
  html[lang="no"] .home_pg .banner_wrap .ban_cont p,
  html[lang="sv-se"] .home_pg .banner_wrap .ban_cont p {
    line-height: 4vw; 
  }
/*   html[lang="da"] .home_pg .banner_wrap .book-demo-dasm,
  html[lang="no"] .home_pg .banner_wrap .book-demo-dasm,
  html[lang="sv-se"] .home_pg .banner_wrap .book-demo-dasm {
    line-height: 20px;
  } */
  html[lang="da"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row,
  html[lang="no"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row,
  html[lang="sv-se"] .home_row1 .hscwic-wrapper.hscwic_2 .hscwic_row {
    margin-top: 0;
  }
  html[lang="da"] .home_row1 .cwbg-wrapper .cwbg_cont h2,
  html[lang="no"] .home_row1 .cwbg-wrapper .cwbg_cont h2,
  html[lang="sv-se"] .home_row1 .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  html[lang="da"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
  html[lang="no"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img,
  html[lang="sv-se"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic-img {
    padding: 0;
  }
  html[lang="da"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic_row,
  html[lang="no"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic_row,
  html[lang="sv-se"] .home_row2 .hscwic-wrapper.hscwic_1 .hscwic_row {
    margin-top: 0;
  }
  html[lang="da"] .home_row2 .hscwic-wrapper:last-child {
    margin-bottom: 50px;
  }
  html[lang="no"] .gdpr_row1 .widget-type-rich_text h2,
  html[lang="sv-se"] .gdpr_row1 .widget-type-rich_text h2,
  html[lang="da"] .gdpr_row1 .widget-type-rich_text h2 {
    font-size: 22px;
  }
  html[lang="no"] .gdpr_row1 .dnd-section,
  html[lang="sv-se"] .gdpr_row1 .dnd-section {
    padding-top: 25px;
  }
  html[lang="no"] .gdpr_row1 .hscwic-wrapper.right.hscwic_3,
  html[lang="sv-se"] .gdpr_row1 .hscwic-wrapper.right.hscwic_3 {
    margin-bottom: 50px;
  }
  html[lang="no"] .gdpr_row1 .cwbg-wrapper .cwbg_cont h2,
  html[lang="sv-se"] .gdpr_row1 .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  html[lang="da"] .gdpr_row1 .widget-type-rich_text h2 {
    margin-top: 10px;
  }
  html[lang="no"] .gdpr_row2 .hscwic-wrapper .hscwic-content h2,
  html[lang="sv-se"] .gdpr_row2 .hscwic-wrapper .hscwic-content h2 {
    text-align: center;
  }
  html[lang="no"] .gdpr_row3 .hscwic-wrapper .hs-btn,
  html[lang="sv-se"] .gdpr_row3 .hscwic-wrapper .hs-btn {
    text-align: center;
  }
  html[lang="no"] .gdpr_row3 .hscwic-wrapper,
  html[lang="sv-se"] .gdpr_row3 .hscwic-wrapper {
    padding-bottom: 30px;
  }
  html[lang="en"] .about_grp .hscwic-wrapper .hscwic-content {
    padding: 0;
  }
  html[lang="en"] .about_grp .hscwic-wrapper.right .hscwic_col h2 {
    font-size: 22px;
  }
  .about_grp .cwbg-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
  .home_pg .logos .logo_wrap:last-child {
    display: block;
  }
  .invs_pg .invs_row1 .tiwc-wrapper {
    padding-bottom: 55px;
  }
  html[lang="da"] .implmntsn_grp .iwcnt-wrapper .iwcnt_lists {
    margin-bottom: 15px;
  }
  html[lang="da"] .other_sol_pg .service_tabber_mdl .service_card_tab-2.w--current {
    padding: 6px 32px;
  }
  html[lang="da"] .ismsInfo-pg .banner_wrap a.cta_button {
    line-height: 23px;
  }
  html[lang="da"] .wbnrdtl-pg .wbnrdtl_flx {
    display: block;
  }
  html[lang="no"] .ismsInfo-pg .gdprSltn-wrapper .card_wrapper:nth-child(2) .card_grc {
    height: auto;
  }
  html[lang="no"] .gdpr_row3 .btmpn-wrapper .book_demo_btn {
    padding-left: 5px;
    padding-right: 5px;
    max-width: initial;
    display: inline-block;
  }
  html[lang="da"] .gdpr_row1 .hscwic-wrapper.right.hscwic_3 {
    margin-bottom: 50px;
  }
  html[lang="da"] .gdpr_row1 .cwbg-wrapper .cwbg_cont h2 {
    margin-top: 15px;
  }
  html[lang="da"] .outsourcing_page .cloud_outstanding .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  html[lang="da"] .outsourcing_page .cloud_outstanding .section.eipoa {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  

}

.row5_wrap .prcsstb-wrapper .heading-83 {
  color: #15113b;
}
.outsourcing_page .logos .logo_wrap:last-child {
  display: block;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .body-wrapper .hscwic-wrapper .hscwic_row,
  .body-wrapper .btmpn-wrapper .cta-grid {
    display: flex;
  }
  .body-wrapper .hscwic-wrapper .hscwic_list_img,
  .body-wrapper .cwbg-wrapper {
    display: block;
  }
  .body-wrapper .home_pg .banner_wrap,
  .body-wrapper .banner_wrap {
    height: 29vw;
    justify-content: flex-start;
  }
  .body-wrapper .about-pg .bantyp2_wrap {
    height: 32vw;
    justify-content: flex-start;  
  }
  .body-wrapper .banner_wrap .banner_inner {
    width: 45%;
  }
}



@media (max-width: 991px) {
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .body-wrapper .home_pg .banner_wrap {
      height: auto !important;
    }
  }

}