
@charset "utf-8";

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


body {
	overflow-x: hidden;
  font-family: 'Poppins', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #fff;
	text-align: left;
	background-color: #0F4455;
}



p {
  margin-top: 16px;
}

ul, ol {
  text-align: left;
	padding-left: 22px;
}


ol > li {
  position: relative;
  padding: 0px;
	line-height: 150%;
}



a:hover {
  text-decoration: underline;
}



/* Title */
h1, h2, h3, h4, .title {
	display: block;
	position: relative;
  width: 100%;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-weight: 700;
	text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

h1, .title.general {
	font-size: 52px;
	line-height: 54px;
	margin-bottom: 23px;
	text-align: left;
}

.title.general span {
	font-size: 40px;
	display: inline-block;
	margin-top: 24px;
}
h2, .title.high {
  padding-bottom: 16px;
  font-size: 40px;
  line-height: 120%;
}

h3, .title.middle{
	font-size: 40px;
	line-height: 120%;
	margin: 16px 0px;
}

h4, .title.mini{
	font-size: 32px;
	line-height: 120%;
	margin: 16px 0px;
}



/* Article */
article, .article {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	color: #fff;
}

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

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

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

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

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

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

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

article a, .article a{
	font-weight: 500;
	font-style: italic;
}

article .btn-box, .article .btn-box {
	margin-top: 32px;
}

/* Button */
.button {
	display: inline-block;
	position: relative;
	width: auto;
  min-width: 128px;
	height: auto;
	max-height: 48px;
	background: #EC622B;
	font-size: 16px;
	font-weight: 600;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255,255,255,1.00);
	white-space: nowrap;
	vertical-align: middle;
  cursor: pointer;
  padding: 16px 31px;
  margin: 16px auto 0px auto;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
  -webkit-box-shadow: 0px 4px 18px rgba(14, 24, 17, 0.25);
          box-shadow: 0px 4px 18px rgba(14, 24, 17, 0.25);
  -webkit-border-radius: 16px;
          border-radius: 16px;
}

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


.button.button--bg {
	background: url(../images/button-bg.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	padding: 19px 40px 22px 90px;
	max-height: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.button.button--bg::before {
	content:'';
	display: block;
	width: 100%;
	height: 100%;

	position: absolute;
	left: 50%;
	top: 44%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	z-index: -1;
	pointer-events: none;
	-webkit-transition: all 0.4;
	-o-transition: all 0.4;
	transition: all 0.4;
}



/* Button Inverse */
.button.inverse {
	background: #2E9344;
}



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

.btn-box .button{
	margin: 0;
}

.button-bg {
	position: absolute;
	left: 50%;
	bottom: 150px;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%)
}
.button-bg .button {
	position: static!important;
	-webkit-transform: none!important;
	    -ms-transform: none!important;
	        transform: none!important;
	margin: 0;
}
.button-bg::before {
	content:'';
	display: block;
	background: url(../images/button-bg.svg) no-repeat center / contain;
	width: 115%;
	height: 250px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: -1;
}

/* Special */
.image img,
.background img {
	display: block;
	position: relative;
}
.image {
	z-index: -1;
}
.background img {
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
}
.background {
	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;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}


.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;
}

.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	position: relative;
	-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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	    flex-direction: column;
	width: 100%;
	margin: 0px auto;
	max-width: 100%;
	overflow: hidden;
	padding-left: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
	padding-left: calc(50% - ((1300px - 30px - 30px) / 2));
	padding-right: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
	padding-right: calc(50% - ((1300px - 30px - 30px) / 2));
}
.cover {
  height: auto;
}
.cover > * {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	    flex: 1 1 auto;
}


.section {
	background: #194C5C;
	padding: 32px 20px;
	margin-top: 20px;
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	z-index: 0;
	overflow: hidden;
}

.tiles__section {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0;
	
}
.tiles__section > * {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1;
	    -ms-flex: 1 1;
	        flex: 1 1;
	margin: 0;
}

.section a:not(.button) {
	color: inherit;
}


