
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html {
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
	background: #0A626A;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	color: #0A626A;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}


p {
  margin-top: 16px;
}
ul {
	list-style: none;
}
ul, ol {
  text-align: left;
}


a:hover {
  text-decoration: underline;
}



/* Title */
h1, h2, h3, h4 {
	display: block;
	position: relative;
  font-weight: 600;
	text-align: left;
	text-transform: uppercase;
	color: #0a626a;
	margin-bottom: 16px;
}

h1 {
	font-size: 32px;
	line-height: 120%;
	color: #fff;
	margin-bottom: 14px;
}

h2 {
  font-size: 30px;
  color: #fff;
  background: #41af5a;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 10px 20px;
  text-transform: none;
	line-height: 120%;
}


h3, h4, h5 {
	font-size: 20px;
	line-height: 120%;
}



/* Button */
.button {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	width: auto;
  min-width: 220px;
	height: auto;
	-webkit-box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
	        box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
	background: #ff4949;
	-webkit-border-radius: 60px;
	        border-radius: 60px;
	font-size: 14px;
	font-weight: 600;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255,255,255,1.00);
	cursor: pointer;
	padding: 17px 24px;
	margin: 16px auto 0 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
}

.button:hover {
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
	text-decoration: none;
}


/* Button Inverse */
.button.inverse {
	-webkit-box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
	        box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
	background: #2e9344;
}
.button-box {
	text-align: center;
	margin: 0;
}


/* var */
.button > img,
.button > span {
	display: inline-block;
	position: relative;
	font: inherit;
	line-height: 1;
	vertical-align: middle;
}
.button > img + span {
	margin-left: 10px;
}



/* Special */
.image img,
.background img {
	display: block;
	position: relative;
	margin: auto;
}

.background {
	display: block !important;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0;
	z-index: -1;
  margin: 0!important;
}

.background img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.js-expand-content {
	display: none;
	overflow: hidden;
}

.js-expand-content.expanded {
	height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
	fill: rgba(255, 255, 255, 1);
  line-height: 1;
}
use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}



/* Article */


.article ul > li{
  display: block;
  position: relative;
	list-style: none;
  padding: 0px 0px 0px 42px;
}

.article ol > li, article ol > li  {
  counter-increment: ol;
}

.article ul > li:before{
	display: inline-block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto 0;
  left: 0px;
	width: 26px;
  height: 26px;
  content: "";
	background-image: url(../images/icons/list-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.article ul > li + li {
  margin-top: 20px;
}
.article ol > li:before{
  content: counter(ol) '.';
	color: #0d4047;
}
.article__button {
	margin: 16px auto 0 0;
}
article > *:first-child,
.article > *:first-child {
	margin-top: 0px;
}

article > * + *,
.article > * + * {
	margin-top: 20px;
}

article > * + h2,
.article > * + h2 {
	margin-top: 16px;
}
article > * + h3,
.article > * + h3 {
	margin-top: 16px;
}
article > * + h4,
.article > * + h4 {
	margin-top: 16px;
}

article > h2 + *,
.article > h2 + * {
	margin-top: 0px;
}

article > h3 + *,
.article > h3 + *,
article > h4 + *,
.article > h4 + * {
	margin-top: 0;
}

article li:first-child,
.article li:first-child {
	padding-top: 0px;
}

article p:first-child,
.article p:first-child {
	margin-top: 0px;
}


.article__image {
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
}
.article__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.article-bg {
  color: #0a626a;
}

/* Content */
.section,
.cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
	height: 100%;
	width: 100%;
	margin: 0px auto;
	padding: 20px;
	z-index: 0;
	overflow: hidden;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}

.cover {
	max-width: 100%;
	overflow: hidden;
	padding-left: -webkit-calc(50% - ((1600px - 60px) / 2));
	padding-left: calc(50% - ((1600px - 60px) / 2));
	padding-right: -webkit-calc(50% - ((1600px - 60px) / 2));
	padding-right: calc(50% - ((1600px - 60px) / 2));
}
.section {
	background: #fff;
	margin-top: 20px;
}
.section > *,
.cover > * {
	display: block;
	position: relative;
}

.section__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}



/* HEADER */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	        -webkit-justify-content: space-between;
	        justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	        -webkit-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	height: auto;
	overflow: unset;
	background: #054146;
	color: rgba(255, 255, 255, 1);
	padding-top: 16px;
	padding-bottom: 16px;
	z-index: 1000;
	-webkit-border-radius: 0;
	        border-radius: 0;
}


