/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

@font-face{font-family:"Effra";src:url("/public/fonts/Effra-Light.woff2") format("woff2"),url("/public/fonts/Effra-Light.woff") format("woff");font-weight:300}@font-face{font-family:"Effra";src:url("/public/fonts/Effra.woff2") format("woff2"),url("/public/fonts/Effra.woff") format("woff");font-weight:400}@font-face{font-family:"Effra";src:url("/public/fonts/Effra-Medium.woff2") format("woff2"),url("/public/fonts/Effra-Medium.woff") format("woff");font-weight:500}@font-face{font-family:"Effra";src:url("/public/fonts/Effra-Bold.woff2") format("woff2"),url("/public/fonts/Effra-Bold.woff") format("woff");font-weight:700}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;vertical-align:baseline}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img,fieldset,a img{border:none}input[type="text"],input[type="email"],input[type="search"],input[type="tel"],textarea{-webkit-appearance:none}input[type="submit"],button{cursor:pointer}input[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto}input,button{margin:0;padding:0;border:0}div,input,textarea,select,button,h1,h2,h3,h4,h5,h6,a,span,a:focus{outline:none}ul,ol{list-style-type:none}table{width:100%;border-spacing:0;border-collapse:collapse}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{position:relative;font-family:"Effra", sans-serif;font-size:18px;color:#595f6f;line-height:1.6}a{text-decoration:none;color:#00a19a}button{background:none;font:inherit}h1,h2,h3,h4,h5,h6{font-weight:400}img{max-width:100%;height:auto;vertical-align:top}.bluetext{color:#0f358e}.greentext{color:#00a19a}.owl-carousel-wrapper{display:-ms-flexbox;display:flex;margin:0 -24px;overflow:hidden}@media only screen and (min-width: 768px){.owl-carousel-wrapper{margin:0 -40px}}.owl-carousel-wrapper:before,.owl-carousel-wrapper:after{content:"";-ms-flex:0 0 24px;flex:0 0 24px}@media only screen and (min-width: 768px){.owl-carousel-wrapper:before,.owl-carousel-wrapper:after{-ms-flex:0 0 40px;flex:0 0 40px}}.owl-carousel-wrapper .owl-carousel{max-width:calc(100% - 48px)}@media only screen and (min-width: 768px){.owl-carousel-wrapper .owl-carousel{max-width:calc(100% - 80px)}}.owl-carousel-wrapper .owl-carousel .owl-stage-outer{overflow:visible}.media-videos{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media only screen and (min-width: 768px){.media-videos{-ms-flex-direction:row;flex-direction:row;-moz-column-gap:2%;column-gap:2%;-ms-flex-wrap:wrap;flex-wrap:wrap}}.media-videos .media-video{width:100%;-ms-flex-positive:1;flex-grow:1;padding-bottom:30px}@media only screen and (min-width: 768px){.media-videos .media-video{width:32%}}.media-videos .media-video-hero{height:200px}.media-videos .media-video-title{padding-top:10px;padding-bottom:5px;color:#2b314e;font-size:26px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-events{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media only screen and (min-width: 768px){.media-events{-ms-flex-direction:row;flex-direction:row;-moz-column-gap:2%;column-gap:2%;-ms-flex-wrap:wrap;flex-wrap:wrap}}.media-events .media-event{width:100%;padding-bottom:30px}@media only screen and (min-width: 768px){.media-events .media-event{width:49%;-ms-flex-positive:1;flex-grow:1}}.media-events .media-event-hero{height:200px}.media-events .media-event-title{padding-top:10px;padding-bottom:5px;color:#2b314e;font-size:26px}.news__item__hero{height:150px;margin-bottom:10px;background-size:cover;width:100%}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0, 0, 0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0 !important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{transform:scale(1.3, 1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.page{display:-ms-flexbox;display:flex;min-height:100vh;-ms-flex-direction:column;flex-direction:column}.inner{-ms-flex:1 1 auto;flex:1 1 auto}.container{width:100%;margin:0 auto;padding:0 24px}@media only screen and (min-width: 768px){.container{max-width:1440px;padding:0 40px}}.btn,.nformr-form-actions button{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;position:relative;z-index:1;height:49px;padding:0 36px 0 24px;font-size:16px;font-weight:500;color:white}.btn:before,.btn:after,.nformr-form-actions button:before,.nformr-form-actions button:after{content:"";position:absolute;top:0;height:49px;z-index:-1}.btn:before,.nformr-form-actions button:before{left:0;width:calc(100% - 26px);background:#00a19a;border-radius:24px 0 0 24px}.btn:after,.nformr-form-actions button:after{right:1px;width:26px;height:49px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='49' fill-rule='nonzero'%3E%3Cpath fill='%2300a19a' d='M3.517 24.533A14.11 14.11 0 0 0 .184 16.1L14.276 2.184C11.194.741 7.832-.005 4.429 0H0v49h4.429c3.386.004 6.731-.734 9.8-2.163L.184 32.968a14.11 14.11 0 0 0 3.333-8.435'/%3E%3Cpath fill='%232B314E' d='M19.339 5.872c7.796 10.998 8.021 25.641.61 36.862l-.265.395-4.127-4.058a27.11 27.11 0 0 0-.07-28.753l-.258-.403 4.11-4.043zm-7.236 6.921a23.66 23.66 0 0 1 .52 22.983l-.212.393-4.542-4.543a17.51 17.51 0 0 0-.09-13.927l-.183-.4 4.507-4.506z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:cover}.btn_light:after,.nformr-form-actions button_light:after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='49' fill-rule='nonzero'%3E%3Cpath fill='%2300a19a' d='M3.517 24.533A14.11 14.11 0 0 0 .184 16.1L14.276 2.184C11.194.741 7.832-.005 4.429 0H0v49h4.429c3.386.004 6.731-.734 9.8-2.163L.184 32.968a14.11 14.11 0 0 0 3.333-8.435'/%3E%3Cpath fill='%23fff' d='M19.339 5.872c7.796 10.998 8.021 25.641.61 36.862l-.265.395-4.127-4.058a27.11 27.11 0 0 0-.07-28.753l-.258-.403 4.11-4.043zm-7.236 6.921a23.66 23.66 0 0 1 .52 22.983l-.212.393-4.542-4.543a17.51 17.51 0 0 0-.09-13.927l-.183-.4 4.507-4.506z'/%3E%3C/svg%3E")}.btn_dark:before,.nformr-form-actions button_dark:before{background:#2b314e}.btn_dark:after,.nformr-form-actions button_dark:after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='49' fill-rule='nonzero'%3E%3Cpath fill='%232b314e' d='M3.517 24.533A14.11 14.11 0 0 0 .184 16.1L14.276 2.184C11.194.741 7.832-.005 4.429 0H0v49h4.429c3.386.004 6.731-.734 9.8-2.163L.184 32.968a14.11 14.11 0 0 0 3.333-8.435'/%3E%3Cpath fill='%23fff' d='M19.339 5.872c7.796 10.998 8.021 25.641.61 36.862l-.265.395-4.127-4.058a27.11 27.11 0 0 0-.07-28.753l-.258-.403 4.11-4.043zm-7.236 6.921a23.66 23.66 0 0 1 .52 22.983l-.212.393-4.542-4.543a17.51 17.51 0 0 0-.09-13.927l-.183-.4 4.507-4.506z'/%3E%3C/svg%3E")}.btn_white,.nformr-form-actions button_white{color:#00a19a}.btn_white:before,.nformr-form-actions button_white:before{background:white}.btn_white:after,.nformr-form-actions button_white:after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='49' fill-rule='nonzero'%3E%3Cpath fill='%23fff' d='M3.517 24.533A14.11 14.11 0 0 0 .184 16.1L14.276 2.184C11.194.741 7.832-.005 4.429 0H0v49h4.429c3.386.004 6.731-.734 9.8-2.163L.184 32.968a14.11 14.11 0 0 0 3.333-8.435'/%3E%3Cpath fill='%23fff' d='M19.339 5.872c7.796 10.998 8.021 25.641.61 36.862l-.265.395-4.127-4.058a27.11 27.11 0 0 0-.07-28.753l-.258-.403 4.11-4.043zm-7.236 6.921a23.66 23.66 0 0 1 .52 22.983l-.212.393-4.542-4.543a17.51 17.51 0 0 0-.09-13.927l-.183-.4 4.507-4.506z'/%3E%3C/svg%3E")}.action{display:inline-block;padding:12px 20px;background:white;border:1px solid #00a19a;border-radius:24px;font-size:16px;font-weight:500;color:#00a19a}.nav{position:absolute;top:100%;left:0;width:100%;padding:24px 0;background:white;box-shadow:0 10px 10px rgba(0,0,0,0.1);opacity:0;pointer-events:none;transition:opacity 0.2s}@media only screen and (min-width: 1024px){.nav{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;position:static;width:auto;margin-left:auto;padding:0;background:none;box-shadow:none;opacity:1;pointer-events:all}}.nav.visible{opacity:1;pointer-events:all}.nav__container{padding:0}@media only screen and (min-width: 1024px){.nav__container{padding:0 40px}}.nav__section{margin:0 24px;padding:8px 0}@media only screen and (min-width: 768px){.nav__section{margin:0 40px}}@media only screen and (min-width: 1024px){.nav__section{margin:0;padding:0}}@media only screen and (min-width: 1260px){.nav__section{margin-left:30px}}.nav__section:not(:last-child){border-bottom:1px solid #e8e8e8}@media only screen and (min-width: 1024px){.nav__section:not(:last-child){border:none}}.nav__section form{position:relative}@media only screen and (min-width: 1024px){.nav__section form{display:none}}.nav__section form input{font-family:"Effra", sans-serif;padding:10px 0;font-size:16px;display:block;width:100%}.nav__section form button{position:absolute;top:50%;transform:translatey(-50%);right:0}.nav__section:hover .nav__sub:after{content:"";position:absolute;top:0;left:0;width:100%;height:80px;z-index:-1}@media only screen and (min-width: 1024px){.nav__section:hover .nav__link:after{transform:rotate(180deg)}}@media only screen and (min-width: 1024px){.nav__section:hover .nav__dropdown{opacity:1;pointer-events:all}}.nav__sub{cursor:default}@media only screen and (min-width: 1024px){.nav__sub{position:relative;z-index:2}}.nav__sub .nav__link.active:after{transform:rotate(180deg)}.nav__sub .nav__link:after{content:"";width:12px;height:6px;margin-left:auto;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4'%3E%3Cpath fill='%230f358e' d='M3.846 3.855L6.854.839a.49.49 0 0 0 .001-.694.49.49 0 0 0-.694-.001L3.499 2.813.837.143a.49.49 0 0 0-.694.002.49.49 0 0 0 .001.694l3.009 3.017c.092.093.216.145.347.145s.255-.052.347-.145z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 1024px){.nav__sub .nav__link:after{margin-left:6px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4'%3E%3Cpath fill='%23ffffff' d='M3.846 3.855L6.854.839a.49.49 0 0 0 .001-.694.49.49 0 0 0-.694-.001L3.499 2.813.837.143a.49.49 0 0 0-.694.002.49.49 0 0 0 .001.694l3.009 3.017c.092.093.216.145.347.145s.255-.052.347-.145z'/%3E%3C/svg%3E");transition:transform 0.2s}}.nav__link{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin:0 -12px;padding:12px;color:#00a19a;cursor:pointer}@media only screen and (min-width: 1024px){.nav__link{position:relative;margin:0;padding:4px 12px;font-size:16px;color:white}}.nav__link.search-toggle{display:none}@media only screen and (min-width: 1024px){.nav__link.search-toggle{display:-ms-flexbox;display:flex}}.nav__btn{display:-ms-inline-flexbox;display:inline-flex;margin:12px 0;padding:8px 16px;background:#00a19a;border-radius:22px;color:white}@media only screen and (min-width: 1024px){.nav__btn{margin:0 0 0 12px;padding:4px 12px;font-size:16px}}.nav__dropdown{height:0;overflow:hidden}@media only screen and (min-width: 1024px){.nav__dropdown{position:absolute;top:100%;left:0;width:100%;height:auto;padding:54px 0;background:white;box-shadow:20px 20px 40px rgba(0,0,0,0.1);opacity:0;transition:opacity 0.2s;pointer-events:none;overflow:visible}}.nav__dropdown.visible{height:auto;overflow:visible}.nav__carousel{padding:24px 0}@media only screen and (min-width: 768px){.nav__carousel{padding:0}}.nav__item{width:140px}@media only screen and (min-width: 768px){.nav__item{width:auto}}.nav__preview{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-align:start;align-items:flex-start;height:48px;margin-bottom:16px}@media only screen and (min-width: 1024px){.nav__preview{margin-bottom:20px}}.nav__title{margin-bottom:10px;color:#0f358e;font-weight:300}@media only screen and (min-width: 1024px){.nav__title{font-size:24px;line-height:1.22}}.nav__content{display:none}@media only screen and (min-width: 1024px){.nav__content{display:block;margin-bottom:20px;font-size:16px}}.nav .owl-item img{width:auto;max-height:100%}.nav__carousel__services{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-moz-column-gap:40px;column-gap:40px}.nav__carousel__services .nav__item{width:100%;position:relative;padding-bottom:50px;margin-bottom:30px;border-bottom:solid 1px #00a19a}@media only screen and (min-width: 1024px){.nav__carousel__services .nav__item{width:30%;border-bottom:none}}.nav__carousel__services .nav__item__top{border-bottom:solid 1px #00a19a}.nav__carousel__services .nav__item .more{position:absolute;bottom:30px}.more{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;font-size:16px;font-weight:500}.more:after{content:"";width:8px;height:14px;margin-left:10px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='9'%3E%3Cpath fill='%2300a19a' d='M4.511 4.5L.981 8.02c-.224.225-.587.225-.812.001s-.225-.587-.001-.812l3.123-3.115L.167.979C-.057.754-.056.39.169.167s.589-.223.812.001l3.53 3.521a.57.57 0 0 1 0 .811z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.header{position:absolute;top:0;left:0;width:100%;background:transparent linear-gradient(180deg, #2B314E 0%, rgba(43,49,78,0.0588235) 100%) 0% 0% no-repeat padding-box;border-bottom:1px solid rgba(112,155,231,0.4);z-index:50}.header.solid{background:#2B314E}.header__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:44px}.header__contacts{display:-ms-flexbox;display:flex;margin-left:auto;font-size:14px}.header__contacts li{position:relative}.header__contacts li:not(:last-child){margin-right:12px;padding-right:12px}@media only screen and (min-width: 768px){.header__contacts li:not(:last-child){margin-right:20px;padding-right:20px}}.header__contacts li:not(:last-child):before{content:"";position:absolute;top:calc(50% - 7px);right:0;width:1px;height:14px;background:#00a19a}.header__phone{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:white;opacity:0.78}.header__phone:before{content:"";width:14px;height:14px;margin-right:4px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cpath fill='%23fff' d='M2.891.317L.659 2.622l.027-.026c-.629.56-.85 1.45-.559 2.241 1.089 2.989 2.813 5.707 5.05 7.966 2.274 2.223 4.975 3.946 7.938 5.068a2.27 2.27 0 0 0 2.267-.447l2.208-2.214c.255-.232.41-.584.41-.952a1.31 1.31 0 0 0-.33-.87l-2.973-2.985a1.29 1.29 0 0 0-.949-.411l-.137.007c-.316.033-.612.182-.828.42l-1.501 1.509.308.147c-1.244-.567-2.391-1.326-3.399-2.251l-.275-.291a10.37 10.37 0 0 1-1.768-2.695l-.033-.076L7.644 5.23c.255-.233.41-.584.41-.953a1.31 1.31 0 0 0-.428-.968L4.754.357c-.574-.469-1.332-.469-1.863-.04zm1.2.771l2.85 2.933c.088.081.125.167.125.256a.32.32 0 0 1-.104.236L4.949 6.533l.124.305a11.37 11.37 0 0 0 2.435 3.701c1.103 1.012 2.337 1.829 3.675 2.439l.312.142 2.004-2.017c.075-.082.161-.12.25-.12s.175.038.235.104l2.909 2.919c.083.076.12.162.12.252a.32.32 0 0 1-.104.236l-2.204 2.21c-.327.291-.814.389-1.254.236a22 22 0 0 1-7.58-4.84C3.74 9.948 2.095 7.352 1.054 4.496a1.06 1.06 0 0 1 .197-1.067l.118-.117 2.187-2.264c.125-.096.366-.096.535.041z'/%3E%3C/svg%3E");background-size:cover}@media only screen and (min-width: 768px){.header__phone:before{display:none}}.header__phone span{display:none}@media only screen and (min-width: 768px){.header__phone span{display:inline;margin-left:4px}}.header__mail{color:#00b4d1}.header__inner{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:86px}@media only screen and (min-width: 1024px){.header__inner{margin-top:-10px}}.header__logo{width:220px}@media only screen and (min-width: 1260px){.header__logo{position:relative;top:-6px;width:267px}}.header__burger{position:relative;width:44px;height:44px;margin-left:auto}@media only screen and (min-width: 1024px){.header__burger{display:none}}.header__burger.active:before{transform:translateY(0) rotate(45deg)}.header__burger.active:after{transform:translateY(0) rotate(-45deg)}.header__burger:before,.header__burger:after{content:"";position:absolute;top:calc(50% - 2px);left:1px;width:42px;height:4px;background:white;transition:transform 0.2s}.header__burger:before{transform:translateY(-5px)}.header__burger:after{transform:translateY(5px)}.header__finder{background-color:white;padding-bottom:40px}.header__finder.popup{display:none;position:absolute;left:60px;right:0;top:11px}@media only screen and (min-width: 768px){.header__finder.popup{top:16px}}@media only screen and (min-width: 1024px){.header__finder.popup{display:block;top:-10000vh;opacity:0;transition:top linear 0s .4s,opacity linear .4s,transform ease .4s;transform:cubic-bezier(0.65, 0, 0.35, 1);left:0}.header__finder.popup.on{top:100%;opacity:1;transition:opacity linear .4s,transform ease .4s;transform:cubic-bezier(0.65, 0, 0.35, 1)}}@media only screen and (min-width: 1024px){.header__finder.popup form{padding:20px 0 0}}.header__finder.popup form button{right:70px}@media only screen and (min-width: 1024px){.header__finder.popup form button{right:0}}@media only screen and (min-width: 1024px){.header__finder{background:rgba(255,255,255,0.97)}}.header__finder form{position:relative;border-bottom:1px solid rgba(0,161,154,0.2);padding:20px 0 0}.header__finder form input{display:block;width:100%;font-size:20px;padding-right:110px;font-family:"Effra", sans-serif;border-bottom:1px solid #00a19a;margin:0 auto;font-size:28px;padding:20px 120px 20px 0;background-color:transparent}.header__finder form input::-moz-placeholder{color:#ddd}.header__finder form input:-ms-input-placeholder{color:#ddd}.header__finder form input::placeholder{color:#ddd}.header__finder form button{color:#00a19a;font-size:18px;background:none;outline:none;position:absolute;right:0;top:calc(50% + 20px);transform:translate(-50%, -50%);font-family:"Effra", sans-serif}.header__finder form button:after{content:'';position:absolute;top:0;left:105%;width:25px;height:100%;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47.719' height='101.824' fill='%2300a19a'%3E%3Cpath d='M32.488 101.824C53.13 70.916 52.762 30.527 31.561 0L20.513 11.047c15.515 24.205 15.858 55.142.884 79.685zM12.94 82.277a63.6 63.6 0 0 0-.826-62.83L0 31.559a47.07 47.07 0 0 1 .736 38.514z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.footer{position:relative;padding:40px 0;background-image:linear-gradient(#2b314e, #092056);color:white;overflow:hidden}.footer:before{content:"";position:absolute;top:-250px;left:-350px;width:700px;height:700px;background:rgba(26,71,176,0.1);border-radius:50%;z-index:-1;position:relative}@media only screen and (min-width: 1024px){.footer:before{top:calc(50% - 350px);left:calc(50% - 980px)}}@media only screen and (min-width: 768px){.footer__row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:-50px}}@media only screen and (min-width: 1024px){.footer__row{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between}}.footer__col{margin-bottom:50px}@media only screen and (min-width: 768px){.footer__col{-ms-flex:0 0 50%;flex:0 0 50%}}@media only screen and (min-width: 1024px){.footer__col{-ms-flex:initial;flex:initial}}.footer__col:last-child{margin-bottom:0}.footer__logo{display:block;max-width:200px;margin-bottom:50px}.footer__title{max-width:210px;margin-bottom:20px;font-size:18px}@media only screen and (min-width: 768px){.footer__title{font-size:16px}}.footer__socials{display:-ms-flexbox;display:flex;margin-top:30px}.footer__socials li{margin-right:10px}.footer__socials a{font-size:0}.footer__socials svg{fill:#00b4d1}.footer__nav{font-size:14px}.footer__nav li{margin-bottom:16px}.footer_home{padding-top:100px}.footer__iso{display:block;height:100px}.footer__iso img{height:100%}.main{position:relative;padding:180px 0 70px;background-image:linear-gradient(#2b314e, #092056);color:white;overflow:hidden}@media only screen and (min-width: 768px){.main{padding:220px 0 140px}}@media only screen and (min-width: 1260px){.main{padding:220px 0}}@media only screen and (min-width: 1680px){.main{padding:220px 0 330px}}.main__title{max-width:240px;margin-bottom:30px;font-size:36px;font-weight:300;line-height:1;letter-spacing:-0.02em}@media only screen and (min-width: 768px){.main__title{max-width:380px;margin-bottom:40px;font-size:58px}}@media only screen and (min-width: 1024px){.main__title{max-width:480px}.main__title strong{display:block}}.main__info{display:-ms-flexbox;display:flex;margin-top:90px;font-size:36px;font-weight:300;text-align:center}@media only screen and (min-width: 768px){.main__info{margin-top:44px}}.main__info li{-ms-flex-positive:1;flex-grow:1}@media only screen and (min-width: 768px){.main__info li{-ms-flex-positive:0;flex-grow:0;min-width:120px;margin-right:28px}}.main__info strong{display:block;font-size:16px;font-weight:400;opacity:0.55}.main__picture{position:absolute;top:200px;left:calc(50% - 10px);width:270px;pointer-events:none}@media only screen and (min-width: 768px){.main__picture{width:400px}}@media only screen and (min-width: 1024px){.main__picture{top:150px;width:625px}}@media only screen and (min-width: 1260px){.main__picture{top:114px;left:calc(50% + 20px)}}.hero{position:relative;min-height:500px;padding:190px 0 64px;background-image:linear-gradient(#2b314e, #092056);background-repeat:no-repeat;background-size:cover;background-position:center;color:white;overflow:hidden}@media only screen and (min-width: 768px){.hero{padding:240px 0 32px}}.hero:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-image:linear-gradient(to right, rgba(0,0,0,0.7), transparent)}.hero:after{content:"";position:absolute;top:50%;left:45%;width:700px;height:700px;background:url("/public/img/symbol.svg") no-repeat center;opacity:0.5;transform:translate(-50%, -50%)}.hero__container{position:relative;z-index:2}.hero__breadcrumbs{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;min-height:25px;margin-bottom:20px;text-transform:uppercase;letter-spacing:0.1em}.hero__breadcrumbs li:not(:last-child):after{content:">";margin:0 8px}.hero__breadcrumbs a{color:white}.hero__title{max-width:540px;font-size:42px;font-weight:700;line-height:1.1}.hero__title_thin{font-weight:300}.hero__categories{margin-top:30px;line-height:1.2}.hero__date{margin-top:14px;font-size:14px}.hero_inner{min-height:0}.hero_simple:after{display:none}.hero_article{padding:330px 0 0;background-color:black;background-position:50% 0;background-size:auto 330px}@media only screen and (min-width: 768px){.hero_article{padding:198px 0 60px;background-size:cover}}.hero_article:after{display:none}.hero_article .hero__container{padding-top:30px;padding-bottom:40px;background:#2b314e}@media only screen and (min-width: 768px){.hero_article .hero__container{padding-top:0;padding-bottom:0;background:none}}.hero_article .hero__title{font-size:28px}@media only screen and (min-width: 768px){.hero_article .hero__title{font-size:42px}}.section{position:relative;padding:52px 0;overflow:hidden}@media only screen and (min-width: 768px){.section{padding:80px 0}}.section:first-child{padding:130px 0 52px}@media only screen and (min-width: 768px){.section:first-child{padding:120px 0 80px}}.section__container.contentpage .section__body{max-width:940px;margin:0 auto}.section__head{margin-bottom:40px;text-align:center}@media only screen and (min-width: 1024px){.section__head{max-width:820px;margin:0 auto 64px}}@media only screen and (min-width: 1024px){.section__head_left{margin-left:0;text-align:left}}.section__title{margin-bottom:20px;font-size:38px;color:#0f358e;font-weight:300;line-height:1.25;letter-spacing:-0.02em}@media only screen and (min-width: 768px){.section__title{font-size:48px;line-height:1.2}}@media only screen and (min-width: 768px){.section__caption{font-size:28px;font-weight:300}}.section__caption_blue{color:#0f358e}.section__subtitle{font-size:26px;color:#2b314e}.section__typo{position:absolute;top:124px;left:-100px;font-size:380px;font-weight:700;color:#f7f8fb;white-space:nowrap;text-transform:uppercase;line-height:1;z-index:-1}@media only screen and (min-width: 1260px){.section__typo{top:calc(50% - 240px);font-size:480px}}.section_visible{overflow:visible}.section_blue{background:#f7f8fb}.section_divider+.section_divider{position:relative}.section_divider+.section_divider:after{content:"";position:absolute;top:0;left:calc(50% - 130px);width:260px;height:1px;background:#00a19a}.section_pt0{padding-top:0}.section_pb0{padding-bottom:0}.section_ov{overflow:visible}.section_scrollto{position:absolute;left:50%;width:60px;height:60px;margin-left:-30px;top:-30px;background-color:#f7f8fb;border:3px solid white;border-radius:50%;transition:background-color 400ms linear, border-color 400ms linear}@media only screen and (min-width: 1024px){.section_scrollto{width:80px;height:80px;margin-left:-40px;top:-40px;border:5px solid white}}.section_scrollto:before{content:'';position:absolute;left:50%;top:50%;width:16px;height:16px;margin-left:-8px;margin-top:-10px;border-right:1px solid #00a19a;border-bottom:1px solid #00a19a;transform:rotate(45deg);transition:border-color 300ms linear}.section_scrollto:hover{background-color:#00a19a;border-color:#f7f8fb}.section_scrollto:hover:before{border-color:white}.content h3{margin-bottom:30px;font-size:32px;font-weight:300;color:#0f358e}@media only screen and (min-width: 1024px){.content h3{font-size:38px;line-height:1.25}}.content p{margin-bottom:24px}.content .large{font-size:24px;font-weight:300}.content ul:not(.posts),.content ol{padding:0 1.6em;margin-bottom:24px}.content ul:not(.posts) li,.content ol li{margin:1px 0}.content ul:not(.posts){list-style:disc}.content ol{list-style:decimal}.content .preamble{margin-bottom:30px;font-size:24px;font-weight:300}@media only screen and (min-width: 1024px){.content .preamble{font-size:28px}}.content figure{margin:30px -24px}@media only screen and (min-width: 768px){.content figure{margin:40px -40px}}@media only screen and (min-width: 1260px){.content figure{margin:40px -60px}}@media only screen and (min-width: 1024px){.content_sidebar{padding-left:320px}}@media only screen and (min-width: 1260px){.content_sidebar{padding-left:380px}}@media only screen and (min-width: 1260px){.content_sidebar figure{margin:40px -40px}}.content_article .article,.content_article .image-block{margin-top:52px}@media only screen and (min-width: 768px){.content_article .article,.content_article .image-block{max-width:820px;margin:52px auto 0}}.content_article .article h3,.content_article .image-block h3{font-weight:700;color:#2b314e;text-align:left}.content_article .article.bordered{padding-bottom:50px;border-bottom:1px solid #dfe3ef}@media only screen and (min-width: 768px){.content.article_posts .posts{max-width:820px}}@media only screen and (min-width: 768px){.content.article_posts .posts.offset{max-width:940px}}.content .text-slider-block{margin-top:52px}.content .text-slider-block h2{text-align:center;color:#0f358e;margin-bottom:50px}.content .text-slider-block h3{font-size:18px}.content .text-slider-block .owl-dots.disabled{display:-ms-flexbox;display:flex}.content .text-slider-block .wedo__item{width:85vw}@media only screen and (min-width: 1024px){.content .text-slider-block .wedo__item{width:360px}}.content .text-slider-block .wedo__item .wedo__content{display:block}.content .circles-block{margin:60px 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}@media only screen and (min-width: 1024px){.content .circles-block{margin:80px 0 60px}}.content .circles-block-item{background-color:#2b314e;border-radius:20px;width:100%;margin-bottom:10px;padding:20px}@media only screen and (min-width: 768px){.content .circles-block-item{width:32%;margin-bottom:0}}@media only screen and (min-width: 1024px){.content .circles-block-item{width:30%}}@media only screen and (min-width: 1260px){.content .circles-block-item{padding:0 20px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;border-radius:50%;width:250px;height:250px}}.content .circles-block-item h2{color:#00a19a;line-height:1.2;margin-bottom:10px}.content .circles-block-item p{color:white;line-height:1.2}.content .accordion-block h2{text-align:center;margin-bottom:30px;color:#0f358e}.content .embed-block{padding:40px;border-radius:5px;margin:50px 0}.content .embed-block.green{background-color:#00a19a}.content .embed-block h2.form-embed{margin:0 auto;max-width:450px;color:white;text-align:center;margin-bottom:20px}.content .embed-block .form-embed{margin:0 auto;max-width:450px;color:white;margin-bottom:20px}@media only screen and (min-width: 768px){.contentpage .content_article .article{max-width:940px}}.merged{background-color:#2B314E;color:#fff;padding:40px}.merged__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media only screen and (min-width: 768px){.merged__container{-ms-flex-direction:row;flex-direction:row}}.merged__col{-ms-flex:1;flex:1;padding-bottom:40px}@media only screen and (min-width: 768px){.merged__col{padding-bottom:0}}.merged__col img{max-width:70%}.merged__col .action{background-color:#2B314E;color:#fff;margin-top:20px}.merged__col div{padding-top:5px}.merged__col__c{-ms-flex:1;flex:1}@media only screen and (min-width: 1024px){.merged__col__c{-ms-flex:2;flex:2}}@media only screen and (min-width: 1260px){.wedo{overflow:visible}}.wedo__item{width:140px}@media only screen and (min-width: 768px){.wedo__item{width:360px}}.wedo__preview{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;margin-bottom:16px}@media only screen and (min-width: 768px){.wedo__preview{margin-bottom:32px}}.wedo__title{margin-bottom:10px;font-size:18px;color:#0f358e;font-weight:300}@media only screen and (min-width: 768px){.wedo__title{max-width:280px;margin-bottom:30px;font-size:36px;line-height:1.22}}.wedo__content{display:none}@media only screen and (min-width: 768px){.wedo__content{display:block;margin-bottom:60px}}.wedo .more span:first-child{display:none}@media only screen and (min-width: 768px){.wedo .more span:first-child{display:inline}}@media only screen and (min-width: 768px){.wedo .more span:last-child{display:none}}@media only screen and (min-width: 768px){.wedo .owl-item{position:relative}.wedo .owl-item:not(:last-child):after{content:"";position:absolute;top:80px;right:-134px;width:48px;height:102px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47.719' height='101.824' fill='%23dddfe7'%3E%3Cpath d='M32.488 101.824C53.13 70.916 52.762 30.527 31.561 0L20.513 11.047c15.515 24.205 15.858 55.142.884 79.685zM12.94 82.277a63.6 63.6 0 0 0-.826-62.83L0 31.559a47.07 47.07 0 0 1 .736 38.514z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}}.wedo .owl-item img{width:auto;max-height:100%}@media only screen and (min-width: 768px){.wedo .owl-dots{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-top:40px}.wedo .owl-dots button{margin:0 5px}.wedo .owl-dots button.active span{background:#00a19a;border:1px solid #00a19a}.wedo .owl-dots span{display:block;width:20px;height:20px;border:1px solid #707070;border-radius:50%;transition:background 0.2s, border-color 0.2s}}.team__carousel{margin-bottom:-60px;padding-bottom:60px}@media only screen and (min-width: 1024px){.team__carousel{overflow:visible}}.team .break{-ms-flex-preferred-size:100%;flex-basis:100%;height:0}.team__item{position:relative;display:block;width:220px;min-height:362px;padding:32px 24px 40px;background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1);text-align:center;transition:all ease 1s}@media only screen and (min-width: 768px){.team__item{width:264px;padding:30px 30px 40px}}@media only screen and (min-width: 1260px){.team__item{width:auto}}.team__item a{font-size:14px;line-height:12px;display:none}.team__item .team__learn{display:none;position:absolute;bottom:30px}.team__item .team__learn a{padding:12px 15px;border:solid 1px #00A19A;border-radius:24px;display:inline-block;margin-top:11px;color:#fff;font-weight:500}.team__item_plus{font-size:40px;font-weight:100;color:#00a19a;position:absolute;right:10px;top:0}.team__item_minus{display:none;font-size:40px;font-weight:100;color:#00a19a;position:absolute;right:10px;top:0}.team__preview{width:150px;height:150px;margin:0 auto 30px}@media only screen and (min-width: 768px){.team__preview{width:190px;height:190px}}.team__preview img{width:100%;height:100%;border-radius:50%;-o-object-fit:cover;object-fit:cover}.team__title{color:#0f358e}@media only screen and (min-width: 768px){.team__title{font-size:18px}}.team__position{font-size:14px;color:#595f6f}.team__more{margin-top:60px;text-align:center}.team__item_active{background-color:#2B314E;color:#fff}.team__item_active .team__preview{width:99px;height:99px;margin-bottom:10px}.team__item_active .team__title,.team__item_active .team__position{color:#fff}.team__item_active .team__position{margin-bottom:10px}.team__item_active .team__link{display:block;margin-bottom:5px;color:#00A19A}.team__item_active .team__learn{display:block;left:50%;margin-left:-51px}.team__item_active .team__item_plus{display:none}.team__item_active .team__item_minus{display:block}.team-grid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;row-gap:20px;-moz-column-gap:20px;column-gap:20px}.team-grid-item{position:relative;width:264px;min-height:366px;padding:32px 24px 40px;background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1);text-align:center;transition:all ease 1s}@media only screen and (min-width: 768px){.team-grid-item{width:264px;padding:30px 30px 40px}}.team-grid-item a{font-size:14px;line-height:12px;display:none}.team-grid-item-learn{display:none;position:absolute;bottom:30px}.team-grid-item-learn a{padding:12px 15px;border:solid 1px #00A19A;border-radius:24px;display:inline-block;margin-top:11px;color:#fff;font-weight:500}.team-grid-item-plus{font-size:40px;font-weight:100;color:#00a19a;position:absolute;right:10px;top:0}.team-grid-item-minus{display:none;font-size:40px;font-weight:100;color:#00a19a;position:absolute;right:10px;top:0}.team-grid-item-preview{width:150px;height:150px;margin:0 auto 30px}@media only screen and (min-width: 768px){.team-grid-item-preview{width:190px;height:190px}}.team-grid-item-preview img{width:100%;height:100%;border-radius:50%;-o-object-fit:cover;object-fit:cover}.team-grid-item-title{color:#0f358e}@media only screen and (min-width: 768px){.team-grid-item-title{font-size:18px}}.team-grid-item-position{font-size:14px;color:#595f6f}.team-grid-item-more{margin-top:60px;text-align:center}.team-grid-item-active{background-color:#2B314E;color:#fff}.team-grid-item-active .team-grid-item-preview{width:99px;height:99px;margin-bottom:10px}.team-grid-item-active .team-grid-item-title,.team-grid-item-active .team-grid-item-position{color:#fff}.team-grid-item-active .team-grid-item-position{margin-bottom:10px}.team-grid-item-active .team-grid-item-link{display:block;margin-bottom:5px;color:#00A19A}.team-grid-item-active .team-grid-item-learn{display:block;left:50%;margin-left:-51px}.team-grid-item-active .team-grid-item-plus{display:none}.team-grid-item-active .team-grid-item-minus{display:block}.team__member{max-width:25%;background-color:white;-ms-flex:1;flex:1;position:relative;padding:20px;padding-top:40px;width:220px;min-height:362px;padding:32px 24px 40px;background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1);text-align:center}@media only screen and (min-width: 768px){.team__member{width:264px;padding:30px 30px 40px}}.team__member-minus{font-size:50px;color:#00a19a;position:absolute;right:0px;top:-20px}.team__member-photo{border-radius:50%}@media only screen and (min-width: 768px){.team__member-photo{float:left;margin-right:40px;width:200px;height:200px;border-radius:100px}}@media only screen and (min-width: 1260px){.team__member-photo{width:200px;height:200px}}.team__member-photo img{width:100%}@media only screen and (min-width: 768px){.team__member-photo img{width:200px;height:200px;border-radius:100px}}.team__member-details-title{padding-top:20px;font-size:24px;color:#0f358e;margin-top:20px}@media only screen and (min-width: 768px){.team__member-details-title{margin-top:0px}}.team__member-details-position{font-size:14px;line-height:12px;margin-bottom:20px}.team__member-details .team__link{color:#00b4d1;display:block}.team__member-bio{clear:both;margin-top:20px}@media only screen and (min-width: 768px){.team__member-bio{margin-top:60px}}.team__member-bio p{margin-bottom:24px}.modal{width:94%;max-width:900px}.team-member{position:relative;padding:20px;padding-top:40px}.team-member-minus{font-size:50px;color:#00a19a;position:absolute;right:0px;top:-20px}.team-member-photo{border-radius:50%}@media only screen and (min-width: 768px){.team-member-photo{float:left;margin-right:40px;width:200px;height:200px;border-radius:100px}}@media only screen and (min-width: 1260px){.team-member-photo{width:200px;height:200px}}.team-member-photo img{width:100%}@media only screen and (min-width: 768px){.team-member-photo img{width:200px;height:200px;border-radius:100px}}.team-member-details-title{padding-top:20px;font-size:24px;color:#0f358e;margin-top:20px}@media only screen and (min-width: 768px){.team-member-details-title{margin-top:0px}}.team-member-details-position{font-size:14px;line-height:12px;margin-bottom:20px}.team-member-details .team__link{color:#00b4d1;display:block}.team-member-bio{clear:both;margin-top:20px}@media only screen and (min-width: 768px){.team-member-bio{margin-top:60px}}.team-member-bio p{margin-bottom:24px}@media only screen and (min-width: 1024px){.testimonials{position:relative}}.testimonials__item{padding:62px 32px 40px;text-align:center}@media only screen and (min-width: 768px){.testimonials__item{padding:50px}}.testimonials__content{margin-bottom:32px;color:#0f358e}@media only screen and (min-width: 768px){.testimonials__content{position:relative;padding:0 64px}.testimonials__content:before{content:"";position:absolute;top:0;left:0;width:42px;height:40px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='40'%3E%3Cpath fill='%23a4b5e6' d='M16.265 7.217c-3.513.665-5.982 3.225-7.407 7.678-.713 2.201-1.069 4.376-1.069 6.526 0 .256.013.473.038.653s.064.576.115 1.19h8.324V40H0V24.568c0-7.575 1.502-13.41 4.505-17.505S11.429.614 16.265 0v7.217zm25.735 0c-2.8.461-4.925 2.047-6.376 4.76s-2.176 5.835-2.176 9.367a11.15 11.15 0 0 0 .038.921c.025.307.089.64.191.998H42V40H25.658V24.568c0-6.091 1.273-11.529 3.818-16.315S36.196.717 42 0v7.217z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}}.testimonials__preview{width:100px;height:100px;margin:0 auto 20px}.testimonials__preview img{border-radius:50%}.testimonials__title{margin-bottom:6px;color:#0f358e}@media only screen and (min-width: 768px){.testimonials__title{font-size:18px}}.testimonials__position{font-size:14px}@media only screen and (min-width: 1024px){.testimonials .owl-carousel{position:static;max-width:750px;margin:0 auto}}.testimonials .owl-stage-outer{background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1)}.testimonials .owl-nav button.owl-prev,.testimonials .owl-nav button.owl-next{background:#00a19a}.testimonials .owl-nav button.owl-prev.disabled,.testimonials .owl-nav button.owl-next.disabled{background:#a7d0ce}.testimonials .owl-prev,.testimonials .owl-next{position:absolute;top:calc(50% - 20px);width:40px;height:40px;border-radius:50%;font-size:0 !important;transition:background 0.2s}@media only screen and (min-width: 1024px){.testimonials .owl-prev,.testimonials .owl-next{transform:scale(1.5)}}.testimonials .owl-prev{left:-20px}.testimonials .owl-next{right:-20px}.latest{position:relative;z-index:2;margin-bottom:-44px}.latest__inner{margin:0 -8px;padding:44px 24px 32px;background:#f7f8fb;border-radius:5px}.latest__title{padding-left:30px}.latest__items{padding:0 30px}@media only screen and (min-width: 1024px){.latest__items{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.latest__item{-ms-flex:1;flex:1;width:100%;padding:40px 30px;background:white;border-radius:5px;box-shadow:20px 20px 60px rgba(0,0,0,0.1);margin-right:30px;margin-bottom:20px;position:relative}.latest__item:last-child{margin-right:0}.latest__title{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:32px;font-size:18px;color:#0f358e;text-transform:uppercase;letter-spacing:0.1em}.latest__title svg{margin-right:16px}@media only screen and (min-width: 768px){.latest__list{display:-ms-flexbox;display:flex;margin:0 -30px}}@media only screen and (min-width: 768px){.latest__list .latest__item{padding:0 30px;-ms-flex:1;flex:1}}.latest__item{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start}.latest__subtitle{margin-bottom:20px;font-size:20px;line-height:1.2}.latest__date{margin-bottom:16px;font-size:14px}.latest__more{position:absolute;bottom:20px;right:30px;font-size:16px;font-weight:500;text-transform:uppercase}.logos{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}@media only screen and (min-width: 768px){.logos{margin:0 auto;padding-left:200px;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:normal;align-items:normal}}.logos .fixed-logo{z-index:111}@media only screen and (min-width: 768px){.logos .fixed-logo{position:absolute;left:0;top:0;padding-right:40px}}.logos .fixed-logo img{display:block;height:100px;width:100%}.logos .fixed-logo--right{padding-right:0}@media only screen and (min-width: 768px){.logos .fixed-logo--right{position:absolute;right:0;left:unset;padding-left:40px}}.logos__item img{height:100px}@media only screen and (min-width: 1024px){.about{display:-ms-flexbox;display:flex;margin:0 -30px}}.about-noflex{display:block;margin:0}@media only screen and (min-width: 1024px){.about__col{padding:0 30px;-ms-flex:1;flex:1}}.about__col:first-child{margin-bottom:52px}@media only screen and (min-width: 1024px){.about__col:first-child{margin:0}}@media only screen and (min-width: 1024px){.about__col:last-child{padding-top:172px}}.about__title,.about__caption{color:#00a19a;font-weight:300}.about__title{margin-bottom:40px;font-size:28px}@media only screen and (min-width: 1024px){.about__title{font-size:38px;line-height:1.25}}.about__caption{margin-bottom:52px;font-size:24px}@media only screen and (min-width: 1024px){.about__caption{font-size:28px}}.about__preview{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:112px;height:112px;margin-bottom:44px;border:1px solid #da3089;border-radius:50%}@media only screen and (min-width: 1024px){.about__preview{margin-bottom:60px}}@media only screen and (min-width: 1024px){.about_image .about__col:last-child{padding-top:0}}.instruments{margin-bottom:-30px}@media only screen and (min-width: 768px){.instruments{max-width:940px;margin:0 auto;-moz-column-count:2;column-count:2;-moz-column-gap:30px;column-gap:30px}}.instruments__title{position:relative;margin-bottom:40px;padding-bottom:30px;max-width:280px;color:#00a19a;font-size:18px;text-transform:uppercase;letter-spacing:0.1em}.instruments__title:after{content:"";position:absolute;top:100%;left:0;width:124px;height:1px;background:#00a19a}.instruments__item{margin-bottom:30px;padding:32px 24px;background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1)}@media only screen and (min-width: 768px){.instruments__item{display:inline-block;width:100%;padding:40px 48px;vertical-align:top}}.instruments__subtitle{margin-bottom:30px;font-size:28px;font-weight:300;color:#0f358e}.instruments__content{margin-bottom:30px}.talk{position:relative;z-index:2}@media only screen and (min-width: 1024px){.talk{position:static;margin-bottom:80px;background-image:linear-gradient(#f7f8fb 50%, white 50%)}}.talk__inner{padding:54px 0;color:white;text-align:center}@media only screen and (min-width: 1024px){.talk__inner{position:relative;max-width:940px;margin:0 auto;z-index:2}}.talk__inner:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#00b4d1;background-image:url(/public/img/symbol-white.svg);background-repeat:no-repeat;background-position:center;background-size:660px;z-index:-1}@media only screen and (min-width: 1024px){.talk__inner:before{border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1)}}.talk__title{max-width:380px;margin:0 auto 30px;font-size:18px;letter-spacing:0.1em;text-transform:uppercase}@media only screen and (min-width: 1024px){.service{display:-ms-flexbox;display:flex}}@media only screen and (min-width: 1024px){.service__sidebar{-ms-flex:0 0 260px;flex:0 0 260px;margin-right:60px}}@media only screen and (min-width: 1260px){.service__sidebar{-ms-flex:0 0 300px;flex:0 0 300px;margin-right:80px}}.service__menu{position:relative;margin-bottom:40px}.service__head{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:10px 16px;border:1px solid #00b4d1;border-radius:10px}@media only screen and (min-width: 1024px){.service__head{margin-bottom:10px;padding:0 0 20px;border-color:#dddfe7;border-width:0 0 1px;border-radius:0}}.service__head.active:after{transform:rotate(180deg)}.service__head:after{content:"";-ms-flex-negative:0;flex-shrink:0;width:12px;height:6px;margin-left:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4'%3E%3Cpath fill='%232b314e' d='M3.846 3.855L6.854.839a.49.49 0 0 0 .001-.694.49.49 0 0 0-.694-.001L3.499 2.813.837.143a.49.49 0 0 0-.694.002.49.49 0 0 0 .001.694l3.009 3.017c.092.093.216.145.347.145s.255-.052.347-.145z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}@media only screen and (min-width: 1024px){.service__head:after{display:none}}.service__preview{display:none}@media only screen and (min-width: 1024px){.service__preview{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;margin-right:20px}.service__preview img{max-height:100%}}.service__title{-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;color:#2b314e;text-transform:uppercase;letter-spacing:0.1em;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@media only screen and (min-width: 768px){.service__title{font-size:18px;white-space:normal}}.service__list{display:none;position:absolute;top:100%;left:0;width:100%;margin-top:2px;padding:6px;background:white;border:1px solid #00b4d1;border-radius:10px}@media only screen and (min-width: 1024px){.service__list{display:block;position:static;padding:0 10px;border:none}}.service__list.visible{display:block}.service__list a{display:block;position:relative;padding:10px;font-size:16px;color:#00b4d1;letter-spacing:0.1em}@media only screen and (min-width: 768px){.service__list a{font-size:18px}}.service__list a.active{color:#2b314e}@media only screen and (min-width: 1024px){.service__list a.active:before{content:"";position:absolute;top:18px;left:-12px;width:15px;height:8px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4'%3E%3Cpath fill='%232b314e' d='M3.846 3.855L6.854.839a.49.49 0 0 0 .001-.694.49.49 0 0 0-.694-.001L3.499 2.813.837.143a.49.49 0 0 0-.694.002.49.49 0 0 0 .001.694l3.009 3.017c.092.093.216.145.347.145s.255-.052.347-.145z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;transform:rotate(-90deg)}}.service__caption{margin-bottom:40px;font-size:24px;font-weight:300;color:#0f358e}@media only screen and (min-width: 768px){.service__caption{font-size:28px}}.service__caption.alt{font-size:38px;font-weight:700;margin-bottom:20px}.service__logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -20px 20px}.service__logos li{padding:0 20px 20px;-ms-flex:0 0 50%;flex:0 0 50%}@media only screen and (min-width: 768px){.service__logos li{-ms-flex:0 0 25%;flex:0 0 25%}}@media only screen and (min-width: 768px){.service__container.haspreview{display:-ms-flexbox;display:flex}}@media only screen and (min-width: 768px){.service__container_left{-ms-flex:1;flex:1;padding-right:40px}}@media only screen and (min-width: 768px){.service__container_preview{-ms-flex:0 0 32%;flex:0 0 32%}}.service__container_preview img{display:block;width:auto;max-width:100%}@media only screen and (min-width: 1024px){.service__container{max-width:calc(100% - 380px);width:100%}}.service__content{margin-bottom:32px}@media only screen and (min-width: 768px){.service__content{margin-bottom:40px}}.service__content h3{margin-bottom:20px;font-weight:500;color:#0f358e}.service__content p{margin-bottom:24px}.service__content ul,.service__content ol{padding:0 1.6em;margin-bottom:24px}.service__content ul li,.service__content ol li{margin:1px 0}.service__content ul{list-style:disc}.service__content ol{list-style:decimal}.service__content figure.image{margin-left:0;margin-right:0}.service__content .image-block:first-child figure.image{margin-top:0}.service__content .wedo{overflow:hidden;max-width:100%;margin:0}@media only screen and (min-width: 768px){.related{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -10px -20px}}@media only screen and (min-width: 1260px){.related{margin:0 -15px -30px}}.related__item{border:1px solid #dddfe7;border-radius:5px}@media only screen and (min-width: 768px){.related__item{-ms-flex:0 0 calc(50% - 20px);flex:0 0 calc(50% - 20px);margin:0 10px 20px}}@media only screen and (min-width: 1260px){.related__item{-ms-flex:0 0 calc(25% - 30px);flex:0 0 calc(25% - 30px);margin:0 15px 30px}}.related__item:not(:last-child){margin-bottom:20px}@media only screen and (min-width: 768px){.related__item:not(:last-child){margin-bottom:20px}}.related__link{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;height:100%;padding:30px}.related__title{margin-bottom:20px;font-size:28px;font-weight:300;color:#0f358e;line-height:1.2}@media only screen and (min-width: 1260px){.related__title{font-size:32px}}.related__content{margin-bottom:20px;font-size:16px;color:#595f6f}.related .more{margin-top:auto}@media only screen and (min-width: 768px){.case{padding-top:40px}}@media only screen and (min-width: 1024px){.case{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;margin:0 -30px}}.case__col:first-child{margin-bottom:40px}@media only screen and (min-width: 1024px){.case__col:first-child{max-width:650px;margin:0 30px}}@media only screen and (min-width: 1024px){.case__col:last-child{-ms-flex:0 0 355px;flex:0 0 355px;margin:0 30px}}.case__quote{margin-bottom:40px;font-size:28px;font-weight:300;color:#0f358e}@media only screen and (min-width: 768px){.case__quote{position:relative;font-size:32px}.case__quote:before{content:"";position:absolute;top:-64px;left:-16px;width:42px;height:40px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='40'%3E%3Cpath fill='%23a4b5e6' d='M16.265 7.217c-3.513.665-5.982 3.225-7.407 7.678-.713 2.201-1.069 4.376-1.069 6.526 0 .256.013.473.038.653s.064.576.115 1.19h8.324V40H0V24.568c0-7.575 1.502-13.41 4.505-17.505S11.429.614 16.265 0v7.217zm25.735 0c-2.8.461-4.925 2.047-6.376 4.76s-2.176 5.835-2.176 9.367a11.15 11.15 0 0 0 .038.921c.025.307.089.64.191.998H42V40H25.658V24.568c0-6.091 1.273-11.529 3.818-16.315S36.196.717 42 0v7.217z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}}.case__content{margin-bottom:40px}.case__author{margin-bottom:16px;color:#0f358e}.case__company{margin-bottom:30px;font-size:14px}.case__preview{max-width:355px}.case__preview img{border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1)}@media only screen and (min-width: 1024px){.case_reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}.news__feature{margin:-300px 0 30px}@media only screen and (min-width: 768px){.news__feature{margin:-260px 0 80px}}@media only screen and (min-width: 1024px){.news__feature{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}}.news__preview{margin:0 -24px}@media only screen and (min-width: 768px){.news__preview{margin:0 -40px}}@media only screen and (min-width: 1024px){.news__preview{-ms-flex:0 0 50%;flex:0 0 50%;margin:0}}@media only screen and (min-width: 1024px){.news__figure{margin-right:-194px}}.news__figure img{min-height:295px;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 1024px){.news__figure img{border-radius:5px}}.news__main{position:relative;z-index:2;margin-top:-48px;padding:24px;background:#00a19a;border-radius:5px;color:white}@media only screen and (min-width: 768px){.news__main{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;padding:60px 40px 40px}.news__main .btn{margin-left:auto}}@media only screen and (min-width: 1024px){.news__main{-ms-flex:0 0 50%;flex:0 0 50%;margin:0}}.news__title{margin-bottom:40px;font-size:24px;font-weight:300;line-height:1.2}@media only screen and (min-width: 768px){.news__title{font-size:32px}}.news__categories{max-width:400px;margin-bottom:14px}.news__date{margin-bottom:30px;font-size:14px}.news__section:not(:last-child){margin-bottom:52px}.news__year{margin-bottom:32px;font-size:24px;font-weight:300;color:#0f358e;text-align:center}@media only screen and (min-width: 768px){.news__year{margin-bottom:48px;font-size:48px}}@media only screen and (min-width: 768px){.news__list{display:-ms-flexbox;display:flex;margin:0 -15px;-ms-flex-wrap:wrap;flex-wrap:wrap}}.news__item{margin-bottom:30px}@media only screen and (min-width: 768px){.news__item{-ms-flex:0 0 calc(50% - 30px);flex:0 0 calc(50% - 30px);margin:0 15px 30px}}@media only screen and (min-width: 1024px){.news__item{-ms-flex:0 0 calc(33.33% - 30px);flex:0 0 calc(33.33% - 30px)}}.news__link{position:relative;display:-ms-flexbox;display:flex;min-height:400px;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;padding:32px 24px;background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1);color:#595f6f}.news__link .news__date{margin-bottom:8px}.news__link .news__categories{margin-bottom:16px;color:#bfc4ce}.news__subtitle{margin-bottom:20px;font-size:22px;color:#2b314e}@media only screen and (min-width: 1260px){.news__subtitle{font-size:26px}}.news__more{position:absolute;bottom:30px;right:30px;margin-left:auto;font-size:16px;color:#00a19a;font-weight:500;letter-spacing:0.1em;text-transform:uppercase}@media only screen and (min-width: 768px){.posts{max-width:940px;margin:0 auto}}@media only screen and (min-width: 768px){.posts:not(.not-alternate) .posts__item:nth-child(2n){-ms-flex-direction:row-reverse;flex-direction:row-reverse}}.posts__item{margin-top:52px}@media only screen and (min-width: 768px){.posts__item{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;margin:80px -15px 0}}.posts__item.bordered{padding-bottom:50px;border-bottom:1px solid #dfe3ef}@media only screen and (min-width: 768px){.posts__item.bordered{padding-bottom:80px}}@media only screen and (min-width: 768px){.posts__col{margin:0 15px}}@media only screen and (min-width: 768px){.posts__col:first-child{-ms-flex:0 0 280px;flex:0 0 280px}}@media only screen and (min-width: 1024px){.posts__col:first-child{-ms-flex:0 0 358px;flex:0 0 358px}}@media only screen and (min-width: 768px){.posts__col:last-child{-ms-flex:0 0 calc(100% - 340px);flex:0 0 calc(100% - 340px)}}@media only screen and (min-width: 1024px){.posts__col:last-child{-ms-flex:0 0 calc(100% - 418px);flex:0 0 calc(100% - 418px)}}.posts__preview{display:block;margin-bottom:30px}.posts__preview img{border-radius:5px}.posts__caption{margin-bottom:12px;text-transform:uppercase;letter-spacing:0.1em}.posts__title{margin-bottom:24px !important;font-size:32px !important;font-weight:700 !important}.posts__title a{color:#2b314e}.contacts{margin-top:-160px}@media only screen and (min-width: 1024px){.contacts{display:-ms-flexbox;display:flex;margin:-130px -15px 0}}.contacts__item{padding:32px 24px 24px;background:white;border-radius:5px;box-shadow:20px 20px 40px rgba(0,0,0,0.1)}@media only screen and (min-width: 1024px){.contacts__item{margin:0 15px;padding:40px 30px 30px;-ms-flex:1;flex:1}}.contacts__item:not(:last-child){margin-bottom:30px}@media only screen and (min-width: 1024px){.contacts__item:not(:last-child){margin-bottom:0}}.contacts__title{margin-bottom:24px;font-size:26px}.contacts__phones{margin-bottom:20px}.contacts__phones span{display:inline-block;min-width:110px}.contacts__phones a{color:#595f6f}.contacts .btn{margin-bottom:20px}.contacts__content{margin-bottom:24px}@media only screen and (min-width: 768px){.contacts__content{margin-bottom:40px}}.accordion__item{border-radius:10px;border:1px solid rgba(0,180,209,0.2);background-color:#f7f8fb}.accordion__item+.accordion__item{margin-top:20px}.accordion__item.is-active .accordion__body{max-height:50vh;border-top:1px solid rgba(0,180,209,0.2);padding-top:30px;overflow-y:auto}.accordion__head{padding:20px 30px;cursor:pointer;position:relative}@media only screen and (min-width: 768px){.accordion__head{padding:20px 40px}}.accordion__head-wrap:after{content:"+";position:absolute;font-family:Arial;font-size:32px;color:#0f358e;right:20px;top:50%;transform:translate(0, -50%)}.accordion__item.is-active .accordion__head-wrap:after{content:"-"}.accordion h3.accordion__title{font-size:22px !important;font-weight:500 !important;margin-bottom:0;max-width:calc(100% - 20px)}.accordion__body{margin:0 30px;max-height:0;overflow:hidden}@media only screen and (min-width: 768px){.accordion__body{margin:0 40px}}.nformr-form{max-width:450px;margin:0 auto}.nformr-form h2{color:white;text-align:center;margin-bottom:20px}.nformr-form p{color:white}.nformr-form-field{margin-bottom:10px}.nformr-form-field-input input{width:100%;padding:10px;font-size:15px;border-radius:5px;background:white}.nformr-form-field-label{color:white}.nformr-form-field-error{color:#7cffff;margin:5px 0 0 !important}.nformr-form .nformr-form-actions button:before{background:#2b314e}.nformr-form .nformr-form-actions button:after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='49' fill-rule='nonzero'%3E%3Cpath fill='%232b314e' d='M3.517 24.533A14.11 14.11 0 0 0 .184 16.1L14.276 2.184C11.194.741 7.832-.005 4.429 0H0v49h4.429c3.386.004 6.731-.734 9.8-2.163L.184 32.968a14.11 14.11 0 0 0 3.333-8.435'/%3E%3Cpath fill='%23fff' d='M19.339 5.872c7.796 10.998 8.021 25.641.61 36.862l-.265.395-4.127-4.058a27.11 27.11 0 0 0-.07-28.753l-.258-.403 4.11-4.043zm-7.236 6.921a23.66 23.66 0 0 1 .52 22.983l-.212.393-4.542-4.543a17.51 17.51 0 0 0-.09-13.927l-.183-.4 4.507-4.506z'/%3E%3C/svg%3E")}.search__pills{background:#00a19a;padding:20px 0}.search__pills ul{display:-ms-flexbox;display:flex}.search__pills ul li{background:white;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;font-size:16px;font-weight:500;color:white;border-radius:20px;border:1px solid white;line-height:1;transition:all cubic-bezier(0.65, 0, 0.35, 1) 0.3s}.search__pills ul li:not(:last-child){margin-right:10px}.search__pills ul li a{padding:10px 20px}.search__pills ul li:hover{background:#00a19a}.search__pills ul li:hover a{color:white}.search .posts{max-width:none}.search .posts__item{position:relative;padding-bottom:50px}@media only screen and (min-width: 1024px){.search .posts__item{padding-bottom:80px}}.search .posts__item:after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:300px;height:1px;background:#00a19a}.search .posts__caption{color:#00a19a}.search .posts__col img{border-radius:10px;box-shadow:0 0 50px -10px rgba(0,0,0,0.4);margin-bottom:25px}@media only screen and (min-width: 768px){.search .posts__col img{margin-bottom:0}}.search h3{margin-top:1em}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:0.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial, Baskerville, monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:0.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:0.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{transform:scale(0.75)}.mfp-arrow-left{transform-origin:0}.mfp-arrow-right{transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-white-popup{position:relative;background:#FFF;padding:30px 50px;width:auto;max-width:500px;margin:20px auto}.mfp-white-popup h4{font-size:22px;margin-bottom:10px}.mfp-white-popup .action{display:block;background-color:#2B314E;border-color:#2B314E;color:#fff;padding:6px 20px;margin:8px 0 20px 0}.mfp-white-popup button:hover{text-decoration:underline}.mfp-white-popup p{font-size:14px;margin-bottom:4px}.mfp-white-popup label{font-size:14px;font-weight:500}.mfp-white-popup .mfp-email{margin-top:-10px}.mfp-white-popup .mfp-input{width:100%;padding:0 5px;border:1px solid lightgrey;margin-bottom:15px;height:35px;font-size:16px;color:#555}.mfp-white-popup .mfp-danger{color:red}@media (max-width: 500px){.mfp-white-popup{padding:20px 15px}}.gallery-block{display:grid;grid-gap:10px;grid-template-columns:repeat(3, minmax(0, 1fr))}@media only screen and (min-width: 768px){.gallery-block{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media only screen and (min-width: 1024px){.gallery-block{grid-gap:20px;grid-template-columns:repeat(5, minmax(0, 1fr))}}.gallery-block a{aspect-ratio:1}.gallery-block a img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%;border-radius:5px}.iso{padding-top:0}.iso a{width:200px}.iso__inner{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.events .posts__item h3{color:#0f358e}.events .posts__item:nth-child(1){margin-top:0}.events .posts__title{font-size:28px !important}@media only screen and (min-width: 768px){.events .posts__title{font-size:32px !important}}.events .posts__content .btn{margin-top:1.75em}.events .section__head{max-width:940px}.scroll-left div{animation:scroll-left 100s linear infinite}@keyframes scroll-left{0%{transform:translateX(30%)}100%{transform:translateX(-100%)}}video{width:100%;left:0;right:0;height:100%;position:absolute;-o-object-fit:cover;object-fit:cover;z-index:0;top:0}

