@font-face {
    font-family: 'Helvetica-Neue-Interface';
    src:url('../fonts/Helvetica-Neue-Interface.ttf.woff') format('woff'),
        url('../fonts/Helvetica-Neue-Interface.ttf.svg#Helvetica-Neue-Interface') format('svg'),
        url('../fonts/Helvetica-Neue-Interface.ttf.eot'),
        url('../fonts/Helvetica-Neue-Interface.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

* {
    list-style: none;
    text-decoration: none
}

html {
    overflow-x: hidden
}

body {
    font-family: "Helvetica-Neue-Interface",Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: var(--best-blue);
    animation: fadeInAnimation ease 1s
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width: 1100px) {
    .navigation li a {
        font-size: 14px !important
    }

    .logo_container img,
    .download_button {
        width: 80% !important
    }

    .download_container a {
        font-size: 10px !important
    }
}

@media screen and (max-width: 950px) {
    .inner_header {
        justify-content: space-between !important
    }

    .navigation {
        display: none !important
    }

    .header {
        height: 80px !important
    }

    .logo_container img {
        width: 60% !important
    }

    .download_container {
        display: none !important
    }

    .inner_header {
        align-items: center;
        justify-content: space-between
    }

    .logo_container {
        margin-left: 25px !important
    }

    .mobile_navbar {
        display: flex !important;
        width: 40px;
        height: 40px;
        margin-right: 25px;
        float: left;
        align-items: center;
        justify-content: center
    }

    .mobile_navbar .mobile_navbar_button {
        display: flex;
        width: 100%;
        height: 100%;
        float: right;
        background-color: var(--best-blue-light-gray);
        transition: background-color .3s ease;
        border: none;
        border-radius: 50%;
        justify-content: center;
        align-items: center
    }

    .mobile_navbar .mobile_navbar_button span {
        color: #fff;
        font-size: 15px;
        opacity: .8
    }

    .mobile_navbar_menu {
        display: flex !important
    }
}

.header {
    display: flex;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 110px;
    background-color: var(--best-blue);
    box-shadow: 0 0 5px #0003
}

.header .row {
    display: flex;
    padding: 0 50px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center
}

.inner_header {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-evenly
}

.logo_container {
    display: flex;
    width: 144px;
    height: 100%;
    float: left;
    align-items: center;
    justify-content: center
}

.logo_container img {
    display: block;
    width: 100%;
    margin: 19.25px auto;
    float: left
}

.navigation {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center
}

.navigation li {
    display: flex;
    height: 100%;
    float: left;
    margin-right: 22px;
    align-items: center;
    justify-items: center
}

.navigation li:last-child {
    margin-right: 0
}

.navigation li:first-child {
    padding-left: 0
}

.navigation li a {
    display: flex;
    height: 10%;
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
    transition: color .3s ease;
    align-items: center;
    justify-content: center
}

.navigation li .current_page,
.navigation li a:hover {
    color: var(--best-pink)
}

.download_container {
    display: flex;
    width: 160px;
    height: 100%;
    margin-right: 100px;
    float: left;
    align-items: center;
    justify-content: center
}

.download_button {
    display: flex;
    width: 100%;
    height: 50%;
    float: right;
    background-color: var(--best-pink);
    transition: background-color .3s ease;
    border: none;
    border-radius: 70px
}

.download_button:hover {
    background-color: #b92346
}

.download_container a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px
}

.download_container a span {
    padding-right: 6px;
    color: #fff
}

.mobile_navbar {
    display: none
}

.mobile_navbar_menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    right: -1000px;
    justify-content: flex-end;
    scroll-behavior: smooth
}

.mobile_navbar_menu .mobile_navbar_menu_main {
    position: fixed;
    width: 100%;
    max-width: 480px;
    height: 100%;
    margin-right: auto;
    background-color: var(--best-blue);
    right: -1000px;
    transition: right .3s ease;
    scroll-behavior: smooth
}

.mobile_navbar_menu .mobile_navbar_menu_background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--best-blue);
    opacity: .8;
    right: -1000px;
    transition: right .8s ease-out 0s;
    scroll-behavior: smooth
}

.mobile_navbar_menu .mobile_navbar_menu_main .inner_menu {
    display: flex;
    width: 80%;
    height: 80%;
    padding: 90px 60px 60px 50px;
    justify-content: flex-start;
    flex-direction: column
}

.mobile_navbar_menu .mobile_navbar_menu_main .inner_menu .close_button {
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    right: 60px;
    top: 35px
}

