@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
 :root {
    --white: #943d24;
    --black: #fffbd0;
    /* --black: #F79743; */
    --bg-color: #021B3C;
    --light-white: #999;
    --box-shadow: 0 .2rem .6rem #2d2d2d;
    --border: .1rem solid rgba(255, 255, 225, .1);
    --gradient: #F79743;
    ;
}


/* colours misture */


/* #e4ddf4 #943d24 #fffbd0 #2d2d2d #e1eedd text:#021B3C */

* {
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    margin: 0%;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    outline: none;
    border: none;
}

*::selection {
    background: var(--white);
    color: var(--black);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
    overflow-x: hidden;
}

 ::-webkit-scrollbar {
    width: .5rem;
}

 ::-webkit-scrollbar-thumb {
    background: var(--white);
}

 ::-webkit-scrollbar-track {
    background-color: transparent;
}

body {
    background: var(--black);
    padding-bottom: 8rem;
}

section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    cursor: pointer;
    padding: 1rem 3rem;
    font-size: 1.8rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 5rem;
    transition: .2s linear;
}

.btn:hover {
    border: 2px solid var(--white);
    background: #03224A;
    color: var(--black);
}


/* OshapraPay effect */

.OshapraPay-flash {
    position: relative;
    display: inline-block;
    font-weight: 900;
    color: #F79743;
    background: linear-gradient(90deg, #F79743 60%, #fffbd0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
}

.OshapraPay-flash::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: flash-move 2.2s infinite;
    pointer-events: none;
}

@keyframes flash-move {
    0% {
        left: -75%;
    }
    60% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}


/* OshapraPay effect end */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--navy, #03224A);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.transparent {
    background: rgba(3, 34, 74, 0.5);
    box-shadow: none;
}

.header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
}

