@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600&display=swap');

@font-face {
    font-family: 'Bahij-bold';
    src: url(../fonts/Bahij_TheSansArabic-Bold.ttf);
}

@font-face {
    font-family: 'Bahij-Plain';
    src: url(../fonts/Bahij_TheSansArabic-Plain.ttf);
}

@font-face {
    font-family: 'Bahij-Light';
    src: url(../fonts/Bahij_TheSansArabic-Light.ttf);
}

@font-face {
    font-family: 'Bahij-SemiBold';
    src: url(../fonts/Bahij_TheSansArabic-SemiBold.ttf);
}

/*-------- General Style--------*/
:root {
    --primary-color: #965CFC;
    --primary-shade: #9598C8;
    --primary-text: #333333;
    --text-color: #2B2D2C;
    --p-color: #382E36;
    --title-color: #0B183C;
    --text: #686868;
    --border: #F94141;
    --arrow: #B2B1B1;
    --hover: #3565CF;
    --light-bg: #F8F8F8;
    --placeholder: #858380;
    --subtitle: #224751;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Bahij-Plain', serif;
    background-color: white;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    width: 7px;
    height: 7px;
    border-radius: 10px;
}

input,
a,
button,
select,
.form-control:focus {
    outline: none !important;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

input::placeholder {
    color: var(--placeholder);
}

button,
button:hover {
    transition: all 0.5s;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: unset;
    transition: all 0.5s;
    cursor: pointer;
}

a:hover {
    color: unset;
    transition: all 0.5s;
}

dl,
ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    overflow: hidden;
    padding: 3rem 0 3rem;
    min-height: 90vh;
}

.title {
    color: var(--title-color);
    width: fit-content;
    margin-bottom: 24px;
    font-family: 'Bahij-bold';
    display: flex;
    align-items: center;
}

.title h3 {
    width: fit-content;
    line-height: 45px;
}

.title.white {
    color: white;
}

/****** Header ******/
header {
    background-color: white;
    height: 73px;
    width: 100%;
    padding: 10px 0;
}

.sticky-top {
    box-shadow: 0 0 10px #c8b1f14a;
    top: -1px;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    width: 109px;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    margin: auto;
    gap: 39px;
}

.nav-item {
    display: flex;
    justify-content: center;
}

.nav-item a {
    font-size: 21px;
    color: var(--primary-text);
}

.nav-item::before {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 8px;
    background-color: var(--primary-color);
    transition: opacity 1s;
    opacity: 0;
}

.nav-item.active::before,
.nav-item:hover::before {
    opacity: 1;
    transition: opacity 1s;
}





/***** mobile navigation ******/
.mobile-nav-active .mobile-nav-toggle {
    position: absolute;
    z-index: 99999;
    top: 15px;
    left: 22%;
    background: transparent;
    border-radius: 22px;
    font-size: 19px;
    width: 37px;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--primary-color);
}

