/* 
	Table of Contents

    01. Swiper ------------------------------------
         Fix of Webkit flickering -----------------
         Auto Height ------------------------------
         IE10 Windows Phone 8 Fixes ---------------
         Common Styles ----------------------------
         Bullets ----------------------------------
         Progress ---------------------------------
         Scrollbar --------------------------------
         Preloader --------------------------------
         Windows 8 IE 10 fix ----------------------
    02. Settings ----------------------------------
    03. Generic -----------------------------------
    04. Base --------------------------------------
         Tablet Portrait --------------------------
         Tablet Portrait --------------------------
    05. Fonts -------------------------------------
    06. Helpers -----------------------------------
         Clear ------------------------------------
         Notext -----------------------------------
         Hidden -----------------------------------
         Alignleft --------------------------------
         Alignright -------------------------------
         Disabled ---------------------------------
         Grid -------------------------------------
         Responsive Helpers -----------------------
    07. Reset -------------------------------------
    08. Regions -----------------------------------
    09. Container ---------------------------------
    10. Content -----------------------------------
    11. Footer ------------------------------------
         Tablet Portrait --------------------------
    12. Header ------------------------------------
         Tablet Portrait --------------------------
    13. Header Alt --------------------------------
         Tablet Portrait --------------------------
    14. Main --------------------------------------
         Tablet Portrait --------------------------
    15. Shell -------------------------------------
    16. Sidebar -----------------------------------
    17. Wrapper -----------------------------------
    18. Modules -----------------------------------
    19. Breadcrumbs -------------------------------
         Small Desktop ----------------------------
         Tablet Portrait --------------------------
    20. Button ------------------------------------
         Tablet Portrait --------------------------
         Blue Outline -----------------------------
         Button Blue ------------------------------
         Button White -----------------------------
         Button Thin ------------------------------
         Btn Wide ---------------------------------
         Button Block -----------------------------
         Btn Green --------------------------------
    21. Cards -------------------------------------
         Large Desktop ----------------------------
         Tablet Portrait --------------------------
    22. Card --------------------------------------
         Large Desktop ----------------------------
         Small Desktop ----------------------------
         Tablet Portrait --------------------------
    23. Card Large --------------------------------
         Tablet Portrait --------------------------
    24. Card Alt ----------------------------------
         Tablet Portrait --------------------------
    25. Contacts ----------------------------------
         Tablet Portrait --------------------------
    26. Cookie Banner -----------------------------
         Tablet Portrait --------------------------
    27. Form Elements -----------------------------
    28. Form --------------------------------------
    29. Intro -------------------------------------
         Small Desktop ----------------------------
         Tablet Portrait --------------------------
    30. List --------------------------------------
    31. Logo --------------------------------------
         Tablet Portrait --------------------------
    32. Logo Alt ----------------------------------
    33. Logo Large --------------------------------
    34. Nav ---------------------------------------
         Small Desktop ----------------------------
         Small Desktop ----------------------------
         Tablet Portrait --------------------------
    35. Nav Alt -----------------------------------
         Tablet Portrait --------------------------
    36. Nav Widget --------------------------------
         Tablet Portrait --------------------------
    37. Nav Trigger -------------------------------
         Tablet Portrait --------------------------
    38. Section Info ------------------------------
         Tablet Portrait --------------------------
    39. Section Bar -------------------------------
         Tablet Portrait --------------------------
    40. Section -----------------------------------
         Tablet Portrait --------------------------
    41. Section Services --------------------------
         Tablet Portrait --------------------------
    42. Section Widget ----------------------------
         Small Desktop ----------------------------
         Tablet Portrait --------------------------
    43. Section Partners --------------------------
         Tablet Portrait --------------------------
    44. Section Info Alt --------------------------
         Tablet Portrait --------------------------
    45. Section Contact ---------------------------
         Tablet Portrait --------------------------
    46. Services ----------------------------------
         Services Alt -----------------------------
         Tablet Portrait --------------------------
    47. Service -----------------------------------
         Service Alt ------------------------------
         Small Desktop ----------------------------
         Tablet Portrait --------------------------
    48. Slider ------------------------------------
    49. Socials -----------------------------------
    50. tabs --------------------------------------
         Tablet Portrait --------------------------
    51. Tab ---------------------------------------
    52. Table -------------------------------------
    53. Widget ------------------------------------
    54. Widget Nav --------------------------------
    55. Themes ------------------------------------
 */

/* ------------------------------------------------------------ *\
	Swiper
\* ------------------------------------------------------------ */

/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* ------------------------------------------------------------ *\
	Settings
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Generic
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */

body { min-width: 320px; background: #fff; font-family: 'Titillium Web', Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.78; color: #1e1e1e; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	body { font-size: 15px; }
}

