@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Cairo:wght@200..1000&display=swap');

body {
    font-family: "Alexandria", sans-serif;
    position: relative;
    scroll-behavior: smooth !important;
    background-color: #F9F9FB;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
    width: .60rem;
    background-color: #ebe8e8;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b30329
}

::selection {
    background-color: var(--first-color);
    color: #fff;
}

/*==================== VARIABLES CSS ====================*/
:root {
    /*========== Colors ==========*/

    /* HSL color mode */
    --first-color: #09CC78;
    --first-color-second: #f5f5f5;
    --first-color-alt: #F9F9F9;
    --text-color: #999999;
    --container-color: #fff;
    --scroll-thumb-color: #09CC78;

    /*========== Font and typography ==========*/
    --body-font: "Cairo", sans-serif;
    --font-en: 'Cairo', sans-serif;

    /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== Margenes Bottom ==========*/
    /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-1-75: 1.75rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ----- Links ----- */
a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}

/* Header */
header {
    position: relative;
    width: 100%;
    height: 1100px;
    background-color: #F9F9FB;
    background: linear-gradient(to bottom, #F9F9FB, #F9F9FB, #F9F9FB, #fefefe68);
    overflow: hidden;
}

.blur-effect {
    position: absolute;
    bottom: -50px;
    width: 100%;
    height: 160px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.911);
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(20px);
}

.navbar {
    padding: 15px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s ease-in-out;
    z-index: 10000;
    background-color: var(--first-color-second);
}

.logo-mobile {
    display: none;
}

.scroll-header {
    width: 100%;
    padding: 5px 10px;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 -1px 8px rgba(0, 0, 0, .15);
    z-index: 10000;
    transition: all .5s ease-in-out;
}

.nav__bars {
    display: none;
}

.side__bar {
    display: none;
}

.nav__links {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    transition: all .5s ease-in-out;
}

.nav__links li {
    margin: 10px 10px;
}