.mobile-nav-toggle {
    border: 0;
    transition: all 0.4s;
    outline: none !important;
    cursor: pointer;
    background-image: linear-gradient(45deg, #ac80f9, #d2d4f5);
    border-radius: 7px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    width: 38px;
    height: 36px;
}

.mobile-nav-toggle i {
    color: white;
}

.mobile-nav {
    padding: 90px 10px;
    position: fixed;
    height: 100%;
    width: 28%;
    bottom: 0px;
    left: 0px;
    z-index: 9999;
    overflow-y: auto;
    background: var(--light-bg);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0 30px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    font-size: 20px;
    display: block;
    position: relative;
    color: var(--primary-text);
    padding: 7px 28px;
    outline: none;
    border-right: 2px solid transparent;
}

.mobile-nav a:hover {
    border-right: 2px solid var(--primary-color);
}

.mobile-nav-overly {
    position: fixed;
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}




/****** to top *****/
.back-to-top {
    position: fixed;
    right: -3px;
    bottom: 30px;
    z-index: 9999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 45px;
    height: 40px;
    border-radius: 50px 0 0 50px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background-color: white;
    color: var(--primary-color);
}






/********* Cover ********/
.blobs {
    display: flex;
    width: 90%;
    margin: auto;
}

.blobs img:nth-of-type(1) {
    width: 600px;
    top: 70px;
    position: absolute;
    z-index: 0;
    animation: blob-1 2s ease forwards;
}

@keyframes blob-1 {
    0% {
        transform: translateY(-70px)
    }

    90% {
        transform: translateY(0)
    }
}

.blobs img:nth-of-type(2) {
    position: absolute;
    width: 187px;
    right: 38%;
    top: 16%;
    z-index: 0;
    animation: blob-2 1s ease forwards;
}

@keyframes blob-2 {
    0% {
        transform: translateY(-30%)
    }

    100% {
        transform: translateY(0)
    }
}

.blobs img:nth-of-type(3) {
    position: absolute;
    width: 300px;
    top: 73px;
    left: 0;
    z-index: 0;
    animation: blob-3 1.5s ease forwards;
}

@keyframes blob-3 {
    0% {
        transform: translateY(-70px)
    }

    60% {
        transform: translateY(0)
    }
}


.cover {
    width: 90%;
    margin: auto;
    background-color: var(--primary-shade);
    border-radius: 30px 30px 0 0;
    height: 90vh;
    display: flex;
}

.cover::after {
    content: '';
    position: absolute;
    background-image: url(../img/after-section.png);
    width: 96%;
    height: 45px;
    bottom: -21px;
    right: 1%;
    left: 0%;
    background-size: cover;
    background-repeat: no-repeat;
}


.caption {
    padding-right: 4rem;
}

.cover-theme .slide {
    position: relative;
    width: 100%;
    transition: transform .6s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
}

.owl-carousel .owl-stage,
.owl-carousel.owl-rtl .owl-item,
.owl-carousel .owl-stage-outer {
    height: 100%;
}

.owl-carousel.owl-loaded.cover-theme {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.owl-carousel.cover-theme .owl-nav.disabled {
    display: flex;
}

.owl-carousel.cover-theme .owl-nav {
    display: flex;
    gap: 97%;
    width: 100%;
    margin-top: 2rem;
    position: absolute;
}

.cover .col-lg-6.col-md-5.col-sm-12 {
    display: flex;
    justify-content: flex-end;
}

.slide img.screen,
.owl-carousel .owl-item img.screen {
    z-index: 9;
    -webkit-transform: translate3d(0,0,0);
    width: 71%;
    max-height: 100%;
    margin-left: 2rem;
    -webkit-width: 71%;
    -webkit-max-height: 100%;
}

.owl-carousel .owl-item img {
    display: flex;
    width: unset;
    -webkit-width: unset;
}

.spin img,
.owl-carousel .owl-item .spin img {
    width: 390px;
    -webkit-width: 390px;
    position: absolute;
    right: 50%;
    bottom: 59px;
    z-index: 0;
}

.caption h3 {
    color: white;
    font-family: 'Bahij-bold';
    line-height: 55px;
    margin-bottom: 34px;
    font-size: 1.8rem;
}

.btns {
    display: flex;
    gap: 19px;
}

.btn-download {
    border-radius: 17px;
    display: flex;
    padding: 8px 16px;
    min-width: 157px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    transition: all 0.5s;
}

.btn-download:hover {
    box-shadow: 0 0 11px -3px #965cfc6e;
    transition: all 0.5s;
}

.btn-download.white {
    background-color: white;
}

.btn-download.dark {
    background-color: hsla(240, 91%, 13%, 0.79);
    color: white;
}

.btns a.btn-download.dark:last-of-type img {
    filter: invert(1);
}

.btn-download div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 15px;
}

.btn-download p {
    font-family: 'Bahij-light';
}

.btn-download h6 {
    font-family: 'Bahij-bold';
}

.btn-download img,
.owl-carousel .owl-item .btn-download img {
    width: 23px;
    -webkit-width: 23px;
}

.owl-carousel.cover-theme .owl-nav {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.owl-carousel.cover-theme .owl-nav .owl-prev,
.owl-carousel.cover-theme .owl-nav .owl-next {
    color: white;
    font-size: 36px;
    opacity: 0.7;
}

.carousel-control-next,
.carousel-control-prev {
    position: relative;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}





/******* About ********/
.about {
    background-image: url(../img/bg-about-us.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.text {
    background-color: #F8F8F8;
    padding: 2rem 5rem;
    transform: translateX(400%);
    transition: transform 2s ease;
}

.text.show {
    transform: translateX(0%);
}

.text p {
    font-size: 18px;
    font-family: 'Bahij-Plain';
    color: var(--text-color);
    margin-bottom: 1.5rem;
    width: 95%;
    line-height: 30px;
}

.about img.img-fluid {
    position: absolute;
    width: 24%;
    -webkit-width: 24%;
    margin-right: -140px;
    margin-top: -50px;
}

.text h1 img {
    margin-left: 1rem;
    height: 50px;
    -webkit-height: 50px;
}




/******* features *******/
.features {
    background-image: url(../img/bg-products.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.features .title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.features .title img {
    width: 206px;
    -webkit-width: 206px;
    margin-top: 10px;
}

.features p {
    font-family: 'Bahij-Light';
    text-align: center;
    width: 60%;
    margin: 0 auto 2rem;
    font-size: 18px;
    color: var(--p-color);
}

.item {
    background-color: white;
    border-radius: 20px;
    width: 83%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.item .light-bg {
    background-color: #955afc1c;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.item .light-bg img {
    width: 30px;
    -webkit-width: 30px;
}

.item h6 {
    color: var(--primary-color);
    font-family: 'Bahij-bold';
    font-size: 0.9rem;
}

.item hr:not([size]) {
    height: 2px;
    width: 40px;
    background-color: var(--border);
    opacity: 1;
    margin: 10px 0 20px;
}

.item p {
    font-size: 11px;
    text-align: center;
    line-height: 23px;
    color: var(--text);
    font-family: 'Bahij-Light';
    width: fit-content;
    margin: 0;
    height: 115px;
    overflow: hidden;
}

.owl-carousel.features-theme .owl-nav.disabled {
    display: flex;
}

.owl-carousel.features-theme .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 96%;
    margin-top: 2rem;
}

.owl-carousel.features-theme .owl-nav button.owl-prev,
.owl-carousel.features-theme .owl-nav button.owl-next {
    background: transparent;
    color: var(--arrow);
    font-size: 35px;
}

.owl-carousel.features-theme .owl-nav button.owl-prev.active,
.owl-carousel.features-theme .owl-nav button.owl-prev:hover,
.owl-carousel.features-theme .owl-nav button.owl-next.active,
.owl-carousel.features-theme .owl-nav button.owl-next:hover {
    color: var(--hover);
    transform: scale(1.4);
}





/******** contact ********/
.contact::before {
    content: '';
    position: absolute;
    background-image: url(../img/after-section.png);
    width: 100%;
    -webkit-width: 100%;
    height: 45px;
    -webkit-height: 45px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -78px;
}

.contact {
    background-image: url(../img/roller-2.png);
    background-size: 380px;
    -webkit-background-size: 380px;
    background-repeat: no-repeat;
    background-position: 29%;
    height: fit-content;
}

.contact .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact .title img {
    width: 206px;
    -webkit-width: 206px;
    margin-top: 10px;
}

.form-control {
    background-color: var(--light-bg);
    border: none;
    border-radius: 15px;
    color: var(--p-color);
    text-align: right;
    margin-bottom: 17px;
    padding: 15px;
    font-family: 'Bahij-Light';
}

.form-control:focus {
    color: var(--p-color);
    background-color: var(--light-bg);
    border-color: var(--primary-shade);
    outline: 0;
    box-shadow: 0 0 3px #CEBAF3;
}

.form-control::placeholder {
    color: var(--placeholder);
}

.primary-btn {
    background-color: var(--primary-color);
    width: 100%;
    color: white;
    border-radius: 27px;
    text-align: center;
    padding: 14px 0;
    border: none;
    font-family: 'Bahij-SemiBold';
    transition: all 0.5s;
}

.primary-btn:hover {
    box-shadow: 0 0 10px -1px #b5b5b5;
    transition: all 0.5s;
    color: white;
    text-shadow: 0 0 10px #ffffff85;
}

.contact img.screen {
    width: 65%;
    -webkit-width: 65%;
    max-height: 100%;
    -webkit-max-height: 100%;
    z-index: 9;
    transform: translateX(-400%);
    -webkit-transform: translateX(-400%);
    transition: transform 2s ease;
}

.contact img.screen.show {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
}






/****** footer **********/
footer {
    background-image: url(../img/bg-footer.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0 1rem;
    display: flex;
    align-items: center;
}

.block-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.block-center a img {
    width: 175px;
    -webkit-width: 175px;
}

.block-center h6 {
    color: var(--subtitle);
    font-family: 'Bahij-Light';
}

.block-center ul {
    gap: 10px;
}

.block-center ul li {
    background-image: url(../img/social-media-border.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 39px;
    -webkit-width: 39px;
    height: 35px;
    -webkit-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-center ul li a {
    color: var(--primary-color);
    padding: 8px 7px 5px 11px;
}

footer h5 {
    color: var(--primary-text);
    font-size: 18px;
    font-family: 'Bahij-Bold';
    margin-bottom: 2rem;
}

ul.links li {
    font-family: 'Bahij-Light';
    font-size: 17px;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

footer h4 {
    color: var(--primary-text);
    font-family: 'Bahij-Bold';
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.lower-footer {
    border-top: 1px solid #c5c5c5;
    padding: 10px 0 0;
    margin-top: 17px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    text-align: center;
    color: var(--primary-text);
}




/******** Modal **********/
.loader {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 50%;
    margin-top: -85px;
}

.fail-popup .loader {
    background-color: var(--border);
}

.success-popup .loader {
    background-color: #40dd66;
}


.loader i {
    font-size: 30px;
    color: white;
}

.modal-header {
    border-bottom: none;
    width: fit-content;
    margin-right: auto;
}

.modal-content {
    width: 67%;
    border-radius: 28px;
    margin: auto;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-title {
    margin-bottom: 20px;
    color: var(--primary-text);
    text-shadow: none;
}





@media (min-width: 1200px) {
    .about {
        padding: 7rem 0 3rem;
    }

    .slide img.screen,
    .owl-carousel .owl-item img.screen {
        width: 66%;
        -webkit-width: 66%;
    }

    .cover::after {
        height: 32px;
        -webkit-height: 32px;
    }

    .spin img,
    .owl-carousel .owl-item .spin img {
        width: 335px;
        -webkit-width: 335px;
        position: absolute;
        right: 55%;
        -webkit-right: 55%;
    }

    .contact {
        background-size: 360px;
        background-position: 28%;
        -webkit-background-position: 28%;
        -webkit-background-size: 360px;
    }

    .contact img.screen.show {
        transform: translateX(20%);
        -webkit-transform: translateX(20%);
    }

    .contact img.screen {
        width: 58%;
        -webkit-width: 58%;
    }
}



@media (max-width: 1200px) {

    .cover,
    .blobs {
        width: 92%;
    }

    .owl-carousel .owl-item img.screen {
        width: 68%;
        -webkit-width: 68%;
        margin-left: 3rem;
    }

    .owl-carousel .owl-item .spin img {
        width: 294px;
        -webkit-width: 294px;
        right: 50%;
        -webkit-right: 50%;
        bottom: 55px;
        -webkit-bottom: 55px;
    }

    .caption {
        padding-right: 3rem;
    }

    .cover::after {
        height: 41px;
        -webkit-height: 41px;
    }

    .nav-item a {
        font-size: 18px;
    }

    .nav-item::before {
        width: 44px;
        -webkit-width: 44px;
        height: 6px;
        -webkit-height: 6px;
    }

    nav ul {
        gap: 33px;
    }

    header {
        height: 65px;
        -webkit-height: 65px;
    }

    .blobs img:nth-of-type(3) {
        top: 64px;
        left: 0;
    }

    .blobs img:nth-of-type(2) {
        right: 42%;
        top: 22%;
    }

    .blobs img:nth-of-type(1) {
        top: 64px;
    }

    .text {
        padding: 2rem 4rem;
    }

    .about img.img-fluid {
        margin-right: -115px;
        margin-top: -40px;
    }

    .contact {
        background-size: 360px;
        background-position: 23%;
        -webkit-background-size: 360px;
        -webkit-background-position: 23%;
    }
}

@media (max-width: 1025px) {
    .caption {
        padding-right: 3rem;
    }

    .caption h3 {
        font-size: 1.4rem;
    }

    .owl-carousel .owl-item img.screen {
        width: 75%;
        -webkit-width: 75%;
    }

    .owl-carousel .owl-item .spin img {
        width: 300px;
        -webkit-width: 300px;
        right: 48%;
        -webkit-right: 48%;
    }

    .btn-download img {
        width: 20px;
        -webkit-width: 20px;
    }

    .blobs img:nth-of-type(1) {
        width: 458px;
        -webkit-width: 458px;
    }

    .blobs img:nth-of-type(3) {
        width: 260px;
        -webkit-width: 260px;
    }

    .blobs img:nth-of-type(2) {
        width: 146px;
        -webkit-width: 146px;
    }

    .text p {
        font-size: 16px;
        width: 94%;
    }

    .title {
        font-size: 2rem;
    }

    .about img.img-fluid {
        margin-right: -120px;
        margin-top: -15px;
    }

    .contact {
        background-size: 340px;
        -webkit-background-size: 340px;
        background-position: 22%;
        -webkit-background-position: 22%;
    }
}

@media (max-width: 991px) {
    nav ul {
        gap: 10px;
    }

    nav {
        justify-content: space-between;
    }

    .nav-item::before {
        display: none;
    }

    .blobs img:nth-of-type(1) {
        width: 410px;
        -webkit-width: 410px;
    }

    .blobs img:nth-of-type(3) {
        width: 240px;
        -webkit-width: 240px;
        left: 28px;
        -webkit-left: 28px;
    }

    .owl-carousel .owl-item img.screen {
        width: 86%;
        -webkit-width: 86%;
        margin-left: 1rem;
    }

    .owl-carousel .owl-item .spin img {
        width: 37%;
        -webkit-width: 37%;
        right: 51%;
        -webkit-right: 51%;
    }

    .owl-carousel.cover-theme .owl-nav {
        position: absolute;
        width: 100%;
        -webkit-width: 100%;
        gap: 88%;
    }

    .caption h3 {
        font-size: 1.3rem;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .btn-download {
        padding: 7px 14px;
        min-width: fit-content;
        -webkit-min-width: fit-content;
    }

    .cover::after {
        bottom: -24px;
    }

    .nav-menu {
        display: none;
    }

    .about img.img-fluid {
        width: 28%;
        -webkit-width: 28%;
        margin-right: -110px;
        margin-top: 18px;
    }

    .text {
        padding: 1rem 3rem;
    }

    .text p {
        font-size: 16px;
        width: 90%;
        line-height: 27px;
        margin-bottom: 1rem;
    }

    .item {
        width: 90%;
    }

    .contact {
        background-size: 348px;
        -webkit-background-size: 348px;
        background-position: 25%;
        -webkit-background-position: 25%;
    }

    .contact img.screen {
        height: fit-content;
        -webkit-height: fit-content;
        width: 78%;
        -webkit-width: 78%;
    }

    .block-center a img {
        width: 140px;
        -webkit-width: 140px;
    }

    .block-center {
        text-align: center;
    }

    footer h5 {
        font-size: 17px;
        margin-bottom: 1rem;
    }

    .btns {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .cover {
        padding: 2rem 0 2rem;
    }

    .caption {
        margin: 1rem auto;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
    }

    .cover .container-fluid {
        height: 100%;
    }

    .cover .col-lg-6.col-md-5.col-sm-12 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .owl-carousel .owl-item img.screen {
        max-height: 45vh;
        -webkit-max-height: 45vh;
        max-width: 50%;
        -webkit-max-width: 50%;
        width: auto;
        -webkit-width: auto;
        margin-left: -5%;
    }

    .caption h3 {
        text-align: center;
    }

    .owl-carousel .owl-item .spin img {
        width: 32%;
        -webkit-width: 32%;
        bottom: unset;
        top: 28px;
    }

    .blobs img:nth-of-type(1) {
        width: 390px;
        -webkit-width: 390px;
    }

    .about img.img-fluid {
        width: 26%;
        -webkit-width: 26%;
        margin-right: -157px;
        margin-top: 16px;
    }

    .text p {
        line-height: 25px;
        margin-bottom: 10px;
        width: 82%;
    }

    .title {
        font-size: 1.7rem;
    }

    .features p {
        width: 86%;
    }

    .features .item p {
        width: fit-content;
    }

    .contact {
        background-size: 300px;
        -webkit-background-size: 300px;
        background-position: 57% 7%;
        -webkit-background-position: 57% 7%;
        padding-top: 0;
    }

    .contact::before {
        margin-top: -28px;
    }

    .contact img.screen {
        width: 60%;
        -webkit-width: 60%;
                height: fit-content;
        -webkit-height: fit-content;
        max-height: 60vh;
        -webkit-max-height: 60vh;
    }

    .contact img.screen.show {
        transform: translateX(7%);
        -webkit-transform: translateX(7%);
    }

    .primary-btn {
        padding: 12px 0;
    }

    .form-control {
        padding: 13px;
    }

    .block-center {
        margin-bottom: 1rem;
    }

    footer .col-6 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    footer .col-lg-4.col-md-5 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 600px) {
    .mobile-nav {
        width: 38%;
    }

    .mobile-nav-active .mobile-nav-toggle {
        left: 30%;
    }

    .caption {
        margin: 1rem auto;
        width: 83%;
    }

    .cover {
        padding: 1rem;
    }

    .btn-download img,
    .owl-carousel .owl-item .btn-download img {
        width: 19px;
        -webkit-width: 19px;
    }

    .spin {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cover-theme .slide {
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .owl-carousel .owl-item .spin img {
        width: 216px;
        -webkit-width: 216px;
        top: 20px;
        right: 50px;
    }

    .cover::after {
        height: 28px;
        -webkit-height: 28px;
        bottom: -16px;
    }

    .blobs img:nth-of-type(1) {
        width: 360px;
        -webkit-width: 360px;
    }

    .about img.img-fluid {
        width: 29%;
        -webkit-width: 29%;
        margin-right: -150px;
    }

    .blobs img:nth-of-type(3) {
        width: 196px;
        -webkit-width: 196px;
        left: 4%;
    }

    .contact {
        background-size: 330px;
        -webkit-background-size: 330px;
        background-position: 80% 10%;
        -webkit-background-position: 80% 10%;
        padding-top: 0;
    }

    .contact img.screen.show {
        transform: translateX(20%);
        -webkit-transform: translateX(20%);
    }

    .contact img.screen {
        width: 62%;
        -webkit-width: 62%;
        margin-bottom: 2rem;
    max-height: 62vh;
    -webkit-max-height: 62vh;
    }
}


@media (max-width: 530px) {
    .navbar-brand img {
        width: 97px;
    }

    .blobs img:nth-of-type(3) {
        width: 160px;
        -webkit-width: 160px;
        left: 4%;
    }

    .blobs img:nth-of-type(2) {
        width: 110px;
        -webkit-width: 110px;
    }

    .blobs img:nth-of-type(1) {
        width: 280px;
        -webkit-width: 280px;
    }

    .owl-carousel .owl-item .spin img {
        width: 190px;
        -webkit-width: 190px;
        top: 24px;
        right: 9%;
    }

    .caption {
        margin: 1rem auto;
        width: 90%;
        -webkit-width: 90%;
    }

    .cover::after {
        height: 21px;
        -webkit-height: 21px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 2rem;
        height: 2rem;
    }

    .about img.img-fluid {
        width: 33%;
        -webkit-width: 33%;
        margin-top: 52px;
    }

    .text p {
        line-height: 24px;
        width: 70%;
        font-size: 14px;
    }

    .item {
        padding: 2rem 1.5rem;
        margin: auto;
        width: 95%;
    }

    .contact::before {
        margin-top: -73px;
        width: 96%;
        height: 40px;
    }

    .contact {
        background-position: 80% 14%;
        -webkit-background-size: 260px;
        background-size: 260px;
        -webkit-background-position: 80% 14%;
        padding: 3rem 1rem;
    }

    .modal-content {
        width: 76%;
    }
}


@media (max-width: 450px) {
    .cover::after {
        bottom: -17px;
        height: 28px;
    }

    .cover {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .caption {
        margin: 1rem auto;
        width: 94%;
    }

    .owl-carousel .owl-item img.screen {
        max-height: 49vh;
        -webkit-max-height: 49vh;
        max-width: 60%;
        -webkit-max-width: 60%;
    }

    .owl-carousel .owl-item .spin img {
        top: 44px;
    }

    .btn-download div {
        font-size: 13px;
    }

    .btn-download img,
    .owl-carousel .owl-item .btn-download img {
        width: 16px;
        -webkit-width: 16px;
    }

    .btn-download {
        padding: 7px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .item {
        padding: 1.5rem 1.3rem;
    }

    .mobile-nav {
        width: 50%;
    }

    .mobile-nav-active .mobile-nav-toggle {
        left: 40%;
    }

    .cover {
        border-radius: 20px 20px 0 0;
    }

    .blobs img:nth-of-type(1) {
        display: none;
    }

    .blobs img:nth-of-type(2) {
        right: 4%;
        top: 22%;
    }

    .caption {
        width: 100%;
    }

    .caption h3 {
        font-size: 1.1rem;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .about .row {
        display: flex;
        flex-direction: column;
    }

    .about img.img-fluid {
        max-width: 250px;
        -webkit-max-width: 250px;
        margin-top: -190px;
        margin-right: 25%;
        height: 220px;
        -webkit-height: 220px;
        width: auto;
    }

    .text p {
        line-height: 24px;
        width: 100%;
        text-align: justify;
    }

    .text {
        padding: 1rem 2rem;
        padding-bottom: 200px;
    }
    .contact img.screen {
        width: 70%;
        -webkit-width: 70%;
        max-height: 45vh;
    -webkit-max-height: 45vh;
    }
    .contact img.screen.show {
        transform: translateX(14%);
        -webkit-transform: translateX(14%);
    }    
}



@media (max-width: 390px) {
    .btns {
        gap: 10px;
    }

    .owl-carousel .owl-item .spin img {
        right: 2%;
    }

    .owl-carousel .owl-item img.screen {
        max-width: 70%;
        -webkit-max-width: 70%;
        margin-left: -10%;
    }

    .btn-download {
        padding: 8px 10px;
    }

    .btn-download h6 {
        font-family: 'Bahij-Plain';
    }

    .cover::after {
        height: 19px;
    }

    .text p {
        line-height: 23px;
        width: 100%;
        font-size: 14px;
    }

    .features p {
        font-size: 16px;
        width: 90%;
    }

    .text {
        padding-bottom: 170px;
    }

    .about img.img-fluid {
        margin-top: -175px;
    }
}