a { color: #1eb8e5; text-decoration: none; }

a:hover,
a[href^="tel"] { text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 { margin-bottom: 0.89em; }

h1 { font-size: 60px; line-height: 1.33; font-weight: 400; }

h2 { font-size: 50px; font-weight: 400; }

h3 { font-size: 40px; font-weight: 400; }

h4 { font-size: 30px; }

h5 { font-size: 22px; line-height: 1.33; font-weight: 400; }

h6 { font-size: 18px; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	h1 { font-size: 45px; line-height: 1.33; font-weight: 400; }
	h2 { font-size: 35px; font-weight: 400; line-height: 1.2; }
	h3 { font-size: 30px; font-weight: 400; }
	h4 { font-size: 25px; }
	h5 { font-size: 18px; line-height: 1.33; font-weight: 400; }
	h6 { font-size: 16px; }
}

p,
ul,
ol,
dl,
hr,
table,
blockquote { margin-bottom: 1.78em; }

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-SemiBold.eot');
    src: url('../fonts/TitilliumWeb-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-SemiBold.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-SemiBold.woff') format('woff'),
        url('../fonts/TitilliumWeb-SemiBold.svg') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-ExtraLightItalic.eot');
    src: url('../fonts/TitilliumWeb-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-ExtraLightItalic.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-ExtraLightItalic.woff') format('woff'),
        url('../fonts/TitilliumWeb-ExtraLightItalic.svg') format('svg');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-Regular.eot');
    src: url('../fonts/TitilliumWeb-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-Regular.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-Regular.woff') format('woff'),
        url('../fonts/TitilliumWeb-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-Light.eot');
    src: url('../fonts/TitilliumWeb-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-Light.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-Light.woff') format('woff'),
        url('../fonts/TitilliumWeb-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-SemiBoldItalic.eot');
    src: url('../fonts/TitilliumWeb-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-SemiBoldItalic.woff') format('woff'),
        url('../fonts/TitilliumWeb-SemiBoldItalic.svg') format('svg');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-BoldItalic.eot');
    src: url('../fonts/TitilliumWeb-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-BoldItalic.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-BoldItalic.woff') format('woff'),
        url('../fonts/TitilliumWeb-BoldItalic.svg') format('svg');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-SemiBoldItalic.eot');
    src: url('../fonts/Muli-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Muli-SemiBoldItalic.woff') format('woff'),
        url('../fonts/Muli-SemiBoldItalic.svg') format('svg');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Black.eot');
    src: url('../fonts/Muli-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Black.woff2') format('woff2'),
        url('../fonts/Muli-Black.woff') format('woff'),
        url('../fonts/Muli-Black.svg') format('svg');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-Black.eot');
    src: url('../fonts/TitilliumWeb-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-Black.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-Black.woff') format('woff'),
        url('../fonts/TitilliumWeb-Black.svg') format('svg');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Bold.eot');
    src: url('../fonts/Muli-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Bold.woff2') format('woff2'),
        url('../fonts/Muli-Bold.woff') format('woff'),
        url('../fonts/Muli-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-LightItalic.eot');
    src: url('../fonts/Muli-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-LightItalic.woff2') format('woff2'),
        url('../fonts/Muli-LightItalic.woff') format('woff'),
        url('../fonts/Muli-LightItalic.svg') format('svg');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-Italic.eot');
    src: url('../fonts/TitilliumWeb-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-Italic.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-Italic.woff') format('woff'),
        url('../fonts/TitilliumWeb-Italic.svg') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-LightItalic.eot');
    src: url('../fonts/TitilliumWeb-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-LightItalic.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-LightItalic.woff') format('woff'),
        url('../fonts/TitilliumWeb-LightItalic.svg') format('svg');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-SemiBold.eot');
    src: url('../fonts/Muli-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-SemiBold.woff2') format('woff2'),
        url('../fonts/Muli-SemiBold.woff') format('woff'),
        url('../fonts/Muli-SemiBold.svg') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-ExtraBold.eot');
    src: url('../fonts/Muli-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-ExtraBold.woff2') format('woff2'),
        url('../fonts/Muli-ExtraBold.woff') format('woff'),
        url('../fonts/Muli-ExtraBold.svg') format('svg');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-ExtraLight.eot');
    src: url('../fonts/Muli-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-ExtraLight.woff2') format('woff2'),
        url('../fonts/Muli-ExtraLight.woff') format('woff'),
        url('../fonts/Muli-ExtraLight.svg') format('svg');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Italic.eot');
    src: url('../fonts/Muli-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Italic.woff2') format('woff2'),
        url('../fonts/Muli-Italic.woff') format('woff'),
        url('../fonts/Muli-Italic.svg') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Regular.eot');
    src: url('../fonts/Muli-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Regular.woff2') format('woff2'),
        url('../fonts/Muli-Regular.woff') format('woff'),
        url('../fonts/Muli-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-ExtraLight.eot');
    src: url('../fonts/TitilliumWeb-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-ExtraLight.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-ExtraLight.woff') format('woff'),
        url('../fonts/TitilliumWeb-ExtraLight.svg') format('svg');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.eot');
    src: url('../fonts/Montserrat-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat-Black.woff') format('woff'),
        url('../fonts/Montserrat-Black.svg') format('svg');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-BoldItalic.eot');
    src: url('../fonts/Muli-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-BoldItalic.woff2') format('woff2'),
        url('../fonts/Muli-BoldItalic.woff') format('woff'),
        url('../fonts/Muli-BoldItalic.svg') format('svg');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-ExtraBoldItalic.eot');
    src: url('../fonts/Muli-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/Muli-ExtraBoldItalic.woff') format('woff'),
        url('../fonts/Muli-ExtraBoldItalic.svg') format('svg');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('../fonts/TitilliumWeb-Bold.eot');
    src: url('../fonts/TitilliumWeb-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TitilliumWeb-Bold.woff2') format('woff2'),
        url('../fonts/TitilliumWeb-Bold.woff') format('woff'),
        url('../fonts/TitilliumWeb-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Light.eot');
    src: url('../fonts/Muli-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-Light.woff2') format('woff2'),
        url('../fonts/Muli-Light.woff') format('woff'),
        url('../fonts/Muli-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.eot');
    src: url('../fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff'),
        url('../fonts/Montserrat-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-ExtraLightItalic.eot');
    src: url('../fonts/Muli-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-ExtraLightItalic.woff2') format('woff2'),
        url('../fonts/Muli-ExtraLightItalic.woff') format('woff'),
        url('../fonts/Muli-ExtraLightItalic.svg') format('svg');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-BlackItalic.eot');
    src: url('../fonts/Muli-BlackItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muli-BlackItalic.woff2') format('woff2'),
        url('../fonts/Muli-BlackItalic.woff') format('woff'),
        url('../fonts/Muli-BlackItalic.svg') format('svg');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Apex New';
    src: url('../fonts/ApexNew-Medium.eot');
    src: url('../fonts/ApexNew-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ApexNew-Medium.woff2') format('woff2'),
        url('../fonts/ApexNew-Medium.woff') format('woff'),
        url('../fonts/ApexNew-Medium.svg') format('svg');
    font-weight: 500;
    font-style: normal;
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */

/*  Clear  */

.clear:after {
  content: '';
  display: block;
  clear: both; }

/*  Notext  */

.notext { overflow: hidden; text-indent: 101%; white-space: nowrap; }

/*  Hidden  */

[hidden],
.hidden { display: none !important; }

/*  Alignleft  */

.alignleft { float: left; }

/*  Alignright  */

.alignright { float: right; }

.color-yellow {
	color: #bdd02b;
}

/*  Disabled  */

[disabled],
.disabled { cursor: default; }

/*  Grid  */

.cols { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; margin: 0 -12px; }

.col { max-width: 100%; -webkit-box-flex: 1; -ms-flex: 1 1; flex: 1 1; padding: 0 12px; }

.col--1of2 { max-width: 50%; -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; }

.col--1of3 { max-width: 33.33%; -webkit-box-flex: 0; -ms-flex: 0 0 33.33%; flex: 0 0 33.33%; }

.col--1of4 { max-width: 25%; -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; }

/*  Responsive Helpers  */

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 767px) {
	.hidden-xs { display: none !important; }
	.visible-xs-block { display: block !important; }
	.visible-xs-inline { display: inline !important; }
	.visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
	.hidden-sm { display: none !important; }
	.visible-sm-block { display: block !important; }
	.visible-sm-inline { display: inline !important; }
	.visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1024px) and (max-width: 1200px) {
	.hidden-md { display: none !important; }
	.visible-md-block { display: block !important; }
	.visible-md-inline { display: inline !important; }
	.visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1201px) {
	.hidden-lg { display: none !important; }
	.visible-lg-block { display: block !important; }
	.visible-lg-inline { display: inline !important; }
	.visible-lg-inline-block { display: inline-block !important; }
}

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */

* { padding: 0; margin: 0; outline: 0; -webkit-box-sizing: border-box; box-sizing: border-box; }

*:before,
*:after { -webkit-box-sizing: inherit; box-sizing: inherit; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main { display: block; }

template { display: none; }

html { -webkit-tap-highlight-color: rgba(0,0,0,0); tap-highlight-color: rgba(0,0,0,0); }

body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; -webkit-text-size-adjust: none; -moz-text-size-adjust: none; -ms-text-size-adjust: none; text-size-adjust: none; }

img,
iframe,
video,
audio,
object { max-width: 100%; }

img,
iframe { border: 0 none; }

img { height: auto; display: inline-block; vertical-align: middle; }

b,
strong { font-weight: bold; }

address { font-style: normal; }

svg:not(:root) { overflow: hidden; }

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="image"],
label[for] { cursor: pointer; }

a[href^="tel"],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] { cursor: default; }

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

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
a[href^="tel"] { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }

textarea { overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; }

button,
input,
optgroup,
select,
textarea { font-family: inherit; font-size: inherit; color: inherit; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; }

button,
select { text-transform: none; }

table { width: 100%; border-collapse: collapse; border-spacing: 0; }

nav ul,
nav ol { list-style: none outside none; }

/* ------------------------------------------------------------ *\
	Regions
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Container
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Content
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */

