@charset "UTF-8";
* {
  box-sizing: border-box;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #FFF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger-green .hamburger-inner, .hamburger-green .hamburger-inner::before, .hamburger-green .hamburger-inner::after {
  background-color: #173867;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #FFF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger-green .hamburger-inner, .hamburger-green .hamburger-inner::before, .hamburger-green .hamburger-inner::after {
  background-color: #173867;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: "Barlow-Regular"; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE <10.
 * Add the correct display in Edge, IE, and Firefox for `details` or `summary`.
 * Add the correct display in IE for `main`.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * Add the correct display in IE <10.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display and remove excess height in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE <11, Safari <8, and Firefox <22.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox <40.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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;
  font-size: 1em;
}

/**
 * Add the correct font style in Android <4.4.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin: 0.75em 0;
}

/**
 * Add the correct background and color in IE <10.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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 <11.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1.5em 40px;
}

/**
 * 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 */
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known issues:
 * - By default, Chrome on OS X and Safari on OS X allow very limited styling of
 *   select, unless a border property is set. The default font weight on
 *   optgroup elements cannot safely be changed in Chrome on OSX and Safari on
 *   OS X.
 * - It is recommended that you do not style checkbox and radio inputs as
 *   Firefox's implementation does not respect box-sizing, padding, or width.
 * - Certain font size values applied to number inputs cause the cursor style of
 *   the decrement button to change from default to text.
 * - The search input is not fully stylable by default. In Chrome and Safari on
 *   OSX/iOS you can't control font, padding, border, or background. In Chrome
 *   and Safari on Windows you can't control border properly. It will apply
 *   border-width but will only show a border color (which cannot be controlled)
 *   for the outer 1px of that border. Applying -webkit-appearance: textfield
 *   addresses these issues without removing the benefits of search inputs (e.g.
 *   showing past searches). Safari (but not Chrome) will clip the cancel button
 *   on when it has padding (and textfield appearance).
 */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 * 3. Address `font-family` inconsistency between `textarea` and other form in IE 7
 * 4. Improve appearance and consistency with IE 6/7.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE <11.
 * 2. Remove the padding in IE <11.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
[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 and cancel buttons in Chrome and Safari on OS X.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 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 */
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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.
 * 4. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
  padding: 0; /* 3 */
}

/**
 * Restore the font weight unset by a previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Common Style --*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  color: #000;
  font-family: "Barlow-Regular";
  font-size: 21px;
  font-size: 1.3125rem;
  visibility: visible;
  letter-spacing: -0.025em;
  overflow-x: hidden;
}

h3.title {
  font-family: "Oxanium-ExtraBold";
  font-size: 27px;
  font-size: 1.6875rem;
  color: #3fb0ff;
}

.text-blue-light {
  color: #3fb0ff !important;
}

.text-barlow-bold {
  font-family: "Barlow-Bold";
}

.wrapper {
  width: 100% !important;
}
.wrapper.blue-bg {
  background-color: #173867;
  color: #FFF;
}
.wrapper .container {
  max-width: 1240px;
}

.form-check-input:checked {
  background-color: #3fb0ff;
  border-color: #3fb0ff;
}

.text-justify {
  text-align: justify !important;
}

.blue-light {
  color: #3fb0ff;
}

.pattern {
  position: relative;
}
.pattern::after {
  content: "";
  width: 120%;
  height: 120px;
  background: url("/images/pattern.png") repeat-x;
  background-size: contain;
  position: absolute;
  bottom: 69px;
  left: -100%;
}

/* ---- grid ---- */
/* clear fix */
.grid1:after {
  content: "";
  display: block;
  clear: both;
}

@media only screen and (max-width: 480px) {
  h2.section-title {
    font-size: 32px;
    font-size: 2rem;
  }
  .container {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  h2.section-title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  h2.section-title {
    font-size: 48px;
    font-size: 3rem;
  }
}
.owl-dots {
  margin-top: 50px;
}
.owl-dots .owl-dot span {
  width: 15px !important;
  height: 15px !important;
  background-color: #173867 !important;
}
.owl-dots .owl-dot.active span {
  background-color: #3fb0ff !important;
}

.btn {
  font-family: "Barlow-Bold";
  font-size: 19px;
  font-size: 1.1875rem;
}
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn.btn-inlineblock {
  display: inline-block;
}
.btn.more {
  padding: 0;
  font-family: "Barlow-Bold";
  font-size: 19px;
  font-size: 1.1875rem;
  color: #173867;
  text-decoration: none;
}
.btn.more i {
  padding-left: 5px;
  color: #3fb0ff;
}
.btn.more:hover {
  color: #3fb0ff;
}
.btn.btn-rounded {
  border-radius: 100px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.btn.btn-bordered {
  border: 1px solid transparent;
}
.btn.btn-border-blue-light {
  color: #173867;
  border-color: #3fb0ff;
}
.btn.btn-border-blue-light i {
  padding-left: 10px;
  color: #3fb0ff;
}
.btn.btn-border-blue-light:hover {
  color: #FFF;
  border-color: #3fb0ff;
  background-color: #3fb0ff;
}
.btn.btn-border-blue-light:hover i {
  color: white;
}
.btn.btn-background-blue-light {
  color: #FFF;
  background-color: #3fb0ff;
  border-color: #3fb0ff;
  padding: 8px 50px;
}
.btn.btn-background-blue-light i {
  padding-left: 10px;
  color: #3fb0ff;
}
.btn.btn-background-blue-light:hover {
  color: #FFF;
  border-color: #3fb0ff;
  background-color: #173867;
}
.btn.btn-background-blue-light:hover i {
  color: white;
}
.btn.btn-background-blue-dark {
  background-color: #173867;
  color: #FFF;
  padding: 12px 63px;
}
.btn.btn-background-blue-dark i {
  padding-left: 10px;
  color: #3fb0ff;
}
.btn.btn-background-blue-dark:hover {
  color: #FFF;
  border-color: #173867;
  background-color: #3fb0ff;
}
.btn.btn-background-blue-dark:hover i {
  color: white;
}

.hamburger-menu {
  display: none;
  float: right;
  margin-top: 5px;
}
.hamburger-menu .hamburger-box .hamburger-inner {
  background-color: #173867;
}
.hamburger-menu .hamburger-box .hamburger-inner::after {
  background-color: #173867;
}
.hamburger-menu .hamburger-box .hamburger-inner::before {
  background-color: #173867;
}
.home .hamburger-menu .hamburger-box .hamburger-inner {
  background-color: #FFF;
}
.home .hamburger-menu .hamburger-box .hamburger-inner::after {
  background-color: #FFF;
}
.home .hamburger-menu .hamburger-box .hamburger-inner::before {
  background-color: #FFF;
}

@media only screen and (max-width: 992px) {
  .hamburger-menu {
    display: block;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .hamburger-menu {
    display: block;
  }
}
#sidr {
  padding: 20px;
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 17px;
  background: #d6eeff;
  color: #173867;
  transition: width 0.2s ease;
}
#sidr.right {
  left: auto;
  right: -300px;
}
#sidr.left {
  left: -300px;
  right: auto;
}
#sidr .language-selection {
  margin-bottom: 20px;
}
#sidr .language-selection .language-wrapper a:first-child {
  padding-right: 20px;
}
#sidr .language-selection .language-wrapper a img {
  max-width: 25px;
}
#sidr #sidr-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
#sidr #sidr-menu li {
  font-family: "Oxanium-Bold";
  padding: 10px 0;
}
#sidr #sidr-menu li a:hover {
  color: #3fb0ff;
}
#sidr #sidr-menu li.menu-item-has-children > a {
  position: relative;
}
#sidr #sidr-menu li.menu-item-has-children > a::after {
  position: absolute;
  top: -5px;
  right: -30px;
  content: url("/images/dropdown.png");
}
#sidr #sidr-menu li.menu-item-has-children .submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidr #sidr-menu li.menu-item-has-children .submenu .menu-block {
  padding: 20px 0 0px;
  margin: 0;
}
#sidr #sidr-menu li.menu-item-has-children .submenu .menu-block span {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Barlow-Regular";
}
#sidr #sidr-menu li.menu-item-has-children .submenu ul {
  list-style-type: none;
  margin: 0;
  padding-bottom: 0;
  padding-left: 15px;
  padding-top: 15px;
}
#sidr #sidr-menu li.menu-item-has-children .submenu ul li {
  position: relative;
  padding-left: 10px;
  font-family: "Oxanium-Regular";
}
#sidr #sidr-menu li.menu-item-has-children .submenu ul li::before {
  content: "»";
  position: absolute;
  top: 12px;
  left: -15px;
  display: inline-block;
  color: #3fb0ff;
}
#sidr #sidr-menu li.menu-item-has-children .submenu ul li:hover::before {
  left: -10px;
  transition: 0.15s all ease;
}
#sidr #sidr-menu li a {
  color: #173867;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
  .sidr {
    width: 400px;
  }
  .sidr.right {
    right: -400px;
  }
  .sidr.left {
    left: -400px;
  }
}
#back-top {
  position: fixed;
  bottom: 50px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #173867;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  transition: 0.3s;
  z-index: 999;
  display: none;
  text-align: center;
  line-height: 50px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
#back-top i {
  font-family: "Barlow-Regular";
  display: inline-block;
  font-style: normal;
  color: #FFF;
  font-size: 55px;
  font-size: 3.4375rem;
  transform: rotate(90deg);
  margin-right: -13px;
}
#back-top:hover {
  background: #3fb0ff;
}

