html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    padding-top: 120px;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(18, 18, 18, 0.8);
    border-bottom: 1px solid #626571;
    z-index: 1000;
}

.topnav-logo {
    width: 112px;
}

.btn {
    padding: 10px 28px;
    border: 2px solid #fff;
    outline: 0;
    border-radius: 24px;
    color: #fff;
    background-color: #121212;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background-color: #fff;
    color: #121212;
}

.btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -12px;
    transition: 0.5s;
}

.btn:hover span {
    padding-right: 16px;
}

.btn:hover span:after {
    opacity: 1;
    right: 0;
}

.footer {
    width: 100%;
    background-color: #fff;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #121212;
}

.footer-col-1 {
    flex: 1;
    min-width: 200px;
    margin: 10px 0 0 0;
}

.footer-col-2, .footer-col-3 {
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}

.footer-logo {
    width: 220px;
    margin: 0 auto;
}

.footer-col-2 a {
    color: #121212;
    padding: 10px;
    display: inline-block;
}

.footer-col-2 a:hover {
    font-weight: 700;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-col-1, .footer-col-2, .footer-col-3 {
        width: 100%;
    }

    .footer-col-2 a {
        display: block;
    }
}

.main-container {
    height: 552px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    background-image: url('images/main-background.png');
    background-position: center;
    background-repeat: no-repeat;
}

.main-text {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 480px) {
    .main-text {
        padding: 0 4px 0 4px;
        font-size: 2.2em;
        margin-bottom: 28px;
    }
}

.animated-path-container {
    line-height: 0.3;
}

@media (max-width: 480px) {
    .animated-path-container {
        line-height: 0.4;
    }
}

.animated-path {
    animation: draw 1.2s linear forwards;
}

@keyframes draw {
    from {
        stroke-dashoffset: 400;
    }
    to {
        stroke-dashoffset: 0;
    }
}

svg {
    height: 8px;
    width: auto;
}

@media (max-width: 480px) {
    svg {
        height: 7.6px;
    }
}

