/*
Animate.css - http: //daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.appear-animation {
	opacity: 0;
}

.appear-animation-visible {
	opacity: 1;
}

.animated,
.appear-animation {
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpMd {
	0% {
		opacity: 0;
		-webkit-transform: translateY(45px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUpMd {
	0% {
		opacity: 0;
		-moz-transform: translateY(45px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUpMd {
	0% {
		opacity: 0;
		-o-transform: translateY(45px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUpMd {
	0% {
		opacity: 0;
		transform: translateY(45px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUpMd {
	-webkit-animation-name: fadeInUpMd;
	-moz-animation-name: fadeInUpMd;
	-o-animation-name: fadeInUpMd;
	animation-name: fadeInUpMd;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	-moz-animation-name: fadeInRight;
	-o-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateIn {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateIn {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		transform-origin: center center;
		transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	-moz-animation-name: rotateIn;
	-o-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInUpLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInUpLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	-moz-animation-name: rotateInUpLeft;
	-o-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInDownLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInDownLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	-moz-animation-name: rotateInDownLeft;
	-o-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInUpRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInUpRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	-moz-animation-name: rotateInUpRight;
	-o-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInDownRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInDownRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	-moz-animation-name: rotateInDownRight;
	-o-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes moveInUp {
	0% {
		-webkit-transform: translateY(20px);
	}

	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes moveInUp {
	0% {
		-moz-transform: translateY(20px);
	}

	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes moveInUp {
	0% {
		-o-transform: translateY(20px);
	}

	100% {
		-o-transform: translateY(0);
	}
}

@keyframes moveInUp {
	0% {
		transform: translateY(20px);
	}

	100% {
		transform: translateY(0);
	}
}

.moveInUp {
	-webkit-animation-name: moveInUp;
	-moz-animation-name: moveInUp;
	-o-animation-name: moveInUp;
	animation-name: moveInUp;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 25px auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.85; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #008ee2; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #008ee2; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
    
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}


html {
	direction: ltr;
}
/* body {
	background-color: white;
	color: #333;
  font-family: 'Lato', sans-serif;
	font-size: 18px;
	line-height: 1.4;
  margin: 0 auto;
  min-width: 320px;
  max-width: 1920px;
} */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #008ee2;
	font-weight: 600;
	margin: 0;
  line-height: 1.2;
}
h1 {
	font-size: 60px;
	margin-bottom: 20px;
}
h2 {
  text-align: center;
	font-size: 46px;
  padding-bottom: 30px;
	margin-bottom: 30px;
  position: relative;
}
/* h2:after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  background-color: #008ee2;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -55px;
} */
.block-adn:after {
  display: none;
}
h3 {
  text-align: center;
	font-size: 34px;
  color: #666666;
	margin-bottom: 20px;
}
h4 {
	font-size: 26px;
  color: #333;
	margin-bottom: 30px;
}
h5 {
	font-size: 24px;
  color: #0053a9;
	margin-bottom: 20px;
}
h6 {
  color: #333;
	font-size: 20px;
	margin-bottom: 15px;
}
.header-txt-thin {
  font-weight: 300;
}
.sub-header {
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.sub-header.sub-header-big {
  font-size: 28px;
  margin-bottom: 80px;
}
p {
	margin: 0 0 20px;
}
a {
  outline: none !important;
  color: #0053a9;
}
a:hover, a:focus {
	color: #008ee2;
}
a[href^=tel], a[href^=mailto] {
  pointer-events: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}
img {
  max-width: 100%;
}
textarea {
	resize: none;
}
textarea.form-control {
  height: 70px;
}
select {
	outline: none;
}
p:last-child,
ul:last-child,
li:last-child,
.form-group:last-child {
  margin-bottom: 0;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  -webkit-appearance: none;
}

section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.btn {
  outline: none !important;
  display: inline-block;
  padding: 20px 30px;
  font-size: 22px;
  font-weight: 700;
  color: #0053a9;
  text-align: center;
  border: none;
  background-color: #f1f1f1;
  border-radius: 7px;
	-webkit-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
}
.btn, .btn:focus {
  box-shadow: 0 4px 0 0 #b6aba9;
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.btn:hover, .btn:focus:hover {
	color: #0053a9;
  background-color: #fdfdfd;
}
.btn:active, .btn:focus {
	background-color: #f1f1f1;
	color: #0053a9;
}

.btn:active {
  box-shadow: 0 2px 0 0 #b6aba9;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
}
.btn[disabled] {
	border-color: white;
	background-color: white;
	color: #CCC;
}
.btn-blue {
  color: #f1f1f1;
  background-color: #0053a9;
}
.btn-blue:hover, .btn-blue:focus:hover {
  color: #fdfdfd;
  background-color: #008ee2;
}
.btn-blue:active, .btn-blue:focus {
  color: #fdfdfd;
  background-color: #0053a9;
}
.btn-blue, .btn-blue:focus {
  box-shadow: 0 4px 0 0 #193248;
}
.btn-blue:active {
  box-shadow: 0 2px 0 0 #193248;
}
.btn-sm {
  padding: 15px 30px;
}

.form-group:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group.fg-hidden {
  display: none;
}
label {
  color: #fff;
  font-size: 18px;
}
.form-control {
  display: block;
  width: 100%;
  height: 55px;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  background-color: rgba(255, 255, 255, 0.75);
  border: none;
  border-radius: 7px;
  box-shadow: none;
  -webkit-transition: border-color 0.2s ease-in, box-shadow 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, box-shadow 0.2s ease-in, background-color 0.2s ease-in;
}
.form-control:focus {
	box-shadow: none;
	border: none;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}
.form-control.error {
	border-color: #a94442;
	box-shadow: none;
}
.form-control.error:focus {
	border-color: #843534;
	box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.3);
}

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
}
.form-control:-moz-placeholder {
  opacity: 1;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
}
.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
}
.fields-thin input.form-control {
  height: 45px;
}
.fields-bordered .form-control {
  border: 1px solid #ccc;
}
.fields-bordered .form-control:focus {
  border-color: #008ee2;
  box-shadow: none;
}

.select2-container--default .select2-selection--single {
  height: 55px;
  border-radius: 7px;
  border: 1px solid #ccc;
  padding-left: 12px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.75);
  filter: none;
  background-image: none;
  outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 55px;
  padding-left: 0;
  padding-right: 30px;
  color: #333;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #737373;
  font-weight: 400;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 55px;
  top: 0;
  right: 0px;
  width: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
  top: -1px;
  position: relative;
}
.select2-container {
  font-size: 18px;
  font-weight: 400;
}

.fields-thin .select2-container--default .select2-selection--single {
  height: 45px;
}
.fields-thin .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
}
.fields-thin .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
}
.fields-bordered .select2-container--default .select2-selection--single {
  border: 1px solid #ccc;
}


label.error {
	color: #bf0000;
	font-size: 14px;
	line-height: 1;
	padding: 3px 0 0;
  margin: 0;
}
.form-tile-wrap label.error {
	color: #ffa5a5;
}

html:not(.mob_tab):not(.ms-b).lightbox-opened #header, html:not(.mob_tab):not(.ms-b).lightbox-opened.sticky-header-active .header-body {
  padding-right: 17px;
}
html:not(.mob_tab):not(.ms-b).opera.lightbox-opened #header, html:not(.mob_tab):not(.ms-b).opera.lightbox-opened.sticky-header-active .header-body {
  padding-right: 15px;
}
html:not(.mob_tab):not(.ms-b).ms-edge.lightbox-opened #header, html:not(.mob_tab):not(.ms-b).ms-edge.lightbox-opened.sticky-header-active .header-body {
  padding-right: 12px;
}
html:not(.mob_tab):not(.ms-b).lightbox-opened .scroll-up {
  right: 27px;
}
html:not(.mob_tab):not(.ms-b).opera.lightbox-opened .scroll-up {
  right: 25px;
}
html:not(.mob_tab):not(.ms-b).ms-edge.lightbox-opened .scroll-up {
  right: 22px;
}
html.ms-b {
  margin-right: 0 !important;
}

