@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

svg use {
    fill: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    overflow-x: hidden;
    background: #07242c;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
}

body.active {
    margin-top: 125px;
    overflow: hidden;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.header {
    z-index: 1000;
    width: 100%;
}

.image img {
    margin: auto;
}

.content {
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 0 0;
}

.wrapper {
    display: block;
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 25px 30px;
    overflow: hidden;
}

a {
    color: #fff;
    font-weight: 400;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

h1, h2, h3, h4, .title {
    font-weight: 700;
    color: #fff;
}

h1, .title.general {
    font-size: 36px;
    line-height: 50px;
    font-weight: 900;
}

h1 > span span {
    color: #76ffdd;
}

h1 > span {
    padding: 0 150px;
    max-width: 810px;
    margin: 0 auto 25px;
}

h1 > span:before, h1 > span:after {
    content: '';
    position: absolute;
    top: -webkit-calc(50% - 49px);
    top: -moz-calc(50% - 49px);
    top: calc(50% - 49px);
    width: 101px;
    height: 98px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/prime-title.png);
}

h1 > span:before {
    left: 0;
}

h1 > span:after {
    right: 0;
}



h3.border, h2.border, .title.high, .title.middle, h2, h3 {
    font-size: 36px;
    line-height: 45px;
}

h2.border, .title.high.border, h3.border, .title.middle.border {
    background: #173c46;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 15px 30px;
}

h4, .title.small {
    font-size: 24px;
    line-height: 32px;
}

.button {
    min-width: 200px;
    background-color: #2d947d;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    padding: 13px 15px;
    border: 2px solid #2d947d;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 10;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.button:hover {
    background: transparent;
    color: #2BC69E;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}



/* header */


.content.header__content {
    padding: 25px 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    background: transparent;
    min-height: 125px;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header__logo img {
    display: block;
    margin: auto;
    max-height: 30px;
}

.header__logo {
    display: block;
}

.header__left, .header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.header__menu {
    margin-left: 20px;
}

.header__menu * {
    display: inline-block;
    vertical-align: middle;
}

.menu a {
    padding: 10px 15px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.header__menu a:hover {
    color: #2BC69E;
}

.header__menu a:not([href]) {
    color: #2BC69E;
    cursor: default;
}

.expand__menu {
    display: none;
}

.expand__menu > * {
    display: none;
    width: 100%;
}

.expand__menu > *:nth-child(n + 2) a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.expand__menu > *:nth-child(n + 2) a:not([href]) {
    color: #2BC69E;
    cursor: default;
}

.expand__menu li {
    display: block;
}

.expand__menu > *:nth-child(2) a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12.5px;
    margin-bottom: 15px;
    width: 100vw;
}

.expand__menu > *:nth-child(2) > li:last-child a {
    margin-bottom: 0;
}

.header__right > .header__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.header__button:last-child {
    margin-left: 10px;
}

.header__button.button {
    min-width: 150px;
}

.button.white {
    color: #07242c;
    background: #fff;
    border-color: #fff;
}

.button.white:hover {
    color: #fff;
    background: transparent;
}

.button.dark {
    color: #fff;
    background: #07242c;
    border-color: #07242c;
}

.button.dark:hover {
    color: #07242c;
    background: transparent;
    border-color: #07242c;
}




/* prime */

.prime__content {
    margin-top: -125px;
}

.prime__wrapper.wrapper {
    background: #2d947d;
    padding-top: 100px;
}


.prime__wrap {
    background: #07242c;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 50px 6% 25px;
    text-align: center;
}

.prime__desc {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
}



/* key */

.key__wrapper.wrapper {
    background: #173c46;
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
}

.key__wrapper > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
}

h2.key__title.high {
    font-weight: 400;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    border-radius: 0 0 25px 25px;
    padding: 37px 30px 43px;
    background: #042d38;
}

.key__list {
    padding: 0 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
}

.key__list p {
    margin-top: 20px;
}

.key__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    min-height: 350px;
    text-align: center;
    padding: 25px;
}

.key__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.key__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    height: 100%;
    width: 100%;
}

h3.key__title.high {
    z-index: 100;
    max-width: 200px;
    margin: 0 auto;
}

.key__button.button {
    margin: 50px auto 0;
}



/* article  */

.article {
    display: block;
}

article > *, .article > * {
    margin-top: 20px;
}

article > *:first-child, .article > *:first-child, article > a.button:first-child, .article > a.button:first-child {
    margin-top: 0;
}

article ul li, .article ul li {
    padding-left: 30px;
    display: block;
}

article > * + .button, .article > * + .button {
    margin-top: 16px;
}

article li + li, .article li + li {
    margin-top: 10px;
}

.article ul li:before, article ul li:before {
    content: '.';
    font-size: 50px;
    line-height: inherit;
    font-weight: 500;
    line-height: 1;
    color: #2cac58;
    position: absolute;
    left: 0;
    top: -31px;
}

.article ol, article ol {
    list-style-position: inside;
    list-style: none;
}

.article ol > li, article > ol li {
    counter-increment: ol;
}

