@charset "UTF-8";
/* https://engageinteractive.co.uk/blog/top-10-scss-mixins */
/* my mixins */
/* AFFIL2020 */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap");
body {
  font-family: 'Barlow', sans-serif; }

.ui-widget,
textarea, input {
  font-family: 'Barlow', sans-serif; }

.font-secondary {
  font-family: 'Exo 2', sans-serif; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/* VARIABLES */
/* COLORS */
/* old */
/* blog */
/* */
/* BODY */
html, body {
  margin: 0px;
  padding: 0px;
  text-align: left; }

body {
  -webkit-text-size-adjust: 100%; }

/* EXTRA RESET */
a {
  outline: none;
  cursor: pointer;
  -ms-user-select: none; }

* {
  background-repeat: no-repeat; }

textarea, input {
  outline: none; }

b, strong {
  font-weight: 700; }

/* LAYOUT HELPERS */
.cb, .clr {
  clear: both;
  font-size: 1px;
  line-height: 1px; }

.fl {
  float: left; }

.fr {
  float: right; }

.nowrap, .nobr {
  white-space: nowrap; }

.tal, .text-left {
  text-align: left; }

.tar, .text-right {
  text-align: right; }

.tac, .text-center {
  text-align: center; }

*, :before, :after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*-webkit-backface-visibility:hidden;*/ }

/* CONTENT */
html {
  min-width: 320px;
  overflow: auto !important; }

body {
  background: #fff;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #2f2d36;
  min-width: 320px;
  overflow: hidden; }

@media (max-width: 991px) {
  body {
    font-size: 17px; } }
@media (max-width: 767px) {
  body {
    font-size: 16px; } }
* {
  font-feature-settings: "liga" 0; }

