:root {
    --color-primray: #fa0467;
    --color-secondary: #646cfd;
    --bs-font-sans-serif: 'Inter', sans-serif;
    --bs-btn-bg: #fa0467;
    --bs-primary-text-emphasis: #fa0467;
    --bs-body-color: #212529;
    --bs-primary: #fa0467;
    --bs-primary-rgb: 250, 4, 103;
    --bs-link-color-rgb: 250, 4, 103;
    --bs-link-hover-color-rgb: 250, 4, 100;
    --bs-border-color: #3a3a3a;
    --bs-border-width: 1px;
    --bs-border-type: solid;
}

body {
    background-color: black;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-secondary {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

#hero {
    height: 100vh;
    background: url('../img/bg.svg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


#features .container {
    background-color: white;
    height: 100%;
}

#video .container {
    background-color: white;
    height: 100%;
}

#app .container {
    background: url('../img/bg.svg') no-repeat center center;
    background-size: cover;
}

#contact .container {
    background: url('../img/bg-light.svg') no-repeat center center #fff;
    background-size: cover;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Archivo', sans-serif;
}

.btn-white,
.btn-white:link,
.btn-white:hover,
.btn-white:visited {
    background-color: white;
    width: 160px;
    height: 50px;
}


.sentences h1 {
    opacity: 0;
    animation: fade-in-out 6s infinite ease-in-out;
    color: var(--color-secondary);
    position: absolute;
    width: 100%;

}

.sentences {
    position: relative;
    height: 50px;
}

.sentences h1:nth-child(1) {
    animation-delay: 0s;
}

.sentences h1:nth-child(2) {
    animation-delay: 2s;
}

.sentences h1:nth-child(3) {
    animation-delay: 4s;
}

@keyframes fade-in-out {

    0%,
    20% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 0;
    }
}


@media (max-width: 768px) {
    #hero .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    #hero img {
        max-width: 80%;
        margin: 0 auto;
    }

    #hero {
        height: 100%;
        padding-top: 80px;
        padding-bottom: 40px;
    }
}


#hero-content {
    position: relative;
    z-index: 1;
}

.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease-in-out;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

#demo .container {
    height: 100%;
    background-color: #1a1a1a;
    color: white;
}


.gallery img {

    flex-shrink: 0;
}

.gallery-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3b3b3b transparent;
}


.gallery {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.scroll-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.scroll-buttons i {
    cursor: pointer;
    transition: 0.2s;
}

.scroll-buttons i:hover {
    color: #fa0467;
}

#download .container {
    height: 100%;
    background-color: #f1f1f1;

}

#footer .container {
    background: url('../img/bg.svg') no-repeat center center;
    background-size: cover;
    padding: 0 10%;
}

#footer .container .card {
    width: 100%;
}

.copyright,
.copyright a {
    color: #6d758f;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

.gray {
    color: #e1e1e1;
}

#testimonials .container {
    height: 100%;
    background-color: #fff;

}

.testimonial-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    gap: 15px;
    scrollbar-color: #ccc transparent;
    scrollbar-width: thin;
}


.testimonial-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.testimonial-container .card {
    width: 200px;
    border: none;
}

.navbar-mobile-white {
    background-color: #343a40;
}

.paragraph {
    width: 50%;
}

@media (max-width: 768px) {
    .navbar-mobile-white {
        background-color: white !important;
    }

    .navbar-mobile-white a {
        color: #000;
    }

    .paragraph {
        width: 100% !important;
    }
}


.form-control {
    border: 1px solid #ccc;
}

.circled-word {
    display: inline-block;
    background-image: url("../img/circle.svg");
    background-size: cover;
    background-position: center;
    padding: 13px 20px;
}

.underlined {
    background-image: url("../img/underline.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 5px;
}