.section__list li:nth-child(odd) {
	width: 100%;
	max-width: 280px;
}
.section__list li:nth-child(even) {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: rgba(255, 255, 255, 0.8);
	padding-left: 20px;
}

.section__list li {
	padding: 0;
	margin: 10px 0px;
}

.section__list {
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	padding: 0px;
}


/* section table */
.section__table {
	padding: 0;
}

.section__table table{
	width: 100%;
	color: rgba(255, 255, 255, 0.8);
}
.section__table table:not(:first-child) {
	margin-top: 20px;
}
.section__table p {
	padding: 0px 20px;
	margin: 16px 0px 0px 0px;
}


.section__table thead {
	background-color: #EDF1F3;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}

.section__table th {
	padding: 22px 20px 22px 20px;
	font-weight: 600;
	font-size: 21px;
	color: #192A32;
}

.section__table tr:not(:last-child) {
	border-bottom: 1px solid rgba(16, 76, 84, 0.08);

}

.section__table td {
	max-width: 500px;
	padding: 16px 10px 16px 20px;
	min-width: 320px;
}

.section__table tr td:nth-child(1) {
	font-weight: 600;
	color: #fff;
}

.section__table .btn-box {
	margin: 20px 20px 32px 20px;
}

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

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


.header__language-dropdown {
	z-index: 5;
	color: #fff;
  max-width: 123px;
  margin: 0px 0px 0px 16px;
  cursor: pointer;

}

.header__language-dropdown > div {
	padding: 11px 35px 11px 24px;
	position: relative;
	background: #104C54;
	border: 1px solid #0C5A62;
  -webkit-border-radius: 16px;
          border-radius: 16px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__language-dropdown > div:hover, .header__language-dropdown > div > a:hover {
	cursor: pointer !important;
}

.header__language-dropdown > div::before {
	content: '';
	position: absolute;
	width: 14px;
	height: 7px;
	right: 25px;
	top: -webkit-calc(50% - 7px / 2);
	top: calc(50% - 7px / 2);
	background-image: url(../images/icons/arrow-white.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

.header__language {
  white-space: nowrap;
	padding: 0;
	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-width: auto;
	overflow: hidden;
	color: #fff;
	text-transform: uppercase;
}

.header__language:hover {
  text-decoration: none;
}

.header__language-dropdown:hover > div {
	border-color: #C3CCD9;
}


.header__language img {
  margin-right: 10px;
  display: block;
  width: 24px;
  height: 24px;
}
.header__language-dropdown > ul {
	margin-bottom: 0;
	position: absolute;
	padding: 12px 10px 12px 24px;
	background-color: #0A272C;
	top: 62px;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-webkit-border-radius: 0 0 20px 20px;
	border-radius: 0 0 20px 20px;
	z-index: 10;
	list-style: none;
}

.header__language-dropdown ul > li::before{
  display: none;
}

.list-hidden > ul {
	margin-bottom: 0;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	opacity: 0;
	height: 0;
	overflow: hidden;
	padding-top: 0;
	padding-bottom: 0;
}

.header__language-dropdown.list-hidden > ul {
	padding: 0 30px;
}
.header__language-dropdown > ul li {
	display: block;
  padding: 0;
}
.header__language-dropdown > ul li + li {
	margin-top: 3px;
}

.header__language-dropdown ul .header__language:hover,
.header__language-dropdown ul .header__language:focus {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.header__language-dropdown:not(.list-hidden) > div::before {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.header__menu {
	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;

}
.header__button-menu {
	display: none;
}
/* logo */
.logo {
	max-width: 129px;
	margin-right: 30px;
}
.logo > img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 48px;
}

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

/* Menu */
.menu ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0px;
	padding: 0px 30px;
	background: rgba(10, 99, 107, 0.6);
  -webkit-border-radius: 16px;
          border-radius: 16px;
	width: auto;
}

.menu li {
	display: block;
  position: relative;
	padding: 0px;
}
.menu li:before { display: none; }

.menu li > a {
  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;
	font-size: 16px;
  font-weight: 600;
  text-align: center;
	white-space: nowrap;
	color: #fff;
  padding: 12px 22px;
  border-color: transparent;
  -webkit-border-radius: 16px;
          border-radius: 16px;
  text-transform: uppercase;
}

.menu li > a:hover {
  color: #2E9344;
}
.menu li + li {
  margin-left: 10px;
}

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

.header__button {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	    flex: 0 1 auto;
  margin: 0px 0px 0px 16px;
}

.header__button-signup {
	background: #D2423E;
}

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



/* var */

.header__menu .header__button-login,
.header__menu .header__button-signup {
	display: none;
}



/* MAIN */
.main {
	z-index: 1;
	display: block;
	position: relative;
	overflow-x: hidden;
	padding: 80px 30px 0px 30px;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.main > * {
	position: relative;
}

/*banner*/
.banner {
	padding: 8px 32px;
	background: -webkit-gradient(linear, right top, left top, from(#194C5C), color-stop(47.46%, #194C5C), to(#18234A));
	background: -o-linear-gradient(right, #194C5C 0%, #194C5C 47.46%, #18234A 100%);
	background: linear-gradient(270deg, #194C5C 0%, #194C5C 47.46%, #18234A 100%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.banner__inner {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

.banner p {
	color: #fff;
}
.banner__image {
	margin: 0px 65px 0px 22px;
}

/* prime */
.prime {
	padding: 70px 60px;
}

.title.prime__title {
	max-width: 630px;
}

.prime__image {
	position: absolute;
	right: 0;
	bottom: 0;
}

/*about*/
/*about*/
.about {
	padding: 0;
	background: -webkit-gradient(linear, left top, right top, from(#226074), color-stop(66.98%, #194C5C), to(#0D132C));
	background: -o-linear-gradient(left, #226074 0%, #194C5C 66.98%, #0D132C 100%);
	background: linear-gradient(90deg, #226074 0%, #194C5C 66.98%, #0D132C 100%);
}

.about__image {
	position: absolute;
	right: 0;
	bottom: 0;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.about__image {
	width: auto;
	height: auto;
}
.about__background {
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        -webkit-box-pack: end;
	        justify-content: flex-end;
}
.about__background img {
	width: auto;
}

.about ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	max-width: 595px;
	z-index: 0;
	list-style: none;
	padding: 0;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}

.about li::before {
	display: none;
}
.about li:nth-child(odd) {
	width: 35%;
	padding: 10px 10px 10px 21px;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
	background-color: #194C5C;
}

.about li:nth-child(even) {
	width: 65%;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(255, 255, 255, 0.8);
	padding: 10px 10px 10px 18px;
}
.about li:nth-child(even) a {
	color: rgba(255, 255, 255, 0.8);
}

.about__button {
	position: absolute;
	right: 15%;
	bottom: 100px;
}


/*advantages*/
.advantages {
	padding: 20px;
}
.advantages__wrapp {
	background: #225F73;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	padding: 20px;
	color: #fff;
}
.advantages__wrapp:nth-child(even){
	background: #194C5C;
	border: 1px solid #FFFFFF;
}

.advantages__wrapp:nth-child(even) .advantages__caption {
	color: #fff;
}
.advantages__wrapp + .advantages__wrapp {
	margin-top: 20px;
}

.advantages__caption {
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 16px;
}

.advantages__wrapp ul {
	list-style: none;
	padding: 0;
}

.advantages__wrapp li {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: inherit;
	position: relative;
	padding-left: 26px;
}
.advantages__wrapp li + li {
	margin-top: 15px;
}


.advantages__wrapp li::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url(../images/icons/arrow-white.svg) no-repeat center / 14px 7px;
	position: absolute;
	top: 0;
	left: 0;
}


/*screen*/
.screen {
	padding: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.screen:hover {
	-webkit-box-shadow: 0px 4px 18px rgba(14, 24, 17, 0.25);
	        box-shadow: 0px 4px 18px rgba(14, 24, 17, 0.25);
}

.screen .btn-box {
	display: none;
}

.screen .btn-box {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.screen .button.button--visible {
	display: inline-block;
}

.screen__image {
	display: block;
}

.screen__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
/* review */

.review > *:first-child {
	margin-top: 0px;
}
.review p {
	margin: 16px 0px 0px 0px;
}

.review ul {
	padding: 0;
	margin: 16px 0px 0px 0px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
}

.review ul li {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(255, 255, 255, 0.8);
	padding-left: 20px;
}
.review ul li:nth-child(1) {
	font-weight: 700;
	color: #fff;
	width: 35%;
}
.review ul li:nth-child(2) {
	width: 65%;
}
.review__button {
	margin: 0;
}
.review .btn-box {
	margin-top: 16px;
}

.review table {
	margin-top: 24px;
}
.review table tr:not(:first-child) td{
	border-top: 1px solid rgba(16, 76, 84, 0.08);
}
.review table tr:not(:last-child) td {
	padding-bottom: 16px;
}

.review table td {
	padding-top: 16px;
}

.review table td:nth-child(1) {
	font-weight: 600;
	min-width: 270px;
}

.review table td:nth-child(2) {
	color: rgba(16, 76, 84, 0.8);
	padding-left: 20px;
}

/* F.A.Q. */
.faq {
	padding: 0px;
}
.faq .faq__title {
	margin: 0px 0px 24px 0px;
	padding: 20px 20px 0px 20px;
}

.faq__list {
	list-style: none;
	padding: 0;
}

.faq__list > li:before { display: none; }
.faq__item + .faq__item {
  margin-top: 24px;
}
.faq__item {
	background: #EDF1F3;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
  color: #104C54;
  padding: 20px 90px 20px 20px;
	position: relative;
}


.faq-item__title {
  color: inherit;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
	margin: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #194553;
	position: static;
}

.faq-item__title::before {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
	width: 40px;
	height: 40px;
	background: url('../images/icons/faq-arrow-2.svg') no-repeat center center / 14px 7px;
	background-color: #194C5C;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}


/* var */

.faq__item.active .faq-item__title:before {
	background: url('../images/icons/faq-arrow.svg') no-repeat center center / 14px 7px;
	background-color: #194C5C;
}

.faq__item.active {
	background: #194553;
	color: #fff;
}

.faq__item.active .faq-item__title  {
	color: #fff;
}

/* FOOTER */

.footer__cover {
	background: #fff;
	color: #104C54;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	    flex-direction: row;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-top: 0px;
	padding-bottom: 58px;
	margin-top: 20px;
}

.footer__cover > * {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	    flex: 0 1 auto;
	padding-top: 58px;
}

.footer__general {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 192px;
	-ms-flex: 1 0 192px;
	    flex: 1 0 192px;
}

.footer__logo {
	display: block;
	max-width: 190px;
}

.footer__logo img {
	max-height: 100%;
}

.copyright {
	font-size: 9px;
	font-weight: 700;
	line-height: 14px;
}

.footer__info {
	padding-right: 46px;
}
.footer__info p {
	margin: 0;
}
.footer__additional {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 208px;
	-ms-flex: 1 0 208px;
	    flex: 1 0 208px;
}


.footer__additional small {
	font-weight: 700;
	font-size: 9px;
	line-height: 14px;
}

.footer__additional ul {
	width: auto;
	white-space: nowrap;
	margin: -8px 0px 0px -8px;
	padding: 0;
}

.footer__additional ul > li {
	display: inline-block;
	width: auto;
	vertical-align: bottom;
	padding: 8px 0px 0px 8px;
}

.footer__additional ul > li img {
	display: block;
	margin: auto;
}

.footer__additional ul > li:before { display: none; }

.footer__additional ul:last-child {
	margin: -8px 0px 0px -16px;
	padding-top: 8px;
}

.footer__additional ul:last-child > li {
	padding: 20px 0px 0px 12px;
}