@font-face {
    font-family: "fontLight";
    src: url("../fonts/alfont_com_29LT-Kaff-Light\ \(3\).ttf") format("truetype");
}

@font-face {
    font-family: "fontSemiBold";
    src: url("../fonts/29LT\ Kaff\ Semi\ Bold.ttf") format("truetype");
}

@font-face {
    font-family: "fontRegular";
    src: url("../fonts/alfont_com_29LT-Azer-Regular.otf") format("opentype");
}

@font-face {
    font-family: "fontMedium";
    src: url("../fonts/alfont_com_29LT-Azer-Medium.otf") format("opentype");
}

@font-face {
    font-family: "fontBold";
    src: url("../fonts/alfont_com_29LT-Azer-Bold.otf") format("opentype");
}

:root {
    --mainColor: #CC6C52;
    --secondaryColor: "";
    --fontLight: "fontLight";
    --fontSemiBold: "fontSemiBold";
    --fontRegular: "fontRegular";
    --fontMedium: "fontMedium";
    --fontBold: "fontBold";
}

a:hover,
a {
    text-decoration: none;
}

body {
    font-family: var(--fontRegular);
    text-align: right;
    direction: rtl;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* header */
header {
    background-color: #DFDFDF;
    position: sticky;
    top: 0;
    z-index: 99;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav .logo {
    display: block;
    width: 148px;
    height: 114px;
    padding: 10px 0;
}

header nav .logo img {
    width: 50%;
    height: 90%;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 10px
}

header nav ul a {
    padding: 10px;
    font-size: 16px;
    color: #98827C;
    font-family: var(--fontMedium);
}

header .langSwitcher {
    background-color: #fff;
    color: var(--mainColor);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-size: 16px;
    font-family: var(--fontMedium);
}

/* banner */
.banner {
    height: 700px;
    position: relative;
    padding-top: 60px;
}

.banner img.bannerBg {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
}

.banner .bannerCapture {
    position: relative;
    z-index: 99;
}

.banner .bannerCapture .bannerCaptureImg img {
    height: 500px;
    animation: bounce 1.6s ease-in-out infinite alternate;
    object-fit: contain;
    -webkit-animation: bounce 1.6s ease-in-out infinite alternate;
}

.banner .bannerCapture .row {
    align-items: end;
}

.banner .bannerCapture .bannerCaptureApps h2 {
    font-size: 42px;
    font-family: var(--fontSemiBold);
    color: #fff;
    margin-bottom: 24px;
}

.banner .bannerCapture .bannerCaptureApps h3 {
    color: #fafafa;
    font-size: 16px;
    font-weight: var(--fontMedium);
    margin-bottom: 16px;
}

.banner .bannerCapture .bannerCaptureApps p {
    font-size: 14px;
    color: #fafafa;
    font-family: var(--fontRegular);
    margin-bottom: 24px;
}

.banner .bannerCapture .AppLink {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footerItem .appLinks a,
.banner .bannerCapture .AppLink a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 14px;
    justify-content: center;
    font-family: var(--fontRegular);
    padding: 20px 30px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    width: 180px;
}

.banner .bannerCapture .AppLink a.android {
    background-color: var(--mainColor);
}

.banner .bannerCapture .AppLink a.apple {
    background-color: #2B8248;
}

@keyframes bounce {
    from {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
    }

    to {
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }
}

/*about*/
.about {
    padding: 100px 0;
}

.about .aboutText h2 {
    font-size: 24px;
    color: var(--mainColor);
    font-family: var(--fontSemiBold);
    margin-bottom: 16px;
}

.about .aboutText h3 {
    font-size: 16px;
    font-family: var(--fontMedium);
    color: #8FAE99;
    margin-bottom: 12px;
}

.about .aboutText p {
    color: #A4A3A2;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 24px;
}

.about .aboutImg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    position: relative;
    z-index: 9;
}

.about .aboutImg img {
    height: 100%;
    position: relative;
    z-index: 99;
    width: 100%;
}

.about .aboutImg::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 90%;
    background-color: rgba(200, 78, 58, 4%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    z-index: 91;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.about .aboutImg::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(190, 105, 55, 8%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    height: 100%;
    z-index: 9;
}

.mainBtn {
    font-size: 14px;
    color: #fff;
    border: 2px solid #fff;
    padding: 13px 40px;
    outline: 1px dashed var(--mainColor);
    background-color: var(--mainColor);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/*features*/
.howItWork,
.features {
    padding: 100px 0;
}

.title h3 {
    font-size: 28px;
    font-family: var(--fontMedium);
    margin-bottom: 16px;
}

.title p {
    font-size: 16px;
    font-family: var(--fontRegular);
    color: #9DA4AE;
}

.title {
    margin-bottom: 40px;
    text-align: center;
}

.featureItem,
.howItWorkItem {
    text-align: center;
    padding: 26px 32px;
    background: linear-gradient(180deg, #FDF7F4 0%, #FAF5F1 100%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    box-shadow: 0 0 10px #E5E7EB;
    text-align: center;
    height: 100%;
}

.featureIcon,
.howItWorkIcon {
    width: 64px;
    height: 64px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(204, 108, 82, 10%);
    box-shadow: 0 0 10px #E5E7EB;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    margin-bottom: 24px;
}

.featureItem h3,
.howItWorkItem h3 {
    color: #474848;
    font-size: 16px;
    font-family: var(--fontMedium);
    margin-bottom: 8px;
}

.featureItem p,
.howItWorkItem p {
    font-size: 14px;
    font-family: var(--fontRegular);
    color: #656767;
    margin-bottom: 0;
}

/*reviews*/
.reviews {
    background: linear-gradient(180deg, #FDF7F4 0%, #FAF5F1 100%);
    padding: 100px 0 50px;
}

.reviews .owl-carousel {
    direction: ltr;
}

.reviews .gold svg g path {
    fill: #FACC15;
}

.reviews .clientItem {
    background-color: #fff;
    padding: 24px;
    direction: rtl;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.clientRate {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.clientRate ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.clientRate img {
    width: 64px !important;
    height: 64px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.clientRate h3 {
    font-size: 16px;
    font-family: var(--fontRegular);
    margin-bottom: 8px;
    color: #656767;
}

.clientItem p {
    font-size: 14px;
    color: #656767;
    margin-bottom: 0;
}

.reviews .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--mainColor);
}

/*howItWork*/
.howItWorkItem {
    background: #fff;
    box-shadow: unset;
}

.howItWorkIcon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mainColor);
    box-shadow: 0 0 10px #E5E7EB;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-bottom: 24px;
    position: relative;
}

.howItWorkIcon span {
    background-color: #417758;
    color: #fff;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -10px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.Contact form {
    background: linear-gradient(180deg, #FDF7F4 0%, #FAF5F1 100%);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.Contact form label {
    font-size: 14px;
    font-family: var(--fontMedium);
    color: #374151;
    margin-bottom: 10px;
}

.Contact form .form-control {
    height: 50px;
    border-color: #E5E7EB;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.Contact form .form-group {
    margin-bottom: 24px;
}

.Contact form textarea.form-control {
    height: auto;
}

.Contact form button {
    background-color: var(--mainColor);
    width: 100%;
    color: #fff;
    padding: 17.5px;
    font-size: 14px;
    font-family: var(--fontMedium);
    border: 1px solid var(--mainColor);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.socialLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.socialLinks a {
    width: 48px;
    height: 48px;
    background-color: #7B9385;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 0 10px #E5E7EB;
    flex-wrap: wrap;
}

.Contact {
    padding: 100px 0;
}

/* footer */
footer {
    padding: 100px 0 0;
    background-color: #1F2937;
}

footer .footerItem h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
}

footer .footerItem .socialLinks a {
    box-shadow: none;
}

footer .footerItem:not(.footerLogo) ul li a {
    color: #c3cad4;
}

footer .footerBottom {
    margin-top: 80px;
    text-align: center;
    font-size: 12px;
    font-family: var(--fontMedium);
    color: #fff;
    border-top: 1px solid #232E3E;
    padding: 30px 0;
}

.footerLogo>a {
    display: block;
    margin-bottom: 24px;
    height: 165px;
}

.footerLogo a img {
    height: 50%;
}

.footerItem .appLinks a {
    background-color: #fff;
    color: #417758 !important;
}

.footerItem .appLinks li:not(:last-of-type) {
    margin-bottom: 16px;
}

.footerItem .appLinks a.android {
    color: var(--mainColor) !important;
}

a.FixedWhatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    left: 20px;
}

.opennav {
    right: 0;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.openNavBtn {
    display: none;
}

.overlayNav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.showOverlay {
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    left: 0;
    z-index: 99;
}

@media(max-width:1300px) {
    .banner .bannerCapture .bannerCaptureImg img {
        height: 400px;
    }
}

@media(max-width:992px) {

    .about .aboutText,
    .features .col-lg-3.col-md-6.col-12,
    .howItWork .col-lg-3.col-md-6.col-12,
    .featureItem,
    .howItWorkItem {
        margin-bottom: 30px;
    }

    .banner {
        height: auto;
        padding-bottom: 30px;
        z-index: 9;
    }

    .banner .bannerCaptureApps {
        margin-bottom: 50px;
    }

    .footerLogo {
        margin-bottom: 24px;
    }

    .banner .bannerCapture .bannerCaptureImg {
        display: flex;
        justify-content: center;
    }
}

@media(max-width:768px) {
    .footerItem {
        margin-bottom: 24px;
    }
    .footerItem .appLinks a, .banner .bannerCapture .AppLink a{
        padding: 10px;
        justify-content: center;
        width: 150px;
        gap: 12px;
    }
    .openNavBtn {
        display: block;
    }
    .about .aboutImg img{
        object-fit: contain;
    }
    header nav ul {
        position: fixed;
        width: 250px;
        right: -250px;
        z-index: 999;
        top: 0;
        height: 100%;
        background-color: #DFDFDF;
        flex-direction: column;
        justify-content: center;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .banner .bannerCapture .bannerCaptureImg img {
        height: 300px;
    }
    a.FixedWhatsapp{
        left: 10px;
        bottom: 10px;
    }
}

@media(max-width:400px) {
    .banner .bannerCapture .bannerCaptureImg img {
        height: 180px;
    }
}
