@import url('https://fonts.googleapis.com/css2?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') @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap') * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
}

.f-white {
    color: #FFFFFF;
}

.para-norm {
    font-size: 14px;
}

.para-mid {
    font-size: 18px;
}

.home-logo {
    width: 130px;
}

img {
    width: 100%;
}

.baner-section {
    background-image: url(images/banner.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}

.baner-section .home-logo {
    margin-bottom: 50px;
}

.baner-bot {
    margin-top: 80px;
}

.app-section {
    background-color: #141414;
}

.app-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-section .net {
    border: 1px solid transparent;
    border-image-source: linear-gradient(180deg, rgba(221, 0, 99, 0.53) 0%, rgba(97, 12, 132, 0.47) 100%);
    border-image-slice: 1;
    padding: 30px;
}

.app-section .net img {
    width: 100px;
    height: 50px;
}

.footer-section {
    background-image: url(images/footer.png);
    background-position: center;
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
}

.footer-section p {
    font-weight: 500;
}

.foot-icon-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.foot-icon-main img {
    width: 25px;
    height: 25px;
}


@media (max-width: 992px) {
    .app-section .net {
        padding: 25px;
    }

    .app-section .net img {
        width: 85px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .app-section br {
        display: none;
    }

    .app-section .row {
        flex-direction: column;
        align-items: center;
    }

    .app-section .row p {
        margin-bottom: 20px;
        text-align: center !important;
    }
}

@media (max-width: 508px) {
    .app-section .net {
        padding: 15px;
    }

    .app-section .net img {
        width: 70px;
        height: 35px;
    }

    .para-mid {
        font-size: 16px;
    }

    .footer-section {
        height: 55vh;
    }
}