.logo {
    font-weight: bold;
    font-size: 2.4rem;
    color: var(--orange, #F79743);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-nav {
    display: flex;
    gap: 1.2rem;
}

.header-nav .btnn {
    border: 1.5px solid var(--orange, #F79743);
    color: #F79743;
    border-radius: 5px;
    width: auto;
    align-items: center;
    padding: 0.5rem 1.2rem;
    font-weight: 450;
    transition: background 0.2s;
}

.header-nav .btnn a {
    text-decoration: none;
    color: #F79743;
    font-size: large;
    font: 1em sans-serif;
}

.header-nav .btnn:hover {
    background-color: #F79743;
    color: var(--navy, #03224A);
    font-weight: 450;
}

.header-nav .btn {
    background: var(--orange, #F79743);
    color: var(--navy, #03224A);
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    transition: background 0.2s;
}

.header-nav .btn:hover {
    background: var(--navy, #03224A);
    color: var(--orange, #F79743);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--orange, #F79743);
    border-radius: 2px;
    display: block;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy, #03224A);
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 1.5rem 0;
    box-shadow: 0 4px 24px rgba(3, 34, 74, 0.10);
}

.mobile-menu.open {
    display: flex;
}

@media (max-width: 800px) {
    .header-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

.navbar {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.navbar .nav {
    padding: 1rem;
    background-color: var(--bg-color);
    border: var(--border);
    box-shadow: var(--box-shadow);
    display: flex;
    align-content: center;
    text-align: center;
    justify-content: space-around;
    gap: 1rem;
    border-radius: .5rem;
}

.navbar .nav a.active,
.navbar .nav a:hover {
    background: #F79743;
    color: var(--black);
}

.navbar .nav a {
    font-size: 1.7rem;
    padding: 1rem 2rem;
    border-radius: .5rem;
    transition: .2s linear;
    color: #F79743;
}

.navbar .nav a:hover {
    background: #F79743;
    color: var(--black);
}

.navbar .nav a i {
    display: none;
}

.home {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px;
    background: url(../images/barcodep.png) no-repeat;
    background-size: cover;
}

.profile_avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F79743 60%, #03224A 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px #03224A22;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.profile_avatar:hover {
    box-shadow: 0 4px 16px #F7974340;
}

@media (max-width: 900px) {
    .profile_avatar {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        margin-left: 0.7rem;
        margin-right: 0.2rem;
    }
}

.home .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background-image: url(../images/home-bg.jpg);
}

.home .flex .image {
    flex: 1 1 30rem;
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

@media (max-width: 720px) {
    .home .flex {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
        background-position: center top;
    }
    /* Make the image block full width */
    .home .flex .image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        order: -1;
        /* put image above textual content; remove/change if you want opposite */
    }
}

@media (max-width: 480px) {
    .home .flex {
        background-image: url(./images/barcodep.png);
        margin-top: 40px;
    }
    .home .flex .image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        order: -1;
        /* put image above textual content; remove/change if you want opposite */
    }
}


/* .home .flex .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5rem;
    height: 30rem;
    width: 5rem;
    background: var(--gradient);
    animation: animate1 4s cubic-bezier(.29, 1, .26, 1.12) infinite;
}

.home .flex .image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5rem;
    height: 30rem;
    width: 5rem;
    background: var(--gradient);
    animation: animate2 4s cubic-bezier(.29, 1, .26, 1.12) infinite;
} */

@keyframes animate1 {
    0%,
    100% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(100%);
    }
}

@keyframes animate2 {
    0%,
    100% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-100%);
    }
}

.home .flex .image img {
    width: 100%;
}

.home .flex .content {
    flex: 1 1 50rem;
    margin-top: 50px;
}

.home .flex .content h3 {
    font-size: 4rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.home .flex .content p {
    line-height: 1.8;
    padding: 1rem 0;
    font-size: 1.6rem;
    color: var(--light-white);
}


/* welcome section   */

/* Welcome section responsive styles */
.welcome {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.welcome-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/header.png') center center/cover no-repeat;
    z-index: 1;
    filter: brightness(0.7);
}

.welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 1rem;
}

.welcome-texts h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.welcome-texts p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .welcome {
        min-height: 350px;
        padding: 1.5rem 0.8rem;
    }

    .welcome-bg {
        background-position: center top;
        background-size: cover;
    }

    .welcome-texts h1 {
        font-size: 2rem;
    }

    .welcome-texts p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .welcome {
        min-height: 300px;
        padding: 1rem 0.5rem;
    }

    .welcome-texts h1 {
        font-size: 1.75rem;
    }

    .welcome-texts p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .welcome-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Ensure content stays visible on very small screens */
@media screen and (max-height: 500px) {
    .welcome {
        min-height: 280px;
    }
}

/*.welcome {*/
/*    position: relative;*/
/*    width: 150vw;*/
/*    min-height: 70vh;*/
/*    margin-bottom: 20px;*/
/*    border-radius: 7px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    overflow: hidden;*/
/*}*/

/*.welcome-bg {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('../images/header.png') center center/cover no-repeat;*/
/*    z-index: 1;*/
/*    filter: brightness(0.7);*/
/*}*/

/*.welcome-content {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    width: 100%;*/
/*    padding: 5rem 2rem 3rem 2rem;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.welcome-texts {*/
/*    margin-bottom: 3.5rem;*/
/*    font-size: 2.5rem;*/
/*    width: 100%;*/
/*}*/

/*.fade-in {*/
/*    opacity: 0;*/
/*    animation: fadeInUp 1s forwards;*/
/*}*/

/*.fade-in:nth-child(2) {*/
/*    animation-delay: 0.5s;*/
/*}*/

/*@keyframes fadeInUp {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(40px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*.animated-btn-container {*/
/*    width: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    position: static;*/
/*}*/

/*.animated-btn {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 1.2rem;*/
/*    background: linear-gradient(90deg, #F79743 60%, #03224A 100%);*/
/*    color: #fff;*/
/*    border: none;*/
/*    border-radius: 2.5rem;*/
/*    padding: 1.1rem 2.5rem;*/
/*    font-size: 1.3rem;*/
/*    font-weight: 700;*/
/*    box-shadow: 0 2px 12px #03224A22;*/
/*    cursor: pointer;*/
/*    transition: background 0.2s;*/
/*    outline: none;*/
/*    min-width: 320px;*/
/*    justify-content: space-between;*/
/*}*/

/*.animated-btn:hover {*/
/*    background: #03224A;*/
/*    color: #F79743;*/
/*}*/

/*#animatedText {*/
/*    font-weight: 900;*/
/*    font-size: 1.3em;*/
/*    letter-spacing: 1px;*/
/*    animation: textFade 0.7s;*/
/*}*/

/*@keyframes textFade {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(20px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*.get-started {*/
/*    background: #fff;*/
/*    color: #F79743;*/
/*    border-radius: 2rem;*/
/*    padding: 0.5rem 1.5rem;*/
/*    font-size: 1.1rem;*/
/*    font-weight: 800;*/
/*    margin-left: 1.2rem;*/
/*    box-shadow: 0 1px 6px #03224A22;*/
/*    transition: background 0.2s, color 0.2s;*/
/*}*/

/*.animated-btn:hover .get-started {*/
/*    background: #F79743;*/
/*    color: #fff;*/
/*}*/

/*@media (max-width: 700px) {*/
/*    .welcome-content {*/
/*        padding: 2rem 1rem 2rem 1rem;*/
/*    }*/
/*    .welcome-texts {*/
/*        margin-bottom: 2rem;*/
/*    }*/
/*    .animated-btn {*/
/*        min-width: 180px;*/
/*        font-size: 1rem;*/
/*        padding: 0.7rem 1.2rem;*/
/*    }*/
/*    .get-started {*/
/*        font-size: 0.95rem;*/
/*        padding: 0.3rem 0.8rem;*/
/*    }*/
/*}*/


/* usage slide class */

.usage-slider {
    width: 120vw;
    max-width: 100%;
    overflow: hidden;
    background: var(--bg-color);
    margin: 0 auto 3rem auto;
    position: relative;
    padding: 0;
}

.usage-slider .heading {
    margin-top: 2rem;
}

.usage-slides {
    position: relative;
    width: 100vw;
    height: 340px;
    max-width: 100%;
}

.usage-slide {
    display: none;
    width: 100vw;
    max-width: 100%;
    height: 340px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.7s, transform 0.7s;
    opacity: 0;
    z-index: 1;
}

.usage-slide.active {
    display: flex;
    opacity: 1;
    position: relative;
    z-index: 2;
    animation: usageFadeIn 0.7s;
}

@keyframes usageFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.usage-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    padding: 2rem 2vw;
    box-sizing: border-box;
}

.usage-img {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usage-img img {
    width: 420px;
    max-width: 90vw;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(3, 34, 74, 0.10);
    background: #fff;
}

.usage-text {
    flex: 1 1 60%;
    padding: 2rem;
    color: #03224A;
}

.usage-text h3 {
    font-size: 2.5rem;
    color: #F79743;
    margin-bottom: 1rem;
}

.usage-text p {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.6;
}

.left-img .usage-img {
    order: 1;
}

.left-img .usage-text {
    order: 2;
}

.right-img .usage-img {
    order: 2;
}

.right-img .usage-text {
    order: 1;
}

.usage-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.5rem 0 2rem 0;
}

.usage-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F79743;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.usage-dots .dot.active {
    opacity: 1;
    transform: scale(1.2);
    background: #03224A;
}

@media (max-width: 900px) {
    .usage-slides,
    .usage-slide,
    .usage-content {
        height: 260px;
    }
    .usage-img img {
        width: 120px;
    }
    .usage-text {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .usage-slides,
    .usage-slide,
    .usage-content {
        height: auto;
        min-height: 220px;
        flex-direction: column !important;
        padding: 1rem 0.5rem;
    }
    .usage-content {
        flex-direction: column !important;
        text-align: center;
    }
    .usage-img,
    .usage-text {
        width: 100%;
        padding: 0.5rem 0;
    }
    .usage-img img {
        width: 90px;
    }
}

.slide {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.prep {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1), filter 0.3s;
    will-change: transform;
}

.img-box {
    min-width: 300px;
    max-width: 300px;
    margin: 0 1rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(3, 34, 74, 0.10);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
}

.img-box img {
    width: 100%;
    display: block;
    border-radius: 1.2rem 1.2rem 0 0;
    transition: filter 0.3s;
}

.img-box .caption {
    text-align: center;
    padding: 1rem 0.5rem;
    background: #03224A;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0 0 1.2rem 1.2rem;
    font-size: 1.2rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-controls button {
    background: rgba(3, 34, 74, 0.8);
    color: #F79743;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px #03224A33;
    transition: background 0.2s, color 0.2s;
}

.slider-controls button:hover {
    background: #F79743;
    color: #03224A;
}

@media (max-width: 700px) {
    .img-box,
    .prep {
        min-width: 220px;
        max-width: 220px;
    }
}

.heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #F79743;
    letter-spacing: 2px;
    margin: 2.5rem 0 1.5rem 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.heading::after {
    content: "";
    display: block;
    margin: 1rem auto 0 auto;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #03224A 0%, #F79743 100%);
    opacity: 0.8;
}

@media (max-width: 600px) {
    .heading {
        font-size: 2.1rem;
        margin: 2rem 0 1rem 0;
    }
    .heading::after {
        width: 40px;
        height: 3px;
    }
}

.service .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 35rem);
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
    border-radius: 7px;
}

.service .box-container .box {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--bg-color);
    border-radius: 5px;
}

.service .box-container .box i {
    font-size: 3.5rem;
    background: var(--gradient);
    background-clip: text;
    color: transparent;
}

.service .box-container .box h3 {
    font-size: 2rem;
    margin: .5rem 0;
    color: var(--white);
}

.service .box-container .box p {
    line-height: 1.8;
    font-size: 1.6rem;
    color: var(--light-white);
    padding: 1rem;
}

.about {
    background: var(--bg-color);
}

.about .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about .flex .content {
    flex: 1 1 4rem;
}

.about .flex .image {
    flex: 1 1 4rem;
}

.about .flex .image img {
    width: 100%;
    height: 50rem;
    object-fit: contain;
}

.about .flex .content h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.about .flex .content p {
    font-size: 1.5rem;
    color: var(--light-white);
    padding: 1rem 0;
    line-height: 1.8;
}

.about .content ul {
    margin: 1em 0 1em 1.5em;
    padding-left: 1.2em;
    list-style: disc inside;
}

.about .content li {
    font-size: 1.6rem;
    color: var(--white, #fff);
    margin-bottom: 0.5em;
    font-weight: 500;
}

.about .content strong {
    color: #F79743;
    font-weight: bold;
}

.about .content span {
    font-size: 1.5rem;
    color: var(--white, #fff);
    margin-top: 0.5em;
    display: block;
}

.reviews .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.reviews .flex .content {
    flex: 1 1 40rem;
}

.reviews .flex .content h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.reviews .flex .content p {
    line-height: 1.8;
    font-size: 2rem;
    color: var(--light-white);
    padding: 1rem 0;
}

.reviews .flex .content .controls {
    margin-top: .5rem;
    display: flex;
    gap: 1rem;
}

.reviews .flex .content .controls div {
    height: 5rem;
    width: 5rem;
    line-height: 4.9rem;
    font-size: 2.5rem;
    color: var(--white);
    background: var(--bg-color);
    text-align: center;
    cursor: pointer;
}

.reviews .flex .content .controls div:hover {
    background: var(--gradient);
}

.reviews .flex .slides-container {
    flex: 1 1 40rem;
    perspective: 1000px;
}

.reviews .flex .slides-container .slide {
    background: var(--bg-color);
    padding: 2.5rem;
    display: none;
    transform-style: preserve-3d;
    animation: slide .2s linear backwards;
}

@keyframes slide {
    0% {
        transform: rotate(180deg);
    }
}

.reviews .flex .slides-container .slide.active {
    display: block;
}

.reviews .flex .slides-container .slide>* {
    animation: slidesContent .2s linear .4s backwards;
}

@keyframes slideContent {
    0% {
        opacity: 0;
        transform: scale(.9s);
    }
}

.reviews .flex .slides-container .slide .text {
    font-size: 1.6rem;
    color: var(--light-white);
    line-height: 1.8;
}

.reviews .flex .slides-container .slide .user {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: var(--border);
}

.reviews .flex .slides-container .slide .user img {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.reviews .flex .slides-container .slide .user h3 {
    font-size: 2rem;
    color: var(--white);
}

.reviews .flex .slides-container .slide .user .stars {
    margin-top: .5rem;
}

.reviews .flex .slides-container .slide .user .stars i {
    font-size: 1.5rem;
    color: coral;
}

.reviews .flex .slides-container .slide .user .fa-quote-right {
    font-size: 5rem;
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    margin-left: auto;
}

.download {
    background: var(--bg-color);
}

.download .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.download .flex .image {
    flex: 1 1 40rem;
}

.download .flex .image img {
    width: 100%;
    height: 50rem;
    object-fit: contain;
}

.download .flex .content {
    flex: 1 1 40rem;
}

.download .flex .content h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.download .flex .content p {
    line-height: 1.8;
    font-size: 1.6rem;
    color: var(--light-white);
    padding: .5rem 0;
}

.download .flex .content .links {
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.download .flex .content a {
    padding: 1rem 2rem;
    font-size: 1.8rem;
    border-radius: 5px;
}

.download .flex .content a i {
    margin-right: .5rem;
}

.download .flex .content a:first-child {
    background-color: var(--white);
    color: var(--black);
}

.download .flex .content a:last-child {
    background-color: var(--bg-color);
    color: var(--white);
    border: var(--border);
}

.download .flex .content a:first-child:hover {
    background: var(--gradient);
    color: var(--white);
}

.download .flex .content a:last-child:hover {
    background: var(--gradient);
    border-color: transparent;
}

.divider {
    border: none;
    height: 3px;
    width: 80%;
    margin: 3rem auto;
    background: linear-gradient(90deg, #F79743 0%, #03224A 100%);
    border-radius: 2px;
    opacity: 0.8;
    box-shadow: 0 2px 8px #03224A22;
}

.newsletter {
    background: var(--bg-color);
}

.newsletter .news {
    text-align: center;
}

.newsletter .news h3 {
    font-size: 3rem;
    color: var(--white);
    text-transform: uppercase;
}

.newsletter .news p {
    line-height: 1.8;
    font-size: 1.6rem;
    color: var(--light-white);
    padding: 1rem 0;
    width: 50rem;
    margin: 1rem auto;
}

.newsletter .news form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter .news form .input {
    border-radius: 5rem;
    padding: 1.2rem 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    border: var(--border);
    background-color: var(--black);
    width: 30rem;
    text-transform: none;
}

.newsletter .news form .input::placeholder {
    text-transform: capitalize;
}

.newsletter .news form .btn {
    margin-top: 0;
}

.brands {
    overflow: hidden;
    display: flex;
    gap: 10rem;
}

.brands:hover .brands-container {
    animation-play-state: paused;
}

.brands .brands-container {
    display: flex;
    gap: 10rem;
    animation: brands 10s linear infinite;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 27rem);
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer .box-container .box a {
    font-size: 1.6rem;
    color: var(--light-white);
    display: block;
    padding: 1rem 0;
}

.footer .box-container .box a i {
    color: coral;
    margin-right: .5rem;
}

.footer .box-container .box a:hover {
    color: var(--white);
}

.footer .credit {
    padding: 3rem 2rem;
    border-top: var(--border);
    text-align: center;
    font-size: 2rem;
    color: var(--light-white);
}

.footer .credit span {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
}

@keyframes brands {
    0% {
        transform: translateX(0%);
    }
    0% {
        transform: translateX(-100%);
    }
}

.brands .brands-container img {
    height: 5rem;
    width: 10rem;
}

@media(max-width: 991px) {
    html {
        font-size: 55%;
    }
}

@media(max-width:768px) {
    body {
        padding-bottom: 7rem;
    }
    .navbar {
        bottom: 0;
    }
    .navbar .nav {
        border-bottom: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
        border-radius: 0;
        padding: .5rem;
        width: 100%;
    }
    .navbar .nav a {
        padding: .5rem;
    }
    .navbar .nav a span {
        font-size: 1.5rem;
    }
    .navbar .nav a i {
        display: block;
        font-size: 3rem;
        margin-bottom: .5rem;
    }
    .navbar .nav a:hover {
        background: #F79743;
        color: #021B3C;
    }
    .navbar .nav a:hover span {
        color: var(--black);
    }
    .home .flex .content h3 {
        font-size: 2.5rem;
    }
}

@media(max-width:450px) {
    html {
        font-size: 50%;
    }
    .reviews .flex .content h3 {
        font-size: 2.5rem;
    }
    .download .flex .content h3 {
        font-size: 2.5rem;
    }
    .download .flex .content a {
        width: 100%;
        text-align: center;
    }
    .download .flex .content a:hover {
        background: var(--gradient);
        color: var(--white);
    }
}