﻿@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Cairo", sans-serif;
    background-color: rgb(240, 249, 237);
}
html {
    scroll-behavior: smooth;
}
.hero {
    width: 100%;
    height: auto;
    background: url('../img/top-bg.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
}
.hero .hero-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero .hero-header img {
    max-width: 100px;
}
.hero .hero-left, .hero .hero-right {
    width: 50%;
} 
.hero-right {
    padding: 40px;
    padding-top: 0;
}
.hero-right h3 {
    color: #1ea67e;
    font-weight: 400;
    font-size: 48px;
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
    direction: ltr !important;
}
.hero-right p {
    color: #1ea67e;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    line-height: 28px;
    margin-bottom: 20px;
    direction: ltr !important;
}
.hero-right img {
    display: none;
}
.hero-left {
    display: flex;
    align-items: flex-end;
}
.hero .hero-left img {
    width: 95%;
}
form {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #fff;
	position: relative;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 50px -12px, rgba(0, 0, 0, 0.04) 0px 13px 50px;
}
form h3 {
    color: #1ea67e;
    font-weight: 600 !important;
    font-size: 29px !important;
    line-height: 1;
    direction: ltr !important;
}
form h3::after {
    content: "";
    position: absolute;
    top: 78px;
    right: 12px;
    width: 78px;
    height: 50px;
    background-image: url('../img/form-arrow.webp');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotateX(0deg) rotateY(7deg) rotateZ(69deg);
}
form .content {
	width: 40%;
}
form input,form button {
    direction: ltr !important;
}
.inputName {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.inputName input {
	border: 1px solid #a3a3a3;
	border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
	outline: none;
	background: transparent;
	padding: 10px;
	width: 100%;
	margin-top: 10px;
}
form input[type='email'] {
	border: 1px solid #a3a3a3;
	border-radius: 10px;
	font-size: 18px;
    font-weight: 400;
	outline: none;
	background: transparent;
	padding: 10px;
	margin-top: 10px;
	width: 100%;
}
.phone {
	position: relative;
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
    direction: ltr;
}
.phone input {
	border: 1px solid #a3a3a3;
	border-radius: 10px;
	font-size: 18px;
    font-weight: 400;
	outline: none;
	background: transparent;
	padding: 10px;
	width: 75%;
    direction: rtl;
}
.phone .search-container {
	position: relative;
	width: 100%;
	height: 50px;
	background: #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}
.phone .search-container .search {
	width: 90%;
	height: 60%;
}
.phone .search-container .fa-times{
    position: absolute;
	right: 30px;
	display: none;
}
form .submit {
	color: white;
	border-radius: 5px;
	outline: none;
	padding: 18px 0px;
	cursor: pointer;
    background: rgb(30, 166, 126);
	font-size: 20px;
    width: 100%;
    height: 56px;
	margin-top: 10px;
	margin-bottom: 10px;
    border: none;
    transition: all 0.3s ease 0s;
}
form .submit:hover {
    transform: scale(1.07);
}
.isValid {
	box-shadow: inset 0 0px 10px rgba(40, 209, 70, 0.5);
	-webkit-box-shadow: inset 0 0px 10px rgba(40, 209, 70, 0.5);
	-moz-box-shadow: inset 0 0px 10px rgba(40, 209, 70, 0.5);
}

.form .notValid {
	/*
    box-shadow: inset 0 0px 10px rgba(251, 16, 16, 0.5);
    -webkit-box-shadow: inset 0 0px 10px rgba(251, 16, 16, 0.5);
    -moz-box-shadow: inset 0 0px 10px rgba(251, 16, 16, 0.5); 
*/
	border: 3px solid rgb(194, 20, 20);
}
.custom-select {
	border: 1px solid #ccc;
	padding: 5px;
	cursor: pointer;
	width: 23%;
	border-radius: 10px;
	background: transparent;
	border: 1px solid #a3a3a3;
    font-size: 18px;
    font-weight: 400;
	color: #000;
}

.selected-option {
	display: flex;
	align-items: center;
    justify-content: space-around;
}

.options {
	position: absolute;
	list-style: none;
	padding: 0;
	margin: 0;
	left: 0;
	top: 60px;
	background-color: #fff;
	border: 1px solid #ccc;
	display: none;
	max-height: 150px;
	overflow-y: auto;
	width: 100%;
	z-index: 10;
    direction: ltr;
}
.flag-icon {
	margin-right: 5px;
}
.options li {
	padding: 5px;
	cursor: pointer;
}

.options li:hover {
	background: transparent;
	box-shadow: inset 0px 0px 5px rgba(40, 209, 70, 0.5);
}
.options::-webkit-scrollbar {
	width: 8px;
}

.options::-webkit-scrollbar-thumb {
	background: transparent;
	box-shadow: inset 0px 0px 5px rgba(40, 209, 70, 0.5);
	border-radius: 10px;
}

.options::-webkit-scrollbar-track {
	background-color: transparent;
}
.loader-container {
	position: absolute;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 10;
	backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
	display: none;
}
.loader {
	margin-top: 70px;
	margin-bottom: 70px;
	font-size: 10px;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	text-indent: -9999em;
	animation: mulShdSpin 1.1s infinite ease;
	transform: translateZ(0);
  }
  @keyframes mulShdSpin {
	0%,
	100% {
	  box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.5), -1.8em -1.8em 0 0em rgba(255,255,255, 0.7);
	}
	12.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.5);
	}
	25% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.5), 1.8em -1.8em 0 0em rgba(255,255,255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
	}
	37.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.5), 2.5em 0em 0 0em rgba(255,255,255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
	}
	50% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.5), 1.75em 1.75em 0 0em rgba(255,255,255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
	}
	62.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.5), 0em 2.5em 0 0em rgba(255,255,255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
	}
	75% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.5), -1.8em 1.8em 0 0em rgba(255,255,255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
	}
	87.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.5), -2.6em 0em 0 0em rgba(255,255,255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
  }

  .hidden {
	display: none;
}

