
@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: #05232a;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	color: #dcffff;
	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: #fff;
	margin-bottom: 16px;
}

h1 {
	font-size: 30px;
	line-height: 120%;
	margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  color: #fff;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  padding: 10px 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1b8993), to(#004d57));
  background: -o-linear-gradient(top, #1b8993 0%, #004d57 100%);
  background: linear-gradient(180deg, #1b8993 0%, #004d57 100%);
  text-transform: none;
	line-height: 120%;
}


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



/* 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: 200px;
	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: 12px;
	        border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #fcfcfc;
	cursor: pointer;
	padding: 15px 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: #00b35c;
}
.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 {
  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;
  gap: 8px;
}
.article ul > li{
  display: block;
  position: relative;
	list-style: none;
  background: #1b8993;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 12px 12px 12px 50px;
}

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

.article ul > li:before{
	display: inline-block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 12px;
	width: 25px;
  height: 25px;
  content: "";
	background-image: url(../images/icons/list-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.article > ol, .block > ol {
  list-style: none;
}
.article ol {
  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;
  gap: 8px;
}

.article ol > li {
  background: #1b8993;
  padding: 12px 20px 12px 58px;
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 165%;
  color: #fff;
  -webkit-border-radius: 6px;
          border-radius: 6px;
}

.article ol > li::before {
  content: counter(ol);
  width: 30px;
  height: 30px;
  font-weight: 800;
  font-size: 30px;
  line-height: 111%;
  text-align: center;
  color: #00b35c;
  left: 15px;
  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;
}
.article ol > li > ul li {
  padding: 0 0 0 12px;
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.article ol > li > ul{
  gap: 0;
}
.article ol > li > ul li::before {
  width: 4px;
  height: 4px;
  background-image: none;
  background-color: #fff;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  left: 0;
  top: 10px;
  margin: 0;
}
.article ul > li > ul > li {
  padding: 0 0 0 18px;
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.article ul > li > ul > li::before {
  width: 3px;
  height: 3px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  background: #fff;
  left: 4px;
}
.article ul > li > * + * {
  margin-top: 16px;
}



.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 p:first-child,
.article p:first-child {
	margin-top: 0px;
}

.list-wrap ol {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  list-style: none;
}
.list-wrap ol li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 -webkit-calc(33.33333% - 5.3333px);
      -ms-flex: 1 0 calc(33.33333% - 5.3333px);
          flex: 1 0 calc(33.33333% - 5.3333px);
}
.list-wrap ul {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
.list-wrap ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 -webkit-calc(50% - 8px);
      -ms-flex: 1 0 calc(50% - 8px);
          flex: 1 0 calc(50% - 8px);
}
/* 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;
}

.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 {
  -webkit-box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.2);
  background: #0a3239;
}
.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: #0d5057;
	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;
	width: auto;
}

.header__button-menu {
	display: none;
}


/* Menu */

.header__menu {
	margin-right: auto;
}
.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 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #16656d;
	-webkit-border-radius: 25px;
	        border-radius: 25px;
}



.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: 500;
  text-align: center;
	color: #fff;
  border-color: transparent;
  text-transform: uppercase;
	padding: 10px;
}

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

.header__menu > ul > li > a img {
	margin-right: 10px;
}

.header__button {
	padding: 14px 24px;
	min-width: auto;
  margin: 0px 0px 0px 22px;
  font-size: 16px;
  -webkit-border-radius: 25px;
          border-radius: 25px;
}

/* hover */
.header__menu > ul > li:hover > a {
  text-decoration: none;
}


.header__menu .header__button-login,
.header__menu .header__button-signup {
	display: none;
}
.header__language {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
	margin: 0 0 0 22px;
}
.header__language img {
	width: 24px;
	height: 24px;
  margin-right: 5px;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}


/* logo */
.header__logo {
	max-width: 129px;
	margin-right: 129px;
}
.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: 22px;
}


.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: 96px 30px 0 30px;
}


/* Prime */

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


.prime__wrap {
	width: 100%;
	max-width: 550px;
	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;
  padding: 32px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(0, 97, 107, 0.8);
  -webkit-border-radius: 6px;
          border-radius: 6px;
}

