



* {
	outline: none;
	box-sizing: border-box;
}

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

a {
    text-decoration: none;
}

img {
    height: auto;
    max-width: 100%;
}

.mobile, .desktop {
    width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

ul, li {
	list-style: none;
    padding: 0;
    margin: 0;
}

.app_ankers {
    position: absolute;
    top: 44.2vw;
    z-index: 10;
    right: 23vw;
}

.app_ankers a {
    display: block;
    margin: 0px 0;
    width: 20vw;
}

.mobile {
    display: none;
}

.cta {
    position: absolute;
    z-index: 10;
    text-align: center;
    height: auto;
    bottom: 3vw;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease;
    width: 21vw;
}

.cta:hover {
    opacity: 0.5;
}



@media all and (max-width:767px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .cta {
        bottom: 50px;
        width: 200px;
    }

    .app_ankers {
        position: absolute;
        top: 450px;
        z-index: 10;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
    }

    .app_ankers a {
        display: block;
        margin: 0px 0;
        width: 250px;
        margin: auto;
    }
}


@media (min-width: 320px) and (max-width: 767px) {
    .app_ankers {
        top: 139vw;
    } 
}