.breadcrumbs {
  font-family: "Barlow-Regular";
  font-weight: normal;
  margin: 0;
  padding: 0;
  margin: 45px 0 25px 0;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.5em;
  color: #3fb0ff;
  text-align: left;
}
.breadcrumbs li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-left: 5px;
  color: #3fb0ff;
}
.breadcrumbs li:first-child {
  margin-left: 0;
}
.breadcrumbs li::after {
  position: relative;
  top: -1px;
  content: "»";
  color: #3fb0ff;
  margin-left: 5px;
}
.breadcrumbs li:last-child::after {
  content: none;
}
.breadcrumbs li a {
  color: #3fb0ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs li a:hover {
  color: #000;
}

@media only screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.33em;
  }
  .breadcrumbs li {
    margin-left: 3px;
  }
  .breadcrumbs li::after {
    margin-left: 3px;
  }
}
ul.benefits-list {
  margin-top: 65px;
  padding: 0;
}
ul.benefits-list.service li {
  background: url("/images/list-icon.png") no-repeat left top;
  list-style: none;
  padding: 0 0 0 50px;
  margin: 0 0 45px 0;
}
ul.benefits-list li {
  background: url("/images/list-icon.png") no-repeat left center;
  padding: 5px 10px 5px 70px;
  list-style: none;
  margin: 0 0 30px 10px;
}
ul.benefits-list li h3 {
  font-family: "Oxanium-ExtraBold";
  font-size: 24px;
  font-size: 1.5rem;
  color: #3fb0ff;
}
ul.benefits-list li:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1200px) {
  ul.benefits-list.service li {
    background: url("/images/list-icon.png") no-repeat left top;
    list-style: none;
    padding: 0 0 0 35px;
    margin: 0 0 45px 0;
  }
}
.loader-wrapper.mb-60 {
  margin-bottom: 60px;
}
.loader-wrapper .loader {
  width: 48px;
  height: 48px;
  border: 3px solid #173867;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader-wrapper .loader.sm {
  width: 25px;
  height: 25px;
}
.loader-wrapper .loader.sm::after {
  width: 33px;
  height: 33px;
}
.loader-wrapper .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #3fb0ff transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.button-loader {
  display: none;
  width: 48px;
  height: 48px;
  border: 3px solid #FFF;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.button-loader.sm {
  width: 25px;
  height: 25px;
}
.button-loader.sm::after {
  width: 33px;
  height: 33px;
}
.button-loader.xs {
  width: 20px;
  height: 20px;
}
.button-loader.xs::after {
  width: 28px;
  height: 28px;
}
.button-loader.xxs {
  width: 10px;
  height: 10px;
}
.button-loader.xxs::after {
  width: 18px;
  height: 18px;
}
.button-loader.blue {
  border-color: #173867 !important;
}
.button-loader.blue::after {
  border-color: #173867 transparent !important;
}
.button-loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #FFF transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
form {
  /*label {
      @include font-size(17px);
  }*/
}
form input {
  height: 48px;
  border-radius: 5px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-color: #3fb0ff;
  padding-left: 20px;
  font-size: 1.58rem;
}
form input::-moz-placeholder {
  font-family: "Barlow-Regular";
  font-size: 1.25rem;
  color: rgba(23, 56, 103, 0.5);
  letter-spacing: 0.1em;
}
form input::placeholder {
  font-family: "Barlow-Regular";
  font-size: 1.25rem;
  color: rgba(23, 56, 103, 0.5);
  letter-spacing: 0.1em;
}
form input:focus {
  border-color: inherit;
  box-shadow: none;
}
form select {
  height: 45px;
  border-color: #3fb0ff;
}
form select.empty {
  font-family: "Barlow-Regular";
  color: rgba(23, 56, 103, 0.5);
  letter-spacing: 0.1em;
}
form .form-control {
  font-size: 1.3rem;
}
form .form-control:focus {
  box-shadow: none;
}
form .form-control:-webkit-autofill {
  background-color: transparent;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
form .form-check-input {
  margin-top: 0.175rem !important;
}
form .form-check {
  margin-left: 5px;
}
form .form-check label {
  font-size: 1.25rem;
}
form .form-check label:hover,
form .form-check input[type=checkbox]:hover {
  cursor: pointer;
}
form input[type=checkbox] {
  border-radius: 5px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border: 1px solid #ced4da;
}
form a {
  text-decoration: none;
  color: #FFF;
}
form a:hover {
  color: #173867;
}

#cookieconsent {
  padding-right: 0 !important;
}
#cookieconsent.modal .modal-header {
  padding-bottom: 15px;
}
#cookieconsent.modal .modal-body h4 {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-bottom: 15px;
  font-family: "Barlow-Bold";
}
#cookieconsent.modal .modal-body p {
  font-size: 17px;
  font-size: 1.0625rem;
}
#cookieconsent.modal .modal-body .toggle-item:not(:first-child) {
  margin-top: 20px;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header {
  border-radius: 5px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border: solid 1px #f0f4f7;
  padding: 15px;
  background-color: #f0f4f7;
  display: flex;
  justify-content: space-between;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header.border-radius-bottom-none {
  border-radius: 5px 5px 0 0;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header:hover {
  cursor: pointer;
  background-color: #e9eff4;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header .arrow {
  display: flex;
  align-items: center;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header .arrow .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #d5dee2;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  vertical-align: middle;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header .arrow .button i {
  color: #000;
  font-size: 10px;
  font-size: 0.625rem;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header .arrow .title {
  margin: 0 0 0 15px;
  padding: 0;
  vertical-align: middle;
  font-family: "Barlow-Bold";
  font-size: 19px;
  font-size: 1.1875rem;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header .control {
  display: flex;
  justify-content: center;
  align-items: center;
}
#cookieconsent.modal .modal-body .toggle-item .toggle-header .control .badge {
  margin-right: 40px;
  background-color: #eaeff2;
  color: #5e6266;
  border-radius: 20px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
#cookieconsent.modal .modal-body .toggle-item .toggle-body {
  display: none;
  padding: 15px;
  border: 1px solid #f0f4f7;
  border-top: none;
  border-radius: 0 0 5px 5px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
#cookieconsent.modal .modal-body .toggle-item .toggle-body p {
  padding: 0;
  margin: 0;
}
#cookieconsent.modal .modal-footer {
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
}
#cookieconsent.modal .modal-footer button.btn-border-gray:hover {
  background-color: transparent;
}

.checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb71b;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: #fff;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4bb71b;
  }
}
section.blog {
  margin-bottom: 145px;
}

.landing-page.us strong {
  font-family: "Barlow-Bold";
}
.landing-page.us .pattern {
  position: relative;
}
.landing-page.us .pattern::after {
  content: "";
  width: 101%;
  left: -101%;
}
.landing-page.us img.team {
  margin: 30px 0;
}
.landing-page.us .our-history {
  margin-top: 45px;
  margin-bottom: 100px;
}
.landing-page.us .our-values {
  margin-top: 100px;
  margin-bottom: 100px;
}
.landing-page.us .our-enviroment {
  margin-bottom: 100px;
}
.landing-page.us section.why-we .container {
  max-width: 1240px;
}
.landing-page.us section.managements {
  background-color: #d6eeff;
  padding-top: 100px;
}
.landing-page.us section.managements h2 {
  padding: 0;
  margin: 0 0 45px 0;
}
.landing-page.us section.managements p {
  padding: 20px;
}
.landing-page.us section.managements p.name {
  font-family: "Barlow-Bold";
  line-height: 1.8em;
}
.landing-page.us section.managements p.name span {
  display: block;
  font-family: "Barlow-Regular";
}
.landing-page.us section.career {
  margin-bottom: 100px;
}
.landing-page.us section.brochure {
  margin-bottom: 120px;
}

.landing-page.product .pattern {
  position: relative;
}
.landing-page.product .pattern::after {
  content: "";
  width: 100%;
  left: 100%;
  bottom: 15px;
}
.landing-page.product h1.page-title {
  margin-bottom: 50px;
}
.landing-page.product .content h2 {
  font-family: "Oxanium-ExtraBold";
  font-size: 32px;
  font-size: 2rem;
  color: #173867;
}
.landing-page.product section.benefits {
  margin: 90px 0 130px 0;
}
.landing-page.product section.how-much.heat-pump {
  margin: 190px 0 130px 0;
}
.landing-page.product section.where-useful {
  margin-bottom: 100px;
}
.landing-page.product section.where-useful.mt {
  margin-top: 100px;
}
.landing-page.product section.where-useful .page-subtitle {
  margin-bottom: 50px;
}
.landing-page.product section.where-useful .content {
  padding: 35px 0 0 10px;
}
.landing-page.product section.where-useful .content h3 {
  font-family: "Oxanium-ExtraBold";
  font-size: 32px;
  font-size: 2rem;
  color: #3fb0ff;
}
.landing-page.product section.more-info-box.blue-light a {
  padding: 10px 63px;
}
.landing-page.product section.major-types {
  margin: 100px 0;
}
.landing-page.product section.major-types .page-subtitle {
  margin-bottom: 60px;
}
.landing-page.product section.major-types .brochure-wrapper {
  position: relative;
  position: relative;
  max-width: 467px;
  height: 100%;
  margin-left: 10px;
  background-color: #d6eeff;
}
.landing-page.product section.major-types .brochure-wrapper .brochure-content {
  position: absolute;
  top: -45px;
  left: 0;
}
.landing-page.product section.major-types .brochure-wrapper .brochure-content img {
  max-width: 250px;
  -ms-box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  -o-box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  margin-bottom: 60px;
}
.landing-page.product section.major-types .brochure-wrapper .brochure-content h3 {
  text-align: center;
  margin: 15px 0;
  font-family: "Oxanium-ExtraBold";
  font-size: 28px;
  font-size: 1.75rem;
  color: #173867;
}
.landing-page.product section.major-types .brochure-wrapper .brochure-content .brochure-desc {
  margin: 0 auto;
  padding: 0 30px;
  font-size: 17px;
  font-size: 1.0625rem;
}
.landing-page.product section.major-types .brochure-wrapper .brochure-content .brochure-desc .btn {
  margin-top: 20px;
  padding: 10px 60px;
}
.landing-page.product section.major-types .type-item {
  margin-bottom: 60px;
}
.landing-page.product section.major-types .type-item:last-child {
  margin-bottom: 30px;
}
.landing-page.product section.major-types .type-item h3 {
  font-family: "Oxanium-ExtraBold";
  font-size: 32px;
  font-size: 2rem;
  color: #3fb0ff;
}
.landing-page.product section.major-types .type-item p {
  font-size: 17px;
  font-size: 1.0625rem;
}