.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: 50px;
	min-height: 360px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
  background-color: transparent;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.upto__wrap {
  max-width: 490px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(0, 97, 107, 0.8);
  -webkit-border-radius: 6px;
          border-radius: 6px;
  padding: 32px;
  width: 100%;
  text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-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: 28px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	padding: 0;
	border: none;
	margin: 0 0 20px 0;
	background: none;
	text-align: left;
	-webkit-border-radius: 0;
	        border-radius: 0;
}
.upto__text {
	margin: 0 0 20px 0;
	font-weight: 700;
	font-size: 22px;
	line-height: 120%;
	text-transform: none;
	color: #fff;
	padding: 0;
	border: none;
	text-align: left;
	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;
  -webkit-border-radius: 6px;
          border-radius: 6px;
}
.faq__list > li + li {
	margin-top: 20px;
}
.faq__list > li:before { display: none; }


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

.faq-item__title:before {
	content: '';
	display: block;
	position: absolute;
	top: 16px;
	left: 20px;
	width: 24px;
	height: 24px;
	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 {
	padding: 18px 20px;
  background: #05232a;
}

.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% - ((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));
}


.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: #054146;
	margin: 0 0 32px 0;
  gap: 30px;
  border-bottom: 1px solid #054146;
  border-top: 1px solid #054146;
  padding: 32px 0px;
}

.footer__menu li {
	display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__menu p {
	margin: 0;
	font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__menu a{
	color: #054146;
	text-decoration: none;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 140%;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: relative;
  display: inline-block;
}

.footer__menu a:hover {
	color: #2DB155;
}

.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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px 40px;
}

.footer__payments li {
	height: 40px;
	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: #054146;
	text-align: center;
	margin: 0;
}
.footer__aditional img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__copy p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #054146;
}
.footer__copy p + p {
  margin-top: 10px;
}
/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 9px;
}
.breadcrumbs > li {
	display: inline-block;
	padding: 0px;
}

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

