:root {
    --mainColor: #02529A;
    --mainColorOpacity: rgba(2, 82, 154, 46%);
    --fromMainColor: #EEF7FF;
    --blackColor: #000;
    --blackColor1: #0C0C0C;
    --blackColor2: #25314C;
    --blackColor3: rgba(0, 0, 0, 70%);
    --blackColor4: #535353;
    --blackColor5: #2F2F30;
    --blackColor6: rgba(47, 47, 48, 70%);
    --blackColor7: #1E2833;
    --blackColor8: #0A142F;
    --blackColor9: #4B4B4B;
    --grayColor: #DADADA;
    --grayColor1: #FCFCFD;
    --grayColor2: #F1F1F3;
    --errorColor: #B04F51;
    --whiteColor: #fff;
    --Font: "Almarai", serif;
}

* {
    font-family: var(--Font);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.hide {
    display: none !important;
}

.loaderContain {
    position: fixed;
    inset: 0;
    width: 100%;
    background-color: var(--fromMainColor);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    display: none;
}

/* الحاوية الرئيسية */
.loader-container {
    position: relative;
    width: 180px;
    height: 180px;
    text-align: center;
}

/* صورة الشعار */
.loader-container img {
    width: 100px;
    height: auto;
    position: absolute;
    top: 20%;
    left: 30%;
    transform: translate(-50%, -50%);
    animation: heartbeat 2s infinite;
}

/* الدائرة الدوارة */
.circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 5px solid var(--mainColor);
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: spin 2s linear infinite;
}

.circle::after {
    content: '';
    width: 5px;
    height: 24px;
    background-color: var(--mainColor);
    display: block;
    border-radius: 7px;
    position: absolute;
    right: 21px;
    top: -2px;
    transform: rotate(-15deg);
}

.circle::before {
    content: '';
    width: 5px;
    height: 24px;
    background-color: var(--mainColor);
    display: block;
    border-radius: 7px;
    position: absolute;
    left: 21px;
    bottom: -2px;
    transform: rotate(-15deg);
}

/* الحركة */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(.75);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(.75);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(.75);
    }

    100% {
        transform: scale(.75);
    }
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--grayColor);
}

body::-webkit-scrollbar-thumb {
    background: var(--mainColorOpacity);
    cursor: pointer;
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--mainColor);
}

header {
    position: relative;
    padding: 70px 0px;
    height: 85vh;
    overflow: hidden;
}

header .background {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--fromMainColor);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 50%);
}

header nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: auto;
    height: 50px;
    background-color: var(--whiteColor);
    border-radius: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.5s ease-in-out;
    z-index: 2;
    padding: 0px 20px;
}


header nav .Content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
}

header nav .Content .Logo img {
    width: 40px;
}

header nav .Content .links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

header nav .Content .links li a {
    display: block;
    text-decoration: none;
    font-size: 10px;
    white-space: nowrap;
    font-weight: bold;
    color: var(--mainColorOpacity);
    transition: all .4s ease-in-out;
}

