@font-face {
    font-family: Kaushan;
    src: url(media/fonts/KaushanScript-Regular.ttf);
}

@font-face {
    font-family: PoppinsBlack;
    src: url(media/fonts/Poppins-Black.ttf);
}

@font-face {
    font-family: PoppinsBold;
    src: url(media/fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: PoppinsMedium;
    src: url(media/fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: PoppinsRegular;
    src: url(media/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: PoppinsLight;
    src: url(media/fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: PoppinsThin;
    src: url(media/fonts/Poppins-Thin.ttf);
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 50px;
}

a {
    text-decoration: none;
}

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

body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    font-family: PoppinsRegular;
}

header {
    position: fixed;
    width: 100%;
    padding: 12px 50px;
    z-index: 8;
    box-sizing: border-box;
    background: #000000b0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {}

.social {
    display: flex;
    gap: 20px;
}

.social > a.social-link {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    font-size: 0px;
    display: block;
    background-position: 50%;
    transition: all .3s ease-in-out;
}

a.social-link:hover {
    opacity: 0.6;
}

.-instagram {
    background-image: url('media/images/icon_instagram.png');
}

.-facebook {
    background-image: url('media/images/icon_facebook.png');
}

.-discord {
    background-image: url('media/images/icon_discord.png');
    background-size: 34px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-family: PoppinsRegular;
    color: #fff;
    font-size: 15px;
}

.navbar .logo {
    font-family: Kaushan;
    font-size: 32px;
    line-height: 1;
}

.home-screen {
    height: 100vh;
    background: no-repeat url("media/images/header-background.png");
    background-size: cover;
    background-position: center;
}

.home-screen {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}

.home-screen > div {
    z-index: 2;
}

.home-screen:before {
    content: '""';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 1;
}

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

.slogan-title {
    font-size: 64px;
    font-family: Kaushan;
    color: #fff;
    margin: 10px 0;
}

.slogan-sub-title {
    font-family: PoppinsRegular;
    font-weight: 100;
    color: #fff;
    font-size: 20px;
    margin: 10px 0;
}

.slogan-description {
    font-family: PoppinsRegular;
    font-weight: 100;
    color: #fff;
    font-size: 14px;
    margin: 10px 0;
}

.download-buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 35px 0 85px;
}

.download-buttons a {
    margin: 0 30px;
}

.download-mobile {
    display: none;
}

.download-desktop {
    display: block;
    width: 240px;
    height: 240px;
    margin: 0 auto;
}

.download-title {
    font-family: PoppinsRegular;
    font-weight: 100;
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
}

.testimonials-section {
    padding: 85px 50px 0;
    margin-top: -55px;
    margin-bottom: 55px;
}

.testimonials-section .title {
    margin: 0 10px;
}

.testimonials-section .sub-title {
    text-align: center;
    font-family: PoppinsRegular;
    font-size: 16px;
    margin: 5px 0 25px;
    color: #7B7B7B;
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    min-height: 200px;
    width: 450px;
    box-shadow: 2px 2px 8px #ccc;
    border-radius: 10px;
    flex: 1;
    max-width: calc(50% - 30px);
}

.testimonial-header {
    display: flex;
}

.testimonial-header img {
    width: 52px;
    height: 52px;
}

.testimoial-stars {
    display: flex;
}

.testimonial-star {
    width: 21px;
    height: 20px;
    margin-right: 8px;
    display: block;
    background-size: 100% 100%;
    background-image: url("media/images/icon_star.png");
    background-repeat: no-repeat;
}

.testimonial-name {
    font-size: 16px;
    font-family: PoppinsRegular;
    margin: 5px 0;
}

.testimonial-date {
    font-size: 12px;
    font-family: PoppinsRegular;
    margin: 5px 0;
    color: #7B7B7B;
}

.testimonial-header {
    padding: 20px 20px 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EBEBEB;
}

.testimonial-profile {
    display: flex;
}

.testimonial-profile > div:first-child {
    margin-right: 15px;
}

.testimonial-profile p {
    max-width: 160px;
    padding-right: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.testimonial-text {
    padding: 15px 20px 10px 20px;
}

.testimonial-text p {
    font-size: 14px;
    margin: 0;
    font-family: PoppinsRegular;
}

.about-section {
    padding: 70px 50px 0;
    margin-top: -55px;
    margin-bottom: 55px;
}

.title {
    margin: 0;
    font-size: 24px;
    text-align: center;
    font-weight: 400;
}

.about-section p {
    font-family: PoppinsRegular;
    font-size: 16px;
    color: #7B7B7B;
}

.about-content {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.title {
    margin-bottom: 20px;
}

.pricing-section {
    padding: 70px 0 0;
    margin-top: -55px;
    margin-bottom: 55px;
}

.pricing-plans {
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: center;
}

.pricing-item {
    width: 333px;
    background: #fff;
    padding: 60px 0;
    border-radius: 20px;
}

.pricing-item.-golden {
    border: 1px solid #E0A750;
    padding: 70px 0 150px;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 10px;
}

.pricing-item.-golden .pricing-header h3 {
    color: #E0A750;
}

.pricing-header h3 {
    font-family: PoppinsRegular;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.pricing-item.-golden .pricing-header p {
    color: #E0A750;
}

.pricing-header p {
    font-family: PoppinsRegular;
    font-size: 16px;
    margin: 0;
}

.pricing-description ul {
    list-style: none;
    padding: 30px 20px 0;
    margin: 0;
}

.pricing-description li {
    font-family: PoppinsRegular;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.pricing-item.-golden .pricing-description li:before {
    background-color: #E0A750;
}

.pricing-description li:before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    background-color: #7B7B7B;
    margin: 15px 15px 15px 0;
}

.content-background {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 3%, rgba(190,148,210,1) 87%);
    position: relative;
    z-index: 1;
}

.content-background:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('media/images/footer-background.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 100%;
    z-index: 2;
}

.content-background > * {
    z-index: 3;
    position: relative;
}

.faq-section {
    padding: 70px 120px 0;
    margin-top: -55px;
    margin-bottom: 55px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

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

.faq-container ul li {
    margin: 0;
    cursor: pointer;
}

.accordion-panel {
    position: relative;
}

.accordion-panel.active {
    background-color: #EBEBEB;
}

.accordion-panel:before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    box-sizing: border-box;
    position: absolute;
    right: 50px;
    top: 25px;
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
}

.accordion-panel p {
    font-family: PoppinsRegular;
    color: #1F1F1F;
    transition: all .3s ease-in-out;
}

.accordion-panel p:hover {
    background-color: #ebebeb80;
}

.accordion-panel > p {
    font-size: 20px;
    padding: 20px 60px;
    margin: 0;
    line-height: 1;
}

.accordion-description {
    transition: height .3s ease-in-out;
}

.accordion-description > p {
    font-size: 16px;
    padding: 0 60px 20px;
    pointer-events: none;
    margin: 0;
    color: #7B7B7B;
    background-color: #EBEBEB;
}

.accordion-panel .accordion-description {
    transition: all 1s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.accordion-panel.active .accordion-description {
    transition: all 1s ease;
    max-height: 300px;
    opacity: 1;
}

.accordion-panel.active:before {
    transform: rotate(135deg);
}

.text {
    padding: 4vh 8vw;
}

.text h2 {
    display: inline;
    font-size: 16px;
}

p {
    font-family: PoppinsRegular;
    padding: 8px 0;
}

.text ol li p {
    display: inline;
}

.text ol {
    counter-reset: item;
}

.text li {
    display: block;
    padding: 8px 0;
}

.text li:before {
    font-family: PoppinsRegular;
    content: counters(item, ".") ".";
    counter-increment: item;
    display: inline-block;
    padding-right: 8px;
}

.text li ul li:before {
    display: none;
}

.text li ul li,
.text li ul li p {
    padding: 0;
}

footer {
    background-color: #2B1B39;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

footer .heading {
    font-family: Kaushan;
    font-size: 32px;
    color: #fff;
    font-weight: 100;
    padding-bottom: 12px;
}

footer nav a {
    font-size: 16px;
    color: #fff;
    font-family: PoppinsRegular;
    padding: 0 12px;
}

footer nav a:hover {
    text-decoration: underline;
}

.copyright {
    display: flex;
    gap: 20px;
}

.copyright > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.copyright a,
.copyright p {
    font-family: PoppinsRegular;
    font-size: 14px;
    color: #fff;
}

.copyright a {
    text-decoration: underline;
}

.email {
    padding-left: 25px;
    background-image: url("media/images/icon_email.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 1px 1px;
}

@media only screen and (max-width: 1240px) {
    .home-screen {
        padding: 0 10px;
    }

    .content-background {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 1200px) {
    .pricing-plans {
        gap: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .download-mobile {
        display: block;
        height: 56px;
    }

    .download-desktop,
    .download-title {
        display: none;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .faq-section {
        padding: 80px 0 20px;
    }
}

@media only screen and (max-width: 950px) {
    header {
        padding: 15px 10px;
    }

    .pricing-item.-golden {
        padding: 30px 0;
    }

    .pricing-item {
        padding: 30px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 950px) {
    .pricing-plans {
        gap: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0 0 0;
        margin: auto;
    }

    .about-section {
        padding: 30px 0 0 0;
        margin: auto;
    }

    .pricing-section {
        padding: 30px 0 0 0;
        margin: auto;
    }

    .faq-section {
        padding: 30px 0 10px 0;
        margin: auto;
    }

    .navigation,
    .logo {
        display: none;
    }

    .title {
        margin-bottom: 15px;
    }

    .navbar {
        justify-content: center;
    }

    .pricing-plans {
        flex-direction: column;
    }

    .pricing-item.-first {
        order: 1;
    }

    .pricing-item.-second {
        order: 2;
    }

    .pricing-item.-third {
        order: 3;
    }

    .pricing-item {
        width: 75%;
    }

    .copyright a,
    .copyright p {
        padding: 0;
    }

    .copyright .email {
        padding-left: 25px;
    }

    .copyright {
        flex-direction: column;
        align-self: normal;
        gap: 20px;
    }

    .accordion-panel > p {
        padding: 20px 60px 20px 60px;
    }
}

@media only screen and (max-width: 640px) {
    .accordion-panel > p {
        padding: 10px 50px 10px 20px;
        font-size: 16px;
        line-height: 1.2;
    }

    .accordion-description > p {
        padding: 5px 10px 10px 20px;
    }

    .accordion-panel:before {
        right: 25px;
        top: 20px;
    }

    .pricing-item {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .testimonial-header {
        gap: 20px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .download-buttons {
        flex-wrap: wrap;
        gap: 20px;
    }

    .download-buttons .apple,
    .download-buttons .apple img,
    .download-buttons .google,
    .download-buttons .google img {
        width: 168px;
        object-fit: contain;
        zoom: 1.1;
    }
}