.scroll-up {
  display: block;
	bottom: 0px;
  right: 10px;
  width: 50px;
  height: 50px;
	color: #FFF;
  background: #404040;
	opacity: 0;
  line-height: 53px;
  font-size: 16px;
	position: fixed;
	text-align: center;
	text-decoration: none;
	z-index: 1040;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.scroll-up:hover, .scroll-up:active, .scroll-up:focus {
  color: #fff;
}
.scroll-up.visible:hover {
	opacity: 1;
}
.scroll-up.visible {
	opacity: 0.75;
}

#header {
  min-height: 90px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  line-height: 1;
}
.header-body {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  box-shadow: 0 1px 1px 0px rgba(0,0,0,0);
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
  -webkit-transition: background-color 0.2s ease-in, box-shadow 0.2s ease-in, border-bottom 0.2s ease-in;
  transition: background-color 0.2s ease-in, box-shadow 0.2s ease-in, border-bottom 0.2s ease-in;
}
.sticky-header-active .header-body {
  background: #f5f5f5;
  box-shadow: 0 3px 5px 0px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(245, 245, 245, 0);
}
.header-container {
  display: table;
}
.header-row {
  display: table-row;
}
.header-container, .header-row {
  height: 90px;
  -webkit-transition: height 0.2s ease-in;
  transition: height 0.2s ease-in;
}
.sticky-header-active .header-container, .sticky-header-active .header-row {
  height: 65px;
}
.header-column {
  display: table-cell;
  vertical-align: middle;
}
.hr-menu .header-column:first-child, .hr-menu .header-column:last-child {
  width: 250px;
}
.hc-logo a {
  display: inline-block;
  position: relative;
}
.hc-logo img {
  width: 225px;
  height: auto;
  -webkit-transition: opacity 0.1s ease-in;
  transition: opacity 0.1s ease-in;
}
.hc-logo .dark-logo {
  width: 225px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.sticky-header-active .hc-logo img {
  opacity: 0;
}
.sticky-header-active .hc-logo img.dark-logo {
  opacity: 1;
}
.hr-menu .header-column:last-child {
  text-align: right;
}
.header-btn-nav {
  display: none;
  outline: none !important;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  top: 3px;
  width: 42px;
  height: 42px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-btn-nav span {
  position: absolute;
  display: block;
  width: 60%;
  top: 50%;
  margin-top: -1px;
  left: 20%;
  height: 2px;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sticky-header-active .header-btn-nav span {
  background: rgba(51, 51, 51, 1);
}
.header-btn-nav span:before, .header-btn-nav span:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sticky-header-active .header-btn-nav span:before, .sticky-header-active .header-btn-nav span:after {
  background: #333;
}
.sticky-header-active .header-btn-nav-active.header-btn-nav span:before, .sticky-header-active .header-btn-nav-active.header-btn-nav span:after {
  background: #fff;
}
.header-btn-nav span:before {
  top: -5px;
}
.header-btn-nav span:after {
  bottom: -5px;
}
.header-btn-nav-active.header-btn-nav span {
  background: rgba(255, 255, 255, 0);
}
.sticky-header-active .header-btn-nav-active.header-btn-nav span {
  background: rgba(51, 51, 51, 0);
}
.header-btn-nav.header-btn-nav-active span:before {
  -webkit-transform: translate(0, 5px) rotate(45deg);
  transform: translate(0, 5px) rotate(45deg);
}
.header-btn-nav.header-btn-nav-active span:after {
  -webkit-transform: translate(0, -5px) rotate(-45deg);
  transform: translate(0, -5px) rotate(-45deg);
}
.header-nav:after {
  display: table;
  content: " ";
}
.navbar-nav.menu-nav {
  margin: 0 auto;
  float: none;
}
.menu-nav {
  text-align: center;
}
.menu-nav li {
  float: none;
  display: inline-block;
}
.menu-nav li:not(:last-child) {
  margin-right: 25px;
}
.menu-nav li a {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  color: #fefefe;
  font-size: 13px;
  border-radius: 3px;
  line-height: 1;
  font-weight: 600;
  padding: 12px 12px 10px;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
.menu-nav li a:focus {
  background-color: transparent;
}
.menu-nav li a:hover {
  background-color: rgba(255,255,255,0.1);
}
.sticky-header-active .menu-nav li a {
  color: #4b4f56;
}
.sticky-header-active .menu-nav li a:hover {
  background-color: rgba(255,255,255,1);
}
.hc-phone a {
  font-size: 16px;
  color: #fefefe;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
.sticky-header-active .hc-phone a {
  color: #4b4f56;
}
.hc-phone a .glyphicon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
}
.hcp-txt {
  display: none;
}

.hero-section {
  padding: 0;
  background-image: url(../img/hero-bg.jpg);
  position: relative;
}
.hero-section:before, 
.hero-section:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.hero-section:before {
  height: 540px;
  top: 0;
  background-image: url(../img/gradient-bg-top.png);
}
.hero-section:after {
  height: 250px;
  bottom: 0;
  background-image: url(../img/gradient-bg-bottom.png);
}
.hero-section > .container {
  position: relative;
  z-index: 10;
}
.hero-content-wrap {
  margin: 0 auto;
  padding: 120px 0;
  max-width: 1200px;
  height: 100vh;
  min-height: 850px;
  max-height: 1200px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.hero-bottom-info {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 0;
  padding-bottom: 35px;
  font-size: 22px;
  color: #fcfbfb;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.hero-bottom-info img {
  height: 45px;
  width: auto;
}
.hero-bottom-info > div:not(:last-child) {
  margin-right: 50px;
}
.card-block {
  width: 450px;
  height: 600px;
  padding: 45px 45px 55px;
  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
  border-radius: 10px;
  background: #0252AB;
  /*background: #347D9B;
  background: -webkit-linear-gradient(top,  rgba(64,150,238,1) 0%,rgba(52,125,155,1) 65%);
  background: linear-gradient(to bottom,  rgba(64,150,238,1) 0%,rgba(52,125,155,1) 65%);*/
}
/* .cb-content {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cfw-info {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.cfi-item {
  font-size: 54px;
  line-height: 1;
  color: #fff;
  margin-bottom: 5px;
}
.cfi-item.cfi-big {
  font-size: 210px;
  font-weight: 900;
}
.cfi-big span {
  font-size: 150px;
}
.cfi-item.cfi-bold {
  font-weight: 900;
  line-height: 1.05;
}
.btn-wrap {
  text-align: center;
}
.card-block .btn-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.card-block .btn-wrap .btn {
  width: 100%;
}
.card-form {
  position: relative;
  width: 100%;
  height: 100%;
  right: 100%;
  opacity: 0;
  visibility: hidden;
}
.cf-fields-wrap .form-group:last-child {
  margin-bottom: 50px;
}
.cf-desc {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 15px;
}
.contact-form .btn {
  width: 100%;
}
.card-info-section {
  padding-bottom: 0;
}
.ci-desc {
  background-color: #fff;
  color: #666666;
  padding-bottom: 30px;
}
.cfw-info {
  -webkit-transition: opacity 200ms ease-in, top 300ms ease-in;
  transition: opacity 200ms ease-in, top 300ms ease-in;
} */
.card-block .btn-wrap {
  -webkit-transition: opacity 200ms ease-in, bottom 200ms ease-in;
  transition: opacity 200ms ease-in, bottom 200ms ease-in;
}
.card-form {
  -webkit-transition: opacity 300ms ease-in 200ms, right 300ms ease-out 200ms;
  transition: opacity 300ms ease-in 200ms, right 300ms ease-out 200ms;
}
.cb-form-showed .cfw-info {
  top: -390px;
  opacity: 0;
}
.cb-form-showed.card-block .btn-wrap {
  bottom: -80px;
  opacity: 0;
}
.cb-form-showed .card-form {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.arrow-container {
  position: relative;
}
.arrow-container > * {
  position: relative;
  z-index: 2;
}
.arrow-container:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin-left: -35px;
  z-index: 1;
  width: 70px;
  height: 70px;
  background-color: inherit;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ci-advantages {
  padding: 125px 0 0;
  background: rgb(239,239,239);
  background: -webkit-linear-gradient(left,  rgba(239,239,239,1) 0%,rgba(239,239,239,1) 50%,rgba(247,247,247,1) 50%,rgba(247,247,247,1) 100%);
  background: linear-gradient(to right,  rgba(239,239,239,1) 0%,rgba(239,239,239,1) 50%,rgba(247,247,247,1) 50%,rgba(247,247,247,1) 100%);
}
.cia-list {
  position: relative;
  margin-bottom: 80px;
}
.cia-list h4 {
  margin-bottom: 60px;
}
.cia-list > div:first-child h4 {
  text-align: right;
}
.cia-list > div:nth-child(2) {
  float: right;
}
.graph-list {
  opacity: 1 !important;
}
.graph-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  height: 30px;
  padding: 5px 0 0 55px;
  color: #465776;
  position: relative;
  margin-bottom: 50px;
  -webkit-transition: color 300ms ease-in 3000ms;
  transition: color 300ms ease-in 3000ms;
}
.graph-list-right.graph-list li {
  padding: 5px 55px 0 0;
  text-align: right;
  -webkit-transition: color 300ms ease-in 2100ms;
  transition: color 300ms ease-in 2100ms;
}
.graph-list li:before, .graph-list li:after {
  content: "";
  background-color: #465776;
  display: block;
  width: 6px;
  position: absolute;
  top: 28px;
  left: 11px;
}
.graph-list-right.graph-list li:before, 
.graph-list-right.graph-list li:after {
  left: auto;
  right: 11px;
}
.graph-list li:before {
  height: 52px;
}
.graph-list li:after {
  height: 0px;
  background-color: #008ee2;
  -webkit-transition: height 600ms ease-in 3000ms;
  transition: height 600ms ease-in 3000ms;
}
.graph-list li:last-child:before, 
.graph-list li:last-child:after {
  display: none;
}
.graph-list.graph-list-right li:nth-child(3):after {
  display: none;
}
.gl-dot-item {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: block;
  width: 28px;
  height: 28px;
  background-color: #465776;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  -webkit-transition: box-shadow 300ms ease-in 3000ms;
  transition: box-shadow 300ms ease-in 3000ms;
}
.graph-list-right .gl-dot-item {
  left: auto;
  right: 0;
}
.graph-list-right li:nth-child(3) .gl-dot-item {
  -webkit-transition: box-shadow 300ms ease-in 2100ms;
  transition: box-shadow 300ms ease-in 2100ms;
}
.gl-dot-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  background-color: #008ee2;
}
.graph-list.graph-list-right li:last-child .gl-dot-item:before {
  display: none;
}

.graphListAnimate.graph-list.graph-list-right li:nth-child(3) .gl-dot-item,
.graphListAnimate.graph-list:not(.graph-list-right) li:last-child .gl-dot-item {
  box-shadow: 0 0 0 6px #008ee2;
}
.graphListAnimate.graph-list li .gl-dot-item:before {
  height: 100%;
}
.graphListAnimate.graph-list:not(.graph-list-right) li:last-child .gl-dot-item:before,
.graphListAnimate.graph-list.graph-list-right li:nth-child(3) .gl-dot-item:before {
  background-color: #efefef;
}

.graphListAnimate.graph-list.graph-list-right li:not(:nth-child(3)) .gl-dot-item:before,
.graphListAnimate.graph-list:not(.graph-list-right) li:not(:last-child) .gl-dot-item:before {
  opacity: 0;
}
.graphListAnimate.graph-list li:after {
  height: 52px;
  opacity: 0;
}
.graphListAnimate.graph-list.graph-list-right li:nth-child(3),
.graphListAnimate.graph-list:not(.graph-list-right) li:last-child {
  color: #008ee2;
}

.graphListAnimate.graph-list li:nth-child(1) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 0ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
  transition: height 300ms ease-in 0ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list li:nth-child(1):after {
  -webkit-transition: height 600ms ease-in 300ms, opacity 300ms ease-in 3300ms;
  transition: height 600ms ease-in 300ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list.graph-list-right li:nth-child(1) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 0ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 2400ms;
  transition: height 300ms ease-in 0ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 2400ms;
}
.graphListAnimate.graph-list.graph-list-right li:nth-child(1):after {
  -webkit-transition: height 600ms ease-in 300ms, opacity 300ms ease-in 2400ms;
  transition: height 600ms ease-in 300ms, opacity 300ms ease-in 2400ms;
}

.graphListAnimate.graph-list li:nth-child(2) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 900ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
  transition: height 300ms ease-in 900ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list li:nth-child(2):after {
  -webkit-transition: height 600ms ease-in 1200ms, opacity 300ms ease-in 3300ms;
  transition: height 600ms ease-in 1200ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list.graph-list-right li:nth-child(2) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 900ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 2400ms;
  transition: height 300ms ease-in 900ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 2400ms;
}
.graphListAnimate.graph-list.graph-list-right li:nth-child(2):after {
  -webkit-transition: height 600ms ease-in 1200ms, opacity 300ms ease-in 2400ms;
  transition: height 600ms ease-in 1200ms, opacity 300ms ease-in 2400ms;
}

.graphListAnimate.graph-list li:nth-child(3) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 1800ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
  transition: height 300ms ease-in 1800ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list li:nth-child(3):after {
  -webkit-transition: height 600ms ease-in 2100ms, opacity 300ms ease-in 3300ms;
  transition: height 600ms ease-in 2100ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list.graph-list-right li:nth-child(3) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 1800ms, background-color 150ms ease-in 2400ms, opacity 300ms ease-in 2400ms;
  transition: height 300ms ease-in 1800ms, background-color 150ms ease-in 2400ms, opacity 300ms ease-in 2400ms;
}

.graphListAnimate.graph-list li:nth-child(4) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 2700ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
  transition: height 300ms ease-in 2700ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
}
.graphListAnimate.graph-list li:nth-child(4):after {
  -webkit-transition: height 600ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
  transition: height 600ms ease-in 3000ms, opacity 300ms ease-in 3300ms;
}
/* gl-big */
.gl-big {
  max-width: 880px;
  margin: 0 auto;
}
.graph-list.gl-big li {
  font-size: 34px;
  line-height: 1;
  height: 170px;
  padding: 12px 0 0 100px;
  margin-bottom: 100px;
  -webkit-transition: color 300ms ease-in 2700ms;
  transition: color 300ms ease-in 2700ms;
}
.graph-list.gl-big li br {
  display: none;
}
.graph-list.gl-big li:last-child {
  height: 120px;
}
.graph-list.gl-big li:before, .graph-list.gl-big li:after {
  width: 12px;
  top: 60px;
  left: 24px;
}
.graph-list.gl-big li:before {
  height: 210px;
}
.gl-big .gl-dot-item {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 62px;
  color: #fff;
  -webkit-transition: box-shadow 300ms ease-in 2700ms;
  transition: box-shadow 300ms ease-in 2700ms;
}
.gl-big .gl-dot-item:before {
  overflow: hidden;
}
.graphListAnimate.graph-list.gl-big li:last-child .gl-dot-item {
  box-shadow: 0 0 0 9px #008ee2;
}
.graphListAnimate.graph-list.gl-big li:last-child .gl-dot-item:before {
  color: #333;
}
.gl-big .gl-subinfo {
  left: 100px;
  top: 60px;
  font-size: 24px;
  font-weight: 400;
  max-width: 700px;
}
.graphListAnimate.graph-list.gl-big li:after {
  height: 210px;
  opacity: 0;
}
.graphListAnimate.graph-list.gl-big li:nth-child(1) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 0ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3000ms;
  transition: height 300ms ease-in 0ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3000ms;
}
.graphListAnimate.graph-list.gl-big li:nth-child(1):after {
  -webkit-transition: height 900ms ease-in 300ms, opacity 300ms ease-in 3000ms;
  transition: height 900ms ease-in 300ms, opacity 300ms ease-in 3000ms;
}
.graphListAnimate.graph-list.gl-big li:nth-child(2) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 1200ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3000ms;
  transition: height 300ms ease-in 1200ms, background-color 150ms ease-in 3000ms, opacity 300ms ease-in 3000ms;
}
.graphListAnimate.graph-list.gl-big li:nth-child(2):after {
  -webkit-transition: height 900ms ease-in 1500ms, opacity 300ms ease-in 3000ms;
  transition: height 900ms ease-in 1500ms, opacity 300ms ease-in 3000ms;
}
.graphListAnimate.graph-list.gl-big li:nth-child(3) .gl-dot-item:before {
  -webkit-transition: height 300ms ease-in 2400ms, background-color 150ms ease-in 3000ms, color 250ms ease-in 3000ms, opacity 300ms ease-in 3000ms;
  transition: height 300ms ease-in 2400ms, background-color 150ms ease-in 3000ms, color 250ms ease-in 3000ms, opacity 300ms ease-in 3000ms;
}

.gl-num li:nth-child(1) .gl-dot-item:before {
  content: "1";
}
.gl-num li:nth-child(2) .gl-dot-item:before {
  content: "2";
}
.gl-num li:nth-child(3) .gl-dot-item:before {
  content: "3";
}

/* gl-big end */

.gl-subinfo {
  position: absolute;
  left: 55px;
  top: 27px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 300;
  color: #333333;
}
.gl-subinfo strong {
  font-weight: 700;
}
.graph-list-right .gl-subinfo {
  left: auto;
  right: 55px;
}
.gl-subinfo .gls-wrap {
  display: block;
  margin-bottom: 15px;
}
.gl-subinfo a {
  font-weight: 400;
}

.cia-img {
  width: 270px;
  height: 435px;
  background-image: url(../images/card-bg.jpg);
  background-position: center;
  background-size: cover;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -135px;
  box-shadow: 0 0 43px rgba(0,0,0,0.45);
  border-radius: 10px;
  overflow: hidden;
}
.cia-img-hid {
  width: 380px;
  height: 236px;
  background-image: url(../images/card-bg-hid.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 43px rgba(0,0,0,0.45);
  border-radius: 10px;
  overflow: hidden;
  margin: 25px auto 0;
  display: none;
}

.cia-letters {
  position: relative;
}
.cial-header {
  text-align: center;
  position: absolute;
  width: 180px;
  top: 55px;
  left: 50%;
  margin-left: -90px;
}
.cia-letters > div:nth-child(2), .cia-letters > div:last-child {
  overflow: hidden;
  padding: 20px 25px 0;
  height: 200px;
}
.cia-letters > div:last-child {
  float: right;
}
.cia-letters > div:nth-child(2) .cia-letter-item {
  float: right;
}
.cia-letter-item {
  display: block;
  width: 350px;
  height: 180px;
  background-position: top center;
  background-size: cover;
  opacity: 0.8;
  box-shadow: 0 0 15px rgba(0,0,0,0.27);
  position: relative;
  bottom: -10px;
  -webkit-transition: bottom 0.2s ease-in, box-shadow 0.2s ease-in, opacity 0.2s ease-in;
  transition: bottom 0.2s ease-in, box-shadow 0.2s ease-in, opacity 0.2s ease-in;
}
.cia-letter-item:hover {
  opacity: 1;
  bottom: 0;
  box-shadow: 0 0 30px rgba(0,0,0,0.45);
}
.calculator-section {
  background-color: #0053a9;
}
.calculator-section h2 {
  color: #fff;
}
.calculator-section h2, .calculator-section .sub-header {
  color: #fff;
}

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 



	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 

	opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;

	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

/*! nouislider - 9.1.0 - 2016-12-10 16:00:32 */


/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
-webkit-touch-callout: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-user-select: none;
-ms-touch-action: none;
	touch-action: none;
-ms-user-select: none;
-moz-user-select: none;
	user-select: none;
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-target {
	position: relative;
	direction: ltr;
}
.noUi-base {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1; /* Fix 401 */
}
.noUi-connect {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
}
.noUi-origin {
	position: absolute;
	height: 0;
	width: 0;
}
.noUi-handle {
	position: relative;
	z-index: 1;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
-webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
	transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,
.noUi-handle {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
	height: 10px;
}
.noUi-horizontal .noUi-handle {
	width: 38px;
	height: 38px;
	left: -19px;
	top: -14px;
  cursor: pointer;
}
.noUi-vertical {
	width: 18px;
}
.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px;
}

/* Styling;
 */
.noUi-target {
	background: #fafafa;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.noUi-target.noUi-state-tap {
  background: #f1f1f1;
}
.noUi-connect {
	background: #b6aba9;
  -webkit-transition: background 450ms;
	transition: background 450ms;
}

/* Handles and cursors;
 */
.noUi-draggable {
	cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: ns-resize;
}
.noUi-handle {
	border: 1px solid #fff;
	border-radius: 50%;
	background: #FFF;
	cursor: default;
  box-shadow: 0 0 12px rgba(0,0,0,0.7);
  -webkit-transition: background 0.15s ease-in, box-shadow 0.15s ease-in;
  transition: background 0.15s ease-in, box-shadow 0.15s ease-in;
}
.noUi-active {
  background: #f1f1f1;
	box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.noUi-handle:after {
	left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}
.noUi-vertical .noUi-handle:after {
	top: 17px;
}

/* Disabled state;
 */

[disabled] .noUi-connect {
	background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
	cursor: not-allowed;
}


/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-pips {
	position: absolute;
	color: #999;
}

/* Values;
 *
 */
.noUi-value {
	position: absolute;
	text-align: center;
  white-space: nowrap;
  color: #fdfdfd;
}
.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
	position: absolute;
	background: #CCC;
}
.noUi-marker-sub {
	background: #AAA;
}
.noUi-marker-large {
	background: #fafafa;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
	height: 80px;
	top: 100%;
	left: 1px;
	width: calc(100% - 2px);
}
.noUi-value-horizontal {
	-webkit-transform: translate3d(-50%,25px,0);
	transform: translate3d(-50%,25px,0);
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
	height: 12px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}
.noUi-value-vertical {
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
	padding-left: 25px;
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}

.noUi-tooltip {
	display: block;
	position: absolute;
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #fff;
	color: #000;
	padding: 5px;
	text-align: center;
}
.noUi-horizontal .noUi-tooltip {
-webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.calculator-wrap {
  margin: 90px auto;
}
.slider-input-field {
  text-align: center;
  margin-bottom: 35px;
}
.interactive-val {
  outline: none !important;
  font-family: inherit;
  padding: 6px 12px;
  height: 45px;
  width: 190px;
  border-radius: 4px;
  font-size: 24px;
  line-height: 1.42857143;
  background-color: transparent;
  text-align: center;
  color: #fdfdfd;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0;
  -webkit-transition: background 0.1s ease-in, color 0.1s ease-in;
  transition: background 0.1s ease-in, color 0.1s ease-in;
}
.interactive-val:focus {
  background-color: rgba(255,255,255,0.95);
  color: #008ee2;
}
.calculator-result {
  text-align: center;
}
.calculator-result > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
}
.cr-currency {
  font-size: 70px;
  top: -30px;
}
.cr-value {
  font-size: 140px;
  font-weight: 900;
}
.cr-desc {
  font-size: 50px;
  top: 40px;
}
.cw-item {
  min-height: 200px;
}
.cw-item-desc {
  text-align: center;
  color: #fdfdfd;
  font-size: 26px;
  margin-bottom: 5px;
}
.cwid-small {
  color: rgba(253, 253, 253, 0.5);
  font-size: 11px !important;
  margin: 0 !important;
  text-align: center;
}

.img-info-wrap {
  text-align: center;
}
.img-info-wrap img {
  width: auto;
  height: 160px;
  margin-bottom: 20px;
}
.img-info-wrap p {
  line-height: 1.6;
}
.img-info-wrap a {
  font-size: 22px;
}

.bg-img-info {
  color: #fff;
  font-size: 24px;
  padding: 170px 0;
}
.bg-img-info h3 {
  color: #fff;
  text-align: left;
}
.bg-img-info .container > .row > div {
  float: right;
}

.tiles-row-block {
  background-color: #efefef;
  margin-bottom: -50px;
}
.tiles-row-block > .container {
  position: relative;
  top: -80px;
}
.tiles-row-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}
.tiles-row-wrap h4 {
  margin-bottom: 0;
  color: #fff;
}
.tiles-row-wrap > div {
  height: 370px;
  width: 25%;
  padding: 60px 40px 40px;
  background-color: #fff;
  display: -webkit-flex;
  display: flex;
}
.tiles-row-wrap > div:first-child {
  background-color: #005ec7;
}
.tiles-row-wrap > div:nth-child(2), .tiles-row-wrap > div:nth-child(3) {
  border-right: 1px solid #ccc;
}

.contacts-section, .contact-info-section {
  background-color: #efefef;
}

.page-hero {
  padding: 270px 0 190px;
  background-image: url(../img/bg-page-hero.jpg);
}
.page-hero h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.section-triangle-list {
  background: -webkit-linear-gradient(left, rgba(247,247,247,1) 0%,rgba(247,247,247,1) 50%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to right, rgba(247,247,247,1) 0%,rgba(247,247,247,1) 50%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
}
.stl-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.stl-item:not(:last-child) {
  margin-bottom: 120px;
}
.stl-item > div {
  width: 50%;
  padding: 0 80px;
  position: relative;
}
.stl-item > div:first-child {
  padding: 0 45px 0 0;
}
.stl-item > div:last-child {
  padding: 0 0 0 80px;
  font-size: 21px;
  color: #333333;
}
.stl-item > div:first-child:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -35px;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-right: 35px solid transparent;
  border-left: 35px solid #f7f7f7;
}
.stl-item h4 {
  color: #0053a9;
  margin: 0;
}

.hwi-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.hwi-item:not(:last-child) {
  margin-bottom: 100px;
}
.hwi-item > div {
  width: 50%;
}
.hwi-img {
  background-position: center;
  background-size: cover;
  -webkit-align-self: stretch;
  align-self: stretch;
  height: 460px;
}
.hwi-info {
  padding: 0 0 0 80px;
  font-size: 24px;
}
.hwi-info h3 {
  text-align: left;
}
.hwi-item:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.hwi-item:nth-child(even) .hwi-info {
  padding: 0 80px 0 0;
  text-align: right;
}
.hwi-item:nth-child(even) .hwi-info h3 {
  text-align: right
}

.icon-info-line {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 20px;
  color: #465776;
  font-weight: 700;
}
.icon-info-line:not(:last-child) {
  margin-bottom: 20px;
}
.icon-info-line > div:first-child {
  width: 110px;
}
.iil-img {
  display: block;
  width: 58px;
  height: 75px;
  background-size: 58px auto;
  background-image: url(../img/icons.png);
}
.iil-phone {
  background-position: 0px 0px;
}
.iil-email {
  background-position: 0px -75px;
}
.iil-map {
  background-position: 0px -150px;
}
.iil-social {
  background-position: 0px -225px;
}
.social-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-size: 35px auto;
  background-image: url(../img/icons-social.png);
  opacity: 0.8;
}
.social-icon:hover {
  opacity: 1;
}
.social-icon:not(:last-child) {
  margin-right: 15px;
}
.si-fb {
   background-position: 0px 0px;
}
.si-in {
   background-position: 0px -35px;
}
.contact-info-section h3 {
  text-align: left;
  margin-bottom: 50px;
}
.form-tile-wrap {
  background-color: #0252AB; 
  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 35px 35px 45px;
}
.form-tile-wrap h4 {
  color: #fff;
}
.form-tile-wrap .fg-btn {
  margin-top: 25px;
}
.form-tile-wrap .fg-btn .btn {
  width: 100%;
}
.tr-form .fg-btn {
  padding-top: 10px;
}
.tr-form .fg-btn .btn {
  width: 100%;
}
.center-form .fg-btn .btn {
  width: 100%;
}
.cis-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
#googlemaps {
  height: 500px;
  background-color: #94a9b5;
}