header nav .Content .links li a:hover {
    color: var(--mainColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header nav .Content .links li a.Active {
    color: var(--mainColor);
}

header nav .Content .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

header nav .Content .buttons .buttonStyleOne,
header nav .Content .buttons .buttonStyleTow {
    padding: 0px 25px;
    margin: 0;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
    height: 32px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--mainColor);
    border-radius: 35px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

header nav .Content .buttons .buttonStyleOne {
    background-color: var(--mainColor);
    color: var(--whiteColor);
}

header nav .Content .buttons .buttonStyleOne:hover {
    background-color: transparent;
    color: var(--mainColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header nav .Content .buttons .buttonStyleTow {
    background-color: transparent;
    color: var(--mainColor);
}

header nav .Content .buttons .buttonStyleTow:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header .language {
    position: absolute;
    top: 30px;
    left: 5%;
    z-index: 2;
}

header .language .dropdown-toggle {
    background-color: transparent;
    border: none;
    color: var(--mainColor);
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
}

header .language .dropdown-toggle::after {
    display: none;
}

header .language .dropdown-menu {
    text-align: right;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    min-width: 100px;
    padding: 3px 0px;
}

header .language .dropdown-menu .dropdown-item {
    width: auto;
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
    padding: 5px 13px;
}

header .language .dropdown-menu.show {
    transform: translate3d(0px, 30px, 0px) !important;
    -webkit-transform: translate3d(0px, 30px, 0px) !important;
    -moz-transform: translate3d(0px, 30px, 0px) !important;
    -ms-transform: translate3d(0px, 30px, 0px) !important;
    -o-transform: translate3d(0px, 30px, 0px) !important;
}

header .language .dropdown-menu .dropdown-item:focus,
header .language .dropdown-menu .dropdown-item:hover,
header .language .dropdown-menu .dropdown-item.active,
header .language .dropdown-menu .dropdown-item:active {
    color: var(--mainColor);
    background-color: #f8f9fa;
}

header .mobileNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: var(--fromMainColor);
    padding: 15px;
}

header .mobileNav .rightContent img {
    width: 45px;
}

header .mobileNav .leftContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

header .mobileNav .leftContent .tryNow {
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: var(--whiteColor);
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

header .mobileNav .leftContent .tryNow:hover {
    background-color: transparent;
    color: var(--mainColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header .mobileNav .leftContent .openNav {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    color: var(--blackColor2);
    font-size: 18px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

header .mobileNav .leftContent .openNav:hover {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header .mobileNav .mobileNavMenu {
    background: rgb(2, 82, 155);
    background: linear-gradient(180deg, rgba(2, 82, 155, 1) 0%, rgba(1, 28, 53, 1) 100%);
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow: scroll;
}

header .mobileNav .mobileNavMenu .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

header .mobileNav .mobileNavMenu .head .closeNav {
    background-color: transparent;
    border: none;
    color: var(--whiteColor);
    font-size: 18px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

header .mobileNav .mobileNavMenu .head .closeNav:hover {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header .mobileNav .mobileNavMenu .head .language2 .dropdown-toggle {
    background-color: transparent;
    border: none;
    color: var(--whiteColor);
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
}

header .mobileNav .mobileNavMenu .head .language2 .dropdown-toggle::after {
    display: none;
}

header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu {
    text-align: right;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    min-width: 100px;
    padding: 3px 0px;
}

header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu .dropdown-item {
    width: auto;
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
    padding: 5px 13px;
}

header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu.show {
    transform: translate3d(0px, 30px, 0px) !important;
    -webkit-transform: translate3d(0px, 30px, 0px) !important;
    -moz-transform: translate3d(0px, 30px, 0px) !important;
    -ms-transform: translate3d(0px, 30px, 0px) !important;
    -o-transform: translate3d(0px, 30px, 0px) !important;
    left: auto !important;
    right: 0 !important;
}

header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu .dropdown-item:focus,
header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu .dropdown-item:hover,
header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu .dropdown-item.active,
header .mobileNav .mobileNavMenu .head .language2 .dropdown-menu .dropdown-item:active {
    color: var(--mainColor);
    background-color: #f8f9fa;
}

header .mobileNav .mobileNavMenu .content {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
}

header .mobileNav .mobileNavMenu .content .item {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: var(--whiteColor);
    width: 100%;
    padding: 12px 0px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

header .mobileNav .mobileNavMenu .content .item:hover {
    background-color: rgba(255, 255, 255, 20%);
    padding: 12px;
}

header .mobileNav .mobileNavMenu .footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

header .mobileNav .mobileNavMenu .footer a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--whiteColor);
    height: 45px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

header .mobileNav .mobileNavMenu .footer .buttonOne {
    color: var(--mainColor);
    background-color: var(--whiteColor);
}

header .mobileNav .mobileNavMenu .footer .buttonOne:hover {
    color: var(--whiteColor);
    background-color: transparent;
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

header .mobileNav .mobileNavMenu .footer .buttonTow {
    color: var(--whiteColor);
    background-color: transparent;
}

header .mobileNav .mobileNavMenu .footer .buttonTow:hover {
    color: var(--mainColor);
    background-color: var(--whiteColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

.mobileNav {
    opacity: 0;
    z-index: -9999999999999;
}

.boxShadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.herrorSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 10%;
}

.herrorSection .rightContent {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 42px;
    width: 50%;
}

.herrorSection .rightContent h1 {
    font-size: 50px;
    font-weight: 900;
    color: var(--blackColor);
    line-height: 1.3;
}

.herrorSection .rightContent p {
    font-size: 16px;
    color: var(--blackColor);
    font-weight: 400;
}

.buttonGeneralStyle {
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: var(--whiteColor);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 16px;
    font-weight: bolder;
    padding: 0px 70px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.buttonGeneralStyle:hover {
    background-color: transparent;
    color: var(--mainColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

.herrorSection .leftContent {
    width: 50%;
    display: block;
    position: relative;
}

header .herrorPhoto {
    width: 50%;
    position: absolute;
    top: 5%;
    left: -100px;
    z-index: 1;
}

/* .herrorSection .leftContent img {
    width: auto;
    position: absolute;
    left: -70%;
    bottom: -430px;
    z-index: 1;
    -moz-animation: float 3s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: float 3s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: float 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
} */

/* @keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -ms-transform: translatey(0px);
        -o-transform: translatey(0px);
    }
} */

.pageHead {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 15vh;
    padding-bottom: 20%;
}

.pageHead h1 {
    font-size: 50px;
    font-weight: 900;
    color: var(--blackColor);
    text-align: center;
    line-height: 1.8;
}

.pageHead p {
    font-size: 16px;
    font-weight: 400;
    color: var(--blackColor9);
    text-align: center;
}

.sectionHead {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
}

.sectionHead p {
    font-size: 15px;
    color: var(--mainColor);
}

.sectionHead h1 {
    font-size: 40px;
    font-weight: bold;
    color: var(--blackColor1);
}

.sectionHead span {
    height: 2px;
    background-color: var(--grayColor);
    width: 200px;
    margin-top: 25px;
}

.Features {
    margin-top: 0;
}

.Features .content,
.DesignStore .content {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
}

.Features .rightContent {
    width: 100%;
}

.featuresButtons {
    margin-top: 30px;
}

.featuresButtons .item {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 25px;
    background-color: var(--whiteColor);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-top: 15px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.featuresButtons .item:hover {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    background-color: var(--fromMainColor);
}

.featuresButtons .item.Active:hover {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.featuresButtons .item:first-child {
    margin: 0;
}

.featuresButtons .item button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    padding: 5px 0px;
    background-color: transparent;
    border: none;
    outline: none;
}

.featuresButtons .item button .number {
    font-size: 14px;
    color: var(--blackColor);
}

.featuresButtons .item button i {
    font-size: 17px;
    color: var(--blackColor2);
}

.customRoutat {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.featuresButtons .item button .text {
    font-size: 20px;
    font-weight: 400;
    color: var(--blackColor3);
}

.featuresButtons .item .description {
    font-size: 16px;
    font-weight: 400;
    color: var(--whiteColor);
    margin-top: 20px;
    display: none;
}

.featuresButtons .item.Active {
    background-color: var(--mainColor);
}

.featuresButtons .item.Active .description {
    display: block;
}

.featuresButtons .item.Active button .text,
.featuresButtons .item.Active button i,
.featuresButtons .item.Active button .number {
    color: var(--whiteColor);
}

.Features .leftContent {
    width: 100%;
}

.Features .leftContent .featureImege {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.Features .leftContent .featureImege img {
    width: 100%;
}

.Features .leftContent .featureImege #img2,
.Features .leftContent .featureImege #img3 {
    display: none;
}

.partners,
.DesignStore,
.storeModels,
.numbers,
.customerReviews,
.tryFree,
footer {
    margin-top: 90px;
}

.partners .content {
    margin-top: 30px;
    background-color: var(--grayColor1);
    border-top: 1px solid var(--grayColor2);
    border-bottom: 1px solid var(--grayColor2);
    padding: 30px 0px;
}

.partners .content .partnersLogos .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .content .partnersLogos .item img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.DesignStore .rightContent,
.DesignStore .leftContent {
    width: 50%;
}

.DesignStore .rightContent .DesignStorePhotos .item img {
    width: 100%;
}

.DesignStore .leftContent .description {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--blackColor4);
}

.DesignStore .leftContent .buttonGeneralStyle {
    width: 50%;
    margin-top: 20px;
    padding: 0px;
}

.DesignStore .leftContent .clinentsNumbers {
    width: 100%;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 10px;
    background-color: var(--whiteColor);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    margin-top: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 1;
}

.clinentsNumbersContain {
    position: relative;
}

.DesignStore .leftContent .clinentsNumbers div p {
    font-size: 17px;
    font-weight: bold;
    color: var(--blackColor5);
}

.DesignStore .leftContent .clinentsNumbers div span {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    color: var(--blackColor6);
}

.DesignStore .leftContent .clinentsNumbersContain .shap1,
.DesignStore .leftContent .clinentsNumbersContain .shap2 {
    position: absolute;
    left: 50%;
    height: 100%;
    transform: translate(-50%, 0);
    background-color: var(--whiteColor);
    border-radius: 4px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.DesignStore .leftContent .clinentsNumbersContain .shap1 {
    top: 7px;
    width: 97%;
    z-index: 1;
}

.DesignStore .leftContent .clinentsNumbersContain .shap2 {
    top: 14px;
    width: 94%;
    z-index: 0;
}

.DesignStorePhotos .owl-dots,
.storeModelsSamples .owl-dots,
.customerReviewsCarousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 14px;
}

.DesignStorePhotos .owl-dots .owl-dot,
.storeModelsSamples .owl-dots .owl-dot,
.customerReviewsCarousel .owl-dots .owl-dot {
    background-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.DesignStorePhotos .owl-dots .owl-dot span,
.storeModelsSamples .owl-dots .owl-dot span,
.customerReviewsCarousel .owl-dots .owl-dot span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--fromMainColor);
    border-radius: 50%;
}

.DesignStorePhotos .owl-dots .owl-dot.active,
.storeModelsSamples .owl-dots .owl-dot.active,
.customerReviewsCarousel .owl-dots .owl-dot.active {
    border: 1px solid var(--mainColor);
}

.DesignStore .forSmall {
    display: none;
}

.storeModels .storeModelsSamples .item {
    display: flex;
    justify-content: center;
    padding: 30px 0px;
}

.storeModels .storeModelsSamples .item .card,
.storesExamples .item .card {
    background-color: var(--whiteColor);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
    border-radius: 16px;
    border: none;
    width: 192px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.storeModels .storeModelsSamples .item .card:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.storeModels .storeModelsSamples .item .card img,
.storesExamples .item .card img {
    width: 134px;
    height: 134px;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.storeModels .storeModelsSamples .item .card .customerData,
.storesExamples .item .card .customerData {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.storeModels .storeModelsSamples .item .card .customerData p,
.storesExamples .item .card .customerData p {
    font-size: 10px;
    font-weight: 900;
    color: var(--blackColor);
    text-align: center;
}

.storeModels .storeModelsSamples .item .card .customerData span,
.storesExamples .item .card .customerData span {
    font-size: 8px;
    font-weight: 400;
    color: var(--blackColor4);
}

.storeModels .storeModelsSamples .item .card .storeLinks,
.storesExamples .item .card .storeLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
}

.storeModels .storeModelsSamples .item .card .storeLinks a,
.storesExamples .item .card .storeLinks a {
    text-decoration: none;
    display: block;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.storeModels .storeModelsSamples .item .card .storeLinks a:hover,
.storesExamples .item .card .storeLinks a:hover {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.storeModels .storeModelsSamples .item .card .storeLinks svg,
.storesExamples .item .card .storeLinks svg {
    width: 17px;
    height: 17px;
}

.numbers .content {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 29px;
}

.numbers .content .item {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 15px 20px;
    background-color: var(--fromMainColor);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-height: 188px;
}

.numbers .content .item svg {
    width: 55px;
    height: 55px;
}

.numbers .content .item .data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
}

.numbers .content .item .data p {
    font-size: 39px;
    font-weight: 400;
    color: var(--blackColor);
}

.numbers .content .item .data p span {
    color: var(--mainColor);
}

.numbers .content .item .data .ex {
    font-size: 15px;
    font-weight: 400;
    color: var(--blackColor3);
}

.customerReviews .content {
    margin-top: 0px;
}

.customerReviews .content .customerReviewsCarousel .item {
    padding: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customerReviews .card {
    background-color: var(--whiteColor);
    padding: 15px;
    border: none;
    width: 90%;
    position: relative;
    overflow: hidden;
    transition: all .4s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.customerReviews .card .bacGround {
    width: 600px;
    height: 300px;
    background-color: var(--fromMainColor);
    position: absolute;
    top: -190px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.customerReviews .card .contentData {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    z-index: 1;
}

.customerReviews .card .contentData img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.customerReviews .card .contentData .userInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
}

.customerReviews .card .contentData .userInfo p {
    font-size: 13px;
    font-weight: 900;
    color: var(--blackColor);
    text-align: center;
}

.customerReviews .card .contentData .userInfo span {
    font-size: 9px;
    font-weight: 400;
    color: var(--blackColor3);
    text-align: center;
}

.customerReviews .card .contentData .reviewContent {
    text-align: center;
}

.customerReviews .card .contentData .reviewContent span {
    display: inline-block;
    padding: 0px 2px;
    color: var(--blackColor);
    font-size: 14px;
}

.customerReviews .card .contentData .reviewContent p {
    display: inline;
    padding: 0px 2px;
    color: var(--blackColor);
    font-size: 14px;
    text-align: center;
}

.tryFree .content {
    background-color: var(--mainColor);
    border: none;
    min-height: 204px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 30px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    position: relative;
}

.tryFree .content .bacGround {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
}

.tryFree .content p {
    font-size: 28px;
    font-weight: bold;
    color: var(--whiteColor);
    z-index: 1;
}

.tryFree .content a {
    z-index: 1;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    color: var(--mainColor);
    border: 1px solid var(--whiteColor);
    background-color: var(--whiteColor);
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.tryFree .content a:hover {
    background-color: transparent;
    color: var(--whiteColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

.tryFree .content .smallBackground {
    display: none;
}

footer {
    background-color: var(--fromMainColor);
    padding: 30px 0px;
}

footer .content .logo img {
    width: 80px;
}

footer .content .links {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

footer .content .links .right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

footer .content .links .right a {
    font-size: 15px;
    font-weight: 400;
    color: var(--blackColor7);
    text-decoration: none;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

footer .content .links .right a:hover {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    color: var(--mainColor);
}

footer .content .links .right a.Active {
    color: var(--mainColor);
    border-bottom: 1px solid #02529B;
}

footer .content .links .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

footer .content .links .left a {
    width: 36px;
    height: 36px;
    text-decoration: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blackColor);
    color: var(--blackColor);
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

footer .content .links .left a:hover {
    background-color: var(--mainColorOpacity);
    border-color: var(--mainColorOpacity);
    color: var(--whiteColor);
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

footer .content .border {
    width: 100%;
    height: 2px;
    background-color: var(--blackColor3);
    margin-top: 50px;
}

footer .content .copyRights {
    margin-top: 20px;
    font-size: 14px;
    text-align: right;
    width: 100%;
    font-weight: 400;
    color: var(--blackColor8);
}

.backTop {
    position: fixed;
    left: 40px;
    bottom: 20%;
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: var(--whiteColor);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: none;
    font-size: 18px;
    transition: all .4s ease-in-out;
    z-index: 1;
    opacity: .4;
}

.backTop:hover {
    background-color: transparent;
    color: var(--mainColor);
    opacity: 1;
}

.switch label {
    font-weight: normal;
    cursor: pointer;
    display: inline-block;
    touch-action: manipulation;
}

.switch label input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    box-sizing: border-box;
    padding: 0;
}

.switch [type="checkbox"]:not(:checked),
.switch [type="checkbox"]:checked {
    position: absolute;
    right: -9999px;
    opacity: 0;
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    width: 32px;
    height: 18px;
    background-color: var(--fromMainColor);
    border-radius: 15px;
    transition: all .4s ease-in-out;
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: var(--whiteColor);
    border-radius: 21px;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
    left: 2px;
    top: 1.6px;
    transition: all .4s ease-in-out;
}

.switch label input[type="checkbox"]:checked+.lever {
    background-color: var(--mainColor);
}

.switch label input[type="checkbox"]:checked+.lever:after {
    background-color: var(--whiteColor);
}

.switch label input[type="checkbox"]:checked+.lever:after {
    left: 15px;
}

.pricingPlan,
.theTerms,
.contactUs,
.faqs,
.storesExamples {
    margin-top: -14%;
}

.pricingPlan .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

.pricingPlan .head .right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
}

.pricingPlan .head .right svg {
    width: 18px;
    height: 18px;
}

.pricingPlan .head .right svg path {
    fill: var(--mainColor);
}

.pricingPlan .head .right p {
    font-size: 16px;
    font-weight: 900;
    color: var(--mainColor);
}

.pricingPlan .head .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
}

.pricingPlan .head .left .monthly,
.pricingPlan .head .left .yearly {
    font-size: 16px;
    font-weight: 900;
    color: var(--blackColor);
}

.pricingPlan .head .left .Active {
    color: var(--mainColor);
}

.plans {
    margin-top: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.plans .plan {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--grayColor);
    transition: all .4s ease-in-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.plans .plan:hover {
    border: 1px solid var(--mainColor);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transform: scale(1.05);
}

.plans .plan .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: auto;
}

.plan .head .tittle {
    font-size: 24px;
    font-weight: 400;
    color: var(--blackColor);
}

.plan .head .discount {
    font-size: 10px;
    font-weight: bold;
    color: var(--mainColor);
    background-color: rgba(2, 82, 155, 30%);
    width: auto;
    padding: 5px 10px;
    border-radius: 35px;
}

.plan .head .discount span {
    text-decoration: line-through;
}

.plan .price {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 5px;
}

.plan .price .mainPrice {
    position: relative;
    font-size: 40px;
    color: var(--blackColor);
    font-weight: 900;
    margin-right: 10px;
}

.plan .price .mainPrice .currency {
    font-size: 24px;
    font-weight: 400;
    color: var(--blackColor);
    position: absolute;
    top: 0;
    right: -15px;
}

.plan .price .discount {
    font-size: 16px;
    font-weight: 600;
    color: var(--blackColor5);
    text-decoration: line-through;
}

.plan .price .every {
    font-size: 16px;
    font-weight: 600;
    color: var(--blackColor5);
}

.plan .features {
    margin-top: 30px;
}

.plan .features ul {
    list-style: none;
    padding: 0px;
}

.plan .features ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: auto;
    margin-top: 30px;
}

.plan .features ul li p {
    font-size: 14px;
    font-weight: 600;
    color: var(--mainColor);
}

.plan .features ul li i {
    font-size: 14px;
    color: var(--mainColor);
}

.plan .action {
    margin-top: 30px;
}

.plan .action a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: var(--whiteColor);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    width: 100%;
    height: 34px;
    white-space: nowrap;
    gap: 5px;
}

.plan .action a:hover {
    background-color: transparent;
    color: var(--mainColor);
}

.plans .plan.special {
    background-color: var(--mainColor);
}

.plans .plan.special .head .tittle,
.plans .plan.special .mainPrice .currency,
.plans .plan.special .price .discount,
.plans .plan.special .price .every,
.plans .plan.special .features ul li p,
.plans .plan.special .features ul li i,
.plans .plan.special .price .mainPrice {
    color: var(--whiteColor);
}

.plans .plan.special .head .discount {
    color: var(--mainColor);
    background-color: var(--whiteColor);
}

.plans .plan.special .action a {
    background-color: var(--whiteColor);
    color: var(--mainColor);
    border-color: var(--whiteColor);
}

.plans .plan.special .action a:hover {
    background-color: transparent;
    color: var(--whiteColor);
}

.contactData {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.contactData .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

.contactData .border {
    height: 48px;
    width: 1px;
    background-color: #E1E4ED;
}

.contactData .item .icon {
    width: 48px;
    height: 48px;
    border: 3px solid #EEEEEE;
    background-color: var(--whiteColor);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blackColor2);
}

.contactData .item .data {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
}

.contactData .item .data h3 {
    font-size: 14px;
    font-weight: 400;
    color: #6D758F;
}

.contactData .item .data p,
.contactData .item .data a {
    font-size: 14px;
    font-weight: 600;
    color: var(--blackColor);
    text-decoration: none;
}

.contactForm {
    margin-top: 40px;
    border: 2px solid #E1E4ED;
    padding: 90px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.contactForm .right,
.contactForm .left {
    width: 100%;
}

.contactForm .right h1 {
    font-size: 20px;
    font-weight: 900;
    color: var(--blackColor);
}

.contactForm .right p {
    font-size: 16px;
    font-weight: 400;
    color: #6D758F;
    border-bottom: 1px solid #F1F3F7;
    padding-bottom: 20px;
    display: inline-block;
}

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

.contactForm .left .form-group label {
    font-size: 14px;
    color: var(--blackColor);
    font-weight: 600;
    padding-bottom: 5px;
}

.contactForm .left .form-group .form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #F1F3F7;
    border-radius: 6px;
    padding: 0px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--blackColor);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.form-control:focus {
    border-color: var(--mainColor) !important;
    box-shadow: none;
}

.contactForm .left .form-group textarea.form-control {
    resize: none;
    height: 92px;
    padding: 15px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.contactForm .left .submitForm {
    background-color: var(--mainColor);
    font-size: 14px;
    font-weight: 600;
    color: var(--whiteColor);
    border: 1px solid var(--mainColor);
    border-radius: 6px;
    height: 40px;
    text-align: center;
    width: 30%;
    transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contactForm .left .submitForm:hover {
    background-color: transparent;
    color: var(--mainColor);
}

.faqs .content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.faqs .content .right {
    width: 40%;
}

.faqs .content .left {
    width: 50%;
}

.faqs .content .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
}

.faqs .content .right button {
    width: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #4A4C51;
    font-size: 18px;
    font-weight: 800;
    padding: 20px;
    border-bottom: 1px solid #E1E4ED;
    transition: all .4s ease-in-out;
    text-align: right;
    position: relative;
    z-index: 1;
}

.faqs .content .right button.Active {
    color: var(--mainColor);
    border-bottom-color: var(--mainColor);
}

.faqs .content .right button.Active:hover {
    color: var(--mainColor);
    border-bottom-color: var(--mainColor);
}

.faqs .content .right button:hover {
    color: var(--mainColorOpacity);
    border-bottom-color: var(--mainColorOpacity);
    transform: scale(1.1);
}

.faqs .content .left .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 10px;
}

.faqs .content .left .item .question {
    padding: 20px;
    border: 1px solid #E1E4ED;
    border-radius: 6px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.faqs .content .left .item .question .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
}

.question .head h3 {
    font-size: 16px;
    font-weight: 800;
    color: #4A4C51;
}

.question .head button {
    background-color: transparent;
    border: none;
    color: #4A4C51;
    font-size: 16px;
    cursor: pointer;
}

.question .head button:hover {
    color: var(--mainColor);
}

.question .content {
    margin-top: 11px;
    display: none;
}

.question .content p {
    font-size: 14px;
    font-weight: 400;
    color: #4A4C51;
}

.loginContainer {
    position: relative;
}

.loginBackground {
    clip-path: polygon(0 0, 50% 0, 25% 100%, 0% 100%);
    background-color: var(--fromMainColor);
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    min-height: 100vh;
    height: 100%;
    width: 100%;
}

.loginNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 1.5% 0px;
    position: relative;
    z-index: 2;
}

.loginNav .logo img {
    width: 80px;
}

.loginNav .language .dropdown-toggle {
    background-color: transparent;
    border: none;
    color: var(--mainColor);
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
}

.loginNav .language .dropdown-menu {
    text-align: right;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    min-width: 100px;
    padding: 3px 0px;
}

.loginNav .language .dropdown-toggle::after {
    display: none;
}

.loginNav .language .dropdown-menu .dropdown-item {
    width: auto;
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
    padding: 5px 13px;
}

.loginNav .language .dropdown-menu.show {
    transform: translate3d(0px, 30px, 0px) !important;
}

.loginNav .language .dropdown-menu .dropdown-item:focus,
.loginNav .language .dropdown-menu .dropdown-item:hover,
.loginNav .language .dropdown-menu .dropdown-item.active,
.loginNav .language .dropdown-menu .dropdown-item:active {
    color: var(--mainColor);
    background-color: #f8f9fa;
}

.authFormat {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20%;
    flex-direction: row;
    flex-wrap: nowrap;
}

.loginContain,
.resetPasswordContain {
    margin-top: 90px;
}

.authFormat .right,
.authFormat .left {
    width: 100%;
}

.formHead {
    font-size: 32px;
    font-weight: 600;
    color: var(--blackColor);
}

.authFormat .form-group {
    margin-top: 24px;
    width: 100%;
}

.form-group label {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    padding-bottom: 8px;
}

.form-group label i {
    margin-left: 5px;
}

.form-group input {
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    padding: 0px 10px;
    height: 50px;
    border: 1px solid rgba(102, 102, 102, 35%);
    color: #373737;
}

.inputPhoneNumber,
.inputDomainInput {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    border: 1px solid rgba(102, 102, 102, 35%);
    border-radius: 12px;
    padding: 0px 10px;
    height: 55px;
    overflow: visible;
    position: relative;
}

.inputPhoneNumber input,
.inputDomainInput input {
    border: none;
    padding: 0px;
    direction: ltr;
    text-align: right;
}

.inputPhoneNumber .dropdown-toggle {
    outline: none !important;
    background: none;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.inputPhoneNumber .input-group-btn {
    padding-left: 10px;
}

.inputPhoneNumber .input-group-btn .dropdown-toggle .emoji img {
    width: 30px;
    padding-right: 10px;
    display: inline-block;
}

.inputPhoneNumber .input-group-btn .dropdown-toggle .emoji {
    font-size: 10px;
    color: #313144;
}

.inputPhoneNumber .input-group-btn .dropdown-toggle {
    padding: 0;
}

.inputPhoneNumber .input-group-btn .dropdown-toggle::after {
    display: none;
}

.inputPhoneNumber .input-group-btn .dropdown-toggle::before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: 0;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: #313144;
}

.inputPhoneNumber .input-group-btn .dropdown-menu li a .flag-emoji img {
    width: 30px;
}

.inputPhoneNumber .input-group-btn .dropdown-menu li a span {
    font-size: 12px;
}

.inputPhoneNumber .input-group-btn .dropdown-menu .dropdown-item {
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
}

.inputPhoneNumber .form-group .input-group-btn .dropdown-menu {
    max-height: 200px;
    overflow-x: hidden;
    min-width: 290px;
}

.passwordInputContainer {
    position: relative;
}

.passwordInputContainer .show_pass {
    position: absolute;
    left: 13px;
    top: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: rgba(102, 102, 102, 80%);
    padding: 0;
    font-size: 16px;
    transform: translateY(20%);
}

.loginForm .resetPassword {
    margin-top: 16px;
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 400;
    transition: all .4s ease-in-out;
    color: var(--mainColorOpacity);
    padding: 0;
}

.loginForm .resetPassword:hover {
    color: var(--mainColor);
    transform: scale(.95);
}

.submitForms {
    width: 100%;
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: var(--whiteColor);
    font-size: 22px;
    font-weight: 400;
    border-radius: 10px;
    height: 60px;
    text-align: center;
    margin-top: 24px;
    transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submitForms:hover {
    background-color: transparent;
    color: var(--mainColor);
    transform: scale(.95);
}

.loginInfo .infoHead {
    font-size: 39px;
    font-weight: 400;
    text-align: center;
    color: var(--blackColor);
}

.loginInfo .infoText {
    text-align: center;
    margin-top: 25px;
    font-size: 19px;
    color: var(--blackColor);
}

.loginImage {
    margin-top: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.loginImage img {
    width: auto;
    max-width: 100%;
    max-height: 50vh;
}

.errorInput {
    border-color: var(--errorColor) !important;
}

.availableInput input {
    color: #219880 !important;
}

.errorText {
    color: var(--errorColor);
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
}

.availableDomain {
    color: #219880;
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
}

.backButton {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: var(--fromMainColor);
    color: var(--mainColor);
    font-size: 20px;
    margin-bottom: 24px;
    transition: all .4s ease-in-out;
}

.backButton:hover {
    transform: scale(.95);
}

.codeInput {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    direction: ltr;
}

.codeInput input {
    width: 70px;
    height: 70px;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    outline: none !important;
}

.codeInput input:focus {
    border-color: #C8F9E8 !important;
    box-shadow: 0 0 0 .25rem rgba(200, 249, 232, .80);
}

.codeInput input:focus-visible {
    border-color: #C8F9E8 !important;
}

/* .codeErrored input {
    border: 3px solid #D7A9A9;
}

.codeErrored input:focus {
    border-color: #D7A9A9 !important;
    box-shadow: none !important;
}

.codeErrored input:focus-visible {
    border-color: #D7A9A9 !important;
} */

.codeNote {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--blackColor4);
}

.resendCode {
    margin-top: 24px;
    color: var(--blackColor1);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.resendCode span {
    color: var(--mainColor);
}

.resetDone .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
    min-height: 70vh;
}

.noAccount {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--blackColor);
}

.noAccount a {
    color: var(--blackColor1);
    font-weight: 600;
    text-decoration: underline;
    transition: all .4s ease-in-out;
    cursor: pointer;
    display: inline-block;
}

.noAccount a:hover {
    transform: scale(.85);
}

.resetPasswordContain,
.resetStep2,
.resetStep3,
.resetDone,
.sinDone,
.sinStep2,
.sinStep3 {
    display: none;
}

.try7Days {
    display: block;
    margin-top: 10px;
    color: var(--mainColor);
    font-size: 16px;
    font-weight: 600;
}

.Terms_Conditions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-top: 24px;
    gap: 6px;
}

.Terms_Conditions .form-check {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 6px;
}

.Terms_Conditions .form-check-input[type=checkbox] {
    float: none;
    margin: 0;
    padding: 0;
}

.Terms_Conditions .form-check-label {
    font-size: 16px;
    color: var(--blackColor);
    font-weight: 400;
    cursor: pointer;
}

.Terms_Conditions .form-check-input {
    width: 16px;
    height: 16px;
    border: 2px solid #999999;
    cursor: pointer;
    box-shadow: none !important;
}

.Terms_Conditions .form-check-input:checked {
    background-color: var(--mainColor);
    border: none;
}

.Terms_ConditionsModal {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--mainColor);
    cursor: pointer;
    padding: 0;
}

.modal-content {
    border: none;
    border-radius: 15px;
    padding: 0px 24px;
}

.modal-header {
    padding: 24px;
    border: none;
    justify-content: flex-end;
    padding-bottom: 0px;
}

.modal-header button {
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    background: #8d8d8d69;
    border: 1px solid #8d8d8d69;
    COLOR: #8d8d8d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}

.modal-header button:hover {
    background: transparent;
}

.modal-body {
    padding: 24px;
    padding-top: 10px;
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: scroll;
    direction: ltr;
}

.modal-body h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blackColor);
    padding-bottom: 30px;
    text-align: center;
}

.modal-body p {
    font-size: 16px;
    font-weight: 400;
    color: var(--blackColor3);
    margin-bottom: 30px;
    text-align: center;
}

/* width */
.modal-body::-webkit-scrollbar {
    width: 14px;
}

/* Track */
.modal-body::-webkit-scrollbar-track {
    background: #F0F0F0;
    border-radius: 16px;
    width: 10px !important;
    cursor: pointer;
}

/* Handle */
.modal-body::-webkit-scrollbar-thumb {
    background: var(--mainColorOpacity);
    border-radius: 16px;
}

/* Handle on hover */
.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--mainColor);
    cursor: pointer;
}

.modal-footer {
    border: none;
}

.modal-footer .submitForms {
    font-size: 14px;
    height: 40px;
}

.inputDomainInput .fixedDomain {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px dashed var(--mainColor);
    padding-left: 10px;
}

.inputDomainInput .fixedDomain span {
    color: var(--mainColor);
    font-size: 16px;
    font-weight: 800;
}

.fixedDomain .form-select {
    border: none;
    background-color: transparent;
    width: auto;
    padding: 0;
    background-position: right -0.12rem center;
    /* padding-right: 15px; */
    background-image: none;
    font-size: 16px;
    font-weight: bold;
    color: var(--mainColor);
    cursor: not-allowed;
}

#thirdUserDomainName {
    text-align: left;
}

#countdown {
    color: var(--mainColor);
}

.resend_code,
.reset_resend_code {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: var(--mainColor);
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.resend_code:hover,
.reset_resend_code:hover {
    transform: scale(.95);
}

.resend_time {
    text-align: center;
    margin-top: 24px;
    font-size: 16px;
    color: var(--blackColor1);
    font-weight: 400;
}

.sinDone {
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 1;
}

.sinDone .contain {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 90px;
    height: 100%;
    margin: 50px 0px;
}

.sinDone .contain h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--mainColor);
    text-align: center;
}

/* .sinDone .contain img {
    width: 130px;
} */

.sinup {
    padding-bottom: 50px;
}

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

.sinDone .contain ul li p {
    font-size: 24px;
    font-weight: 600;
    color: var(--mainColor);
    text-align: center;
}

.sinDone .contain ul li {
    display: none;
}

.waitingText li.active {
    display: block;
}

.resetNote {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--blackColor4);
    display: block;
}

.otpSent {
    margin-top: 50px;
    text-align: center;
}

.otpSent p {
    font-size: 24px;
    font-weight: bold;
    color: var(--blackColor4);
    text-align: center;
    padding: 0;
    margin: 0;
}

.otpSent p span {
    display: inline;
    padding: 0px 5px;
    text-align: center;
}

.otpSent button {
    margin-top: 24px;
    text-align: center;
    display: inline-block;
    background-color: transparent;
    border: none;
    color: var(--mainColor);
    font-size: 16px;
    font-weight: 400;
    transition: all .4s ease-in-out;
}

.otpSent button:hover {
    transform: scale(.95);
}

.storesExamples .item {
    width: calc(100% / 5.5);
}

.storesExamples .item .card {
    width: 100% !important;
    margin-bottom: 20px;
}

.storesExamples .contain {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.moreExample {
    display: flex;
    align-items: center;
    justify-content: center;
}

.moreExample a {
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--mainColor);
    display: block;
    transition: all .4s ease-in-out;
}

.moreExample a:hover {
    transform: scale(1.1);
}

.contactUs {
    position: relative;
    z-index: 1;
}

.loginButton .Text {
    transition: opacity 0.3s ease;
}

.loginButton .loader {
    opacity: 0;
    gap: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.loginButton .dot {
    width: 8px;
    height: 8px;
    background-color: var(--mainColor);
    border-radius: 50%;
    animation: bounceZigzag 1s infinite ease-in-out;
}

.loginButton .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loginButton .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounceZigzag {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(4px);
    }

    75% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

.showDots {
    opacity: 1 !important;
}

.loginLoading {
    position: relative;
    background-color: #CAD1E9 !important;
    border-color: #CAD1E9 !important;
    transform: scale(1) !important;
    cursor: not-allowed !important;
}
