@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #7C3AED;
    --white: #fff;
    --black: #000;
    --main-black: #0F141E;
    --colo-a6: #A6A6A6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--white);
    background-color: var(--main-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

section {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.gradient_dark {
    background: rgb(24, 24, 27);
    background: linear-gradient(0deg, rgba(24, 24, 27, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

header {
    width: 100%;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-cotain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-3 {
    padding: 12px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-120 {
    margin-top: 120px;
}

nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin-left: 60px;
}

.nav-link {
    display: block;
    padding: 12px 48px;
    color: var(--white);
    text-decoration: none;
    transition: 300ms ease;
    -webkit-transition: 300ms ease;
    -moz-transition: 300ms ease;
    -ms-transition: 300ms ease;
    -o-transition: 300ms ease;
}


.nav-link:hover {
    opacity: .7;

}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.h-100 {
    height: 100%;
}

.app {
    display: flex;
    justify-content: center;
    align-items: center;
}

.me-3 {
    margin-right: 12px;
}


.ms-5 {
    margin-left: 20px;
}

.position-relative {
    position: relative;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.z-index {
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.d-block {
    display: block;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-white {
    color: var(--white);
}

.main-text {
    color: var(--main-color);
}

.font-size-56 {
    font-size: 56px;
    line-height: 56px;
}

.font-size-24 {
    font-size: 24px;
    line-height: 32px;
}

.text-p {
    color: var(--colo-a6);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-gap-24 {
    gap: 24px;
}

.phone-section .container .phone:nth-child(2) {
    left: 60%;
}

.phone-section .container .phone:nth-child(2) {
    left: 40%;
}

.phone-section .container .phone:nth-child(3) {
    left: 60%;
    top: 64%;
}

.opacity-0 {
    opacity: 0;
}


.card-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 32px;
}

.mt-3 {
    margin-top: 12px;
}

.card-flex .card {
    text-align: center;
    background-color: var(--black);
    padding: 24px;
    width: 100%;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

footer {
    background: var(--black);
}

footer .d-flex {
    display: flex;
    align-self: center;
    justify-content: space-between;
}

footer .app img {
    width: 160px;
}

footer .social img {
    width: 24px;
}

footer .social a {
    display: block;
    margin-left: 24px;
}

header button {
    background: unset;
    border: unset;
    outline: unset;
    height: 24px;
    display: none;
}

header button .line {
    width: 36px;
    height: 1px;
    background-color: var(--white);
}

.mobil_menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/*/////////// MOBIL RESPONSIVE ///////////*/
@media screen and (max-width:992px) {
    header button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    header .app,
    header .w-100 {
        display: none;
    }

    header .container {
        justify-content: space-between;
    }

    .phone-section .container .phone img {
        width: 360px;
    }

    .card-flex {
        flex-direction: column;
    }

    .card-flex .card {
        width: 360px;
    }


    .mobil_menu {
        display: block;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: var(--black);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: 450ms ease;
    -webkit-transition: 450ms ease;
    -moz-transition: 450ms ease;
    -ms-transition: 450ms ease;
    -o-transition: 450ms ease;
}

    .mobil_menu.active{
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}

    .app_mob img {
        width: 180px;
        display: block;
        margin: 28px auto;
    }

    .mobil_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobil_menu ul a {
        display: inline-block;
        color: var(--white);
        text-decoration: none;
        margin-top: 14px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .mobil_menu .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        height: 80%;
    }

    .mobil_menu .container .logo {
        width: 240px;
    }

    .mobil_menu .social img {
        width: 24px;
        margin-left: 7px;
        margin-right: 7px;
    }

    .disable_menu {
        position: absolute;
        right: 14px;
        top: 14px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        height: 30px;
        width: 30px;
    }

    .disable_menu .line {
        width: 32px;
        height: 1px;
        background-color: var(--white);
    }

    .disable_menu .line:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
        -webkit-transform: rotate(45deg) translate(9px, 9px);
        -moz-transform: rotate(45deg) translate(9px, 9px);
        -ms-transform: rotate(45deg) translate(9px, 9px);
        -o-transform: rotate(45deg) translate(9px, 9px);
    }

    .disable_menu .line:nth-child(2) {
        transform: rotate(-45deg) translate(-9px, 9px);
        -webkit-transform: rotate(-45deg) translate(-9px, 9px);
        -moz-transform: rotate(-45deg) translate(-9px, 9px);
        -ms-transform: rotate(-45deg) translate(-9px, 9px);
        -o-transform: rotate(-45deg) translate(-9px, 9px);
    }

}

@media screen and (max-width:560px) {

    footer .d-flex,
    .mobil_menu .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    p.w-50 {
        width: 100%;
    }

    .phone-section .container .phone img {
        width: 240px;
    }

    .font-size-56 {
        font-size: 36px;
        line-height: 36px;
    }

    .font-size-24 {
        font-size: 18px;
        line-height: 26px;
    }



}