@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");
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

body .special_btn {
    margin-top: 1rem;
    padding: 10px 10px;
    background: linear-gradient(135deg, #24A1DE, #0b5174);
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: white;
    border: none;
    outline: none;
    transform: scale(1.2);
    transition: 0.3s ease;
}

body .special_btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: none;
    color: #ffffff;
}

body .special_btn:hover {
    box-shadow: 0 0 27px solid #ffffff;
}

body .container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.7411764706)), url(../images/desktopBackground.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

body .container .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

body .container .header .logo {
    width: 160px;
    height: 160px;
    border-radius: 0.3rem;
    animation: blink 0.3s linear infinite;
}

@keyframes blink {
    0% {
        box-shadow: 0 0 7px rgba(255, 255, 255, 0.4666666667);
    }
    50% {
        box-shadow: 0 0 17px #ffffff;
    }
    100% {
        box-shadow: 0 0 7px rgba(255, 255, 255, 0.4666666667);
    }
}

body .container .header .texts {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: white;
}

body .container .header .texts .big {
    font-size: 1.3rem;
}

body .container .header .texts .dec {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #a1a1a1;
}

body .container .header .texts .dec span {
    letter-spacing: 0;
}

body .container .header .texts .small {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #dddddd;
    letter-spacing: 3px;
    position: relative;
}

body .container .header .texts .small .last {
    letter-spacing: 0;
}

body .container .header .texts .small::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #a1a1a1;
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
}

body .container .header .texts .small::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #a1a1a1;
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%);
}

body .container .features {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body .container .features .title {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1.2rem;
    color: white;
    position: relative;
}

body .container .features .title::before {
    content: "";
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    animation: zooming 0.6s linear infinite;
}

body .container .features .title::after {
    content: "";
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: calc(100% + 14px);
    transform: translateY(-50%);
    animation: zooming 0.6s linear infinite;
}

body .container .features .title span {
    letter-spacing: 0;
}

@keyframes zooming {
    from {
        transform: translateY(-50%) scale(1);
    }
    to {
        transform: translateY(-50%) scale(2);
        opacity: 0.1;
    }
}

body .container .features ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body .container .features ul li {
    color: #a1a1a1;
    list-style: none;
}

body .popWindow {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(77deg, rgba(28, 34, 37, 0.6352941176), rgba(0, 0, 0, 0.5803921569));
    -webkit-backdrop-filter: blur(0.3rem);
    backdrop-filter: blur(0.3rem);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(3);
    transition: all 0.5s ease;
    z-index: 5000;
}

body .popWindow .container {
    width: 40%;
    background: #ffffff;
    transform: scale(0);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

body .popWindow .container img {
    border-radius: 10px;
    width: 30%;
}

body .popWindow .container .name {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #1b1b1b;
}

body .popWindow .container .name span {
    letter-spacing: 0;
}

body .popWindow .container .dec {
    text-align: center;
    letter-spacing: 0.7px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 10px;
}

body .popWindow .container .dec span {
    font-weight: 500;
    color: #04a895;
}

body .popWindow .container span {
    color: #ffffff;
}

body .popWindow .container .special_btn {
    animation: blink 0.3s linear infinite;
}

@keyframes blink {
    from {
        box-shadow: none;
    }
    to {
        box-shadow: 0 0 17px #000000;
    }
}

body .show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

body .show .container {
    transform: scale(1);
}

@media all and (max-width: 999px) {
    body .special_btn {
        padding: 10px 20px;
    }
    body .container {
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.7411764706)), url(../images/mobileBackground.png);
        padding: 30px 20px;
        gap: 1rem;
    }
    body .container .header {
        gap: 1rem;
    }
    body .container .header .texts .big {
        font-size: 1.6rem;
        font-weight: 300;
    }
    body .container .features {
        display: flex;
        padding: 3ft 2in;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    body .container .features ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    body .container .features ul li {
        color: white;
        list-style: none;
        font-size: 0.87rem;
    }
    body .container .last-dec {
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 2px;
        color: #a1a1a1;
        text-align: center;
    }
    body .container .last-dec span {
        letter-spacing: 0;
    }
    body .popWindow {
        width: 100%;
        height: 100vh;
        background: linear-gradient(77deg, rgba(28, 34, 37, 0.6352941176), rgba(0, 0, 0, 0.5803921569));
        -webkit-backdrop-filter: blur(0.3rem);
        backdrop-filter: blur(0.3rem);
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: scale(3);
        transition: all 0.5s ease;
        z-index: 5000;
    }
    body .popWindow .container {
        width: 100%;
        transform: scale(0);
        transition: all 0.5s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    body .popWindow .container img {
        border-radius: 10px;
        width: 60%;
    }
    body .popWindow .container .name {
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        font-size: 1.2rem;
        letter-spacing: 3px;
        color: #000000;
    }
    body .popWindow .container .name span {
        letter-spacing: 0;
    }
    body .popWindow .container .dec {
        text-align: center;
        letter-spacing: 0.7px;
        color: #000000;
        font-weight: 300;
        margin-bottom: 10px;
    }
    body .popWindow .container .dec span {
        font-weight: 500;
        color: #04a895;
    }
    body .popWindow .container span {
        color: #000000;
    }
    body .popWindow .container .special_btn {
        transform: scale(2);
    }
    body .show {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    body .show .container {
        transform: scale(1);
    }
}

/*# sourceMappingURL=styleSheet.css.map */