.header > * {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	        -webkit-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: auto;
}

.header__button-menu {
	display: none;
}


/* Menu */

.header__menu a {
	cursor: pointer;
}
.header__menu > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	margin: 0px;
	padding: 0px 16px;
	background: #124b4f;
	-webkit-border-radius: 60px;
	        border-radius: 60px;
}



.header__menu > ul > li {
	display: block;
  position: relative;
	padding: 0px;
}
.header__menu > ul > li:before { display: none; }

.header__menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	font-size: 16px;
	line-height: 128%;
  font-weight: 400;
  text-align: center;
	color: #fff;
  border-color: transparent;
  text-transform: uppercase;
	padding: 10px 12px;
}

.header__menu > ul > li > a:hover {
	color: #2daf55;
}
.header__menu > ul > li + li {
  margin-left: 8px;
}

.header__menu > ul > li > a img {
	margin-right: 10px;
}
.header__buttons {
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
}
.header__button {
	padding: 14px 32px;
	min-width: auto;
  margin: 0px 0px 0px 8px;
}
.header__button:nth-child(1) {
	background: #185a61;
}
/* hover */
.header__menu > ul > li:hover > a {
  text-decoration: none;
}

.header__menu {
	margin-right: auto;
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
}

.header__menu .header__button-login,
.header__menu .header__button-signup {
	display: none;
}
.header__language {
	margin: 0 0 0 16px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.header__language img {
	width: 24px;
	height: 24px;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}


/* logo */
.header__logo {
	max-width: 129px;
	margin-right: 131px;
}
.header__logo > img {
  display: block;
  position: relative;
  max-width: 100%;
}

.header__.logo[href]:hover {
  opacity: 0.50;
}

.header__time {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	color: #FFF;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
	margin-left: 16px;
}


.header__time img {
	margin-right: 6px;
	max-width: 15px;
}



.main > * {
	position: relative;
}

.general {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 calc(100% - 240px * 2 - 20px * 2);
	        -webkit-flex: 0 1 -webkit-calc(100% - 240px * 2 - 20px * 2);
	        flex: 0 1 calc(100% - 240px * 2 - 20px * 2);
	margin: 0 20px;
	height: 100%;
  padding-bottom: 20px;
}

.main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        -webkit-align-items: stretch;
	        align-items: stretch;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 100px 30px 0 30px;
}


/* Prime */