@media only screen and (max-width: 992px) {
  .landing-page .pattern::after {
    display: none;
  }
  .landing-page.product section.where-useful {
    margin-bottom: 45px;
  }
  .landing-page.product section.where-useful.mt {
    margin-top: 45px;
  }
  .landing-page.product section.where-useful .content {
    padding: 35px 0;
  }
  .landing-page.product section.major-types {
    margin: 0;
  }
  .landing-page.product section.major-types .type-item h3 {
    margin-top: 30px;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .landing-page.product section.major-types .type-item p {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
.landing-page.service .pattern {
  position: relative;
}
.landing-page.service .pattern::after {
  content: "";
  width: 100%;
  bottom: 15px;
}
.landing-page.service section.why-worth-with-us {
  margin: 60px 0 120px 0;
}
.landing-page.service section.blog {
  margin: 130px 0 100px;
}
.landing-page.service section.customers, .landing-page.service section.employee-opinion {
  margin: 130px 0 100px;
}
.landing-page.service section.brands {
  background-color: #d6eeff;
  padding: 100px 0 145px;
}
.landing-page.service section.brands header h1 {
  font-size: 48px;
  font-size: 3rem;
}
.landing-page.service section.brands p {
  padding: 50px 0;
}
.landing-page.service section.brands .btn.more {
  margin-top: 30px;
}
.landing-page.service section.brands-icons {
  margin: 120px 0;
}
.landing-page.service section.brands-icons h2.page-subtitle {
  margin-bottom: 60px;
}
.landing-page.service section.brands-icons img {
  max-width: 200px;
  max-height: 100px;
  margin-bottom: 50px;
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
}
.landing-page.service section.brands-icons img:hover {
  transform: scale3d(1.1, 1.1, 1);
}

@media only screen and (max-width: 992px) {
  .landing-page.service section.why-worth-with-us {
    margin: 0 0 80px 0;
  }
  .landing-page.service section.blog {
    margin: 60px 0 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .landing-page.service .pattern::after {
    display: none;
  }
}
.landing-page.reference .row.reference-images {
  margin-top: 60px;
}
.landing-page.reference .row.reference-images img {
  max-width: 120px;
  max-height: 100px;
  margin-bottom: 50px;
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
}
.landing-page.reference .row.reference-images img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
.landing-page.reference section.customers, .landing-page.reference section.employee-opinion {
  margin-top: 100px !important;
}

.landing-page.career section {
  margin: 60px 0;
}
.landing-page.career section h2 {
  margin-bottom: 45px;
}
.landing-page.career section.current-jobs .career-item {
  position: relative;
  overflow: hidden;
}
.landing-page.career section.current-jobs .career-item:hover img.image {
  transform: scale3d(1.1, 1.1, 1);
}
.landing-page.career section.current-jobs .career-item:hover .desc {
  color: #3fb0ff;
}
.landing-page.career section.current-jobs .career-item img.image {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
}
.landing-page.career section.current-jobs .career-item .mask {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
}
.landing-page.career section.current-jobs .career-item .desc {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  color: #FFF;
  text-transform: uppercase;
  font-family: "Oxanium-ExtraBold";
  font-size: 22px;
  font-size: 1.375rem;
}
.landing-page.career .why-career {
  background-color: #d6eeff;
  padding: 100px 0;
  margin: 100px 0;
}
.landing-page.career .why-career h1 {
  margin-top: 0;
  color: #173867;
  font-family: "Oxanium-ExtraBold";
  font-size: 64px;
  font-size: 4rem;
  margin-bottom: 100px;
}
.landing-page.career .why-career h2 {
  color: #3fb0ff;
  font-family: "Oxanium-ExtraBold";
}

@media only screen and (max-width: 992px) {
  .landing-page.career .why-career {
    padding: 60px 0;
    margin: 0;
  }
  .landing-page.career .why-career h1 {
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.landing-page.contact figure {
  margin: 0;
  padding: 0;
}
.landing-page.contact figure figcaption {
  background-color: #e7effa;
  font-family: "Barlow-Bold";
  padding: 20px;
}
.landing-page.contact h2 {
  color: #173867;
  font-family: "Oxanium-ExtraBold";
  font-size: 36px;
  font-size: 2.25rem;
  margin: 0 0 20px 0;
}
.landing-page.contact table tr {
  border-color: #d6eeff;
  border-bottom-width: 2px;
}
.landing-page.contact table th,
.landing-page.contact table td {
  padding: 8px 0;
}
.landing-page.contact table th a,
.landing-page.contact table td a {
  text-decoration: none;
  color: black;
}
.landing-page.contact .google-map {
  margin: 100px 0;
}
.landing-page.contact .google-map img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  padding-bottom: 15px;
}
.landing-page.contact .google-map .gmap_canvas {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.landing-page.contact .google-map .gmap_canvas iframe {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 992px) {
  .landing-page.contact .google-map {
    margin: 40px 0;
  }
}
.landing-page.aszf .download-link {
  margin-bottom: 80px;
}

.landing-page.tender {
  margin-bottom: 80px;
}

.landing-page.blogs .not-found {
  padding: 30px 0;
  font-size: 24px;
  font-size: 1.5rem;
}
.landing-page.blogs .filter {
  padding: 20px 40px 15px 20px;
  border-radius: 5px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  background-color: #d6eeff;
}
.landing-page.blogs .filter h2 {
  font-family: "Oxanium-Bold";
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 20px;
  color: #173867;
}
.landing-page.blogs .filter .filter-item {
  display: inline-block;
  margin: 0 7px 10px 0;
  border: solid 1px #3fb0ff;
  padding: 10px 15px;
  color: #173867;
  line-height: 1.4rem;
  border-radius: 10px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.landing-page.blogs .filter .filter-item.active {
  color: #3fb0ff;
}
.landing-page.blogs .filter .filter-item.active i {
  margin-left: 15px;
}
.landing-page.blogs .filter .filter-item:not(.active) i {
  display: none;
}
.landing-page.blogs .filter .filter-item:hover {
  background-color: #173867;
  cursor: pointer;
  color: #FFF;
  border-color: #173867;
}
.landing-page.blogs .blog {
  margin: 60px 0 40px 0;
}
.landing-page.blogs .blog .blog-item {
  margin-bottom: 60px;
}

.landing-page.services .services-wrapper {
  margin: 0;
}
.landing-page.services .services-wrapper .service-item {
  position: relative;
  margin-top: 65px;
  float: left;
  width: 32%;
  margin-right: 1%;
}
.landing-page.services .services-wrapper .service-item.pattern::after {
  width: 150%;
  left: 100%;
  top: 28%;
}
.landing-page.services .services-wrapper .service-item .service-item-thumb {
  margin: 0 auto;
  display: block;
  max-width: 500px;
  max-height: 400px;
  overflow: hidden;
}
.landing-page.services .services-wrapper .service-item .service-item-thumb img {
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-page.services .services-wrapper .service-item .service-item-thumb img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
.landing-page.services .services-wrapper .service-item .service-item-content {
  padding: 0 30px;
}
.landing-page.services .services-wrapper .service-item .service-item-content a {
  text-decoration: none;
}
.landing-page.services .services-wrapper .service-item .service-item-content h3.title {
  margin: 45px 0 25px 0;
}
.landing-page.services .services-wrapper .service-item .service-item-content p.desc {
  color: #000;
  line-height: 27px;
}
.landing-page.services .services-wrapper .service-item .service-item-content a.more {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .landing-page.services .services-wrapper .service-item {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .landing-page.services .services-wrapper .service-item {
    width: 49%;
  }
}
.landing-page.services .services-wrapper .service-item {
  margin-top: 0;
  margin-bottom: 100px;
}

.landing-page.brands .brands-wrapper {
  margin: 0;
}
.landing-page.brands .brands-wrapper .brand-item {
  position: relative;
  margin-top: 65px;
  float: left;
  width: 32%;
  margin-right: 1%;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-thumb {
  margin: 0 auto;
  display: block;
  max-width: 500px;
  max-height: 400px;
  overflow: hidden;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-thumb img {
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-thumb img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-content {
  padding: 0 30px;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-content a {
  text-decoration: none;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-content h3.title {
  margin: 45px 0 25px 0;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-content p.desc {
  color: #000;
  line-height: 27px;
}
.landing-page.brands .brands-wrapper .brand-item .brand-item-content a.more {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .landing-page.brands .brands-wrapper .brand-item {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .landing-page.brands .brands-wrapper .brand-item {
    width: 49%;
  }
}
.landing-page.brands .brands-wrapper .brand-item {
  margin-top: 0;
  margin-bottom: 100px;
}

.landing-page.impresszum .content {
  margin: 80px 0 130px 0;
}
.landing-page.impresszum span {
  font-family: "Oxanium-Bold";
  color: #173867;
}

@media only screen and (max-width: 1200px) {
  .landing-page.impresszum .content {
    margin: 45px 0 80px 0;
  }
}
.landing-page.ajanlatkeres {
  margin-bottom: 120px;
}
.landing-page.ajanlatkeres .container-sm {
  max-width: 1000px;
}
.landing-page.ajanlatkeres .container-sm h3 {
  color: #173867;
  font-family: "Oxanium-Regular";
}
.landing-page.ajanlatkeres .container-sm form a {
  color: #173867;
}
.landing-page.ajanlatkeres .container-sm form a:hover {
  color: #3fb0ff;
}
.landing-page.ajanlatkeres .container-sm form .file-upload button {
  background-color: #e9ecef;
  border-color: #ced4da;
  font-family: "Barlow-Regular";
  font-size: 21px;
  font-size: 1.3125rem;
}
.landing-page.ajanlatkeres .container-sm form .file-upload input:-moz-read-only {
  background-color: transparent;
}
.landing-page.ajanlatkeres .container-sm form .file-upload input:read-only {
  background-color: transparent;
}
.landing-page.ajanlatkeres .container-sm form .file-upload input:hover {
  cursor: pointer;
}
.landing-page.ajanlatkeres .container-sm form .file-upload input::-moz-placeholder {
  color: #000;
}
.landing-page.ajanlatkeres .container-sm form .file-upload input::placeholder {
  color: #000;
}
.landing-page.ajanlatkeres .container-sm form .form-check-input {
  margin-top: 0.175rem !important;
}
.landing-page.ajanlatkeres .container-sm form .form-check label:hover,
.landing-page.ajanlatkeres .container-sm form .form-check input[type=checkbox]:hover {
  cursor: pointer;
}

#successModal .modal-header {
  padding: 10px 20px;
}
#successModal .modal-header .modal-title {
  color: #173867;
  font-family: "Oxanium-Regular";
}
#successModal .modal-body .success h3 {
  margin-top: 20px;
  color: #173867;
}
#successModal .modal-footer {
  padding: 10px 20px;
}

.landing-page {
  margin-bottom: 60px;
}
.landing-page.brochure section.brochures {
  margin-top: 80px;
}

.landing-page.heat-pump-calculator {
  margin-bottom: 120px;
}
.landing-page.heat-pump-calculator .container-xs {
  max-width: 1000px;
}
.landing-page.heat-pump-calculator .container-xs form {
  margin-top: 60px;
}
.landing-page.heat-pump-calculator .container-xs form h2 {
  color: #3fb0ff;
  font-family: "Barlow-Bold";
  padding: 20px 0;
}
.landing-page.heat-pump-calculator .container-xs form select {
  font-size: 19px;
  font-size: 1.1875rem;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper div.error {
  color: #dc3545;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper .form-control-wrapper {
  padding: 40px 0;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper .form-range::-webkit-slider-thumb {
  background-color: #3fb0ff;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.5rem;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper.radio-button .form-check {
  margin: 0;
  padding: 0;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper.radio-button .form-check input[type=radio] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper.radio-button .form-check input[type=radio]:checked + label {
  background-color: #3fb0ff;
  color: #FFF;
}
.landing-page.heat-pump-calculator .container-xs form .block-wrapper.radio-button .form-check label {
  display: inline;
  border: 1px solid #3fb0ff;
  padding: 10px 20px;
  border-radius: 15px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

@media only screen and (max-width: 480px) {
  .landing-page.heat-pump-calculator .container-xs form {
    margin-top: 20px;
  }
  .landing-page.heat-pump-calculator .container-xs form .block-wrapper {
    margin-left: 0;
  }
  .landing-page.heat-pump-calculator .container-xs form .block-wrapper.radio-button .form-check label {
    padding: 15px;
  }
  .landing-page.heat-pump-calculator .container-xs form .block-wrapper.radio-button .form-check:last-child {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .landing-page.heat-pump-calculator .container-xs form {
    margin-top: 20px;
  }
  .landing-page.heat-pump-calculator .container-xs form .block-wrapper {
    margin-left: 0;
  }
}
.page-404 {
  margin: 70px 0 120px 0;
  text-align: center;
}
.page-404 h1 {
  margin: 0;
  padding: 0;
  font-family: "Oxanium-Bold";
  font-size: 192px;
  font-size: 12rem;
  color: transparent;
  text-shadow: -10px -4px 0 #173867;
  color: black;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #173867;
  -webkit-text-stroke-width: 2px;
}
.page-404 .page-not-found {
  font-family: "Oxanium-Bold";
  font-size: 48px;
  font-size: 3rem;
  line-height: 68px;
  color: transparent;
  text-shadow: -10px -4px 0 #173867;
}
.page-404 .desc {
  font-family: "Barlow-Regular";
  margin: 0;
  padding: 0 250px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
}

@media only screen and (max-width: 768px) {
  .page-404 {
    margin: 60px 0;
  }
  .page-404 h1 {
    font-size: 96px;
    font-size: 6rem;
  }
  .page-404 .page-not-found {
    font-size: 32px;
    font-size: 2rem;
    line-height: 48px;
  }
  .page-404 .desc {
    padding: 0;
  }
}
.landing-page.blog-show .page-title {
  margin-bottom: 0;
}
.landing-page.blog-show .page-extra-menu {
  margin: 40px 0;
  padding: 10px 0;
  border-top: 1px solid #3fb0ff;
  border-bottom: 1px solid #3fb0ff;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Oxanium-Regular";
  color: #173867;
}
.landing-page.blog-show .page-extra-menu .first {
  padding-right: 20px;
}
.landing-page.blog-show .page-extra-menu .second,
.landing-page.blog-show .page-extra-menu .third {
  padding-left: 20px;
  margin: 0 20px;
  border-left: 1px solid #3fb0ff;
}
.landing-page.blog-show .page-extra-menu .second:hover,
.landing-page.blog-show .page-extra-menu .third:hover {
  cursor: pointer;
  color: #3fb0ff;
}
.landing-page.blog-show .page-extra-menu .third a {
  color: #173867;
  text-decoration: none;
}
.landing-page.blog-show .page-extra-menu .third a:hover {
  cursor: pointer;
  color: #3fb0ff;
}
.landing-page.blog-show .page-extra-menu i {
  color: #3fb0ff;
  padding-right: 10px;
}
.landing-page.blog-show .page-extra-menu .fb-share-button span {
  margin: 0 !important;
  padding: 0 !important;
  height: 22px !important;
}
.landing-page.blog-show .page-extra-menu .fb-share-button iframe {
  width: 220px !important;
}

@media only screen and (max-width: 580px) {
  .landing-page.blog-show .page-extra-menu {
    text-align: center;
  }
  .landing-page.blog-show .page-extra-menu .first,
  .landing-page.blog-show .page-extra-menu .second,
  .landing-page.blog-show .page-extra-menu .third {
    padding: 10px 0;
    border: none;
    display: block;
  }
}
@media screen {
  .screen-none {
    display: none;
  }
}
@font-face {
  font-family: "Barlow-Regular";
  src: url("/fonts/Barlow-Regular.eot");
  src: url("/fonts/Barlow-Regular.eot") format("embedded-opentype"), url("/fonts/Barlow-Regular.ttf") format("truetype"), url("/fontsBarlow-Regular.svg#Barlow-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Barlow-Bold";
  src: url("/fonts/Barlow-Bold.eot");
  src: url("/fonts/Barlow-Bold.eot") format("embedded-opentype"), url("/fonts/Barlow-Bold.ttf") format("truetype"), url("/fontsBarlow-Bold.svg#Barlow-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oxanium-ExtraBold";
  src: url("/fonts/Oxanium-ExtraBold.eot");
  src: url("/fonts/Oxanium-ExtraBold.eot") format("embedded-opentype"), url("/fonts/Oxanium-ExtraBold.ttf") format("truetype"), url("/fontsOxanium-ExtraBold.svg#Oxanium-ExtraBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oxanium-Regular";
  src: url("/fonts/Oxanium-Regular.eot");
  src: url("/fonts/Oxanium-Regular.eot") format("embedded-opentype"), url("/fonts/Oxanium-Regular.ttf") format("truetype"), url("/fontsOxanium-Regular.svg#Oxanium-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oxanium-Bold";
  src: url("/fonts/Oxanium-Bold.eot");
  src: url("/fonts/Oxanium-Bold.eot") format("embedded-opentype"), url("/fonts/Oxanium-Bold.ttf") format("truetype"), url("/fontsOxanium-Bold.svg#Oxanium-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
.dots {
  font-family: "Barlow-Regular";
  font-size: 96px;
  font-size: 6rem;
  color: #3fb0ff;
  line-height: 27px;
}

.site-canvas {
  position: relative;
}

header.nav {
  padding-bottom: 30px;
  border-bottom: 1px solid #e9f1fb;
  background-color: #f7fcff;
}
.home header.nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  border: none;
  background-color: transparent;
}
header.nav .language-selection {
  position: absolute;
  right: 80px;
  top: -38px;
}
header.nav .language-selection.hu {
  right: 55px;
}
header.nav .language-selection .language-wrapper {
  text-align: center;
}
header.nav .language-selection .language-wrapper a:first-child {
  padding-right: 10px;
}
header.nav .language-selection .language-wrapper a img {
  max-width: 25px;
}
header.nav .container {
  max-width: 1240px;
  padding-top: 10px;
}
header.nav .container .ml-helper {
  margin: 0;
  padding: 0;
}
header.nav .container .ml-helper .main-logo {
  display: block;
  text-indent: -999999px;
  width: 150px;
  height: 117px;
}
header.nav .container .ml-helper .main-logo img {
  display: block;
}
header.nav .container .site-menu-container {
  display: inline-block;
  width: 100%;
}
header.nav .container .site-menu-container .site-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
header.nav .container .site-menu-container .site-menu li {
  display: inline-block;
  font-family: "Oxanium-Bold";
  padding: 12px 20px 20px;
  font-size: 19px;
  font-size: 1.1875rem;
}
header.nav .container .site-menu-container .site-menu li:last-child {
  padding-right: 0;
}
header.nav .container .site-menu-container .site-menu li a {
  color: #173867;
  text-decoration: none;
}
.home header.nav .container .site-menu-container .site-menu li {
  color: #FFF;
}
.home header.nav .container .site-menu-container .site-menu li a {
  color: #FFF;
  text-decoration: none;
}
header.nav .container .site-menu-container .site-menu li:hover a:not(.button a) {
  color: #3fb0ff;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children {
  padding-right: 25px;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children a {
  position: relative;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children a:before {
  visibility: hidden;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -9px;
  content: "▲";
  width: 0px;
  height: 0px;
  color: #e7effa;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children a::after {
  position: absolute;
  top: -5px;
  right: -20px;
  content: url("/images/dropdown.png");
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children:hover > .submenu {
  visibility: visible;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children:hover > a {
  color: #3fb0ff;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children:hover > a::before {
  visibility: visible;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu {
  visibility: hidden;
  position: absolute;
  top: 100%;
  z-index: 99999;
  background-color: #e7effa;
  padding: 0;
  margin: 0;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu li {
  display: block;
  color: #173867;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block {
  padding: 25px;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block span {
  display: block;
  color: #173867;
  padding-bottom: 20px;
  font-family: "Barlow-Bold";
  font-size: 24px;
  font-size: 1.5rem;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items li {
  position: relative;
  padding: 12px 0 12px;
  font-family: "Oxanium-Regular";
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items li::before {
  content: "»";
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  color: #3fb0ff;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items li:hover::before {
  left: 5px;
  transition: 0.15s all ease;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items li a {
  color: #173867;
  padding-left: 22px;
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items li a::after {
  content: "";
}
header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block .menu-items li a:hover {
  color: #3fb0ff;
}
header.nav .container .site-menu-container .site-menu li.button {
  position: relative;
  padding: 12px 20px 8px;
  float: right;
  border-radius: 100px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  background-color: #3fb0ff;
  border: solid 1px #3fb0ff;
}
header.nav .container .site-menu-container .site-menu li.button a {
  color: #FFF;
}
.home header.nav .container .site-menu-container .site-menu li.button:hover a {
  color: #FFF;
}
header.nav .container .site-menu-container .site-menu li.button:hover {
  background-color: transparent;
  cursor: pointer;
}
header.nav .container .site-menu-container .site-menu li.button:hover a {
  color: #173867;
}

@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  header.nav .container .ml-helper .main-logo {
    width: 120px;
    height: 94px;
  }
  header.nav .container .site-menu-container .site-menu li {
    padding: 12px 28px 20px;
    font-size: 16px;
    font-size: 1rem;
  }
  header.nav .container .site-menu-container .site-menu li:first-child {
    padding-left: 0;
  }
  header.nav .container .site-menu-container .site-menu li.button {
    padding: 8px 28px 8px;
  }
  header.nav .container .site-menu-container .site-menu li.button .language-selection {
    top: -26px;
  }
  header.nav .container .site-menu-container .site-menu li.menu-item-has-children .submenu .menu-block span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1200px) {
  header.nav .container .site-menu-container {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  header.nav .container .ml-helper .main-logo {
    width: 120px;
    height: 94px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  header.nav .container .ml-helper .main-logo {
    width: 96px;
    height: 75px;
  }
}
@media only screen and (max-width: 480px) {
  header.nav .container .ml-helper .main-logo {
    width: 72px;
    height: 56px;
  }
}
.hero-image {
  position: relative;
}
.hero-image .content {
  position: absolute;
  top: 85%;
  transform: translateY(-80%);
  width: 100%;
  z-index: 3;
  text-align: left;
}
.hero-image .content .texts .title {
  margin: 0;
  padding: 0;
  font-family: "Oxanium-ExtraBold";
  font-weight: normal;
  font-size: 72px;
  font-size: 4.5rem;
  color: #3fb0ff;
  line-height: 1em;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-image .content .texts .title span {
  display: block;
  font-family: "Oxanium-ExtraBold";
  color: #FFF;
  font-size: 182px;
  font-size: 11.375rem;
  line-height: 268px;
  text-transform: uppercase;
}
.hero-image .content .texts .title i {
  color: #FFF;
  font-size: 72px;
  font-size: 4.5rem;
}
.hero-image .content .texts .title i:hover {
  cursor: pointer;
}
.hero-image .mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("/images/main/hero-image-mask.png") center top no-repeat;
  background-size: 100%;
}
.hero-image .bottom-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-image .image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.hero-image .image img {
  display: block;
  margin: 0 auto;
}

@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  .hero-image .content {
    top: 70%;
    transform: translateY(-50%);
  }
  .hero-image .content .texts .title {
    font-size: 56px;
    font-size: 3.5rem;
  }
  .hero-image .content .texts .title span {
    line-height: 192px;
    font-size: 144px;
    font-size: 9rem;
  }
  .hero-image .content .texts .title i {
    font-size: 56px;
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .hero-image .content .texts .title {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .hero-image .content .texts .title span {
    line-height: 144px;
    font-size: 96px;
    font-size: 6rem;
  }
  .hero-image .content .texts .title i {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .hero-image .content .texts .title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .hero-image .content .texts .title span {
    line-height: 96px;
    font-size: 64px;
    font-size: 4rem;
  }
  .hero-image .content .texts .title i {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .hero-image .image {
    height: 500px;
  }
  .hero-image .image img {
    min-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .hero-image .content .texts .title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .hero-image .content .texts .title span {
    line-height: 72px;
    font-size: 50px;
    font-size: 3.125rem;
  }
  .hero-image .content .texts .title i {
    display: none;
  }
  .hero-image .image {
    height: 400px;
  }
  .hero-image .image img {
    min-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 480px) {
  .hero-image .content .texts .title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .hero-image .content .texts .title span {
    line-height: 72px;
    font-size: 52px;
    font-size: 3.25rem;
  }
  .hero-image .content .texts .title i {
    display: none;
  }
  .hero-image .image {
    height: 350px;
  }
  .hero-image .image img {
    min-height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
footer {
  padding-top: 60px;
  background-color: #d6eeff;
  text-align: center;
  font-size: 19px;
  font-size: 1.1875rem;
}
footer .footer-top ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-bottom: 40px;
}
footer .footer-top ul li {
  display: inline-block;
  padding: 0 18px;
}
footer .footer-top ul li:first-child {
  padding-left: 0 !important;
  text-align: left !important;
}
footer .footer-top ul li a {
  color: #173867;
  font-family: "Barlow-Bold";
  text-decoration: none;
}
footer .footer-top ul li:hover a {
  color: #3fb0ff;
}
footer hr {
  color: #3fb0ff;
}
footer .footer-middle {
  text-align: left;
  padding: 30px 0;
}
footer .footer-middle ul {
  list-style-type: none;
}
footer .footer-middle ul li {
  padding: 5px 0;
}
footer .footer-middle ul li i {
  color: #3fb0ff;
  padding-right: 15px;
}
footer .footer-middle ul li a {
  text-decoration: none;
  color: black;
}
footer .footer-middle ul.social li {
  display: inline-block;
}
footer .footer-middle ul.social li a {
  text-decoration: none;
}
footer .footer-middle ul.social li a .social-item {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  background-color: #173867;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
footer .footer-middle ul.social li a .social-item i {
  color: #d6eeff;
  padding: 0;
}
footer .footer-middle ul.social li a:hover .social-item {
  cursor: pointer;
  background-color: #3fb0ff;
}
footer .footer-middle div[class*=col]:nth-child(2) {
  padding-left: 50px;
}
footer .footer-bottom {
  padding: 15px 0;
  color: #98b9d0;
}
footer .footer-bottom a {
  text-decoration: none;
  color: #98b9d0;
}
footer .footer-bottom a:hover {
  color: #3fb0ff;
}

@media only screen and (max-width: 768px) {
  footer .footer-top ul li {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 1200px) {
  footer .footer-middle ul {
    padding: 0;
  }
  footer .footer-middle div[class*=col] {
    text-align: center;
    padding-bottom: 30px;
  }
  footer .footer-middle div[class*=col]:last-child {
    padding-bottom: 0;
  }
  footer .footer-middle div[class*=col]:nth-child(2) {
    padding: 0px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  footer .footer-top ul li {
    padding: 20px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  footer .footer-top ul li {
    padding: 0 10px;
  }
}
.landing-page .container-sm {
  max-width: 1240px;
  margin: 0 auto;
}
.landing-page .container-xs {
  max-width: 1000px;
  margin: 0 auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}
.landing-page.container-text {
  padding: 25px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.landing-page.container-text img {
  max-width: 1000px !important;
}
.landing-page .container-text {
  max-width: 1000px;
  margin: 0 auto;
}
.landing-page strong {
  font-family: "Barlow-Bold";
}
.landing-page p {
  line-height: 31px;
}
.landing-page h1.page-title {
  color: #173867;
  font-family: "Oxanium-ExtraBold";
  font-size: 52px;
  font-size: 3.25rem;
  margin: 0 0 45px 0;
}
.landing-page h2.page-subtitle {
  color: #173867;
  font-size: 38px;
  font-size: 2.375rem;
  font-family: "Oxanium-ExtraBold";
}

@media only screen and (max-width: 1010px) {
  .landing-page .container-text {
    padding: 0 20px;
  }
  .landing-page h1.page-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .landing-page h2.page-subtitle {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.format-text-content {
  margin-bottom: 120px;
}
.format-text-content h1 {
  font-family: "Oxanium-ExtraBold";
  font-size: 46px;
  font-size: 2.875rem;
  color: #173867;
}
.format-text-content h2 {
  font-family: "Oxanium-ExtraBold";
  color: #173867;
  font-size: 34px;
  font-size: 2.125rem;
  margin: 25px 0;
}
.format-text-content h3 {
  font-family: "Oxanium-ExtraBold";
  color: #3fb0ff;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 25px 0;
}
.format-text-content strong {
  font-family: "Barlow-Bold";
}
.format-text-content a {
  font-family: "Barlow-Bold";
  text-decoration: none;
  color: #173867;
}
.format-text-content a:hover {
  color: #3fb0ff;
}
.format-text-content ul li::marker {
  color: #3fb0ff;
}
.format-text-content ol {
  padding: 0 0 0 30px;
}
.format-text-content ol.blue-light {
  color: #3fb0ff;
}
.format-text-content ol.text-large {
  font-size: 28px;
  font-size: 1.75rem;
}
.format-text-content ol li {
  padding-left: 20px;
  padding-bottom: 15px;
}
.format-text-content ol li p {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #000;
  margin: 20px 0;
}
.format-text-content ol li figure {
  margin: 0;
  padding: 0;
}
.format-text-content ol li figure figcaption {
  font-size: 19px;
  font-size: 1.1875rem;
  background-color: #e7effa;
  font-family: "Barlow-Bold";
  padding: 20px;
  color: #000;
}
.format-text-content figure {
  margin: 0;
  padding: 0;
}
.format-text-content figure figcaption {
  background-color: #e7effa;
  font-family: "Barlow-Bold";
  padding: 20px;
}
.format-text-content blockquote {
  border-left: 5px solid #173867;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.5em;
  margin: 30px 0;
  padding: 50px 35px;
  background-color: #e7effa;
}

.brochure-item {
  border: solid 2px #d6eeff;
  position: relative;
  margin-bottom: 60px;
}
.brochure-item:hover .thumb img {
  transform: scale3d(1.1, 1.1, 1);
}
.brochure-item a {
  text-decoration: none;
}
.brochure-item .thumb {
  top: -10px;
  left: 0;
  right: 0;
  position: absolute;
}
.brochure-item .thumb img {
  max-height: 250px;
  -ms-box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  -o-box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
}
.brochure-item .content {
  padding: 280px 20px 100px 20px;
}
.brochure-item .content h1 {
  margin: 0;
  padding: 0;
  font-size: 28px;
  font-size: 1.75rem;
}
.brochure-item .content a p.desc {
  padding: 30px 0;
  color: #000;
}
.brochure-item .download-button {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

section.career {
  margin-bottom: 60px;
}

section.why-we .container {
  padding: 150px 0;
}
section.why-we .container header h1 {
  margin-bottom: 100px;
}
section.why-we .container div[class*=col-]:not(:first-child) {
  background: url("/images/main/elvalaszto.png") no-repeat;
}
section.why-we .container .why-we-item {
  padding: 40px 50px 0 50px;
}
section.why-we .container .why-we-item span {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Oxanium-ExtraBold";
  font-size: 120px;
  font-size: 7.5rem;
  color: #173867;
  text-shadow: 0 0 0 transparent, -1px -1px 0 #3fb0ff, 0px -1px 0 #3fb0ff, 1px -1px 0 #3fb0ff, -1px 0px 0 #3fb0ff, 0px 0px 0 #3fb0ff, 1px 0px 0 #3fb0ff, -1px 1px 0 #3fb0ff, 0px 1px 0 #3fb0ff, 1px 1px 0 #3fb0ff;
}
section.why-we .container .why-we-item .title {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Oxanium-ExtraBold";
  font-size: 27px;
  font-size: 1.6875rem;
  color: #3fb0ff;
  line-height: 37px;
}
section.why-we .container .why-we-item .desc {
  padding-top: 15px;
  line-height: 31px;
}

@media only screen and (max-width: 768px) {
  section.why-we .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  section.why-we .container {
    padding: 60px 0;
  }
  section.why-we .container header h1 {
    margin-bottom: 0;
  }
  section.why-we .container .why-we-item span {
    font-size: 84px;
    font-size: 5.25rem;
  }
  section.why-we .container div[class*=col-]:not(:first-child) {
    background: transparent !important;
  }
}
@media only screen and (max-width: 1200px) {
  section.why-we .container {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  section.why-we .container {
    padding: 60px 0;
  }
  section.why-we .container .section-title {
    margin-bottom: 0;
  }
  section.why-we .container .why-we-item span {
    font-size: 84px;
    font-size: 5.25rem;
  }
  section.why-we .container .why-we-item .title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
section.services {
  position: relative;
  overflow-x: hidden;
  margin-top: 150px;
}
section.services .service-item {
  position: relative;
  margin-top: 65px;
  float: left;
  width: 32%;
  margin-right: 1%;
}
section.services .service-item.pattern::after {
  width: 150%;
  left: 100%;
  top: 28%;
}
section.services .service-item .service-item-thumb {
  margin: 0 auto;
  display: block;
  max-width: 500px;
  max-height: 400px;
  overflow: hidden;
}
section.services .service-item .service-item-thumb img {
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.services .service-item .service-item-thumb img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
section.services .service-item .service-item-content {
  padding: 0 30px;
}
section.services .service-item .service-item-content a {
  text-decoration: none;
}
section.services .service-item .service-item-content h3.title {
  margin: 45px 0 25px 0;
}
section.services .service-item .service-item-content p.desc {
  color: #000;
  line-height: 27px;
}
section.services .service-item .service-item-content a.more {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  section.services .service-item {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  section.services .service-item {
    width: 49%;
  }
}

@media only screen and (max-width: 480px) {
  section.services .service-item {
    width: 100%;
    margin-top: 40px;
  }
  section.services .service-item:first-child {
    margin-top: 65px;
  }
  section.services .pattern::after {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  section.services {
    margin-top: 60px;
  }
  section.services .ps-5 {
    padding-left: 0 !important;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  section.services .service-item {
    width: 100%;
    margin-top: 40px;
  }
  section.services .service-item:first-child {
    margin-top: 65px;
  }
  section.services .pattern::after {
    top: 35% !important;
    left: 85% !important;
    height: 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  section.services .service-item {
    width: 48%;
  }
  section.services .pattern::after {
    left: 20%;
    height: 80px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  section.services .service-item.pattern::after {
    width: 150%;
    left: 97%;
    top: 31%;
  }
}
section.blog {
  margin-top: 109px;
}
section.blog header h1 {
  margin-bottom: 75px;
}
section.blog .blog-item a {
  text-decoration: none;
  color: #000;
}
section.blog .blog-item .thumb {
  overflow: hidden;
  max-width: 100%;
  height: 292px;
}
section.blog .blog-item .thumb img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s linear;
  transform: scale3d(1, 1, 1);
}
section.blog .blog-item .thumb img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
section.blog .blog-item .content {
  padding: 35px 20px 20px 20px;
}
section.blog .blog-item .content header h1 {
  font-family: "Oxanium-ExtraBold";
  font-size: 27px;
  font-size: 1.6875rem;
  color: #3fb0ff;
  margin-bottom: 0 !important;
}
section.blog .blog-item .content span {
  display: block;
  color: #173867;
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.125rem;
}
section.blog .btn-all-blog {
  margin-top: 90px;
}
section.blog .btn-all-blog .btn {
  padding: 18px 60px;
}

@media only screen and (max-width: 1200px) {
  section.blog {
    margin-bottom: 60px;
  }
  section.blog .blog-item {
    margin-bottom: 60px;
  }
  section.blog .blog-item .content {
    padding: 35px 0 0 0;
  }
  section.blog .btn-all-blog {
    margin-top: 20px;
  }
}
section.customers, section.employee-opinion {
  margin: 150px 0;
}
section.customers .owl-carousel, section.employee-opinion .owl-carousel {
  margin-top: 100px;
}
section.customers .owl-carousel .owl-stage, section.employee-opinion .owl-carousel .owl-stage {
  display: flex;
}
section.customers .owl-carousel .owl-item, section.employee-opinion .owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
section.customers .owl-carousel .owl-next, section.employee-opinion .owl-carousel .owl-next,
section.customers .owl-carousel .owl-prev,
section.employee-opinion .owl-carousel .owl-prev {
  position: absolute;
  bottom: 0px;
}
section.customers .owl-carousel .owl-next:hover, section.employee-opinion .owl-carousel .owl-next:hover {
  background-color: transparent;
}
section.customers .owl-carousel .owl-prev:hover, section.employee-opinion .owl-carousel .owl-prev:hover {
  background-color: transparent;
}
section.customers .owl-carousel .item, section.employee-opinion .owl-carousel .item {
  padding-top: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section.customers .owl-carousel .item .opinion-wrapper, section.employee-opinion .owl-carousel .item .opinion-wrapper {
  height: 100%;
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 26%, rgb(247, 252, 255) 57%);
  border: solid 1px #d6eeff;
  border-radius: 15px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper {
  position: absolute;
  top: -30px;
  left: 40px;
}
section.customers .owl-carousel .item .opinion-wrapper .content, section.employee-opinion .owl-carousel .item .opinion-wrapper .content {
  padding: 100px 60px 80px 60px;
}
section.customers .owl-carousel .item .opinion-wrapper .content.padding, section.employee-opinion .owl-carousel .item .opinion-wrapper .content.padding {
  padding: 100px 80px 100px 120px;
}
section.customers .owl-carousel .item .opinion-wrapper .content .title, section.employee-opinion .owl-carousel .item .opinion-wrapper .content .title {
  margin-bottom: 20px;
  font-size: 37px;
  font-size: 2.3125rem;
}
section.customers .owl-carousel .item .opinion-wrapper .content p:last-child, section.employee-opinion .owl-carousel .item .opinion-wrapper .content p:last-child {
  font-family: "Barlow-Bold";
  margin-bottom: 0;
}
section.customers .owl-carousel .item .opinion-wrapper .logo-wrapper .logo, section.employee-opinion .owl-carousel .item .opinion-wrapper .logo-wrapper .logo {
  position: absolute;
  right: 0;
  bottom: 0px;
  display: inline-block;
  padding: 10px;
}
section.customers .owl-carousel .item .opinion-wrapper .logo-wrapper .logo img, section.employee-opinion .owl-carousel .item .opinion-wrapper .logo-wrapper .logo img {
  max-width: 120px;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 768px) {
  section.customers, section.employee-opinion {
    margin: 60px 0;
  }
  section.customers .owl-carousel, section.employee-opinion .owl-carousel {
    margin-top: 60px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper {
    position: absolute;
    top: -15px;
    left: 20px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper img, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper img {
    max-width: 40px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content, section.employee-opinion .owl-carousel .item .opinion-wrapper .content {
    padding: 25px 20px 80px 20px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content .title, section.employee-opinion .owl-carousel .item .opinion-wrapper .content .title {
    margin: 20px 0;
    font-size: 28px;
    font-size: 1.75rem;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content p, section.employee-opinion .owl-carousel .item .opinion-wrapper .content p {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content p.desc, section.employee-opinion .owl-carousel .item .opinion-wrapper .content p.desc {
    margin-bottom: 15px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .logo-wrapper .logo img, section.employee-opinion .owl-carousel .item .opinion-wrapper .logo-wrapper .logo img {
    max-width: 120px;
    max-height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  section.customers, section.employee-opinion {
    margin: 60px 0;
  }
  section.customers .owl-carousel, section.employee-opinion .owl-carousel {
    margin-top: 60px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper {
    position: absolute;
    top: -15px;
    left: 20px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper img, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper img {
    max-width: 40px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content, section.employee-opinion .owl-carousel .item .opinion-wrapper .content {
    padding: 25px 20px 80px 20px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content .title, section.employee-opinion .owl-carousel .item .opinion-wrapper .content .title {
    margin-bottom: 20px;
    font-size: 22px;
    font-size: 1.375rem;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content p, section.employee-opinion .owl-carousel .item .opinion-wrapper .content p {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content p.desc, section.employee-opinion .owl-carousel .item .opinion-wrapper .content p.desc {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper {
    left: 20px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .apostrophe-wrapper img, section.employee-opinion .owl-carousel .item .opinion-wrapper .apostrophe-wrapper img {
    max-width: 90px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content, section.employee-opinion .owl-carousel .item .opinion-wrapper .content {
    padding: 80px 20px 80px 20px;
  }
  section.customers .owl-carousel .item .opinion-wrapper .content .title, section.employee-opinion .owl-carousel .item .opinion-wrapper .content .title {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
section.references .wrapper {
  margin-top: 50px;
}
section.references .wrapper img {
  padding: 15px 30px;
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}
section.references .wrapper img:hover {
  filter: none;
}
section.references .btn.more {
  margin-top: 90px;
  margin-bottom: 100px;
}
section.references hr {
  color: #173867;
}

@media only screen and (max-width: 1200px) {
  section.references .wrapper img {
    max-width: 150px;
    max-height: 100px;
  }
}
section.us {
  line-height: 31px;
}
section.us .square-mask {
  position: relative;
  width: 383px;
  height: 384px;
  background-color: #FFF;
  z-index: 99;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
section.us .square-mask img {
  position: absolute;
  top: -10px;
  right: -10px;
}
section.us div[class*=col-]:nth-child(2) {
  padding-left: 65px;
}
section.us div[class*=col-]:nth-child(2) p:last-child {
  letter-spacing: 2px;
  font-family: "Barlow-Bold";
}

@media only screen and (max-width: 480px) {
  section.us .square-mask {
    margin: 0 auto;
    margin-bottom: 40px;
    width: 150px;
    height: 150px;
  }
  section.us .square-mask img {
    position: absolute;
    top: -5px;
    right: -5px;
    max-width: 150px;
  }
  section.us div[class*=col-]:nth-child(2) {
    padding-left: 0;
  }
  section.us .pattern::after {
    height: 80px;
    width: 150%;
    left: -117%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  section.us .square-mask {
    margin: 0 auto;
    margin-bottom: 40px;
    width: 250px;
    height: 250px;
  }
  section.us .square-mask img {
    position: absolute;
    top: -5px;
    right: -5px;
  }
  section.us div[class*=col-]:nth-child(2) {
    padding-left: 15px;
    text-align: justify;
  }
  section.us .pattern::after {
    height: 80px;
    width: 150%;
    left: -117%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  section.us .square-mask {
    width: 300px;
    height: 300px;
  }
  section.us .square-mask img {
    position: absolute;
    top: -5px;
    right: -5px;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  section.us .square-mask {
    width: 300px;
    height: 300px;
  }
  section.us .square-mask img {
    position: absolute;
    top: -5px;
    right: -5px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  section.us .square-mask {
    width: 330px;
    height: 330px;
  }
  section.us .square-mask img {
    max-width: 330px;
  }
}
section.work-with-us, section.newsletter, section.tender, section.career {
  overflow: hidden;
  padding: 8px 0;
}
section.work-with-us .image-overflow-wrapper, section.newsletter .image-overflow-wrapper, section.tender .image-overflow-wrapper, section.career .image-overflow-wrapper {
  background-color: #3fb0ff;
}
section.work-with-us .image-overflow-wrapper .content, section.newsletter .image-overflow-wrapper .content, section.tender .image-overflow-wrapper .content, section.career .image-overflow-wrapper .content {
  position: relative;
  padding: 55px 0;
}
section.work-with-us .image-overflow-wrapper .content .image, section.newsletter .image-overflow-wrapper .content .image, section.tender .image-overflow-wrapper .content .image, section.career .image-overflow-wrapper .content .image {
  position: absolute;
  width: 45vw;
  height: 106%;
  top: -4%;
}
section.work-with-us .image-overflow-wrapper .content .image.right, section.newsletter .image-overflow-wrapper .content .image.right, section.tender .image-overflow-wrapper .content .image.right, section.career .image-overflow-wrapper .content .image.right {
  right: 0%;
}
section.work-with-us .image-overflow-wrapper .content .image img, section.newsletter .image-overflow-wrapper .content .image img, section.tender .image-overflow-wrapper .content .image img, section.career .image-overflow-wrapper .content .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
section.work-with-us .image-overflow-wrapper .content header, section.newsletter .image-overflow-wrapper .content header, section.tender .image-overflow-wrapper .content header, section.career .image-overflow-wrapper .content header {
  display: inline-block;
}
section.work-with-us .image-overflow-wrapper .content header h1, section.newsletter .image-overflow-wrapper .content header h1, section.tender .image-overflow-wrapper .content header h1, section.career .image-overflow-wrapper .content header h1 {
  margin-bottom: 25px;
}
section.work-with-us .image-overflow-wrapper .content p, section.newsletter .image-overflow-wrapper .content p, section.tender .image-overflow-wrapper .content p, section.career .image-overflow-wrapper .content p {
  padding-right: 80px;
}
section.work-with-us .image-overflow-wrapper .content a, section.newsletter .image-overflow-wrapper .content a, section.tender .image-overflow-wrapper .content a, section.career .image-overflow-wrapper .content a {
  margin-top: 25px;
}

@media only screen and (max-width: 1200px) {
  section.work-with-us .image-overflow-wrapper .content, section.newsletter .image-overflow-wrapper .content, section.tender .image-overflow-wrapper .content, section.career .image-overflow-wrapper .content {
    text-align: center;
  }
  section.work-with-us .image-overflow-wrapper .content .image, section.newsletter .image-overflow-wrapper .content .image, section.tender .image-overflow-wrapper .content .image, section.career .image-overflow-wrapper .content .image {
    display: none;
  }
  section.work-with-us .image-overflow-wrapper .content p, section.newsletter .image-overflow-wrapper .content p, section.tender .image-overflow-wrapper .content p, section.career .image-overflow-wrapper .content p {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  section.work-with-us .image-overflow-wrapper .content header h1, section.newsletter .image-overflow-wrapper .content header h1, section.tender .image-overflow-wrapper .content header h1, section.career .image-overflow-wrapper .content header h1 {
    margin-bottom: 20px;
  }
  section.work-with-us .image-overflow-wrapper .content a, section.newsletter .image-overflow-wrapper .content a, section.tender .image-overflow-wrapper .content a, section.career .image-overflow-wrapper .content a {
    margin-top: 20px;
  }
}
section.reliable-attitude {
  position: relative;
  margin-top: 80px;
  background: url("/images/main/realible-attitude-background.jpg") center bottom no-repeat;
  padding: 120px 0 140px;
  color: #000;
}
section.reliable-attitude header h1 {
  padding-bottom: 100px;
}
section.reliable-attitude div[class*=col-]:first-child .pattern::after {
  bottom: 40px;
  left: -120%;
  z-index: 9999;
}
section.reliable-attitude div[class*=col-]:nth-child(2) {
  padding: 0 45px;
}
section.reliable-attitude p {
  line-height: 31px;
}
section.reliable-attitude .btn.more {
  margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
  section.reliable-attitude {
    margin-top: 60px;
    padding: 60px 0 70px;
  }
  section.reliable-attitude header h1 {
    padding-bottom: 40px;
  }
  section.reliable-attitude div[class*=col-]:first-child .pattern::after {
    display: none;
  }
  section.reliable-attitude div[class*=col-]:nth-child(2) {
    padding: 45px 15px;
  }
}
section.brochure {
  background-color: #173867;
  padding: 100px 0;
}
section.brochure.brand {
  margin-bottom: 80px;
  background-color: #d6eeff;
}
section.brochure.brand h2 {
  color: #173867;
  font-size: 32px;
  font-size: 2rem;
}
section.brochure.brand img {
  max-height: 400px;
  -ms-box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  -o-box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
  box-shadow: rgba(0, 0, 0, 0.6) 4px 1px 14px 0;
}
section.brochure:not(.brand) .row {
  position: relative;
}
section.brochure:not(.brand) .row img {
  position: absolute;
  left: -250px;
  top: -220px;
  max-width: 750px;
}
section.brochure h2 {
  font-family: "Oxanium-Bold";
  font-size: 52px;
  font-size: 3.25rem;
  color: #FFF;
}
section.brochure h2 span {
  display: block;
}
section.brochure .btn {
  margin-top: 15px;
}

@media only screen and (max-width: 992px) {
  section.brochure {
    padding: 40px 0 80px 0;
  }
  section.brochure h2 {
    font-size: 32px;
    font-size: 2rem;
  }
  section.brochure:not(.brand) .row {
    position: relative;
  }
  section.brochure:not(.brand) .row img {
    position: relative;
    max-width: 100%;
    max-height: 250px;
    left: 0;
    right: 0;
    top: 0;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1440px) {
  section.brochure:not(.brand) .row {
    position: relative;
  }
  section.brochure:not(.brand) .row img {
    left: 0;
    top: -110px;
    max-width: 500px;
  }
}
section.more-info-box {
  padding: 90px 0;
  color: #FFF;
}
section.more-info-box.blue-light {
  background-color: #3fb0ff;
}
section.more-info-box.blue-dark {
  background-color: #173867;
}
section.more-info-box h2 {
  font-family: "Oxanium-ExtraBold";
  font-size: 64px;
  font-size: 4rem;
}
section.more-info-box a {
  padding: 10px 60px;
}

section.gallery, section.gallery-sm {
  margin-bottom: 120px;
}
section.gallery h2.page-subtitle, section.gallery-sm h2.page-subtitle {
  margin-top: 100px;
  margin-bottom: 40px;
}
section.gallery div[class*=galley-col-], section.gallery-sm div[class*=galley-col-] {
  float: left;
}
section.gallery .owl-carousel .owl-next,
section.gallery .owl-carousel .owl-prev, section.gallery-sm .owl-carousel .owl-next,
section.gallery-sm .owl-carousel .owl-prev {
  position: absolute;
  bottom: 0px;
}
section.gallery .owl-carousel .owl-next:hover, section.gallery-sm .owl-carousel .owl-next:hover {
  background-color: transparent;
}
section.gallery .owl-carousel .owl-prev:hover, section.gallery-sm .owl-carousel .owl-prev:hover {
  background-color: transparent;
}
section.gallery .owl-carousel .galley-col-1, section.gallery-sm .owl-carousel .galley-col-1 {
  width: 43%;
  height: 650px;
}
section.gallery .owl-carousel .galley-col-1 img, section.gallery-sm .owl-carousel .galley-col-1 img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.gallery .owl-carousel .galley-col-2, section.gallery-sm .owl-carousel .galley-col-2 {
  width: 57%;
  padding-left: 20px;
  overflow: hidden;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-1, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-1 {
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-1 img, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-1 img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-2, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-2 {
  margin-top: 20px;
  display: block;
  width: 100%;
  height: 60%;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-2 .item-col-1, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-2 .item-col-1 {
  float: left;
  padding-right: 10px;
  width: 50%;
  height: 280px;
  overflow: hidden;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-2 .item-col-1 img, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-2 .item-col-1 img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-2 .item-col-2, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-2 .item-col-2 {
  float: left;
  width: 50%;
  padding-left: 10px;
  height: 280px;
  overflow: hidden;
}
section.gallery .owl-carousel .galley-col-2 .gallery-row-2 .item-col-2 img, section.gallery-sm .owl-carousel .galley-col-2 .gallery-row-2 .item-col-2 img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.gallery-sm {
  margin: 60px 0;
}
section.gallery-sm h2.page-subtitle {
  margin-top: 60px;
  margin-bottom: 40px;
}
section.gallery-sm img {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

section header {
  overflow-wrap: anywhere;
}
section header h1 {
  font-family: "Oxanium-ExtraBold";
  font-size: 52px;
  font-size: 3.25rem;
  color: #173867;
  margin: 0;
  padding: 0;
}
section header h1.white {
  color: #FFF;
}
section header h2 {
  font-family: "Oxanium-ExtraBold";
  font-size: 42px;
  font-size: 2.625rem;
  color: #173867;
  margin: 0;
  padding-bottom: 40px;
}

@media only screen and (max-width: 992px) {
  section header h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
section.where-useful.margin-tb {
  margin: 100px 0;
}
section.where-useful .page-subtitle {
  margin-bottom: 50px;
}
section.where-useful .content {
  padding: 35px 0 0 10px;
}
section.where-useful .content h3 {
  font-family: "Oxanium-ExtraBold";
  font-size: 32px;
  font-size: 2rem;
  color: #3fb0ff;
}

@media only screen and (max-width: 1200px) {
  section.where-useful.margin-tb {
    margin: 60px 0;
  }
  section.where-useful .content {
    padding: 35px 0 0 0;
  }
  section.where-useful .content h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
section.tender {
  margin: 120px 0;
  color: #FFF;
}
section.tender .image-overflow-wrapper {
  background-color: #173867;
}
section.tender .image-overflow-wrapper .content .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
section.tender .image-overflow-wrapper .content h1 {
  font-size: 44px;
  font-size: 2.75rem;
}
section.tender .image-overflow-wrapper .content strong {
  font-family: "Barlow-Bold";
}
section.tender .image-overflow-wrapper .content p {
  line-height: 2em;
}

@media only screen and (max-width: 1200px) {
  section.tender {
    margin: 100px 0 0 0;
  }
}
section.newsletter {
  margin-bottom: 100px;
}
section.newsletter .image-overflow-wrapper {
  background-color: #3fb0ff;
}
section.newsletter .image-overflow-wrapper .content {
  position: relative;
  padding: 55px 0;
  text-align: left;
}
section.newsletter .image-overflow-wrapper .content .image {
  position: absolute;
  width: 40vw;
  height: 106%;
  top: -4%;
}
section.newsletter .image-overflow-wrapper .content .image.right {
  right: 0%;
}
section.newsletter .image-overflow-wrapper .content .image img {
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.newsletter .image-overflow-wrapper .content p {
  line-height: 1.6em;
  padding-right: 0;
}

@media only screen and (max-width: 992px) {
  section.newsletter {
    margin-bottom: 0px;
  }
  section.newsletter header h1 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
section.employee-opinion .owl-carousel .item .opinion-wrapper .content {
  padding: 100px 30px 30px 30px;
}
section.employee-opinion .owl-carousel .item .opinion-wrapper .content .title {
  margin-bottom: 20px;
  font-size: 32px;
  font-size: 2rem;
}
section.employee-opinion .owl-carousel .item .opinion-wrapper .content p.desc {
  padding-top: 0;
  margin-top: 0;
  word-wrap: break-word;
}
section.employee-opinion .owl-carousel .item .opinion-wrapper .content p:last-child {
  font-family: "Barlow-Regular";
  margin-bottom: 0;
}
section.employee-opinion .owl-carousel .item .opinion-wrapper .content p.employee-name {
  font-family: "Barlow-Bold";
  padding: 30px 0;
}
section.employee-opinion .owl-carousel .item .opinion-wrapper .content img {
  margin-top: 7px;
  border-radius: 10px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

section.how-much {
  position: relative;
  background-color: #3fb0ff;
  padding: 220px 0 90px;
}
section.how-much.brand {
  margin-top: 200px;
}
section.how-much.klima {
  margin-top: 180px;
}
section.how-much.klima header h1 {
  font-size: 58px;
  font-size: 3.625rem;
}
section.how-much.klima p {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 2em;
}
section.how-much img {
  position: absolute;
  left: 0;
  right: 0;
  top: -14%;
  max-width: 250px;
  margin: 0 auto;
}
section.how-much p {
  padding: 15px 45px;
}

@media only screen and (max-width: 992px) {
  section.how-much {
    padding: 100px 0 60px;
  }
  section.how-much.brand {
    margin-top: 130px;
  }
  section.how-much.klima {
    margin-top: 50px;
  }
  section.how-much.klima header h1 {
    font-size: 38px;
    font-size: 2.375rem;
    padding: 20px 0;
  }
  section.how-much.klima p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 2em;
  }
  section.how-much img {
    position: absolute;
    left: 0;
    right: 0;
    top: -14%;
    max-width: 150px;
    margin: 0 auto;
  }
  section.how-much p {
    padding: 15px 45px;
  }
}
section.calculation-result .wrapper .text-wrapper p {
  font-family: "Oxanium-Bold";
  line-height: 2.8rem;
  color: #FFF;
  font-size: 32px;
  font-size: 2rem;
  padding: 0;
  margin: 0;
}
section.calculation-result .wrapper .text-wrapper p.sum {
  padding: 45px 0;
  font-family: "Barlow-Bold";
  font-size: 56px;
  font-size: 3.5rem;
}
section.calculation-result .note {
  margin-top: 120px;
}

@media only screen and (max-width: 992px) {
  section.calculation-result .wrapper .text-wrapper p {
    font-size: 28px;
    font-size: 1.75rem;
  }
  section.calculation-result .wrapper .text-wrapper p.sum {
    padding: 25px 0;
    font-family: "Barlow-Bold";
    font-size: 38px;
    font-size: 2.375rem;
  }
  section.calculation-result .note {
    margin-top: 60px;
  }
  section.tender {
    margin-top: 60px;
  }
}