.footer { padding: 107px 0 0; background-color: #0c1e1f; }

.footer h6 { margin: 0 0 10px; color: #fff; line-height: 1; font-weight: 600; }

.footer a { -webkit-transition: color .4s ease; -o-transition: color .4s ease; transition: color .4s ease; }

.footer a span { position: relative; display: inline-block; }

.footer a span:after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0px; height: 1px; background-color: #bdd02b; -webkit-transition: right .3s ease; -o-transition: right .3s ease; transition: right .3s ease; }

.footer a:hover span:after { right: 0; }

.footer .ico-twitter-green { width: 17px; height: 14px; }

.footer .footer__entry { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0 11px 58px; border-bottom: 1px solid rgba(92, 142, 147, .5); }

.footer .footer__links { -webkit-box-flex: 0; -ms-flex: 0 0 60%; flex: 0 0 60%; max-width: 56.5%; }

.footer .footer__links .cols { margin: 0 -12px; }

.footer .footer__links .col { padding: 0 12px; }

.footer .footer__links a { display: block; color: #bdd02b; font-size: 15px; font-weight: 600; text-transform: uppercase; line-height: 2.4; }

.footer .footer__links a.tel { color: #fff; opacity: .5; }

.footer .footer__info { padding: 0 0 0 52px; -webkit-box-flex: 0; -ms-flex: 0 0 1; flex: 0 0 1; color: rgba(255,255,255, .5); font-size: 12px; line-height: 1.67; }

.footer .footer__info h6 { margin: 0 0 15px; }

.footer .footer__info p { font-family: Muli; }

.footer .footer__info .col--size-1 { -webkit-box-flex: 0; -ms-flex: 0 0 1; flex: 0 0 1; }

.footer .footer__info .col--size-3 { -webkit-box-flex: 0; -ms-flex: 0 0 85px; flex: 0 0 85px; max-width: 85px; }

.footer .footer__content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 50px 10px; }

.footer .copyright { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; padding: 8px 0; }

.footer .copyright p { color: rgba(255,255,255, 1); font-size: 14px; font-weight: 400; }

.footer .copyright p a { color: rgba(255,255,255, 1); font-size: 14px; font-weight: 400; }

.footer .copyright p a:hover { color: #00b0ff; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.footer { padding: 40px 0 0; }
	.footer .footer__entry { display: block; padding: 0 11px 58px; border-bottom: 1px solid rgba(92, 142, 147, .5); }
	.footer .footer__links { max-width: 100%; text-align: center; }
	.footer .footer__links .cols { display: block; margin: 0; }
	.footer .footer__links .col { max-width: 100%; padding: 20px 0; }

	.footer .footer__info { padding: 0 0 0 0; -webkit-box-flex: 0; -ms-flex: 0 0 1; flex: 0 0 1; color: rgba(255,255,255, .5); font-size: 12px; line-height: 1.67; }
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header { position: fixed; top: 0; right: 0; left: 0; width: 100%; min-width: 1023px; z-index: 10; padding: 37px 0 0 49px; -webkit-transition: background-color .5s; -o-transition: background-color .5s; transition: background-color .5s; }

.header .shell { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; max-width: 1296px; }

.header .nav-alt { display: none; }

.header.header--fixed { padding: 24px 20px; background-color: #fff; -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.26); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.26); }

.header.header--fixed .nav { display: none; }

.header.header--fixed .nav-alt { display: block; }

@media(min-width: 1024px){
	.header.header--fixed .nav-alt { display: block !important; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.header { min-width: unset; padding: 24px 10px; }
	.header .nav-alt { top: 0; padding-top: 74px; }
	.header.header--fixed { padding: 24px 10px; background-color: #fff; -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.26); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.26); }
	.header.header--fixed .nav-alt { display: none; }
}

/* ------------------------------------------------------------ *\
	Header Alt
\* ------------------------------------------------------------ */

.header-alt { position: fixed; top: 0; left: 0; right: 0; background-color: #fff; -webkit-box-shadow: 0 0px 4px #eee; box-shadow: 0 0px 4px #eee; z-index: 10; }

.header-alt .header-alt__inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 24px 66px; }

.header-alt .header--shadow { -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.26); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.26); }

@media(min-width: 1024px){
	.header-alt .nav-alt { display: block !important; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.header-alt .header-alt__inner { -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 24px 0px; }
}

/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */

.main--alt { padding: 91px 0 0; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.main--alt { padding: 74px 0 0; }
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */

.shell { max-width: 1252px; padding-left: 10px; padding-right: 10px; margin: auto; }

.shell--small { max-width: 926px; }

.shell--medium { max-width: 1115px; }

.shell--fluid { max-width: none; }

/* ------------------------------------------------------------ *\
	Sidebar
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */

.wrapper { min-height: 100vh; }

/* ------------------------------------------------------------ *\
	Modules
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs { margin: 0 0 8px; }

.breadcrumbs ul { display: -webkit-box; display: -ms-flexbox; display: flex; list-style: none; margin: 0; }

.breadcrumbs li { position: relative; }

.breadcrumbs li ~ li  { padding-left: 10px; margin-left: 8px; }

.breadcrumbs li ~ li:before  { content: ''; position: absolute; left: 0; top: 51%; width: 1px; height: 16px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); background-color: #525252; }

.breadcrumbs a { font-size: 16px; line-height: 3.25; font-weight: 400; color: #1eb8e5; }

.breadcrumbs .current a { font-weight: 600; color: #525252; }

/* Small Desktop */

@media (max-width: 1200px) {
	.breadcrumbs a { font-size: 14px; line-height: 3.25; font-weight: 400; color: #1eb8e5; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.breadcrumbs { display: none; }
}

/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */

.btn { display: inline-block; vertical-align: middle; text-align: center; cursor: pointer; text-decoration: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; height: 56px; min-width: 214px; padding: 0 24px; line-height: 53px; border-radius: 28px; background-color: #bdd02b; color: #0c1e1f; font-size: 15px; font-weight: 700; text-transform: uppercase; -webkit-transition: background-color .3s, color .3s; -o-transition: background-color .3s, color .3s; transition: background-color .3s, color .3s; }

.btn:hover { background-color: #224549; color: #fff; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.btn { height: 40px; padding: 0 20px; min-width: 170px; line-height: 40px; font-size: 14px; }
}

/*  Blue Outline  */

.btn--blue-outline { border: 1px solid #1eb8e5; color: #1eb8e5; font-weight: 600; background-color: #fff; }

.btn--blue-outline:hover { background-color: #0092BD; }

/*  Button Blue  */

.btn--blue { color: #fff; background-color: #1eb8e5; }

.btn--blue:hover { background-color: #0092BD; }

/*  Button White  */

.btn--white { color: #1eb8e5; font-weight: 600; background-color: #fff; }

.btn--white:hover { background-color: #1eb8e5; }

/*  Button Thin  */

.btn--thin { height: 40px; line-height: 40px; font-size: 13px; }

/*  Btn Wide  */

.btn--wide { padding: 0 72px; }

/*  Button Block  */

.btn--block { display: block; padding-left: 0; padding-right: 0; }

/* Btn Green */

.btn--green { border: 1px solid #bdd02b; }

.btn--green:hover { background-color: transparent;  }

/* ------------------------------------------------------------ *\
	Cards
\* ------------------------------------------------------------ */

.cards { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 -26px; }

.cards--news { display: block; margin: 0; }

.cards--news .cols { margin: 0 -27px; }

.cards--news .col { padding: 0 27px; -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; }

.cards--news .col--1of2 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }

.cards--news .col--1of3 { -webkit-box-flex: 0; -ms-flex: 0 0 33.33%; flex: 0 0 33.33%; max-width: 33.33%; }

.cards--news .cards__group h4 { margin: 0 0 26px; line-height: 1; }

.cards--news .cards__actions .btn { height: 41px; padding: 0 10px; min-width: 162px; line-height: 41px; font-size: 13px; }

.cards--news .cards__actions .btn ~ .btn { margin: 0 0 0 47px; }

.cards--center .cards__group { padding: 0 0px; }

.cards--center .cards__group h4 { font-weight: 400; }

.cards--center .cards__group ~ .cards__group { margin: 36px 0 0; }

/* Large Desktop */

@media (max-width: 1330px) {
	.cards { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 -10px; }

	.cards--news .cols { margin: 0 -13px; }
	.cards--news .col { padding: 0 13px; }

	.cards--news .cards__group h4 { margin: 0 4px 26px; line-height: 1; }
	.cards--center .cards__group h4 { margin: 0 12px 26px; line-height: 1; }
	.cards--center .cards__group { padding: 0 20px; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.cards { display: block; margin: 0; padding: 20px 0; }

	.cards .cols { display: block; margin: 0; }
	.cards .col { max-width: 100%; padding: 0; }

	.cards .cards__actions .btn { display: block; }
	.cards--news .cards__actions .btn ~ .btn { margin: 10px 0 0 0px; }

}

/* ------------------------------------------------------------ *\
	Card
\* ------------------------------------------------------------ */

.card { width: 33.33%; padding: 0 26px; margin-bottom: 52px; text-align: center; }

.card .card__inner { height: 100%; background-color: #fff; -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); border-radius: 5px; overflow: hidden; }

.card .card__image { overflow: hidden; }

.card .card__image:hover img { -webkit-transform: scale(1.1) rotate(1deg); -ms-transform: scale(1.1) rotate(1deg); transform: scale(1.1) rotate(1deg); }

.card .card__image img { width: 100%; -webkit-transition: -webkit-transform .3s ease; transition: -webkit-transform .3s ease; -o-transition: transform .3s ease; transition: transform .3s ease; transition: transform .3s ease, -webkit-transform .3s ease; }

.card .card__icon { position: relative; margin: -30px auto 12px; width: 60px; height: 60px; line-height: 50px; border: 3px solid #fff; background-color: #224549; border-radius: 50%; }

.card .card__body { padding: 0 30px 35px; }

.card .card__title { margin-bottom: 18px; min-height: 87px; }

.card .card__title a:hover { text-decoration: underline; }

.card .card__entry { color: #6f6f6f; }

.card .card__author { padding-top: 27px; font-size: 16px; text-transform: uppercase; }

.card .card__author a { -webkit-transition: color .4s; -o-transition: color .4s; transition: color .4s; }

.card .card__author a:hover { opacity: .6; }

.card .card__author strong { font-weight: 600; }

.card--news { width: 100%; padding: 0; -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }

.card--news a { font-size: 16px; }

.card--news p { margin: 0 0 10px !important; }

.card--news p span { color: #6f6f6f; font-size: 15px; font-weight: 400; }

.card--news .data { font-size: 16px; font-weight: 600; color: #1e1e1e; }

.card--news .card__body { padding: 0px 42px 26px; text-align: left; }

.card--news h4.card__title { margin: 0 0 -3px; line-height: 1.17; }

.card--news h4.card__title a { font-size: inherit; line-height: inherit; }

.card--news h5.card__title a { font-size: inherit; line-height: inherit; line-height: 1.47 }

.card--news .card__author { padding: 2px 0 0 0; }

.card--news .card__icon { position: relative; margin: -29px 40px 12px; width: 60px; height: 60px; line-height: 50px; border: 3px solid #fff; background-color: #224549; border-radius: 50%; }

.card--news .card__icon--large { width: 74px; height: 74px; margin: -35px 42px 12px; line-height: 67px; }

.card--news-large .card__body { padding: 16px 42px 26px; text-align: left; }

.card--news-flex .card__body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 11px 54px 14px 42px; }

.card--news-flex .card__content { -webkit-box-flex: 0; -ms-flex: 0 0 63%; flex: 0 0 63%; max-width: 63%; padding-right: 20px; border-right: 1px solid #e6e4e4; }

.card--news-flex .card__event-info { padding: 34px 0 0 10px; }

.card--news-flex .card__event-info h5 { margin: 0 0 9px; }

.card--center .card__body { padding: 11px 90px 42px; text-align: center; }

.card--center .card__icon { margin: -32px auto 12px;  }

.card--center .card__title { min-height: unset; }

.card--center h4.card__title { min-height: unset; margin: 0 0 20px; }

.card--center .btn { min-width: 164px; font-size: 15px; font-weight: 600; }

.card--center .btn--blue-outline { height: 40px; line-height: 40px; }

.card--center .card__author { padding: 19px 0 0; }

.card--center-small .card__body { padding: 14px 30px 29px; text-align: center; }

.card--center-small .card__icon { width: 60px; height: 60px; }

/* Large Desktop */

@media (max-width: 1330px) {
	.card { padding: 0 10px; }
}

/* Small Desktop */

@media (max-width: 1200px) {
	.card--news { padding: 0; }
	.card--news .card__body { padding: 6px 20px 26px; text-align: left; }
	.card--news-large .card__body { padding: 16px 20px 26px; text-align: left; }
	.card--news-flex .card__body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 11px 20px 14px 20px; }

	.card--center { padding: 0; }
	.card--center .card__body { padding: 19px 40px 40px; text-align: center; }
	.card--center-small .card__body { padding: 19px 20px 40px; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.card { width: 100%; padding: 0; margin-bottom: 20px; text-align: center; }
	.card .card__title { margin-bottom: 18px; min-height: unset; }
	.card .card__body { padding: 0 20px 20px; }

	.card--news h4.card__title { margin: 0 0 10px; line-height: 1.17; }

	.card--news-flex .card__body { display: block; padding: 11px 10px; }
	.card--news-flex .card__content { max-width: 100%; }

	.card--news-flex .card__event-info { padding: 34px 10px 0; }

}

/* ------------------------------------------------------------ *\
	Card Large
\* ------------------------------------------------------------ */

.card-large { position: relative; width: 100%; padding: 0 26px; margin: 0 0 42px; }

.card-large .card__inner { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 100%; background-color: #fff; -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); border-radius: 5px; overflow: hidden; }

.card-large .card__icon { position: absolute; left: 370px; margin: -55px auto 12px; width: 60px; height: 60px; line-height: 50px; border: 3px solid #fff; text-align: center; background-color: #224549; border-radius: 50%; }

.card-large .card__title { margin-bottom: 15px; line-height: 1.45; }

.card-large .card__title a:hover { text-decoration: underline; }

.card-large .card__entry { line-height: 1.78; color: #6f6f6f; }

.card-large .card__image { width: 374px; overflow: hidden; }

.card-large .card__image:hover img { -webkit-transform: scale(1.1) rotate(1deg); -ms-transform: scale(1.1) rotate(1deg); transform: scale(1.1) rotate(1deg); }

.card-large .card__image img { -webkit-transition: -webkit-transform .2s ease; transition: -webkit-transform .2s ease; -o-transition: transform .2s ease; transition: transform .2s ease; transition: transform .2s ease, -webkit-transform .2s ease; }

.card-large .card__aside { width: 274px; }

.card-large .card__content { width: calc(100% - 648px); padding: 0 50px; }

.card-large .card__aside { position: relative; text-align: center; font-size: 16px; }

.card-large .card__date { font-weight: 600; color: #6f6f6f; }

.card-large .card__date strong { font-weight: 600; color: #1e1e1e; }

.card-large .card__location { font-size: 15px; color: #6f6f6f; }

.card-large .card__actions { padding-top: 16px; }

.card-large .card__aside:before { content: ''; position: absolute; left: -18px; top: 50%; margin-top: -80px; width: 1px; height: 160px; background-color: #e6e6e6; }

@media (max-width: 1330px) {
	.card-large { padding: 0 10px; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.card-large { padding: 0; }

	.card-large .card__inner { display: block; }
	.card-large .card__image { width: 100%; overflow: hidden; }
	.card-large .card__image img { width: 100%; }
	.card-large .card__aside { width: 100%; padding: 0 0 20px; }
	.card-large .card__content { width: 100%; padding: 20px 20px; text-align: center; }

	.card-large .card__icon { position: absolute; left: 50%;  margin: -39px auto 12px; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); }
}

/* ------------------------------------------------------------ *\
	Card Alt
\* ------------------------------------------------------------ */

.card-alt { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 50px 105px; background-color: #fff; -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); border-radius: 5px; color: #6f6f6f; }

.card-alt p { margin: 0 0 14px }

.card-alt a { position: relative; display: inline-block; font-size: 16px; font-weight: 600; text-transform: uppercase; color: #00b0ff; -webkit-transition: color .4s ease; -o-transition: color .4s ease; transition: color .4s ease; }

.card-alt a:after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0px; height: 1px; background-color: #00b0ff; -webkit-transition: right .3s ease; -o-transition: right .3s ease; transition: right .3s ease; }

.card-alt a:hover:after { right: 0; }

.card-alt a.btn { color: #fff; }

.card-alt a.btn:after { display: none; }

.card-alt .card-alt__image { -webkit-box-flex: 0; -ms-flex: 0 0 265px; flex: 0 0 265px; max-width: 265px; padding: 9px 30px 0 0; }

.card-alt .card-alt__image a:after { display: none; }

.card-alt .card-alt__content { padding: 0px 0 0; }

.card-alt--contact { padding: 48px 105px; text-align: left; }

.card-alt--contact h4 { margin: 0 0 5px !important; }

.card-alt--contact .card-alt__image { -webkit-box-flex: 0; -ms-flex: 0 0 158px; flex: 0 0 158px; max-width: 158px; padding: 1px 30px 0 0; }

.card-alt--contact .card-alt__actions { padding: 16px 0 0; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.card-alt { display: block; padding: 30px; }
	.card-alt .card-alt__content { padding: 20px 0; }
}

/* ------------------------------------------------------------ *\
	Contacts
\* ------------------------------------------------------------ */

.contacts .btn { display: inline-block; height: 44px; line-height: 44px; min-width: 163px; font-size: 13px; }

.contacts h6 ~ h6 { margin: 36px 0 8px; }

.contacts span { display: block; color: #6f6f6f; line-height: 1.89; font-size: 18px; }

.contacts a { display: block; margin: 0 0 8px; }

.contacts a.tel { color: #6f6f6f; }

.contacts .ico-twitter-blue { width: 17px; height: 14px; }

.contacts .contacts__group ~ .contacts__group { margin-top: 43px; padding-top: 41px; border-top: 1px solid #dddddd; }

.contacts .contacts__actions { padding: 47px 0 0; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.contacts h6 ~ h6 { margin: 20px 0 8px; }
	.contacts span { font-size: 16px; }
	.contacts .contacts__actions { padding: 20px 0 10px; }
}

/* ------------------------------------------------------------ *\
	Cookie Banner
\* ------------------------------------------------------------ */

.cookie-banner { position: absolute; top: 65%; left: 0; right: 0; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); background-color: transparent; text-align: center; }

.cookie-banner p { margin: 0; color: #000; font-size: 14px; font-family: 'Titillium Web', Arial, Helvetica, sans-serif; }

.cookie-banner a { color: #bdd02b; text-decoration: underline; font-weight: 700; }

.cookie-banner .cookie-banner__inner { position: relative; margin: 0 auto; max-width: 916px; padding: 20px 100px; border: 2px solid #bdd02b; background-color: #fff;  border-radius: 5px; -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.16); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.16); text-align: center; background-color: #fff; }

.cookie-banner .cookie-banner__close { position: absolute; top: 15px; right: 20px; display: inline-block; padding: 5px; }

.cookie-banner .cookie-banner__close:before,
.cookie-banner .cookie-banner__close:after { content: ''; position: absolute; top: 0; left: 0; display: inline-block; width: 14px; height: 2px; background-color: #bdd02b; }

.cookie-banner .cookie-banner__close:before { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); }

.cookie-banner .cookie-banner__close:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.cookie-banner { top: 47%; }
	.cookie-banner .cookie-banner__inner { max-width: 97%; padding: 20px 25px; }
	.cookie-banner .cookie-banner__close { position: absolute; top: 15px; right: 9px; display: inline-block; padding: 5px; }
}

/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */

input::-webkit-input-placeholder { color: inherit; opacity: 1; }

input:-ms-input-placeholder { color: inherit; opacity: 1; }

input::-ms-input-placeholder { color: inherit; opacity: 1; }

input::placeholder { color: inherit; opacity: 1; }

textarea::-webkit-input-placeholder { color: inherit; opacity: 1; }

textarea:-ms-input-placeholder { color: inherit; opacity: 1; }

textarea::-ms-input-placeholder { color: inherit; opacity: 1; }

textarea::placeholder { color: inherit; opacity: 1; }

input:-webkit-autofill { -webkit-text-fill-color: inherit; -webkit-box-shadow: 0 0 0 1000px #fff inset; }

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */

.intro { position: relative; height: 655px; background-size: cover; background-position: center center; }

.intro .intro__content { position: relative; top: -130px; left: -204px; height: 816px; width: 816px; padding: 317px 75px 75px 202px; color: #fff; }

.intro .intro__actions { padding-top: 57px; }

.intro .intro__image { position: absolute; top: 0; right: 0; left: 0; bottom: 0; background-size: cover; opacity: 0; -webkit-transition: opacity .3s; -o-transition: opacity .3s; transition: opacity .3s; }

.intro .intro__image.active { opacity: 1; }

/* Small Desktop */

@media (max-width: 1200px) {
	.intro h1 { font-size: 45px; }
	.intro .intro__content { position: relative; top: -130px; left: -154px; height: 650px; width: 650px; padding: 250px 75px 75px 170px; color: #fff; background-size: cover; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.intro { height: 450px; }
	.intro h1 { margin: 0; font-size: 30px; }

	.intro .intro__content { position: relative; top: -80px; left: -80px; height: 390px; width: 390px; padding: 150px 20px 20px 80px; color: #fff; background-size: cover;  background-position: center; }
	.intro .intro__actions { padding-top: 20px; }

	.intro .intro__image { background-position: center center; }
}

/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */

[class^="list-"] { list-style: none outside none; }

/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */

.logo { position: relative; display: inline-block; width: 211px; height: 43px; background-size: cover; background-position: center center; z-index: 1; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.logo { display: inline-block; width: 133px; height: 34px; background-size: cover; background-position: center center; }
	.logo--alt { width: 133px; height: 26px; }
}

/* ------------------------------------------------------------ *\
	Logo Alt
\* ------------------------------------------------------------ */

.logo-alt { display: inline-block; width: 101px; height: 38px; background-size: cover; background-position: center center; }

/* ------------------------------------------------------------ *\
	Logo Large
\* ------------------------------------------------------------ */

.logo-large { display: inline-block; width: 159px; height: 61px; background-size: cover; background-position: center center; }

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.nav { padding: 22px 40px; margin: 0 24px 0 0; line-height: 1; border-radius: 33px; background-color: #0c1e1f; font-size: 16px; text-transform: uppercase; }

.nav ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.nav li + li { margin-left: 35px; }

.nav a { display: inline-block; position: relative; text-decoration: none; color: #fff; -webkit-transition: color .3s; -o-transition: color .3s; transition: color .3s; }

.nav a:after { content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background-color: #bdd02b; -webkit-transition: right .3s ease; -o-transition: right .3s ease; transition: right .3s ease; }

.nav a:hover { color: #bdd02b; }

.nav a:hover:after { right: 0; }

/* Small Desktop */

@media (max-width: 1330px) {
	.nav { margin: 0; }
}

/* Small Desktop */

@media (max-width: 1200px) {
	.nav li + li { margin-left: 20px; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.nav { display: none; }
}

/* ------------------------------------------------------------ *\
	Nav Alt
\* ------------------------------------------------------------ */

.nav-alt { padding: 3px 3px 0 0; }

.nav-alt ul { display: -webkit-box; display: -ms-flexbox; display: flex; }

.nav-alt li ~ li { margin-left: 45px; }

.nav-alt a { position: relative; font-size: 16px; text-transform: uppercase; line-height: 2.25; color: #525252; -webkit-transition: color .4s ease; -o-transition: color .4s ease; transition: color .4s ease; }

.nav-alt a:before { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px; background-color: #1eb8e5; -webkit-transition: right .2s ease; -o-transition: right .2s ease; transition: right .2s ease; }

.nav-alt a:hover { color: #1eb8e5; }

.nav-alt a:hover:before { right: 0; }

.nav-alt .current a { font-weight: 600; color: #1eb8e5; }

.nav-alt .current a:before { right: 0; background-color: #1eb8e5; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.nav-alt { display: none; position: absolute; height: 100vh; top: 100%; left: 0; right: 0; padding: 10px; background-color: #fff; -webkit-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.16); box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.16); }
	.nav-alt ul { display: block; text-align: center; }
	.nav-alt li ~ li { margin: 10px 0 0; }
	.nav-alt a { font-size: 14px; line-height: 1.2; }
}

/* ------------------------------------------------------------ *\
	Nav Widget
\* ------------------------------------------------------------ */

.nav-widget a { position: relative; display: inline-block; font-size: 16px; line-height: 2.5; color: #1eb8e5; font-weight: 400; -webkit-transition: color .2s; -o-transition: color .2s; transition: color .2s; }

.nav-widget a .ico-arrow-right { position: absolute; top: 0; left: -24px; width: 14px; height: 14px; opacity: 0; -webkit-transform: translateX(-10px); -ms-transform: translateX(-10px); transform: translateX(-10px); -webkit-transition: opacity .4s ease, -webkit-transform .4s ease; transition: opacity .4s ease, -webkit-transform .4s ease; -o-transition: opacity .4s ease, transform .4s ease; transition: opacity .4s ease, transform .4s ease; transition: opacity .4s ease, transform .4s ease, -webkit-transform .4s ease; }

.nav-widget a .ico-arrow-right img { width: 100%; }

.nav-widget a:hover { color: #6f6f6f;  }

.nav-widget a:hover .ico-arrow-right { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }

.nav-widget .current a { color: #525252; font-weight: 600; }

.nav-widget .current a .ico-arrow-right { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.nav-widget { padding: 0 20px; }
}

/* ------------------------------------------------------------ *\
	Nav Trigger
\* ------------------------------------------------------------ */

.nav-trigger { position: relative; display: none; width: 30px; height: 22px; }

.nav-trigger span { position: absolute; display: block; height: 3px; width: 100%; border-radius: 4px; background: #bdd02b; -webkit-transition: top .2s .25s, opacity .2s .25s, -webkit-transform .2s 0s; transition: top .2s .25s, opacity .2s .25s, -webkit-transform .2s 0s; -o-transition: top .2s .25s, opacity .2s .25s, transform .2s 0s; transition: top .2s .25s, opacity .2s .25s, transform .2s 0s; transition: top .2s .25s, opacity .2s .25s, transform .2s 0s, -webkit-transform .2s 0s; }

.nav-trigger span:nth-child(1) { top: 0; }

.nav-trigger span:nth-child(2) { top: 6px; }

.nav-trigger span:nth-child(3) { top: 12px; }

.nav-trigger--active span { -webkit-transition: background .2s, top .2s, opacity .2s, -webkit-transform .2s .25s; transition: background .2s, top .2s, opacity .2s, -webkit-transform .2s .25s; -o-transition: background .2s, top .2s, opacity .2s, transform .2s .25s; transition: background .2s, top .2s, opacity .2s, transform .2s .25s; transition: background .2s, top .2s, opacity .2s, transform .2s .25s, -webkit-transform .2s .25s; }

.nav-trigger--active span:nth-child(3),
.nav-trigger--active span:nth-child(1) { top: 6px; }

.nav-trigger--active span:nth-child(2) { opacity: 0; }

.nav-trigger--active span:nth-child(1) { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); }

.nav-trigger--active span:nth-child(3) { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.nav-trigger { display: inline-block; }
}

/* ------------------------------------------------------------ *\
	Section Info
\* ------------------------------------------------------------ */

.section-info { padding: 109px 0 100px; }

.section-info h2 { margin: 0 0 -1px; line-height: 1.35; }

.section-info h3 { margin: 0 0 8px; line-height: 1.35; }

.section-info .section__description { max-width: 380px; line-height: inherit; }

.section-info .section__entry { padding: 5px 0 0 13px; }

.section-info .section__entry p { font-weight: 600; color: #6f6f6f; }

.section-info .section__actions { padding: 38px 13px 0; }

.section-info--small { padding: 94px 0 11px; }

.section-info--small p { font-size: 20px; line-height: 1.6; }

.section-info--small .section__entry { padding: 2px 0 0 14px; }

.section-info--small .section__head { margin: 0 0 9px; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-info { padding: 40px 0; }

	.section-info .cols { display: block; margin: 0; }
	.section-info .col { max-width: 100%; padding: 0; }
	.section-info .section__entry { padding: 10px 0 0 0px; }

	.section-info--small p { font-size: 17px; line-height: 1.6; }
}

/* ------------------------------------------------------------ *\
	Section Bar
\* ------------------------------------------------------------ */

.section-bar { height: 240px; background-color: #224549; color: #fff; }

.section-bar .shell { display: -webkit-box; display: -ms-flexbox; display: flex; height: 100%; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.section-bar .section__aside { position: relative; width: 27%; text-align: center; }

.section-bar .section__aside:after { content: ''; position: absolute; right: 0; top: 50%; height: 160px; margin-top: -80px; width: 1px; background-color: #fff; }

.section-bar .section__aside:last-child:after { right: auto; left: 0; }

.section-bar .section__aside--alt { position: relative; width: 23%; text-align: center; }

.section-bar .section__content { width: 52%; padding: 0 47px; }

.section-bar .section__entry { opacity: .59; margin-bottom: 0; }

.section-bar .section__entry small { font-weight: 600; }

.section-bar .section__subtitle { font-size: 16px; font-weight: 600; margin-bottom: 0; line-height: 1.1; }

.section-bar .section__actions { padding-top: 15px; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-bar { height: auto; padding: 30px 0; }
	.section-bar .shell { display: block; }
	.section-bar .section__aside { max-width: 100%; width: 100%; }
	.section-bar .section__aside:after { display: none; }
	.section-bar .section__content { width: 100%; padding: 20px 47px; text-align: center; }
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */

.section { padding: 85px 0 90px; background-size: 100% auto; background-position: 50% 400px; background-repeat: no-repeat; }

.section .section__head { text-align: center; margin-bottom: 45px; }

.section .section__actions { text-align: center; }

.section .section__actions .btn--wide { padding: 0 51px; }

.section .section__actions--alt { padding: 18px 0; }

.section .section__actions--alt .btn { padding: 0 57px; }

.section--dark { background-color: #f7f7f7; }

.section--tabs .section__head { margin: 0 0 44px; }

.section--tabs .section__head h5 { color: #6f6f6f; }

.section--tabs .section__title { margin: 0 0 8px; }

.section--tabs .shell { max-width: 1134px; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section { padding: 40px 0; background-size: 100% auto; background-position: 50% 400px; background-repeat: no-repeat; }
}

/* ------------------------------------------------------------ *\
	Section Services
\* ------------------------------------------------------------ */

.section-services { padding: 90px 0 102px; background-size: cover; background-position: center center; }

.section-services .section__foot { padding: 48px 0 0; }

.section-services .section__foot-entry { max-width: 1114px; margin: 0 auto; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-services { padding: 40px 0; background-size: cover; background-position: center center; }
}

/* ------------------------------------------------------------ *\
	Section Widget
\* ------------------------------------------------------------ */

.section-widget { position: relative; padding: 47px 0 127px; background-size: contain; background-position: center center; }

.section-widget .shell { position: relative; z-index: 3; }

.section-widget:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255, 0)), color-stop(60%, rgba(255,255,255, 1))); background: -o-linear-gradient(top, rgba(255,255,255, 0) 0%, rgba(255,255,255, 1) 60%); background: linear-gradient(to bottom, rgba(255,255,255, 0) 0%, rgba(255,255,255, 1) 60%); z-index: 2; }

.section-widget .section-widget__background { position: absolute; top: 0; left: 0; width: 100%; height: 500px; background-position: center top; background-size: cover; z-index: 1; }

.section-widget h2 { margin: 0 0 10px; }

.section-widget h4 { margin: 0 0 1px; font-weight: 400; }

.section-widget p { margin: 0 0 32px; color: #6f6f6f; }

.section-widget .blockquote { padding: 15px 0 27px; text-align: right; }

.section-widget blockquote { display: inline-block; max-width: 60%; color: #bdd02b; font-size: 22px; line-height: 1.73; text-align: left; font-style: italic; }

.section-widget .section-widget__inner { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; z-index: 1; }

.section-widget .section-widget__sidebar { -webkit-box-flex: 0; -ms-flex: 0 0 275px; flex: 0 0 275px; max-width: 275px; padding: 79px 50px 0 57px; }

.section-widget .section-widget__content { -webkit-box-flex: 1; -ms-flex: 1 1; flex: 1 1; padding: 0 163px 0 47px; }

.section-widget .section-widget__group ul { padding-left: 8px; list-style-type: none; }

.section-widget .section-widget__group ul li { position: relative; padding: 0 0 0 16px; }

.section-widget .section-widget__group ul li:before { content: ''; position: absolute; left: -7px; top: 13px; display: inline-block; width: 5px; height: 5px; background-color: #6f6f6f; }

.section-widget .section-widget__group ~ .section-widget__group { margin: 68px 0 0; }

.section-widget .section-widget__actions { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 18px 0 7px; }

.section-widget .section-widget__image-caption { padding: 15px 0 0; }

.section-widget .section-widget__image-caption p { font-size: 13px; font-weight: 600; line-height: 1.69; }

.section-widget--alt:before { background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255, 0)), color-stop(20%, rgba(255,255,255, 1))); background: -o-linear-gradient(top, rgba(255,255,255, 0) 0%, rgba(255,255,255, 1) 20%); background: linear-gradient(to bottom, rgba(255,255,255, 0) 0%, rgba(255,255,255, 1) 20%); }

.section-widget--offset-bottom { padding: 47px 0 66px; }

.section-widget--revers { padding: 87px 0 127px; }

.section-widget--revers .section-widget__inner { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }

.section-widget--revers .section-widget__sidebar { -webkit-box-flex: 0; -ms-flex: 0 0 275px; flex: 0 0 275px; max-width: 275px; padding: 47px 65px 0 10px; }

.section-widget--revers .section-widget__content { -webkit-box-flex: 1; -ms-flex: 1 1; flex: 1 1; padding: 0 56px 0 109px; }

.section-widget--detailed { padding: 46px 0 140px; }

.section-widget--detailed h2 { margin: 0 0 10px; line-height: 1.28; }

.section-widget--detailed h4 { margin: 0 0 5px; font-weight: 400; }

.section-widget--detailed .breadcrumbs { margin: 0 0 20px; }

.section-widget--detailed .section-widget__sidebar { -webkit-box-flex: 0; -ms-flex: 0 0 275px; flex: 0 0 275px; max-width: 275px; padding: 88px 65px 0 0px; }

.section-widget--detailed .section-widget__content .data { display: block; margin: 0 0 11px; font-size: 16px; color: #6f6f6f; }

.section-widget--detailed .section-widget__content p { margin: 0 0 33px; }

.section-widget--detailed .section-widget__group ~ .section-widget__group { margin-top: 20px; }

.section-widget--detailed .section-widget__image { margin: 39px 0; }

.section-widget--detailed .section-widget__actions { padding: 15px 0 0; }

.section-widget--detailed .section-widget__actions .btn { height: 40px; min-width: 162px; line-height: 40px; font-size: 13px; font-weight: 600; }

.section-widget--trail-detail { padding: 46px 0 108px; }

.section-widget--trail-detail h2 { margin: 0 0 11px; }

.section-widget--trail-detail h4 { margin: 0 0 11px; line-height: 1.13; }

.section-widget--trail-detail .breadcrumbs { margin: 0 0 8px; }

.section-widget--trail-detail .section__image { margin: 61px 0 -7px; }

/* Small Desktop */

@media (max-width: 1200px) {
	.section-widget .section-widget__sidebar { -webkit-box-flex: 0; -ms-flex: 0 0 275px; flex: 0 0 275px; max-width: 275px; padding: 77px 30px 0 35px; }
	.section-widget .section-widget__content { padding: 0 100px 0 56px; }

	.section-widget--revers .section-widget__content { padding: 0 30px 0 50px; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-widget { position: relative; padding: 30px 0; background-size: contain; background-position: center center; }
	.section-widget .section-widget__inner { position: relative; display: block; z-index: 1; }
	.section-widget .section-widget__sidebar { max-width: 100%; padding: 0px 10px; }
	.section-widget .section-widget__content { -webkit-box-flex: 1; -ms-flex: 1 1; flex: 1 1; padding: 10px 20px; }
	.section-widget .section-widget__group ~ .section-widget__group { margin: 20px 0 0; }

	.section-widget blockquote { display: inline-block; max-width: 90%; color: #bdd02b; font-size: 16px; line-height: 1.43; }

	.section-widget .section-widget__group ul li:before { content: ''; position: absolute; left: -7px; top: 11px; display: inline-block; width: 5px; height: 5px; background-color: #6f6f6f; }


	.section-widget--alt .section-widget__content { -webkit-box-flex: 1; -ms-flex: 1 1; flex: 1 1; padding: 10px 0px; }

	.section-widget .section-widget__actions { display: block; padding: 18px 0 7px; }
	.section-widget .section-widget__actions .logo-large { margin: 0 0 10px; }

	.section-widget--detailed .section-widget__content p { margin: 0 0 15px; }

}

/* ------------------------------------------------------------ *\
	Section Partners
\* ------------------------------------------------------------ */

.section-partners { padding: 101px 0 141px; background-color: #f7f7f7; text-align: right; }

.section-partners h4 { margin: 0 0 19px; font-weight: 400; line-height: 1.13; }

.section-partners p { font-size: 16px; line-height: 1; }

.section-partners a { font-size: 16px; line-height: 1; -webkit-transition: color .4s ease; -o-transition: color .4s ease; transition: color .4s ease; }

.section-partners a:hover { opacity: .7; }

.section-partners .section-partners__inner { display: inline-block; padding: 0 10px 0 0; width: 919px; text-align: left; }

.section-partners .section-partners__content { padding: 50px 54px 53px; background-color: #fff; border-radius: 5px; -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); }

.section-partners .section-partners__group { padding: 17px 20px; border-radius: 5px; }

.section-partners .section-partners__group:nth-child(odd) { background-color: #f7f7f7; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-partners { padding: 40px 0; background-color: #f7f7f7; text-align: right; }
	.section-partners p { font-size: 14px; line-height: 1; }
	.section-partners a { font-size: 14px; line-height: 1; -webkit-transition: color .4s ease; -o-transition: color .4s ease; transition: color .4s ease; }
	.section-partners .section-partners__inner { display: inline-block; padding: 0; width: 100%; text-align: left; }
	.section-partners .section-partners__content { padding: 30px 10px; background-color: #fff; border-radius: 5px; -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); }
}

/* ------------------------------------------------------------ *\
	Section Info Alt
\* ------------------------------------------------------------ */

.section-info-alt { position: relative; background-size: cover; background-position: center center; }

.section-info-alt .shell { position: relative; z-index: 3; }

.section-info-alt .section-info-alt__background { position: absolute; top: 0; left: 0; width: 100%; height: 350px; background-position: center top; background-size: cover; z-index: 1; }

.section-info-alt:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255, 0)),color-stop(60%, rgba(255,255,255, 0)), to(rgba(255,255,255, 1))); background: -o-linear-gradient(top, rgba(255,255,255, 0) 0%,rgba(255,255,255, 0) 60%, rgba(255,255,255, 1) 100%); background: linear-gradient(to bottom, rgba(255,255,255, 0) 0%,rgba(255,255,255, 0) 60%, rgba(255,255,255, 1) 100%); z-index: 2; }

.section-info-alt h2 { margin: 0 0 13px; }

.section-info-alt p { font-size: 18px; line-height: 1.78; font-weight: 600; color: #6f6f6f }

.section-info-alt .section__inner { position: relative; z-index: 1; padding: 107px 56px 18px; }

.section-info-alt .section__body { display: -webkit-box; display: -ms-flexbox; display: flex; }

.section-info-alt .section__entry { -webkit-box-flex: 0; -ms-flex: 0 0 47%; flex: 0 0 47%; max-width: 47%; padding: 0 0 0 5px; }

.section-info-alt .section__content { -webkit-box-flex: 0; -ms-flex: 0 0 53%; flex: 0 0 53%; max-width: 53%; padding: 4px 29px 0 7px; }

.section-info-alt .section__entry ul { list-style: none; }

.section-info-alt .section__entry ul li { position: relative; padding: 0 0 0 5px; color: #bdd02b; font-style: italic; font-size: 22px; line-height: 1.73; }

.section-info-alt .section__entry ul li:before { content: ''; position: absolute; left: -7px; top: 17px; display: inline-block; width: 5px; height: 5px; background-color: #bdd02b; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-info-alt p { font-size: 15px; }
	.section-info-alt .section__body { display: block; }
	.section-info-alt .section__entry { max-width: 100%; padding: 0 0 0 5px; }
	.section-info-alt .section__entry ul li { position: relative; padding: 0 0 0 5px; color: #bdd02b; font-style: italic; font-size: 18px; line-height: 1.73; }

	.section-info-alt .section__content { max-width: 100%; padding: 20px 10px 0; }

	.section-info-alt .section__inner { position: relative; z-index: 1; padding: 50px 20px 0px; }

	.section-info-alt .section__entry ul li:before { content: ''; position: absolute; left: -7px; top: 13px; display: inline-block; width: 5px; height: 5px; background-color: #bdd02b; }
}

/* ------------------------------------------------------------ *\
	Section Contact
\* ------------------------------------------------------------ */

.section-contact { position: relative; padding: 46px 0; }

.section-contact .shell { position: relative; z-index: 3; }

.section-contact .section-contact__background { position: absolute; top: 0; left: 0; width: 100%; height: 500px; background-position: center top; background-size: cover; z-index: 1; }

.section-contact a:not([class]):hover { text-decoration: underline; }

.section-contact:before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255, 0)),color-stop(30%, rgba(255,255,255, .7)), color-stop(80%, rgba(255,255,255, 1))); background: -o-linear-gradient(top, rgba(255,255,255, 0) 0%,rgba(255,255,255, .7) 30%, rgba(255,255,255, 1) 80%); background: linear-gradient(to bottom, rgba(255,255,255, 0) 0%,rgba(255,255,255, .7) 30%, rgba(255,255,255, 1) 80%); z-index: 2; }

.section-contact:after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 314px; background-color: #f7f7f7; }

.section-contact .cols { display: -webkit-box; display: -ms-flexbox; display: flex; margin: 0 -45px; }

.section-contact .col { padding: 0 45px; }

.section-contact .col--1of2 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }

.section-contact .col--1of3 { -webkit-box-flex: 0; -ms-flex: 0 0 33.33%; flex: 0 0 33.33%; max-width: 33.33%; }

.section-contact h2 { margin: 0 0 10px; }

.section-contact h4 { margin: 0 0 17px; font-weight: 400; }

.section-contact h6 { margin: 0 0 8px; font-weight: 600; }

.section-contact .section-contact__inner { position: relative; z-index: 1; text-align: right; }

.section-contact .section-contact__content { display: inline-block; max-width: 910px; padding: 0 120px 0 0; text-align: left; }

.section-contact .section-contact__group ~ .section-contact__group { margin: 61px 0 0; }

.section-contact .section-contact__entry { padding: 89px 60px; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.section-contact .section-contact__content { display: inline-block; max-width: 100%; padding: 0; text-align: left; }

	.section-contact .cols { display: block; margin: 0; }
	.section-contact .col { padding: 0; max-width: 100%; }

	.section-contact .section-contact__entry { padding: 30px 10px; }

	.section-contact .section-contact__group ~ .section-contact__group { margin: 20px 0 0; }
}

/* ------------------------------------------------------------ *\
	Services
\* ------------------------------------------------------------ */

.services .cols { margin: 0 -25px; }

.services .col { padding: 0 25px; }

.services .services__actions { text-align: right; }

/* Services Alt */

.services--alt { padding: 36px 0 12px; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.services .cols { display: block; margin: 0; }
	.services .col { padding: 0; max-width: 100%; }

	.services .services__actions { padding: 10px 0; text-align: center; }

	.services--alt { padding: 12px 0 12px; }

}

/* ------------------------------------------------------------ *\
	Service
\* ------------------------------------------------------------ */

.service { display: -webkit-box; display: -ms-flexbox; display: flex; margin: 0 0 48px; color: #6f6f6f; font-size: 16px; font-weight: 400; line-height: 2; }

.service span { position: absolute; left: 36px; top: 25px; color: #bdd02b; font-size: 48px; line-height: 1.13; }

.service h4 { margin: 0 0 14px; color: #1e1e1e; font-weight: 400; line-height: 1.13; }

.service p { margin: 0 0 5px; }

.service em { font-size: 22px; line-height: 1.73; color: #bdd02b; }

.service .service__ico { position: relative; -webkit-box-flex: 0; -ms-flex: 0 0 106px; flex: 0 0 106px; max-width: 106px; }

.service .service__ico:before { content: ''; position: absolute; top: 52px; right: -12px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); width: 13px; height: 2px; background-color: #224549; }

.service .service__ico:after { content: ''; position: absolute; top: 52px; right: -26px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); width: 15px; height: 15px; background-color: #224549; border-radius: 50%; }

.service .service__content { position: relative; -webkit-box-flex: 0; -ms-flex: 0 0 1; flex: 0 0 1; padding: 33px 0 0 109px; }

.service .service__actions { padding: 4px 0px; margin-left: -5px; }

.service .service__actions a { display: inline-block; position: relative; color: #1eb8e5; text-transform: uppercase; font-weight: 600; line-height: 2.25; -webkit-transition: color .4s ease; -o-transition: color .4s ease; transition: color .4s ease; }

.service .service__actions a:after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0px; height: 1px; background-color: #1eb8e5; -webkit-transition: right .3s ease; -o-transition: right .3s ease; transition: right .3s ease; }

.service .service__actions a:hover:after { right: 0; }

/* Service Alt */

.service--alt { margin: 0 0 0px; }

.service--alt ~ .service--alt { margin: 60px 0 0; }

.service--alt h4 { margin: 0 0 15px; }

.service--alt p { margin: 0 0 21px; font-size: 18px; line-height: 1.78; }

.service--alt .service__content { position: relative; -webkit-box-flex: 0; -ms-flex: 0 0 1; flex: 0 0 1; padding: 30px 40px 0 51px; }

/* Small Desktop */

@media (max-width: 1200px) {
	.service--alt .service__content { position: relative; -webkit-box-flex: 0; -ms-flex: 0 0 1; flex: 0 0 1; padding: 30px 0px 0 51px; }
}

/* Tablet Portrait */

@media (max-width: 1023px) {
	.service { display: block; margin: 0 0 20px; font-size: 14px; line-height: 1.4; }
	.service em { font-size: 18px; line-height: 1.5; }
	.service .service__ico { position: relative; max-width: 106px; margin: 0 auto 20px; text-align: center; }

	.service .service__ico:before { content: ''; position: absolute; top: 106%; right: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 2px; height: 20px; background-color: #224549; }
	.service .service__ico:after { content: ''; position: absolute; top: 121%; right: 38%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 15px; height: 15px; background-color: #224549; border-radius: 50%; }

	.service .service__content { position: relative; padding: 33px 0 0 0; text-align: center; }

	.service--alt p { margin: 0 0 21px; font-size: 16px; line-height: 1.4; }

	.service--alt ~ .service--alt { margin: 20px 0 0; }

}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */

.socials { padding-top: 17px; font-size: 13px; }

.socials ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; list-style-type: none; }

.socials li + li { margin-left: 5px; }

/* ------------------------------------------------------------ *\
	tabs
\* ------------------------------------------------------------ */

.tabs { text-align: center; }

.tabs .tabs__head { padding-bottom: 30px; }

.tabs .tabs__nav { display: -webkit-box; display: -ms-flexbox; display: flex; list-style-type: none; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }

.tabs .tabs__nav li { width: 16.66%; }

.tabs .tabs__nav-item { display: block; text-decoration: none; color: inherit; }

.tabs .tabs__nav-item-image { display: inline-block; width: 106px; height: 106px; line-height: 94px; border-radius: 50%; border: 3px solid #f7f7f7; -webkit-transition: background-color .3s, border-color .3s; -o-transition: background-color .3s, border-color .3s; transition: background-color .3s, border-color .3s; }

.tabs .tabs__nav-item-text { display: block; margin-top: 12px; text-transform: uppercase; font-size: 16px; text-transform: uppercase; font-weight: 600; opacity: .5; -webkit-transition: opacity .3s; -o-transition: opacity .3s; transition: opacity .3s; }

.tabs .tabs__nav-item-image .hover { display: none; }

.tabs .current .tabs__nav-item .tabs__nav-item-image { background-color: #224549; border-color: #224549; }

.tabs .tabs__nav-item:hover .tabs__nav-item-image { border-color: #224549; background-color: #224549; }

.tabs .tabs__nav-item:hover img { display: none; }

.tabs .tabs__nav-item:hover .hover { display: inline-block; }

.tabs .current .tabs__nav-item .tabs__nav-item-text,
.tabs .tabs__nav-item:hover .tabs__nav-item-text { opacity: 1; font-weight: 700; color: #525252; }

.tabs .current .tabs__nav-item img { display: none; }

.tabs .current .tabs__nav-item .hover { display: inline-block; }

/* Tablet Portrait */

@media (max-width: 1023px) {
	.tabs .tabs__nav li { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; margin: 0 0 10px; }
	.tabs .tabs__nav-item-text { display: block; margin-top: 3px; text-transform: uppercase; font-size: 13px; }
	.tabs .tabs__nav-item-image { width: 90px; height: 90px; line-height: 82px; }
	.tabs .tabs__nav-item-image img { -webkit-transform: scale(.8); -ms-transform: scale(.8); transform: scale(.8); }
}

/* ------------------------------------------------------------ *\
	Tab
\* ------------------------------------------------------------ */

.tab { padding: 32px 20px 50px; -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05); background-color: #fff; display: none; }

.tab.active { display: block; }

.tab .tab__inner { max-width: 816px; margin: 0 auto; }

.tab .tab__entry { color: #6f6f6f; }

.tab .tab__entry p { margin: 0; }

.tab .tab__entry p + p { margin-top: 20px; }

.tab .tab__actions { padding-top: 38px; }

.tab .tab__head { padding-bottom: 20px; }

/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */

.table { margin: 0 0 25px; }

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

.table td { padding: 2px 0 4px; font-size: 15px; color: #6f6f6f; }

.table a { font-size: 13px; color: #00b0ff; }

/* ------------------------------------------------------------ *\
	Widget
\* ------------------------------------------------------------ */

.widgets { list-style: none outside none; }

/* ------------------------------------------------------------ *\
	Widget Nav
\* ------------------------------------------------------------ */

.widget-nav .widget-nav__body h5 { margin: 0 0 6px; }

/* ------------------------------------------------------------ *\
	Themes
\* ------------------------------------------------------------ */

