@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html{
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

body{
    font-family: "Roboto", "sans-serif";
    font-weight: 400;
    font-size: 16px !important;
    line-height: 150%;
    font-style: normal;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 57, 62, 1);
    cursor: default;
}

.section{
    margin-bottom: 20px;
    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: 16px;
    padding: 32px 20px;
    background-color: rgba(10, 142, 151, 0.1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    overflow: hidden;
}

h1, h2, h3, h4, h5, .title{
    font-weight: 900;
    font-size: 30px;
    line-height: 130%;
    color: rgba(255, 255, 255, 1);
}

h2, .title.high{
    padding: 12px;
    text-align: center;
    width: 100%;
    background-color: rgba(1, 45, 52, 1);
    border: 2px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
}

h1, .title.general{
    font-size: 65px;
    text-transform: uppercase;
    line-height: 100%;
}

h3, .title.medium{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

h4, .title.low{
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    text-transform: uppercase;
}

h5, .title.minimal{
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.button{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    padding: 18px 40px;
    min-height: 60px;
    -webkit-border-radius: 40px;
            border-radius: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    background-color: rgba(240, 76, 77, 1);
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

.button.install{
    min-height: 76px;
    min-width: 226px;
    line-height: 13px;
    font-size: 15px;
    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-align: left;
    gap: 16px;
    text-transform: none;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.button.transparent{
    background-color: rgba(255, 255, 255, 0.2);
}

.button:hover, .button:focus {
    -ms-transform: scale(1.07);
        transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

.keyword{
    color: rgba(0, 178, 91, 1);
    font-weight: 700;
}

.current{
    color: rgba(0, 178, 91, 1);
}

.list{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* header */
.header{
    background-color: rgba(0, 65, 71, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 70px;
    margin-bottom: 20px;
}

.header__container{
    max-width: 1440px;
    height: 100%;
    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: 15px 40px;
    margin: 0 auto;
    position: relative;
}

.header__logo{
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__logo:hover, .header__logo:focus {
    -webkit-transform: scale(1.07);
        -ms-transform: scale(1.07);
            transform: scale(1.07);
}

.header__menu{
    margin-left: 102px;
}

.header__menu ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.header__menu ul li{
    color: rgba(255, 255, 255, 1);
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding: 10px 15px;
    text-transform: uppercase;
}

.header__menu ul li:hover, .header__menu ul li:focus{
    color: rgba(0, 178, 91, 1);
}

.header__button-auth{
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-right: 24px;
    -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;
}

.header__button{
    padding: 10px 30px;
    min-height: 40px;
    font-size: 16px;
    line-height: 20px;
    text-transform: none;
}

.header__button-login{
    background-color: rgba(24, 90, 97, 1);
}

.header__button-register{
    background-color: rgba(0, 178, 91, 1);
}

.header__lang{
    background-color: transparent;
    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: 8px;
    font-family: Roboto;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.main{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.main__content{
    max-width: 1130px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 0;
}

/* mobile-menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 65, 71, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    z-index: 50;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    opacity: 0;
    padding: 48px 20px;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu.active .mobile-menu__content {
    opacity: 1;
}

/* hero */
.hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 381px;
    max-width: 1360px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 90px;
    margin-bottom: 20px;
    min-width: 0;
    width: -webkit-calc(100% - 80px);
    width: calc(100% - 80px);
    position: relative;
    padding: 20px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.home .hero{
    background-image: url('../img/bg-main.jpg');
}

.bonus .hero{
    background-image: url('../img/bg-bonus.jpg');
}

.app .hero{
    background-image: url('../img/bg-app.jpg');
}

.hero__info{
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 1);
    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;
    text-transform: none;
    margin-left: 213px;
    padding: 20px;
    background-color: rgba(1, 45, 52, 1);
    border: 2px solid rgba(10, 142, 151, 1);
    max-width: 628px;
    -webkit-border-radius: 12px;
            border-radius: 12px;
}

.title.general span{
    color: rgba(27, 225, 129, 1);
}

.hero__text{
    font-size: 35px;
    line-height: 100%;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 4px;
}

.hero__desc{
    margin-top: 16px;
}

.hero__info p{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.hero__button{
    margin-top: 32px;
}

.breadcrumbs{
    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: 12px;
}

.breadcrumbs li:first-child a{
    opacity: 84%;
}

.breadcrumbs li:last-child::before{
    content: '|';
    width: 24px;
    height: 16px;
    margin-right: 10px;
}

/* sidebar */
.sidebar{
    width: 217px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    margin-bottom: 20px;
    top: 90px;
    bottom: 0;
    padding: 8px;
    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;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: -webkit-calc(100vh - 110px);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: none;
    background: rgba(1, 45, 52, 1);
    border: 2px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
}

.sidebar__list{
    padding: 16px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.sidebar__list li{
    padding: 8px 16px;

    -webkit-transition: color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
    -o-transition: color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
    transition: color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}

.sidebar__list li:hover, .sidebar__list li:focus {
    color: rgba(10, 142, 151, 1);
    font-weight: 700;
}

.sidebar__list li img{
    -webkit-transition: -webkit-filter 0.3s ease;
    transition: -webkit-filter 0.3s ease;
    -o-transition: filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.sidebar__list li:hover img, .sidebar__list li:focus img{
    -webkit-filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(627%) hue-rotate(147deg) brightness(94%) contrast(92%);
        filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(627%) hue-rotate(147deg) brightness(94%) contrast(92%);
}

.sidebar__list a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.sidebar__table-content{
    padding: 8px;
}

.sidebar__table-content .sidebar__list{
    padding: 0;
    overflow: hidden;
}

.sidebar__table-content .sidebar__list li{
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.sidebar__table-content .sidebar__list li:hover, .sidebar__table-content .sidebar__list li:focus{
    font-weight: 700;
    font-size: 16px;
}

.sidebar__table-content:not(.open) .sidebar__list {
    padding: 0;
}

.sidebar__title{
    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: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8px;
    margin-bottom: 0;
    -webkit-transition: margin-bottom 0.3s ease;
    -o-transition: margin-bottom 0.3s ease;
    transition: margin-bottom 0.3s ease;
    cursor: pointer;
}

.sidebar__table-content .sidebar__list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
}

.sidebar__arrow{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sidebar__table-content.open .sidebar__arrow {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.sidebar__table-content.open .sidebar__title {
    margin-bottom: 16px;
}

/* advantages */
.advantages__wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
}

.advantages__info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    width: -webkit-calc((100% - 14px) / 2);
    width: calc((100% - 14px) / 2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.advantages__table{
    border: 2px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    overflow: hidden;
    background-color: rgba(1, 45, 52, 1);
}

.advantages__table tr{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12.5px 20px;
    line-height: 150%;
    font-size: 15px;
    min-height: 48px;
}

.advantages__table th{
    text-align: left;
    font-weight: 800;
    width: 40%;
    color: rgba(27, 225, 129, 1);
}

.advantages__table td{
    font-weight: 400;
}

.advantages__list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 2px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    overflow: hidden;
    background-color: rgba(1, 45, 52, 1);
}

.advantages__list li{
    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;
    padding: 12px 20px;
    min-height: 48px;
}

.advantages__banner{
    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;
    min-height: 300px;
    padding: 20px;
    border: 2px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: -webkit-calc((100% - 14px) / 2);
    width: calc((100% - 14px) / 2);
}

.advantages-banner__info{
    max-width: 398px;
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 1);
    margin-top: 30px;
}

.advantages-banner__info p{
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
}

.advantages__title{
    font-weight: 900;
    line-height: 100%;
    font-size: 65px;
    margin-top: 4px;
    text-align: center;
    background: none;
    border: none;
    background-color: transparent;
    padding: 0;
}

.advantages__title span{
    color: rgba(27, 225, 129, 1);
}

.advantages__button{
    margin: 0 auto;
    margin-top: 32px;
    text-transform: uppercase;
}

/* tournaments */
.tournaments__image{
    border: 1px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
}

/* info */
.info__list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 4px;
}

.info__list li{
   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: 8px;
}

ul.info__list li::before{
    content: '';
    width: 4px !important;
    height: 1px !important;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    background-color: rgba(255, 255, 255, 1);
}

ol.info__list{
    list-style: decimal !important;
    list-style-position: inside;
    padding-left: 18px;
}

ol.info__list li{
    display: list-item;
}

ol.info__list li::before{
    content: none;
    display: none;
}

.info__title{
    font-weight: 900;
    line-height: 130%;
}

.info__button{
    margin: 0 auto;
}

/* rating */
.rating__list{
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
}

.rating__item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 20px;
    gap: 14px;
    color: rgba(255, 255, 255, 1);
    border: 2px solid rgba(10, 142, 151, 1);
    background-color: rgba(1, 45, 52, 1);
    -webkit-border-radius: 12px;
            border-radius: 12px;
    width: -webkit-calc((100% - 100px) / 6);
    width: calc((100% - 100px) / 6);
}

.rating__category{
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}

.rating__num{
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;
    text-align: center;
    color: rgba(0, 178, 91, 1);
}

.rating__button{
    margin: 0 auto;
}

/* faq */
.faq__list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}

.faq__item{
    -webkit-border-radius: 12px;
            border-radius: 12px;
    background-color: rgba(1, 45, 52, 1);
    overflow: hidden;
}

.faq__question{
    padding: 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;
    gap: 16px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    border: 2px solid rgba(10, 142, 151, 1);
    -webkit-border-radius: 12px;
        border-radius: 12px;
    -webkit-transition: -webkit-border-radius 0.3s ease;
    transition: -webkit-border-radius 0.3s ease;
    -o-transition: border-radius 0.3s ease;
    transition: border-radius 0.3s ease;
    transition: border-radius 0.3s ease, -webkit-border-radius 0.3s ease;
}

.faq__item.active .faq__question{
    -webkit-border-radius: 12px 12px 0 0;
        border-radius: 12px 12px 0 0;
}

.faq__answer{
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-border-radius: 0 0 12px 12px;
        border-radius: 0 0 12px 12px;
}

.faq__item.active .faq__answer {
    opacity: 1;
    padding: 16px;
}

.faq__arrow {
    -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__item.active .faq__arrow {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

/* bonuses */
.bonuses{
    padding: 0;
    background-color: transparent;
}

.bonuses__list{
    gap: 16px;
    -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;
}

.bonuses__list li{
    -webkit-border-radius: 12px;
            border-radius: 12px;
    background-color: rgba(1, 45, 52, 1);
    border: 2px solid rgba(10, 142, 151, 1);
    overflow: hidden;
    width: -webkit-calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    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: 20px;
    gap: 20px;
}

.bonuses__list li img{
    width: 100%;
    -webkit-border-radius: 15px;
            border-radius: 15px;
}

.bonuses__info{
    color: rgba(255, 255, 255, 1);
    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;
}

.bonuses__info p{
    margin-top: 8px;
    margin-bottom: 24px;
}

.bonuses__title{
    line-height: 100%;
    text-transform: uppercase;
    color: rgba(27, 225, 129, 1);
    text-align: left !important;
    font-size: 26px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    background-color: transparent !important;
}

.bonuses__button{
    padding: 10px 30px;
    background-color: rgba(0, 178, 91, 1);
    font-size: 14px;
    line-height: 20px;
    min-height: 40px;
    min-width: 148px;
    text-transform: uppercase;
}

/* download */
.download{
    min-height: 280px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url('../img/download.jpg');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

.download__button-group{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 67px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.download__button-group .button strong{
    font-weight: 700;
    font-size: 20px;
    line-height: 16px;
}

.download__button-group .button.install span{
    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;
}

.download__button-apple{
    background-color: rgba(0, 178, 91, 1);
}

.download__button-android{
    background-color: rgba(240, 76, 77, 1);
}

.download__logo{
    margin-left: 212px;
}

/* footer */
.footer{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.footer__container{
    max-width: 1127px;
    width: -webkit-calc(100% - 237px);
    width: calc(100% - 237px);
    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: 32px;
    padding: 32px 16px;
    -webkit-border-radius: 15px;
            border-radius: 15px;
    background: rgba(0, 65, 71, 1);
    color: rgba(186, 206, 208, 1);
}

.footer__links{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer-links__info{
    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: 20px;
    max-width: 220px;
}

.footer-links__info .keyword{
    text-decoration: underline;
}

.footer__menu{
    gap: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.footer-menu__item{
    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: 12px;
    width: 130px;
}

.footer__list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
}

.footer__list li{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.footer__list li:focus, .footer__list li:hover{
    text-decoration: underline;
}

.footer__button{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    width: 125px;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    text-align: left;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 178, 91, 1);
    min-height: 40px;
}

.footer__button img{
    width: 16px;
    height: 16px;
}

.footer__button strong{
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}

.footer__data{
    gap: 8px;
}

.footer__data li{
    padding: 15px;
    background-color: rgba(24, 91, 98, 1);
    -webkit-border-radius: 10px;
            border-radius: 10px;
    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: 12px;
}

.footer-data__text{
    font-size: 12px;
    line-height: 14px;
}

.footer__warning{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -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;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

.footer__warning .keyword{
    text-decoration: underline;
}

.footer__limitation{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
}

/* scroll-up */
.scroll-up{
    width: 32px;
    height: 32px;
    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;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
    -o-transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, -webkit-transform 0.3s ease;
}

.scroll-up:hover, .scroll-up:focus {
    -webkit-transform: scale(1.07);
        -ms-transform: scale(1.07);
            transform: scale(1.07);
}

.scroll-up.show {
    opacity: 1;
}

.scroll-up.hide {
    opacity: 0;
}