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

@tailwind base;
@tailwind components;
@tailwind utilities;

/* GLOBAL */

* {
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.responsive_br {
    display: block;
}

/* TOP SECTION */

.top-section {
    background: linear-gradient(180deg, #122740 0%, #183F6C 100%);
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 29px;
    align-items: center;
}

.header_menu_li {
    display: inline-block;
}

.header_menu_li_a {
    border-bottom: 1px solid;
    border-color: rgba(39, 78, 155, 0);
    padding-bottom: 5px;
    transition: 0.25s;
}

.header_menu_li_a:hover {
    border-color: #FF8A00;
}

.header_menu_li_a_ml {
    border-bottom: 1px solid;
    border-color: rgba(39, 78, 155, 0);
    padding-bottom: 5px;
    transition: 0.25s;
}

.header_menu_li_a_ml:hover {
    border-color: #FF8A00;
}


.header_menu_li_a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: white;
}

.header_menu_li_a_ml {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: white;
    margin-left: 32px;
}

.header_menu_mobile {
    flex-grow: 2;
}

.header_menu_icon {
    display: none;
}

.header_right {
    display: flex;
}

.header_right_login_a {
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.header_right_login_img {
    display: inline-block;
    margin-left: 12px;
}

.header_right_login_img_hover {
    display: none;
}

.header_right_login_a:hover ~ .header_right_login_img {
    display: none;
}

.header_right_login_a:hover ~ .header_right_login_img_hover {
    display: inline-block;
    margin-left: 12px;
}

.header_right_login_a:hover {
    color: #FF8A00;
}

.header_right_lang {
    margin-left: 26px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.header_right_lang_span {
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.header_right_lang_div {
    display: inline-block;
    margin-left: 12px;
    padding-bottom: 4px;
}

.header_right_lang_div_flag {
    display: inline-block;
}

.header_right_lang_div_down {
    display: inline-block;
    margin-left: 8px;
    transition: 0.1s;
}

.header_right_lang_rus_div {
    display: none;
    padding: 3px;
    position: absolute;
    gap: 4px;
    top: 29px;
    left: 11px;
}

.header_right_lang_rus_div:hover {
    border-radius: 6px;
    background-color: #b4b2ae;
}

.header_right_lang:hover .header_right_lang_div {
    padding-bottom: 4px;
}

.header_right_lang:hover ~ .header_right_lang_div_arrow .header_right_lang_div_down {
    transform: scaleY(-1);
}

.header_right_lang:hover .header_right_lang_rus_div {
    display: flex;
}

.lang_touch_switch {
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

/* BANNER */

.banner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
    flex-direction: column;
}

.banner_left {
    max-width: 540px;
    margin-top: 58px;
    margin-left: auto;
    margin-right: auto;
}

.banner_left_title {
    color: white;
    font-size: 40px;
    line-height: 40px;
    font-family: 'Bebas Neue', sans-serif;
    margin-top: 36px;
}

.banner_left_text {
    font-family: 'Roboto', sans-serif;
    color: white;
    line-height: 22px;
    font-size: 16px;
    margin-top: 36px;
}

.banner_left_buttons {
    display: flex;
    gap: 10px;
    margin-top: 46px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.banner_left_button_one {
    border: 1px solid #45607e;
    border-radius: 25px;
    padding: 14px 36px 14px 32px;
    max-width: 220px;
}

.banner_left_button_one:hover {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0);
}

.banner_left_button_one:hover .banner_left_button_one_text {
    color: #3C444A;
}

.banner_left_button_one:hover .banner_left_button_one_img {
    filter: brightness(0);
}

.banner_left_button_two:hover {
    background: linear-gradient(90deg, #FF8A00 0%, #FFD900 100%);
}

.banner_left_button_one_text {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 400;
}

.banner_left_button_one_img {
    display: inline-block;
    margin-left: 24px;
}

.banner_left_button_two {
    border-radius: 25px;
    padding: 14px 36px 14px 32px;
    background-color: #FF8A00;
    max-width: 292px;
}

.banner_left_button_two_text {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 400;
}

.banner_left_button_two_img {
    display: inline-block;
    margin-left: 24px;
}

.banner_left_social {
    display: flex;
    gap: 24px;
    margin-top: 128px;
}

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

.banner_right_img {
    position: relative;
    top: 33px;
}

/* BENEFITS */

.benefits_background {
    background-color: white;
}

.benefits {
    display: flex;
    flex-direction: column;
    padding-bottom: 110px;
}

.benefits_left {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.benefits_left_title {
    font-family: 'Bebas Neue';
    font-size: 36px;
    color: #3C444A;
    margin-top: 62px;
}

.benefits_left_ul {
    margin-top: 28px;
}

.benefits_ul_div {
    display: flex;
    align-items: center;
}

.benefits_li_shadow {
    box-shadow: 0px 6px 10px rgba(57, 103, 173, 0.15);
}

.benefits_ul_div_num_white {
    padding: 8px 14px 8px 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #3C444A;
}

.benefits_ul_div_num_black {
    padding: 8px 14px 8px 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
    background-color: #0D2443;
    margin-left: 63.6px;
}

.benefits_ul_div_text {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    color: #3C444A;
    margin-left: 24px;
}

.benefits_ul_div_text_span {
    font-weight: 300;
    font-size: 14px;
}

.benefits_left_bottom {
    display: flex;
    flex-direction: row;
    margin-top: 36px;
}

.benefits_left_bottom_img {
    max-width: 75px;
    max-height: 110px;
}

.benefits_left_bottom_content {
    margin-left: 20px;
}

.benefits_left_bottom_content_text {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #3C444A;
    line-height: 20px;
}

.benefits_left_bottom_content_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #3C444A;
}

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

.benefits_right_img {
    position: relative;
    top: 56px;
}

/* SERVICES */

.services {
    background-color: #F8FBFF;
    padding-top: 66px;
    padding-bottom: 43px;
}

.services_title {
    text-align: center;
    font-family: 'Bebas Neue';
    font-weight: 700;
    font-size: 36px;
    color: #3C444A;
    line-height: 36px;
}

.services_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.services_card {
    padding-top: 40px;
    padding-bottom: 20px;
    border: 1px dashed #D9EAFA;
    border-radius: 30px;
    background-color: #F8FBFF;
    min-width: 340px;
    min-height: 244px;
    transition: box-shadow 350ms;
    position: relative;
}

.services_card:hover {
    box-shadow: 0px 10px 16px rgba(56, 167, 230, 0.25);
}

.services_card div {
    text-align: center;
}

.services_card img {
    margin-left: auto;
    margin-right: auto;
}

.services_card_title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #3C444A;
    font-weight: 600;
}

.services_card_span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #A3B3C1;
    font-weight: 400;
}

.services_card_inner {
    display: none;
}

.services_card_inner {
    max-width: 300px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.services_card_inner_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 23.44px;
    color: #10ACFF;
}

.services_card_text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-top: 16px;
}

.serv_toggle {
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

/* UPCOMING */

.upcoming {
    background-color: #fff;
    padding-top: 104px;
    padding-bottom: 128px;
}

.upcoming_title {
    font-family: 'Bebas Neue';
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    color: #3C444A;
    text-align: center;
}

.upcoming_container {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    flex-direction: column;
}

.upcoming_left {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming_left_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #3C444A;
    font-size: 20px;
    line-height: 23.44px;
}

.upcoming_left_text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #3C444A;
    font-size: 14px;
    line-height: 20px;
}

.upcoming_right {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.upcoming_right_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.upcoming_right_column {
    display: flex;
    align-items: center;
    gap: 20px;
}

.upcoming_right_title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3C444A;
    line-height: 20px;
}

.upcoming_right_span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* MARKETING */

.marketing {
    background: linear-gradient(180deg, #0085FF 0%, #708DFD 100%);
}

/* EARNING */

.earning {
    display: flex;
    justify-content: space-between;
    padding-top: 55px;
    flex-direction: column;
}

.earning_left {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.earning_title {
    font-family: 'Bebas Neue';
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #fff;
    margin-top: 20px;
}

.earning_description {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 23.44px;
    color: #fff;
    margin-top: 36px;
}

.earning_upper_text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 42px;
}

.earning_lower_text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.earning_banner {
    position: relative;
    bottom: 8px;
}

/* PROGRESS */

.progress {
    padding-bottom: 180px;
    margin-top: 80px;
}

.progress_title {
    font-family: 'Bebas Neue';
    font-size: 36px;
    line-height: 36px;
    color: #fff;
    text-align: center;
}

.progress_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.progress img {
    max-width: 356px;
}

.progress_text_container {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    max-width: 320px;
}

.progress_num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 108px;
    line-height: 108px;
    color: #A0C8FF;
    -webkit-text-stroke: 1px #fff;
    padding-top: 12px;
}

.progress_text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}

.progress_text_span {
    font-weight: 400;
}

/* CHESS SECTION */

.chess {
    background-color: #fff;
}

/* TODO BLOCK */

.todo {
    display: flex;
    justify-content: space-between;
    padding-top: 94px;
    flex-direction: column;
}

.todo_left {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.todo_h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 36px;
    color: #3C444A;
}

.todo_h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 23.44px;
    color: #3C444A;
    margin-top: 36px;
}

