@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');

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

:root {
    --primary-color: #4891ff;
    --light-color: #f4f4f6;
    --dark-color: #111;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.navbar {
    background-color: #fff;
    padding: 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container ul {
    display: flex;
}

.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
}

.navbar ul li a:hover {
    color: var(--primary-color);
}

.navbar ul li a i {
    margin-right: 10px;
}

.navbar ul li:last-child a {
    margin-left: 10px;
}

.links-container {
    height: 100%;
}

#sidebar-active {
    display: none;
}

.open-sidebar-button,
.close-sidebar-button {
    display: none;
}

.fa-solid {
    color: rgb(0, 0, 0);
    font-size: large;
}


.btn {
    display: inline-block;
    padding: 13px 20px;
    background: var(--light-color);
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.5s;
}

.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-dark {
    background: var(--dark-color);
    color: #fff;
}

.first-content {
    margin-bottom: 50px;
}

.first-content .container {
    background: url(images/hero-bg.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    height: 550px;
}

.text-xxl {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
}

.first-content .content {
    width: 70%;
}

.first-content-text {
    width: 70%;
    margin-bottom: 20px;
}

.first-content-buttons {
    display: flex;
    gap: 20px;
}

.second-content {
    background: #000;
    color: #fff;
    padding: 10px 0 40px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.text-xl {
    font-size: 35.2px;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-content a img {
    margin-bottom: 20px;
}

.third-content {
    padding: 40px 0;
}

.bg-dark {
    background: var(--dark-color);
    color: #fff;
}

.third-heading {
    width: 700px;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
}

.cards .card p:nth-child(2) {
    margin-top: 30px;
    font-weight: bold;
}

.text-md {
    font-size: 19.2px;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px;
}

.pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bg-light {
    background: var(--light-color);
    color: #333;
}

.bg-black {
    background: #000;
    color: #fff;
}

.card-subheading {
    margin-bottom: 30px;
}

.card-pricing {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.pricing-card-body ul {
    margin: 30px 0;
}

.pricing-card-body ul li {
    margin-bottom: 20px;
}

.pricing-card-body ul li i {
    margin-right: 10px;
}

.btn-block {
    display: block;
    width: 100%;
}

.pricing-footer {
    margin: 30px 0;
}

.faq {
    padding: 40px 0;
}

.faq .faq-group {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.faq .faq-group .faq-group-header {
    padding: 20px 0;
    margin-bottom: 15px;
    position: relative;
}

.faq .faq-group .faq-group-header h4 {
    font-weight: 600;
    width: 95%;
}

.faq .faq-group .faq-group-header i {
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 20.8px;
    cursor: pointer;
}

.faq .faq-group .faq-group-body {
    display: none;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked+.faq-group .faq-group-body {
    display: block;
}

input[type="radio"]:checked+.faq-group .faq-group-header i.fa-plus {
    display: none;
}

.faq ul.faq-menu {
    max-width: 400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.faq ul.faq-menu li {
    padding: 10px 0px;
    border-radius: 5px;
    text-align: center;
}

.menu-label {
    cursor: pointer;
    padding: 10px 19px;
    border-radius: 5px;
    text-align: center;
}

.menu-toggle:checked+label {
    background: var(--primary-color);
    color: #fff;
}

.footer {
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer .card {
    margin: 20px 30px 30px 0;
}

.footer h4 {
    margin-bottom: 10px;
}

.text-sm {
    font-size: 14.4px;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
}

.footer input[type='email'] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px 0;
}

.footer i {
    font-size: 24px;
    margin-right: 10px;
}

.footer ul li {
    line-height: 2.5;
}

.footer a {
    color: #ccc;
}

/* Media Queries */
@media (max-width: 960px) {
    .text-xxl {
        font-size: 40px;
    }
}

@media (max-width: 670px) {
    .first-content .container {
        background: url('images/hero-bg-mobile.png') no-repeat;
        background-size: 350px 400px;
        background-position: bottom;
        height: 770px;
    }

    .first-content .content,
    .first-content .first-content-text {
        width: 100%;
        text-align: center;
    }

    .first-content .first-content-buttons .btn {
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }

    .third-content .third-heading {
        max-width: 100%;
        text-align: center;
    }

    .third-content .cards,
    .pricing .pricing-grid,
    .footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer .card {
        margin-right: 0;
    }

    .footer .footer-grid>div {
        text-align: center;
    }

    .text-xl {
        font-size: 30.4px;
    }

    .text-lg {
        font-size: 24px;
    }

    .text-md {
        font-size: 17.6px;
    }
}

@media (max-width: 500px) {
    .text-xxl {
        font-size: 32px;
    }
}


@media(max-width: 670px) {

    .links-container {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        width: 250px;
        height: 100%;
        /* background-color: var(--light-color); */
        background: white;
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: 0.75s ease-in-out;
    }

    .main-menu ul {
        display: flex;
        flex-direction: column;
        padding-right: 10px;
    }

    .main-menu ul li {
        margin: 10px 0;
      }
      
      .main-menu ul li a {
        font-size: 20px;
        transition: 0.3s;
      }
      

    .open-sidebar-button {
        padding: 0px;
        display: block;
        cursor: pointer;
    }

    .close-sidebar-button {
        padding: 20px;
        display: block;
        cursor: pointer;
    }

    #sidebar-active:checked~.links-container {
        right: 0;
    }
}