@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}




.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
    font-family: "poppins";
}

.popup-content {
    background: #1e1e1e;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: left;
    width: 300px;
    font-size: 2vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#popup-close {
    background: #073f80;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease all;
}

#popup-close:hover {
    background: #073f80;
}






body {
    background-color: #04101D;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.bg {
    position: absolute;
    background: url(public/images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.3;
    background-attachment: fixed;

}

.bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(#04101D00, #04101D);
    z-index: 2;
    width: 100%;
    height: 100%;
}


header {
    width: 100%;
    height: 8vh;
    background: transparent;
    z-index: 4;
}


header nav {
    width: 70%;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2vh;
    border-bottom: 0.1vh solid #ffffff60;
}


header nav .logo {
    width: 18vh;
}

header nav .logo img {
    width: 100%;
}

header nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
}

header nav .menu .btn {
    font-size: 1.8vh;
    color: #fff;
    padding: 1vh 3vh;
    background: #2F7FDB;
    border-radius: 1vh;
    transition: 0.3s ease all;
    font-weight: 500;
    font-family: "poppins";
}

header nav .menu .btn.green {
    background: #1DC064;
}

header nav .menu .btn.white {
    background: #073f80;
    color: #fff;
}

header nav .menu .btn:hover {
    opacity: 0.5;
}

.hero {
    margin-top: 6vh;
}

.hero .container {
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 6vh;
    align-items: center;
}

.hero .container h1 {
    color: #fff;
    font-size: 8vh;
    font-weight: 800;
    font-family: "chakra petch";

}

.hero .container h1 span {
    color: #2F7FDB;

}


.hero .container .btns {
    display: flex;
    gap: 2vh;
    margin-top: 4vh;
}