.breadcrumbs > li a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
  font-weight: 400;
}
.breadcrumbs > li a:hover {
	text-decoration: underline;
	color: #fff;
}
.breadcrumbs > li a:not([href]) {
  font-weight: 700;
}
.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: 96px;
  padding-bottom: 20px;
	height: auto;
	max-height: -webkit-calc(100vh - 96px);
	max-height: calc(100vh - 96px);
	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: #0d5057;
	padding: 14px 26px 14px 36px;
	text-decoration: none!important;
	-webkit-border-radius: 12px;
	        border-radius: 12px;
}
.events__link:hover {
	background: #2daf55;
}
.events__link + .events__link {
	margin-top: 5px;
}
.events__link::after{
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	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: 12px;
	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;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.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: 12px 12px 12px 44px;
	min-height: 40px;
	background: #f04c44;
	-webkit-border-radius: 50px;
	        border-radius: 50px;
	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 span {
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
  text-transform: uppercase;
  color: #fff;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.events__button-icon {
	width: 32px;
	height: 32px;
	position: absolute;
	left: 4px;
	top: 0;
	bottom: 0;
	margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.events__button-arrow {
	margin-left: 8px;
  width: 7px;
  -o-object-fit: contain;
     object-fit: contain;
}
.events__button:hover {
  background: #2daf55;
}
.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: 9px 36px 9px 11px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	overflow: hidden;
	-webkit-border-radius: 12px 12px 0px 0px;
	        border-radius: 12px 12px 0px 0px;
	position: relative;
	background: #0d5057;
}

.navigation__head::before{
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background-image: url(../images/icons/events-link.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 15px;
	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: 14px;
  line-height: 120%;
  color: #0d5057;
	display: block;
	text-decoration: none;
	padding: 8px 15px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.navigation a:hover {
	background: #0d5057;
  color: #fff;
}

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

.sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 96px;
	height: -webkit-calc(100vh - 96px);
	height: calc(100vh - 96px);
	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: 40px;

}
.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;
	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: contain;
	   object-fit: contain;
	-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 {
  -webkit-box-shadow: 0 0 6px 0 #2daf55;
          box-shadow: 0 0 6px 0 #2daf55;
  background: #2daf55;
  -webkit-border-radius: 12px;
          border-radius: 12px;
	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: 7px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
	z-index: 1;
  margin-top: -1px;
  position: relative;
}

.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 img {
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar__app-head span {
	padding: 15px 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 133%;
  text-align: center;
  color: #0d5057;
  text-transform: uppercase;
}

.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: 19px 16px 19px 22px;
	min-height: 90px;
	position: relative;
	background: -webkit-gradient(linear, left top, right top, from(#0d5057), to(#2daf55));
	background: -o-linear-gradient(left, #0d5057 0%, #2daf55 100%);
	background: linear-gradient(90deg, #0d5057 0%, #2daf55 100%);
}
.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: 18px;
	right: 10px;
	width: 72px;
  -o-object-fit: contain;
     object-fit: contain;
	max-height: none;
}

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


.back-top {
	position: absolute;
	right: -40px;
	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: 32px;
	height: 52px;
	cursor: pointer;
	position: -webkit-sticky;
	position: sticky;
	bottom: 5px;
	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 a {
  color: #fff;
}

.table {
  -webkit-border-radius: 6px;
          border-radius: 6px;
  overflow: hidden;
  display: block;
}
.table thead {
  display: block;
  border-bottom: 2px solid #0a3239;
  background: rgba(0, 97, 107, 0.6);
}

.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;
  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;
}
.table tr {
  padding: 12px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.table tbody {
  background: #07757f;
}
.table tbody tr:not(:first-child){
  border-top: 2px solid #0a3239;
}


.table_about td:first-child, .table_about th:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 340px;
      -ms-flex: 0 1 340px;
          flex: 0 1 340px;
  font-weight: 700;
}


.table ul li {
  padding: 0 0 0 12px;
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.table ul li::before {
  width: 4px;
  height: 4px;
  background-image: none;
  background-color: #fff;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  left: 0;
  bottom: auto;
  top: 8px;
  margin: 0;
}

.table_other th:nth-child(1), .table_other td:nth-child(1) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 8%;
      -ms-flex: 0 1 8%;
          flex: 0 1 8%;
}
.table_other th:nth-child(2), .table_other td:nth-child(2) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 17%;
      -ms-flex: 0 1 17%;
          flex: 0 1 17%;
}
.table_other th:nth-child(3), .table_other td:nth-child(3) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 28%;
      -ms-flex: 0 1 28%;
          flex: 0 1 28%;
}
.table_other th:nth-child(4), .table_other td:nth-child(4) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 17%;
      -ms-flex: 0 1 17%;
          flex: 0 1 17%;
}
.table_other th:nth-child(5), .table_other td:nth-child(5) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 30%;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}


.block {
  background: #0d5357;
  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;
  padding: 20px;
  border: 1px solid rgba(11, 152, 161, 0.8);
  -webkit-border-radius: 2px;
          border-radius: 2px;
  z-index: 0;
}
.block h3 {
  margin-bottom: 0;
  color: #fff;
}
.block > * {
  color: #fff;
}
.block > * + * {
  margin-top: 20px;
}
.block p strong {
  font-weight: 600;
}

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 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_img {
  padding-right: 27%;
}
.block__image {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 1;
  max-height: 100%;
  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;
}

.block_advantages h3 {
  color: #dcffff;
}
.block_advantages ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 16px;
}
.block_advantages ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 -webkit-calc(33.33333% - 10.666666px);
      -ms-flex: 1 0 calc(33.33333% - 10.666666px);
          flex: 1 0 calc(33.33333% - 10.666666px);
  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;
}
.block > ul > li > ul > li {
  padding: 0 0 0 18px;
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.block > ul > li > ul > li::before {
  width: 3px;
  height: 3px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  background: #fff;
  left: 4px;
}
.block_listother ul li {
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.bonus {
  padding: 32px 12px 32px 150px;
  background: -webkit-gradient(linear, left top, left bottom, from(#004d57), to(#1b8993));
  background: -o-linear-gradient(top, #004d57 0%, #1b8993 100%);
  background: linear-gradient(180deg, #004d57 0%, #1b8993 100%);
  position: relative;
  color: #fff;
}
.bonus > * + * {
  margin-top: 16px;
}
.bonus h3 {
  margin-top: 0;
  font-size: 17px;
  text-transform: none;
}
.bonus__image {
  position: absolute;
  height: 100%;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0px;
  width: 120px;
  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;
}
.bonus h3{
  color: #fff;
}
.bonus ul li {
  padding: 0 0 0 12px;
  background: none;
  -webkit-border-radius: 0;
          border-radius: 0;

}
.bonus ul li::before {
  width: 3px;
  height: 3px;
  background: #ffff;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  left: 0;
}
.bonus_listwrap ul{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.tiles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.tile {
  background: -webkit-gradient(linear, left top, left bottom, from(#004d57), to(#1b8993));
  background: -o-linear-gradient(top, #004d57 0%, #1b8993 100%);
  background: linear-gradient(180deg, #004d57 0%, #1b8993 100%);
  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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
.tiles .tile {
  width: -webkit-calc(33.33333% - 13.333333px);
  width: calc(33.33333% - 13.333333px)
}
.tile p strong {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
}
.tiles.tiles_row .tile {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}
.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;
  text-transform: uppercase;
  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);
}


.app {
  position: relative;
  overflow: hidden;
  padding: 54px 32px;
}

.app__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.app__wrap {
  width: 100%;
  max-width: 625px;
  text-align: center;
}

.app__logo {
  margin: 0 auto 30px auto;
  max-width: 310px;
}




.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 16px;
}
.reviews__item {
  width: -webkit-calc(50% - 8px );
  width: -webkit-calc(50% - 10px );
  width: calc(50% - 10px );
  background: -webkit-gradient(linear, left top, left bottom, from(#004d57), to(#1b8993));
  background: -o-linear-gradient(top, #004d57 0%, #1b8993 100%);
  background: linear-gradient(180deg, #004d57 0%, #1b8993 100%);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.reviews__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.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;
  width: 130px;
  margin-left: auto;
}
.reviews__item img {
  max-width: 22px;
}
.reviews__item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #fff;
  margin: 0;
}

.locals {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.locals a {
  -webkit-border-radius: 12px;
          border-radius: 12px;
  background: #054146;
  padding: 12px 16px;
  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;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
}
.locals a:hover {
  background-color: #41af5a;
  color: #fff;
}
.locals a img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 8px;
}



.service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.service-item {
  background: -webkit-gradient(linear, left top, left bottom, from(#004d57), to(#1b8993));
  background: -o-linear-gradient(top, #004d57 0%, #1b8993 100%);
  background: linear-gradient(180deg, #004d57 0%, #1b8993 100%);
  padding: 32px 12px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  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: 20px;
  width: -webkit-calc(33.3333% - 13.3333px);
  width: calc(33.3333% - 13.3333px);
}

.service-item__image {
  width: 120px;
}
.service-item__inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service-item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: #fff;
}
.service-item p strong {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  text-transform: capitalize;
  color: #fff;
}
.service_row .service-item {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}

.grade {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
.grade-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 -webkit-calc(33.3333% - 13.3333px);
      -ms-flex: 1 0 calc(33.3333% - 13.3333px);
          flex: 1 0 calc(33.3333% - 13.3333px);
  background: -webkit-gradient(linear, left top, left bottom, from(#1b8993), to(#004d57));
  background: -o-linear-gradient(top, #1b8993 0%, #004d57 100%);
  background: linear-gradient(180deg, #1b8993 0%, #004d57 100%);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 13px 12px;
  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: 20px;
}
.grade-item span {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #00b35c;
}
.grade-item small {
  font-size: 30px;
}
.grade-item p {
  font-weight: 600;
  font-size: 17px;
  line-height: 155%;
  text-transform: capitalize;
  color: #fff;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}


.banner {
  padding: 32px 20px;
}
.banner__wrap {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(24, 62, 67, 0.8);
  padding: 32px;
  width: 100%;
  max-width: 720px;
}


.requirements {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.requirements-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