#invalid-form-message {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    color: red;
    font-size: 16px;
}


.article-one {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 50px;
    padding-top: 60px;
    padding-left: 60px;
    padding-right: 60px;
}
.article-one .left, .article-one .right {
    width: 580px;
    position: relative;
}
.article-one .left img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    height: auto;
}
.article-one .left::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 130px;
    width: 372px;
    height: 310px;
    background-color: rgb(30, 166, 126);
    border-radius: 120px;
}
.article-one .right img {
    max-width: 115px;
    display: block;
    margin-right: auto;
}
.article-one .right h3 {
   color: #2d705d;
   font-weight: 700;
   font-size: 28px;
   line-height: 32px;
   direction: ltr;
}
.article-one .right p {
    font-size: 18px;
    color: #2d705d;
    font-weight: 500;
    line-height: 32px;
    margin-top: 10px;
    direction: ltr;
}
.article-two {
    background-color: rgb(30, 166, 126);
    background-image: url('../img/article2-bg-desk.webp');
    background-size: inherit;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 30px; 
}
.article-two .container-article {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    padding: 0px 10px;
    margin-right: auto;
    margin-left: auto;
}
.article-two .left {
    max-width: 482px;
}
.article-two .right::after {
    content: "";
    position: absolute;
    top: 96px;
    right: 38px;
    width: 347px;
    height: 375px;
    background-color: rgb(255, 255, 255);
    border-radius: 120px;
}
.article-two .right {
    max-width: 400px;
    position: relative;
}
.article-two .right img {
    width: 100%;
    z-index: 1;
    position: relative;
}
.article-two h3 {
    font-weight: 700;
    color: #fff;
    font-size: 28px;
    line-height: 32px;
    direction: ltr;
}
.article-two p {
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
    direction: ltr;
}
.article-two p span {
    font-size: 20px;
    margin-left: 6px;
}
.article-three {
    background-color: rgb(9, 42, 33);
    border-radius: 30px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 0px;
    position: relative;
    gap: 50px;
    min-height: 340px;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -50px;
}
.article-three .left, .article-three .right {
    color: #fff;
    width: 50%;
}
.article-three .left p {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    direction: ltr;
}
.article-three .right p {
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
    direction: ltr;
}
.article-three img {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    max-width: 1052px;
    min-height: 358px;
}
.reviews {
    padding: 300px 40px 40px 60px;
}
.reviews-title h3 {
    color: #2d705d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
    direction: ltr;
}
.reviews .reviews-cards {
    display: flex;
    margin-bottom: 32px;
    width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.reviews .reviews-cards .card {
    padding: 32px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(57, 59, 106, 0.06) 23px 23px 64px -16px;
    width: 32.5%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    direction: ltr;
}
.flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.reviews .reviews-cards .card  h3 {
    color: #2d705d;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    direction: ltr;
}
.reviews .reviews-cards .card  p {
    color: #000;
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    margin-top: 20px;
    direction: ltr;
}
.reviews .reviews-cards .card img {
    width: 50px;
}
.reviews-numbers {
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.reviews-numbers .item {
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    width: 24%;
    padding: 30px 37px;
    text-align: center;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    direction: ltr;
}
.reviews-numbers .item h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 55px;
    color: #2d705d;
    direction: ltr;
}
.reviews-numbers .item h3 b {
    font-weight: 700;
    color: rgb(35, 168, 129);
    direction: ltr;
}
.reviews-numbers .item p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
    direction: ltr;
}
.reviews-cta {
    background-color: rgb(255, 255, 255);
    padding: 9px 35px;
    border-radius: 20px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.reviews-cta .left {
    display: flex;
    align-items: center;
    max-width: 530px;
    direction: ltr;
}
.reviews-cta .left p {
    color: #2d705d;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    direction: ltr;
}
.reviews-cta .right {
    width: 40%;
}
.reviews-cta .btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    outline: 0px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease 0s;
    will-change: transform;
    appearance: none;
    width: 100%;
    max-width: 425px;
    min-height: 54px;
    background: rgb(35, 168, 129);
    box-shadow: rgba(76, 233, 187, 0.69) 0px 0px 30px;
    border-radius: 30px;
    font-size: 16px;
    padding: 18px 34px;
    color: rgb(255, 255, 255);
    line-height: 108.6%;
    direction: ltr;
}
.reviews-cta .btn:hover {
    transform: scale(1.07);
}
.disclaimer {
    position: relative;
    font-family: inherit;
    border-top: 1px solid rgb(214, 214, 214);
    padding-top: 25px;
    padding-bottom: 25px;
    background: rgb(255, 255, 255);
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
}
.disclaimer p {
    color: #404040;
    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    direction: ltr;
}
footer {
    background: rgb(229, 229, 229);
    padding: 35px 40px 40px 55px;
    position: relative;
    direction: ltr;
}
footer nav ul {
    display: flex;
}
footer nav ul li {
    list-style: none;
    margin: 10px;
}
footer nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    direction: ltr;
}
footer p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #404040;
    direction: ltr;
}
@media (max-width: 768px) {
    .hero .hero-right {
        width: 100%;
        padding: 10px;
    }
    .hero .hero-right img {
        display: block;
        width: 100%;
    }
    .hero .hero-left {
        display: none;
    }
    form {
        padding: 10px;
    }
    form h3::after {
        top: 50px;
        right: 18px;
        width: 35px;
        height: 35px;
    }
    .article-one {
        flex-direction: column-reverse;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .article-one .left, .article-one .right {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .article-one .left::after {
        content: "";
        position: absolute;
        top: 0px;
        right: 53px;
        width: 265px;
        height: 206px;
        background-color: rgb(30, 166, 126);
        border-radius: 120px;
    }   
    .article-one .right img {
        max-width: 170px;
        margin-bottom: 20px;
    }
    .article-one .left {
        max-width: 350px;
        transform: translateX(17px);
    }
    .article-one .right p {
        font-size: 16px;
        line-height: 20px;
        margin-top: 20px;
    }
    .article-two .container-article {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        background-size: contain;
        background-position: 100% 100%;
        margin-bottom: -42px;
        overflow: hidden;
    }
   .article-two .right {
    max-width: 319px;
    margin: 0px auto;
   }
   .article-two .right::after {
    content: "";
    position: absolute;
    top: 63px;
    right: 27px;
    width: 287px;
    height: 336px;
    background-color: rgb(255, 255, 255);
    border-radius: 120px;
   }
   .article-three {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    margin: -50px auto;
    width: 90%;
   }
   .article-three .left, .article-three .right {
    color: #fff;
    width: 100%;
}
.article-three img {
    position: absolute;
    top: 320px;
    width: 100%;
    min-height: auto;
}
.reviews {
    padding: 200px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0;
}
.reviews-numbers {
    flex-wrap: wrap;
    gap: 10px;
}
.container {
    overflow: scroll;
    margin-bottom: 32px;
}
.reviews-cards {
    width: 800px !important;
    margin-bottom: 0px !important;
}
.reviews-cards .card {
    width: 32% !important;
}
.reviews-numbers .item {
    width: 48%;
    padding: 10px;
}
.reviews-numbers .item:nth-child(1) {
    order: 3;
}
.reviews-numbers .item:nth-child(2) {
    order: 3;
}
.reviews-numbers .item:nth-child(3) {
    order: 1;
}
.reviews-numbers .item:nth-child(4) {
    order: 1;
}
.reviews-cta {
    flex-direction: column;
}
.reviews-cta .left {
    width: 100%;
}
.reviews-cta .left img {
    width: 70px;
}
.reviews-cta .left p {
    font-size: 16px;
    line-height: 1;
}
.reviews-cta .right {
    width: 100%;
}
.reviews-cta .btn {
    margin-top: 20px;
    margin-bottom: 20px;
}
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer nav ul {
    flex-direction: column;
}
footer p {
    text-align: center;
}
}