:root {
    --primary: #6a5be2;
    --bg-color: #102449;
    --secondary: #011335;
    --black: #000;
    --white: #fff;
    --gray: #6c6c6c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    text-decoration: none;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

.bg-container {
    background-image: url("images/bg.png");
    background-size: cover;
    /* Adjust as needed */
    background-position: center;
    /* Adjust as needed */
    background-repeat: no-repeat;
    height: 100vh;
}

/* Navbar */

nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

nav div.navbar>ul {
    display: flex;
    align-items: center;
    list-style-type: none;
}

div.navbar ul li {
    margin: 0 10px;
}

div.navbar li.nav-item>a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
}

.menu-action {
    visibility: hidden;
}

@media screen and (max-width: 564px) {
    .menu-action {
        visibility: visible;
    }

    nav {
        display: block;
        padding: 0;
    }

    div.navbar {
        position: absolute;
        background-color: var(--black);
        width: 80%;
        height: 100%;
        left: -80%;
        transition: all 0.5s ease;
        z-index: 1;
    }

    nav div.navbar>ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style-type: none;
        width: 100%;
        height: 100%;
        margin-top: 200px;
    }

    nav div.navbar>ul>li {
        display: flex;
        margin: 20px;
    }

    .logo {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .menu-action {
        position: absolute;
        top: 30px;
        right: 20px;
    }
}

.sidebar-active {
    left: 0% !important;
}

/* Hero */
.hero-container {
    display: flex;
    padding: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.details {
    width: 50%;
    padding: 4rem 0 0 10rem;
    display: flex;
    align-items: flex-start;
}

.hero-image {
    width: 50%;
}

.details-section .hero-text {
    color: var(--white);
    margin: 10px;
}

.details-section .hero-text h1 {
    font-size: 2.3rem;
}

.details-section .hero-text h1>span {
    background: linear-gradient(116deg, #9935ed 0%, #e0a3f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-section .hero-text p {
    margin: 20px 0;
    font-size: 1.3rem;
    text-align: left;
}

.btn-group {
    display: flex;
    align-items: center;
}

.download-link {
    background-color: var(--primary);
    padding: 10px 60px;
    text-decoration: none;
    color: var(--white);
    margin: 0 30px 0 0;
    border-radius: 20px;
}

.download-link:hover {
    text-decoration: none !important;
    color: var(--white);
}

@media screen and (max-width: 1418px) {
    .details {
        /* width: 50%; */
        padding: 4rem 0 0 5rem !important;
        display: flex;
        align-items: flex-start;
    }
}

@media screen and (max-width: 1332px) {
    .details {
        /* width: 50%; */
        padding: 4rem 0 0 0rem !important;
    }

    .hero-image>img {
        width: 30rem;
    }
}

@media screen and (max-width: 1096px) {
    .details {
        /* width: 50%; */
        padding: 4rem 0 0 0rem !important;
    }

    .hero-image>img {
        width: 25rem;
    }

    .hero-container {
        padding: 1rem;
        /* flex-wrap: wrap; */
    }

    .details-section .hero-text h1 {
        font-size: 1.9rem;
    }

    .details-section .hero-text p {
        font-size: 0.8rem;
    }

    .download-link {
        font-size: 0.8rem;
    }

    .img-section img {
        width: 4rem;
    }
}

@media screen and (max-width: 848px) {
    .details-section .hero-text p {
        display: block;
    }

    .btn-group {
        flex-wrap: wrap;
    }

    .download-link {
        padding: 10px 40px;
        margin: 10px 0;
    }

    .details-section .hero-text h1 {
        font-size: 1rem;
    }

    .hero-image>img {
        width: 25rem;
    }

    .hero-image {
        display: block;
        position: absolute;
        left: 250px;
    }

    .details {
        padding-top: 1rem !important;
        display: flex;
    }
}

@media screen and (max-width: 674px) {
    .details-section .hero-text p {
        display: none;
    }

    .hero-image {
        left: 85px;
        top: 165px;
    }

    .details {
        position: absolute;
        top: 80px;
    }
}

@media screen and (max-width: 492px) {
    .hero-image {
        left: -50px;
        top: 260px;
    }

    .details-section .hero-text h1 {
        width: 15rem;
    }

    .download-link {
        margin: 10px 2px;
    }
}

@media screen and (max-width: 562px) {
    .bg-container {
        position: relative;
        top: -45px;
    }
}

/* Choose Section */

.choose-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    top: 100px;
}

.choose {
    margin: 150px 60px 0 250px;
    color: var(--white);
}

.choose>span {
    color: var(--primary);
}

.choose-section .text-container {
    margin: 0 20px;
    width: 38%;
}

.choose-section .text-container ul {
    color: var(--white);
    font-size: 1.2rem;
}

.choose-section .text-container ul li {
    margin: 10px 0;
}

@media screen and (max-width: 842px) {
    .choose-section {
        flex-wrap: wrap;
    }

    .choose-section .text-container {
        margin: 0 20px;
        width: 100%;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 692px) {
    .choose-section {
        flex-wrap: wrap;
    }

    .choose-section .text-container {
        margin: 0 20px;
        width: 100%;
        padding: 10px 20px;
    }

    .choose {
        padding: 0 10px;
    }
}

@media screen and (max-width: 548px) {
    .choose-section .image-container>img {
        width: 20rem;
    }
}

@media screen and (max-width: 868px) {
    .choose {
        margin: 150px 0 0 0;
        text-align: center;
    }
}

/* Download Section */

.download-section {
    background-color: var(--white);
    margin: 130px 0 0 0;
    display: flex;
    /* align-items: center; */
    width: 100%;
    justify-content: space-evenly;
    padding: 70px 0;
}

.download-section .data {
    margin: 20px 0 0 0;
}

.download-section .data>h1 {
    font-size: 2.4rem;
    margin: 20px 0px;
}

.download-section .data>h1>span {
    color: var(--primary);
}

.download-section .data>.steps>p {
    font-size: 1.3rem;
    margin: 20px 0px;
}

.download-section .btn-group {
    margin: 40px 0;
}

.download-section .btn-group a {
    margin: 0px 10px;
}

@media screen and (max-width: 1218px) {
    .download-section .data>h1 {
        font-size: 2rem;
    }

    .download-section .data>.steps>p {
        font-size: 1rem;
    }

    .download-section .image-section>img {
        width: 22rem;
    }
}

@media screen and (max-width: 946px) {
    .download-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .download-section .btn-group {
        justify-content: center;
    }

    .download-section .data {
        padding: 10px;
    }
}

.about-us {
    background-color: var(--white);
    padding: 10px 60px;
}

.about-us>h1 {
    font-size: 2.3rem;
}

.about-us p {
    padding: 10px 40px;
    color: var(--gray);
    font-size: 1.3rem;
    margin: 10px 0;
}

.about-us ul {
    padding: 10px 100px;
    color: var(--gray);
    font-size: 1rem;
    margin: 10px 0;
}

.about-us li {
    margin: 10px 0;
}

@media screen and (max-width: 520px) {
    .about-us p {
        padding: 10px;
    }

    .about-us ul {
        padding: 10px 40px;
        color: var(--gray);
    }

    .about-us {
        padding: 10px 30px;
    }
}

/* Testimonials */

.testimonial {
    padding: 100px 0;
    color: var(--white);
}

.testimonial .row .tabs {
    all: unset;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
}

.testimonial .row .tabs li {
    all: unset;
    display: block;
    position: relative;
}

.testimonial .row .tabs li.active::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
}

.testimonial .row .tabs li.active::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
}