.mobile_navbar_menu .mobile_navbar_menu_main .inner_menu .close_button span {
    font-size: 30px;
    color: #fff;
    float: right
}

.mobile_navbar_menu .mobile_navbar_menu_main .inner_menu .mobile_navigation li {
    display: flex;
    width: 95%;
    height: 60px;
    align-items: center
}

.mobile_navbar_menu .mobile_navbar_menu_main .inner_menu .mobile_navigation {
    margin: 0;
    padding: 0
}

.mobile_navbar_menu .mobile_navbar_menu_main .inner_menu .mobile_navigation li a {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1.5px solid #e4dee61a;
    line-height: 30px;
    opacity: .8;
    color: #fff
}

.mobile_download_container {
    display: flex;
    width: 160px;
    height: 110px;
    margin-left: auto;
    align-items: center;
    justify-content: center
}

.mobile_download_button {
    display: flex;
    width: 100%;
    height: 50%;
    background-color: var(--best-pink);
    transition: background-color .3s ease;
    border: none;
    border-radius: 70px
}

.mobile_download_container a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px
}

.mobile_download_container a span {
    padding-right: 6px;
    color: #fff
}

:root {
    --best-blue-light-gray: #504d70;
    --best-blue-light: #4b3ddf;
    --best-blue: #1A1925;
    --best-pink: #EC2C59
}

@media screen and (max-width: 1250px) and (min-width: 1000px) {
    .footer {
        height: 390px !important
    }

    .footer .inner_footer {
        width: 945px !important
    }

    .footer .inner_footer .footer_top {
        width: 945px !important;
        height: 267.75px !important;
        margin-top: 80px !important
    }

    .footer .inner_footer .footer_top .socials .description p {
        font-size: 12px !important
    }

    .footer .inner_footer .footer_top .links {
        padding-left: 50px !important
    }

    .footer .inner_footer .footer_top .links div {
        width: 150px !important
    }

    .footer .inner_footer .footer_top .links div ul li {
        height: 30px !important
    }

    .footer .inner_footer .footer_top .links div ul li a {
        font-size: 12px !important
    }

    .footer .inner_footer .footer_top .links div h3 {
        margin-bottom: 30px !important
    }

    .footer .inner_footer .footer_top div .best_app_list li,
    .footer .inner_footer .footer_top div .best_app_list li a {
        width: 150px !important
    }
}

@media screen and (max-width: 1000px) {
    .footer .inner_footer .footer_top .socials {
        padding-left: 30px !important
    }

    .footer .inner_footer .footer_top .links div {
        width: 130px !important
    }
}

