
/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Preloader --------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
}

[data-loader="circle-side"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite .95s linear;
	-moz-animation: circle infinite .95s linear;
	-o-animation: circle infinite .95s linear;
	animation: circle infinite .95s linear;
	border: 2px solid #333;
	border-top-color: rgba(0, 0, 0, .2);
	border-right-color: rgba(0, 0, 0, .2);
	border-bottom-color: rgba(0, 0, 0, .2);
	border-radius: 100%;
}

#loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999999;
  display: none;
}

[data-loader="circle-side-2"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite .95s linear;
	-moz-animation: circle infinite .95s linear;
	-o-animation: circle infinite .95s linear;
	animation: circle infinite .95s linear;
	border: 2px solid #333;
	border-top-color: rgba(0, 0, 0, .2);
	border-right-color: rgba(0, 0, 0, .2);
	border-bottom-color: rgba(0, 0, 0, .2);
	border-radius: 100%;
}

@-webkit-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


.downloadButton {
	max-width: 60px;
    float: left;
    top: 0px;
    margin-left: -60px;
    position: absolute;
}

.marker {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  /*positions our marker*/
  left: -50px;
  /*positions our marker*/
  display: block;
}
.pin {
  width: 20px;
  height: 20px;
  position: relative;
  top: 38px;
  left: 38px;
  background: rgba(5, 124, 255, 1);
  border: 2px solid #FFF;
  border-radius: 50%;
  z-index: 1000;
}
.pin-effect {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  display: block;
  background: rgba(5, 124, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: pulsate 2400ms ease-out infinite;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.pin-wrap {
  position: absolute;
  width: 100px;
  height: 100px;
  margin-top: -120.7106781187px;
  margin-left: -50px;
  transform-origin: 50% 120.7106781187% 0;
}

.pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  transform-origin: 50% 120.7106781187% 0;
}

.pin::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  content: "";
  transform: rotateZ(-45deg);
  border: 20px solid #f93c11;
  border-radius: 50% 50% 50% 50%;
}

.pin::before {
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  content: "";
  transform: rotateZ(-45deg);
  border: 18px solid #d22b05;
  border-radius: 50% 50% 50% 0;
}

.shadow {
  position: absolute;
}

.shadow::after {
  position: absolute;
  left: -125px;
  display: block;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  content: "";
  transform: rotateX(55deg);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.5) 100px 0 20px;
}

.pulse {
  position: absolute;
  margin-top: -50px;
  margin-left: -50px;
  transform: rotateX(55deg);
}

.pulse::after {
  display: block;
  width: 100px;
  height: 100px;
  content: "";
  -webkit-animation: pulsate 1s ease-out;
          animation: pulsate 1s ease-out;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 6px 3px #f93c11;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@font-face {
    font-family: 'Mont-Book';
    src: url('../fonts/mont/Mont-Book.woff2') format('woff2'),
        url('../fonts/mont/Mont-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-Bold.woff2') format('woff2'),
        url('../fonts/mont/Mont-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-BoldItalic.woff2') format('woff2'),
        url('../fonts/mont/Mont-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mont-BookItalic';
    src: url('../fonts/mont/Mont-BookItalic.woff2') format('woff2'),
        url('../fonts/mont/Mont-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-Heavy.woff2') format('woff2'),
        url('../fonts/mont/Mont-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-Light.woff2') format('woff2'),
        url('../fonts/mont/Mont-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-ExtraLight.woff2') format('woff2'),
        url('../fonts/mont/Mont-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-HeavyItalic.woff2') format('woff2'),
        url('../fonts/mont/Mont-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-SemiBold.woff2') format('woff2'),
        url('../fonts/mont/Mont-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont-RegularItalic';
    src: url('../fonts/mont/Mont-RegularItalic.woff2') format('woff2'),
        url('../fonts/mont/Mont-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-LightItalic.woff2') format('woff2'),
        url('../fonts/mont/Mont-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-Regular.woff2') format('woff2'),
        url('../fonts/mont/Mont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/mont/Mont-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/mont/Mont-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "GreycliffCF";
    src: url("../fonts/greycliff/GreycliffCF-Bold.eot");
    src: url("../fonts/greycliff/GreycliffCF-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/greycliff/GreycliffCF-Bold.woff2") format("woff2"), url("../fonts/greycliff/GreycliffCF-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "GreycliffCF";
    src: url("../fonts/greycliff/GreycliffCF-Medium.eot");
    src: url("../fonts/greycliff/GreycliffCF-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/greycliff/GreycliffCF-Medium.woff2") format("woff2"),
        url("../fonts/greycliff/GreycliffCF-Medium.woff") format("woff");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "GreycliffCF";
    src: url("../fonts/greycliff/GreycliffCF-Regular.eot");
    src: url("../fonts/greycliff/GreycliffCF-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/greycliff/GreycliffCF-Regular.woff2") format("woff2"),
        url("../fonts/greycliff/GreycliffCF-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "GreycliffCF";
    src: url("../fonts/greycliff/GreycliffCF-Light.eot");
    src: url("../fonts/greycliff/GreycliffCF-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/greycliff/GreycliffCF-Light.woff2") format("woff2"),
        url("../fonts/greycliff/GreycliffCF-Light.woff") format("woff");
    font-weight: 300;
    font-display: swap;
}

.menu-kurumsal {
	cursor: pointer
}

.alt50 {
	margin: 0 0 0 50px;
}

.ust50 {
	margin: 50px 0 0 0;
}

.altUst50 {
	margin: 100px 0 0 50px;
}

.alt100 {
	margin: 0 0 0 100px;
}

.ust100 {
	margin: 100px 0 0 0;
}

.altUst100 {
	margin: 100px 0 0 100px;
}

body.fancybox-active {
    overflow: hidden;
}
body.fancybox-iosfix {
    position: fixed;
    left: 0;
    right: 0;
}
.fancybox-is-hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden;
}
.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99992;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.fancybox-outer {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
    opacity: 0.87;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption-wrap,
.fancybox-infobar,
.fancybox-toolbar {
    position: absolute;
    direction: ltr;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0s linear 0.25s;
    box-sizing: border-box;
}
.fancybox-show-caption .fancybox-caption-wrap,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s, visibility 0s;
}
.fancybox-infobar {
    top: 0;
    left: 0;
    font-size: 13px;
    padding: 0 10px;
    height: 44px;
    min-width: 44px;
    line-height: 44px;
    color: #ccc;
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    mix-blend-mode: exclusion;
}
.fancybox-toolbar {
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
}
.fancybox-stage {
    overflow: hidden;
    direction: ltr;
    z-index: 99994;
    -webkit-transform: translateZ(0);
}
.fancybox-is-closing .fancybox-stage {
    overflow: visible;
}
.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform, opacity;
}
.fancybox-slide:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block;
}
.fancybox-slide--image {
    overflow: visible;
}
.fancybox-slide--image:before {
    display: none;
}
.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
    background: #000;
}
.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
    background: #e5e3df;
}
.fancybox-slide--next {
    z-index: 99995;
}
.fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box;
}
.fancybox-slide > base,
.fancybox-slide > link,
.fancybox-slide > meta,
.fancybox-slide > script,
.fancybox-slide > style,
.fancybox-slide > title {
    display: none;
}
.fancybox-slide .fancybox-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: transform, opacity;
}
.fancybox-can-zoomOut .fancybox-image-wrap {
    cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-image-wrap {
    cursor: zoom-in;
}
.fancybox-can-drag .fancybox-image-wrap {
    cursor: grab;
}
.fancybox-is-dragging .fancybox-image-wrap {
    cursor: grabbing;
}
.fancybox-image,
.fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    max-height: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fancybox-spaceball {
    z-index: 1;
}
.fancybox-slide--iframe .fancybox-content {
    padding: 0;
    width: 80%;
    height: 80%;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 88px);
    overflow: visible;
    background: #fff;
}
.fancybox-iframe {
    display: block;
    padding: 0;
    border: 0;
    height: 100%;
}
.fancybox-error,
.fancybox-iframe {
    margin: 0;
    width: 100%;
    background: #fff;
}
.fancybox-error {
    padding: 40px;
    max-width: 380px;
    cursor: default;
}
.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 16px;
    line-height: 20px;
}
.fancybox-button {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: rgba(30, 30, 30, 0.6);
    transition: color 0.3s ease;
    cursor: pointer;
    outline: none;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc;
}
.fancybox-button:focus,
.fancybox-button:hover {
    color: #fff;
}
.fancybox-button[disabled] {
    color: #ccc;
    cursor: default;
    opacity: 0.6;
}
.fancybox-button svg {
    display: block;
    position: relative;
    overflow: visible;
    shape-rendering: geometricPrecision;
}
.fancybox-button svg path {
    fill: currentColor;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 3;
}
.fancybox-button--share svg path {
    stroke-width: 1;
}
.fancybox-button--pause svg path:nth-child(1),
.fancybox-button--play svg path:nth-child(2) {
    display: none;
}
.fancybox-button--zoom svg path {
    fill: transparent;
}
.fancybox-navigation {
    display: none;
}
.fancybox-show-nav .fancybox-navigation {
    display: block;
}
.fancybox-navigation button {
    position: absolute;
    top: 50%;
    margin: -50px 0 0;
    z-index: 99997;
    background: transparent;
    width: 60px;
    height: 100px;
    padding: 17px;
}
.fancybox-navigation button:before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, 0.6);
}
.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
}
.fancybox-navigation .fancybox-button--arrow_right {
    right: 0;
}
.fancybox-close-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    z-index: 10;
    cursor: pointer;
}
.fancybox-close-small:after {
    content: "×";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 22px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background-color: transparent;
    transition: background-color 0.25s;
    box-sizing: border-box;
    z-index: 2;
}
.fancybox-close-small:focus {
    outline: none;
}
.fancybox-close-small:focus:after {
    outline: 1px dotted #888;
}
.fancybox-close-small:hover:after {
    color: #555;
    background: #eee;
}
.fancybox-slide--iframe .fancybox-close-small,
.fancybox-slide--image .fancybox-close-small {
    top: 0;
    right: -40px;
}
.fancybox-slide--iframe .fancybox-close-small:after,
.fancybox-slide--image .fancybox-close-small:after {
    font-size: 35px;
    color: #aaa;
}
.fancybox-slide--iframe .fancybox-close-small:hover:after,
.fancybox-slide--image .fancybox-close-small:hover:after {
    color: #fff;
    background: transparent;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
    display: none;
}
.fancybox-caption-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 2vw 0;
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}
.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none;
}
.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
    pointer-events: all;
    position: relative;
}
.fancybox-caption a {
    color: #fff;
    text-decoration: underline;
}
.fancybox-slide > .fancybox-loading {
    border: 6px solid rgba(99, 99, 99, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    animation: a 0.8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 99999;
}
@keyframes a {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-slide.fancybox-slide--next {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-slide.fancybox-slide--current {
    transform: translateZ(0);
    opacity: 1;
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    transform: scale3d(1.5, 1.5, 1.5);
    opacity: 0;
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
    transform: scaleX(1);
    opacity: 1;
}
.fancybox-fx-rotate.fancybox-slide--previous {
    transform: rotate(-1turn);
    opacity: 0;
}
.fancybox-fx-rotate.fancybox-slide--next {
    transform: rotate(1turn);
    opacity: 0;
}
.fancybox-fx-rotate.fancybox-slide--current {
    transform: rotate(0deg);
    opacity: 1;
}
.fancybox-fx-circular.fancybox-slide--previous {
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-circular.fancybox-slide--next {
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    opacity: 0;
}
.fancybox-fx-circular.fancybox-slide--current {
    transform: scaleX(1) translateZ(0);
    opacity: 1;
}
.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
    transform: translateZ(0) scale(1);
}
.fancybox-share {
    padding: 30px;
    border-radius: 3px;
    background: #f4f4f4;
    max-width: 90%;
    text-align: center;
}
.fancybox-share h1 {
    color: #222;
    margin: 0 0 20px;
    font-size: 35px;
    font-weight: 700;
}
.fancybox-share p {
    margin: 0;
    padding: 0;
}
p.fancybox-share__links {
    margin-right: -10px;
}
.fancybox-share__button {
    display: inline-block;
    text-decoration: none;
    margin: 0 10px 10px 0;
    padding: 0 15px;
    min-width: 130px;
    border: 0;
    border-radius: 3px;
    background: #fff;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    transition: all 0.2s;
}
.fancybox-share__button:hover {
    text-decoration: none;
}
.fancybox-share__button--fb {
    background: #3b5998;
}
.fancybox-share__button--fb:hover {
    background: #344e86;
}
.fancybox-share__button--pt {
    background: #bd081d;
}
.fancybox-share__button--pt:hover {
    background: #aa0719;
}
.fancybox-share__button--tw {
    background: #1da1f2;
}
.fancybox-share__button--tw:hover {
    background: #0d95e8;
}
.fancybox-share__button svg {
    position: relative;
    top: -1px;
    width: 25px;
    height: 25px;
    margin-right: 7px;
    vertical-align: middle;
}
.fancybox-share__button svg path {
    fill: #fff;
}
.fancybox-share__input {
    box-sizing: border-box;
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 15px;
    background: transparent;
    color: #5d5b5b;
    font-size: 14px;
    outline: none;
    border: 0;
    border-bottom: 2px solid #d7d7d7;
}
.fancybox-thumbs {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 212px;
    margin: 0;
    padding: 2px 2px 4px;
    background: #fff;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995;
}
.fancybox-thumbs-x {
    overflow-y: hidden;
    overflow-x: auto;
}
.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}
.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}
.fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
    white-space: nowrap;
}
.fancybox-thumbs-x > ul {
    overflow: hidden;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar {
    width: 7px;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}
.fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    padding: 0;
    margin: 2px;
    width: 100px;
    height: 75px;
    max-width: calc(50% - 4px);
    max-height: calc(100% - 8px);
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
}
li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
}
.fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
}
@media (max-width: 800px) {
    .fancybox-thumbs {
        width: 110px;
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    .fancybox-thumbs > ul > li {
        max-width: calc(100% - 10px);
    }
	.banner__title {
		font-size: 14px !important
	}
}
.fancybox-slide--iframe .fancybox-content {
    width: 1000px;
    height: 600px;
    max-width: 85%;
    max-height: 85%;
    margin: 0;
}
.whatsapp {
		display: inherit;
		background-image: url("../img/whatsapp.svg");
		background-size: 25px;
		background-repeat: no-repeat;
		padding-left: 25px
	}
.whatsapp2 {
		display: inherit;
		background-image: url("../img/whatsapp.svg");
		background-size: 28px;
		background-repeat: no-repeat;
		padding-left: 30px
	}

.wave {
  animation: zoomIn 1.2s infinite ease-out;
  transform-origin: 50% 50%;
}

.wave-sm {
  animation-delay: .3s;
}

.wave-md {
  animation-delay: .45s;
}

.wave-lg {
  animation-delay: .6s;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(.2);
  }

  50% {
    opacity: 1;
  }
}

