@import url("https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Poppins:wght@200;300;400;500;600&display=swap");
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

:root {
    --dark-high: #000000;
    --dark-low: #111111;
    --accent: #00C6CF;
    --accent-dark: #00719e;
    --accent-natural: #8685EF;
    --gray: #777777;
    --light: #FAF8FF;
}

body {
    background: var(--dark-high);
}

body .primary_btn {
    padding: 12px 27px;
    background: #0088cc;
    box-shadow: inset 0 0 13px rgba(0, 0, 0, 0.4666666667), 0 0 7px #0088cc;
    border-radius: 3px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

body .primary_btn:hover {
    transform: scale(1.1);
}

body .navigation-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 99px;
    background: rgba(0, 0, 0, 0.3960784314);
    box-shadow: 2px 2px 7px #000000;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

body .navigation-section .logo {
    width: 90px;
}

body .navigation-section .nav-links {
    margin: 0 0 0 5rem;
    display: flex;
    gap: 3rem;
}

body .navigation-section .nav-links button {
    border: none;
    outline: none;
    background: none;
}

body .navigation-section .nav-links button a {
    text-decoration: none;
}

body .navigation-section .nav-links button a li {
    padding: 0 1px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--light);
    position: relative;
    line-height: 100px;
    letter-spacing: 2px;
    list-style: none;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow-x: hidden;
}

body .navigation-section .nav-links button a li:hover {
    color: var(--accent-natural);
}

body .navigation-section .mobNav {
    position: absolute;
    right: 30px;
    height: 30px;
    width: 30px;
    border: none;
    outline: none;
    background: none;
    display: none;
}