.nav__links li a {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.nav__links li a:hover {
    color: var(--first-color);
}

.nav__links li a.active {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

.btn__group {
    display: flex;
}

.btn__group a {
    padding: 12px 20px;
    border: 2px solid #c2c2c2;
    color: #a1a1a1;
    border-radius: 40px;
    text-align: center;
    margin: 0px 10px;
    font-family: var(--font-en);
}

.btn__group_get_app a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0px 8px;
    color: #fff;
    background-color: var(--first-color);
    border-radius: 6px;
    text-align: center;
    margin: 0px 10px;
    font-family: var(--font-en);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.btn__group a i {
    color: #1f1e1e;
}

.btn__group a:hover {
    border: 2px solid var(--first-color);
    color: var(--first-color);
}

.btn__group a:hover i {
    color: var(--first-color);
}

.header__content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.header__content-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.header__content-details .header__title {
    opacity: 0;
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

.header__content-details .header__title h1 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 800;
}

.header__content-details .header__text {
    margin-bottom: 20px;
    width: 80%;
    text-align: center;
    opacity: 0;
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out;
}

.header__content-details .header__desc {
    margin-bottom: 20px;
    width: 80%;
    text-align: center;
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .6s;
    animation-timing-function: ease-in-out;
    /* opacity: 0;
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out; */
}

.header__content-details .header__desc p {
    line-height: 27px;
    color: var(--text-color);
}

.header__content-img {
    width: 200px;
}

header .header__content-img {
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out;
}

header .header__content-img img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: center;
    transform: translateX(145px);
    -webkit-transform: translateX(145px);
    -moz-transform: translateX(145px);
    -ms-transform: translateX(145px);
    -o-transform: translateX(145px);
    -webkit-transform: translateX(145px);
}

.show_prices {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    text-decoration: underline;
}

@keyframes moveXContentFromRight {
    0% {
        transform: translateX(35px);
        -webkit-transform: translateX(35px);
        -moz-transform: translateX(35px);
        -ms-transform: translateX(35px);
        -o-transform: translateX(35px);
        opacity: 1;
    }

    100% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes moveXContentFromLeft {
    0% {
        transform: translateX(-35px);
        -webkit-transform: translateX(-35px);
        -moz-transform: translateX(-35px);
        -ms-transform: translateX(-35px);
        -o-transform: translateX(-35px);
        opacity: 1;
    }

    100% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px); 
        -o-transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes showHeaderContent {
    0% {
        transform: translateY(35px);
        -webkit-transform: translateY(35px);
        -moz-transform: translateY(35px);
        -ms-transform: translateY(35px);
        -o-transform: translateY(35px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes blurContent {
    0% {
        filter: blur(10px);
        opacity: 1;
        -webkit-filter: blur(10px);
    }

    100% {
        filter: blur(0px);
        opacity: 1;
        -webkit-filter: blur(0px);
    }
}

@keyframes moveImg {
    0% {
        transform: translateY(0px);
        transition: all .5s ease-in-out;
    }

    50% {
        transform: translateY(15px);
        transition: all .5s ease-in-out;
    }

    10% {
        transform: translateY(0px);
        transition: all .5s ease-in-out;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* About */
.about__container {
    position: relative;
    width: 100%;
    height: 1050px;
}

.about__content {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    width: 90%;
}

.about__content-details {
    width: 100%;
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about__content-details .about__title h2 {
    margin-bottom: 10px;
    font-size: var(--h1-font-size);
    font-weight: 800;
    text-align: right;
}

.about__content-details .about__title {
    width: 30%;
    margin-bottom: 50px;
    text-align: right;
    animation-name: moveXContentFromRight;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out;
}

.about__content-details .about__text {
    width: 40%;
    margin-bottom: 50px;
    animation-name: moveXContentFromLeft;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out;
}

.about__content-details .about__text p {
    line-height: 27px;
    color: var(--text-color);
    text-align: right;
}

.about__content-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;

}

/* .about__content-img img{
    width: 300px;
    height: 590px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 5px solid #0e0e0e;
} */
.btn__download {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.btn__download a {
    padding: 5px;
    width: 170px;
    height: 60px;
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    margin: 0px 10px;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer !important;
    transition: all .2s ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn__download a:first-child {
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    opacity: 1;
}

.btn__download a:last-child {
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out;
    opacity: 1;
}

.btn__download a:hover {
    background-color: #1f1e1ed8;

}

.btn__download a:hover .down-now {
    color: var(--first-color) !important;
}

.btn__download a img {
    width: 30px;
    height: 33px;
}

.btn__download a p {
    margin-top: 8px;
    text-align: right;
    display: flex;
    flex-flow: column;
    font-size: var(--normal-font-size);
    font-weight: 400;
}

.btn__download a p span {
    margin-top: 7px;
    margin-bottom: 4px;
    color: #9e9e9e;
    font-size: var(--smaller-font-size);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* animation-name: blurContent;
    animation-duration: 2s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

/* Video */
video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #007bff;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* About */
/* Information */
.information__container {
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information__content-details {
    padding-top: 80px;
    text-align: right;
}
.information__content-img{
    opacity: 0;
    /* animation-name: slideIn;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-direction: alternate; */
}
.information__title {
    width: 80%;
    margin-bottom: 30px;
}
.information__text h6{
    color: rgba(108, 124, 137, 1);
    font-size: var(--normal-font-size);
    margin-bottom: 15px;
}
.information__text span{
    color: rgba(108, 124, 137, 1);
    font-size: var(--small-font-size);
}
.information__text>div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Features */
.features__container {
    width: 100%;
    height: 1000px;
}

.feature__content {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading {
    position: relative;
    margin-right: 15px;
}

.heading::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 38px;
    border-radius: 4px;
    background-color: var(--first-color);
    top: 5px;
    right: -12px;
}

.features .heading::before {
    right: 0px !important;
}

.features {
    transition: all 1s ease-in-out;
}

.features__content {
    margin-top: 40px;
}

.features__title {
    text-align: center;
}
.features__title h2{
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    opacity: 1;
}
.features__title p{
    animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out;
    opacity: 1;
}

.features__content .feature {
    position: relative;
    overflow: hidden;
    height: 380px;
    background-color: #fff;
    margin: 10px 0px;
    padding: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.features__content .feature-1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 440px;
    background-color: #fff;
    margin: 10px 0px;
    padding: 20px;
    position: relative;
}

.features__content .feature-1 .feature__img {
    position: absolute;
    bottom: 0px;
    left: 0px;
    /* animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out; */
    opacity: 1;
}

.features__content .feature-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 440px;
    background-color: #fff;
    margin: 10px 0px;
    padding: 20px;
    cursor: pointer;
}
.features__content .feature-2 .feature__img{
    /* animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out; */
    opacity: 1;
}
.features__content .feature-3 {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 440px;
    background-color: #fff;
    margin: 10px 0px;
    padding: 20px;
    cursor: pointer;
}

.feature__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.features__content .feature-2 .feature__info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features__content .feature-3 .feature__info {
    padding-top: 80px;
    gap: 10px;
}

.feature__text {
    width: 80%;
    text-align: right;
}

.feature__text h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 15px;
    transition: all .3s ease-in-out;
}

.feature__text p {
    width: 90%;
    font-size: var(--small-font-size);
    color: var(--text-color);
}

.feature__img {
    z-index: 2;
}

.features__content .feature-3 .feature__img {
    position: relative;
    z-index: 2;
    left: -35px;
    /* animation-name: showHeaderContent;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out; */
    opacity: 1;
}

.feature_background {
    position: absolute;
    width: 500px;
    height: 200px;
    border-radius: 0px 10px 10px 0px;
    background-color: #0078D5;
    bottom: -15px;
    left: -25px;
    z-index: 1;
}

/* .features__content .feature:hover .feature__info{
    background-color: var(--first-color);
    border: 1.5px solid var(--first-color);
}
.features__content .feature:hover .feature__info svg path{
    fill: #fff !important;
}
.features__content .feature:hover .feature__text h3{
    color: var(--first-color);
} */
/* Features */
.steps__container {
    width: 100%;
    height: 900px;
}

.steps__content {
    width: 90%;
}

.content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
}
.phone{
    opacity: 1;
    /* animation-name: blurContent;
    animation-duration: 2s;
    animation-delay: .3s;
    animation-timing-function: ease-in-out; */
}
.phone img {
    width: 450px;
    height: 600px;
}

.box {
    opacity: 1;
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 230px;
    text-align: right;
    /* animation-name: showHeaderContent;
    animation-duration: 1.4s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out; */
}

.left {
    top: 22%;
    left: 3%;
    width: 362px;
}

.right {
    top: -14%;
    right: 5%;
    width: 391px;
}

.bottom {
    bottom: 14%;
    right: 3%;
    width: 362px;
}
.right_shape{
    position: absolute;
    top: -2%;
    right: 4%;
}
.left_shape{
    position: absolute;
    left: -13%;
    top: 35%;
}
.bottom_shape{
    position: absolute;
    bottom: 0%;
    right: -68%;
}

/* .box::before {
    content: "";
    position: absolute;
    background: #ccc;
}

.left::before {
    left: 300px;
    bottom: 0%;
    width: 250px;
    height: 1px;
}

.right::before {
    left: -20px;
    top: 50%;
}

.bottom::before {
    top: -20px;
    left: 50%;
    width: 40px;
    height: 2px;
} */
/* App Screen */
.app-screen__container {
    width: 100%;
    min-height: 600px;
    background-color: #E6F2FB;
    /* clip-path: polygon(50% 0%, 100% 0, 100% 82%, 0 100%, 0 0); */
}

.app-screen__title {
    width: 65%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
}

.app-screen__container .header__content-img {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screen__container .header__content-img img {
    width: 80%;
    height: 100%;
}

.app-screen__header {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

/* App Screen */

/* Email */
.email__container {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.email__container .email__content {
    width: 100%;
    min-height: 200px;
    margin: auto;
    /* border-radius: 50px; */
    background-color: var(--first-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: -105px;
    padding: 0px 20px;
}

.email__content h2 {
    color: #fff;
    font-size: var(--h1-font-size);
    text-align: center;
    padding-top: 14px;
    margin-bottom: 20px;
}

.email__content .email__inp {
    width: 400px;
    height: 50px;
    padding-right: 10px;
    border-radius: 20px;
    background-color: transparent;
    color: #fff !important;
    border: 1px solid #fff;
    outline: none;
    position: relative;
}

.email__content .email__inp::placeholder {
    color: #fff !important;
}

.email__content form {
    position: relative;
}

.email__content .btn__submit {
    width: 85px;
    height: 50px;
    border-radius: 20px;
    background-color: #fff;
    color: var(--first-color);
    border: none;
    outline: none;
    position: absolute;
    left: 0px;
}

/* Footer */
footer {
    background-color: var(--first-color-second);
    min-height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 80px; */
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer_content .footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer__links li {
    text-align: right;
}

.footer__links li a {
    font-size: var(--normal-font-size);
}

.footer__links li a.active {
    color: var(--first-color);
}

.footer__details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.footer__text {
    width: 60%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.footer__text p {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    margin-bottom: 10px;
}

.copyrights {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* .copyrights::before{
    content: '';
    position: absolute;
    top: -10px;
    width: 100%;
    height: 1.2px;
    background-color: #C1C1C1;
} */
.copyrights p img {
    width: 120px;
}

/* Overlay */
.before {
    display: none;
}

/*========== SCROLL UP ==========*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background-color: var(--first-color);
    opacity: .8;
    padding: 6px 10px;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s;
}

.scrollup:hover {
    background-color: #b30329;
}

.scrollup__icon {
    font-size: var(--normal-font-size);
    color: #fff;
}

/* Show scroll */
.show-scroll {
    bottom: 5rem
}

/*====  large Screen  ====*/
@media screen and (max-width:1025px) {
    .navbar {
        padding: 15px 70px;
    }

    .navbar .btn__group {
        display: none;
    }

    /* Slider Screen */
    .app-screen__container {
        height: 700px;
        clip-path: none;
        background-color: #fff;
        margin-bottom: 80px;
    }

    .app-screen__header p {
        width: 80%;
    }

    .app-screen {
        margin-top: 50px;
    }

    .mobile__frame {
        width: 205px;
        height: 420px;
        transform: translate(-50%, -100%);
        -webkit-transform: translate(-50%, -100%);
        -moz-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
        -o-transform: translate(-50%, -100%);
    }

    /* Email */
    .email__container {
        width: 100%;
        margin-top: 10px;
    }

    /* .email__content{
        border-radius: 20px !important;
    } */
    .email__content .email__inp {
        width: 350px;
    }
}

/*====  Meduim Screen  ====*/
@media screen and (max-width:991px) {

    /* Navbar */
    .navbar {
        padding: 10px;
        z-index: 10000;
    }

    .navbar .logo img {
        width: 150px;
    }

    .logo-mobile {
        display: none;
    }

    .navbar .btn__group {
        display: none;
    }

    .nav__links {
        display: none;
    }

    .nav__bars {
        display: flex;
    }

    .before {
        position: absolute;
        content: '';
        inset: 0;
        background-color: #000000be;
        z-index: 10000;
    }

    .side__bar {
        position: fixed;
        display: flex;
        flex-flow: column;
        left: -100%;
        top: 0;
        bottom: 0;
        background-color: #fff;
        width: 40%;
        z-index: 10000;
        text-align: right;
        background-position: center;
        overflow-y: hidden;
        transition: all 0.7s ease-in-out;
        padding: 40px 10px 0px;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 25%);
    }

    .side__bar>a {
        margin-top: -35px;
    }

    .side__bar-links {
        margin-top: 10px;
        position: relative;
        top: 0px;
        width: 100%;
        text-align: right;
        padding: 10px 20px;
    }

    .side__bar-links .navLink {
        font-size: 15px;
        font-size: 15px;
        color: #1f1e1e;
        line-height: 40px;
    }

    .close__sidebar {
        position: absolute;
        top: 30px;
        left: 15px;
        cursor: pointer;
    }

    .nav__active {
        left: 0px !important;
        transition: all .6s ease-in-out;
    }

    .nav__bars {
        display: flex;
    }

    .nav__bars {
        display: flex !important;
        align-items: center;
        margin-left: 10px;
    }

    .nav__bars i {
        font-size: var(--h1-font-size);
        font-weight: 700;
        color: var(--first-color);
    }

    /* Header */
    header {
        height: 75vh;
    }

    header {
        position: relative;
        width: 100%;
        min-height: 1100px;
        background-color: #F9F9FB;
        background: linear-gradient(to bottom, #F9F9FB, #F9F9FB, #F9F9FB, #fefefe68);
        overflow: hidden;
    }

    .header__content {
        min-height: 500px;
        padding: 10px;
    }

    .header__content-details {
        padding-top: 10px;
    }

    .header__content-details .header__title h1 {
        font-size: var(--h1-font-size);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .header__content-details .header__text {
        width: 100%;
    }

    .header__text p {
        width: 100%;
        font-size: var(--small-font-size);
        line-height: 22px;
    }

    /* About */
    .about__container {
        height: 430px;
        width: 95%;
        margin-top: 30px;
    }

    .heading {
        margin: 0px 10px 0px 0px;
        font-size: var(--h1-font-size);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .heading::before {
        content: '';
        height: 30px;
        top: 0px;
        right: -12px;
    }

    .about__content-details {
        padding-top: 50px;
        display: flex;
        flex-flow: column;
    }

    .about__content-details .about__title h1 {
        font-size: var(--h2-font-size);
        font-weight: 600;
        width: 100%;
    }

    .about__content-details .about__text {
        width: 100%;
        margin-bottom: 50px;
    }

    .about__content-details .about__text p {
        line-height: 25px;
        font-size: var(--small-font-size);
        color: var(--text-color);
        width: 100%;
    }

    .about__content-img {
        height: 550px;
        justify-content: flex-start;
    }

    .about__content-img img {
        height: 100%;
    }

    /* Features */
    .features__content .feature {
        border-radius: 10px;
        width: 95%;
        height: 170px;
        padding: 5px;
    }

    .feature__text {
        width: 80%;
        padding-right: 15px;
    }

    .feature__text p {
        font-size: var(--smaller-font-size);
    }

    /* Slider Screen */
    .app-screen__container {
        height: 700px;
        clip-path: none;
        background-color: #fff;
    }

    .app-screen__header p {
        width: 80%;
    }

    .app-screen {
        margin-top: 50px;
    }

    .mobile__frame {
        width: 156px;
        height: 318px;
        transform: translate(-50%, -106%);
        -webkit-transform: translate(-50%, -106%);
        -moz-transform: translate(-50%, -106%);
        -ms-transform: translate(-50%, -106%);
        -o-transform: translate(-50%, -106%);
    }

    /* Email */
    .email__container {
        width: 100%;
    }

    /* .email__content{
        border-radius: 20px !important;
    } */
    .email__content .email__inp {
        width: 350px;
    }
}

/*====  Small Screen  ====*/
@media screen and (max-width:767px) {

    /* Navbar */
    .navbar {
        padding: 10px;
        z-index: 10000;
    }

    .navbar .logo {
        display: none;
    }

    .logo-mobile {
        display: flex;
        order: 2;
        transform: translateX(50px);
        -webkit-transform: translateX(50px);
        -moz-transform: translateX(50px);
        -ms-transform: translateX(50px);
        -o-transform: translateX(50px);
    }

    .logo-mobile img {
        height: 50px;
        width: 50px;
    }

    .navbar .logo img {
        width: 150px;
    }

    .navbar .btn__group {
        display: none;
    }

    .nav__links {
        display: none;
    }

    .nav__bars {
        display: flex;
        order: 1;
    }

    .btn__group_get_app {
        order: 3;
    }

    .before {
        position: absolute;
        content: '';
        inset: 0;
        background-color: #000000be;
        z-index: 10000;
    }

    .side__bar {
        position: fixed;
        display: flex;
        flex-flow: column;
        left: -100%;
        top: 0;
        bottom: 0;
        background-color: #fff;
        width: 70%;
        z-index: 10000;
        text-align: right;
        background-position: center;
        overflow-y: hidden;
        transition: all 0.7s ease-in-out;
        padding: 40px 10px 0px;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 25%);
    }

    .side__bar>a {
        margin-top: -35px;
    }

    .side__bar-links {
        margin-top: 10px;
        position: relative;
        top: 0px;
        width: 100%;
        text-align: right;
        padding: 10px 20px;
    }

    .side__bar-links .navLink {
        font-size: 15px;
        font-size: 15px;
        color: #1f1e1e;
        line-height: 40px;
    }

    .close__sidebar {
        position: absolute;
        top: 30px;
        left: 15px;
        cursor: pointer;
    }

    .nav__active {
        left: 0px !important;
        transition: all .6s ease-in-out;
    }

    .nav__bars {
        display: flex;
    }

    .nav__bars {
        display: flex !important;
        align-items: center;
        margin-left: 10px;
    }

    .nav__bars i {
        font-size: var(--h1-font-size);
        font-weight: 700;
        color: var(--first-color);
    }

    /* Header */
    /* header {
        height: 85vh;
    } */
    header {
        position: relative;
        width: 100%;
        min-height: 790px;
        background-color: #F9F9FB;
        background: linear-gradient(to bottom, #F9F9FB, #F9F9FB, #F9F9FB, #fefefe68);
        overflow: hidden;
    }

    .header__content {
        min-height: 700px;
        padding: 10px;
    }

    .header__content-details {
        padding-top: 10px;
    }

    .header__content-details .header__title h1 {
        font-size: var(--h1-font-size);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .header__content-details .header__text {
        width: 100%;
    }

    .header__text p {
        width: 100%;
        font-size: var(--small-font-size);
        line-height: 22px;
    }

    .header__content-img {
        width: 100%;
    }

    header .header__content-img img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        object-position: center;
        transform: translateX(70px);
        -webkit-transform: translateX(120px);
        -moz-transform: translateX(145px);
        -ms-transform: translateX(70px);
        -o-transform: translateX(70px);
        -webkit-transform: translateX(145px);
        -webkit-transform: translateX(70px);
        -moz-transform: translateX(70px);
    }

    /* About */
    .about__container {
        min-height: 350px;
        width: 100%;
    }

    .about__content {
        display: flex;
        flex-direction: column;
        margin-top: 0px;
        width: 100%;
    }

    .about__content-details {
        padding-top: 20px;
    }

    .about__title {
        width: 80%;
        margin-bottom: 20px;
    }

    .about__content-details .about__title {
        width: 100%;
        margin-bottom: 20px;
    }

    .about__content-details .about__title h1 {
        font-size: var(--h1-font-size);
        font-weight: 600;
        width: 100%;
    }

    .about__content-details .about__text {
        width: 100%;
        margin-bottom: 20px;
    }

    .about__content-details .about__text p {
        line-height: 25px;
        font-size: var(--small-font-size);
        color: var(--text-color);
    }

    .about__content-img {
        height: 500px;
    }

    .about__content-img img {
        height: 100%;
        margin: auto;
    }

    .about__content-details .btn__group {
        display: flex;
        justify-content: center;
    }

    .btn__download a {
        width: 140px;
    }

    .btn__download a img {
        width: 25px;
        height: 28px;
    }

    .btn__download a p {
        margin-top: 5px;
    }

    /* Features */
    .features__container {
        height: 1900px;
        clip-path: none;
    }

    .feature__content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .features__container .row>div {
        padding: 0px;
    }

    .features {
        width: 100%;
        padding: 0px 0px;
    }

    .features__content .feature {
        border-radius: 10px;
        width: 100%;
        height: 150px;
        padding: 5px;
    }

    .features__content .feature-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 500px;
        background-color: #fff;
        margin: 10px 0px;
        padding: 20px;
        position: relative;
    }

    .features__content .feature-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 460px;
        background-color: #fff;
        margin: 10px 0px;
        padding: 20px;
        cursor: pointer;
    }

    .features__content .feature-3 {
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 640px;
        background-color: #fff;
        margin: 10px 0px;
        padding: 20px;
        cursor: pointer;
    }

    .feature_background {
        position: absolute;
        width: 100%;
        height: 170px;
        border-radius: 0px 10px 10px 0px;
        background-color: #0078D5;
        bottom: 0px;
        left: 0px;
        z-index: 1;
    }

    .features__content .feature-1 .feature__img {
        width: 100%;
        position: inherit;
        bottom: 0px;
        left: 0px;
    }

    .features__content .feature-3 .feature__img {
        position: relative;
        z-index: 2;
        left: 0px;
    }

    .features__content .feature-3 .feature__img img {
        width: 100%;
    }

    .features__content .feature-3 .feature__info {
        padding-top: 20px;
        gap: 10px;
    }

    .feature__info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: right;
        gap: 20px;
    }

    .feature__text {
        width: 80%;
        padding-right: 15px;
    }

    .feature__text p {
        font-size: var(--smaller-font-size);
    }

    /* Steps */
    .steps__container {
        width: 100%;
        height: 1200px;
    }

    .steps__content {
        width: 100%;
    }

    .content {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .phone {
        order: 1;
    }

    .left {
        order: 2;
    }

    .right {
        order: 3;
        right: 0;
    }

    .bottom {
        order: 3;
        right: 0;
    }

    .phone img {
        width: 100%;
        height: 400px;
    }

    .box {
        margin-top: 20px;
        position: inherit;
        background: #fff;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: right;
    }

    .left {
        top: 20%;
        left: 0%;
    }

    /* Slider Screen */
    .app-screen__container {
        min-height: 600px;
        clip-path: none;
        background-color: #fff;
    }

    .app-screen__container .header__content-img {
        width: 100%;
        height: 170px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .app-screen__container .header__content-img img {
        width: 100%;
    }

    .app-screen__title {
        width: 100%;
    }

    .app-screen__text {
        width: 100%;
        text-align: center;
    }

    .app-screen__header p {
        width: 80%;
    }

    .app-screen {
        margin-top: 50px;
    }

    .mobile__frame {
        width: 130px;
        height: 268px;
        transform: translate(-50%, -111%);
        -webkit-transform: translate(-50%, -111%);
        -moz-transform: translate(-50%, -111%);
        -ms-transform: translate(-50%, -111%);
        -o-transform: translate(-50%, -111%);
    }

    .information__container {
        width: 100%;
        height: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    .information__title {
        width: 100%;
        margin-bottom: 30px;
    }

    .information__title h1 {
        width: 100%;
        font-size: var(--h1-font-size);
        font-weight: 600;
    }

    .information__content-img {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    .information__content-img img {
        width: 100%;
    }

    .information__content-details {
        order: 1;
        padding-top: 20px;
        text-align: right;
    }

    /* Email */
    .email__container {
        width: 100%;
    }

    .email__container .container {
        padding: 0px;
    }

    .email__container .email__content {
        width: 100%;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        border-radius: 0px;
        height: 180px;
        top: -170px;
    }

    .email__container .email__content form {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .email__content .email__inp {
        width: 300px;
        height: 50px;
    }

    .email__content .btn__submit {
        font-weight: 600;
        border-radius: 10px;
    }

    /* Footer */
    .footer_content {
        height: 240px;
    }

    .footer__links {
        flex-flow: row wrap;
    }

    .footer__text {
        width: 100%;
    }

    .copyrights {
        flex-flow: column;
    }

    .copyrights div {
        width: 100%;
        display: flex;
        justify-content: center;
        font-size: var(--small-font-size);
    }

    .copyrights div span {
        text-align: right;
    }

    .copyrights div img {
        width: 100px;
    }
}

@media screen and (max-width:370px) {

    /* Navbar */
    .navbar {
        padding: 10px;
        z-index: 10000;
    }

    .navbar .logo {
        display: none;
    }

    .logo-mobile {
        display: flex;
    }

    .navbar .logo img {
        width: 150px;
    }

    .navbar .btn__group {
        display: none;
    }

    .nav__links {
        display: none;
    }

    .nav__bars {
        display: flex;
    }

    .before {
        position: absolute;
        content: '';
        inset: 0;
        background-color: #000000be;
        z-index: 10000;
    }

    .side__bar {
        position: fixed;
        display: flex;
        flex-flow: column;
        left: -100%;
        top: 0;
        bottom: 0;
        background-color: #fff;
        width: 70%;
        z-index: 10000;
        text-align: right;
        background-position: center;
        overflow-y: hidden;
        transition: all 0.7s ease-in-out;
        padding: 40px 10px 0px;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 25%);
    }

    .side__bar>a {
        margin-top: -35px;
    }

    .side__bar-links {
        margin-top: 10px;
        position: relative;
        top: 0px;
        width: 100%;
        text-align: right;
        padding: 10px 20px;
    }

    .side__bar-links .navLink {
        font-size: 15px;
        font-size: 15px;
        color: #1f1e1e;
        line-height: 40px;
    }

    .close__sidebar {
        position: absolute;
        top: 30px;
        left: 15px;
        cursor: pointer;
    }

    .nav__active {
        left: 0px !important;
        transition: all .6s ease-in-out;
    }

    .nav__bars {
        display: flex;
    }

    .nav__bars {
        display: flex !important;
        align-items: center;
        margin-left: 10px;
    }

    .nav__bars i {
        font-size: var(--h1-font-size);
        font-weight: 700;
        color: var(--first-color);
    }

    /* Header */
    .header__content {
        height: 700px;
        padding: 10px;
    }

    .header__content-details {
        padding-top: 10px;
    }

    .header__content-details .header__title h1 {
        font-size: var(--h1-font-size);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .header__content-details .header__text {
        width: 100%;
    }

    .header__text p {
        width: 100%;
        font-size: var(--small-font-size);
        line-height: 22px;
    }

    .header__content-img {
        width: 100%;
    }

    /* About */
    .about__container {
        height: 700px;
        width: 95%;
    }

    .about__content-details {
        padding-top: 20px;
    }

    .about__title {
        width: 80%;
        margin-bottom: 20px;
    }

    .heading {
        margin: 0px 10px 0px 0px;
        font-size: var(--h2-font-size);
        font-weight: 600;
    }

    .heading::before {
        content: '';
        height: 30px;
        top: 0px;
        right: -12px;
    }

    .about__content-details .about__title h1 {
        font-size: var(--h2-font-size);
        font-weight: 600;
    }

    .about__content-details .about__text {
        width: 100%;
        margin-bottom: 50px;
    }

    .about__content-details .about__text p {
        line-height: 25px;
        font-size: var(--small-font-size);
        color: var(--text-color);
    }

    .about__content-img {
        height: 300px;
    }

    .about__content-img img {
        height: 100%;
        margin: auto;
    }

    .about__content-details .btn__group {
        display: flex;
        justify-content: center;
    }

    .btn__download a {
        width: 140px;
    }

    .btn__download a img {
        width: 25px;
        height: 28px;
    }

    .btn__download a p {
        margin-top: 5px;
    }

    /* Features */
    .features__container {
        height: 1150px;
        clip-path: none;
    }

    .features__container .row>div {
        padding: 0px;
    }

    .features {
        padding: 40px 0px;
    }

    .features__content .feature {
        border-radius: 10px;
        width: 100%;
        height: 150px;
        padding: 5px;
    }

    .feature__text {
        width: 80%;
        padding-right: 15px;
    }

    .feature__text p {
        font-size: var(--smaller-font-size);
    }

    /* Slider Screen */
    .app-screen__container {
        height: 700px;
        clip-path: none;
        background-color: #fff;
    }

    .app-screen__header p {
        width: 80%;
    }

    .app-screen {
        margin-top: 50px;
    }

    .mobile__frame {
        width: 130px;
        height: 263px;
        transform: translate(-50%, -106%);
        -webkit-transform: translate(-50%, -106%);
        -moz-transform: translate(-50%, -106%);
        -ms-transform: translate(-50%, -106%);
        -o-transform: translate(-50%, -106%);
    }

    .owl-item.center>div {
        width: 130px;
        height: 263px;
    }

    .owl-item.center>div img {
        width: 100%;
        height: 100%;
    }

    /* Email */
    .email__container {
        width: 100%;
    }

    .email__container .container {
        padding: 0px;
    }

    .email__container .email__content {
        width: 100%;
        flex-flow: column;
        border-radius: 0px;
        height: 180px;
    }

    .email__container .email__content form {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .email__content .email__inp {
        width: 300px;
        height: 50px;
    }

    .email__content .btn__submit {
        position: inherit;
        margin-top: 10px;
        font-weight: 600;
        border-radius: 10px;
    }

    /* Footer */
    .footer_content {
        height: 340px;
    }

    .footer__links {
        flex-flow: row wrap;
    }

    .copyrights {
        flex-flow: column;
    }

    .copyrights div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: var(--smaller-font-size);
    }

    .copyrights div span {
        text-align: right;
    }

    .copyrights div img {
        width: 100px;
    }
}