.todo_h6_span {
    font-size: 12px;
    position: relative;
    bottom: 3px;
    right: 2px;
    padding-right: 2px;
}

.todo_text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #3C444A;
}

.todo_text_span {
    font-weight: 700;
}

.todo_right {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.todo_banner {
    position: relative;
    bottom: 47px;
}

/* PARTNERSHIP BLOCK */

.partnership {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 76px;
}

.partnership_left{
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

.partnership_right {
    max-width: 450px;
    padding-top: 76px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

.partnership_h4 {
    font-family: 'Bebas Neue';
    font-size: 36px;
    line-height: 36px;
    color: #3C444A;
}

/* PARTNERSHIP SLIDER */

.slider {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.slider_mini_img {
    min-width: 168px;
    position: relative;
    top: 20px;
}

.slider_h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 23.44px;
    color: #3C444A;
}

.slider_text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #3C444A;
    margin-top: 6px;
}

.slider_list {
    margin-top: 18px;
}

.slider_list_title_title {
    font-weight: 700;
    color: #3C444A;
}

.partnership_buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider_buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider_arrow {
    border-radius: 9999px;
    border: 1px solid #FF8A00;
    cursor: pointer;
}

.slider_arrow_left_img {
    padding: 17px 20px 17px 20px;
}

.slider_arrow_right_img {
    padding: 17px 17px 17px 17px;
}

.slider_count_number {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #3C444A;
}

.slider_banner {
    transition: 0.4s;
    opacity: 0;
    display: none;
}

.slider_banner.active_banner {
    opacity: 1;
    display: block;
}

.slider_img {
    transition: 0.4s;
    opacity: 0;
    display: none;
}

.slider_img.active_img {
    opacity: 1;
    display: block;
}

.slider_content {
    display: none;
    opacity: 0;
    transition: 0.4s;
}

.slider_content.active_content {
    display: block;
    opacity: 1;
}

.slider_arrows {
    display: flex;
    gap: 20px;
}

.partnership_button {
    border-radius: 25px;
    padding: 14px 36px 14px 32px;
    max-width: 292px;
    background-color: #FF8A00;
    box-shadow: 0px 10px 14px rgba(39, 78, 155, 0.2);
    cursor: pointer;
}

.partnership_button:hover {
    background: linear-gradient(90deg, #FF8A00 0%, #FFD900 100%);
}

.partnership_button_text {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 400;
}

.partnership_button_img {
    display: inline-block;
    margin-left: 24px;
}

/* FOOTER BLOCK */

.footer_background {
    background-color: #3E4C59;
}

.footer {
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer_upper_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_upper_left {
    display: flex;
    align-items: center;
    gap: 29px;
}

.footer_logo {
    max-width: 80px;
}

.footer_ul {
    display: flex;
    gap: 29px;
}

.footer_ul_li {
    display: inline-block;
}

.footer_ul_li_a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.41px;
    color: #fff;
    border-bottom: 1px solid;
    border-color: rgba(39, 78, 155, 0);
    padding-bottom: 5px;
    transition: 0.25s;
}

.footer_ul_li_a:hover {
    border-color: #FF8A00;
}

.footer_upper_right {
    display: flex;
}

.footer_lower_row {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.footer_lower_left {
    display: flex;
    gap: 30px;
}

.footer_lower_a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14.06px;
    color: #A3B3C1;
}

.footer_copyright {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14.06px;
    color: #A3B3C1;
}


/* RESPONSIVE */

@media only screen and (min-width: 1024px) {
    .header {
        padding-right: 0;
        padding-left: 0;
    }
    .banner {
        flex-direction: row;
    }
    .banner_left {
        margin-left: 0;
        margin-right: 0;
    }
    .banner_right {
        margin-left: 0;
        margin-right: 0;
    }
    .benefits {
        flex-direction: row;
    }
    .benefits_left {
        margin-left: 0;
        margin-right: 0;
    }
    .benefits_right {
        margin-left: 0;
        margin-right: 0;
    }
    .services_card:hover .services_card_outer {
        display: none;
    }
    .services_card:hover .services_card_inner {
        display: block;
    }
    .upcoming_container {
        flex-direction: row;
    }
    .upcoming_left {
        margin-left: 0;
        margin-right: 0;
    }
    .upcoming_right {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .earning {
        flex-direction: row;
    }
    .earning_left {
        margin-left: 0;
        margin-right: 0;
    }
    .earning_right {
        margin-left: 0;
        margin-right: 0;
    }
    .progress_title {
        text-align: left;
    }
    .progress_container {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .todo {
        flex-direction: row;
    }
    .todo_left {
        margin-left: 0;
        margin-right: 0;
    }
    .todo_right {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .partnership {
        flex-direction: row;
    }
    .partnership_left {
        margin-left: 0;
        margin-right: 0;
    }
    .partnership_right {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
  }

@media only screen and (min-width: 640px) {
    .responsive_br {
        display: hidden;
    }
  }

@media only screen and (max-width: 430px) {
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    .header {
        display: flex;
        justify-content: space-between;
        padding-left: 9px;
        padding-right: 21px;
        padding-top: 29px;
    }

    .header_menu {
        display: none;
    }

    .header_menu_icon {
        display: block;
    }

    .lang_touch_switch:checked ~ .header_right_lang_rus_div {
        display: flex;
    }
     
    .header_right_lang_rus_div:active {
       background-color: #b4b2ae;
       border-radius: 6px;
    }

    .banner {
        padding-bottom: 57px;
    }

    .banner_left_buttons {
        flex-wrap: wrap;
    }

    .banner_left_social {
        margin-top: 19px;
    }

    .banner_right_img {
        top: 8px;
    }

    .benefits_left_title {
        margin-top: 49px;
        line-height: 36px;
    }

    .benefits_ul_div_num_black {
        margin-left: 0;
    }

    .benefits_ul_div_text {
        font-size: 14px;
        margin-left: 10px;
    }

    .benefits_left_ul {
        margin-top: 8px;
    }

    .benefits_left_bottom {
        margin-top: 16px;
    }

    .benefits_left_bottom_img {
        display: none;
    }

    .benefits_left_bottom_content {
        margin-left: 0;
    }

    .services {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .services_container {
        margin-top: 32px;
    }

    .services_card {
        min-width: 300px;
        text-align: center;
        min-height: 255px;
    }

    .services_card_inner {
        margin-left: 10px;
    }

    .services_card_text {
        max-width: 280px;
    }

    
    .serv_toggle:checked ~ .services_card_outer {
        display: none;
    }

    .serv_toggle:checked ~ .services_card_inner {
        display: block;
    }

    .upcoming {
        padding-top: 60px;
        padding-bottom: 48px;
    }

    .upcoming_container {
        margin-top: 18px;
    }

    .upcoming_left {
        flex-direction: column;
    }

    .upcoming_right {
        margin-left: 0;
        margin-right: 0;
    }

    .upcoming_right_column {
        flex-direction: column;
        align-items: flex-start;
    }

    .earning_lower_text {
        margin-top: 22px;
    }

    .earning_lower_img {
        display: none;
    }

    .progress {
        margin-top: 50px;
        padding-bottom: 70px;
    }

    .progress_container {
        margin-top: 26px;
    }

    .progress_card {
        max-width: 300px;
    }

    .progress_card img {
        max-width: 300px;
    }

    .progress_text_container {
        gap: 8px;
        margin-top: 0;
    }

    .todo {
        padding-top: 61px;
    }

    .todo_banner {
        bottom: 37px;
    }

    .partnership {
        padding-bottom: 55px;
    }

    .partnership_content {
        flex-direction: column;
        margin-top: 20px;
    }

    .slider {
        flex-direction: column;
    }
    
    .slider_mini_img {
        margin: 0 auto;
    }

    .arrow_flex_left {
        order: -1;
    }

    .arrow_flex_right {
        order: 1;
    }

    .slider_counter {
        order: 0;
    }

    .slider_text {
        max-width: 300px;
    }

    .partnership_buttons {
        flex-direction: column;
    }

    .partnership_slider {
        flex-direction: column-reverse;
    }

    .slider_arrows {
        display: flex; 
        gap: 50px;
    }

    .partnership_right {
        padding-top: 0;
    }

    .footer {
        padding-bottom: 52px;
    }

    .footer_ul {
        display: none;
    }

    .footer_lower_row {
        flex-direction: column;
        gap: 16px;
    }

    .footer_lower_left {
        flex-direction: column;
        gap: 16px;
    }
}