a {
  color: #2f2d36; }

hr {
  margin-top: 0px;
  margin-bottom: 50px; }

img {
  max-width: 100%;
  height: auto; }

@media (min-width: 1200px) {
  .container {
    max-width: 1440px; } }
/* GRID */
.container {
  max-width: 1400px !important; }

/*a.more {
	@include font(18px,1.2,700);
	position:relative;
	display:inline-block;
	padding-left:40px;
	color:$blueDark;
	transition:all 0.25s linear;

	&:before {
		content:'+';
		@include fc();
		@include font(20px,1,900);
		@include pa(-4px,auto,auto,0px);
		width:30px;
		height:30px;
		border:3px $blueLight solid;
		color:$blueLight;
		border-radius:50%;
		transition:all 0.25s linear;
	}
	&:hover {
		text-decoration:none;

		&:before {
			transform:scale(1.15);
			color:$white;
			background:$blueLight;
		}
	}
}
a.back {
	@include font(18px,1.2,700);
	position:relative;
	display:inline-block;
	padding-left:40px;
	color:$blueDark;
	transition:all 0.25s linear;

	&:before {
		content:'';
		background:transparent;
		background-size:14px 16px;
		@include pa(-4px,auto,auto,0px);
		width:30px;
		height:30px;
		border:3px $blueLight solid;
		color:$blueLight;
		border-radius:50%;
		transition:all 0.25s linear;
	}
	&:after {
		content:'';
		background:transparent url('../gfx/icon/zpet.svg') 6px center no-repeat;
		background-size:14px 16px;
		@include pa(-4px,auto,auto,0px);
		width:30px;
		height:30px;
		border:none;
		color:$blueLight;
		border-radius:50%;
		transition:all 0.25s linear;
	}
	&:hover {
		text-decoration:none;

		&:before {
			transform:scale(1.15);
			color:$white;
			background:$blueLight;
		}
		&:after {
			transform:scale(1.15);
			color:$white;
			filter: brightness(0) invert(1);
		}
	}
}
*/
.breadcrumb {
  padding: 15px 0px 15px 0px;
  margin-bottom: 0px;
  background: transparent; }
  .breadcrumb .container .row .col-12 a.home .icon.icon-home {
    font-size: 15px;
    color: #f7a92f; }
  .breadcrumb .container .row .col-12 a {
    color: #f7a92f; }
    .breadcrumb .container .row .col-12 a:after {
      content: '\0047';
      font-family: 'ceskysteak';
      transform: rotate(-90deg);
      font-size: 9px;
      margin-left: 4px;
      position: relative;
      top: -1px;
      display: inline-block;
      color: #2f2d36; }
    .breadcrumb .container .row .col-12 a:last-of-type {
      color: #2f2d36;
      cursor: auto; }
      .breadcrumb .container .row .col-12 a:last-of-type:hover {
        text-decoration: none; }
      .breadcrumb .container .row .col-12 a:last-of-type:after {
        display: none; }

@media (max-width: 767px) {
  .breadcrumb {
    background: #e8e3da; } }
.header {
  background: #eff9fd;
  z-index: 9999;
  position: relative; }
  .header .col-12 {
    height: 85px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .header .col-12 .logo {
      margin-right: 50px; }
      .header .col-12 .logo img {
        width: 95px;
        height: auto; }
    .header .col-12 .menu-toggle {
      display: none; }
    .header .col-12 .nav ul {
      list-style-type: none;
      margin: 0px;
      padding: 0px;
      display: flex;
      align-items: center; }
      .header .col-12 .nav ul li {
        list-style-type: none;
        margin: 0px;
        padding: 0px; }
      .header .col-12 .nav ul li {
        margin: 0px 20px; }
        .header .col-12 .nav ul li a {
          color: #2f2d36;
          text-decoration: none;
          font-size: 17px;
          line-height: 1.2;
          font-weight: 400;
          text-transform: uppercase; }
          .header .col-12 .nav ul li a:hover {
            text-decoration: underline; }
          .header .col-12 .nav ul li a:hover {
            color: #1a2c76;
            text-decoration: underline; }
        .header .col-12 .nav ul li.current-menu-item a {
          color: #1a2c76; }
    .header .col-12 .nav.nav-right {
      margin-left: auto; }
      .header .col-12 .nav.nav-right ul li {
        position: relative;
        margin: 0px 2px; }
        .header .col-12 .nav.nav-right ul li:after {
          background: #1a2c76;
          content: '';
          position: absolute;
          top: 15px;
          right: 0px;
          bottom: -31px;
          left: 0px;
          display: block;
          opacity: 0; }
        .header .col-12 .nav.nav-right ul li a {
          padding: 10px 20px;
          position: relative;
          z-index: 5; }
        .header .col-12 .nav.nav-right ul li.active a {
          background: #1a2c76;
          color: #fff;
          border-radius: 40px; }
        .header .col-12 .nav.nav-right ul li.active:after {
          opacity: 1; }
      .header .col-12 .nav.nav-right ul li.middle {
        margin: 0px 0px; }
        .header .col-12 .nav.nav-right ul li.middle a {
          background: #1a2c76;
          color: #fff;
          border-radius: 40px;
          padding: 10px 20px; }
          .header .col-12 .nav.nav-right ul li.middle a:hover {
            color: #fff;
            background: #0d0f4e;
            text-decoration: none; }
        .header .col-12 .nav.nav-right ul li.middle.active a:hover {
          background: #1a2c76; }

@media (max-width: 1070px) {
  .header .col-12 .nav.nav-right ul li.active:after {
    display: none; }

  .header .col-12 .nav {
    position: absolute;
    background: #eff9fd;
    left: 0px;
    right: 0px;
    transform: translateX(100%);
    transition: all 0.5s linear; }
    .header .col-12 .nav.nav-main {
      top: 85px;
      height: 89px; }
    .header .col-12 .nav.nav-right {
      top: calc(85px + 89px); }
    .header .col-12 .nav.active {
      transform: translateX(0%); }
    .header .col-12 .nav ul {
      padding-bottom: 20px;
      display: block; }

  .header .col-12 .nav.nav-right ul li:first-of-type.active,
  .header .col-12 .nav.nav-right ul li.middle {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 15px; }

  .header .col-12 .menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 25px;
    right: 15px;
    bottom: auto;
    left: auto; }
    .header .col-12 .menu-toggle span {
      position: absolute;
      top: 0px;
      right: 0px;
      bottom: auto;
      left: 0px;
      display: block;
      height: 1px;
      background: #1a2c76;
      transition: all 0.25s linear; }
      .header .col-12 .menu-toggle span:nth-of-type(1) {
        top: 0px; }
      .header .col-12 .menu-toggle span:nth-of-type(2) {
        top: 20px; }
      .header .col-12 .menu-toggle span:nth-of-type(3) {
        top: 39px; }
    .header .col-12 .menu-toggle.active span:nth-of-type(1) {
      transform: rotate(45deg);
      top: 20px; }
    .header .col-12 .menu-toggle.active span:nth-of-type(2) {
      opacity: 0; }
    .header .col-12 .menu-toggle.active span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 20px; } }
.footer {
  background: #52b2e2;
  padding: 35px 0px 180px 0px;
  position: relative; }
  .footer:before {
    content: '';
    background: #131c5f;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .footer .container .row {
    padding: 0px 120px; }
    .footer .container .row > div {
      padding-top: 70px; }
    .footer .container .row .nav.nav-social {
      position: absolute;
      top: 0px;
      right: -105px;
      bottom: auto;
      left: auto; }
      .footer .container .row .nav.nav-social ul {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
        display: flex; }
        .footer .container .row .nav.nav-social ul li {
          list-style-type: none;
          margin: 0px;
          padding: 0px; }
        .footer .container .row .nav.nav-social ul li {
          padding-left: 10px; }
          .footer .container .row .nav.nav-social ul li a {
            display: block;
            width: 42px;
            height: 42px; }
            .footer .container .row .nav.nav-social ul li a.fb {
              background: transparent url("../gfx/icon/fb.png") 0px 0px no-repeat; }
            .footer .container .row .nav.nav-social ul li a.in {
              background: transparent url("../gfx/icon/ln.png") 0px 0px no-repeat; }
            .footer .container .row .nav.nav-social ul li a.yt {
              background: transparent url("../gfx/icon/yt.png") 0px 0px no-repeat; }
    .footer .container .row .logo {
      position: absolute;
      top: 0px;
      right: auto;
      bottom: auto;
      left: -105px; }
      .footer .container .row .logo img {
        width: 95px;
        height: auto;
        filter: brightness(0) invert(1); }
    .footer .container .row .address h2,
    .footer .container .row .nav.nav-footer h2 {
      color: #1a2c76;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 17px; }
    .footer .container .row .address p,
    .footer .container .row .nav.nav-footer p {
      font-size: 17px;
      line-height: 1.2;
      font-weight: 400;
      color: #fff;
      text-transform: uppercase; }
      .footer .container .row .address p a,
      .footer .container .row .nav.nav-footer p a {
        color: #fff;
        text-decoration: none; }
        .footer .container .row .address p a:hover,
        .footer .container .row .nav.nav-footer p a:hover {
          text-decoration: underline; }
    .footer .container .row .address ul,
    .footer .container .row .nav.nav-footer ul {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
      .footer .container .row .address ul li,
      .footer .container .row .nav.nav-footer ul li {
        list-style-type: none;
        margin: 0px;
        padding: 0px; }
      .footer .container .row .address ul li,
      .footer .container .row .nav.nav-footer ul li {
        font-size: 17px;
        line-height: 1.2;
        font-weight: 400;
        margin-bottom: 2px; }
        .footer .container .row .address ul li a,
        .footer .container .row .nav.nav-footer ul li a {
          text-transform: uppercase;
          color: #fff;
          text-decoration: none; }
          .footer .container .row .address ul li a:hover,
          .footer .container .row .nav.nav-footer ul li a:hover {
            text-decoration: underline; }

@media (max-width: 1120px) {
  .footer .container .row {
    padding: 0px 15px; }

  .footer .container .row .logo {
    left: 15px; }

  .footer .container .row .nav.nav-social {
    right: 15px; } }
@media (max-width: 900px) {
  .footer .container .row > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: static; }
  .footer .container .row > div:first-of-type {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .footer .container .row .logo {
    left: 30px;
    top: 40px; }

  .footer .container .row .nav.nav-social {
    right: 30px;
    top: 40px; } }
@media (max-width: 630px) {
  .footer .container .row > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
    padding-top: 20px; }
  .footer .container .row > div:first-of-type {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 70px; } }
.btn {
  border-radius: 30px;
  height: 60px;
  border: none;
  padding: 0px 20px;
  font-size: 17px;
  line-height: 60px;
  font-weight: 400;
  display: inline-block;
  min-width: 241px;
  transition: all 0.25s linear;
  text-transform: uppercase; }
  .btn:focus {
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  .btn.btn-primary {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3989cd+0,66c6eb+39,225fb4+100 */
    background: #3989cd;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #3989cd 0%, #66c6eb 39%, #225fb4 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #3989cd 0%, #66c6eb 39%, #225fb4 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #3989cd 0%, #66c6eb 39%, #225fb4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3989cd', endColorstr='#225fb4',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
    color: #fff;
    -webkit-box-shadow: 0px 67px 15px -27px black;
    -moz-box-shadow: 0px 67px 15px -27px black;
    box-shadow: 0px 67px 15px -27px black; }
    .btn.btn-primary:focus, .btn.btn-primary:hover {
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3989cd+0,66c6eb+39,225fb4+100 */
      background: #3989cd;
      /* Old browsers */
      background: -moz-linear-gradient(-45deg, #69c7eb 0%, #66c6eb 39%, #69c7eb 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(-45deg, #69c7eb 0%, #66c6eb 39%, #69c7eb 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(135deg, #69c7eb 0%, #66c6eb 39%, #69c7eb 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3989cd', endColorstr='#225fb4',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */
      color: #fff; }
  .btn.btn-secondary {
    background: transparent;
    color: #1a2c76;
    border: 2px #1a2c76 solid; }
    .btn.btn-secondary:focus {
      background: transparent;
      color: #1a2c76;
      border: 2px #1a2c76 solid !important; }
    .btn.btn-secondary:hover {
      border: 2px #1a2c76 solid;
      color: #fff;
      background: #1a2c76; }

@media (max-width: 767px) {
  .btn {
    height: 50px;
    padding: 0px 15px;
    font-size: 16px;
    line-height: 50px;
    font-weight: 700;
    min-width: 210px; } }
*::-moz-selection,
h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
p::-moz-selection {
  background-color: #52b2e2;
  color: #fff; }

*::selection,
h1::selection,
h2::selection,
h3::selection,
p::selection {
  background-color: #52b2e2;
  color: #fff; }

.textpage {
  padding: 60px 0px 40px 0px; }
  .textpage.textpage-blue {
    background: #eaf6fa; }
  .textpage .row img {
    max-width: 100%; }
  .textpage .row img {
    margin-bottom: 15px;
    max-width: 100%; }
  .textpage .row .article:after {
    clear: both;
    display: block;
    content: ''; }
  .textpage .row .article h1 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 900;
    color: #2f2d36;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    border: none; }
  .textpage .row .article h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1a2c76;
    margin-bottom: 30px;
    text-align: center; }
  .textpage .row .article h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1a2c76;
    margin-bottom: 30px;
    text-align: center; }
  .textpage .row .article h4 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a2c76;
    margin-bottom: 30px;
    text-align: center; }
  .textpage .row .article h5 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px; }
  .textpage .row .article .excerpt p {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400; }
  .textpage .row .article .featured-image {
    margin-bottom: 20px; }
  .textpage .row .article blockquote {
    margin: 0px;
    padding: 0px;
    padding: 40px 100px;
    border: none !important;
    margin-bottom: 20px;
    text-align: center; }
    .textpage .row .article blockquote p {
      font-size: 24px;
      line-height: 1.3;
      font-weight: 400;
      color: #1a2c76;
      font-style: italic;
      position: relative;
      margin-bottom: 0px;
      display: inline-block; }
      .textpage .row .article blockquote p:before {
        content: '"';
        position: absolute;
        top: -5px;
        right: auto;
        bottom: auto;
        left: -25px;
        font-size: 60px;
        line-height: 0;
        font-weight: 400;
        color: #eff9fd; }
      .textpage .row .article blockquote p:after {
        content: '"';
        position: absolute;
        top: auto;
        right: -25px;
        bottom: -5px;
        left: auto;
        font-size: 60px;
        line-height: 0;
        font-weight: 400;
        color: #eff9fd; }
  .textpage .row .article p {
    margin-bottom: 30px; }
    .textpage .row .article p a {
      color: #2f2d36;
      text-decoration: underline;
      font-weight: 700; }
      .textpage .row .article p a:hover {
        text-decoration: none; }
  .textpage .row .article img {
    max-width: 100%;
    height: auto; }
  .textpage .row .article img.alignleft,
  .textpage .row .article img[align="left"],
  .textpage .row .article img[style*="float: left"],
  .textpage .row .article img[style*="float:left"] {
    margin: 5px 30px 10px 0px;
    float: left; }
  .textpage .row .article img.alignright,
  .textpage .row .article img[align="right"],
  .textpage .row .article img[style*="float: right"],
  .textpage .row .article img[style*="float:right"] {
    margin: 5px 0px 10px 30px;
    float: right; }
  .textpage .row .article ul {
    margin: 0px;
    padding: 0px;
    margin-bottom: 30px;
    padding-top: 0px;
    margin-left: 0px;
    list-style-type: none; }
    .textpage .row .article ul > li {
      padding-left: 39px;
      position: relative;
      margin-bottom: 1px; }
      .textpage .row .article ul > li a {
        color: #2f2d36;
        text-decoration: underline;
        font-weight: 700; }
        .textpage .row .article ul > li a:hover {
          text-decoration: none; }
      .textpage .row .article ul > li:before {
        content: '';
        background: #1a2c76;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        position: absolute;
        top: 1px;
        right: auto;
        bottom: auto;
        left: 0px; }
    .textpage .row .article ul.list li:before {
      display: none; }
    .textpage .row .article ul ul, .textpage .row .article ul ol {
      margin-left: 15px;
      padding-top: 10px;
      margin-bottom: 10px; }
  .textpage .row .article ol {
    margin: 0px;
    padding: 0px;
    margin-bottom: 30px;
    counter-reset: item; }
    .textpage .row .article ol > li {
      counter-increment: item;
      list-style-type: none;
      padding-left: 39px;
      position: relative;
      margin-bottom: 4px; }
      .textpage .row .article ol > li a {
        color: #2f2d36;
        text-decoration: underline;
        font-weight: 700; }
        .textpage .row .article ol > li a:hover {
          text-decoration: none; }
      .textpage .row .article ol > li > ol > li:before {
        background: #52b2e2; }
    .textpage .row .article ol ul, .textpage .row .article ol ol {
      margin-left: 15px;
      padding-top: 10px;
      margin-bottom: 10px; }
    .textpage .row .article ol.list li:before {
      display: none; }
  .textpage .row .article ul ul,
  .textpage .row .article ul ol,
  .textpage .row .article ol ol,
  .textpage .row .article ol ul {
    margin-bottom: 15px; }
  .textpage .row .article ul li ul li:before {
    background: #52b2e2; }
  .textpage .row .article ul li ul li ul li:before {
    background: #eff9fd; }
  .textpage .row .article ol > li:before {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    background: #1a2c76;
    margin-right: 0px;
    font-weight: 700;
    content: counter(item);
    text-align: center;
    position: absolute;
    top: 1px;
    right: auto;
    bottom: auto;
    left: 0px; }
  .textpage .row .article table {
    border-spacing: 0px;
    border-collapse: 0px;
    width: auto;
    width: 100%;
    margin-bottom: 40px; }
    .textpage .row .article table.fl {
      margin-right: 70px !important; }
    .textpage .row .article table.fr {
      margin-left: 70px !important; }
    .textpage .row .article table thead td,
    .textpage .row .article table thead th {
      color: #fff !important;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
      padding-left: 13px !important;
      padding-right: 13px !important;
      height: 50px !important;
      vertical-align: middle;
      background: #1a2c76;
      border-bottom: 3px #fff solid;
      border-right: 5px #fff solid;
      border-left: 5px #fff solid; }
    .textpage .row .article table tr th:first-of-type {
      border-left: none !important; }
    .textpage .row .article table tr th:last-of-type {
      border-right: none !important; }
    .textpage .row .article table td {
      color: #2f2d36;
      text-align: center;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 400;
      padding-left: 13px !important;
      padding-right: 13px !important;
      height: 50px !important;
      background: transparent;
      vertical-align: middle;
      border-bottom: 3px #fff solid !important;
      border-right: 5px #fff solid !important;
      border-left: 5px #fff solid !important; }
    .textpage .row .article table tr td:first-of-type {
      border-left: none !important;
      color: #eff9fd;
      font-weight: 700; }
    .textpage .row .article table tr td:last-of-type {
      border-right: none !important; }
    .textpage .row .article table tr:nth-of-type(even) td {
      background: #eaf6fa; }
    .textpage .row .article table.center td, .textpage .row .article table.center th {
      text-align: center; }
  .textpage .row .article .gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -30px; }
    .textpage .row .article .gallery .gallery-item {
      width: 33.33%;
      padding: 0px 30px; }
      .textpage .row .article .gallery .gallery-item img {
        width: 100%; }

@media (max-width: 991px) {
  .textpage {
    padding: 40px 0px 40px 0px; }
    .textpage .row .article h1 {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 900;
      margin-bottom: 35px;
      padding-bottom: 20px; }
    .textpage .row .article h2 {
      font-size: 32px;
      line-height: 1.2;
      font-weight: 900; }
    .textpage .row .article h3 {
      font-size: 26px;
      line-height: 1.2;
      font-weight: 900; }
    .textpage .row .article h4 {
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700; }
    .textpage .row .article h5 {
      font-size: 20px;
      line-height: 1.3;
      font-weight: 600; }
    .textpage .row .article .excerpt p {
      font-size: 22px;
      line-height: 1.6;
      font-weight: 400; }
    .textpage .row .article blockquote {
      padding: 40px 90px;
      margin-bottom: 20px; }
      .textpage .row .article blockquote p {
        font-size: 17px;
        line-height: 1.3;
        font-weight: 400; }
    .textpage .row .article p {
      margin-bottom: 25px; }
    .textpage .row .article table {
      margin-bottom: 30px; }
      .textpage .row .article table thead td,
      .textpage .row .article table thead th {
        font-size: 17px;
        line-height: 1.2;
        font-weight: 700; }
      .textpage .row .article table td {
        font-size: 17px;
        line-height: 1.2;
        font-weight: 400; } }
@media (max-width: 767px) {
  .textpage {
    padding: 30px 0px 30px 0px; }
    .textpage .container > .row > div {
      margin-left: 0px;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
    .textpage .row .article h1 {
      font-size: 28px;
      line-height: 1.3;
      font-weight: 900;
      margin-bottom: 30px;
      padding-bottom: 20px; }
    .textpage .row .article h2 {
      font-size: 28px;
      line-height: 1.2;
      font-weight: 900; }
    .textpage .row .article h3 {
      font-size: 22px;
      line-height: 1.2;
      font-weight: 900; }
    .textpage .row .article h4 {
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700; }
    .textpage .row .article h5 {
      font-size: 18px;
      line-height: 1.3;
      font-weight: 600; }
    .textpage .row .article .excerpt p {
      font-size: 20px;
      line-height: 1.6;
      font-weight: 400; }
    .textpage .row .article blockquote {
      padding: 30px 80px;
      margin-bottom: 20px; }
      .textpage .row .article blockquote p {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 400; }
    .textpage .row .article p {
      margin-bottom: 25px; }
    .textpage .row .article ul {
      margin-bottom: 30px; }
      .textpage .row .article ul > li {
        padding-left: 39px; }
        .textpage .row .article ul > li:before {
          content: '';
          width: 20px;
          height: 20px;
          position: absolute;
          top: 0px;
          right: auto;
          bottom: auto;
          left: 0px; }
    .textpage .row .article ol {
      margin-bottom: 30px; }
      .textpage .row .article ol > li {
        padding-left: 39px; }
    .textpage .row .article ul ul,
    .textpage .row .article ul ol,
    .textpage .row .article ol ol,
    .textpage .row .article ol ul {
      margin-bottom: 10px; }
    .textpage .row .article ol > li:before {
      font-size: 10px;
      line-height: 20px;
      font-weight: 700;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 0px;
      right: auto;
      bottom: auto;
      left: 0px; }
    .textpage .row .article table {
      margin-bottom: 30px; }
      .textpage .row .article table thead td,
      .textpage .row .article table thead th {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 700;
        padding-left: 10px !important;
        padding-right: 10px !important;
        height: 50px !important;
        border-bottom: 1px #fff solid;
        border-right: 2px #fff solid;
        border-left: 2px #fff solid; }
      .textpage .row .article table td {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
        padding-left: 10px !important;
        padding-right: 10px !important;
        height: 50px !important;
        border-bottom: 1px #fff solid !important;
        border-right: 2px #fff solid !important;
        border-left: 2px #fff solid !important; }
    .textpage .row .article .gallery {
      display: flex;
      flex-wrap: wrap;
      margin: 0px -10px; }
      .textpage .row .article .gallery .gallery-item {
        width: 33.33%;
        padding: 0px 10px; } }
@media (max-width: 580px) {
  .textpage .row .article table {
    margin-bottom: 25px; }
    .textpage .row .article table thead td,
    .textpage .row .article table thead th {
      font-size: 13px;
      line-height: 1.2;
      font-weight: 700;
      height: 30px !important; }
    .textpage .row .article table td {
      font-size: 13px;
      line-height: 1.2;
      font-weight: 400;
      height: 30px !important; }
  .textpage .row .article .gallery {
    margin: 0px -10px; }
    .textpage .row .article .gallery .gallery-item {
      width: 100%;
      padding: 0px 10px; } }
/*
@media (max-width: 768px) {
	.textpage .container .row .article h2 {
		font-size: 20px;
    	line-height: 26px;
	}
	body.admin .textpage h1 {
		font-size:22px;
	}
	body.admin .textpage h2 {
		    font-size: 20px;
    line-height: 25px;
    margin-bottom: 25px;
	}
}*/
.paginator {
  position: relative;
  text-align: center; }
  .paginator .pages {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: auto;
    left: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 7px; }
    .paginator .pages a {
      font-size: 16px;
      line-height: 1;
      font-weight: 400;
      color: #f7a92f;
      font-family: 'Askan-Bold';
      text-decoration: none;
      width: 33px;
      height: 34px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px #f7a92f solid;
      border-left: none; }
      .paginator .pages a:nth-of-type(1) {
        border-left: 1px #f7a92f solid; }
      .paginator .pages a.active, .paginator .pages a:hover {
        background: #f1e2ce; }

.hp-intro {
  background: #fff;
  padding: 80px 0px 80px 0px;
  position: relative; }
  .hp-intro .container .row .col-md-5 {
    position: relative;
    z-index: 9; }
  .hp-intro.hp-intro-about {
    padding-bottom: 0px; }
    .hp-intro.hp-intro-about p:first-of-type {
      color: #2f2d36;
      margin-bottom: 20px;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 400; }
    .hp-intro.hp-intro-about .btn.btn-primary {
      margin-top: 180px; }
  .hp-intro h2,
  .hp-intro h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 50px;
    margin-bottom: 30px;
    position: relative;
    color: #0d0f4e; }
    .hp-intro h2:after,
    .hp-intro h1:after {
      content: '...';
      color: #52b2e2;
      font-size: 90px;
      line-height: 1;
      font-weight: 400;
      font-family: 'Barlow', sans-serif;
      position: absolute;
      top: auto;
      right: auto;
      bottom: 0px;
      left: -5px; }
  .hp-intro p {
    margin-bottom: 20px;
    padding-right: 90px; }
  .hp-intro p:first-of-type {
    color: #1a2c76;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 35px; }
  .hp-intro p:last-of-type {
    margin-bottom: 60px; }
  .hp-intro .img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end; }
    .hp-intro .img img {
      max-width: none;
      margin-right: 5px;
      position: relative;
      top: -53px; }
  .hp-intro .partners {
    display: flex;
    justify-content: space-between; }

@media (max-width: 1340px) {
  .hp-intro .img {
    display: block; }

  .hp-intro .img img {
    width: 100%; }

  .hp-intro p:first-of-type br {
    display: none; }

  .hp-intro .partners {
    padding-top: 80px; } }
@media (max-width: 991px) {
  .hp-intro .container .row > div {
    margin-left: 0px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center; }

  .hp-intro .img img {
    width: 100%;
    max-width: 350px;
    top: 0px; }

  .hp-intro h2:after, .hp-intro h1:after {
    left: 50%;
    margin-left: -45px; }

  .hp-intro.hp-intro-about {
    padding: 35px 0px; }

  .hp-intro .btn.btn-primary {
    margin-top: 0px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto; }

  .hp-intro p {
    padding-right: 0px; } }
@media (max-width: 730px) {
  .hp-intro .partners {
    margin: 0px -30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -30px; }
    .hp-intro .partners .logo {
      margin-bottom: 30px;
      padding: 0px 30px; } }
@media (max-width: 600px) {
  .hp-intro p:first-of-type,
  .hp-intro h2, .hp-intro h1 {
    font-size: 30px; } }
.hp-table {
  background: #0d0f4e url("../gfx/background/gradient-blue.jpg") center center no-repeat;
  background-size: 100% 100%;
  padding: 56px 0px;
  position: relative; }
  .hp-table .container .col-md-5.text-right {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  .hp-table .infographic {
    margin-top: -120px; }
    .hp-table .infographic .label {
      color: #b7c2e5;
      font-size: 12px;
      text-transform: uppercase;
      position: absolute; }
      .hp-table .infographic .label.label-1 {
        left: 8%;
        top: 90%; }
      .hp-table .infographic .label.label-2 {
        left: 67%;
        top: 90%; }
      .hp-table .infographic .label.label-3 {
        right: 0%;
        top: 35.5%; }
      .hp-table .infographic .label.label-4 {
        right: 0%;
        top: 54.5%; }
      .hp-table .infographic .label.label-5 {
        right: 0%;
        top: 72%; }
      .hp-table .infographic .label.label-6 {
        right: 0%;
        top: 90%; }
    .hp-table .infographic .num-label {
      display: none; }
    .hp-table .infographic img {
      width: 100%;
      margin-bottom: 5px; }
    .hp-table .infographic .texts {
      display: flex;
      color: #fff;
      height: 220px;
      position: relative; }
      .hp-table .infographic .texts .text-item {
        position: absolute;
        top: 0px; }
        .hp-table .infographic .texts .text-item .num {
          display: inline-block;
          font-size: 37px;
          line-height: 57px;
          font-weight: 700;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          color: #fff;
          font-family: 'Exo 2', cursive;
          /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3a92d1+0,5cb9e4+100 */
          background: #3a92d1;
          /* Old browsers */
          background: -moz-linear-gradient(-45deg, #3a92d1 0%, #5cb9e4 100%);
          /* FF3.6-15 */
          background: -webkit-linear-gradient(-45deg, #3a92d1 0%, #5cb9e4 100%);
          /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(135deg, #3a92d1 0%, #5cb9e4 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a92d1', endColorstr='#5cb9e4',GradientType=1 );
          /* IE6-9 fallback on horizontal gradient */
          margin-right: 0px;
          content: counter(item);
          text-align: center;
          position: absolute;
          top: 0px;
          right: auto;
          bottom: auto;
          left: -30px; }
        .hp-table .infographic .texts .text-item h2 {
          color: #fff;
          font-size: 25px;
          line-height: 1.2;
          font-weight: 700;
          text-transform: uppercase;
          padding-bottom: 20px;
          margin-bottom: 20px;
          padding-left: 50px;
          position: relative; }
          .hp-table .infographic .texts .text-item h2:after {
            content: '';
            height: 1px;
            display: block;
            background: #52b2e2;
            position: absolute;
            top: auto;
            right: auto;
            bottom: 0px;
            left: 0px;
            width: 255px; }
        .hp-table .infographic .texts .text-item p {
          color: #b7c2e5; }
          .hp-table .infographic .texts .text-item p .f {
            width: 12px;
            height: 27px;
            display: inline-block;
            background: transparent url("../gfx/icon/f-white.png") 0px 0px no-repeat;
            background-size: contain;
            margin-top: -9px;
            margin-left: 4px;
            margin-right: 0px;
            position: relative;
            top: 6px; }
        .hp-table .infographic .texts .text-item.text-item-1 {
          width: 260px;
          left: 130px; }
          .hp-table .infographic .texts .text-item.text-item-1 h2:after {
            width: 255px; }
        .hp-table .infographic .texts .text-item.text-item-2 {
          width: 245px;
          left: 470px; }
          .hp-table .infographic .texts .text-item.text-item-2 h2:after {
            width: 237px; }
        .hp-table .infographic .texts .text-item.text-item-3 {
          width: 440px;
          left: 930px; }
          .hp-table .infographic .texts .text-item.text-item-3 h2:after {
            width: 220px; }
  .hp-table .article {
    color: #fff; }
    .hp-table .article h2 {
      font-family: 'Exo 2', sans-serif;
      font-size: 40px;
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 35px; }
    .hp-table .article p {
      color: #b7c2e5;
      padding-right: 140px; }

@media (max-width: 1400px) {
  .hp-table .infographic .texts .text-item br {
    display: none; }

  .hp-table .infographic .texts .text-item.text-item-1 {
    left: 9%; }

  .hp-table .infographic .texts .text-item.text-item-2 {
    left: 34%; }

  .hp-table .infographic .texts .text-item.text-item-3 {
    left: 68%;
    width: 310px; } }
@media (max-width: 1300px) {
  .hp-table .infographic {
    margin-top: -70px; } }
@media (max-width: 1100px) {
  .hp-table .infographic .num-label {
    display: inline-block;
    font-size: 37px;
    line-height: 57px;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-family: 'Exo 2', cursive;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3a92d1+0,5cb9e4+100 */
    background: #3a92d1;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #3a92d1 0%, #5cb9e4 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #3a92d1 0%, #5cb9e4 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #3a92d1 0%, #5cb9e4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a92d1', endColorstr='#5cb9e4',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
    margin-right: 0px;
    content: counter(item);
    text-align: center;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: -30px; }
    .hp-table .infographic .num-label.num-1 {
      left: 6%; }
    .hp-table .infographic .num-label.num-2 {
      left: 31%; }
    .hp-table .infographic .num-label.num-3 {
      left: 66%; }

  .hp-table .infographic .texts {
    padding-top: 120px;
    margin: 0px -20px;
    height: auto;
    flex-wrap: wrap;
    justify-content: center; }
    .hp-table .infographic .texts .text-item {
      position: relative;
      left: auto !important;
      top: auto !important;
      width: 50% !important;
      padding: 0px 20px;
      margin-bottom: 35px; }
      .hp-table .infographic .texts .text-item h2 {
        padding-left: 70px;
        height: auto;
        padding-right: 5px; }
        .hp-table .infographic .texts .text-item h2:after {
          width: 100% !important; }
      .hp-table .infographic .texts .text-item .num {
        left: 15px;
        top: -20px; } }
@media (max-width: 1070px) {
  .hp-table .infographic {
    margin-top: 20px; }

  .hp-table .article p {
    padding-right: 0px; } }
@media (max-width: 900px) {
  .hp-table .infographic .texts .text-item {
    width: 100% !important; } }
.hp-reasons {
  background: #fff;
  padding: 90px 0px 40px 0px;
  position: relative;
  overflow: hidden; }
  .hp-reasons:before {
    content: '';
    background: #111656;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .hp-reasons h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 50px;
    margin-bottom: 30px;
    position: relative;
    color: #0d0f4e; }
    .hp-reasons h2:after {
      content: '...';
      color: #52b2e2;
      font-size: 90px;
      line-height: 1;
      font-weight: 400;
      font-family: 'Barlow', sans-serif;
      position: absolute;
      top: auto;
      right: auto;
      bottom: 0px;
      left: -5px; }
  .hp-reasons .img {
    position: relative;
    /*border:1px red solid;*/ }
    .hp-reasons .img img {
      position: relative;
      max-width: none; }
    .hp-reasons .img.img-1 img {
      top: -50px;
      left: -40px; }
    .hp-reasons .img.img-2 img {
      margin-left: -80px; }
    .hp-reasons .img.img-3 img {
      top: -70px;
      left: -70px; }
    .hp-reasons .img.img-4 img {
      top: -30px;
      margin-left: -80px; }

@media (max-width: 1170px) {
  .hp-reasons .img img {
    transform: scale(0.8); }

  .hp-reasons .img.img-2 img {
    margin-left: -130px; } }
@media (max-width: 840px) {
  .hp-reasons .img img {
    transform: scale(0.7); }

  .hp-reasons .img.img-2 img {
    margin-left: -170px; }

  .hp-reasons .img.img-4 img {
    margin-left: -100px; } }
@media (max-width: 767px) {
  .hp-reasons .img img {
    transform: scale(1);
    max-width: 250px;
    margin-left: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 20px !important;
    margin-right: 0px !important;
    top: auto  !important;
    left: auto  !important;
    bottom: auto  !important;
    right: auto  !important; }

  .hp-reasons .container .row > div {
    text-align: center; }

  .hp-reasons h2:after {
    left: 50%;
    margin-left: -45px; } }
.our-principles {
  background: #fff;
  padding: 47px 0px 35px 0px;
  position: relative; }
  .our-principles:before {
    content: '';
    background: #0d0f4e;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .our-principles .article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0d0f4e; }
  .our-principles .article .list.list-principles {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    margin: 0px -22px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px; }
    .our-principles .article .list.list-principles li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .our-principles .article .list.list-principles .list-item {
      position: relative;
      padding: 0px 22px;
      width: 50%;
      margin-bottom: 60px; }
      .our-principles .article .list.list-principles .list-item .img {
        width: 183px;
        height: 183px;
        border-radius: 50%;
        overflow: hidden;
        position: absolute;
        top: 0px;
        right: auto;
        bottom: 0px;
        left: 22px; }
        .our-principles .article .list.list-principles .list-item .img img {
          width: 100%; }
        .our-principles .article .list.list-principles .list-item .img:after {
          content: '';
          background: transparent url("../gfx/icon/f-white.png") center center no-repeat;
          background-size: 85px 179px;
          display: block;
          width: 85px;
          height: 179px;
          position: absolute;
          top: 10px;
          right: auto;
          bottom: auto;
          left: 60px; }
      .our-principles .article .list.list-principles .list-item h3 {
        height: 197px;
        padding-left: 225px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 700;
        font-family: 'Exo 2', sans-serif;
        color: #0d0f4e;
        border-bottom: 1px #52b2e2 solid;
        padding-bottom: 14px;
        margin-bottom: 22px; }

@media (max-width: 1205px) {
  .our-principles .article .list.list-principles .list-item {
    width: 100%;
    margin-bottom: 20px; } }
@media (max-width: 565px) {
  .our-principles .article .list.list-principles .list-item .img {
    position: relative;
    margin: auto;
    left: auto;
    top: auto; }
  .our-principles .article .list.list-principles .list-item h3 {
    padding-left: 0px;
    height: auto;
    padding-top: 10px; }
    .our-principles .article .list.list-principles .list-item h3 br {
      display: none; } }
.references {
  background: #f5f5f5 url("../gfx/icon/references.png") center 35px no-repeat;
  padding: 47px 0px 10px 0px;
  position: relative; }
  .references:before {
    content: '';
    background: #fff;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .references .article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 75px;
    color: #2f2d36; }
  .references .article .list.list-references {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -20px; }
    .references .article .list.list-references li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .references .article .list.list-references .list-item {
      width: 48%;
      padding: 0px 20px;
      margin-bottom: 85px; }
      .references .article .list.list-references .list-item .logo {
        margin-bottom: 75px;
        height: 42px;
        display: flex;
        align-items: center; }
        .references .article .list.list-references .list-item .logo img {
          max-width: 100%; }
      .references .article .list.list-references .list-item .txt {
        position: relative; }
        .references .article .list.list-references .list-item .txt:before {
          content: '';
          width: 37px;
          height: 29px;
          background: transparent url("../gfx/icon/quote.png") 0px 0px no-repeat;
          background-size: contain;
          position: absolute;
          top: -10px;
          right: auto;
          bottom: auto;
          left: -50px; }
    .references .article .list.list-references li:nth-of-type(even) {
      width: 52%; }
      .references .article .list.list-references li:nth-of-type(even) .txt {
        margin-left: 55px; }

@media (max-width: 767px) {
  .references .article .list.list-references li:nth-of-type(odd) .txt {
    margin-left: 55px; }

  .references .article .list.list-references .list-item .logo {
    margin-bottom: 35px; }

  .references .article .list.list-references .list-item {
    margin-bottom: 25px; } }
@media (max-width: 620px) {
  .references .article .list.list-references .list-item {
    width: 100% !important; } }
.faq {
  padding: 75px 0px 120px 0px;
  position: relative; }
  .faq .article h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 50px;
    margin-bottom: 30px;
    position: relative;
    color: #0d0f4e; }
    .faq .article h1:after {
      content: '...';
      color: #52b2e2;
      font-size: 90px;
      line-height: 1;
      font-weight: 400;
      font-family: 'Barlow', sans-serif;
      position: absolute;
      top: auto;
      right: auto;
      bottom: 0px;
      left: -5px; }
  .faq .article > p {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    color: #1a2c76;
    margin-bottom: 45px; }
  .faq .article .list.list-questions {
    list-style-type: none;
    margin: 0px;
    padding: 0px; }
    .faq .article .list.list-questions li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .faq .article .list.list-questions .list-item {
      margin-bottom: 55px;
      position: relative; }
      .faq .article .list.list-questions .list-item:before {
        content: '?';
        font-size: 100px;
        line-height: 1;
        font-weight: 700;
        font-family: 'Exo 2', sans-serif;
        color: #0d0f4e;
        position: absolute;
        top: -25px;
        right: auto;
        bottom: auto;
        left: -70px; }
      .faq .article .list.list-questions .list-item h2 {
        border-radius: 30px;
        height: 55px;
        border: none;
        padding: 0px 40px;
        color: #fff;
        font-size: 18px;
        line-height: 55px;
        font-weight: 700;
        display: inline-block;
        min-width: 241px;
        transition: all 0.25s linear;
        text-transform: uppercase;
        margin-bottom: 30px;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3989cd+0,66c6eb+39,225fb4+100 */
        background: #3989cd;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #2264b4 0%, #5cb8e4 39%, #2264b4 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #2264b4 0%, #5cb8e4 39%, #2264b4 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #2264b4 0%, #5cb8e4 39%, #2264b4 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3989cd', endColorstr='#225fb4',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */ }
      .faq .article .list.list-questions .list-item .txt {
        background: #eaf9ff;
        border-radius: 20px;
        padding: 30px; }
        .faq .article .list.list-questions .list-item .txt p:last-of-type {
          margin-bottom: 0px; }
        .faq .article .list.list-questions .list-item .txt .person {
          width: 84px;
          height: 84px;
          position: absolute;
          top: 50%;
          right: -100px;
          bottom: auto;
          left: auto;
          margin-top: -2px; }
          .faq .article .list.list-questions .list-item .txt .person .img {
            width: 84px;
            height: 84px;
            overflow: hidden;
            border-radius: 50%; }
          .faq .article .list.list-questions .list-item .txt .person:after {
            content: '';
            width: 15px;
            height: 31px;
            display: block;
            background: transparent url("../gfx/icon/f-blue.png") 0px 0px no-repeat;
            background-size: contain;
            position: absolute;
            top: 94px;
            right: auto;
            bottom: auto;
            left: 50%;
            margin-left: -7px; }

@media (max-width: 767px) {
  .faq .article .list.list-questions .list-item .txt {
    margin-right: 100px;
    position: relative; }
    .faq .article .list.list-questions .list-item .txt .person {
      right: -100px;
      top: 0px; }

  .faq .article .list.list-questions .list-item h2 {
    height: auto;
    line-height: 1.3;
    padding-top: 15px;
    padding-bottom: 15px; }

  .faq .article > p {
    font-size: 30px; } }
@media (max-width: 480px) {
  .faq .article .list.list-questions .list-item .txt {
    margin-right: 0px; }
    .faq .article .list.list-questions .list-item .txt .person {
      position: relative;
      right: auto;
      margin-top: 30px; }
      .faq .article .list.list-questions .list-item .txt .person:after {
        display: none; } }
.ask {
  background: #0d0f4e url("../gfx/background/gradient-blue.jpg") center center no-repeat;
  background-size: 100% 100%;
  padding: 56px 0px;
  position: relative; }
  .ask .container .col-md-5.text-right {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  .ask .article {
    color: #fff; }
    .ask .article h2 {
      font-family: 'Exo 2', sans-serif;
      font-size: 40px;
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 35px; }
    .ask .article p {
      color: #b7c2e5;
      padding-right: 140px; }

@media (max-width: 1330px) {
  .ask .article p {
    padding-right: 0px; } }
@media (max-width: 991px) {
  .ask .container .row > div {
    margin-left: 0px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
    display: block !important; }
    .ask .container .row > div .btn {
      margin-left: auto;
      margin-top: 20px; }

  /*.cta .article h2 {
  	font-size:30px;
  	margin-bottom:30px;
  }*/ }
.our-story {
  background: #d2d3ee url("../gfx/background/story.jpg") center center no-repeat;
  padding: 56px 0px 50px 0px;
  position: relative; }
  .our-story:before {
    content: '';
    background: #fff;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .our-story .article .img {
    margin-top: -20px; }
    .our-story .article .img img {
      width: 100%; }
  .our-story .article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0d0f4e; }
  .our-story .article .cols {
    column-count: 2;
    column-gap: 60px; }

@media (max-width: 1250px) {
  .our-story {
    background: #d2d3ee url("../gfx/background/story.jpg") center top no-repeat; } }
@media (max-width: 991px) {
  .our-story .article .cols {
    column-count: 1; }

  .our-story .article .img {
    margin-top: 0px; } }
@media (max-width: 600px) {
  .our-story .article h2 {
    font-size: 30px; } }
.team {
  background: #0c0e4a url("../gfx/background/team.jpg") center center no-repeat;
  background-size: cover;
  padding: 56px 0px 66px 0px;
  position: relative; }
  .team.team-about:before {
    content: '';
    background: #d2d3ee;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .team.team-about .article .btn.btn-pa {
    top: 10px; }
  .team:before {
    content: '';
    background: #fff;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .team .article {
    position: relative; }
    .team .article > h2 {
      font-family: 'Exo 2', sans-serif;
      font-size: 40px;
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 35px;
      color: #fff;
      padding-right: 40%; }
    .team .article > p {
      color: #b7c2e5;
      padding-right: 40%; }
    .team .article .btn.btn-pa {
      position: absolute;
      top: 85px;
      right: 0px;
      bottom: auto;
      left: auto; }
    .team .article .list.list-team {
      list-style-type: none;
      margin: 0px;
      padding: 0px;
      padding-top: 45px;
      display: flex;
      flex-wrap: wrap;
      margin: 0px -15px;
      margin-bottom: 40px; }
      .team .article .list.list-team li {
        list-style-type: none;
        margin: 0px;
        padding: 0px; }
      .team .article .list.list-team .list-item {
        width: 25%;
        padding: 0px 15px;
        position: relative;
        margin-bottom: 30px; }
        .team .article .list.list-team .list-item .img {
          width: 261px;
          height: 261px;
          border-radius: 50%;
          border: 2px #1550a1 solid;
          margin-bottom: 35px;
          overflow: hidden; }
          .team .article .list.list-team .list-item .img img {
            width: 100%; }
        .team .article .list.list-team .list-item .txt {
          padding: 0px 0px 0px 34px;
          position: relative; }
          .team .article .list.list-team .list-item .txt h3 {
            color: #fff;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px; }
          .team .article .list.list-team .list-item .txt p {
            color: #b7c2e5; }
          .team .article .list.list-team .list-item .txt .top-line {
            position: relative;
            color: #52b2e2;
            font-family: 'Exo 2', cursive;
            font-weight: 700;
            padding-bottom: 11px;
            border-bottom: 1px #52b2e2 solid;
            margin-bottom: 20px; }
            .team .article .list.list-team .list-item .txt .top-line:before {
              content: '';
              width: 25px;
              height: 52px;
              display: block;
              background: transparent url("../gfx/icon/f-blue.png") 0px 0px no-repeat;
              background-size: contain;
              position: absolute;
              top: 4px;
              right: auto;
              bottom: auto;
              left: -35px; }

@media (max-width: 1385px) {
  .team .article .list.list-team .list-item .img {
    width: 200px;
    height: 200px; } }
@media (max-width: 1280px) {
  .team .article .list.list-team .list-item .img {
    width: 260px;
    height: 260px; }

  .team .article .list.list-team .list-item {
    width: 50%; } }
@media (max-width: 1070px) {
  .team .article > h2,
  .team .article > p {
    padding-right: 0px; }

  .team .article .btn.btn-pa {
    position: static;
    margin-top: 30px;
    margin-bottom: 40px; } }
@media (max-width: 767px) {
  .team .article .btn.btn-pa {
    position: static;
    margin-top: 30px;
    margin-bottom: 0px; } }
@media (max-width: 620px) {
  .team .article .list.list-team .list-item {
    width: 100%; }

  .team .article > h2 {
    font-size: 30px; } }
.how-to {
  background: #d2d3ee url("../gfx/background/howto.jpg") center center no-repeat;
  padding: 56px 0px 110px 0px;
  position: relative; }
  .how-to:before {
    content: '';
    background: #0c0e4a;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .how-to.type2:before {
    background: #f5f5f5; }
  .how-to .article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0d0f4e; }
  .how-to .article .list.list-steps {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -45px;
    counter-reset: item; }
    .how-to .article .list.list-steps li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .how-to .article .list.list-steps .list-item {
      width: 25%;
      padding: 75px 45px 0px 45px;
      position: relative;
      counter-increment: item; }
      .how-to .article .list.list-steps .list-item:before {
        display: inline-block;
        font-size: 37px;
        line-height: 57px;
        font-weight: 700;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: #fff;
        font-family: 'Exo 2', cursive;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3a92d1+0,5cb9e4+100 */
        background: #3a92d1;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #3a92d1 0%, #5cb9e4 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #3a92d1 0%, #5cb9e4 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #3a92d1 0%, #5cb9e4 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a92d1', endColorstr='#5cb9e4',GradientType=1 );
        /* IE6-9 fallback on horizontal gradient */
        margin-right: 0px;
        content: counter(item);
        text-align: center;
        position: absolute;
        top: 0px;
        right: auto;
        bottom: auto;
        left: 15px; }
      .how-to .article .list.list-steps .list-item h3 {
        color: #0d0f4e;
        font-size: 25px;
        line-height: 1.2;
        font-weight: 700;
        text-transform: uppercase;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px #52b2e2 solid; }

@media (max-width: 1350px) {
  .how-to .article .list.list-steps {
    margin: 0px -15px; }

  .how-to .article .list.list-steps .list-item {
    padding: 75px 15px 0px 15px; }
    .how-to .article .list.list-steps .list-item:before {
      left: -10px; } }
@media (max-width: 1285px) {
  .how-to {
    background: #d2d3ee url(../gfx/background/howto.jpg) center top no-repeat; } }
@media (max-width: 1170px) {
  .how-to {
    padding-bottom: 70px; }

  .how-to .article .list.list-steps .list-item {
    width: 50%;
    margin-bottom: 30px; } }
@media (max-width: 767px) {
  .how-to .article .list.list-steps .list-item:before {
    left: 15px; } }
@media (max-width: 580px) {
  .how-to {
    padding-bottom: 30px; }

  .how-to .article .list.list-steps .list-item {
    width: 100%;
    margin-bottom: 20px; } }
.frankly {
  background: #fff;
  padding: 56px 0px 15px 0px;
  position: relative; }
  .frankly:before {
    content: '';
    background: #d2d3ee;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .frankly .article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0d0f4e; }
  .frankly .article .list.list-frankly {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    margin: 0px -21px;
    display: flex;
    flex-wrap: wrap; }
    .frankly .article .list.list-frankly li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .frankly .article .list.list-frankly .list-item {
      padding: 0px 21px;
      width: 50%;
      margin-bottom: 65px; }
      .frankly .article .list.list-frankly .list-item .img {
        width: 183px;
        height: 183px;
        border-radius: 50%;
        overflow: hidden;
        font-size: 0px;
        margin-bottom: 15px; }
        .frankly .article .list.list-frankly .list-item .img img {
          width: 100%;
          height: auto; }
      .frankly .article .list.list-frankly .list-item p {
        padding-top: 20px;
        position: relative;
        border-top: 1px #52b2e2 solid;
        margin-bottom: 30px; }
        /*.frankly .article .list.list-frankly .list-item p:before {*/
        /*  content: '';*/
        /*  width: 25px;*/
        /*  height: 52px;*/
        /*  display: block;*/
        /*  background: transparent url("../gfx/icon/f-blue.png") 0px 0px no-repeat;*/
        /*  background-size: contain;*/
        /*  position: absolute;*/
        /*  top: -65px;*/
        /*  right: 0px;*/
        /*  bottom: auto;*/
        /*  left: auto; }*/
      .frankly .article .list.list-frankly .list-item p.name {
        margin-bottom: 0px;
        border: none;
        padding-top: 0px;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 700;
        text-transform: uppercase; }
        .frankly .article .list.list-frankly .list-item p.name i {
          font-style: normal;
          color: #52b2e2;
          font-weight: 400; }
        .frankly .article .list.list-frankly .list-item p.name:before {
          display: none; }

@media (max-width: 600px) {
  .frankly .article .list.list-frankly .list-item {
    width: 100%; } }
.cta {
  background: #0d0f4e url("../gfx/background/gradient-blue.jpg") center center no-repeat;
  background-size: 100% 100%;
  padding: 56px 0px;
  position: relative; }
  .cta:before {
    content: '';
    background: #fff;
    display: inline-block;
    margin: 0 1em 1em 0;
    height: 20px;
    width: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: absolute;
    top: 0px;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -20px; }
  .cta .container .col-md-5 {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  .cta .article {
    color: #fff; }
    .cta .article h2 {
      font-family: 'Exo 2', sans-serif;
      font-size: 40px;
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 35px; }
    .cta .article p {
      color: #b7c2e5;
      padding-right: 140px; }

@media (max-width: 1330px) {
  .cta .article p {
    padding-right: 0px; } }
@media (max-width: 991px) {
  .cta .container .row > div {
    margin-left: 0px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    display: block; }
    .cta .container .row > div .btn {
      margin-top: 20px; }

  /*.cta .article h2 {
  	font-size:30px;
  	margin-bottom:30px;
  }*/ }
.overlay {
  background: #0b0b47 url("../gfx/background/overlay.jpg") center top no-repeat;
  background-size: cover;
  overflow: hidden;
  max-height: 0px;
  transition: all 0.39s linear; }
  .overlay .container {
    padding-top: 60px;
    padding-bottom: 80px; }
    .overlay .container .row {
      position: relative; }
  .overlay a.close {
    border-radius: 30px;
    height: 60px;
    padding: 0px 33px;
    font-size: 17px;
    line-height: 60px;
    font-weight: 400;
    display: inline-block;
    min-width: 150px;
    transition: all 0.25s linear;
    text-transform: uppercase;
    border: 1px #fff solid;
    color: #fff;
    opacity: 1;
    padding-right: 75px;
    position: absolute;
    top: 0px;
    right: 15px;
    bottom: auto;
    left: auto;
    z-index: 555;
    -webkit-box-shadow: 0px 67px 15px -27px black;
    -moz-box-shadow: 0px 67px 15px -27px black;
    box-shadow: 0px 67px 15px -27px black; }
    .overlay a.close:hover {
      background: #fff;
      color: #0d0f4e; }
      .overlay a.close:hover:before, .overlay a.close:hover:after {
        background: #0d0f4e; }
    .overlay a.close:before {
      content: '';
      width: 30px;
      height: 1px;
      background: #fff;
      display: block;
      position: absolute;
      top: 30px;
      right: 20px;
      bottom: auto;
      left: auto;
      transform: rotate(45deg);
      transform-origin: center center;
      transition: all 0.25s linear; }
    .overlay a.close:after {
      content: '';
      width: 30px;
      height: 1px;
      background: #fff;
      display: block;
      position: absolute;
      top: 30px;
      right: 20px;
      bottom: auto;
      left: auto;
      transform: rotate(-45deg);
      transform-origin: center center;
      transition: all 0.25s linear; }
  .overlay.active {
    max-height: 1800px; }

.overlay.lets-meet .article {
  color: #fff; }
  .overlay.lets-meet .article h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: #fff; }
  .overlay.lets-meet .article p {
    color: #b7c2e5; }
  .overlay.lets-meet .article .list.list-team {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    padding-top: 85px;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
    margin-bottom: 40px; }
    .overlay.lets-meet .article .list.list-team li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .overlay.lets-meet .article .list.list-team .list-item {
      width: 25%;
      padding: 0px 15px;
      position: relative;
      margin-bottom: 30px; }
      .overlay.lets-meet .article .list.list-team .list-item .img {
        width: 261px;
        height: 261px;
        border-radius: 50%;
        border: 2px #1550a1 solid;
        margin-bottom: 35px;
        overflow: hidden; }
        .overlay.lets-meet .article .list.list-team .list-item .img img {
          width: 100%; }
      .overlay.lets-meet .article .list.list-team .list-item .txt {
        padding: 0px 0px 0px 34px;
        position: relative; }
        .overlay.lets-meet .article .list.list-team .list-item .txt h3 {
          color: #fff;
          font-size: 22px;
          line-height: 1.2;
          font-weight: 700;
          text-transform: uppercase;
          margin-bottom: 20px; }
        .overlay.lets-meet .article .list.list-team .list-item .txt p {
          color: #b7c2e5; }
        .overlay.lets-meet .article .list.list-team .list-item .txt .top-line {
          position: relative;
          color: #52b2e2;
          font-family: 'Exo 2', cursive;
          font-weight: 700;
          padding-bottom: 11px;
          border-bottom: 1px #52b2e2 solid;
          margin-bottom: 20px; }
          .overlay.lets-meet .article .list.list-team .list-item .txt .top-line:before {
            content: '';
            width: 25px;
            height: 52px;
            display: block;
            background: transparent url("../gfx/icon/f-blue.png") 0px 0px no-repeat;
            background-size: contain;
            position: absolute;
            top: 4px;
            right: auto;
            bottom: auto;
            left: -35px; }

@media (max-width: 1100px) {
  .overlay.lets-meet .article .list.list-team .list-item {
    width: 50%; } }
@media (max-width: 767px) {
  .overlay .container {
    padding-top: 100px; }

  .overlay a.close {
    top: -75px; }

  .overlay.lets-meet .article .list.list-team {
    padding-top: 20px; } }
@media (max-width: 580px) {
  .overlay.lets-meet .article .list.list-team .list-item {
    width: 100%; } }
.overlay.investment-plan .article {
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .overlay.investment-plan .article h1 {
    width: 100%;
    font-family: 'Exo 2', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: #fff; }
  .overlay.investment-plan .article .images {
    margin-top: auto; }
    .overlay.investment-plan .article .images p {
      color: #b7c2e5;
      margin-bottom: 0px;
      padding-right: 100px; }
    .overlay.investment-plan .article .images .images-inner {
      height: 266px;
      margin-bottom: 45px;
      position: relative;
      width: 100%; }
      .overlay.investment-plan .article .images .images-inner .img {
        width: 261px;
        height: 261px;
        border-radius: 50%;
        border: 2px #1550a1 solid;
        margin-bottom: 35px;
        overflow: hidden;
        position: absolute; }
        .overlay.investment-plan .article .images .images-inner .img img {
          width: 100%; }
        .overlay.investment-plan .article .images .images-inner .img.img-1 {
          left: 0%;
          top: 0px;
          z-index: 4; }
        .overlay.investment-plan .article .images .images-inner .img.img-2 {
          width: 189px;
          height: 189px;
          left: 30%;
          top: 73px;
          z-index: 3; }
        .overlay.investment-plan .article .images .images-inner .img.img-3 {
          width: 189px;
          height: 189px;
          left: 48%;
          top: 73px;
          z-index: 2; }
        .overlay.investment-plan .article .images .images-inner .img.img-4 {
          width: 189px;
          height: 189px;
          left: 60%;
          top: 73px;
          z-index: 1; }
  .overlay.investment-plan .article .list.list-plan {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    padding-top: 71px; }
    .overlay.investment-plan .article .list.list-plan li {
      list-style-type: none;
      margin: 0px;
      padding: 0px; }
    .overlay.investment-plan .article .list.list-plan .list-item {
      margin-bottom: 40px; }
      .overlay.investment-plan .article .list.list-plan .list-item .icon {
        height: 50px;
        margin-bottom: 10px; }
        .overlay.investment-plan .article .list.list-plan .list-item .icon img {
          height: 100%; }
      .overlay.investment-plan .article .list.list-plan .list-item h2 {
        font-size: 20px;
        line-height: 1.2;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1px; }
      .overlay.investment-plan .article .list.list-plan .list-item p {
        color: #b7c2e5;
        margin-bottom: 0px; }
    .overlay.investment-plan .article .list.list-plan li:last-of-type {
      margin-bottom: 0px; }

@media (max-width: 1140px) {
  .overlay.investment-plan .container .row > div {
    margin-left: 0px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; } }
@media (max-width: 991px) {
  .overlay.investment-plan .container .row > div {
    margin-left: 0px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .overlay.investment-plan .article .images .images-inner .img.img-1 {
    left: 0px; }
  .overlay.investment-plan .article .images .images-inner .img.img-2 {
    left: 150px; }
  .overlay.investment-plan .article .images .images-inner .img.img-3 {
    left: 220px; }
  .overlay.investment-plan .article .images .images-inner .img.img-4 {
    left: 300px; } }
@media (max-width: 767px) {
  .overlay.investment-plan .article h1 {
    font-size: 30px; }

  .overlay.investment-plan .article .images p {
    padding-right: 0px; }

  .overlay.investment-plan .article .images .images-inner {
    height: 145px; }
    .overlay.investment-plan .article .images .images-inner .img {
      width: 161px;
      height: 161px; }
      .overlay.investment-plan .article .images .images-inner .img.img-1 {
        left: 0px; }
      .overlay.investment-plan .article .images .images-inner .img.img-2 {
        width: 130px;
        height: 130px;
        top: 35px;
        left: 80px; }
      .overlay.investment-plan .article .images .images-inner .img.img-3 {
        width: 130px;
        height: 130px;
        top: 35px;
        left: 120px; }
      .overlay.investment-plan .article .images .images-inner .img.img-4 {
        width: 130px;
        height: 130px;
        top: 35px;
        left: 170px; } }

/*# sourceMappingURL=default.css.map */