.testimonial .row .tabs li:nth-child(1) {
    align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(1)::before {
    left: 64%;
    bottom: -50px;
}

.testimonial .row .tabs li:nth-child(1)::after {
    left: 97%;
    bottom: -81px;
}

.testimonial .row .tabs li:nth-child(1) figure img {
    margin-left: auto;
}

.testimonial .row .tabs li:nth-child(2) {
    align-self: flex-start;
}

.testimonial .row .tabs li:nth-child(2)::before {
    right: -65px;
    top: 50%;
}

.testimonial .row .tabs li:nth-child(2)::after {
    bottom: 101px;
    border-radius: 50%;
    right: -120px;
}

.testimonial .row .tabs li:nth-child(2) figure img {
    margin-right: auto;
    max-width: 300px;
    width: 100%;
    margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3) {
    align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(3)::before {
    right: -10px;
    top: -66%;
}

.testimonial .row .tabs li:nth-child(3)::after {
    top: -130px;
    border-radius: 50%;
    right: -46px;
}

.testimonial .row .tabs li:nth-child(3) figure img {
    margin-left: auto;
    margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3):focus {
    border: 10px solid red;
}

.testimonial .row .tabs li figure {
    position: relative;
}

.testimonial .row .tabs li figure img {
    display: block;
}

.testimonial .row .tabs li figure::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 4px solid #dff9d9;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.testimonial .row .tabs li figure:hover::after {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.testimonial .row .tabs.carousel-indicators li.active figure::after {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.testimonial .row .carousel>h3 {
    font-size: 20px;
    line-height: 1.45;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial .row .carousel h1 {
    font-size: 40px;
    line-height: 1.225;
    margin-top: 23px;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial .row .carousel .carousel-indicators {
    all: unset;
    padding-top: 43px;
    display: flex;
    list-style: none;
}

.testimonial .row .carousel .carousel-indicators li {
    background: var(--white);
    background-clip: padding-box;
    height: 2px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
    margin-top: 42px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
    font-size: 18px;
    line-height: 1.72222;
    font-weight: 500;
    color: var(--white);
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
    color: var(--white);
    font-weight: 700;
    margin-top: 37px;
    font-size: 20px;
    line-height: 1.45;
    text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
    .testimonial .row .tabs {
        margin-right: 25px;
    }
}

footer {
    background-color: var(--secondary);
    padding: 2rem;
    width: 100%;
}

footer>.image {
    padding: 10px;
    display: flex;
}

footer>.image>h1 {
    margin: 0 10px;
    background: linear-gradient(116deg, #9935ed 0%, #e0a3f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-top {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.footer-top>a {
    margin: 0 10px;
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    flex-wrap: wrap;
}

footer .btn-group {
    justify-content: center;
}

.footer-bottom>.btn-group>a {
    margin: 10px 10px;
}

.footer-links>a {
    text-decoration: none;
    color: var(--white);
    margin: 0 10px;
    font-size: 18px;
}

@media screen and (max-width: 592px) {
    .footer-bottom {
        justify-content: center;
    }

    .footer-top {
        flex-wrap: wrap;
    }
}