.dotted-list-section {
  padding: 0;
}
.bg-grey {
  background-color: #efefef;
}
.dl-wrap {
  padding: 100px 0;
}
.dotted-list {
  max-width: 880px;
  margin: 0 auto;
}
.dotted-list li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  color: #465776;
}
.dotted-list li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #465776;
  border-radius: 50%;
}
.dotted-list li:not(:last-child) {
  margin-bottom: 25px;
}

.cta-block {
  background-color: #0252AB;
  padding: 45px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cta-block > div {
  padding: 0 15px;
}
.cta-block > div:not(:last-child) { 
  margin-right: 30px;
}
.cta-block h3 {
  color: #fdfdfd;
  text-align: left;
}
.cta-block h3:last-child {
  margin-bottom: 0;
}

.img-head-block {
  background-color: #f7f7f7;
}
.img-head-block .row > div:first-child {
  padding-right: 45px;
}
.img-head-block .row > div:last-child {
  padding-left: 45px;
}
.head-logo {
  margin-bottom: 20px;
}
.head-logo img {
  max-height: 45px;
  width: auto;
}
.dotted-list-section .left-right-text,
.dotted-list-section .img-head-block {
  margin-bottom: 50px;
}
.left-right-text,
.img-head-block  {
  padding: 80px 0;
}
.lrt-wrap > div {
  padding: 0 50px;
}
.lrt-wrap p:last-of-type {
  margin-bottom: 35px;
}
.lrt-wrap h3 {
  color: #465776;
}
.lrt-wrap > div:first-child {
  text-align: right;
}
.lrt-wrap > div:first-child h3 {
  text-align: right;
}
.lrt-wrap > div:last-child h3 {
  text-align: left;
}
.vertical-separate-bg {
  background: rgb(239,239,239);
  background: -webkit-linear-gradient(left, rgba(239,239,239,1) 0%,rgba(239,239,239,1) 50%,rgba(247,247,247,1) 50%,rgba(247,247,247,1) 100%);
  background: linear-gradient(to right, rgba(239,239,239,1) 0%,rgba(239,239,239,1) 50%,rgba(247,247,247,1) 50%,rgba(247,247,247,1) 100%);
}

.section-triangle-block {
  background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 55%,rgba(247,247,247,1) 55%,rgba(247,247,247,1) 100%);
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 55%,rgba(247,247,247,1) 55%,rgba(247,247,247,1) 100%);
}
.stb-item {
  display: -webkit-flex;
  display: flex;
}
.stb-item > div {
  padding: 0 75px;
  position: relative;
}
.stb-item > div:first-child {
  width: 55%;
}
.stb-item > div:last-child {
  width: 45%;
}
.stb-item > div:first-child:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -20px;
  left: 100%;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid transparent;
  border-left: 40px solid #fff;
}
.stb-item > div:first-child h4 {
  color: #465776;
}