body .landing_section {
    margin-top: 100px;
    width: 100%;
    min-height: 100vh;
    padding: 0 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .landing_section .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

body .landing_section .left .header {
    font-family: "Hedvig Letters Serif", serif !important;
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 7px var(--accent);
}

body .landing_section .left ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

body .landing_section .left ul li {
    font-weight: 300;
    color: var(--light);
}

body .landing_section .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

body .landing_section .right img {
    width: 70%;
}

body .features_section {
    width: 100%;
    min-height: 70vh;
    padding: 50px 170px;
    background: var(--dark-low);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

body .features_section .txt {
    text-align: center;
}

body .features_section .txt .header {
    position: relative;
    font-family: "Hedvig Letters Serif", serif !important;
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 0 7px var(--accent);
}

body .features_section .txt .header::before {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 7px var(--accent);
    position: absolute;
    top: 50%;
    left: -40%;
    transform: translateY(-50%);
}

body .features_section .txt .header::after {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 7px var(--accent);
    position: absolute;
    top: 50%;
    right: -40%;
    transform: translateY(-50%);
}

body .features_section .txt .sub_header {
    color: var(--light);
    font-size: 1.2rem;
}

body .features_section .items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

body .features_section .items .box {
    width: 300px;
    min-height: 300px;
    padding: 30px;
    background: var(--dark-high);
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4666666667);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

body .features_section .items .box img {
    width: 30%;
    padding: 15px;
    background: var(--dark-low);
    border-radius: 5px;
}

body .features_section .items .box .box_header {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-natural);
}

body .features_section .items .box .desc {
    color: var(--gray);
}

body .c_section {
    padding: 50px 170px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

body .c_section .text {
    font-family: "Hedvig Letters Serif", serif !important;
    font-size: 4rem;
    font-weight: 500;
    color: var(--accent);
}

body .review {
    width: 100%;
    padding: 50px 170px;
    background: var(--dark-low);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

body .review .txt {
    text-align: center;
}

body .review .txt .header {
    position: relative;
    font-family: "Hedvig Letters Serif", serif !important;
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 0 7px var(--accent);
}

body .review .txt .header::before {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 7px var(--accent);
    position: absolute;
    top: 50%;
    left: -25%;
    transform: translateY(-50%);
}

body .review .txt .header::after {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 7px var(--accent);
    position: absolute;
    top: 50%;
    right: -25%;
    transform: translateY(-50%);
}

body .review .txt .sub_header {
    color: var(--light);
    font-size: 1.2rem;
}

body .review .swiper {
    width: 50%;
    height: 100%;
}

body .review .swiper .swiper-slide {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .review .swiper .swiper-slide img {
    width: 330px;
    border-radius: 5px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4666666667);
}

body .final_cta {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

body .final_cta .dec {
    width: 55%;
    font-family: "Hedvig Letters Serif", serif !important;
    font-size: 3rem;
    font-weight: 500;
    color: var(--accent);
}

body .final_cta .display_box {
    display: flex;
    align-items: center;
    gap: 3rem;
}

body .final_cta .display_box .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: #181922;
    border: 2px solid var(--accent-natural);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4666666667);
    padding: 30px;
    border-radius: 7px;
}

body .final_cta .display_box .box .header {
    color: var(--accent-natural);
    font-size: 1.5rem;
}

body .final_cta .display_box .box .num {
    font-size: 3rem;
    font-weight: 600;
    color: #00C896;
}

body .final_cta .display_box .box .finish {
    color: var(--gray);
}

body .declaration {
    width: 100%;
    min-height: 10rem;
    padding: 30px 70px;
    background: var(--dark-low);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4666666667);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body .declaration img {
    width: 100px;
}

body .declaration p {
    width: 30%;
    color: #dadada;
}

body footer {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body footer p {
    color: #dadada;
    font-size: 0.8rem;
}

body footer .developer {
    display: flex;
    align-items: center;
}

body footer .developer a {
    display: flex;
    align-items: center;
    color: #dadada;
    font-weight: 500;
}

body footer .developer a box-icon {
    transform: scale(0.5);
}

body footer .developer a:hover {
    color: #0395a8;
}

body .popWindow {
    width: 100%;
    height: 100vh;
    background: linear-gradient(77deg, rgba(28, 34, 37, 0.8431372549), rgba(0, 0, 0, 0.7803921569));
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.1rem);
    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 {
    padding: 50px 30px;
    background: #222222;
    border-radius: 5px;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.8431372549);
    width: 30%;
    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: 70%;
}

body .popWindow .container .dec {
    text-align: center;
    color: #ececec;
    margin-bottom: 10px;
}

body .popWindow .container .primary_btn {
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: glow 0.5s linear infinite;
    gap: 1rem;
}

@keyframes glow {
    from {
        box-shadow: inset 0 0 7px #000000, 0 0 7px #ffffff;
    }
    to {
        box-shadow: inset 0 0 7px #000000, 0 0 17px #ffffff;
    }
}

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

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

@media all and (max-width: 999px) {
    body .navigation-section {
        width: 100%;
        padding: 0 30px;
    }
    body .navigation-section .nav-links {
        margin: 0 0 0 0;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: var(--dark-low);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: all 0.3s ease;
    }
    body .navigation-section .nav-links button a li {
        color: var(--gray);
    }
    body .navigation-section .nav-links button a li::after {
        display: none;
    }
    body .navigation-section .show-mob-nav {
        transform: translateX(0);
    }
    body .navigation-section .mobNav {
        position: absolute;
        right: 30px;
        height: 30px;
        width: 30px;
        border: none;
        outline: none;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    body .navigation-section .mobNav .navElement {
        height: 2px;
        width: 20px;
        border-radius: 50px;
        background: #d8d8d8;
        transition: all 0.3s ease;
    }
    body .navigation-section .mobNav .two {
        opacity: 1;
        visibility: visible;
    }
    body .navigation-section .mobNavCng .one {
        transform: translateY(7px) rotate(45deg);
    }
    body .navigation-section .mobNavCng .three {
        transform: translateY(-7px) rotate(-45deg);
    }
    body .navigation-section .mobNavCng .two {
        opacity: 0;
        visibility: hidden;
    }
    body .landing_section {
        padding: 30px 30px;
        flex-direction: column;
        gap: 5rem;
    }
    body .landing_section .left .header {
        font-size: 2.5rem;
    }
    body .landing_section .right {
        justify-content: center;
    }
    body .landing_section .right img {
        width: 100%;
    }
    body .features_section {
        padding: 50px 30px;
    }
    body .features_section .txt .header {
        font-size: 1.7rem;
    }
    body .features_section .txt .header::before {
        width: 20%;
        left: -30%;
    }
    body .features_section .txt .header::after {
        width: 20%;
        right: -30%;
    }
    body .features_section .txt .sub_header {
        font-size: 1.2rem;
    }
    body .c_section {
        padding: 50px 30px;
    }
    body .c_section .text {
        font-size: 2rem;
    }
    body .review {
        padding: 50px 30px;
    }
    body .review .txt {
        text-align: center;
    }
    body .review .txt .header {
        font-size: 1.7rem;
    }
    body .review .txt .header::before {
        width: 20%;
        left: -10%;
    }
    body .review .txt .header::after {
        width: 20%;
        right: -10%;
    }
    body .review .txt .sub_header {
        font-size: 1.2rem;
    }
    body .review .swiper {
        width: 100%;
    }
    body .review .swiper .swiper-slide img {
        width: 300px;
    }
    body .final_cta {
        padding: 50px 30px;
    }
    body .final_cta .dec {
        width: 100%;
        font-size: 2rem;
    }
    body .final_cta .display_box {
        flex-direction: column;
        gap: 1rem;
    }
    body .final_cta .display_box .box {
        padding: 20px 50px;
    }
    body .declaration {
        padding: 30px 30px;
        box-shadow: none;
    }
    body .declaration p {
        width: 100%;
    }
    body footer {
        padding: 10px 20px;
        flex-direction: column;
        text-align: center;
    }
    body footer p {
        color: #dadada;
        font-size: 1rem;
        font-weight: 500;
    }
    body footer .developer {
        display: flex;
        align-items: center;
    }
    body footer .developer a {
        display: flex;
        align-items: center;
        color: #dadada;
        font-weight: 500;
    }
    body footer .developer a box-icon {
        transform: scale(0.5);
    }
    body footer .developer a:hover {
        color: #0395a8;
    }
    body .popWindow .container {
        width: 90%;
    }
}

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