/* ========================================
======= Done By Mohamed Elshamhout ========
=======     Start 13/8/2023    ========
=========================================*/

:root {
    --primary: #F3541C;
    --secondary: #393939;
    --dark: #414141;
    --gray: #9D9D9D;
    --blueGray: #758598;
    --medium: #E2E2E2;
    --light: #F9F9F9;
    --footer: #1C1C1C;
    --containerPadding: calc(25px + 3vw);
}

@font-face {
    font-family: myFont;
    src: url(../fonts/ElMessiri-Regular.ttf);
    font-weight: 200;
}

@font-face {
    font-family: myFont;
    src: url(../fonts/ElMessiri-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: myFont;
    src: url(../fonts/ElMessiri-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: myFont;
    src: url(../fonts/ElMessiri-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: numFont;
    src: url(../fonts/HARLOWSI.TTF);
    font-weight: bold;
}

body::-webkit-scrollbar,
.scrolling ::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

body::-webkit-scrollbar-track,
.scrolling::-webkit-scrollbar-track {
    background-color: transparent;
}

body::-webkit-scrollbar-thumb,
.scrolling::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 5px;
}

body {
    font-family: myFont;
    font-weight: 400;
    background-image: url(../images/grid.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    text-align: start;
}

.myContainer {
    width: 86%;
    margin-left: 7%;
    margin-right: 7%;
}

.btn {
    box-shadow: none !important;
    height: calc(40px + 1vw);
    font-size: calc(14px + .2vw);
    font-weight: bold;
    border-radius: 10px;
    padding: 0px calc(15px + 1.5vw);
    transition: ease 1s all;
}

.btn:hover {
    transform: scale(.85);
    transition: ease 1s all;
}

.outLineBtn {
    border: 1px solid var(--gray);
}


.secBtn {
    background-color: var(--secondary);
    color: #fff;
}

.secBtn:hover {
    color: #fff;
}

.twoBtns {
    display: flex;
    align-items: center;
    margin: 0px -12px;
}

.twoBtns .btn {
    min-width: 14vw;
    margin: 12px;
}

h3.title {
    font-size: calc(22px + 1vw);
    font-weight: bold;
    color: var(--secondary);
    text-align: center;
}

h4.title {
    font-size: calc(18px + .8vw);
    font-weight: bold;
    color: var(--secondary);
    text-align: center;
}

h5.title {
    font-size: calc(16px + .15vw);
    font-weight: 500;
    color: var(--secondary);
    text-align: center;
}

.subTitle {
    font-size: calc(14px + .3vw);
    color: var(--blueGray);
    margin: 0px;
}

.borderLight {
    border-color: #fff !important;
}

/* Start navbar style  */
.navbar {
    padding: calc(10px + .5vw) 0px;
    opacity: 1;
    transition: all 0.5s ease-in;
    background: #00000000;
    background: linear-gradient(90deg, #00000000 0%, #ffffff 60%);
    background: -webkit-linear-gradient(90deg, #00000000 0%, #ffffff 60%);
    background: -moz-linear-gradient(90deg, #00000000 0%, #ffffff 60%);
}

.navbar.sticky-top.hide {
    opacity: 0;
    transform: translateY(-100%);
    transition: all 1s ease-out;
}

.smallAppBar {
    justify-content: space-between;
}

.btn.langBtn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0px;
    background-color: var(--primary);
    text-align: center;
    line-height: 32px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.navbar-toggler {
    display: inline-block;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    border-radius: 0px;
    height: 27px;
    width: 34px;
    position: relative;
}

.navbar-toggler::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background-color: #000;
    margin: auto;
}

.navbar-collapse {
    justify-content: space-between;

}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    min-height: 40px;
    height: 5vw;
}

.navbar .navbar-collapse .nav-link {
    color: var(--secondary);
    font-size: calc(13px + .1vw);
    font-weight: 500;
    padding: 10px 0px;
    position: relative;
}

.navbar .nav-item {
    margin-inline-end: 1.5vw;
    min-width: 40px;
    text-align: center;
}

.navbar .nav-item:last-of-type {
    margin-inline-end: 0px;
}

.navbar .navbar-collapse .nav-link:after {
    content: '';
    height: 2px;
    border-radius: 1px;
    background-color: transparent;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.navbar .navbar-collapse .nav-link:hover:after,
.navbar .navbar-collapse .active .nav-link:after {

    background-color: var(--primary);
    transition: ease .75s all;
}


/* End navbar style  */

/* Start intro style */
.intro {
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: -30%;
    bottom: 0;
    left: 10%;
    right: 0;
    z-index: -1;
    /* background: radial-gradient(circle at 80%, rgba(243, 84, 28, 0.2) 50%, rgba(255, 255, 255, 0)100%);
     */
    background: radial-gradient(closest-side, rgba(243, 84, 28, 0.2), rgba(255, 255, 255, 0));
}

.intro .textCol {
    padding-inline-end: 6%;
}

.intro p {
    margin: 0px;
    font-size: calc(12px + .2vw);
    color: var(--secondary);
}

.intro .preferText {
    margin-top: calc(20px + 5vw);
}

.intro .sellText {
    font-size: calc(18px + 1.65vw);
    font-weight: bold;
    color: var(--secondary);
    line-height: calc(25px + 2.25vw);
    margin: calc(20px + .5vw) 0px;
}

.intro .sellText span {
    display: block;
    color: var(--primary);
    font-size: calc(25px + 2.4vw);
    line-height: normal;
    margin-top: 1vw;

}

.intro .cloudText {
    font-size: calc(14px + .4vw);
    max-width: 500px;
}

.intro .twoBtns {
    margin: 2vw -12px;
}

.intro .easyOnline {
    color: var(--primary);
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    font-size: calc(13px + .25vw);
    width: calc((14vw * 2) + 24px);
}

.intro .row {
    flex-wrap: nowrap;
}


.intro .largeImg {
    width: 100%;
    margin-top: calc(20px + 2vw);

}

.intro .introImgs {
    position: relative;
}

.intro .smallImg {
    position: absolute;
    width: 60%;
    object-fit: contain;
    left: -20%;
    bottom: -20%;
}

/* End intro style */

/* Start Numbers style  */
.numbersOf {
    margin: calc(20px + 1vw) 0;
    background-color: #fff;
}

.numbersOf .row {
    align-items: center;
}

.number {
    background-color: #fff;
    padding: 20px 0px;
    cursor: pointer;

}


.number .title {
    color: var(--secondary);
    font-size: calc(12px + .2vw);
    font-weight: 500;
    margin: 0 0 -8px;
}

.number .description {
    display: flex;
    align-items: center;
}

.number .description span {
    font-size: calc(30px + 1vw);
    font-weight: bold;
    color: var(--secondary);
    transition: ease all .75s;
    position: relative;
}

.number .description span::after {
    content: '';
    position: absolute;
    width: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    height: 3px;
    background-color: var(--secondary);

}

.number:hover .description span {
    color: var(--primary);
    transition: ease all .75s;

}

.number:hover .description span::after {
    width: 100%;
    transition: ease all .75s;
    background-color: var(--primary);
}

.number .description p {
    padding: 0px 15px;
    margin: 0;
    width: 200px;
    max-width: 100%;
}

.number img {
    height: 13vw;
    object-fit: contain;
}

/* End Numbers style  */

/* start features style  */
.features {
    background-color: var(--light);
    padding: var(--containerPadding) 0px;
    text-align: center;
}



.features .description {
    max-width: 650px;
    margin: auto;
    font-size: calc(12px + .25vw);
    color: var(--blueGray);
    margin-bottom: calc(20px + 2vw);
}

.feature {
    text-align: center;
    padding: 20px;
    transition: ease .75s all;
}

.feature:hover {
    background-color: #00000010;
    border-radius: 15px;
    transition: ease .75s all;
    cursor: pointer;
}

.feature:hover img {
    transform: scale(1.2);
    transition: ease .75s all;
}

.feature img {
    width: 5.5vw;
    height: 5.5vw;
    min-width: 50px;
    min-height: 50px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: ease .75s all;

}

.feature p {
    font-size: calc(12px + .1vw);
    margin: 0px;
}

/* End features style  */

/* Start Your Needs Style  */
.yourNeeds {
    padding: var(--containerPadding) 0;
}

.yourNeeds h4.title {
    width: 850px;
    max-width: 100%;
    margin: 0 auto calc(15px + 1vw);
}

.yourNeeds .content {
    width: 100%;
    height: 40vw;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    /* border: 1px solid var(--blueGray); */
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);

}

.yourNeeds .row {
    margin: 0px calc(-1*(20px + 1vw));
}

.yourNeeds .row>div {
    padding: calc(20px + 1vw);
}

.yourNeeds .content .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.yourNeeds .content .secBtn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 35%;
    height: calc(50px + 1.5vw);
    padding: 0px 10px;
    font-size: calc(20px + 1vw);
    background-color: var(--dark);
}

.yourNeeds .categories {
    position: relative;
    z-index: 2;
    padding: calc(30px + 1vw) calc(15px + .3vw);
}

.categories {
    display: flex;
    flex-wrap: wrap;
}

.categories .catBtn {
    margin: calc(4px + .1vw);
}

.catBtn {
    border: 1px solid var(--dark);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    height: auto;
    border-radius: calc(30px + 1vw);
    font-size: calc(12px + .3vw);
    font-weight: 500;
}

.catBtn img {
    margin-inline-end: 10px;
    width: calc(20px + .1vw);
    height: calc(20px + .1vw);
    object-fit: contain;
}

/* End Your Needs Style  */

/* Start steps style  */
.steps {
    background-color: var(--light);
    padding: var(--containerPadding) 0 0;
}

.steps h3 span {
    font-size: calc(32px + 1.65vw);
    font-family: numFont;

}

.steps h3 {
    margin-bottom: 10px;
}

.stepsNums {
    display: flex;
    flex-wrap: wrap;
    width: 700px;
    max-width: 100%;
    margin: auto;
}

.stepsNums .step {
    text-align: center;
    padding: 0 calc(10px + .075vw);
    width: 33.33%;
    position: relative;
}

.stepsNums .step:after {
    content: '';
    width: calc(100% - (40px + 0.15vw));
    height: 2px;
    background-color: var(--gray);
    position: absolute;
    top: calc((25px + 0.15vw)/2);
    left: calc(50% + ((40px + 0.15vw)/2));

}

.stepsNums .step:last-of-type::after {
    content: none;
}

.stepsNums .step span {
    display: inline-flex;
    font-size: calc(13px + .25vw);
    font-weight: bold;
    align-items: center;
    justify-content: center;
    width: calc(25px + 0.15vw);
    height: calc(25px + 0.15vw);
    border-radius: 50%;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    margin-bottom: 20px;

}

.stepsNums .step p {
    font-size: calc(12px + .25vw);
    margin-bottom: 0px;
    color: var(--dark);
}

.steps .bg {
    background-image: url('../images/steps_1.png');
    background-position: center center;
    /* background-repeat: no-repeat; */
    background-size: contain;
    text-align: center;
    padding-top: calc(var(--containerPadding) *.8);
    margin-top: calc(var(--containerPadding) *.8);
}

.steps .bg img {
    width: 700px;
    max-width: 90%;
    margin: auto;
}

/* End steps style  */

/* Start ourClients Style   */
.ourClients {
    padding: var(--containerPadding);
    margin-top: var(--containerPadding);
    text-align: center;

}

.ourClients h3.title {
    color: #FF1C1F;
    position: relative;
    display: inline-block;
}

.ourClients h3.title::after {
    content: '';
    position: absolute;
    background-image: url(../images/icons/love_2.svg);
    width: calc(0px + 25vw);
    height: calc(50px + 4vw);
    transform: scaleX(-1);
    right: -12vw;
    top: -1vw;
    background-size: contain;
    background-repeat: no-repeat;
}

.ourClients h3.title::before {
    content: '';
    position: absolute;
    background-image: url(../images/icons/love_1.svg);
    width: calc(0px + 8vw);
    height: 7vw;
    transform: scaleX(-1);
    left: -5vw;
    top: -3vw;
    background-size: contain;
    background-repeat: no-repeat;
}

.clients {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(20px + 2vw);
    padding: 0 var(--containerPadding);

}

.clients .client {
    width: calc(33.33% - 30px);
    margin: 15px;
}


.client {
    text-decoration: none !important;
    color: var(--dark);
    display: inline-block;
    border: 1px solid var(--medium);
    border-radius: 10px;
    padding: calc(var(--containerPadding)/2) 15px;
    text-align: start;
    transition: ease .75s all;

}

.client:hover {
    background-color: #00000015;
    border-radius: 15px;
    border-color: var(--primary);
    transform: scale(.95);
    transition: ease .75s all;
}

.client .logo {
    height: calc(50px + 1vw);
}

.client .about {
    color: var(--dark) !important;
    font-size: calc(13px + .2vw);
    margin: calc(15px + 1vw) 0;
}

.clientUser {
    display: flex;

}

.clientUser img {
    width: calc(40px + .6vw);
    height: calc(40px + .6vw);
    border-radius: 50%;
    margin-inline-end: 10px;
}

.clientUser h5 {
    color: var(--secondary) !important;
    font-size: calc(14px + .2vw);
    font-weight: bold;
    margin: 0;
    overflow: hidden;
    height: calc(22px + 0.1vw);
    line-height: calc(22px + 0.1vw);

}

.clientUser p {
    margin: 0px;
    color: var(--dark) !important;
    font-size: calc(12px + .2vw);
}

/* End ourClients Style   */

/* start advantages style  */
.advantages {
    background-color: #FAEACC;
    padding: var(--containerPadding) 0;
}

.advantages .col {
    padding: 10px;
}

.advantages .title {
    text-align: start;
}

.advantages .subTitle {
    margin: calc(15px + .51vw) 0;
}

.advantages .mainImg {
    width: 90%;
    margin-inline-start: 10%;
    transform: scaleX(-1);

}

.advantages ul {
    padding: 0px;
    padding-inline-start: 10px;
    list-style: none;
}

.advantages ul li {
    font-size: calc(12px + .2vw);
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.advantages ul li img {
    margin-inline-end: 5px;
    width: calc(22px + .1vw);
    height: calc(22px + .1vw);
    object-fit: contain;
}

/* End advantages style  */


/* Start desgin style  */
.desgin {
    padding: var(--containerPadding) 0;
    text-align: center;
}

.desgin p {
    color: var(--blueGray);
    font-size: calc(13px + .3vw);
    margin: 10px 0px;
}

.desgin .row {
    display: inline-flex;
    background-color: #F3F3F3;
    border-radius: 5px;
    overflow: hidden;
    margin: calc(20px + 1vw) 0 calc(30px + 2vw);
}

.desgin .btn {
    font-size: calc(14px + .25vw);
    color: var(--dark);
    border-radius: 5px;
    padding: 0px calc(12px + 1vw);
}

.desgin .btn.active {
    background-color: var(--primary);
    color: #fff;
}

.desgin .carousel {
    width: 900px;
    max-width: 90%;
    margin: auto;
}

.carousel-control-next,
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    background-color: transparent;
    border: none;
    width: 60px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    border: 3px solid var(--dark);
    border-bottom: none;
    border-right: none;
    width: 15px;
    height: 15px;
}

.carousel-control-prev-icon {
    transform: rotate(-45deg);
}

.carousel-control-next-icon {
    transform: rotate(135deg);
}

.desgin .carousel-inner {
    width: calc(100% - 220px);
    margin: auto;
}

/* End desgin style  */

/* Start Subscripe free now  */
.subscripeNow {
    background-color: var(--primary);
    padding: var(--containerPadding) 0px;
    text-align: center;
    position: relative;

}

.subscripeNow .myContainer {
    position: relative;
    z-index: 1;
}

.subscripeNow::after {
    content: '';
    background: radial-gradient(circle at center center, #ffffff20 0%, #ffffff00 100%);
    background: -webkit-radial-gradient(circle at center center, #ffffff20 0%, #ffffff00 100%);
    background: -moz-radial-gradient(circle at center center, #ffffff20 0%, #ffffff00 100%);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 20%;
    right: 20%;
    z-index: 0;
}

.subscripeNow::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/subscribe.png);
    background-size: cover;
    opacity: .4;
    filter: brightness(.1) invert(1);
}

.subscripeNow * {
    color: #fff !important;
}

.subscripeNow h2 {
    font-size: calc(25px + 2vw);
    font-weight: bold;
    margin: 0px;
}

.subscripeNow .subTitle {
    margin: 0;
}

.subscripeNow .availables {
    margin: calc(20px + 1vw) auto;
}

.availables {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 570px;
    max-width: 90%;
    background: rgba(217, 217, 217, .1);
    border-radius: 15px;
    padding: 10px;
}


.availables .item {
    display: inline-flex;
    padding: 5px;
    color: var(--dark);
    font-size: calc(12px + .1vw);
}

.availables .item img {
    width: calc(16px + .1vw);
    height: calc(16px + .1vw);
    object-fit: contain;
    margin-inline-end: 5px;
    filter: brightness(0%) invert(1);


}


/* End Subscripe free now  */

/* Start More Features After Upgrade account  */
.moreFeatures {
    padding: var(--containerPadding) 0;
}

.moreFeatures h3.title {
    font-size: calc(21px + .8vw);
    text-align: start;
    margin-top: calc(var(--containerPadding)*1.25);


}

.moreFeatures .price {
    margin: calc(15px + 1vw) 0px calc(30px + 4vw);
    color: var(--primary);
    font-size: calc(15px + .2vw);
}

.moreFeatures .titleLink {
    margin: calc(20px + 1vw) 0;
}

.titleLink * {
    margin: 0px;
    color: var(--gray);
    font-size: calc(13px + .25vw);
    font-weight: 500;
}

.featuresGrid .item {
    text-align: center;
    background-color: var(--light);
    border-radius: 5px;
    overflow: hidden;
    margin: 10px;
    transition: ease all .75s;
}

.featuresGrid .item:hover {
    cursor: pointer;
    transform: scale(.9);
    box-shadow: 2px 2px 5px 2px #00000015;
    transition: ease all .75s;
}

.featuresGrid .item img {
    width: 100%;
    height: 11vw;
    object-fit: cover;
}

.featuresGrid .item h5 {
    padding: 0px 10px;
    color: var(--dark);
    font-size: calc(15px + .2vw);
    font-weight: 500;
    display: inline-block;
    margin: 12px 0px;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.moreFeatures .featuresGrid {
    position: relative;
}

.moreFeatures .featuresGrid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 80%;
    background: linear-gradient(90deg, #ffffff 33%, #fdfdfd74 60%, #ffffff00 100%);
    background: -webkit-linear-gradient(90deg, #ffffff 33%, #fdfdfd74 60%, #ffffff00 100%);
    background: -moz-linear-gradient(90deg, #ffffff 33%, #fdfdfd74 60%, #ffffff00 100%);
}

/* End More Features After Upgrade account  */

/* Start Contact Us Style  */
.contactUs {
    background-color: var(--light);
    padding: var(--containerPadding) 0px;

    position: relative;

}

.contactUs .bg {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;


    z-index: 0;
    width: 100%;

    transform: scaleX(-1);

}

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

.contactUs h3.title {
    text-align: start;
    margin-top: 5vw;
}

.contactUs .subTitle {
    margin-bottom: 30px;
}

.pins {
    display: flex;
    flex-wrap: wrap;
    width: 300px;
    max-width: 100%;
    margin: 0px -5px;

}

.pins .pin {
    display: inline-flex;
    align-items: center;
    background-color: #FFD6CF;
    border-radius: 10px;
    padding: 2px 8px;
    margin: 5px;
}

.pins .pin img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    margin-inline-end: 2px;
}

.pins .pin {
    font-size: calc(11px + .15vw);
    color: var(--primary);
}



.contactUs .content {
    padding-inline-end: var(--containerPadding);
}

.myForm {
    padding: calc(25px + 2vw);
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.myForm .form-group {
    width: 100%;
}

.myForm h4.title {
    color: var(--secondary);
    font-size: calc(16px + .5vw);
    margin-bottom: 25px;
    text-align: start;
}

.myForm label {
    font-size: calc(12px + .4vw);
    color: var(--blueGray);
}

.myForm .form-control {
    background-color: var(--light);
    border: none;
    /* box-shadow: none !important; */
    font-size: calc(12px + .25vw);
    resize: none;
}

.myForm .form-control:focus {
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
    transition: all ease .5s;

}

.myForm .btn {
    margin-top: 15px;
    width: 30%;
    min-width: 60px;
}

/* End Contact Us Style  */

/* start FAQs style  */
.faqs {
    text-align: center;
    padding: var(--containerPadding) 0px;
}

.accordion {
    width: 1000px;
    margin: 40px auto;
    max-width: 100%;
}

.accordion .card {
    border: none;
    margin-bottom: 15px;
}

.accordion .card-header {
    background-color: var(--light);
    border-radius: 5px;
    border: none;
    padding: 5px 20px;
}

.accordion .collapseBtn {
    padding: 0px;
    margin: 0px;
    height: auto;
    width: 100%;
    text-align: start;
    font-size: calc(12px + .5vw);
    font-weight: 400;
    color: var(--dark);
    display: flex;
    align-items: center;

}


.accordion .card-body {
    text-align: start;
    margin: 0px 3px 3px;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);

}

.accordion .collapseBtn::before {
    content: '+';
    font-size: 28px;
    font-weight: 400;
    margin-inline-end: 16px;
}



/* End FAQs style  */

/* Start footer style  */
footer {
    background-color: var(--footer);
    padding: var(--containerPadding) 0px;

}

footer * {
    color: #fff !important;
}

footer .col {
    padding: 10px !important;
}

footer .row {
    margin: 0px -10px;
}

footer .logo {
    height: calc(45px + 2vw);
    max-width: 90%;
}

footer .subTitle {
    width: 500px;
    max-width: 100%;
    margin: 20px 0 40px;
}

footer .social {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;

}

footer .social a {
    padding: 10px;
    display: block;
}

footer .social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

footer h5 {
    font-size: calc(12px + .2vw);
    font-weight: bold;
}

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

footer ul a {
    padding: 8px 0px;
    display: inline-block;
    font-size: calc(10px + .3vw);
    font-weight: 400;
}

footer ul img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-inline-end: 6px;
}

/* End footer style  */


/* Start Media Query */


@media only screen and (max-width: 1199.99px) {
    :root {

        --containerPadding: calc(18px + 2vw);
    }

    .myContainer {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .btn {
        padding: 0px calc(8px + 0.85vw);
    }

    h3.title {
        font-size: calc(18px + 1vw);
    }

    .subTitle {
        font-size: calc(13px + .2vw);
    }

    .intro .sellText {
        font-size: calc(12px + 1.25vw);
    }

    .intro .sellText span {
        font-size: calc(16px + 2vw);
        margin-top: 0.4vw;
    }

    .intro .smallImg {
        width: 50%;
        left: -10%;
        bottom: -10%;
    }

    .intro .cloudText {
        font-size: calc(13px + .25vw);
    }

    .intro .easyOnline img {
        width: 28px;

    }


    .number .description p {
        width: 100%;
        padding: 0px 8px;
    }

    .number .description span {
        font-size: calc(24px + 1vw);
    }

    .feature {
        padding: 8px;
    }

    .feature img {
        margin-bottom: 10px;
    }

    .yourNeeds .content .secBtn {
        max-width: 40%;
        height: calc(45px + 1.5vw);
        font-size: calc(13px + 1vw);
    }

    .categories .catBtn {
        margin: 3px;
    }

    .catBtn {
        padding: 5px 12px;
        font-size: calc(11px + .2vw);
    }

    .catBtn img {
        margin-inline-end: 8px;
        width: calc(16px + 0.1vw);
        height: calc(16px + 0.1vw);
    }

    .yourNeeds .categories {
        padding: calc(20px + 1vw) calc(12px + 0.3vw);
    }

    .yourNeeds .row>div {
        padding: calc(15px + 1vw);
    }

    .clients {
        margin-top: calc(18px + 1vw);
    }

    .clients .client {
        width: calc(33.33% - 16px);
        margin: 8px;
    }

    .desgin .btn {
        font-size: calc(13px + .15vw);
        padding: 0px calc(10px + 1vw);
    }

    .desgin .row {
        margin: calc(12px + .5vw) 0 calc(20px + 1vw);
    }

    .subscripeNow h2 {
        font-size: calc(18px + 1.5vw);
    }

    .moreFeatures h3.title {
        font-size: calc(16px + 1vw);
    }

    .featuresGrid .item h5 {
        font-size: calc(12px + .1vw);
        margin: 10px 0px;
    }

    .featuresGrid .item {
        margin: 5px;
    }

    .myForm {
        padding: calc(18px + 1.5vw);
    }

    footer .subTitle {
        margin: 20px 0 25px;
    }


    footer .logo {
        height: calc(40px + 1.5vw);
    }
}

@media only screen and (max-width: 991.99px) {
    .myContainer {
        width: 94%;
        margin-left: 3%;
        margin-right: 3%;
    }

    h3.title {
        font-size: calc(16px + 1vw);
    }

    .navbar .navbar-collapse .nav-link {
        font-size: calc(11px + .2vw);
    }

    .intro .preferText {
        margin-top: calc(20px + 2vw);
    }

    .intro .sellText {
        margin: calc(12px + 0.5vw) 0px;
    }

    .intro .sellText span {
        font-size: calc(13px + 1.75vw);
        margin-top: 0.2vw;
    }

    .twoBtns .btn {
        margin: 6px;
    }

    .intro .twoBtns {
        margin: 1.5vw -6px;
    }

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

    .number .description {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .number .description p {
        padding: 0px 5px;
        font-size: 13px;
    }

    .numbersOf .row {
        align-items: self-start;
    }

    .features .description {
        margin-bottom: calc(10px + 1vw);
    }

    .features .myContainer {
        width: 100%;
        margin: 0px;
    }

    .features .feature {
        padding: 6px;
    }

    .features .row {
        padding: 6px;
    }

    .features h5.title {
        font-size: calc(13px + .14vw);
    }

    .catBtn {
        padding: 4px 10px;
        font-size: calc(11px + .2vw);
    }

    .yourNeeds .categories {
        padding: 12px;
    }

    .catBtn img {
        margin-inline-end: 5px;
        width: calc(14px + 0.1vw);
        height: calc(14px + 0.1vw);
    }

    .yourNeeds .row {
        margin: 0px calc(-1*(15px + 0.5vw));
    }

    .yourNeeds .row>div {
        padding: calc(10px + 0.5vw);
    }

    .yourNeeds .content .secBtn {
        height: calc(40px + 1.5vw);
        font-size: calc(12px + .75vw);
    }

    .steps .bg img {
        width: 500px;
    }

    .clients {
        padding: 0;
    }

    .client .logo {
        height: calc(40px + 1vw);
    }


    .clientUser img {
        width: calc(34px + 0.6vw);
        height: calc(34px + .6vw);
    }

    .clientUser h5 {
        font-size: calc(12px + .1vw);
        height: calc(15px + 0.1vw);
        line-height: calc(15px + 0.1vw);
    }

    .clients .client {
        width: calc(33.33% - 10px);
        margin: 5px;
    }

    .moreFeatures h3.title {
        font-size: calc(15px + .5vw);
    }

    .contactUs {
        padding: 25px 0px;
    }

    .myForm {
        padding: calc(13px + 1.5vw);
    }

    .accordion {
        width: 800px;
    }
}

@media only screen and (max-width: 767.99px) {
    :root {
        --containerPadding: calc(10px + 1vw);
    }

    h4.title {
        font-size: calc(13px + .8vw);
    }

    h3.title {
        font-size: calc(14px + 1vw);
    }

    .intro .row {
        flex-wrap: wrap;

        overflow: hidden;

    }

    .intro .introImgs {
        width: 410px;
        max-width: 90%;
        margin: auto;
        top: -12%;
    }

    .intro p {
        font-size: calc(15px + .2vw);
    }

    .intro .textCol {
        padding-inline-end: 0;
    }

    .number {
        text-align: center;
        padding: 16px 0px;
    }

    .number img {
        width: 130px;
        height: auto;
    }

    .number .description span {
        font-size: calc(24px + 2.5vw);
    }

    .number .title {
        font-size: calc(15px + .5vw);
    }

    .features .myContainer {
        padding: 0px 16px;
    }

    .features .feature {
        padding: 12px;
    }

    .yourNeeds .content {
        height: 400px;
        max-height: 70vw;
    }

    .yourNeeds .row>div {
        padding: 10px;
    }

    .yourNeeds .row {
        /* width: 500px; */
        max-width: 100%;
        margin: 0 auto;
    }


    .stepsNums {
        flex-direction: column;
        align-items: center;
    }

    .stepsNums .step {
        padding: 0px;
        width: 280px;
        max-width: 100%;
    }

    .stepsNums .step:after {
        content: none;
    }

    .stepsNums .step span {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .steps .bg img {
        width: 450px;
        max-width: 90%;
        margin-top: 30px;
    }

    .ourClients h3.title {
        width: 65%;
    }

    .clients .client {
        width: calc(100% - 20px);
        margin: 5px auto;
        padding: 18px;
    }

    .advantages .mainImg {
        width: 430px;
        margin: auto;
        display: block;
        max-width: 80%;
    }

    .desgin .carousel {
        max-width: 100%;
    }

    .desgin .carousel-inner {
        width: calc(100% - 70px);
    }

    .desgin .btn {
        font-size: calc(11px + .15vw);
    }

    .carousel-control-next,
    .carousel-control-next:focus,
    .carousel-control-next:hover,
    .carousel-control-prev,
    .carousel-control-prev:focus,
    .carousel-control-prev:hover {
        width: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 10px;
        height: 10px;
    }

    .subscripeNow h2 {
        font-size: calc(15px + 1.5vw);
    }

    .featuresGrid .item img {
        height: 22vw;
    }

    .featuresGrid .item h5 {
        font-size: calc(15px + .1vw);
    }

    .moreFeatures .price {
        margin: 15px 0px 25px;
    }

    .myForm {
        max-width: 100%;
        width: 500px;
        margin: 30px auto 0px;

    }

    .intro .introImgs {
        top: 0;
        max-width: 80%;
        margin-bottom: 12%;
    }


    .navbar .navbar-collapse .nav-link {
        /* display: inline-block; */
        /* min-width: 150px; */
        text-align: start;
        padding: 10px 20px;
        font-size: 16px;
        color: #fff;

    }

    .navbar .navbar-collapse .nav-link:hover:after {
        content: none;
    }

    .navbar .navbar-collapse .active .nav-link:after {

        height: 1px;

    }

    .navbar-collapse {
        background-color: #00000085;

        width: 280px;
        max-width: 100%;
        height: calc(100vh - 65px);
        display: block;
        position: absolute;
        left: -280px;
        z-index: 1;
        transition: all ease-in-out .5s;
        top: 65px;

    }

    .navbar-collapse.show {
        left: 0px;
        transition: left ease-in-out .5s 0s;
    }
}

@media only screen and (max-width: 575.99px) {

    .featuresGrid .item img {
        height: 33vw;
    }
}

@media only screen and (max-width: 499.99px) {
    .yourNeeds .content .secBtn {
        margin: auto auto 15%;
    }

    .yourNeeds .align-items-end .secBtn {
        margin: 15% auto auto;
    }

}



/* Start Arabic Style  */
html[dir="rtl"] .intro .smallImg {
    left: auto;
    right: -20%;
}

html[dir="rtl"] .stepsNums .step:last-of-type::after {
    content: '';
}

html[dir="rtl"] .stepsNums .step:first-of-type::after {
    content: none;
}

html[dir="rtl"] .advantages .mainImg {
    transform: none;
}

html[dir="rtl"] .contactUs .bg {
    transform: none;
}