/*Import Cairo Font */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap");
/* Global Rules */
:root {
  --main-color: #23d4ce;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none !important;
}
html{
  scroll-padding-top: 50px;
}
body {
  font-family: "Cairo", sans-serif;
  direction: ltr;
}
.opacity-8{
  opacity: 0.8;
}
/* MainTitle */
.main-title h2 {
  font-size: 28px;
  color: #333333;
  width: fit-content;
  cursor: pointer;
}
.main-title h2::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  bottom: 0px;
  transition: all 0.25s ease;
  background-color: var(--main-color);
}
.main-title h2:hover::before {
  width: 100%;
}
.main-title p {
  color: #52565f;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 767px) {
  .main-title p {
    font-size: 16px !important;
  }
}
/* MainTitle */
/* Start Nav */
.navbar {
  background: linear-gradient(98.24deg, #243256 13.38%, #3a234e 63.38%);
  border-bottom: 1px solid #ccc;
  position: sticky;
}
.navbar .navbar-toggler {
  color: white;
  border: none;
}
.navbar .nav-link {
  color: white !important;
  transition: all 0.25s ease;
  font-weight: 500;
  font-size: 14px;
}
.navbar .nav-link:hover {
  color: var(--main-color) !important;
}
.navbar .btns a, .navbar .btns span.lang {
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
}
.navbar .btns span.lang {
  color: white;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
}
.navbar .btns span.lang:hover {
  color: var(--main-color);
}
.navbar .btns span.lang img {
  width: 25px;
  height: 25px;
}
.lang-links{
  color: #000;
  transition-duration: 0.2s;
}
.lang-links:hover{
  color: #23d4ce;
}
.navbar .btns a.signupBtn {
  background-color: var(--main-color);
  border-radius: 6px;
  color: white;
  font-weight: 500;
  transition: all 0.25s ease;
}
.navbar .btns a.signupBtn:hover {
  background-color: white;
  color: var(--main-color);
}
.navbar .btns a.loginBtn {
  background-color: white;
  color: var(--main-color);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.navbar .btns a.loginBtn:hover {
  background-color: var(--main-color);
  color: white;
}
@media (max-width: 1199px) {
  .navbar .navbar-brand img {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-brand img {
    width: unset;
  }
}
@media (max-width: 577px) {
  .navbar .navbar-brand img {
    width: 150px;
  }
}
.navbar .dropmenu ul {
  left: 0;
  top: 125%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: white;
  z-index: -5;
  border: 1px solid black;
  transition: all 0.25s ease;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .navbar .dropmenu:hover {
    margin-bottom: 110px;
  }
  .navbar .dropmenu ul {
    width: 85px;
    right: 16px;
  }
}
.navbar .dropmenu li {
  background-color: white;
  color: black;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}
.navbar .dropmenu li:not(:last-child) {
  border-bottom: 1px solid black;
}
.navbar .dropmenu li:hover {
  background-color: white;
  color: var(--main-color);
}
.navbar .dropmenu:hover ul {
  z-index: 5;
  visibility: visible;
  opacity: 1;
  top: 100%;
}
/* End Nav */
/* Start Landing */
.landing {
  background-image: url(../images/landing2.png);
  background-size: cover;
}
.landing .container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/network.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.landing h1 span {
  color: var(--main-color);
}
.landing a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  display: block;
  width: fit-content;
  padding: 10px 20px;
  transition: all 0.25s ease;
}
.landing .btns{
  gap: 10px;
}
.landing .btn-green {
  background-color: var(--main-color);
  color: white;
}
.landing .btn-white {
  background-color: white;
  color: var(--main-color);
}
.landing .btn-green:hover {
  color: var(--main-color);
  background-color: white;
}
.landing .btn-white:hover {
  background-color: var(--main-color);
  color: white;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .landing h1 {
    font-size: 35px;
  }
  .landing p {
    font-size: 18px;
    line-height: 1.6;
  }
}
/* End Landing */
/* Start Services */
.services {
  /* padding: 75px 0; */
  padding: 40px 0 40px 0;
}
.services .container {
  position: relative;
}
.services .holder-img {
  /* position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -225px; */
  position: relative;
  /* transform: translateY(-200px); */
  margin: -140px 0 0 0;
  flex: 2;
}
.services .holder-img img:first-child {
  width: 100%;
}
.services .holder-img img:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.services .holder {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-start;
  gap: 30px;
}
.services .holder .hold-one,
.services .holder .hold-two {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 600px;
  padding: 30px 0 30px 0;
  flex: 3;
}
.services .holder .hold-two {
  direction: ltr;
}
.services .holder .box {
  display: flex;
  gap: 25px;
}
.services .holder .box.left-box {
  flex-direction: row-reverse;
}
.services .hold-one .box:last-child img {
  margin-right: 11px;
}
.services .holder .box h3 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}
.services .holder .box p {
  font-size: 16px;
  line-height: 1.5;
  color: #556575;
}
@media (min-width: 1400px) {
  .services .holder .hold-one,
  .services .holder .hold-two {
    /* padding-bottom: 50px; */
  }
}
/* @media (max-width: 1399px) {
  .services .holder-img {
    display: none;
  }
} */
@media (max-width: 991px) {
  .services .holder {
    flex-direction: column;
  }
  .services .holder .hold-one {
    direction: ltr;
  }
  .services .holder .hold-one,
  .services .holder .hold-two {
    gap: 50px;
  }
  .services .holder-img {
    /* transform: translateY(0px); */
    margin: 0;
  }
}
@media (max-width: 767px) {
  .services .holder .box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .services .holder .box h3 {
    font-size: 22px;
  }
  .services .holder .box p {
    font-size: 16px;
  }
  .services .hold-one .box:last-child img {
    margin-right: 0;
  }
}
/* End Services */
/* Start Partners */
.partners {
  background-color: #f7f7f7;
  margin: 20px 0;
}
.partners .col {
  width: calc(100% - 16px) !important;
  margin: 0 8px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 107.5px;
}
/* End Partners */
/* Start About */
.about .about-h3{
  font-size: 20px;
}
.about .box h2 {
  color: #323232;
  font-weight: 500;
}
.about .box p {
  font-size: 20px;
  color: #52565f;
  font-weight: 400;
}
.about .box li {
  font-size: 16px;
  color: #52565f;
  font-weight: 500;
}
.about .image img:last-child {
  cursor: pointer;
}
.about a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  background-color: var(--main-color);
  border-radius: 6px;
  display: block;
  width: fit-content;
  padding: 10px 20px;
  transition: all 0.25s ease;
}
.about a:hover {
  background-color: #00bdb6;
}
.mark-and-desc{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 577px) {
  .about .box p {
    font-size: 18px;
  }
  .about .box li {
    font-size: 14px;
  }
  .about .image img:last-child {
    width: 100%;
  }
}
/* End About */
/* Start Stats */
.stats {
  background-color: #23d4ce33;
}
.stats .text {
  border-bottom: 1px solid #ccc;
}
.stats .box p {
  color: #333333;
}
.stats .statistics-list {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
}
.stats .statistics-item {
  width: 50%;
  margin: 4px 0;
  font-size: 1.4rem;
}
.stats .statistics-list span {
  font-family: "Poor Richard";
  font-size: 48px;
  color: var(--main-color);
}
@media (max-width: 577px) {
  .stats .statistics-list > .statistics-item {
    justify-content: space-between;
  }
  .stats{
    text-align: center;
  }
  .stats .text p{
    font-size: 14px;
  }
  .stats .text h2{
    font-size: 20px;
  }
  .stats .statistics-list span {
    font-size: 38px;
  }
  .label{
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px){
  .testimonials .text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .stats .statistics-list {
    margin-left: auto;
    margin-right: auto;
  }
  .stats .column:nth-of-type(1) {
    order: 2;
  }
  .stats .column:nth-of-type(2) {
    order: 1;
  }
  .stats{
    padding: 0 !important;
  }
  .stats .box{
    margin: 0 !important;
  }
  .stats .text{
    padding: 0 !important;
  }
}
/* End Stats */
/* Start Pricing */
.pricing {
  background-color: #f7f7f7;
}
.pricing .cardbox {
  border-radius: 8px;
  background-color: white;
}
.pricing .one-card {
  border: 2px solid #ea755d;
}
.pricing .two-card {
  border: 2px solid var(--main-color);
}
.pricing .three-card {
  border: 2px solid #273557;
}
.pricing .cardbox > h2 {
  background-color: #ea755d;
  border: 1px solid #ea755d;
}
.pricing .two-card > h2 {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.pricing .three-card > h2 {
  background-color: #273557;
  border: 1px solid #273557;
}
.pricing .cardbox .img-text {
  background-color: rgba(35, 212, 206, 0.1);
}
.pricing .cardbox .img-text h2 {
  font-size: 42px;
  font-weight: bold;
}
.pricing .one-card .img-text h2 {
  color: #ea755d;
}
.pricing .two-card .img-text h2 {
  color: var(--main-color);
}
.pricing .three-card .img-text h2 {
  color: #273557;
}
.pricing .cardbox .img-text span {
  font-size: 18px;
  font-weight: 400;
  color: #52565f;
}
.pricing .cardbox .ul-btn a {
  color: #333333;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid #ccc;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: block;
  width: 65%;
  margin: 0 auto;
  padding: 6px 24px;
}
.pricing .one-card .ul-btn a {
  border: 2px solid #ea755d;
  color: #ea755d;
}
.pricing .two-card .ul-btn a {
  border: 2px solid var(--main-color);
  background-color: var(--main-color);
  color: white;
}
.pricing .three-card .ul-btn a {
  border: 2px solid #273557;
  color: #273557;
}
.pricing .one-card .ul-btn a:hover {
  color: white;
  background-color: #ea755d;
}
.pricing .two-card .ul-btn a:hover {
  color: var(--main-color);
  background-color: white;
}
.pricing .three-card .ul-btn a:hover {
  background-color: #273557;
  color: white;
}
.pricing-row{
  align-items: stretch;
}
.pricing-row .cardbox{
  height: 100%;
  display: flex;
  flex-direction: column;
}
.space-between-ul-and-btn{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* End Pricing */
/* Start Contact */
.contact .inputs h3 {
  font-size: 18px;
  color: #323232;
  font-weight: 500;
}
.contact input {
  border: 1px solid #cccccc;
  border-radius: 20px;
  width: 90%;
  padding: 7px 15px;
  outline: none;
  position: relative;
}
.contact textarea {
  border: 1px solid #cccccc;
  border-radius: 20px;
  padding: 7px 15px;
  outline: none;
  height: 125px;
  width: 96%;
  resize: none;
  position: relative;
}
@media (max-width: 577px) {
  .contact input {
    max-width: unset;
    width: 100%;
  }
  .contact textarea {
    width: 100%;
  }
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: #c4c4c4;
  font-size: 14px;
  font-weight: 400;
  transition-duration: 0.2s;
  transform: translateY(0px);
}
.contact input:focus::placeholder,
.contact textarea:focus::placeholder{
  transform: translateY(-30px);
}
.contact a.btn {
  color: white;
  background-color: var(--main-color);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  border-radius: 20px;
  display: block;
  width: fit-content;
}
.contact a.btn:hover {
  color: var(--main-color);
  background-color: white;
  border-color: var(--main-color);
}
.contact .col-lg-7 {
  border-right: 1px solid #c4c4c4;
}
.contact .col-lg-5 h3 {
  color: #323232;
}
.contact p {
  color: #515151cc;
  font-size: 18px;
}
.contact span {
  color: #515151;
  font-weight: 500;
}
@media (max-width: 991px) {
  .contact .col-lg-7 {
    border-right: none;
    border-bottom: 1px solid #c4c4c4;
  }
}
.bg-light-teal{
  background: #93E6E5;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.contact .contact-links{
  color: #515151;
  text-decoration: none;
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
}
.contact .contact-links img{
  transition-duration: 0.2s;
}
.contact .contact-links:hover img{
  margin: 0 10px 0 0;
}
.contact .inputs{
  position: relative;
  margin: 10px 0 0 0;
}
.contact .inputs label{
  color: #c4c4c4;
  font-size: 14px;
  font-weight: 400;
  transition-duration: 0.2s;
  position: absolute;
  top: 10px;
  left: 16px;
  cursor: text;
  transform: translateY(0px);
}
.contact .inputs:focus-within label{
  transform: translateY(-30px);
  color: #515151;
}
/* End Contact */
/* Start Bussiness */
.bussiness {
  background-image: url(../images/buss.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bussiness h1 {
  color: white;
  font-weight: 700;
}
.bussiness p {
  font-weight: 500;
  color: #eee;
}
.bussiness a {
  padding: 10px 20px;
  font-size: 14px;
  background-color: var(--main-color);
  border: 1px solid transparent;
  color: white;
  font-weight: 500;
  border-radius: 6px;
  width: fit-content;
  transition: all 0.25s ease;
}
.bussiness a:hover {
  background-color: white;
  border-color: var(--main-color);
  color: var(--main-color);
}
/* End Bussiness */
/* Start Testimonials */
.testimonials {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 48px 16px;
}
.testimonials .container {
  min-height: 700px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonials .container {
    background-position: center center;
  }
}
@media (max-width: 991px) {
  .testimonials .container {
    background-image: url(../images/earth.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .testimonials .container > img {
    display: none;
  }
}
@media (max-width: 767px) {
  .testimonials .row {
    display: block;
  }
  .testimonials .col {
    width: calc(100% - 16px) !important;
    margin: 0 8px;
    /* min-width: 280px; */
    flex: 1;
  }
  .testimonials .container {
    min-height: 250px;
    background-position: center 50px;
  }
  .testimonials .box {
    width: 100%;
  }
  .testimonials .box .text {
    width: 100%;
  }
}
.flickity-page-dots {
  display: none;
}
.testimonials .container > img {
  right: 0;
  z-index: -4;
}
.testimonials .main-title p {
  color: #52565f;
}
.testimonials .box {
  position: absolute;
}
@media (max-width: 1399px) {
  .testimonials .box {
    position: unset;
  }
}
.testimonials .one {
  top: 125px;
  left: 95px;
}
.testimonials .two {
  top: 410px;
  left: 175px;
}
.testimonials .three {
  top: 275px;
  left: 450px;
}
.testimonials .four {
  top: 115px;
  left: 662px;
}
.testimonials .five {
  top: 239px;
  left: 929px;
}
.testimonials .six {
  top: 496px;
  left: 980px;
}
.testimonials .box p {
  max-width: 300px;
}
.testimonials .box > img {
  cursor: pointer;
  width: 80px;
  height: 80px;
  transition: all 0.25s ease;
  border-radius: 50%;
  z-index: 3;
  background-color: #fff;
  border: 4px solid #f7f7f7;
  box-shadow: 0px 0px 2px 2px #21212142;
}
.testimonials .box .text {
  border-radius: 30px;
  border: 1px solid #c4c4c4;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  position: relative;
}
.testimonials .box .text::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-bottom-color: #fff;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 -1px 0.05rem #999);
  -webkit-filter: drop-shadow(0 -1px 0.05rem #999);
}
.testimonials .box > img:hover + .text {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1399px) {
  .testimonials .box .text {
    transform: unset;
    opacity: unset;
  }
}
@media (max-width: 991px) {
  .testimonials .box .text {
    margin: 10px 0 0 0;
  }
}
.testimonials .flickity-viewport{
  min-height: 300px;
}
.testimonials .flickity-slider{
  min-height: 100%;
  transition-duration: 0.3s;
}
.testimonials .flickity-slider > .col{
  display: flex;
  min-height: 100%;
}
.testimonials .flickity-slider > .col > .box > .text{
  flex: 1;
}
/* End Testimonials */
/* Start Footer */
.footer {
  background-image: url(../images/Footer.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer ul a {
  color: white;
  transition: all 0.25s ease;
}
.footer ul a:hover {
  color: var(--main-color);
}
.footer .text {
  border-bottom: 1px solid white;
}
.footer .icons .copyright {
  color: #d9dbe1;
  font-size: 14px;
}
.footer .social a {
  background-color: #515151;
  width: 30px;
  height: 30px;
  color: white;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
}
.footer .social a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}
.footer .social svg {
  font-size: 18px;
}
@media (max-width: 577px) {
  .footer .copyright,
  .footer .social {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.footer .wa {
  width: 75px;
  bottom: 25px;
  right: 25px;
  z-index: 909;
  animation: animationFrames linear 3s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
}
@keyframes animationFrames {
  0% {
    transform: translate(0px, 0px);
  }
  5% {
    transform: translate(-5px, 0px);
  }
  10% {
    transform: translate(5px, 0px);
  }
  15% {
    transform: translate(-10px, 0px);
  }
  20% {
    transform: translate(10px, 0px);
  }
  25% {
    transform: translate(-10px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
  35% {
    transform: translate(0px, 0px);
  }
  40% {
    transform: translate(0px, 0px);
  }
  45% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@media (max-width: 767px) {
  .footer .wa {
    width: 60px;
    bottom: 20px;
    right: 20px;
  }
}
/* End Footer */
.text-align-left{
  text-align: left;
}

/* Subscribe & unsubscribe */
.subscribe-section{
  background: url(../images/subscribe\ background.svg);
  padding: 30px 20px;
  text-align: center;
}
.subscribe-msg-pic{
  margin: 0 auto 20px auto;
  width: 76%;
  aspect-ratio: 1/1;
  max-width: 340px;
  background-color: #484165;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  box-shadow: 0px 0px 1px 1px #f7f7f763;
}
.subscribe-msg-pic h3{
  font-size: 18px;
  color: #fff;
  margin: 0;
}
.subscribe-msg-pic p{
  font-size: 16px;
  color: #fffb;
  margin: 0;
}
.subscribe-msg-pic .subscribe-pic{
  display: block;
  margin: 0 auto 0 auto;
  width: 60%;
}
.subscribe-paragraph{
  color: #fff;
  width: 100%;
  max-width: 800px;
  line-height: 30px;
  font-size: 16px;
  margin: 0 auto;
}
.subscribe-contact{
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  margin: 20px 0;
  text-decoration: none;
}
.subscribe-contact img{
  width: 30px;
}
.subscribe-contact p{
  color: #fff;
  line-height: 30px;
  font-size: 16px;
  margin: 0;
}
.subscribe-btns{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
.subscribe-btns a{
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 28px;
  text-decoration: none;
  box-shadow: 0px 3.67972px 36.7972px rgba(0, 0, 0, 0.1);
  border-radius: 27.5979px;
  transition-duration: 0.2s;
}
.subscribe-btns a:hover{
  opacity: 0.6;
}
.subscribe-btns .main-btn{
  color: #fff;
  background: linear-gradient(268.91deg, #243256 8.61%, #3A234E 89.64%);
  border: 1.83986px solid #FFFFFF;
}
.subscribe-btns .sub-btn{
  color: #000;
  background: #FFFFFF;
  border: 1.83986px solid #2D2149;
}
.subscribe-btns a p{
  line-height: 30px;
  font-size: 16px;
  margin: 0;
  letter-spacing: 1px;
}
.subscribe-btns a img{
  height: 26px;
}