.comparison-lighbox {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.cl-header {
  position: relative;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.clh-center {
  width: 55px;
  height: 55px;
  line-height: 59px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
  color: #fdfdfd;
  background-color: #008ee2;
}
.clh-aside {
  position: absolute;
  top: 10px;
  font-size: 22px;
  width: 350px;
  font-weight: 600;
}
.clh-aside span {
  font-weight: 300;
}
.clh-left {
  right: 50%;
  text-align: right;
  margin-right: 55px;
}
.clh-right {
  left: 50%;
  margin-left: 55px;
}
.cl-letters:after {
  content: "";
  display: block;
  clear: both;
}
.cl-letters img {
  display: block;
  float: left;
  width: calc(50% - 22px);
  height: auto;
  box-shadow: 0 0 35px rgba(0,0,0,0.5);
}
.cl-letters img:first-child {
  margin-right: 44px;
}

.mfp-bg.my-mfp-slide-bottom {
  background-color: #dfe0e1;
}
.my-mfp-slide-bottom.mfp-ready.mfp-bg.my-mfp-slide-bottom {
  opacity: 0.9;
}
.my-mfp-slide-bottom.mfp-ready.mfp-bg.my-mfp-slide-bottom.mfp-removing {
  opacity: 0;
}
.my-mfp-slide-bottom button.mfp-close {
  color: #333;
  font-size: 35px;
}

#footer {
  background-color: #202020;
  font-size: 16px;
  padding: 20px 0;
  color: #ccc;
}
.footer-content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.footer-content ul {
  text-align: right;
}
.footer-content ul li {
  display: inline-block;
  line-height: 1;
}
.footer-content ul li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #777777;
}
#footer a {
  color: #ccc;
}
#footer a:hover {
  color: #fdfdfd;
}
.footer-content img {
  max-width: 140px;
  margin-right: 20px;
}
.fc-logo > * {
  display: inline-block;
  vertical-align: middle;
}
.footer-desc {
  margin-top: 15px;
  text-align: right;
  color: #777777;
  font-size: 13px;
}
.footer-desc > * {
  display: inline-block;
}
.footer-desc img {
  max-width: 120px;
  margin-left: 15px;
}