.prime {
	min-height: 380px;
	padding: 50px 60px;
	margin-top: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
	background-color: #000;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}


.prime__wrap {
	width: 100%;
	max-width: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	z-index: 0;
}

.prime__button {
	margin: 0;
}

.prime__wrap p {
	color: #FFF;
	margin: 0 0 16px 0;
	font-size: 15px;
}

.prime__rating {
  margin-bottom: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.prime__rating p {
  margin: 0 8px 0 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.prime__rating span {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}


.upto {
	position: relative;
	padding: 32px 80px;
	min-height: 360px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  background-color: transparent;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.upto__wrap {
  max-width: 475px;
  width: 100%;
  text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;

}


.upto__title {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	padding: 0;
	border: none;
	margin: 0 0 8px 0;
	background: none;
	text-align: center;
	-webkit-border-radius: 0;
	        border-radius: 0;
}
.upto__text {
	margin: 0 0 30px 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	padding: 0;
	border: none;
	text-align: center;
	background: none;
	-webkit-border-radius: 0;
	        border-radius: 0;
}
.upto__button {
	margin: 0;
}
.upto__image {
  position: absolute;
  bottom: 0;
  z-index: -1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.upto__image_left {
  left: 0;
}
.upto__image_right {
  right: 0;
}
.upto_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
/* F.A.Q. */

.faq__item {
	overflow: hidden;
	padding: 0px;
  background: #0a626a;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
.faq__list > li + li {
	margin-top: 8px;
}
.faq__list > li:before { display: none; }


.faq-item__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 155%;
  text-transform: uppercase;
  padding: 16px 52px 16px 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  color: #fff;
  margin: 0;
}

.faq-item__title:before {
	content: '';
	display: block;
	position: absolute;
	top: 19.5px;
	right: 20px;
	width: 16px;
	height: 16px;
	background: url('../images/icons/faq-arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}


/* var */
.faq__item.active .faq-item__title:before {
	-webkit-transform: scale(-1);
	    -ms-transform: scale(-1);
	        transform: scale(-1);
}

.faq-item__desc .wrap {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 16px 12px;
}

.faq-item__desc p {
	margin: 0;
  color: #fff;
}

.faq-item__desc p + p {
	margin-top: 20px;
}

/* FOOTER */
.footer {
  margin-top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
	background-color: #fff;
  padding-left: -webkit-calc(50% - ((1080px - 60px) / 2));
  padding-left: calc(50% - ((1080px - 60px) / 2));
  padding-right: -webkit-calc(50% - ((1080px - 60px) / 2));
  padding-right: calc(50% - ((1080px - 60px) / 2));
}


.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        -webkit-align-items: flex-start;
	        align-items: flex-start;
	-ms-flex-wrap: wrap;
	    -webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	color: #0d4047;
	margin: 0 auto 20px auto;
  gap: 30px;
}

.footer__menu li {
	display: block;
}
.footer__menu p {
	margin: 0;
	font-weight: 700;
}
.footer__menu a{
	color: #0d4047;
	text-decoration: none;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: relative;
	padding-left: 18px;
  display: inline-block;
}
.footer__menu a::before {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	background-color: #0d4047;
	position: absolute;
	left: 6px;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.footer__menu a:hover {
	color: #2DB155;
}
.footer__menu a:hover::before {
	background-color: #0d4047;
}
.footer__payments {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
	margin-bottom: 30px;
}
.footer__payments li + li {
	margin-left: 16px;
}
.footer__payments li {
	height: 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
}

.footer__aditional {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
  gap: 30px;
  margin-bottom: 20px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
}
.footer__aditional p {
	color: #0b3338;
	text-align: left;
	margin: 0;
}

.footer__copy p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #0b3338;
}
.footer__copy p + p {
  margin-top: 10px;
}
/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 6px;
}
.breadcrumbs > li {
	display: inline-block;
	padding: 0px;
}

.breadcrumbs > li:before { display: none; }

.breadcrumbs > li a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}
.breadcrumbs > li a:hover {
	text-decoration: underline;
	color: #fff;
}
.breadcrumbs > li a:not([href]):hover {
	text-decoration: none;
	color: #fff;
}

.breadcrumbs > li:not(:last-child):after {
	content: '/';
	display: inline-block;
	position: relative;
	font: inherit;
	color: rgba(255, 255, 255, 1);
	margin: 0px 1px 0px 4px;
}

.events {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
  padding-bottom: 20px;
	height: auto;
	max-height: -webkit-calc(100vh - 100px);
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 240px;
	        -webkit-flex: 0 1 240px;
	        flex: 0 1 240px;

}
.events::-webkit-scrollbar {
	display: none;
}
.events__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}
.events__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        -webkit-justify-content: flex-start;
	        justify-content: flex-start;
	background: #054146;
	padding: 7px 34px 7px 40px;
	text-decoration: none!important;
	-webkit-border-radius: 6px 6px 0 0;
	        border-radius: 6px 6px 0 0;
}
.events__link:hover {
	background: #155156;
}
.events__link + .events__link {
	margin-top: 1px;
}
.events__link::after{
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	right: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../images/icons/events-link.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.events__link span {
	color: #FFF;
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}
.events__link img {
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.events__head {
	-webkit-border-radius: 6px 6px 0 0;
	        border-radius: 6px 6px 0 0;
	padding: 12px 8px;
	background: #fffaeb;
	margin-top: 10px;
}

.events__button {
	padding: 6px 10px 6px 38px;
	min-height: 34px;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
	background: #ff4949;
	-webkit-border-radius: 38px;
	        border-radius: 38px;
	text-decoration: none!important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.events__button-icon {
	width: 28px;
	height: 28px;
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.events__button-arrow {
	margin-left: 17px;
}
.events__menu {
	padding: 0;
	-webkit-border-radius: 0 0 6px 6px;
	        border-radius: 0 0 6px 6px;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}

.events__item:not(:last-child){
	border-bottom: 1px solid #f1f3f5;
}
.events__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	text-decoration: none;
	cursor: pointer;
	padding: 9px 10px 9px 40px;
}
.events__item a img {
	max-width: 20px;
	position: absolute;
	left: 7px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.events__item a span {
	color: #0a626a;
	font-size: 14px;
	font-weight: 300;
	line-height: 16px;
}
.events__item a:hover span {
	color: #054146;
}
.main__navigation{
	display: none;
}
.navigation {
	margin-top: 10px;
}
.navigation__head {
	cursor: pointer;
	text-align: left;
	padding: 8px 36px 8px 11px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	-webkit-border-radius: 6px 6px 0px 0px;
	        border-radius: 6px 6px 0px 0px;
	position: relative;
	background: #054146;
}

.navigation__head::before{
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	background-image: url(../images/icons/events-link.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transform: scale(-1);
	    -ms-transform: scale(-1);
	        transform: scale(-1);
}
.navigation__head.active {
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}
.navigation ul {
	padding:0;
	background: #fff;
	-webkit-border-radius: 0 0 6px 6px;
	        border-radius: 0 0 6px 6px;
	overflow: hidden;
}

.navigation a {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #0a626a;
  opacity: 0.5;
	display: block;
	text-decoration: none;
	padding: 8px 10px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.navigation a:hover {
	font-weight: 600;
  opacity: 1;
}

.accordion--js.active::before  {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	height: -webkit-calc(100vh - 100px);
	height: calc(100vh - 100px);
	overflow-y: auto;
	padding-bottom: 90px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 240px;
	        -webkit-flex: 0 1 240px;
	        flex: 0 1 240px;

}
.sidebar::-webkit-scrollbar {
	display: none;
}
.sidebar__scroll {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}

.sidebar__slots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
  gap: 10px;
	margin-top: 10px;

}
.sidebar__slot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
	text-decoration: none!important;
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
}
.sidebar__slot:last-child {
  width: 100%;
}

.sidebar__slot > img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.sidebar__slot:hover > img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.sidebar__slot-title {
  background: #41af5a;
  -webkit-border-radius: 5px 5px 0 0;
          border-radius: 5px 5px 0 0;
	width: 100%;
	text-align: center;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	padding: 8px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
	z-index: 1;
  margin-top: -2px;
  position: relative;
}
.sidebar__slot-title span{
  position: relative;
  z-index: 3;
}
.sidebar__slot-icon {
  background: #41af5a;
  width: 44px;
  height: 52px;
  -webkit-border-radius: 32px;
          border-radius: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  position: absolute;
  bottom: 21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sidebar__slot-icon img {
  max-width: 32px;
}
.sidebar__app {
	background-color: #fff;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}

.sidebar__app-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-ms-flex-pack: distribute;
	    -webkit-justify-content: space-around;
	        justify-content: space-around;
	background-color: #Fff;
	padding: 0 8px;
}

.sidebar__app-head span {
	padding: 15px 5px;
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: #3c404b;
}

.sidebar__inner{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
	padding: 10px 8px;
	min-height: 64px;
	position: relative;
	background: -o-linear-gradient(left, #0a626a 0%, #2db155 100%);
	background: -webkit-gradient(linear, left top, right top, from(#0a626a), to(#2db155));
	background: linear-gradient(90deg, #0a626a 0%, #2db155 100%);
	-webkit-border-radius: 0 0 6px 6px;
	        border-radius: 0 0 6px 6px;
}
.sidebar__inner p {
	color: #FFF;
	margin: 0;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 17px;
	text-transform: uppercase;
}

.sidebar__inner img {
	position: absolute;
	top: 21px;
	right: 5px;
	width: 76px;
	max-height: none;
}

.sidebar__app-button {
	margin: 16px auto 16px 8px;
	font-size: 13px;
	max-width: 150px;
	min-width: auto;
	padding: 11px 10px;
	-webkit-box-shadow: none;
	        box-shadow: none;
}


.back-top {
	position: absolute;
	right: -50px;
	bottom: 20px;
	height: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	    -webkit-align-items: flex-end;
	        align-items: flex-end;
}

.back-top__button {
	z-index: 100;
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: -webkit-sticky;
	position: sticky;
	bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
}

.back-top__button:hover {
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
}






.slots {
	padding: 0;
	background: transparent;
	overflow: initial;
}
.slots li::before {
	display: none;
}
.slots__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	        -webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: -10px;
	width: auto;
}
.slots-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 calc(33.3333% - 20px);
	        -webkit-flex: 0 1 -webkit-calc(33.3333% - 20px);
	        flex: 0 1 calc(33.3333% - 20px);
	margin: 10px;
	-webkit-border-radius: 12px;
	        border-radius: 12px;
	overflow: hidden;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}
.slots-item__image img {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.slots-item:hover .slots-item__image img{
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
}


.slots-item__title {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	color: #0e6b73;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #fff;
	padding: 12px;
	text-decoration: none!important;
}



.table {
  background: #0a626a;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  display: block;
}
.table thead {
  display: block;
  background: #41af5a;
  -webkit-border-radius: 0px 0px 6px 6px;
          border-radius: 0px 0px 6px 6px;
}
.table.table_other thead {
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.table th {
  font-weight: 700;
  font-size: 15px;
  line-height: 147%;
  text-transform: uppercase;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table tbody {
  display: block;
}
.table td {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  color: #fff;
}
.table tr {
  padding: 12px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.table tbody tr:not(:first-child){
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}


.table_about td:first-child, .table_about th:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 245px;
      -ms-flex: 0 1 245px;
          flex: 0 1 245px;
}
.table_grade td:last-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 70px;
      -ms-flex: 0 1 70px;
          flex: 0 1 70px;
  text-align: right;
}

.blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.blocks .block {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 -webkit-calc(50% - 10px);
      -ms-flex: 1 0 calc(50% - 10px);
          flex: 1 0 calc(50% - 10px);
}

.block {
  background: #0a626a;
  padding: 20px;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  z-index: 0;
}

.block > * {
  color: #fff;
}
.block > * + * {
  margin-top: 20px;
}
.block h3 {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
hr {
  border-top: 1px solid #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
}
.block h3 img {
  margin-right: 20px;
}
.block li > * + *{
  margin-top: 20px;
}
.block li strong {
  font-weight: 600;
  font-size: 18px;
}

.block ul li::before {
  top: 0px;
  bottom: auto;
  margin: 0;
}

.block p span {
  margin-right: 20px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  padding: 12px;
  width: 44px;
  height: 44px;
  background: #41af5a;
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  text-align: center;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.block p strong {
  font-size: 18px;
  font-weight: 600;
}
.block__image {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: -1;
}
.app-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 32px;
  font-weight: 500;
  font-size: 15px;
  line-height: 165%;
  text-align: center;
  color: #fff;
  background: #41b15b;
  text-decoration: none!important;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  min-width: 240px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.app-button img {
  max-width: 32px;
  margin-right: 16px;
}
.app-button:hover {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}

.tile {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #fff;
}
.tile h3 {
  color: #fff;
}
.tile ol {
  list-style: none;
}
.tile > * + * {
  margin-top: 16px;
}
.article .tile ol li {
  background: #0a626a;
  padding: 12px 20px 12px 84px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 165%;
  color: #fff;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 68px;
}
.tile ol li + li {
  margin-top: 20px;
}
.tile ol li::before {
  content: counter(ol);
  -webkit-border-radius: 3px;
          border-radius: 3px;
  width: 44px;
  height: 44px;
  background: #41af5a;
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  text-align: center;
  color: #fff;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bonus {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bonus > * + * {
  margin-top: 16px;
}

.bonus__button {
  margin-left: auto;
  margin-right: auto;
}

.bonus__image {
  max-width: 447px;
  overflow: hidden;
  -webkit-border-radius: 6px;
          border-radius: 6px;
}



.app {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  padding: 0 0 0 8%;
  background: transparent;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.app__buttons .app-button {
  margin: 0;
}

.app__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.app-button + .app-button {
  margin-top: 16px;
}


.app__logo {
  margin-left: 9%;
  max-width: 220px;
}
.app__image {
  max-width: 309px;
  margin-left: auto;
}




.reviews {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.reviews__item {
  padding: 20px;
  width: -webkit-calc(50% - 10px );
  width: calc(50% - 10px );
  background: #0a626a;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.reviews__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  margin: 0 0 16px 0;
}

.reviews__item-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.reviews__item img {
  max-width: 22px;
}
.reviews__item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: rgba(255, 255, 255, 0.7);
}

.locals {
  background: none;
  padding: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.locals ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.locals ul a {
  -webkit-border-radius: 12px;
          border-radius: 12px;
  background-color: #fff;
  padding: 11px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none!important;
  border: 1px solid rgba(254, 192, 126, 0.2);
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #0a626a;
}
.locals ul a:hover {
  background-color: #41af5a;
  color: #fff;
}
.locals ul a img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 8px;
}


.wrap {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  z-index: 0;
  position: relative;
}
.wrap > * + * {
  margin-top: 20px;
}
.wrap h3 {
  color: #fff;
}
.wrap__image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
  margin: 0;
  width: 41%;
  z-index: -1;
}
.wrap p, .wrap ul {
  width: 57%;
}
.wrap .background {
  z-index: -2;
}
