html * {
    font-family: "Outfit" !important;
}

body{
    width: 100vw;
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 7.1%;
    padding-top: 30px;
    margin-bottom: 6px;
}

header .logo-container,
header .logo-container img{
    width: 64px;
    height: 93px;
}

header .header-links{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header .header-links a{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 103%;
    text-decoration: none;
    margin-left: 50px;
}

header .mobile-header-links{
    display: none;
}

footer{
    display: none;
}

#menu-slider{
    display: none;
}

section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* width: 100%; */
    justify-content: space-between;
    padding: 0 7.1%;
    overflow-x: hidden;
}

section .content{
    width: 50%;
    display: flex;
    align-items: center; 
}

section .content .wrapper{
    position: relative;
    height: 100%;
}

section .content .wrapper .title{
    color: #000;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 103%;
    margin-bottom: 34px;
}

section .content .wrapper .title span{
    color: #611AA2;
}

section .content .wrapper .dexc{
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 103%;
    margin-bottom: 27px;
}

section .content .wrapper .link-det{
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 103%;
    margin-bottom: 24px;
}

section .content .wrapper .link-det a{
    color: #611AA2;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 103%;
    text-decoration: none;
}

section .content .wrapper .store-links a{
    margin-right: 18px;
}

section .content .wrapper .footer{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

section .content .wrapper .footer .text{
    color: #1E1E1E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.3px;
    text-align: center;
}

section .app-demo{
    width: 50%;
}

section .app-demo img{
    width: 100%;
    max-width: 683px;
}


@media (max-width: 1024px) {
    .header{
        padding-top: 20px;
        width: 100%;
    }

    header .logo-container,
    header .logo-container img{
        width: 43px;
        height: 62px;
    }

    header .header-links{
        display: none;
    }
    
    header .header-links a{
        color: #000;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 103%;
        text-decoration: none;
        margin-left: 50px;
    }

    header .mobile-header-links{
        display: flex;
    }

    #menu-slider{
        z-index: 1000;
        background: #FFF;
        width: 100vw;
        height: 0;
        position: fixed;
        top: 0;
        left: 0;
        overflow: hidden;
        display: flex;
        /* align-items: center; */
        /* justify-content: center; */
        transition: height 0.5s;
        animation-duration: 0.5s;
        animation-name: slideDown;
    }

    @keyframes slideDown {
        from {
          height: 0;
        }
        to {
          height: 326px;
        }
    }    

    #menu-slider .menu-content{
        padding: 0 7.1%;
        padding-top: 70px;
        padding-bottom: 20px;
        height: 100%;
    }

    #menu-slider .menu-content .cancel-icon{
        margin-bottom: 62px;
    }

    #menu-slider .menu-content .mobile-link{
        margin-bottom: 40px;
    }

    #menu-slider .menu-content .mobile-link a{
        text-decoration: none;
        color: #000;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 103%;
    }

    section .content .footer{
        display: none;
    }

    section{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    section .content{
        width: 100%;
        margin-bottom: 26px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    section .app-demo{
        width: 100%;
        max-width: 356px;
        /* overflow-x: hidden !important; */
    }

    section .content .wrapper .title{
        font-size: 48px;
        margin-bottom: 29px;
        line-height: 112%;
        text-align: center;
    }

    section .content .wrapper .dexc{
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 16px;
        text-align: center;
    }
    
    section .content .wrapper .link-det{
        font-size: 13px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    section .content .wrapper .link-det a{
        font-size: 13px;
    }

    section .content .wrapper .store-links{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    section .content .wrapper .store-links a{
        margin-right: 0px;
    }

    section .app-demo img{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer{
        display: none;
    }

    footer{
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 26px;
        padding-bottom: 90px;
    }

    footer .text{
        color: #1E1E1E;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.3px;
    }
}