.triangle-list {
  text-align: center;
  font-size: 23px;
}
.triangle-list li {
  margin-bottom: 20px;
}
.triangle-list a {
  position: relative;
}
.center-form {
  max-width: 700px;
  margin: 50px auto;
}

.vh-section {
  padding: 120px 0 0;
  min-height: 100vh;
}
.vh-section.bg-grey:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
}
.vh-section > * {
  z-index: 2;
}
.bg-gradient {
  background-image: url(../img/bg-gradient.jpg)
}
.vh-section .ci-desc .sub-header {
  margin-bottom: 20px;
}
.vh-section h3 {
  color: #008ee2;
}
.form-section .dl-wrap {
  padding: 80px 0;
}
.form-desc {
  font-size: 12px;
  color: #999999;
}

.short-page .hc-logo .light-logo {
  opacity: 0
}
.short-page .hc-logo .dark-logo {
  opacity: 1;
}
.short-page .header-nav-wrap {
  display: none !important;
}
.short-page .hc-phone a {
  color: #333;
}
.short-page .header-body {
  border-bottom: 1px solid rgba(245, 245, 245, 0);
}
.short-page #footer {
  display: none;
}

.txt-middle-section {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  min-height: 450px;
  height: 100vh;
  font-size: 22px;
  padding: 120px 0;
}

.txt-md {
  font-size: 20px;
}

.diagram-section {
  padding-bottom: 0;
}
.diagram-section h3 {
  color: #008ee2;
}
.ds-img a {
  pointer-events: none;
  display: block;
}
.ds-img a img {
  width: 100%;
  height: auto;
}

/* Responsive css */

/* 
@media(min-width: 1366px) {
  .container {
    width: 1330px;
  }
}

@media(min-width: 1440px) {
  .container {
    width: 1410px;
  }
}
*/
@media(max-width: 1439px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 43px;
  }
  h3 {
    font-size: 32px;
  }
  h5 {
    font-size: 23px;
  }
  body {
    font-size: 17px;
  }
  .txt-md {
    font-size: 18px;
  }
  .dotted-list li {
    font-size: 18px;
  }
  .dotted-list li:before {
    top: 8px;
  }
  .sub-header.sub-header-big {
    font-size: 25px;
  }
  .menu-nav li:not(:last-child) {
    margin-right: 5px;
  }
  .cfi-item {
    font-size: 45px;
  }
  .cfi-item.cfi-big, .cfi-big span {
    font-size: 190px;
  }
  .card-block {
    width: 420px;
    height: 550px;
    padding: 40px 40px 50px;
  }
  .hero-content-wrap {
    min-height: 790px;
  }
  .calculator-wrap > div:first-child .cw-item {
    padding: 0 15px 0 25px;
  }
  .cr-value {
    font-size: 120px;
  }
  .cr-currency {
    font-size: 65px;
  }
  .cr-desc {
    font-size: 47px;
  }
  .noUi-pips-horizontal {
    font-size: 16px;
  }
  .cr-value {
    font-size: 100px;
  }
  .cr-currency {
    font-size: 62px;
    top: -25px;
  }
  .cr-desc {
    font-size: 45px;
    top: 35px;
  }
  .cw-item-desc {
    font-size: 22px;
  }
  .hero-section:before {
    height: 450px;
  }
  .hero-section:after {
    height: 230px;
  }
  .img-info-wrap img {
    height: 140px;
  }
  .bg-img-info {
    font-size: 21px;
  }
  .tiles-row-wrap > div {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: auto;
  }
  .page-hero {
    padding: 260px 0 170px;
  }
  .icon-info-line {
    font-size: 19px;
  }
  .cf-desc {
    font-size: 30px;
  }
}

@media(max-width: 1365px) {
  body {
    font-size: 16px;
  }
  .txt-md {
    font-size: 17px;
  }
  h4 {
    font-size: 24px;
  }
  .dotted-list li {
    font-size: 17px;
  }
  .dotted-list li:before {
    top: 7px;
  }
  .hc-logo img, .hc-logo .dark-logo {
    width: 200px;
  }
  .hr-menu .header-column:first-child, .hr-menu .header-column:last-child {
    width: 210px;
  }
  .menu-nav li a {
    font-size: 12px;
  }
  .menu-nav li:not(:last-child) {
    margin-right: 2px;
  }
  .hc-phone a {
    font-size: 15px;
  }
  .hc-phone a .glyphicon {
    top: 1px;
    font-size: 17px;
  }
  .cfi-item {
    font-size: 41px;
  }
  .cfi-item.cfi-big, .cfi-big span {
    font-size: 150px !important;
  }
  .card-block {
    height: 520px;
  }
  .hero-bottom-info img {
    height: 35px;
  }
  .hero-bottom-info {
    padding-bottom: 25px;
    font-size: 20px;
  }
  .hero-content-wrap {
    min-height: 740px;
    padding: 120px 0 90px;
  }
  .hero-section:before {
    height: 400px;
  }
  .hero-section:after {
    height: 210px;
  }
  .img-info-wrap a {
    font-size: 20px;
  }
  .img-info-wrap img {
    height: 120px;
  }
  .bg-img-info {
    padding: 120px 0 150px;
  }
  .tiles-row-wrap > div {
    padding: 40px 30px;
    font-size: 15px;
  }
  .stl-item > div:last-child {
    font-size: 19px;
  }
}