.main-button {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

@media (max-width: 480px) {
    .main-button {
        flex-direction: column;
        gap: 18px;
    }
}

.btn-contact {
    padding: 12px 20px;
    border-radius: 8px;
    color: #121212;
    background-color: #d9d9d9;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.btn-contact img {
    transition: transform .2s ease-in-out;
}

.btn-contact:hover img {
    transform: rotate(-45deg);
}

.btn-plans {
    padding: 12px 28px;
    border: 1px solid #fff;
    outline: 0;
    border-radius: 8px;
    color: #fff;
    background-color: transparent;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

@media (max-width: 480px) {
    .btn-contact {
        padding: 14px 36px;
    }

    .btn-plans {
        padding: 14px 48px;
    }
}

.btn-plans img {
    transition: transform .2s ease-in-out;
}

.btn-plans:hover img {
    transform: rotate(45deg);
}

.about-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.about-us {
    color: #fff;
    width: 50%;
    padding: 0 132px 40px 132px;
}

.about-us h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 44px;
}

.about-us p {
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 28px;
}

.about-img {
    color: #fff;
    width: 50%;
    text-align: center;
    padding: 24px 0;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .about-us, .about-img {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .about-us, .about-img {
        padding: 20px;
    }

    .about-us h1 {
        font-size: 2em;
        text-align: center;
        margin-bottom: 1.4em;
    }

    .about-us p {
        font-size: 1.4em;
    }
}

.pricing-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 68px 40px;
    margin-bottom: 112px;
}

@media (max-width: 480px) {
    .pricing-container {
        padding: 68px 16px;
        margin-bottom: 80px;
    }
}

.pricing-title h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.pricing-plans {
    width: 100%;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.pricing-card-1 {
    max-width: 388px;
    height: 888px;
    display: flex;
    flex-direction: column;
    padding: 48px 32px 80px 32px;
    border: 1px solid #fff;
    outline: 0;
    border-radius: 20px;
    color: #1D1E22;
    background-color: #fff;
}

.pricing-card-2 {
    max-width: 388px;
    height: 888px;
    display: flex;
    flex-direction: column;
    padding: 48px 32px 80px 32px;
    border: 1px solid #fff;
    outline: 0;
    border-radius: 20px;
    color: #fff;
    background-color: #121212;
}

@media (max-width: 480px) {
    .pricing-card-1, .pricing-card-2 {
        padding: 48px 20px 36px 20px;
    }
}

.ribbon {
    margin-bottom: 44px;
}

.ribbon-1 {
    padding: 10px 16px;
    border: 1px solid #1D1E22;
    color: #1D1E22;
    outline: 0;
    border-radius: 28px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: text;
    text-align: center;
}

.ribbon-2 {
    padding: 10px 16px;
    border: 1px solid #fff;
    color: #fff;
    outline: 0;
    border-radius: 28px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: text;
    text-align: center;
}

.plan-description-1, .plan-description-2 {
    margin-bottom: 36px;
}

.plan-description-1 h1, .plan-description-2 h1 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.plan-description-1 p {
    font-size: 16px;
    color: #626571;
    font-weight: 400;
    padding-right: 12px;
}

.plan-description-2 p {
    font-size: 16px;
    color: #C5C6CD;
    font-weight: 400;
    padding-right: 12px;
}

@media (max-width: 480px) {
    .plan-description-1 p, .plan-description-2 p {
        font-size: 0.97em;
        padding-right: 0;
    }
}

.price {
    font-size: 38px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 36px;
}

.blur-price {
    position: relative;
}

/* Blur the real price */
.actual-price {
    filter: blur(6px);
    opacity: 0.7;
}

.month {
    font-size: 16px;
    font-weight: 500;
}

.whats-included {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 36px;
}

.list-1, .list-2 {
    list-style: none;
}
  
.list-1 li, .list-2 li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}
  
.list-1 li::before {
    content: url("images/check-circle-dark.svg");
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 14px;
}

.list-2 li::before {
    content: url("images/check-circle-light.svg");
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 14px;
}

li:last-child {
	margin-bottom: 0;
}

.benefits {
    margin-bottom: 48px;
}

@media (max-width: 1360px) {
    .pricing-plans {
        flex-wrap: wrap;
    }
    .pricing-card-1, .pricing-card-2 {
        width: 50%;
    }
}

@media (max-width: 1000px) {
    .pricing-plans {
        flex-wrap: wrap;
    }
    .pricing-card-1, .pricing-card-2 {
        width: 100%;
    }
}

.pricing-CTA {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-btn-1 {
    width: 272px;
    height: 60px;
    border-radius: 10px;
    color: #fff;
    background-color: #000;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .5s;
}

.pricing-btn-2 {
    width: 272px;
    height: 60px;
    border-radius: 10px;
    color: #121212;
    background-color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .5s;
}

.pricing-btn-1:hover {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    transition: all .5s;
}

.pricing-btn-2:hover {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    transition: all .5s;
}

.faq-container {
    width: 100%;
    margin-bottom: 112px;
}

.faq {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.faq h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.faq h2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 72px;
}

@media (max-width: 480px) {
    .faq h2 {
        font-size: 1.4em;
        margin: 20px 0 40px 0;
    }
}

.collapsible {
    background-color: transparent;
    width: 80%;
    max-width: 900px;
    padding: 28px 0 12px 0;
    text-align: left;
    color: white;
    font-size: 19px;
    font-weight: 600;
    border: none;
    border-top: #fff 1px solid;
    cursor: pointer;
}

.collapsible:after {
    content: url("images/faq-down.svg");
    color: white;
    font-weight: bold;
    float: right;
}
  
.active:after {
    content: url("images/faq-up.svg");
}
  
.content {
    max-height: 0;
    width: 80%;
    max-width: 900px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 32px;
    padding-right: 20px;
}

@media (max-width: 560px) {
    .collapsible, .content {
        width: 90%;
    }
}

.legal-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 0 300px 0 300px;
    margin-bottom: 112px;
}

@media (max-width: 1200px) {
    .legal-container {
        padding: 0 200px 0 200px;
    }
}

@media (max-width: 960px) {
    .legal-container {
        padding: 0 100px 0 100px;
    }
}

@media (max-width: 560px) {
    .legal-container {
        padding: 0 32px 0 32px;
    }
}

.terms-container, .privacy-container {
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.terms-container h1, .privacy-container h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 150%;
    margin: 68px 0 48px 0;
}

@media (max-width: 420px) {
    .terms-container h1, .privacy-container h1 {
        font-size: 32px;
        margin-bottom: 28px;
    }
}

.terms-container p, .privacy-container p {
    font-size: 16px;
    font-weight: 100;
    line-height: 120%;
    margin-bottom: 8px;
}

.terms-container h2, .privacy-container h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 280%;
}

@media (max-width: 420px) {
 .terms-container h2, .privacy-container h2 {
        font-size: 20px;
        line-height: 100%;
        margin: 24px 0 24px 0;
    }
}

.l-list {
    list-style: none;
    margin-bottom: 12px;
    line-height: 140%;
}
  
.l-list li::before {
    content: "➜ ";
}