@media screen and (max-width: 950px) {
    .footer {
        height: fit-content !important
    }

    .footer .inner_footer {
        display: flex;
        max-width: 945px !important;
        width: 100% !important;
        height: fit-content !important;
        align-items: center;
        justify-content: center;
        flex-direction: column
    }

    .footer .inner_footer .footer_top {
        width: 70% !important;
        align-items: flex-start !important;
        justify-content: center !important;
        flex-direction: column !important;
        height: fit-content !important;
        margin: 80px 0 0 !important
    }

    .footer .inner_footer .footer_top .socials {
        width: 100% !important;
        margin: 0 0 50px !important;
        padding: 0 !important
    }

    .footer .inner_footer .footer_top .socials .description p {
        font-size: 18px !important
    }

    .footer .inner_footer .footer_top .links {
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .footer .inner_footer .footer_top .links div {
        margin: 0 0 20px !important;
        padding: 0 !important
    }

    .footer .inner_footer .footer_top .links div:last-child {
        margin: 0 0 50px !important;
        padding: 0 !important
    }

    .footer .inner_footer .footer_top .links div ul li {
        width: 200px !important
    }

    .footer .inner_footer .footer_top .links div ul li a {
        font-size: 16px !important
    }

    .footer .inner_footer .footer_top div .best_app_list li {
        height: 70px !important
    }

    .footer .inner_footer .footer_bottom {
        height: 100px !important
    }

    .footer .inner_footer .footer_bottom .legal {
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column-reverse !important
    }

    .footer .inner_footer .footer_bottom .legal .copyright {
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important
    }

    .footer .inner_footer .footer_bottom .legal .policy {
        width: 100% !important;
        justify-content: center !important
    }

    .circle {
        margin: 0 !important
    }

    .footer .inner_footer .footer_bottom .legal .policy li {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 20px !important
    }
}

.footer {
    width: 100%;
    height: 470px;
    background-color: var(--best-blue)
}

.footer .inner_footer {
    width: 1200px;
    height: 100%;
    margin: auto
}

.footer .inner_footer .footer_top {
    display: flex;
    width: 1200px;
    height: 340px;
    margin: 100px auto 42px
}

.footer .inner_footer .footer_top .socials {
    width: 373px;
    height: 100%;
    padding: 0 13.5px
}

.footer .inner_footer .footer_top .socials img {
    width: 100px;
    margin-bottom: 30px
}

.footer .inner_footer .footer_top .socials .description {
    margin: 0 0 25px
}

.footer .inner_footer .footer_top .socials .description p {
    color: #fff;
    opacity: .8;
    line-height: 1.8;
    margin: 0;
    text-align: justify
}

.footer .inner_footer .footer_top .socials ul {
    display: flex;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0;
    list-style: outside none none
}

.footer .inner_footer .footer_top .socials ul li {
    display: flex;
    width: 38px;
    height: 38px;
    margin-right: 11px;
    border: none;
    border-radius: 6px;
    text-align: center;
    background-color: #222943;
    align-items: center;
    justify-content: center
}

.footer .inner_footer .footer_top .socials ul li a {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center
}

.footer .inner_footer .footer_top .socials ul li a:hover i {
    color: var(--best-pink)
}

.footer .inner_footer .footer_top .socials ul i {
    color: #fff;
    transition: all .4s
}

.footer .inner_footer .footer_top .links {
    display: flex;
    width: 676.5px;
    height: 100%;
    padding-left: 110px;
    padding-right: 13.5px
}

.footer .inner_footer .footer_top .links div {
    flex: 0 0 auto;
    width: 207.5px;
    height: 100%;
    padding: 0 13.5px
}

.footer .inner_footer .footer_top .links div h3 {
    color: #fff;
    margin: 0 0 45px;
    font-size: 22px;
    font-weight: 500
}

.footer .inner_footer .footer_top .links div ul {
    margin: 0;
    padding: 0
}

.footer .inner_footer .footer_top .links div ul li {
    margin-bottom: 5px;
    height: 35.5px
}

.footer .inner_footer .footer_top .links div ul li a {
    color: #fff;
    opacity: .8;
    padding-top: 6px;
    padding-bottom: 4px;
    font-size: 15px;
    transition: all .3s
}

.footer .inner_footer .footer_top div .best_app_list li {
    display: flex;
    width: 180px;
    height: 50px !important;
    align-items: center;
    justify-content: center;
    background-color: var(--best-pink);
    background-clip: content-box;
    border: none;
    border-radius: 10px;
    transition: background-color .3s ease;
    margin-bottom: 20px !important
}

.footer .inner_footer .footer_top div .best_app_list li a {
    display: flex;
    opacity: 1 !important;
    width: 180px;
    height: 50px !important;
    justify-content: center;
    align-items: center
}

.footer .inner_footer .footer_top div .best_app_list li a span {
    margin-right: 5px
}

.footer .inner_footer .footer_top .links div ul li a:hover {
    color: var(--best-pink)
}

.footer .inner_footer .footer_top div .best_app_list li:hover {
    background-color: #b92346
}

.footer .inner_footer .footer_top div .best_app_list li a:hover {
    color: #fff !important
}

.footer .inner_footer .footer_bottom {
    display: flex;
    width: 95%;
    height: 81px;
    margin: auto;
    border-top: .5px solid #e4dee65c;
    align-items: center;
    justify-content: center
}

.footer .inner_footer .footer_bottom .legal {
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    justify-content: center
}

.footer .inner_footer .footer_bottom .legal .copyright {
    display: flex;
    width: 50%;
    height: 30px;
    align-items: center;
    color: #fff;
    opacity: .8;
    font-size: 16px;
    font-weight: 300
}

.footer .inner_footer .footer_bottom .legal .policy {
    display: flex;
    width: 50%;
    height: 30px;
    margin: 0;
    padding: 0;
    justify-content: right
}

.footer .inner_footer .footer_bottom .legal .policy li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px
}

.footer .inner_footer .footer_bottom .legal .policy li a {
    color: #fff;
    opacity: .8;
    font-size: 16px;
    font-weight: 300;
    transition: all .3s
}

.footer .inner_footer .footer_bottom .legal .policy li a:hover {
    color: var(--best-pink)
}

.footer .inner_footer .footer_bottom .legal .policy li div {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border: none;
    border-radius: 100px;
    opacity: .8;
    margin-right: 19px
}

.circle {
    margin: 0 !important
}