@media(max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 38px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  h5 {
    font-size: 21px;
  }
  h6 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .sub-header {
    font-size: 21px;
  }
  .sub-header.sub-header-big {
    font-size: 23px;
  }
  .hc-logo img, .hc-logo .dark-logo {
    width: 160px;
  }
  .hr-menu .header-column:first-child, .hr-menu .header-column:last-child {
    width: 170px;
  }
  .hc-phone a {
    font-size: 14px;
    padding-left: 20px;
  }
  .hc-phone a .glyphicon {
    top: 1px;
    font-size: 15px;
  }
  .menu-nav li a {
    font-size: 10px;
    padding: 12px 10px 10px;
  }
  .card-block {
    width: 370px;
    height: 455px;
    padding: 30px 30px 40px;
  }
  .cfi-item {
    font-size: 37px;
  }
  .cfi-item.cfi-big {
  font-size: 154px !important;
}
  .hero-content-wrap {
    min-height: 665px;
  }
  .hero-bottom-info img {
    height: 32px;
  }
  .hero-bottom-info {
    font-size: 18px;
  }
  .btn {
    padding: 17px 25px;
    font-size: 20px;
  }
  .cw-item-desc {
    font-size: 19px;
  }
  .interactive-val {
    height: 40px;
    width: 170px;
    font-size: 21px;
  }
  .cr-value {
    font-size: 80px;
  }
  .cr-currency {
    font-size: 52px;
    top: -15px;
  }
  .cr-desc {
    font-size: 40px;
    top: 30px;
  }
  .cw-item {
    min-height: 180px;
  }
  .calculator-wrap {
    margin: 70px auto;
  }
  .cia-img {
    width: 240px;
    height: 387px;
    margin-left: -120px;
  }
  .cia-list h4 {
    font-size: 20px;
  }
  .cia-letters > div:nth-child(2), .cia-letters > div:last-child {
    padding: 20px 15px 0;
    height: 160px;
  }
  .cia-letters > div:last-child {
    padding-left: 25px;
  }
  .cia-letters > div:nth-child(2) {
    padding-right: 25px;
  }
  .cia-letter-item {
    width: 272px;
    height: 140px;
  }
  .hero-section:before {
    height: 320px;
  }
  .hero-section:after {
    height: 170px;
  }
  .img-info-wrap img {
    height: 100px;
  }
  .bg-img-info {
    font-size: 19px;
  }
  .bg-img-info {
    padding: 100px 0 140px;
  }
  .tiles-row-wrap > div {
    font-size: 14px;
  }
  .tiles-row-wrap > div {
    padding: 30px 25px;
  }
  .tiles-row-wrap h4 {
    font-size: 21px
  }
  .tiles-row-block {
    margin-bottom: -60px;
  }
  .form-control {
    font-size: 17px;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 17px;
  }
  .form-control::-moz-placeholder {
    font-size: 17px;
  }
  .form-control:-moz-placeholder {
    font-size: 17px;
  }
  .form-control:-ms-input-placeholder {
    font-size: 17px;
  }
  .select2-container--default .select2-selection--single {
    font-size: 17px;
  }
  #footer {
    font-size: 15px;
  }
  .ci-desc {
    padding-bottom: 20px;
  }
  .page-hero {
    padding: 240px 0 150px;
  }
  .stl-item > div:last-child {
    font-size: 17px;
  }
  .stb-item > div:first-child, .stb-item > div:last-child {
    width: 50%;
  }
  .section-triangle-block {
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(247,247,247,1) 50%,rgba(247,247,247,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(247,247,247,1) 50%,rgba(247,247,247,1) 100%);
  }
  .stb-item > div {
    padding: 0 65px;
  }
  .stb-item > div:first-child {
    padding: 0 40px;
  }
  .icon-info-line {
    font-size: 18px;
  }
  .icon-info-line > div:first-child {
    width: 90px;
  }
  .iil-img {
    width: 50px;
    height: 65px;
    background-size: 50px auto;
  }
  .iil-email {
    background-position: 0px -65px;
  }
  .iil-map {
    background-position: 0px -130px;
  }
  .iil-social {
    background-position: 0px -195px;
  }
  .form-tile-wrap {
    padding: 25px 20px 30px;
  }
  .form-tile-wrap .fg-btn {
    margin-top: 25px;
  }
  .triangle-list {
    font-size: 21px;
  }
  .triangle-list li {
    margin-bottom: 17px;
  }
  .txt-middle-section {
    font-size: 20px;
  }
  .graph-list.gl-big li {
    font-size: 31px;
    padding: 15px 0 0 100px;
  }
  .gl-big .gl-subinfo {
    font-size: 22px;
  }
  .graph-list.gl-big li {
    font-size: 27px;
    padding: 13px 0 0 90px;
    margin-bottom: 80px;
  }
  .gl-big .gl-subinfo {
    font-size: 20px;
  }
  .gl-big .gl-dot-item {
    width: 50px;
    height: 50px;
    line-height: 52px;
  }
  .graph-list.gl-big li:before, .graph-list.gl-big li:after {
    width: 10px;
    top: 50px;
    left: 20px;
  }
  .graph-list.gl-big li:before {
    height: 200px;
  }
  .graphListAnimate.graph-list.gl-big li:after {
    height: 200px;
  }
  .gl-big .gl-subinfo {
    left: 90px;
  }
  .img-head-block .row > div:first-child {
    padding-right: 15px;
  }
  .img-head-block .row > div:last-child {
    padding-left: 15px;
  }
  .head-logo img {
    max-height: 37px;
  }
}

@media(max-width: 991px) {
  body {
    font-size: 14px;
  }
  .txt-md {
    font-size: 15px;
  }
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 33px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 20px;
  }
  .sub-header {
    font-size: 19px;
    line-height: 1.4;
  }
  .sub-header.sub-header-big {
    font-size: 21px;
  }
  .dotted-list li {
    font-size: 16px;
    padding-left: 22px;
  }
  .dotted-list li:before {
    width: 7px;
    height: 7px;
    top: 8px;
  }
  body > .body {
		overflow-x: hidden;
		overflow-y: auto;
	}
	.scroll-up {
		display: none !important;
	}
  a[href^=tel], a[href^=mailto] {
    pointer-events: auto;
  }
  .header-nav-wrap {
    text-align: right;
  }
  .header-btn-nav {
    display: inline-block;
  }
  .header-btn-nav-active.header-btn-nav {
    background: #008ee2;
  }
  .header-nav {
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    top: 50px;
    right: 0;
    -webkit-transition: all 0.3s ease-in, max-height 0.3s ease-in-out, opacity 0.2s ease-in 0.15s, top 0.3s ease-in;
    transition: all 0.3s ease-in, max-height 0.3s ease-in-out, opacity 0.2s ease-in 0.15s, top 0.3s ease-in;
  }
  .sticky-header-active .header-nav {
    top: 47px;
  }
  .header-nav-active.header-nav {
    visibility: visible;
    opacity: 1;
    top: 63px;
    box-shadow: -1px 4px 5px 0 rgba(0,0,0,.4);
  }
  .sticky-header-active .header-nav-active.header-nav {
    top: 56px;
  }
  .navbar-nav.menu-nav {
    float: none;
    overflow: hidden;
    max-height: 0px;
    width: 200px;
    margin: 0;
    background: #f5f5f5;
    float: none;
    -webkit-transition: max-height 0.3s ease-in;
    transition: max-height 0.3s ease-in;
  }
  .header-nav-active .navbar-nav.menu-nav {
    max-height: 300px;
  }
  .hc-phone {
    display: block;
    position: absolute;
    top: 50%;
    right: 80px;
    margin-top: -5px;
  }
  .short-page .hc-phone {
    right: 15px;
  }
  .hr-menu .header-column:last-child {
    width: auto;
  }
  .header-container, .header-row {
    height: 80px;
    position: relative;
  }
  .menu-nav li {
    display: block;
    text-align: right;
    margin: 0;
  }
  .menu-nav li:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
  }
  .menu-nav li a {
    color: #333;
    font-size: 12px;
    border-radius: 0;
  }
  .header-nav-wrap {
    position: relative;
  }
  .hc-logo img, .hc-logo .dark-logo {
    width: 200px;
  }
  .hr-menu .header-column:first-child {
    width: 200px;
  }
  .cfi-item {
    font-size: 33px;
  }
  .card-block {
    width: 340px;
    height: 425px;
    padding: 25px 30px 30px;
  }
  .btn {
    font-size: 18px;
  }
  .hero-content-wrap {
    min-height: 620px;
    padding: 100px 0 80px;
  }
  .hero-bottom-info > div:not(:last-child) {
    margin-right: 40px;
  }
  .hero-bottom-info img {
    height: 27px;
  }
  .noUi-pips-horizontal {
    font-size: 12px;
  }
  .cr-value {
    font-size: 65px;
  }
  .cr-currency {
    font-size: 40px;
    top: -10px;
  }
  .cr-desc {
    font-size: 31px;
    top: 12px;
  }
  .cw-item {
    min-height: 160px;
  }
  .cw-item-desc {
    font-size: 17px;
  }
  .interactive-val {
    height: 40px;
    width: 150px;
    font-size: 19px;
  }
  .cia-img {
    width: 200px;
    height: 322px;
    margin-left: -100px;
    top: 30px;
  }
  .cia-list h4 {
    font-size: 15px;
    margin-bottom: 45px;
  }
  .graph-list li {
    font-size: 16px;
    padding: 7px 0 0 45px;
  }
  .graph-list-right.graph-list li {
    padding: 7px 45px 0 0;
  }
  .graph-list-right .gl-subinfo {
    right: 45px;
  }
  .gl-subinfo {
    left: 45px;
    font-size: 14px;
    line-height: 1.4;
  }
  .hero-section:before {
    height: 300px;
  }
  .hero-section:after {
    height: 150px;
  }
  .cia-list {
    margin-bottom: 50px;
  }
  .img-info-wrap a {
    font-size: 17px;
  }
  .bg-img-info {
    font-size: 17px;
  }
  .bg-img-info {
    padding: 80px 0 140px;
  }
  .tiles-row-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tiles-row-wrap > div {
    width: 50%;
  }
  .tiles-row-wrap > div:nth-child(2) {
    border-bottom: 1px solid #ccc;
  }
  .tiles-row-block {
    margin-bottom: -80px;
  }
  #footer {
    font-size: 14px;
  }
  .ci-advantages {
    padding: 100px 0 0;
  }
  .page-hero {
    padding: 200px 0 120px;
  }
  .lrt-wrap > div:first-child {
    padding-left: 15px;
  }
  .lrt-wrap > div:last-child {
    padding-right: 15px;
  }
  .dl-wrap {
    padding: 80px 0;
  }
  .stl-item > div:last-child {
    font-size: 16px;
  }
  .stl-item:not(:last-child) {
    margin-bottom: 90px;
  }
  .stb-item > div:first-child:after {
    top: -10px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid transparent;
    border-left: 20px solid #fff;
  }
  .stb-item > div {
    padding: 0 40px;
  }
  .txt-middle-section {
    font-size: 18px;
    min-height: 430px;
  }
  .comparison-lighbox {
    padding: 0 15px;
  }
  .cl-letters img:first-child {
    margin-right: 30px;
  }
  .cl-letters img {
    width: calc(50% - 15px);
  }
  .clh-aside {
    top: 12px;
    font-size: 20px;
  }
  .ds-img a {
    pointer-events: auto;
  }
  .head-logo img {
    max-height: 30px;
  }
}