.hero .container .btns .btn {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 1.2vh 8vh 1.2vh 3vh;
    color: #fff;
    background: linear-gradient(45deg, #2F7FDB, #144882);
    gap: 1vh;
    border-radius: 1vh;
    overflow: hidden;
    transition: 0.3s ease all;
    font-family: "chakra petch";

}



.hero .container .btns .btn.green {
    background: linear-gradient(45deg, #1DC064, #106434);

}

.hero .container .btns .btn i {
    font-size: 3vh;
}

.hero .container .btns .btn i.apple {
    font-size: 3.6vh;
}

.hero .container .btns .btn .small {
    font-size: 1.6vh;
    transition: 0.3s ease all;
    color: #dfdfdf;
}

.hero .container .btns .btn .big {
    font-size: 3vh;
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease all;
}


.hero .container .btns .btn:hover .big {
    transform: translateY(-1.1vh);
}

.hero .container .btns .btn:hover .small {
    transform: translateY(-10vh);
    opacity: 0;
}



.hero .container .image {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-btn {
    position: absolute;
    background-color: #2F7FDB;
    font-size: 3vh;
    padding: 1vh 3vh;
    z-index: 2;
    color: #fff;
    font-family: "poppins";
    border-radius: 1vh;
    border: 0.1vh solid #ffffff40;
    animation: scale 1s infinite alternate;
    font-weight: 600;
}


.hero .container .image img {
    width: 100%;
    animation: scaleHero 2s infinite alternate;

}




.hero .container .image::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: -0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#2F7FDB, #194475);
    border-radius: 8vh;
    animation: scaleHeroReverse 2s infinite alternate;
    filter: blur(3vh);

}

.hero .container .numbers {
    display: flex;
    align-items: center;
    gap: 12vh;
    margin-top: 10vh;
}

.hero .container .numbers .item .num {
    color: #fff;
    font-size: 7vh;
    font-family: chakra petch;
    font-weight: 600;
    line-height: 8vh;
}

.hero .container .numbers .item .text {
    color: #d2d1d1;
    font-family: chakra petch;
    font-weight: 600;
    font-size: 1.8vh;

}




.how-download {
    margin-top: 10vh;
}

.how-download .container {
    width: 80%;
    position: relative;
    margin: auto;
}


.how-download .container h2 {
    color: #fff;
    font-size: 6vh;
    font-family: "chakra petch";

    font-weight: 600;
}

.how-download .container h2 span {
    font-weight: 600;
    color: #2F7FDB;
}


.how-download .container .wrapper {
    margin-top: 6vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2vh;

}

.how-download .container .wrapper .item {
    flex-basis: 50vh;
    flex-grow: 1;
    display: flex;
    background-color: #ffffff10;
    box-sizing: border-box;
    border-radius: 2vh;
    gap: 2vh;
    transition: 0.3s ease all;
    font-family: "poppins";
    border: 0.1vh solid #ffffff40;

}

.how-download .container .wrapper .item .column {
    padding: 2vh 2vh 2vh 1vh;
}

.how-download .container .wrapper .item img {
    border-radius: 2vh 0 0 2vh;
    width: 50%;
}

.how-download .container .wrapper .item:hover {
    background-color: #2F7FDB40;
    border: 0.1vh solid #2F7FDB;

}


.how-download .container .wrapper .item .madde {
    background-color: #2F7FDB;
    display: flex;
    width: 5vh;
    height: 5vh;
    align-items: center;
    justify-content: center;
    border-radius: 1vh;
    font-weight: 700;
    color: #fff;
}


.how-download .container .wrapper .item .text {
    color: #fff;
    font-size: 2vh;
    margin-top: 4vh;
}

.how-download .container .wrapper .item .text a {
    color: #fff;
}


footer {
    margin: 6vh 0;
    font-family: "poppins";
}

footer .container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer .container .left .logo {
    width: 18vh;
}

footer .container .left .logo img {
    width: 18vh;
}

footer .container .right {
    color: #fff;
}


footer .payment-icons {
    width: 80%;
    margin: auto;
    display: flex;
    gap: 2vh;
    margin-top: 4vh;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


footer .payment-icons .icon {
    width: 8vh;
    animation: scale 2s infinite alternate;
}

footer .payment-icons .icon:nth-child(even) {

    animation: scale 2s 2s infinite alternate;
}

footer p {
    color: #fff;
    font-size: 2vh;
    margin-top: 2vh;

}

i.arr-icon {
    display: none;
    animation: aniRight 2s infinite alternate;

}
















@keyframes ani1 {
    0% {
        transform: translateY(-4vh);

    }

    50% {
        transform: translateY(-5vh);

    }

    100% {
        transform: translateY(-3vh);
        scale: 1.2;

    }
}



@keyframes ani2 {
    0% {
        transform: translateY(-4vh);

    }

    50% {
        transform: translateY(-5vh);

    }

    100% {
        transform: translateY(-3vh);
        scale: 1.3;

    }
}

@keyframes rotate {
    from {
        transform: rotate(0);

    }

    to {
        transform: rotate(6deg);
        scale: 1.06;
    }
}

@keyframes aniRight {
    from {
        transform: translateX(0);

    }

    to {
        transform: translateX(2vh);

    }
}



@keyframes scaleHero {
    0% {
        transform: scale(1);

    }

    100% {
        scale: 1.04;

    }
}

@keyframes scaleHeroReverse {
    0% {
        transform: scale(0);
        transform: translateY(0);

    }

    100% {
        transform: translateY(2vh);
        filter: blur(6vh);
    }
}




@keyframes scale {
    0% {
        transform: scale(1);


    }

    100% {
        transform: scale(1.2);

    }
}



@media screen and (max-width: 1200px) {



    .hero .container {
        grid-template-columns: 1fr;

        flex-direction: column-reverse;
        display: flex;
    }



    .how-download .container .wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2vh;

    }

    .hero .container .image {
        width: 50%;
    }

}


@media screen and (max-width: 500px) {

    .hero {
        margin-top: 6vh;
    }

    .hero .container {
        width: 90%;
        grid-template-columns: 1fr;
        position: relative;
    }

    .hero .container h1 {
        font-size: 6vh;
        overflow: hidden;
    }


    .hero .container .numbers {
        gap: 5vh;
        margin-top: 6vh;
    }

    .hero .container .numbers .item .num {
        font-size: 5vh;
        line-height: 6vh;
    }

    .hero .container .numbers .item .text {
        font-size: 1.6vh;

    }



    header nav .menu .btn {
        font-size: 1.4vh;
        padding: 0.6vh 1vh;
    }

    header nav .logo {
        width: 12vh;
    }

    .hero .container .btns .btn {
        padding: 1vh 5vh 1vh 2vh;
        gap: 0.6vh;
    }


    .hero .container .btns .btn .small {
        font-size: 1.4vh;
    }

    .hero .container .btns .btn .big {
        font-size: 2vh;
    }

    .hero .container .desc {
        font-size: 1.6vh;
        gap: 1vh;
        margin-top: 4vh;
    }

    .hero .container .desc img {
        width: 9vh;
    }

    header nav {
        width: 90%;

    }






    .how-download {
        margin-top: 6vh;
    }

    .how-download .container {
        width: 90%;
    }


    .how-download .container h2 {
        font-size: 3vh;
    }

    .how-download .container .wrapper {
        display: flex;
        overflow-x: scroll;
    }

    .how-download .container .wrapper::-webkit-scrollbar {
        height: 0;
    }



    .how-download .container .wrapper .item {
        min-width: 30vh;
        padding: 2vh;
        gap: 2vh;
        transition: 0.3s ease all;
        flex-direction: column;
    }

    .how-download .container .wrapper .item img {
        border-radius: 2vh;
        width: 100%;
    }


    .how-download .container .wrapper .item .text {
        margin-top: 2vh;
    }


    footer .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 2vh;
    }

    i.arr-icon {
        display: block;
        color: #fff;
        font-size: 3vh;
        position: absolute;
        right: 0;
    }



    @keyframes scaleHero {
        0% {
            transform: scale(1);
            rotate: 0deg;

        }

        100% {
            scale: 1.04;
            rotate: 5deg;

        }
    }


}