.article ol > li:before, article ol > li:before {
    content: counter(ol) '. ';
    font-size: inherit;o
    color: #fff;
    font-weight: 400;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}


.content > * + * {
    margin-top: 25px;
}

.header__content.content > * + * {
    margin-top: 0;
}





.article > * + h3 {
    margin-top: 30px;
}




/* table */


table a {
    font-weight: inherit;
    color: inherit;
}

table a:hover {
    text-decoration: underline;
}

table, thead, tbody {
    width: 100%;
}

tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
}

tbody {
    font-size: 24px;
    line-height: 35px;
}

tbody tr {
    margin-top: 15px;
}

td {
    padding: 0 30px;
}

td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    margin-right: 30px;
    min-width: 260px;
}

td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(70% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(70% - 30px);
    max-width: -webkit-calc(100% - 260px - 30px);
    max-width: -moz-calc(100% - 260px - 30px);
    max-width: calc(100% - 260px - 30px);
}

thead {
    color: #71a4b3;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}

thead td {
    padding: 17.5px 30px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    border-radius: 0 0 25px 25px;
    background: #1e5e71;
}

tbody tr td:first-child {
    font-weight: 700;
}





/* info */

.info__wrapper.wrapper {
    padding-top: 0;
    background: #1a5567;
}



/* pros */

.pros__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
}

.pros-list__item.wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
    background: #1a5567;
    padding-top: 0;
}

.pros-item__title.middle {
    font-weight: 400;
    padding: 27px 30px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    border-radius: 0 0 25px 25px;
    background: #1e5e71;
}

.pros-item__list {
    font-size: 24px;
    line-height: 32px;
    padding: 40px 30px 25px;
}

.pros-item__list > * + * {
    margin-top: 5px;
}




/* promotion */

.promotion__wrapper.wrapper {
    border: 1px solid #2d947d;
    padding: 50px;
    text-align: center;
    background: #000;
}

.promotion__title.title span {
    color: #38ad93;
}

.promotion__title.title {
    margin-bottom: 35px;
    z-index: 100;
}

.promotion__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.promotion__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}




/* attributes */

.attributes__wrapper.wrapper, .register__wrapper.wrapper {
    padding: 60px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    background: #173c46;
}

.attributes__wrapper > * + * {
    margin-top: 15px;
}

.register__wrapper > * + * {
    margin-top: 50px;
}



/* offer */

.offer__content h3 {
    border: none;
    background: transparent;
    margin: 25px 0;
}

.offer__content > * + * {
    margin-top: 0;
}

.offer__wrapper.wrapper {
    border: 1px solid #2d947d;
    padding-top: 0;
    background: #173c46;
}

.offer__list {
    width: 100%;
}

.offer__list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    font-size: 24px;
    line-height: 32px;
}

.offer__list li span {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
}

.offer__list li + li {
    margin-top: 25px;
}

.offer__list li span:first-child {
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    margin-right: 30px;
}

.offer__list li span:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(75% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(75% - 30px);
}

.offer__list .offer__first {
    font-size: 30px;
    line-height: 40px;
}

.offer__first span {
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    border-radius: 0 0 25px 25px;
    background: #042d38;
    padding: 16px 30px 19px;
}

.offer__list li span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.offer__other span {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    padding: 25px 30px;
    min-height: 100px;
}

.offer__other span:nth-child(1) {
    background: #2d947d;
}

.offer__list li span:nth-child(2) {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.offer__other span:nth-child(2) {
    background: #285460;
}



/* win */

.win__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.win__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.win__wrapper.wrapper {
    text-align: center;
    padding: 65px 30px;
    background: #000;
}

.win__title.title {
    z-index: 100;
}

.win__button.button {
    margin-top: 25px;
}



/* point */


.point__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    padding: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #1a5567;
}

.point__wrapper > span {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-flex: 40px;
    -webkit-flex: 40px;
    -moz-box-flex: 40px;
    flex: 40px;
    background: #04d8ba;
    font-size: 24px;
    line-height: 25px;
    color: #07242c;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.point__wrapper > div {
    font-size: 24px;
    line-height: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 40px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 40px);
    padding-left: 20px;
}

.point__wrapper > div span {
    color: #04d8ba;
}


/* footnote */

.footnote__article {
    padding: 25px 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #0e3848;
    color: #04d8ba;
}




/* list */

.list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-top: -25px;
}

.list + * {
    margin-top: 25px;
}

.list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 90px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 90px) / 3);
    margin-left: 30px;
    margin-top: 25px;
    background: #1a5567;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-size: 36px;
    line-height: 50px;
    padding: 25px 30px;
    color: #3ebda1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    text-align: center;
}



.last__wrapper {
    background: #173c46;
}

.last__wrap {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #1a5567;
    padding: 15px 30px 30px;
    line-height: 30px;
}

.last__wrap + .last__wrap {
    margin-top: 25px;
}

.last__title.title {
    font-weight: 400;
    color: #3ebda1;
    margin-bottom: 25px;
}