@media(max-width: 767px) {
  h1 {
    font-size: 43px;
  }
  h2 {
    font-size: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 26px;
  }
  .sub-header {
    font-size: 18px;
  }
  .sub-header.sub-header-big {
    font-size: 20px;
  }
  .header-container, .header-row {
    width: 100%;
  }
  .hc-phone {
    right: 75px;
  }
  .sticky-header-active .header-nav {
    right: -15px;
  }
  .cfi-item.cfi-big, .cfi-big span {
    font-size: 120px;
  }
  .cfi-item {
    font-size: 27px;
    margin: 0;
  }
  .btn {
    font-size: 17px;
  }
  .card-block {
    width: 280px;
    height: 355px;
  }
  .hero-content-wrap {
    height: auto;
    min-height: 0;
    display: block;
    padding: 110px 0 90px;
  }
  .hero-bottom-info {
    font-size: 14px;
  }
  .hero-bottom-info > div:not(:last-child) {
    margin-right: 25px;
  }
  .hero-bottom-info img {
    height: 25px;
  }
  .calculator-wrap > div:first-child .cw-item {
    padding: 0 25px;
    min-height: 150px;
  }
  .cw-item {
    min-height: 0;
  }
  .calculator-wrap > div:first-child {
    margin-bottom: 50px;
  }
  .calculator-result {
    margin-bottom: 15px;
  }
  .calculator-wrap {
    margin: 50px auto;
  }
  .cia-img {
    display: none;
  }
  .cia-list > div:nth-child(1), .cia-list > div:nth-child(2) {
    margin-bottom: 30px;
  }
  .cia-img-hid {
    display: block;
  }
  .cia-list > div:nth-child(1) {
    padding-right: 55px;
  }
  .cia-list > div:nth-child(2) {
    padding-left: 55px;
  }
  .cial-header {
    position: relative;
    width: auto;
    top: 0;
    left: 0;
    margin-left: 0;
  }
  .cial-header br {
    display: none;
  }
  .cial-header h5 {
    margin: 0;
  }
  .cia-letter-item {
    opacity: 1;
  }
  .hero-section:before {
    height: 270px;
  }
  .hero-section:after {
    height: 130px;
  }
  .cia-list {
    margin-bottom: 70px;
  }
  .img-info-wrap > .row > div:not(:last-child) {
    margin-bottom: 70px;
  }
  .img-info-wrap h4 br {
    display: none;
  }
  .bg-img-info {
    font-size: 17px;
  }
  .bg-img-info {
    padding: 70px 0;
  }
  .tiles-row-block > .container {
    top: 0;
  }
  .tiles-row-block {
    padding: 15px 0;
    margin-bottom: -20px;
  }
  .form-control {
    font-size: 16px;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-control::-moz-placeholder {
    font-size: 16px;
  }
  .form-control:-moz-placeholder {
    font-size: 16px;
  }
  .form-control:-ms-input-placeholder {
    font-size: 16px;
  }
  .select2-container--default .select2-selection--single {
    font-size: 16px;
  }
  .ci-desc {
    padding-bottom: 10px;
  }
  .ci-advantages {
    padding: 80px 0 0;
  }
  .page-hero {
    padding: 170px 0 90px;
  }
  .lrt-wrap > div:first-child {
    padding-right: 30px;
  }
  .lrt-wrap > div:last-child {
    padding-left: 30px;
  }
  .stl-item > div:last-child {
    font-size: 14px;
  }
  .stl-item > div:last-child {
    padding: 0 0 0 60px;
  }
  .stl-item > div:first-child {
    padding: 0 30px 0 0;
  }
  .stl-item:not(:last-child) {
    margin-bottom: 80px;
  }
  .stb-item {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .stb-item > div:first-child, .stb-item > div:last-child {
    width: 100%;
  }
  .stb-item > div:first-child:after {
    display: none;
  }
  .stb-item > div:first-child {
    margin-bottom: 35px;
  }
  .section-triangle-block {
    background: #fdfdfd;
  }
  .cis-wrap > div:first-child {
    margin-bottom: 35px;
  }
  .triangle-list {
    font-size: 18px;
  }
  .triangle-list li {
    margin-bottom: 14px;
  }
  .txt-middle-section {
    font-size: 17px;
  }
  .graph-list.gl-big li {
    font-size: 22px;
    padding: 15px 0 0 90px;
  }
  .gl-big .gl-subinfo {
    font-size: 18px;
  }
  .clh-aside {
    font-size: 17px;
    top: 17px;
  }
}

@media(max-width: 639px) {
  .cfi-item {
    font-size: 24px;
  }
  .cfi-item.cfi-big, .cfi-big span {
    font-size: 100px;
  }
  .card-block {
    width: 250px;
    height: 310px;
    padding: 20px 25px 25px;
  }
  .btn {
    padding: 15px 17px;
  }
  .hero-bottom-info img {
    height: 22px;
  }
  .cia-list > div:nth-child(2) {
    padding-left: 45px;
  }
  .cia-list > div:nth-child(1) {
    padding-right: 45px;
  }
  .cia-img-hid {
    width: 360px;
    height: 224px;
  }
  .cia-letters > div:nth-child(2) {
    padding-right: 15px;
  }
  .cia-letters > div:last-child {
    padding-left: 15px;
  }
  .cia-letter-item {
    width: 260px;
    height: 134px;
  }
  .cia-letters > div:nth-child(2), .cia-letters > div:last-child {
    height: 154px;
  }
  .hero-section:before {
    height: 250px;
  }
  .hero-section:after {
    height: 110px;
  }
  .bg-img-info .container > .row > div {
    float: none;
    width: 100%;
  }
  .bg-img-info {
    padding: 50px 0;
    position: relative;
    background-position: left center;
  }
  .bg-img-info:before {
    content: "";
    display: block;
    background-color: #322417;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .bg-img-info > * {
    position: relative;
    z-index: 2;
  }
  .lrt-wrap > div:first-child, 
  .lrt-wrap > div:last-child {
    float: none;
    width: 100%;
    text-align: center;
    padding: 0 15px;
  }
  .lrt-wrap > div:first-child h3, .lrt-wrap > div:last-child h3 {
    text-align: center;
  }
  .lrt-wrap > div:first-child {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ccc;
  }
  .vertical-separate-bg {
    background: #f7f7f7;
  }
  .stl-item {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .stl-item > div {
    width: 100%;
  }
  .stl-item > div:last-child {
    padding: 0;
    margin: 15px 0;
  }
  .section-triangle-list {
    background: #fdfdfd;
  }
  .stl-item > div:first-child:after {
    display: none;
  }
  .stl-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .stl-item > div:first-child {
    padding: 0;
  }
  .graph-list.gl-big li:nth-child(2) br {
    display: inline;
  }
  .gl-big li:nth-child(2) .gl-subinfo {
    top: 80px;
  }
  .clh-aside {
    font-size: 14px;
    top: 13px;
  }
  .clh-center {
    width: 40px;
    height: 40px;
    line-height: 43px;
    font-size: 18px;
  }
  .clh-left {
    margin-right: 35px;
  }
  .clh-right {
    margin-left: 35px;
  }
}

@media(max-width: 579px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 25px;
  }
  h5 {
    font-size: 19px;
  }
  h6 {
    font-size: 16px;
  }
  .sub-header {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .sub-header.sub-header-big {
    font-size: 18px;
    margin-bottom: 70px;
  }
  .cfi-item {
    font-size: 22px;
  }
  .cfi-item.cfi-big, .cfi-big span {
    font-size: 85px;
  }
  .btn {
    font-size: 16px;
    padding: 14px 17px;
  }
  .card-block {
    width: 230px;
    height: 275px;
  }
  .hero-bottom-info {
    font-size: 12px;
  }
  .hero-bottom-info img {
    height: 18px;
  }
  .hero-content-wrap {
    padding: 110px 0 70px;
  }
  .cia-list > div:nth-child(1), .cia-list > div:nth-child(2) {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 70px;
    padding: 0 15px;
  }
  .cia-list > div:first-child h4, .cia-list > div h4 {
    text-align: center;
  }
  .cia-list h4 {
    font-size: 22px;
    margin-bottom: 45px;
  }
  .graph-list {
    max-width: 240px;
    margin: 0 auto;
  }
  .graph-list li {
    font-size: 20px;
    padding: 5px 0 0 55px;
  }
  .graph-list-right.graph-list li {
    padding: 5px 0 0 55px;
    text-align: left;
  }
  .graph-list-right.graph-list li:before, .graph-list-right.graph-list li:after {
    right: auto;
    left: 11px;
  }
  .graph-list-right .gl-dot-item {
    right: auto;
    left: 0;
  }
  .graph-list-right .gl-subinfo {
    right: auto;
    left: 55px;
  }
  .gl-subinfo {
    left: 55px;
    font-size: 17px;
    line-height: 1.15;
  }
  .ci-advantages {
    background: rgb(239,239,239);
  }
  .cia-img-hid {
    margin: 100px auto 0;
  }
  .cia-letter-item {
    width: 210px;
    height: 108px;
  }
  .cia-letters > div:nth-child(2), .cia-letters > div:last-child {
    height: 128px;
  }
  .hero-section:before {
    height: 230px;
  }
  .hero-section:after {
    height: 100px;
  }
  .bg-img-info {
    font-size: 16px;
  }
  .tiles-row-wrap h4 {
    font-size: 19px;
  }
  .form-control {
    font-size: 15px;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 15px;
  }
  .form-control::-moz-placeholder {
    font-size: 15px;
  }
  .form-control:-moz-placeholder {
    font-size: 15px;
  }
  .form-control:-ms-input-placeholder {
    font-size: 15px;
  }
  .select2-container--default .select2-selection--single {
    font-size: 15px;
  }
  .footer-content {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-content > div {
    width: 100%;
    text-align: center;
  }
  .footer-content ul {
    text-align: center;
  }
  .fc-logo > span {
    display: block;
    margin-bottom: 15px;
  }
  .footer-content img {
    margin:  0 0 15px;
  }
  .footer-desc {
    text-align: center;
  }
  .footer-desc > span {
    width: 100%;
  }
  .footer-desc img {
    margin: 0;
  }
  section, .left-right-text, .img-head-block {
    padding: 70px 0;
  }
  .page-hero {
    padding: 160px 0 70px;
  }
  .dotted-list li {
    font-size: 15px;
  }
  .dl-wrap {
    padding: 70px 0;
  }
  .cta-block {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cta-block > div {
    width: 100%;
    text-align: center;
  }
  .cta-block {
    padding: 25px 0;
  }
  .cta-block > div:first-child {
    margin: 0 0 15px;
  }
  .cta-block h3 {
    text-align: center;
  }
  .stb-item > div:first-child, .stb-item > div {
    padding: 0 30px;
  }
  .txt-middle-section {
    font-size: 16px;
  }
  .graph-list.gl-big {
    max-width: none;
    margin: 0 auto;
  }
  .graph-list.gl-big li:nth-child(1) br {
    display: inline;
  }
  .gl-big li:nth-child(1) .gl-subinfo {
    top: 80px;
  }
  .clh-aside {
    font-size: 12px;
    top: 6px;
  }
  .clh-center {
    width: 25px;
    height: 25px;
    line-height: 29px;
    font-size: 13px;
  }
  .clh-left {
    margin-right: 20px;
  }
  .clh-right {
    margin-left: 20px;
  }
}

@media(max-width: 479px) {
  h1 {
    font-size: 33px;
  }
  h2 {
    font-size: 24px;
    padding-bottom: 17px;
    margin-bottom: 17px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 19px;
  }
  h5 {
    font-size: 18px;
  }
  .sub-header {
    font-size: 16px;
  }
  .sub-header.sub-header-big {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .hc-logo img, .hc-logo .dark-logo {
    width: 160px;
  }
  .hr-menu .header-column:first-child {
    width: 170px;
  }
  .hc-phone {
    margin-top: -12px;
  }
  .hc-phone a {
    font-size: 13px;
    padding: 6px 5px 6px 21px;
    background-color: #008ee2;
    border-radius: 3px;
    text-decoration: none;
  }
  .hc-phone a:hover, .hc-phone a:focus {
    text-decoration: none;
  }
  .short-page .hc-phone a {
    color: #fff;
  }
  .hc-phone a .glyphicon {
    top: 7px;
    left: 5px;
    font-size: 12px;
  }
  .hcp-number {
    display: none;
  }
  .hcp-txt {
    display: inline;
  }
  .sticky-header-active .hc-phone a {
    color: #fff;
  }
  .card-block {
    margin: 0 auto;
    width: 250px;
  }
  .hero-bottom-info {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hero-bottom-info {
    font-size: 14px;
  }
  .hero-bottom-info > div:not(:last-child) {
    margin-right: 20px;
  }
  .hero-bottom-info > div:first-child {
    text-align: center;
    width: 100%;
    margin:  0 0 10px;
  }
  .hero-content-wrap {
    padding: 110px 0 90px;
  }
  .noUi-pips-horizontal {
    font-size: 11px;
  }
  .cr-value {
    font-size: 55px;
  }
  .cr-currency {
    font-size: 37px;
  }
  .cr-desc {
    font-size: 28px;
  }
  .calculator-wrap > div:first-child {
    margin-bottom: 40px;
  }
  .calculator-wrap > div:first-child .cw-item {
    padding: 0 10px;
  }
  .noUi-pips-horizontal {
    font-size: 10px;
  }
  .cia-list h4 {
    font-size: 20px;
  }
  .cia-img-hid {
    width: 340px;
    height: 211px;
  }
  .cia-letter-item {
    width: 157px;
    height: 81px;
    bottom: 0;
  }
  .cia-letters > div:nth-child(2), .cia-letters > div:last-child {
    height: 101px;
  }
  .bg-img-info {
    font-size: 15px;
  }
  .tiles-row-wrap > div {
    width: 100%;
  }
  .tiles-row-wrap > div:nth-child(3) {
    border-bottom: 1px solid #ccc;
  }
  .tiles-row-wrap > div:nth-child(2), .tiles-row-wrap > div:nth-child(3) {
    border-right: none;
  }
  section, .left-right-text, .img-head-block {
    padding: 60px 0;
  }
  .ci-desc {
    padding-bottom: 10px;
  }
  .page-hero {
    padding: 150px 0 60px;
  }
  .dotted-list li {
    font-size: 14px;
    padding-left: 18px;
  }
  .dotted-list li:before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
  .dl-wrap {
    padding: 60px 0;
  }
  .stb-item > div:first-child, .stb-item > div {
    padding: 0;
  }
  .icon-info-line {
    font-size: 16px;
  }
  .iil-img {
    width: 43px;
    height: 55px;
    background-size: 43px auto;
  }
  .iil-email {
    background-position: 0px -55px;
  }
  .iil-map {
    background-position: 0px -110px;
  }
  .iil-social {
    background-position: 0px -165px;
  }
  .icon-info-line > div:first-child {
    width: 70px;
  }
  .txt-middle-section {
    font-size: 15px;
  }
  .graph-list.gl-big li {
    font-size: 20px;
    padding: 10px 0 0 65px;
    margin-bottom: 50px;
  }
  .gl-big .gl-subinfo {
    font-size: 15px;
  }
  .gl-big .gl-subinfo {
    left: 65px;
    top: 50px;
  }
  .gl-big li:nth-child(1) .gl-subinfo, .gl-big li:nth-child(2) .gl-subinfo {
    top: 70px;
  }
  .gl-big .gl-dot-item {
    width: 40px;
    height: 40px;
    line-height: 42px;
  }
  .graph-list.gl-big li:before, .graph-list.gl-big li:after {
    width: 8px;
    top: 40px;
    left: 16px;
  }
  .graph-list.gl-big li:before {
    height: 180px;
  }
  .graphListAnimate.graph-list.gl-big li:after {
    height: 180px;
  }
  .graphListAnimate.graph-list.gl-big li:last-child .gl-dot-item {
    box-shadow: 0 0 0 6px #008ee2;
  }
  .comparison-lighbox {
    padding: 0 5px;
  }
  .cl-letters img {
    width: calc(50% - 5px);
  }
  .cl-letters img:first-child {
    margin-right: 10px;
  }
  .clh-aside span {
    display: none;
  }
  .cl-header {
    margin-bottom: 15px;
  }
  .ihb-wrap > div {
    width: 100%;
    float: none;
  }
  .ihb-wrap > div:not(:last-child) {
    margin-bottom: 45px;
  }
}

@media(max-width: 374px) {
  h1 {
    font-size: 27px;
  }
  h2 {
    font-size: 23px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  h3 {
    font-size: 21px;
  }
  h4 {
    font-size; 18px;
  }
  h5 {
    font-size: 17px;
  }
  .sub-header {
    font-size: 15px;
  }
  .sub-header.sub-header-big {
    font-size: 16px;
  }
  .hc-logo img, .hc-logo .dark-logo {
    width: 130px;
  }
  .hr-menu .header-column:first-child {
    width: 130px;
  }
  .card-block {
    height: 255px;
  }
  .cfi-item {
    font-size: 20px !important;
  }
  .cfi-item.cfi-big, .cfi-big span {
    font-size: 75px;
  }
  .hero-bottom-info img {
    height: 16px;
  }
  .hero-bottom-info > div:not(:last-child):not(:first-child) {
    margin-right: 15px;
  }
  .btn {
    font-size: 15px;
    padding: 12px 17px;
  }
  .cw-item-desc {
    font-size: 16px;
  }
  .cr-value {
    font-size: 45px;
  }
  .cr-currency {
    font-size: 34px;
    top: -8px;
  }
  .cr-desc {
    font-size: 26px;
    top: 10px;
  }
  .cia-list h4 {
    font-size: 18px;
  }
  .cia-img-hid {
    width: 300px;
    height: 186px;
  } 
  .cia-letter-item {
    width: 140px;
    height: 72px;
    box-shadow: 0 0 10px rgba(0,0,0,0.27);
  }
  .cia-letter-item:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.45);
  }
  .cia-letters > div:nth-child(2), .cia-letters > div:last-child {
    height: 92px;
  }
  .cia-letters > div:nth-child(2), .cia-letters > div:last-child {
    padding: 20px 10px 0;
  }
  .img-info-wrap img {
    height: 80px;
  }
  .img-info-wrap > .row > div:not(:last-child) {
    margin-bottom: 60px;
  }
  .tiles-row-wrap h4 {
    font-size: 18px;
  }
  .page-hero {
    padding: 140px 0 50px;
  }
  .cis-wrap {
    margin: 0 -15px;
  }
  .iil-img {
    width: 43px;
    height: 55px;
    background-size: 43px auto;
  }
  .iil-email {
    background-position: 0px -55px;
  }
  .iil-map {
    background-position: 0px -110px;
  }
  .iil-social {
    background-position: 0px -165px;
  }
  .icon-info-line > div:first-child {
    width: 70px;
  }
  .icon-info-line {
    font-size: 15px;
  }
  .graph-list.gl-big li {
    font-size: 18px;
    padding: 12px 0 0 65px;
  }
  .gl-big .gl-subinfo {
    font-size: 14px;
  }
  .gl-big li:nth-child(1) .gl-subinfo, .gl-big li:nth-child(2) .gl-subinfo {
    top: 60px;
  }
  .gl-big .gl-subinfo {
    top: 40px;
  }
  .clh-aside {
    font-size: 11px;
    top: 7px;
  }
}

/* Responsive css end */

h2::after {
  background-color: #008ee2;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -55px;
  position: absolute;
  width: 110px;
}