.header__icon {
    vertical-align: middle;
    fill: currentColor;
    position: relative;
    top: -.1em;
    margin-right: 3px;
    width: 18px;
    height: 18px
}

@media (min-width:992px) {
    .header__icon {
        width: 24px;
        height: 24px;
        top: -.2em;
        margin-right: 5px
    }
}

@media (max-width:359px) {
    .header:not(.header--booking) .header__icon {
        display: none
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-slider * {
    min-height: 0;
    min-width: 0;
}
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots {
    min-height: 15px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 60px 15px;
    list-style-type: none;
}
.slick-dots button {
    display: block;
    max-height: 10px;
    max-width: 10px;
    min-width: 10px;
    min-height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #e8e8e8;
    text-indent: -9999px;
    transition: all 0.2s ease;
}
.slick-dots li {
    margin: 0 10px;
}
.slick-dots li.slick-active button {
    min-width: 15px;
    min-height: 15px;
    background-color: #0ba8c5;
}
.choices {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
}
.choices:focus {
    outline: none;
}
.choices:last-child {
    margin-bottom: 0;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.choices.is-disabled .choices__item {
    cursor: not-allowed;
}
.choices[data-type*="select-one"] {
    cursor: pointer;
}
.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 7.5px;
}
.choices[data-type*="select-one"] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #e4e4e4;
    background-color: #ffffff;
    margin: 0;
}
.choices[data-type*="select-one"] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    opacity: 0.5;
}
.choices[data-type*="select-one"] .choices__button:hover,
.choices[data-type*="select-one"] .choices__button:focus {
    opacity: 1;
}
.choices[data-type*="select-one"] .choices__button:focus {
    box-shadow: 0px 0px 0px 2px #00bcd4;
}
.choices[data-type*="select-one"]:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333333 transparent transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}
.choices[data-type*="select-one"].is-open:after {
    border-color: transparent transparent #333333 transparent;
    margin-top: -7.5px;
}
.choices[data-type*="select-one"][dir="rtl"]:after {
    left: 11.5px;
    right: auto;
}
.choices[data-type*="select-one"][dir="rtl"] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0;
}
.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
    cursor: text;
}
.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
    position: relative;
    display: inline-block;
    margin-top: 0;
    margin-right: -4px;
    margin-bottom: 0;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: 0.75;
    border-radius: 0;
}
.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus {
    opacity: 1;
}
.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #e4e4e4;
    border-radius: 0;
    font-size: 18px;
    min-height: 44px;
    overflow: hidden;
}
.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #e4e4e4;
}
.is-open .choices__inner {
    border-radius: 0 0 0 0;
}
.is-flipped.is-open .choices__inner {
    border-radius: 0 0 0 0;
}
.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%;
}
[dir="rtl"] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}
.choices__list--single .choices__item {
    width: 100%;
}
.choices__list--multiple {
    display: inline;
}
.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #e4e4e4;
    color: #ffffff;
    word-break: break-all;
}
.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}
[dir="rtl"] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaaaaa;
    border: 1px solid #919191;
}
.choices__list--dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
}
.choices__list--dropdown.is-active {
    display: block;
}
.is-open .choices__list--dropdown {
    border-color: #e4e4e4;
}
.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 16px;
}
[dir="rtl"] .choices__list--dropdown .choices__item {
    text-align: right;
}
@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }
    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }
    [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #fafafa;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: 0.5;
}
.choices__item {
    cursor: default;
}
.choices__item--selectable {
    cursor: pointer;
}
.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.5;
}
.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #e4e4e4;
    color: gray;
}
.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.choices__button:focus {
    outline: none;
}
.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 18px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}
.choices__input:focus {
    outline: 0;
}
[dir="rtl"] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}
.choices__placeholder {
    opacity: 0.5;
}
.choices__input.is-hidden,
.choices[data-type*="select-one"] .choices__input.is-hidden,
.choices[data-type*="select-multiple"] .choices__input.is-hidden {
    display: none;
}
@-ms-viewport {
    width: device-width;
}
.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}
.container--news {
    overflow: hidden;
}
@media (min-width: 576px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 992px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 1200px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 576px) {
    .container {
        width: 540px;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .container {
        width: 720px;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .container {
        width: 960px;
        max-width: 100%;
    }
}
@media (min-width: 1300px) {
    .container {
        width: 1220px;
        max-width: 100%;
    }
    .container--large {
        width: 1300px;
        padding: 0 100px;
    }
    .container--no-pad {
        padding: 0;
    }
}
.container-fluid {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 576px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 768px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 992px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 1200px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
@media (min-width: 576px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}
@media (min-width: 768px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}
@media (min-width: 992px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}
@media (min-width: 1200px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 576px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 768px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 992px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (min-width: 1200px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-1 {
    -ms-flex-order: 1;
    order: 1;
}
.order-2 {
    -ms-flex-order: 2;
    order: 2;
}
.order-3 {
    -ms-flex-order: 3;
    order: 3;
}
.order-4 {
    -ms-flex-order: 4;
    order: 4;
}
.order-5 {
    -ms-flex-order: 5;
    order: 5;
}
.order-6 {
    -ms-flex-order: 6;
    order: 6;
}
.order-7 {
    -ms-flex-order: 7;
    order: 7;
}
.order-8 {
    -ms-flex-order: 8;
    order: 8;
}
.order-9 {
    -ms-flex-order: 9;
    order: 9;
}
.order-10 {
    -ms-flex-order: 10;
    order: 10;
}
.order-11 {
    -ms-flex-order: 11;
    order: 11;
}
.order-12 {
    -ms-flex-order: 12;
    order: 12;
}
.pull-0 {
    right: auto;
}
.pull-1 {
    right: 8.333333%;
}
.pull-2 {
    right: 16.666667%;
}
.pull-3 {
    right: 25%;
}
.pull-4 {
    right: 33.333333%;
}
.pull-5 {
    right: 41.666667%;
}
.pull-6 {
    right: 50%;
}
.pull-7 {
    right: 58.333333%;
}
.pull-8 {
    right: 66.666667%;
}
.pull-9 {
    right: 75%;
}
.pull-10 {
    right: 83.333333%;
}
.pull-11 {
    right: 91.666667%;
}
.pull-12 {
    right: 100%;
}
.push-0 {
    left: auto;
}
.push-1 {
    left: 8.333333%;
}
.push-2 {
    left: 16.666667%;
}
.push-3 {
    left: 25%;
}
.push-4 {
    left: 33.333333%;
}
.push-5 {
    left: 41.666667%;
}
.push-6 {
    left: 50%;
}
.push-7 {
    left: 58.333333%;
}
.push-8 {
    left: 66.666667%;
}
.push-9 {
    left: 75%;
}
.push-10 {
    left: 83.333333%;
}
.push-11 {
    left: 91.666667%;
}
.push-12 {
    left: 100%;
}
.offset-1 {
    margin-left: 8.333333%;
}
.offset-2 {
    margin-left: 16.666667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.333333%;
}
.offset-5 {
    margin-left: 41.666667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.333333%;
}
.offset-8 {
    margin-left: 66.666667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.333333%;
}
.offset-11 {
    margin-left: 91.666667%;
}
@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .pull-sm-0 {
        right: auto;
    }
    .pull-sm-1 {
        right: 8.333333%;
    }
    .pull-sm-2 {
        right: 16.666667%;
    }
    .pull-sm-3 {
        right: 25%;
    }
    .pull-sm-4 {
        right: 33.333333%;
    }
    .pull-sm-5 {
        right: 41.666667%;
    }
    .pull-sm-6 {
        right: 50%;
    }
    .pull-sm-7 {
        right: 58.333333%;
    }
    .pull-sm-8 {
        right: 66.666667%;
    }
    .pull-sm-9 {
        right: 75%;
    }
    .pull-sm-10 {
        right: 83.333333%;
    }
    .pull-sm-11 {
        right: 91.666667%;
    }
    .pull-sm-12 {
        right: 100%;
    }
    .push-sm-0 {
        left: auto;
    }
    .push-sm-1 {
        left: 8.333333%;
    }
    .push-sm-2 {
        left: 16.666667%;
    }
    .push-sm-3 {
        left: 25%;
    }
    .push-sm-4 {
        left: 33.333333%;
    }
    .push-sm-5 {
        left: 41.666667%;
    }
    .push-sm-6 {
        left: 50%;
    }
    .push-sm-7 {
        left: 58.333333%;
    }
    .push-sm-8 {
        left: 66.666667%;
    }
    .push-sm-9 {
        left: 75%;
    }
    .push-sm-10 {
        left: 83.333333%;
    }
    .push-sm-11 {
        left: 91.666667%;
    }
    .push-sm-12 {
        left: 100%;
    }
    .offset-sm-0 {
        margin-left: 0%;
    }
    .offset-sm-1 {
        margin-left: 8.333333%;
    }
    .offset-sm-2 {
        margin-left: 16.666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.333333%;
    }
    .offset-sm-5 {
        margin-left: 41.666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.333333%;
    }
    .offset-sm-8 {
        margin-left: 66.666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.333333%;
    }
    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}
@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .pull-md-0 {
        right: auto;
    }
    .pull-md-1 {
        right: 8.333333%;
    }
    .pull-md-2 {
        right: 16.666667%;
    }
    .pull-md-3 {
        right: 25%;
    }
    .pull-md-4 {
        right: 33.333333%;
    }
    .pull-md-5 {
        right: 41.666667%;
    }
    .pull-md-6 {
        right: 50%;
    }
    .pull-md-7 {
        right: 58.333333%;
    }
    .pull-md-8 {
        right: 66.666667%;
    }
    .pull-md-9 {
        right: 75%;
    }
    .pull-md-10 {
        right: 83.333333%;
    }
    .pull-md-11 {
        right: 91.666667%;
    }
    .pull-md-12 {
        right: 100%;
    }
    .push-md-0 {
        left: auto;
    }
    .push-md-1 {
        left: 8.333333%;
    }
    .push-md-2 {
        left: 16.666667%;
    }
    .push-md-3 {
        left: 25%;
    }
    .push-md-4 {
        left: 33.333333%;
    }
    .push-md-5 {
        left: 41.666667%;
    }
    .push-md-6 {
        left: 50%;
    }
    .push-md-7 {
        left: 58.333333%;
    }
    .push-md-8 {
        left: 66.666667%;
    }
    .push-md-9 {
        left: 75%;
    }
    .push-md-10 {
        left: 83.333333%;
    }
    .push-md-11 {
        left: 91.666667%;
    }
    .push-md-12 {
        left: 100%;
    }
    .offset-md-0 {
        margin-left: 0%;
    }
    .offset-md-1 {
        margin-left: 8.333333%;
    }
    .offset-md-2 {
        margin-left: 16.666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.333333%;
    }
    .offset-md-5 {
        margin-left: 41.666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.333333%;
    }
    .offset-md-8 {
        margin-left: 66.666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.333333%;
    }
    .offset-md-11 {
        margin-left: 91.666667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .pull-lg-0 {
        right: auto;
    }
    .pull-lg-1 {
        right: 8.333333%;
    }
    .pull-lg-2 {
        right: 16.666667%;
    }
    .pull-lg-3 {
        right: 25%;
    }
    .pull-lg-4 {
        right: 33.333333%;
    }
    .pull-lg-5 {
        right: 41.666667%;
    }
    .pull-lg-6 {
        right: 50%;
    }
    .pull-lg-7 {
        right: 58.333333%;
    }
    .pull-lg-8 {
        right: 66.666667%;
    }
    .pull-lg-9 {
        right: 75%;
    }
    .pull-lg-10 {
        right: 83.333333%;
    }
    .pull-lg-11 {
        right: 91.666667%;
    }
    .pull-lg-12 {
        right: 100%;
    }
    .push-lg-0 {
        left: auto;
    }
    .push-lg-1 {
        left: 8.333333%;
    }
    .push-lg-2 {
        left: 16.666667%;
    }
    .push-lg-3 {
        left: 25%;
    }
    .push-lg-4 {
        left: 33.333333%;
    }
    .push-lg-5 {
        left: 41.666667%;
    }
    .push-lg-6 {
        left: 50%;
    }
    .push-lg-7 {
        left: 58.333333%;
    }
    .push-lg-8 {
        left: 66.666667%;
    }
    .push-lg-9 {
        left: 75%;
    }
    .push-lg-10 {
        left: 83.333333%;
    }
    .push-lg-11 {
        left: 91.666667%;
    }
    .push-lg-12 {
        left: 100%;
    }
    .offset-lg-0 {
        margin-left: 0%;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
    .offset-lg-2 {
        margin-left: 16.666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.333333%;
    }
    .offset-lg-5 {
        margin-left: 41.666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.333333%;
    }
    .offset-lg-8 {
        margin-left: 66.666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.333333%;
    }
    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }
    .pull-xl-0 {
        right: auto;
    }
    .pull-xl-1 {
        right: 8.333333%;
    }
    .pull-xl-2 {
        right: 16.666667%;
    }
    .pull-xl-3 {
        right: 25%;
    }
    .pull-xl-4 {
        right: 33.333333%;
    }
    .pull-xl-5 {
        right: 41.666667%;
    }
    .pull-xl-6 {
        right: 50%;
    }
    .pull-xl-7 {
        right: 58.333333%;
    }
    .pull-xl-8 {
        right: 66.666667%;
    }
    .pull-xl-9 {
        right: 75%;
    }
    .pull-xl-10 {
        right: 83.333333%;
    }
    .pull-xl-11 {
        right: 91.666667%;
    }
    .pull-xl-12 {
        right: 100%;
    }
    .push-xl-0 {
        left: auto;
    }
    .push-xl-1 {
        left: 8.333333%;
    }
    .push-xl-2 {
        left: 16.666667%;
    }
    .push-xl-3 {
        left: 25%;
    }
    .push-xl-4 {
        left: 33.333333%;
    }
    .push-xl-5 {
        left: 41.666667%;
    }
    .push-xl-6 {
        left: 50%;
    }
    .push-xl-7 {
        left: 58.333333%;
    }
    .push-xl-8 {
        left: 66.666667%;
    }
    .push-xl-9 {
        left: 75%;
    }
    .push-xl-10 {
        left: 83.333333%;
    }
    .push-xl-11 {
        left: 91.666667%;
    }
    .push-xl-12 {
        left: 100%;
    }
    .offset-xl-0 {
        margin-left: 0%;
    }
    .offset-xl-1 {
        margin-left: 8.333333%;
    }
    .offset-xl-2 {
        margin-left: 16.666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.333333%;
    }
    .offset-xl-5 {
        margin-left: 41.666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.333333%;
    }
    .offset-xl-8 {
        margin-left: 66.666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.333333%;
    }
    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.invisible {
    visibility: hidden !important;
}
.hidden-xs-up {
    display: none !important;
}
@media (max-width: 575px) {
    .hidden-xs-down {
        display: none !important;
    }
}
@media (min-width: 576px) {
    .hidden-sm-up {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .hidden-md-up {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .hidden-md-down {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;
    }
}
@media (max-width: 1199px) {
    .hidden-lg-down {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-xl-up {
        display: none !important;
    }
}
.hidden-xl-down {
    display: none !important;
}
.d-flex {
    display: -ms-flexbox;
    display: flex;
}
.justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.align-items-start {
    -ms-flex-align: start;
    align-items: flex-start;
}
.align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}
.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}
.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}
.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}
.fade.show {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.show {
    display: block;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
.d-none {
    display: none !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-table {
    display: table !important;
}
.d-table-cell {
    display: table-cell !important;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@font-face {
    font-family: "Mont";
    src: url("../fonts/mukta-regular-webfont.woff2") format("woff2"), url("../fonts/mukta-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Mukta Bold";
    src: url("../fonts/mukta-bold-webfont.woff2") format("woff2"), url("../fonts/mukta-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden] {
    display: none;
}
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    font-family: "GreycliffCF", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: "GreycliffCF", sans-serif;
    font-size: 15px;
    font-weight: 300;
    background-color: #fff;
    overflow-x: hidden;
}
a:focus {
    outline: thin dotted;
}
a:active,
a:hover {
    outline: 0;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
hr {
    box-sizing: content-box;
    height: 0;
}
mark {
    background: #ff0;
    color: #000;
}
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
}
q {
    quotes: "\201C""\201D""\2018""\2019";
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button,
input {
    line-height: normal;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
input,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    outline: 0;
    text-decoration: none;
    transition: 0.3s;
}
button {
    transition: 0.3s;
    outline: none;
    border: none;
    padding: 0;
}
a:focus {
    outline: none;
}
*,
*:before,
*:after {
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
p {
    margin: 0;
    line-height: 1.6;
}
p:first-of-type {
    margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: #080808;
}
a {
    color: #000;
}
.full-block {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
img.bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}
.full-image__wrap {
    position: relative;
    height: 640px;
}
.main {
    margin: 0 15px;
}
@media (min-width: 1000px) {
    .main {
        margin: 0;
    }
}
.main .section {
    margin: 80px 0;
}
.main .section:last-of-type {
    margin-bottom: 100px;
}
@media (min-width: 1000px) {
    .main .section {
        margin: 180px 0;
    }
}
.main .section.brands {
    margin-left: -15px;
    margin-right: -15px;
}
@media (min-width: 1000px) {
    .main .section.brands {
        margin-left: 0;
        margin-right: 0;
    }
}
.main .section.skills {
    margin-top: 130px;
}
@media (min-width: 1000px) {
    .main .section.skills {
        margin-top: inherit;
    }
}
.main .section.clients {
    padding-bottom: 40px;
}
@media (min-width: 1000px) {
    .main .section.clients {
        padding-bottom: 80px;
    }
}
.main .section.service-cards {
    margin-left: -30px;
    margin-right: -30px;
}
@media (min-width: 576px) {
    .main .section.service-cards {
        margin-left: inherit;
        margin-right: inherit;
    }
}
.main .section.choose-us {
    margin-left: -15px;
    margin-right: -15px;
}
@media (min-width: 1000px) {
    .main .section.choose-us {
        margin-left: inherit;
        margin-right: inherit;
    }
}
.main__content {
    width: 100%;
}
.main__content * + fieldset,
.main__content * + h1 {
    margin-top: 30px;
}
.main__content p {
    line-height: 1.6;
    color: #080808;
}
@media (min-width: 870px) {
    .main__content p {
        font-size: 17px;
    }
}
.main__content p a {
    font-size: 16px;
}
@media (min-width: 870px) {
    .main__content p a {
        font-size: 17px;
    }
}
.main__content a {
    position: relative;
    transition: all 0.3s ease;
}
.main__content a > p {
    margin: 0;
}
.main__content a.btn {
    margin-top: 24px;
}
.main__content p + * {
    margin-top: 20px;
}
.main__content h1,
.main__content h2,
.main__content h3,
.main__content h4,
.main__content h5,
.main__content h6 {
    position: relative;
    margin: 0;
    line-height: 1.5;
}
.main__content h1 {
    font-size: 22px;
    color: #080808;
    line-height: normal;
}
@media (min-width: 768px) {
    .main__content h1 {
        font-size: 25px;
    }
}
.main__content h1 + hr {
    margin-top: 8px;
}
.main__content h1 + h1,
.main__content h1 + h2,
.main__content h1 + h3,
.main__content h1 + h4,
.main__content h1 + h5,
.main__content h1 + h6 {
    margin-top: 16px;
}
.main__content h1 + * {
    margin-top: 24px;
}
@media (min-width: 1000px) {
    .main__content h1 + * {
        margin-top: 30px;
    }
}
.main__content h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
}
@media (min-width: 1000px) {
    .main__content h2 {
        font-size: 30px;
    }
}
.main__content h2 + hr {
    margin-top: 8px;
}
.main__content h2 + h1,
.main__content h2 + h2,
.main__content h2 + h3,
.main__content h2 + h4,
.main__content h2 + h5,
.main__content h2 + h6 {
    margin-top: 16px;
}
.main__content h2 + * {
    margin-top: 20px;
}
@media (min-width: 1000px) {
    .main__content h2 + * {
        margin-top: 20px;
    }
}
.main__content h3 {
    font-size: 21px;
    color: #0ba8c5;
    line-height: normal;
}
@media (min-width: 870px) {
    .main__content h3 {
        font-size: 1.75rem;
    }
}
.main__content h3 + hr {
    margin-top: 8px;
}
.main__content h3 + h1,
.main__content h3 + h2,
.main__content h3 + h3,
.main__content h3 + h4,
.main__content h3 + h5,
.main__content h3 + h6 {
    margin-top: 16px;
}
.main__content h3 + * {
    margin-top: 24px;
}
@media (min-width: 1000px) {
    .main__content h3 + * {
        margin-top: 30px;
    }
}
.main__content h4 {
    padding: 20px;
    font-size: 19px;
    line-height: normal;
    border-bottom-right-radius: 25px;
    background-color: #080808;
}
.main__content h4 > p {
    margin: 0;
}
.main__content h4 a .text:after {
    display: none;
}
.main__content h4 + hr {
    margin-top: 8px;
}
.main__content h4 + h1,
.main__content h4 + h2,
.main__content h4 + h3,
.main__content h4 + h4,
.main__content h4 + h5,
.main__content h4 + h6 {
    margin-top: 16px;
}
.main__content h4 + * {
    margin-top: 24px;
}
@media (min-width: 1000px) {
    .main__content h4 + * {
        margin-top: 30px;
    }
}
.main__content h5 {
    font-size: 17px;
    color: #080808;
    line-height: normal;
}
.main__content h5 + h1,
.main__content h5 + h2,
.main__content h5 + h3,
.main__content h5 + h4,
.main__content h5 + h5,
.main__content h5 + h6 {
    margin-top: 16px;
}
.main__content h5 + * {
    margin-top: 24px;
}
@media (min-width: 1000px) {
    .main__content h5 + * {
        margin-top: 30px;
    }
}
.main__content h6 {
    font-size: 17px;
    color: #0ba8c5;
    line-height: normal;
}
.main__content h6 + h1,
.main__content h6 + h2,
.main__content h6 + h3,
.main__content h6 + h4,
.main__content h6 + h5,
.main__content h6 + h6 {
    margin-top: 16px;
}
.main__content h6 + * {
    margin-top: 24px;
}
@media (min-width: 1000px) {
    .main__content h6 + * {
        margin-top: 30px;
    }
}
.main__content * + h1,
.main__content * + h2,
.main__content * + h3,
.main__content * + h4,
.main__content * + h5,
.main__content * + h6 {
    margin-top: 24px;
}
@media (min-width: 1000px) {
    .main__content * + h1,
    .main__content * + h2,
    .main__content * + h3,
    .main__content * + h4,
    .main__content * + h5,
    .main__content * + h6 {
        margin-top: 30px;
    }
}
.main__content img {
    margin-top: 30px;
    height: auto;
}
.main__content img + * {
    margin-top: 30px;
}
.main__content ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
@media (min-width: 1000px) {
    .main__content ul {
        margin-top: 50px;
    }
}
.main__content ul li {
    position: relative;
    padding: 20px 60px 20px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #1c1c1c;
    border-left: 4px solid #0ba8c5;
    box-shadow: -2px 5px 16px 0px rgba(153, 153, 153, 0.1);
}
.main__content ul li a {
    font-size: 16px;
}
.main__content ul li ul {
    margin-top: 24px;
    margin-bottom: 24px;
}
.main__content ol {
    list-style: none;
    list-style-position: inside;
    counter-reset: counter;
    padding: 0;
    margin-top: 24px;
}
.main__content ol li {
    counter-increment: counter;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
}
.main__content ol li:before {
    content: counter(counter) ". ";
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 400;
    color: #080808;
}
.main__content ol li ol {
    margin-top: 24px;
    margin-bottom: 24px;
}
.main__content ul + *,
.main__content ol + * {
    margin-top: 24px;
}
.main__content img,
.main__content .wp-caption {
    max-width: 100%;
    height: 100%;
    margin: 0;
}
.main__content img.alignleft,
.main__content .wp-caption.alignleft {
    float: left;
}
.main__content img.alignright,
.main__content .wp-caption.alignright {
    float: right;
}
.main__content img.alignleft,
.main__content img.alignright,
.main__content .wp-caption.alignleft,
.main__content .wp-caption.alignright {
    width: 48% !important;
}
.main__content img {
    display: block;
    border-radius: 2px;
    height: 100%;
    width: 100%;
}
.main__content img.alignleft {
    margin: 0 36px 24px 0;
}
.main__content img.alignright {
    margin: 0 0 24px 36px;
}
.main__content .wp-caption {
    margin: 0;
}
.main__content .wp-caption img {
    width: 100%;
    border-radius: 2px 2px 0 0;
}
.main__content .wp-caption.alignleft {
    margin: 15px 15px 15px 0;
}
.main__content .wp-caption.alignright {
    margin: 15px 0 15px 15px;
}
.main__content .wp-caption .wp-caption-text {
    position: relative;
    text-align: center;
    margin-top: 0;
    top: -2px;
    padding: 20px;
    color: #080808;
    font-size: 13px;
    border-radius: 0 0 2px 2px;
    font-weight: 400;
}
@media only screen and (max-width: 750px) {
    .main__content .wp-caption .wp-caption-text {
        padding: 20px 25px 21px;
        margin-bottom: 18px;
    }
}
.main__content--special {
    margin-bottom: 50px;
}
@media (min-width: 1000px) {
    .main__content--special {
        margin-bottom: 0;
    }
}
.main__content--special p:first-of-type {
    font-size: 20px;
}
.section__title-wrap {
    margin-bottom: 60px;
    text-align: center;
}
.section__title-wrap--between {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}
.section__title-wrap--left {
    margin-bottom: 30px;
    text-align: left;
}
.section__title-wrap--large {
    margin-bottom: 40px;
}
@media (min-width: 1000px) {
    .section__title-wrap--large {
        margin-bottom: 80px;
    }
}
.section__pre-title {
    font-size: 25px;
    color: #0ba8c5;
}
.section__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: #080808;
}
.section__view-link {
    position: relative;
    vertical-align: middle;
    font-weight: 600;
}
.section__view-link:after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    width: 20px;
    height: 10px;
    background: url("../img/arrow-black.svg") no-repeat;
    background-size: contain;
}
.section__view-link--footer {
    display: block;
}
@media (min-width: 768px) {
    .section__view-link--footer {
        display: none;
    }
}
.fourohfour__title {
    font-size: 35px;
    font-weight: 600;
    color: #0ba8c5;
}
.fourohfour__sub-title {
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 600;
}
.fourohfour__image {
    position: relative;
    height: 410px;
    background: url("../img/404.svg") no-repeat;
    background-size: contain;
}
.form {
    position: relative;
}
.form__wrap {
    margin-top: 40px;
}
.form__wrap .gform_confirmation_message {
    color: #181d2a;
}
@media (min-width: 1000px) {
    .form__wrap {
        margin-top: 80px;
    }
}
.form .gform_wrapper .gform_fields .gfield input:-webkit-autofill,
.form .gform_wrapper .gform_fields .gfield input:-webkit-autofill:hover,
.form .gform_wrapper .gform_fields .gfield input:-webkit-autofill:focus,
.form .gform_wrapper .gform_fields .gfield input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: #181d2a !important;
}
.gform_wrapper .gform_fields {
    margin: 0;
    padding: 0;
}
.gform_wrapper form {
    position: relative;
    margin: 0;
    width: 100%;
}
.gform_wrapper form .validation_error {
    display: none !important;
}
.gform_wrapper form img.gform_ajax_spinner {
    position: fixed !important;
    z-index: 999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url("../img/loading.svg");
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: center center;
}
.gform_wrapper form .gform_fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 25px;
}
.gform_wrapper form .gform_fields .ginput_container_address {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.gform_wrapper form .gform_fields .ginput_container_address .ginput_full {
    display: block;
    width: 100%;
    margin: 0 0 2% 0;
    position: relative;
}
.gform_wrapper form .gform_fields .ginput_container_address .ginput_left,
.gform_wrapper form .gform_fields .ginput_container_address .ginput_right {
    width: 49%;
    margin: 0 0 2% 0;
    display: block;
    position: relative;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .ginput_container_address .ginput_left,
    .gform_wrapper form .gform_fields .ginput_container_address .ginput_right {
        margin: 0 0 15px 0;
        width: 100%;
    }
}
.gform_wrapper form .gform_fields .ginput_container_address .gf_clear {
    display: none;
}
.gform_wrapper form .gform_fields .gfield_label_before_complex {
    display: none !important;
}
.gform_wrapper form .gform_fields .gfield {
    position: relative;
    width: 100%;
    margin: 0 0 60px 0;
}
.gform_wrapper form .gform_fields .gfield.gform_hidden {
    display: none;
}
.gform_wrapper form .gform_fields .gfield:before {
    content: "";
    display: none;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox {
    border: 3px solid #fff6b2;
    border-radius: 2px;
    padding: 42px 17px 14px 17px;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_checkbox {
        border: 1px solid #dcd7e0;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li {
    position: relative;
    width: 100%;
    height: 54px;
    padding: 0;
    margin-bottom: 2%;
    background-color: #fff;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li {
        height: auto;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input[type="checkbox"] {
    height: 54px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input[type="checkbox"] {
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input[type="checkbox"]:checked + label:before {
    background: #000;
    border-color: #000;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input[type="checkbox"]:checked + label:before {
        background: #673ab7;
        border-color: #673ab7;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input[type="checkbox"]:checked + label:after {
    opacity: 1;
    visibility: visible;
    transform: rotate(45deg);
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input[type="checkbox"]:focus {
    background-color: #fff;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li:before {
    content: "";
    display: none;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li:last-child {
    margin-bottom: 0;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio {
    border: 3px solid #fff6b2;
    border-radius: 2px;
    padding: 42px 17px 2px 17px;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_radio {
        border: 1px solid #dcd7e0;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio .gfield_radio {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li {
    position: relative;
    width: 49%;
    height: 54px;
    padding: 0;
    margin-bottom: 2%;
    background-color: #fff;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_radio li {
        width: 100%;
        margin-bottom: 15px;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li label {
    display: block;
    top: 15px;
    left: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li label:before {
    content: "";
    position: absolute;
    left: -28px;
    top: 2px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid #000;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_radio li label:before {
        border-color: #181d2a;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li label:after {
    content: "";
    position: absolute;
    left: -21px;
    top: 6px;
    display: block;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li input[type="radio"] {
    height: 54px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li input[type="radio"]:checked + label:before {
    background: #000;
    border-color: #000;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield .ginput_container_radio li input[type="radio"]:checked + label:before {
        border-color: #181d2a;
        background: #181d2a;
    }
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li input[type="radio"]:checked + label:after {
    opacity: 1;
    visibility: visible;
    transform: rotate(45deg);
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li input[type="radio"]:focus {
    background-color: #fff;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_radio li:before {
    content: "";
    display: none;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_select,
.gform_wrapper form .gform_fields .gfield .ginput_container_date,
.gform_wrapper form .gform_fields .gfield .address_country {
    position: relative;
}
.gform_wrapper form .gform_fields .gfield .ginput_container_select:after,
.gform_wrapper form .gform_fields .gfield .ginput_container_date:after,
.gform_wrapper form .gform_fields .gfield .address_country:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #181d2a;
    position: absolute;
    top: 22px;
    right: 30px;
    pointer-events: none;
}
.gform_wrapper form .gform_fields .gfield label {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #181d2a;
    transition: all 0.3s ease;
    pointer-events: none;
}
.gform_wrapper form .gform_fields .gfield input {
    height: 50px;
    border: none;
    background: none;
    border-bottom: 2px solid #181d2a;
    width: 100%;
    padding: 15px 15px 15px 0;
    font-size: 16px;
    color: #181d2a;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
}
.gform_wrapper form .gform_fields .gfield input:-webkit-autofill,
.gform_wrapper form .gform_fields .gfield input:-webkit-autofill:hover,
.gform_wrapper form .gform_fields .gfield input:-webkit-autofill:focus,
.gform_wrapper form .gform_fields .gfield input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: white !important;
}
.gform_wrapper form .gform_fields .gfield select {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    color: #181d2a;
    background: none;
    border: none;
    border-bottom: 2px solid #181d2a;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
.gform_wrapper form .gform_fields .gfield textarea {
    width: 100%;
    height: auto;
    padding: 15px 15px 15px 0;
    background: none;
    outline: none;
    font-size: 16px;
    color: #181d2a;
    max-height: 160px;
    resize: none;
    border: none;
    border-bottom: 2px solid #181d2a;
}
.gform_wrapper form .gform_fields .gfield.gfield_error input,
.gform_wrapper form .gform_fields .gfield.gfield_error select,
.gform_wrapper form .gform_fields .gfield.gfield_error textarea {
    border-bottom: 2px solid #0ba8c5;
}
.gform_wrapper form .gform_fields .gfield__textarea label {
    margin-bottom: 30px;
}
.gform_wrapper form .gform_fields .gfield__half {
    width: 100%;
}
@media (min-width: 1000px) {
    .gform_wrapper form .gform_fields .gfield__half {
        width: 49%;
    }
}
.gform_wrapper form .gform_fields .gfield__half li {
    width: 49%;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield__half li {
        width: 100%;
    }
}
.gform_wrapper form .gform_fields .gfield__third {
    width: 32%;
}
.gform_wrapper form .gform_fields .gfield__checkbox label {
    top: 15px;
    font-weight: 700;
    color: #000;
}
.gform_wrapper form .gform_fields .gfield__checkbox .gfield_checkbox {
    margin-bottom: 0;
}
.gform_wrapper form .gform_fields .gfield__checkbox--50 li {
    width: 49% !important;
}
.gform_wrapper form .gform_fields .gfield__radio label {
    top: 15px;
    font-weight: 700;
    color: black;
}
.gform_wrapper form .gform_fields .gfield__consent > label {
    display: none;
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent {
    height: 20px;
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent label {
    display: block;
    left: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: initial;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent label:before {
    content: "";
    position: absolute;
    left: -28px;
    top: -2px;
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #181d2a;
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent label:after {
    content: "";
    position: absolute;
    left: -21px;
    top: 3px;
    display: block;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent input {
    opacity: 0;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent input:checked + label:before {
    background: #000;
    border-color: #000;
}
@media (min-width: 870px) {
    .gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent input:checked + label:before {
        background: #181d2a;
        border-color: #181d2a;
    }
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent input:checked + label:after {
    opacity: 1;
    visibility: visible;
    transform: rotate(45deg);
}
.gform_wrapper form .gform_fields .gfield__consent .ginput_container_consent input:focus {
    background-color: #fff;
}
.gform_wrapper form .gform_fields .gfield.gfield_visibility_hidden {
    display: none;
}
.gform_wrapper form .gform_fields .gfield--active label {
    top: -25px;
    color: #0ba8c5;
}
.gform_wrapper form .gform_fields .gfield--active input {
    border-bottom: 2px solid #0ba8c5;
}
.gform_wrapper form .gform_fields .gfield--active textarea {
    border-bottom: 2px solid #0ba8c5;
}
.gform_wrapper form .gform_fields .gfield__select label {
    display: none;
}
.gform_wrapper form .gf_progressbar {
    display: none;
}
.gform_wrapper form .gform_footer {
    text-align: right;
}
.gform_wrapper form .gfield_description.validation_message {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    color: #181d2a;
}
.gform_wrapper form .gform_validation_container {
    display: none;
}
.gform_confirmation_message {
    color: #fff;
}
.loading {
    display: none;
}
.home .loading {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    transition: all 0.6s linear;
}
.home .loading__number {
    color: #0ba8c5;
    font-size: 10vw;
    font-weight: 600;
}
.home .loading.loaded {
    opacity: 0;
    visibility: hidden;
}
.animate {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.9s ease;
}
.animate.animated {
    opacity: 1;
	z-index: 1;
    transform: translateY(0);
}
.animate-l {
    opacity: 0;
    transform: translateX(130px);
    transition: all 0.9s ease;
}
.animate-l.animated {
    opacity: 1;
    transform: translateX(0);
}
.btn {
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn span {
    padding: 20px 30px;
}
@media (min-width: 1000px) {
    .btn span {
        padding: 20px 50px;
    }
}
.btn--red {
    color: #fff;
    border: 2px solid #0ba8c5;
    background-color: #0ba8c5;
}
.btn--red:hover {
    color: #0ba8c5;
    border: 2px solid #0ba8c5;
    background-color: transparent;
}
.btn--white {
    color: #fff;
    border: 2px solid #fff;
    background-color: #0ba8c5;
}
.btn--white:hover {
    color: #0ba8c5;
    border: 2px solid #fff;
    background-color: #fff;
}
.btn--white-hover:hover {
    border: 2px solid #0ba8c5;
    color: #fff;
}
.btn--arrow span {
    position: relative;
    padding: 20px 40px 20px 0;
    color: #1c1c1c;
}
.btn--arrow span:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: inline-block;
    width: 20px;
    height: 10px;
    background: url("../img/arrow-black.svg") no-repeat;
    background-size: contain;
}
.btn--arrow:hover span {
    color: #0ba8c5;
}
.btn--arrow-white span:after {
    background: url("../img/arrow-white.svg") no-repeat;
}
.btn--full {
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
}
.js-services-slider {
    overflow: hidden;
    margin: 0;
}
.js-services-slider .slick-list {
    margin: 0 -15px;
    padding-left: 10%;
    padding-right: 10%;
}
@media (min-width: 576px) {
    .js-services-slider .slick-list {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
.js-services-slider .slick-dots {
    margin-top: 40px;
    margin-bottom: 0;
}
@media (min-width: 1000px) {
    .js-services-slider .slick-dots {
        margin-bottom: 60px;
    }
}

.isOrtaklarimiz {
    outline: none;
	margin-bottom: 20px;
}
.isOrtaklarimiz__wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 250px;
    padding: 100px 50px 100px 50px;
}
.isOrtaklarimiz__wrap img {
	z-index: 3;
	min-height: 40px;
}
.isOrtaklarimiz__wrap:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: 400% 400%;
    background: #f5f5f5;
    animation-play-state: paused;
    transition: all 0.3s ease-in-out;
}
.isOrtaklarimiz__wrap:hover:before {
    background: #efefef
}

.redHat {
	margin: 0 auto;
	margin-top: 80px;
}

.service-card {
    margin-bottom: 30px;
    outline: none;
}
.service-card__wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: center;
    min-height: 350px;
    padding: 0 25px;
    color: #fff;
}
.service-card__wrap:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: 400% 400%;
    background: linear-gradient(49deg, #3CB9D1 0%, #0ba8c5 100%);
    animation: gradientBG 15s ease infinite;
    animation-play-state: paused;
    transition: all 0.3s ease-in-out;
    opacity: 0.80;
}
.service-card__wrap:hover:before {
    opacity: 0.50;
}
.service-card__title {
    max-width: 70%;
    color: #fff;
    margin: 0 auto;
	text-align: center;
    font-weight: 600;
    font-size: 30px;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    z-index: 2;
}
.service-card__view {
    position: relative;
}
.service-card__view:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 20px;
    height: 12px;
    transform: translateY(-50%);
    background: url("../img/arrow.svg");
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.service-card__image {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.service-card:hover .service-card__wrap {
    animation-play-state: running;
}
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.content-image__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
@media (min-width: 1000px) {
    .content-image__content {
        margin-bottom: 0;
    }
}
.content-image__wrap {
    position: relative;
    height: 320px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (min-width: 870px) {
    .content-image__wrap {
        height: 590px;
    }
}
.brands__scroll {
    padding-bottom: 50px;
    overflow: hidden;
}
@media (min-width: 1000px) {
    .brands__scroll {
        height: 50px;
        padding: 0;
        margin: 65px 0 0 0;
    }
}
.brands__scroll .slick-list {
    height: 100%;
}
.brands__scroll .slick-track {
    height: 100%;
    vertical-align: middle;
    display: inline-block;
}
.brands__scroll .slick-slide {
    display: -ms-flexbox;
    display: flex;
    margin: 0 20px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    float: left;
    overflow: hidden;
    outline: none;
}
@media (min-width: 1000px) {
    .brands__scroll .slick-slide {
        margin: 0;
    }
}
.brands__scroll .slick-slider {
    margin: 0 -15px;
}
.brands__block {
    display: block;
    height: 44px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.3s ease;
}
.brands__block:hover {
    filter: grayscale(1);
    opacity: 0.4;
}
.map-cta {
    position: relative;
    padding: 80px 0;
}
.map-cta:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .map-cta:before {
        left: 0;
        width: 100%;
    }
}
@media (min-width: 1000px) {
    .map-cta {
        padding: 180px 0;
    }
}
.map-cta__pre-title {
    font-size: 25px;
    color: #0ba8c5;
}
.map-cta__title {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 30px;
    font-weight: 600;
}
@media (min-width: 1000px) {
    .map-cta__title {
        line-height: 1.25;
    }
}
.map-cta__world {
    position: relative;
    margin: 70px 0;
}
@media (min-width: 1000px) {
    .map-cta__world {
        margin: 100px 0;
    }
}
@media (min-width: 1280px) {
    .map-cta__world {
        margin: 160px 0;
    }
}
.map-cta__cta-wrap {
    display: -ms-flexbox;
    display: flex;
    padding: 35px 25px;
	margin-top: 50px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
    background-color: #0ba8c5;
}
@media (min-width: 870px) {
    .map-cta__cta-wrap {
        padding: 45px 55px;
    }
}
@media (min-width: 1000px) {
    .map-cta__cta-wrap {
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 95px 100px;
		margin-top: 100px;
    }
}
.map-cta__cta-titles {
    margin-bottom: 25px;
    text-align: center;
}
@media (min-width: 1000px) {
    .map-cta__cta-titles {
        margin-bottom: 0;
        text-align: left;
    }
}
.map-cta__cta-titles span {
    font-size: 15px;
    color: #fff;
}
@media (min-width: 870px) {
    .map-cta__cta-titles span {
        font-size: 20px;
    }
}
@media (min-width: 1000px) {
    .map-cta__cta-titles span {
        font-size: 25px;
    }
}
.map-cta__cta-titles h3 {
    font-size: 22px;
	margin-top: 10px;
    font-weight: 600;
    color: #fff;
}
@media (min-width: 870px) {
    .map-cta__cta-titles h3 {
        font-size: 30px;
    }
}
@media (min-width: 1000px) {
    .map-cta__cta-titles h3 {
        font-size: 35px;
    }
}
.w-pin {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #ff0000;
    position: absolute;
    top: 38.5%;
    left: 69%;
}
@media (min-width: 1000px) {
    .w-pin {
        width: 12px;
        height: 12px;
        border-radius: 6px;
    }
}
.w-pin:before,
.w-pin:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #ff0000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
}
@media (min-width: 1000px) {
    .w-pin:before,
    .w-pin:after {
        width: 12px;
        height: 12px;
        border-radius: 6px;
    }
}
.w-pin:after {
    animation-delay: 2s;
}
.w-pin:nth-child(2) {
    top: 31%;
    left: 20%;
}
.w-pin:nth-child(3) {
    top: 65%;
    left: 33%;
}
.w-pin:nth-child(4) {
    top: 17%;
    left: 46.5%;
}
.w-pin:nth-child(5) {
    top: 36.5%;
    left: 47.5%;
}
.w-pin:nth-child(6) {
    top: 21%;
    left: 51%;
}
.w-pin:nth-child(7) {
    top: 44%;
    left: 56.5%;
}
.w-pin:nth-child(8) {
    top: 65.5%;
    left: 55.5%;
}
@keyframes pulse-me {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.1;
    }
    70% {
        opacity: 0.12;
    }
    100% {
        transform: scale(5);
        opacity: 0;
    }
}
.choose-us__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-gap: 15px 15px;
}
.choose-us__grid:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 870px;
    height: 870px;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    z-index: -1;
}
.choose-us__image {
    position: relative;
    grid-column: 4 / 8;
    grid-row: 5 / 7;
}
@media (min-width: 1000px) {
    .choose-us__image {
        grid-column: 4 / 8;
        grid-row: 4 / 8;
    }
}
.choose-us__image img {
    max-height: 200px;
}
@media (min-width: 1000px) {
    .choose-us__image img {
        max-height: 430px;
    }
}
.choose-us__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    grid-column: 3 / 9;
    grid-row: 9 / 11;
}
@media (min-width: 1000px) {
    .choose-us__block {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }
}
.choose-us__block:nth-child(2) {
    grid-column: 3 / 9;
    grid-row: 1 / 3;
}
@media (min-width: 1000px) {
    .choose-us__block:nth-child(2) {
        grid-column: 5 / 7;
    }
}
.choose-us__block:nth-child(3) {
    grid-column: 3 / 9;
    grid-row: 3 / 5;
}
@media (min-width: 1000px) {
    .choose-us__block:nth-child(3) {
        grid-row: 7 / 5;
        grid-column: 9 / 11;
    }
}
.choose-us__block:nth-child(4) {
    grid-column: 3 / 9;
    grid-row: 7 / 9;
}
@media (min-width: 1000px) {
    .choose-us__block:nth-child(4) {
        grid-column: 5 / 7;
        grid-row: 9 / 11;
    }
}
.choose-us__title {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
    color: #0ba8c5;
}
.choose-us__text {
    color: #1c1c1c;
}
.reviews {
    position: relative;
}
.reviews:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .reviews:before {
        left: 0;
        width: 70%;
    }
}
.reviews__wrap {
    position: relative;
    padding: 200px 0 55px 0;
}
@media (min-width: 870px) {
    .reviews__wrap {
        padding: 220px 0 55px 0;
    }
}
@media (min-width: 1000px) {
    .reviews__wrap {
        padding: 280px 0 135px 0;
    }
}
.reviews__wrap:before {
    content: "";
    display: block;
    width: 187px;
    height: 187px;
    position: absolute;
    top: -73px;
    left: 8%;
    background: url("../img/dot-circle.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.reviews__content-wrap {
    outline: none;
}
.reviews__title-wrap {
    margin-bottom: 60px;
}
.reviews__pre-title {
    color: #0ba8c5;
}
@media (min-width: 1000px) {
    .reviews__pre-title {
        font-size: 25px;
        line-height: 1.25;
    }
}
.reviews__title {
    font-weight: 600;
    color: #080808;
}
@media (min-width: 1000px) {
    .reviews__title {
        font-size: 30px;
        line-height: 1.25;
    }
}
.reviews__content p {
    margin-bottom: 30px;
    line-height: 1.4;
    font-size: 30px;
}
.reviews__reviewee {
    font-weight: 600;
    font-size: 22px;
    color: #0ba8c5;
}
.reviews__image {
    position: relative;
    height: 315px;
}
@media (min-width: 576px) {
    .reviews__image {
        height: 410px;
    }
}
@media (min-width: 870px) {
    .reviews__image {
        height: 500px;
    }
}
@media (min-width: 1000px) {
    .reviews__image {
        height: 650px;
    }
}
@media (min-width: 1280px) {
    .reviews__image {
        height: 750px;
    }
}
.reviews__image-wrap {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    height: auto;
}
@media (min-width: 1000px) {
    .reviews__image-wrap {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 500px;
        height: 650px;
    }
}
@media (min-width: 1280px) {
    .reviews__image-wrap {
        width: 690px;
        height: 750px;
    }
}
@media (min-width: 1440px) {
    .reviews__image-wrap {
        width: 750px;
        height: 750px;
    }
}
.reviews__controls {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 125px;
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #0ba8c5;
}
.reviews__controls:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 1px;
    height: 36px;
    background-color: #c02922;
}
.reviews__control {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 14px;
    background: url("../img/arrow.svg") no-repeat;
    background-size: contain;
    cursor: pointer;
}
.reviews__control--prev {
    transform: rotate(-180deg);
}
.post-card {
    position: relative;
}
.post-card__media {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.post-card__media:before {
    display: none;
}
@media (min-width: 1000px) {
    .post-card__media:before {
        content: "";
        display: block;
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(236, 45, 35, 0.9);
        transition: all 0.6s ease;
        z-index: 1;
    }
}
.post-card__media:after {
    display: none;
}
@media (min-width: 1000px) {
    .post-card__media:after {
        content: "Read Post";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 25px;
        color: #fff;
        transform: translateX(-50%) translateY(-50%);
        z-index: 1;
        opacity: 0;
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }
}
.post-card__content {
    padding: 30px 0;
}
@media (min-width: 1000px) {
    .post-card__content {
        padding: 50px 20px;
    }
}
.post-card__category {
    font-weight: 600;
    color: #0ba8c5;
}
.post-card__title {
    font-size: 25px;
}
@media (min-width: 1000px) {
    .post-card:hover .post-card__media:before {
        left: 0;
    }
}
@media (min-width: 1000px) {
    .post-card:hover .post-card__media:after {
        opacity: 1;
    }
}
.news__wrap {
    position: relative;
}
.news__wrap:before {
    content: "";
    display: block;
    width: 147px;
    height: 147px;
    position: absolute;
    top: -85px;
    left: -60px;
    background: url("../img/dot-circle.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
}
.news .section__title-right {
    display: none;
}
@media (min-width: 768px) {
    .news .section__title-right {
        display: block;
    }
}
.share__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 26px 0 30px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (min-width: 1000px) {
    .share__wrap {
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 60px 0;
    }
}
.share__title {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0 30px 0;
    color: #0ba8c5;
    text-transform: uppercase;
    font-weight: 600;
}
@media (min-width: 1000px) {
    .share__title {
        margin: 0 125px 0 0;
    }
}
.share__links {
    display: -ms-flexbox;
    display: flex;
}
.share__link {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 30px;
}
.share__link svg {
    width: 20px;
    height: 20px;
}
.share__link svg path,
.share__link svg circle {
    transition: all 0.3s ease;
}
.share__link:hover svg path,
.share__link:hover svg circle {
    fill: #181d2a;
}
.skills {
    position: relative;
}
.skills:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .skills:before {
        display: none;
    }
}
.skills .row {
    position: relative;
}
.skills .row:before {
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .skills .row:before {
        display: block;
    }
}
.skills__wrap {
    position: relative;
    padding: 80px 15px;
}
@media (min-width: 1000px) {
    .skills__wrap {
        padding: 100px 0;
    }
}
.skills__wrap:after {
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    position: absolute;
    top: -40px;
    right: 13%;
    background: url("../img/certified-badge.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    animation: rotation 5s infinite linear;
    -webkit-animation: rotation 5s infinite linear;
}
@media (min-width: 1000px) {
    .skills__wrap:after {
        width: 145px;
        height: 145px;
        top: -73px;
    }
}
.skills__title {
    font-size: 20px;
    font-weight: 600;
    color: #080808;
}
.skills__title .houdini-toggle-icon {
    background: none;
    width: 6px;
    height: 19px;
    right: 20px;
    transform-origin: center;
}
.skills__accordion {
    border-bottom: 1px solid #1c1c1c;
}
.skills__accordion .houdini-heading .houdini-toggle {
    padding: 13px 0;
    color: #080808;
}
.skills__accordion .houdini.is-expanded {
    padding-bottom: 20px;
}
@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
.accordions {
    position: relative;
}
.accordions:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .accordions:before {
        display: none;
    }
}
.accordions .row {
    position: relative;
}
.accordions .row:before {
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .accordions .row:before {
        display: block;
    }
}
.accordions__wrap {
    position: relative;
    padding: 80px 15px;
}
@media (min-width: 1000px) {
    .accordions__wrap {
        padding: 100px 0;
    }
}
.accordions__title {
    font-size: 20px;
    font-weight: 600;
    color: #080808;
}
.accordions__title .houdini-toggle-icon {
    background: none;
    width: 6px;
    height: 19px;
    right: 20px;
    transform-origin: center;
}
.accordions__accordion {
    border-bottom: 1px solid #1c1c1c;
}
.accordions__accordion .houdini-heading .houdini-toggle {
    padding: 13px 0;
    color: #080808;
}
.accordions__accordion .houdini.is-expanded {
    padding-bottom: 20px;
}
.contact-ctas__block {
    display: -ms-flexbox;
    display: flex;
    padding: 40px 45px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #080808;
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .contact-ctas__block {
        height: 100%;
        padding: 90px 100px;
        margin: 0;
    }
}
@media (min-width: 1280px) {
    .contact-ctas__block {
        padding: 120px 145px;
    }
}
.contact-ctas__block--red {
    background-color: #0ba8c5;
    color: #fff;
}
.contact-ctas .col:not(:last-child) .contact-ctas__block {
    margin-bottom: 30px;
}
@media (min-width: 1000px) {
    .contact-ctas .col:not(:last-child) .contact-ctas__block {
        margin: 0;
    }
}
.contact-ctas__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-ctas__content .btn {
    margin-top: 25px;
}
.contact-ctas__link {
    font-size: 20px;
    color: inherit;
    font-weight: 600;
}
@media (min-width: 1000px) {
    .contact-ctas__link {
        font-size: 22px;
    }
}
.contact-ctas__title {
    max-width: 100%;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: inherit;
}
.contact-ctas__text {
    font-size: 20px;
}
@media (min-width: 1000px) {
    .contact-ctas__text {
        font-size: 22px;
    }
}
.clients__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3em;
}
@media (min-width: 576px) {
    .clients__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (min-width: 1000px) {
    .clients__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 4em;
    }
}
.clients__grid-item {
    position: relative;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 20px;
}
@media (min-width: 1000px) {
    .clients__grid-item {
        padding: 30px;
    }
}
.clients__grid-item img {
    display: block;
    max-width: 60px;
    margin: 0 auto;
}
@media (min-width: 576px) {
    .clients__grid-item img {
        max-width: 90px;
    }
}
@media (min-width: 1000px) {
    .clients__grid-item img {
        max-width: 180px;
    }
}
.title-text {
    position: relative;
}
.title-text--circle:first-of-type:before {
    content: "";
    display: block;
    width: 430px;
    height: 430px;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    right: -100px;
}
@media (min-width: 1000px) {
    .title-text--circle:first-of-type:before {
        width: 860px;
        height: 860px;
        top: -100px;
        right: -20px;
    }
}
.text-highlight__wrap {
    padding: 45px 30px;
    color: #fff;
    background-color: #0ba8c5;
}
@media (min-width: 1000px) {
    .text-highlight__wrap {
        padding: 85px 0;
    }
}
.text-highlight__title {
    margin-bottom: 15px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}
@media (min-width: 1000px) {
    .text-highlight__title {
        font-size: 30px;
    }
}
.location {
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
}
@media (min-width: 1000px) {
    .location {
        padding-top: 100px;
        padding-bottom: 250px;
    }
}
.location:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .location:before {
        left: 0;
        width: 100%;
    }
}
@media (min-width: 1000px) {
    .location + .form {
        margin-top: 0;
    }
}
.location > .container:before {
    content: "";
    display: block;
    width: 170px;
    height: 170px;
    position: absolute;
    top: -160px;
    left: 25%;
    background: url("../img/dot-circle.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.location__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
}
@media (min-width: 1000px) {
    .location__list {
        margin-bottom: 75px;
    }
}
.location__list li a {
    position: relative;
    font-size: 20px;
    color: #0ba8c5;
}
@media (min-width: 1000px) {
    .location__list li a {
        font-size: 30px;
    }
}
.location__list li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: #0ba8c5;
}
@media (min-width: 1000px) {
    .location__title {
        margin-bottom: 25px;
        font-size: 25px;
        font-weight: 600;
        color: #0ba8c5;
    }
}
.location__address {
    margin-bottom: 25px;
}
.location__info {
    padding-top: 50px;
	padding-bottom: 50px;
    font-size: 18px;
}
@media (min-width: 1000px) {
    .location__info {
        padding-top: 100px;
        padding-bottom: 0;
    }
}
.location__phone {
    font-weight: 600;
}
.location__map {
    position: relative;
    right: 0;
    left: -15px;
    width: 100vw;
    height: 450px;
}
@media (min-width: 1000px) {
    .location__map {
        position: absolute;
        bottom: 0;
        left: auto;
        width: 50vw;
        height: 700px;
    }
}
#contactMap {
    width: 100%;
    height: 100%;
}
#contactMap .gm-style-cc {
    display: none !important;
}

.location__social {
    position: relative;
    max-width: 220px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
}
@media (min-width: 1000px) {
    .location__social {
        top: 150px;
        left: 0;
        transform: none;
    }
}
.location__social:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background-color: #1c1c1c;
}
.location__social-title {
    width: 35%;
    line-height: 1;
    background-color: #fafafa;
    z-index: 1;
}
.location__social-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 45%;
    padding-left: 10px;
    background-color: #fafafa;
    z-index: 1;
}
.location__social-menu li {
    height: 20px;
}
.location__social-icon {
    display: block;
    width: 20px;
    height: 20px;
}
.location__social-icon svg path,
.location__social-icon svg circle {
    transition: all 0.3s ease;
}
.location__social-icon:hover svg path {
    fill: #0ba8c5;
}
.location__social-icon:hover svg circle {
    fill: #0ba8c5;
}
.hardware-list {
    position: relative;
    padding: 80px 0;
}
.hardware-list:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .hardware-list:before {
        left: 0;
        width: 100%;
    }
}
@media (min-width: 1000px) {
    .hardware-list {
        padding: 180px 0;
    }
}
.hardware-list__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
}
@media (min-width: 1000px) {
    .hardware-list__top {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.hardware-list__title {
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 600;
}
@media (min-width: 1000px) {
    .hardware-list__title {
        margin-bottom: 0;
    }
}
.hardware-list__dropdown-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (min-width: 1000px) {
    .hardware-list__dropdown-wrap {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: center;
        align-items: center;
    }
}
.hardware-list__dropdown-title {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}
@media (min-width: 870px) {
    .hardware-list__dropdown-title {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 20px;
    }
}
.hardware-list__wrap {
    margin-bottom: 30px;
    background-color: #fff;
}
.hardware-list__logo {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 190px;
    background-color: #efefef;
}
@media (min-width: 1000px) {
    .hardware-list__logo {
        min-height: 300px;
    }
}
.hardware-list__logo img {
    max-width: 80px;
}
@media (min-width: 1000px) {
    .hardware-list__logo img {
        max-width: 150px;
    }
}
.hardware-list__list {
    padding: 35px 30px 40px 30px;
}
@media (min-width: 1000px) {
    .hardware-list__list {
        padding: 50px 70px 40px 70px;
    }
}
.hardware-list__list-titles {
    display: none;
}
@media (min-width: 1000px) {
    .hardware-list__list-titles {
        display: -ms-flexbox;
        display: flex;
        padding: 10px 40px;
    }
    .hardware-list__list-titles span {
        color: #1c1c1c;
        font-weight: 600;
    }
}
.hardware-list__product {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 40px;
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .hardware-list__product {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.hardware-list__product:nth-child(odd) {
    background-color: #fff;
}
.hardware-list__product span {
    color: #1c1c1c;
}
.hardware-list__none {
    display: none;
    padding: 10px 40px;
}
.hardware-list__none.active {
    display: block;
}
.hardware-list__col-one {
    width: 100%;
}
@media (min-width: 1000px) {
    .hardware-list__col-one {
        width: 50%;
    }
}
.hardware-list__col-two {
    width: 100%;
}
@media (min-width: 1000px) {
    .hardware-list__col-two {
        width: 25%;
    }
}
.hardware-list__col-three {
    width: 100%;
}
@media (min-width: 1000px) {
    .hardware-list__col-three {
        width: 25%;
    }
}
.hardware-list__product-date span {
    font-weight: 600;
}
@media (min-width: 1000px) {
    .hardware-list__product-support {
        text-align: right;
    }
}
.hardware-list__product-support a {
    color: #0ba8c5;
    font-weight: 600;
}
.hardware-list__support-link {
    cursor: pointer;
}
.hardware-list__footer {
    margin-top: 20px;
    text-align: center;
}
.hardware-list__view-all {
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    color: #0ba8c5;
    font-weight: 600;
}
.hardware-list__view-all:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #0ba8c5;
}
.js-filter-dropdown {
    width: 100%;
}
@media (min-width: 1000px) {
    .js-filter-dropdown {
        width: 300px;
    }
}
.js-filter-dropdown .choices:before {
    content: "";
    position: absolute;
    right: 50px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
}
.js-filter-search {
    position: relative;
    width: 100%;
}
@media (min-width: 1000px) {
    .js-filter-search {
        width: 370px;
    }
}
.js-filter-search:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/search.svg") no-repeat;
    background-size: contain;
}
.js-filter-search input {
    height: 55px;
    width: 100%;
    padding: 20px 58px 20px 20px;
    color: #949494;
    border: 1px solid #e4e4e4;
    background-color: #fafafa;
    outline: none;
    transition: all 0.3s ease;
}
.js-filter-search input:focus {
    border: 1px solid #949494;
}
.js-filter-search input:-ms-input-placeholder {
    color: #949494;
}
.js-filter-search input::placeholder {
    color: #949494;
}
.benefits__block {
    padding: 50px 40px;
    margin-bottom: 30px;
    border-left: 4px solid #0ba8c5;
    text-align: center;
    box-shadow: -2px 5px 16px 0px rgba(153, 153, 153, 0.1);
}
@media (min-width: 1000px) {
    .benefits__block {
        padding: 50px 90px;
        margin-bottom: 0;
    }
}
@media (min-width: 1000px) {
    .benefits__wrap .col:nth-child(2) .benefits__block {
        margin-top: 120px;
    }
}
@media (min-width: 1000px) {
    .benefits__wrap .col:nth-child(4) .benefits__block {
        margin-top: -60px;
    }
}
.benefits__num {
    margin-bottom: 20px;
    text-align: center;
}
.benefits__num span {
    display: block;
    line-height: 1;
    font-weight: 600;
    font-size: 60px;
    color: #0ba8c5;
}
.benefits__title {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}
.benefits__text {
    font-size: 20px;
}
.tabbed-content {
    position: relative;
    padding: 120px 0 80px 0;
}
.tabbed-content:before {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    right: 0;
    top: 0px;
    height: 100%;
    width: calc(100% + 30px);
    background-color: #fafafa;
}
@media (min-width: 1000px) {
    .tabbed-content:before {
        display: none;
    }
}
@media (min-width: 1000px) {
    .tabbed-content {
        padding: 160px;
        background-color: #fafafa;
    }
}
.tabbed-content .container:before {
    content: "";
    display: block;
    width: 230px;
    height: 230px;
    position: absolute;
    top: -220px;
    right: 0;
    background: url("../img/dot-circle.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (min-width: 1000px) {
    .tabbed-content .container:before {
        width: 230px;
        height: 230px;
        top: -250px;
    }
}
.tabs__tab {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 1;
    transition: all 0.4s ease;
    opacity: 0;
}
.tabs__tab--current {
    opacity: 1;
}
.tabs__wrap {
    display: grid;
    position: relative;
    height: 100%;
}
.tabs__tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
.tabs__tabs .tab-link {
    display: block;
    width: auto;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
    background-color: transparent;
    border-bottom: 1px solid #e8e8e8;
    color: #1c1c1c;
    transition: all 0.2s ease;
    cursor: pointer;
}
@media (min-width: 1000px) {
    .tabs__tabs .tab-link {
        padding: 0 0 30px 0;
        margin-bottom: 30px;
    }
}
.tabs__tabs .tab-link__title {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.3;
    color: #1c1c1c;
    transition: all 0.2s ease;
}
@media (min-width: 1000px) {
    .tabs__tabs .tab-link__title {
        margin-bottom: 15px;
        font-size: 22px;
    }
}
.tabs__tabs .tab-link:last-child {
    border-bottom: none;
}
.tabs__tabs .tab-link--current .tab-link__title {
    font-weight: 600;
    color: #0ba8c5;
}
.tabs__content-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.tabs__content-wrap ul li {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #1c1c1c;
}
.tabs__content-wrap ul li:first-child {
    border-top: 1px solid #1c1c1c;
}
.callback__form-wrap {
    padding: 60px 0;
    background-color: #fafafa;
}
.callback__form .gform_wrapper form .gform_fields .gfield input:-webkit-autofill,
.callback__form .gform_wrapper form .gform_fields .gfield input:-webkit-autofill:hover,
.callback__form .gform_wrapper form .gform_fields .gfield input:-webkit-autofill:focus,
.callback__form .gform_wrapper form .gform_fields .gfield input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: #181d2a !important;
}
.callback__form-title {
    margin-bottom: 40px;
    font-size: 25px;
    font-weight: 600;
}
@media (min-width: 1000px) {
    .callback__form-title {
        margin-bottom: 60px;
    }
}
.video-block {
    margin: 100px 0;
}
.video-block__wrap {
    position: relative;
    overflow: hidden;
    height: 610px;
}
.video-block__wrap:hover .video-block__play-icon {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.video-block__wrap:hover .video-block__play-icon:after {
    transform: scale(0.9);
}
.video-block__link {
    display: block;
    z-index: 2;
}
.video-block__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    z-index: 1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #0ba8c5;
    transition: all 0.3s ease;
    z-index: 1;
}
.video-block__play-icon:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    background: url("../img/play.svg") no-repeat;
    background-size: contain;
}
.partner {
    margin-top: 90px;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    background-color: #0ba8c5;
}
@media (min-width: 1000px) {
    .partner {
        padding: 160px 0;
        margin-top: 180px;
    }
}
.partner .container {
    position: relative;
}
.partner .container:before {
    content: "";
    display: block;
    width: 890px;
    height: 890px;
    position: absolute;
    top: 50%;
    right: -40px;
    border: 2px solid #09869E;
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*.partner .container:after {
    content: "";
    display: block;
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    right: -130px;
    transform: translateY(-50%);
    background: url("../img/dots-dark.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/
.sizi-arayalim {
    display: block;
    width: 500px;
    height: 500px;
    position: absolute;
    top: -100%;
    right: 0;
}
@media (max-width: 870px) {
    .sizi-arayalim {
    display: none !important;
	}
}
.partner__pre-title {
    font-size: 25px;
    color: #fff;
}
.partner__title {
    margin: 5px 0 20px 0;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}
@media (min-width: 870px) {
    .partner__title {
        font-size: 35px;
    }
}
@media (min-width: 1000px) {
    .partner__title {
        font-size: 40px;
    }
}
.partner__content {
    position: relative;
    z-index: 2;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
.header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background-color: #fff;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
    will-change: initial;
}
.header__wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
    transition: all 0.5s ease;
    max-height: 60px;
    border-bottom: 1px solid #ececec;
}
@media (min-width: 1000px) {
    .header__wrap {
        -ms-flex-align: initial;
        align-items: initial;
        max-height: 85px;
    }
}
@media (min-width: 1280px) {
    .header__wrap {
        max-height: 95px;
    }
}
.header__logo {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 15px 15px 15px 15px;
}
@media (min-width: 1000px) {
    .header__logo {
        width: auto;
        padding: 25px 0 25px 90px;
    }
}
.header__logo a {
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.header__logo img {
    width: 150px;
}
@media (min-width: 1000px) {
    .header__logo img {
        width: 160px;
    }
}
@media (min-width: 1280px) {
    .header__logo img {
        width: 230px;
    }
}
.header__logo svg path {
    fill: #fff;
    transition: all 0.3s ease;
}
.header__right {
    display: none;
    -ms-flex-align: center;
    align-items: center;
}
@media (min-width: 1000px) {
    .header__right {
        display: -ms-flexbox;
        display: flex;
    }
}
.header__navigation {
    margin-right: 30px;
    justify-self: flex-end;
}
@media (min-width: 1280px) {
    .header__navigation {
        margin-right: 40px;
    }
}
@media (min-width: 1440px) {
    .header__navigation {
        margin-right: 50px;
    }
}
.header__nav-wrap .menu {
    display: -ms-flexbox;
    display: flex;
}
@media (min-width: 1000px) {
    .header__nav-wrap .menu > li:not(:last-child) {
        margin-right: 30px;
    }
}
@media (min-width: 1280px) {
    .header__nav-wrap .menu > li:not(:last-child) {
        margin-right: 40px;
    }
}
@media (min-width: 1440px) {
    .header__nav-wrap .menu > li:not(:last-child) {
        margin-right: 25px;
    }
}
.header__nav-wrap .menu > li a {
    position: relative;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header__nav-wrap .menu > li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -29px;
    width: 100%;
    height: 37px;
    cursor: initial;
}
@media (min-width: 1280px) {
    .header__nav-wrap .menu > li a:after {
        bottom: -40px;
        height: 30px;
    }
}
.header__nav-wrap .menu > li a:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -29px;
    opacity: 0;
    background-color: #0ba8c5;
    pointer-events: none;
}
@media (min-width: 1280px) {
    .header__nav-wrap .menu > li a:before {
        bottom: -39px;
    }
}
.header__nav-wrap .menu > li a:hover {
    color: #0ba8c5;
}
.header__nav-wrap .menu > li.mega-menu:hover > .sub-menu {
    opacity: 1;
    pointer-events: initial;
}
.header__nav-wrap .menu > li.current_page_item > a:before {
    opacity: 1;
}
.header__nav-wrap .menu > li.active > a:before {
    opacity: 1;
}
.header__call {
    display: none;
}
@media (min-width: 1280px) {
    .header__call {
        display: block;
        margin-right: 30px;
    }
}
@media (min-width: 1440px) {
    .header__call {
        margin-right: 30px;
    }
}
.header__call a {
    position: relative;
    display: block;
}
.header__call a:before {
    content: "";
    display: block;
    width: 3px;
    height: 20px;
    position: absolute;
    left: -15px;
    top: 0px;
    background-color: #0ba8c5;
}
.header__call span {
    color: #fff;
    line-height: 1;
    transition: all 0.3s ease;
}
.header__call span strong {
    display: block;
}
.header__quote {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: calc(100% + 2px);
    color: #fff;
    cursor: pointer;
    background-color: #0ba8c5;
}
.header__quote-text {
    display: block;
    padding: 0 30px;
    font-weight: 600;
    color: #fff;
}
.header--not-home:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: #fff;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 1;
    will-change: initial;
}
@media (min-width: 1000px) {
    .header--not-home:before {
        height: 0;
        opacity: 0;
    }
}
.header--not-home .header__logo svg path {
    fill: #1c1c1c;
}
.header--not-home .nav-burger__line {
    background-color: #1c1c1c;
}
.header.menu-open:before {
    height: 100%;
    opacity: 1;
}
.header.menu-open .nav-burger__line {
    background-color: #1c1c1c;
}
.header.menu-open .header__logo svg path {
    fill: #1c1c1c;
}
.header--focused:before {
    opacity: 1;
}
.header--focused .nav-burger__line {
    background-color: #1c1c1c;
}
.header--focused .header__wrap {
    background-color: #fff;
}
.header--focused .header__logo svg path {
    fill: #1c1c1c;
}
.header--fixed:before {
    height: 100%;
    opacity: 1;
}
.header--fixed .nav-burger__line {
    background-color: #1c1c1c;
}
.header--fixed .header__nav-wrap .menu li a {
    color: #1c1c1c;
}
.header--fixed .header__nav-wrap .menu li a:hover {
    color: #0ba8c5;
}
.header--fixed .header__call span {
    color: #1c1c1c;
}
.header--fixed .header__logo svg path {
    fill: #1c1c1c;
}
@media (min-width: 1000px) {
    .header:hover .header__nav-wrap .menu li a {
        color: #1c1c1c;
    }
    .header:hover .header__nav-wrap .menu li a:hover {
        color: #0ba8c5;
    }
    .header:hover .header__call span {
        color: #1c1c1c;
    }
    .header:hover .header__call span:hover strong {
        color: #0ba8c5;
    }
    .header:hover .header__logo svg path {
        fill: #1c1c1c;
    }
}
.error404 .header {
    background-color: #fff;
}
.error404 .header__nav-wrap .menu li a {
    color: #1c1c1c;
}
.error404 .header__nav-wrap .menu li a:hover {
    color: #0ba8c5;
}
.error404 .header__call span {
    color: #1c1c1c;
}
.error404 .header__logo svg path {
    fill: #1c1c1c;
}
.mega {
    position: relative;
    transform: translate3d(0, -100vw, 0);
}
.mega__menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    pointer-events: none;
    transform: translate3d(0, -300px, 0);
    transition: all 0.7s ease;
    opacity: 0;
    z-index: 8;
}
.mega__menu .menu {
    padding: 40px 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    transition: all 0.5s ease;
}
.mega__menu .menu li:not(:last-child) {
    margin-right: 50px;
}
.mega__menu .menu li a {
    color: #1c1c1c;
	font-weight: 600;
}
.mega__menu .menu li a:hover {
    color: #0ba8c5;
}
.mega__menu.show {
    transform: translate3d(0, 0, 0);
    pointer-events: all;
    opacity: 1;
}
.mega__wrap {
    width: 80%;
    max-width: 1180px;
    margin: 0 auto;
}
.mega__wrap--list {
    display: -ms-flexbox;
    display: flex;
}
.mega__menu-wrap {
    width: 60%;
}
.mega__menu-wrap .menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.mega__menu-wrap .menu li {
    width: 40%;
    margin-bottom: 10px;
}
.mega__menu-wrap .menu li.view-all a {
    color: #0ba8c5;
}
.mega__menu-kurumsal {
    width: 75%;
}
.mega__menu-kurumsal .menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.mega__menu-kurumsal .menu li {
    width: 40%;
    margin-bottom: 10px;
}
.mega__menu-kurumsal .menu li.view-all a {
    color: #0ba8c5;
}
.mega__menu-cozumler {
    width: 75%;
}
.mega__menu-cozumler .menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.mega__menu-cozumler .menu li {
    width: 40%;
    margin-bottom: 10px;
}
.mega__menu-cozumler .menu li.view-all a {
    color: #0ba8c5;
}
.mega__featured-wrap {
    width: 40%;
    padding: 40px 0;
}
.mega__featured-img {
    position: relative;
    width: 380px;
    height: 190px;
}
.mega.active {
    transform: translate3d(0, 0, 0);
}
.banner {
    position: relative;
    height: 90vh;
}
.banner--sub-page {
    height: auto;
}
@media (min-width: 1000px) {
    .banner--sub-page {
        height: 70vh;
    }
}
.banner--sub-page:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 1;
}
@media (min-width: 1000px) {
    .banner--sub-page:after {
        width: 35%;
    }
}
.banner--sub-page .banner__title {
    color: #080808;
}
.banner--sub-page .banner__image {
    position: relative;
    bottom: 0;
    height: 400px;
    width: 100%;
    z-index: 2;
}
.banner--sub-page .banner__image:after {
    content: "";
    display: block;
    width: 190px;
    height: 190px;
    position: absolute;
    bottom: -10%;
    left: -80px;
    background: url("../img/dot-circle.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (min-width: 1000px) {
    .banner--sub-page .banner__image:after {
        display: none;
    }
}
@media (min-width: 1000px) {
    .banner--sub-page .banner__image {
        width: 65%;
        height: 100%;
        position: absolute;
        right: 0;
        z-index: 1;
    }
}
.banner--sub-page .banner__wrap {
    padding-right: 20%;
}
@media (min-width: 1000px) {
    .banner--sub-page .banner__wrap {
        padding-right: 0;
		margin-right: 50px;
    }
}
.banner--sub-page .banner__content {
    position: relative;
    padding-top: 100px;
    padding-bottom: 20px;
    height: auto;
}
@media (min-width: 1000px) {
    .banner--sub-page .banner__content {
        height: 100%;
    }
}
.banner--sub-page .banner__content .container:after {
    display: none;
}
@media (min-width: 1000px) {
    .banner--sub-page .banner__content .container:after {
        display: block;
    }
}
.banner--sub-page .banner__content .container:before {
    display: none;
    background-color: #1c1c1c;
}
.banner--sub-page .banner__support {
    display: none;
}
@media (min-width: 1000px) {
    .banner--sub-page .banner__support {
        display: -ms-flexbox;
        display: flex;
    }
}
.banner--news .banner__wrap {
    padding-right: 0;
}
.banner--news .banner__content .container:before {
    height: 80px;
}
.banner--video:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.banner__image {
    position: relative;
    height: 100%;
}
.banner__image--eoleos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner__image img.logo {
    z-index: 5;
}
.banner__image:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.banner__video {
    position: relative;
    height: 100%;
    width: 100%;
}
.banner__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner__content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 2;
}
.banner__content > .container {
    height: 100%;
}
.banner__content > .container:after {
    content: "";
    display: block;
    width: 187px;
    height: 187px;
    position: absolute;
    bottom: 0px;
    left: -20%;
    background: url("../img/dot-circle.svg") no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (min-width: 1000px) {
    .banner__content > .container:after {
        bottom: -73px;
        left: 25%;
    }
}
.banner__content > .container .row {
    height: 100%;
}
@media (min-width: 1000px) {
    .banner__content > .container:before {
        content: "";
        display: block;
        position: absolute;
        left: 16px;
        bottom: 0;
        height: 145px;
        width: 1px;
        background-color: #fff;
    }
}
.banner__wrap {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding-right: 15%;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (min-width: 1000px) {
    .banner__wrap {
        padding-right: 0;
    }
}
.banner__pre-title {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    color: #0ba8c5;
}
.banner__title {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.5;
    color: #fff;
}
@media (min-width: 1000px) {
    .banner__title {
        font-size: 26px;
    }
}
.banner__news-date {
    font-weight: 600;
}
.banner__support {
    position: absolute;
    bottom: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    z-index: 2;
}
@media (min-width: 1000px) {
    .banner__support {
        width: 780px;
    }
}
.banner__support-block {
    padding: 20px 20px;
    cursor: pointer;
}
@media (min-width: 1000px) {
    .banner__support-block {
        padding: 30px 40px;
    }
}
.banner__support-block span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
@media (min-width: 1000px) {
    .banner__support-block span {
        font-size: 18px;
    }
}
.banner__support-block h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease;
}

@media (min-width: 1000px) {
    .banner__support-block h2 {
        font-size: 22px;
    }
}
.banner__support-left {
    width: 50%;
    background-color: #1c1c1c;
}
@media (min-width: 1000px) {
    .banner__support-left {
        width: 45%;
    }
}
.banner__support-left h2 {
    display: inline-block;
    text-decoration: none;
    text-shadow: 0px -2px 0 #1c1c1c, 0px -1px 0 #1c1c1c, 0px 0px 0 #1c1c1c, 2px -2px 0 #1c1c1c, 2px -1px 0 #1c1c1c, 2px 0px 0 #1c1c1c, -2px -2px 0 #1c1c1c, -2px -1px 0 #1c1c1c, -2px 0px 0 #1c1c1c, 1px -2px 0 #1c1c1c, 1px -1px 0 #1c1c1c,
        1px 0px 0 #1c1c1c, -1px -2px 0 #1c1c1c, -1px -1px 0 #1c1c1c, -1px 0px 0 #1c1c1c, 0px -2px 0 #1c1c1c, 0px -1px 0 #1c1c1c, 0px 0px 0 #1c1c1c;
    box-shadow: 0 -1px 0 0 #1c1c1c inset, 0 -2px 0 0 transparent inset;
}
.banner__support-left span {
    display: block;
    color: #0ba8c5;
}
.banner__support-left:hover h2 {
    box-shadow: 0 -1px 0 0 #fff inset, 0 -2px 0 0 #fff inset;
}
.banner__support-right {
    width: 50%;
    background: linear-gradient(49deg, #3CB9D1 0%, #0ba8c5 100%);
    color: #fff;
}
@media (min-width: 1000px) {
    .banner__support-right {
        width: 55%;
    }
}
.banner__support-right h2 {
    position: relative;
    display: inline-block;
}

.banner__support-right:hover h2:after {
    opacity: 1;
}
.banner__support-right span {
    display: block;
    color: #fff;
}
.header__mobile-navigation {
    position: fixed;
    top: 60px;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    transition: opacity 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, width 0.35s ease;
    opacity: 0;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 1000px) {
    .header__mobile-navigation {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}
.header__mobile-navigation.open {
    z-index: 500;
    visibility: visible;
    opacity: 1;
}
.header__mobile-navigation-footer {
    padding-top: 20px;
    text-align: center;
}
.header__mobile-list {
    padding: 15px;
}
.header__mobile-list > li {
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}
.header__mobile-list a {
    display: block;
    font-size: 22px;
    font-weight: 600;
}
.header__mobile-list .houdini-toggle-icon {
    background: url("../img/down-chevron-grey.svg");
}
.header__mobile-list .houdini-heading .houdini-toggle {
    color: #080808;
}
.header__mobile-mega a {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 300;
}
.header__mobile-mega a:first-child {
    margin-top: 15px;
}
.nav-burger {
    position: relative;
    display: block;
    padding: 15px;
    z-index: 550;
    transition: all 250ms ease-in-out;
}
@media (min-width: 1000px) {
    .nav-burger {
        display: none;
    }
}
.nav-burger__line {
    width: 26px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px auto;
    transition: all 250ms ease-in-out;
}
@media (min-width: 1000px) {
    .nav-burger__line {
        display: none;
    }
}
.nav-burger__line:first-child {
    margin-top: 0;
}
.nav-burger__line:last-child {
    margin-bottom: 0;
}
.nav-burger.open .nav-burger__line:nth-child(2) {
    opacity: 0;
}
.nav-burger.open .nav-burger__line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.nav-burger.open .nav-burger__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.footer {
    background-color: #1c1c1c;
}
.footer__menus {
    padding-bottom: 50px;
	padding-top: 50px;
}
@media (min-width: 1000px) {
    .footer__menus {
        padding-bottom: 150px;
		padding-top: 80px;
    }
}
.footer__menu-wrap {
    display: none;
    color: #fff;
}
@media (min-width: 1000px) {
    .footer__menu-wrap {
        display: block;
    }
}
.footer__menu-wrap a {
    color: #fff;
    display: inline-block;
}
.footer__menu-wrap a:hover {
    color: #8e8e8e;
}
.footer__menu-wrap p {
    color: #fff;
}
.footer__accordion {
    display: block;
    color: #fff;
}
@media (min-width: 1000px) {
    .footer__accordion {
        display: none;
    }
}
.footer__accordion a {
    color: #fff;
    display: inline-block;
}
.footer__accordion a:hover {
    color: #8e8e8e;
}
.footer__accordion p {
    color: #fff;
}
.footer__menu-title {
    display: block;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 600;
    color: #0ba8c5;
}
.footer__nav--accordion {
    padding-bottom: 30px;
}
.footer__top {
    padding: 50px 0 50px 0;
}
@media (min-width: 1000px) {
    .footer__top {
        padding: 135px 0 135px 0;
    }
}
.footer__logo {
    display: none;
}
@media (min-width: 1000px) {
    .footer__logo {
        display: block;
        max-width: 205px;
        margin-left: auto;
    }
}
.footer__copyright {
    padding: 30px 0;
    color: #fff;
    border-top: 1px solid #8e8e8e;
}
.footer__copyright-text {
    text-align: center;
}
@media (min-width: 1000px) {
    .footer__copyright-text {
        text-align: left;
    }
}
.footer__copyright-text span {
    margin-right: 15px;
}
.footer__copyright-text a {
    margin-left: 15px;
    color: #fff;
    text-decoration: underline;
}
.footer__go-top {
    display: none;
}
@media (min-width: 1000px) {
    .footer__go-top {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: 2;
    }
}
.footer__go-top-text {
    position: relative;
}
.footer__go-top-text span {
    position: relative;
    color: #0ba8c5;
    font-weight: 600;
}
.footer__go-top-text span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #0ba8c5;
}
.footer__go-top-text:before {
    content: "";
    display: block;
    position: absolute;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 85px;
    background-color: #0ba8c5;
}
.footer__made {
    text-align: center;
}
@media (min-width: 1000px) {
    .footer__made {
        text-align: right;
    }
}
.footer__swish {
    display: block;
    margin: 20px auto 0 auto;
    width: 70px;
}
@media (min-width: 1000px) {
    .footer__swish {
        margin: 0 0 0 auto;
    }
}
.footer__swish img {
    max-width: 100%;
}
.footer__accred {
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer__accredImg:not(:last-child) {
    margin-right: 20px;
}
.footer__accredImg img {
    max-width: 80px;
}
.news-letter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (min-width: 1000px) {
    .news-letter {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.news-letter__titles {
    margin-bottom: 35px;
}
@media (min-width: 1000px) {
    .news-letter__titles {
        margin-bottom: 0;
    }
}
.news-letter__pre-title {
    font-size: 14px;
    color: #fff;
}
.news-letter__title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.7;
    color: #fff;
}
.news-letter__form {
    width: 100%;
}
@media (min-width: 1000px) {
    .news-letter__form {
        width: 50%;
    }
}
.news-letter__form .gform_wrapper form .gform_fields {
    margin-bottom: 0;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield {
    margin-bottom: 0;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield label {
    top: 10px;
    color: #fff;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield input {
    background-color: transparent;
    display: -ms-flexbox;
    display: flex;
    padding-right: 40px;
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    font-weight: 600;
    color: #fff;
    outline: none;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield input::-webkit-input-placeholder {
    color: #fff;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield input::-moz-placeholder {
    color: #fff;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield input:-ms-input-placeholder {
    color: #fff;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield input:-moz-placeholder {
    color: #fff;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield input::-webkit-autofill {
    box-shadow: none !important;
    background-color: #1c1c1c !important;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield.gfield--active label {
    top: -25px;
}
.news-letter__form .gform_wrapper form .gform_fields .gfield .validation_message {
    display: none;
}
.news-letter__form .gform_wrapper .gform_button {
    height: 100%;
    background-color: transparent;
}
.news-letter__form .gform_wrapper .gform_footer {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
.social--banner {
    position: absolute;
    left: 90px;
    bottom: 60px;
    z-index: 5;
}
.social--sub-banner .social__title {
    color: #1c1c1c;
}
.social--sub-banner .social__title:after {
    background-color: #1c1c1c;
}
.social--sub-banner .social__icon svg path {
    fill: #1c1c1c;
}
.social--sub-banner .social__icon svg circle {
    fill: #1c1c1c;
}
.social__wrap {
    position: relative;
    max-width: 205px;
    min-width: 205px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 40px;
    margin-left: auto;
}
.social__wrap--footer {
    margin-right: auto;
}
@media (min-width: 1000px) {
    .social__wrap--footer {
        margin-right: -60px;
    }
}
.social__title {
    position: relative;
    width: 50%;
    line-height: 1;
    z-index: 1;
    color: #fff;
}
.social__title:after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 25px;
    background-color: #fff;
}
.social__menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 45%;
    padding-left: 10px;
    z-index: 1;
}
.social__menu li {
    height: 20px;
}
.social__icon {
    display: block;
    width: 20px;
    height: 20px;
}
.social__icon svg path,
.social__icon svg circle {
    transition: all 0.3s ease;
}
.social__icon:hover svg path {
    fill: #0ba8c5;
}
.social__icon:hover svg circle {
    fill: #0ba8c5;
}
.modal__close {
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-weight: 600;
    font-size: 20px;
    line-height: 50px;
    background-color: #0ba8c5;
}
.modal__close span {
    display: block;
}
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 20;
}
.modal__container {
    background-color: #fff;
    padding: 30px 30px;
    max-width: 740px;
    max-height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    color: #080808;
}
@media (min-width: 1000px) {
    .modal__container {
        padding: 60px 100px;
    }
}
.modal__content {
    padding-top: 20px;
}
.modal__content--center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.modal__content .gform_confirmation_message {
    color: #181d2a;
}
.modal__header {
    margin-bottom: 15px;
}
.modal__title {
    margin-bottom: 0;
}
.modal__call-icon {
    width: 50px;
    margin-bottom: 15px;
}
.modal__call-link {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}
.modal__opening {
    display: block;
    font-size: 12px;
}
.modal .gform_wrapper form .gform_fields .gfield {
    margin-bottom: 40px;
}
.modal .gform_wrapper form .gform_fields .gfield input:-webkit-autofill,
.modal .gform_wrapper form .gform_fields .gfield input:-webkit-autofill:hover,
.modal .gform_wrapper form .gform_fields .gfield input:-webkit-autofill:focus,
.modal .gform_wrapper form .gform_fields .gfield input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: #181d2a !important;
}
.modal .gform_wrapper form .gform_footer .btn {
    width: 100%;
}
@media (min-width: 1000px) {
    .modal .gform_wrapper form .gform_footer .btn {
        width: auto;
    }
}
.modal .gform_wrapper form .gform_footer .btn span {
    width: 100%;
}
@media (min-width: 1000px) {
    .modal .gform_wrapper form .gform_footer .btn span {
        width: auto;
    }
}
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10%);
    }
}
.micromodal-slide {
    display: none;
}
.micromodal-slide.is-open {
    display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}
.houdini {
    display: none;
    max-height: 0;
    transition: all 0.5s ease;
}
.houdini[tabindex="-1"]:focus {
    outline: none;
}
.houdini.is-expanded {
    display: block;
    max-height: 99em;
    transition: all 0.5s ease;
}
.houdini-heading .houdini-toggle {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    font: inherit;
    text-align: inherit;
    color: #0ba8c5;
    border: none;
    background: inherit;
}
.houdini-heading .houdini-toggle[aria-expanded="true"] .houdini-toggle-icon {
    transform: translateY(-50%) rotate(180deg);
}
.houdini-toggle-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 1;
    background-size: contain;
    background: url("../img/down-chevron.svg");
    transition: all 0.2s ease;
}

.yoltarifi {
    display: flex;
}
.yoltarifiText {
	margin-top: 54px;
}
.yoltarifiIcon {
	margin-left: -87px;
}