@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
:root {
  --main-color: rgba(212, 174, 108, 1);
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  direction: ltr;
  text-align: left;
}
html {
  direction: ltr;
  scroll-behavior: smooth;
}
html[lang="sa"] body {
  direction: rtl;
  text-align: right;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
h7 {
  margin-bottom: 0;
}
p,span {
  color: #575757;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: white;
}
/*ul {*/
/*  list-style: none;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  display: flex;*/
/*}*/
.red {
  color: red;
}
.green {
  color: #377a8c;
}
.lightGreen {
  color: #4cbd6b;
}
/* start navbar */
/* .navbar,
.dropdown ul{
    background-color: #448c96c9 !important;
} */
.navbar a {
  color: white;
  font-weight: 200;
  transition: 0.5s all ease;
}

.navbar a:hover,
.navbar a:focus,
.navbar a:active {
  color: #7cc07d;
}
/* .navbar li:hover a{
    background: linear-gradient(270deg, #7CC07D 0%, #69B4E3 100%);
} */
.navbar li:not(.dropdown-item) {
  list-style: outside none none;
  margin: 0.5em 1em;
  padding: 0;
}

.navbar li a:not(.dropdown-item) {
  padding: 0.5em 0.8em;
  color: white;
  position: relative;
  font-weight: 500;
  text-decoration: none;
}

.navbar li a:not(.dropdown-item)::before,
.navbar li a:not(.dropdown-item)::after {
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all 0.35s ease;
  opacity: 0;
}

.navbar li a:not(.dropdown-item)::before {
  content: "";
  right: 0;
  top: 0;
  border-top: 3px solid #3e8914;
  border-right: 3px solid #2e640f;
  transform: translate(-100%, 50%);
}

.navbar li a:not(.dropdown-item):after {
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #2e640f;
  border-left: 3px solid #3e8914;
  transform: translate(100%, -50%);
}

.navbar li a:not(.dropdown-item):hover:before,
.navbar li a:not(.dropdown-item):hover:after {
  transform: translate(0, 0);
  opacity: 1;
}

.navbar li a:not(.dropdown-item):hover {
  color: #3da35d;
}
#navbarSupportedContent {
  justify-content: space-between;
}
#navbarSupportedContent ul {
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* background-color: transparent; */
}
.dropdown-menu {
  background-color: rgb(16, 40, 66);
}

.navbar #navbarSupportedContent button {
  background-color: rgb(189 189 189 / 35%);
  color: white;
  border: 0;
  border-radius: 7px;
  margin: 0 6px;
  width: max-content;
  padding: 3px 18px;
}
.dropdown-item:hover {
  background-color: transparent;
}
.signin {
  background: linear-gradient(270deg, #7cc07d 0%, #69b4e3 100%);
}
.navbar button a {
  text-decoration: none;
  width: fit-content;
}
.navbar button:hover {
  box-shadow: 0 0 5px rgb(151, 151, 151);
}
.navbar button:hover a {
  color: white;
}
.navbar .navbar-brand img {
  width: 70px;
}
@media (max-width: 1025px) {
  #navbarSupportedContent ul {
    gap: 4px;
  }
}
@media (max-width: 769px) {
  #navbarSupportedContent {
    height: 500px;
    overflow: scroll;
  }
  .drop {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
  .drop button {
    width: 176px;
  }
  .navbar #navbarSupportedContent button {
    background-color: rgb(189 189 189 / 35%);
    color: white;
    border: 0;
    border-radius: 7px;
    margin: 0px 6px;
    width: 200px;
    padding: 6px 18px;
  }
}
/* end navbar */
/* start header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    margin-top: 96px;
}
.header img{
        width: 80%;
    object-fit: contain;
}
/* end header */
/* start about  */
.about {
  margin-top: 50px;
  margin-bottom: 50px;
}
.about .container > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.about .content h3 {
  font-weight: bold;
}
.about .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 31px;
  justify-content: center;
}
.about .cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 331px;
  gap: 10px;
  padding: 20px 30px;
  text-align: center;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 14px 3px rgb(233 233 233);
}
.about .cards .card img {
  width: 50px;
  transition: 0.5s all ease;
}
.about .cards .card:hover img {
  transform: rotate(360deg);
}
@media (max-width: 1025px) {
  .about .cards .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 260px;
    gap: 10px;
    padding: 20px 13px;
    text-align: center;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 14px 3px rgb(233 233 233);
  }
  .about .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 15px;
    justify-content: center;
  }
}
@media (max-width: 769px) {
  .about .container > div {
    flex-direction: column;
    gap: 22px;
  }
  .about .content p {
    width: 100%;
  }
  .about .cards .card {
    width: 303px;
  }
}
@media (max-width: 426px) {
  .about .cards .card {
    width: 93%;
  }
}
/* end about */
/* start features */
.features {
  margin-top: 50px;
  margin-bottom: 50px;
      overflow: hidden;
}
.features .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.features .container > p {
  text-align: center;
}
.features .container h3 {
  font-weight: bold;
}
.features .container .for-you {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 39px;
}
.features .container .for-you .feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 331px;
    gap: 10px;
    padding: 20px 13px;
    /* text-align: center; */
    border: none;
    /*border-radius: 5px;*/
    /*border-width: 4px;*/
    /*border-style: solid;*/
    /*border-image: linear-gradient(#7cc07d , #69b4e3 ) 30;*/
    transition:.5s all ease;
    /*background:white;*/
}
.features .container .for-you .feature:hover {
    box-shadow: 7px 8px 27px -1px rgb(215 212 212);
    transform: scale(1.2);
}
.features .container .for-you .feature img {
  width: 90px;
    height: 90px;
    object-fit: contain;
}
@media (max-width: 426px) {
  .features .container .for-you {
    justify-content: center;
    align-items: center;
  }
  .features .container .for-you .feature {
    justify-content: center;
    align-items: center;
    text-align: center;
    /* box-shadow: 0 0 14px 3px rgb(233 233 233); */
  }
  .features .container .for-you .feature:hover {
    box-shadow: 7px 8px 27px -1px rgb(215 212 212);
    transform: scale(1);
    width:100%;
}
}
/* end features */
/* start partners */
.our-partners {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 45px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.our-partners .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-partners .content p {
  width: 80%;
  text-align: center;
}
.our-partners .swiper {
  width: 100%;
  height: 100%;
}
.our-partners .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.our-partners .swiper-slide img {
  display: block;
  width: 227.28px;
}
@media (max-width: 426px) {
  .our-partners .swiper-slide img {
    width: 100%;
  }
}
/* end partners */
/* start screens */
.screens {
  margin-top: 50px;
  margin-bottom: 50px;
}
.screens .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.screens img {
  max-width: 100%;
}
/* end screens */
/* start articles */
.articles {
  margin-top: 50px;
  margin-bottom: 50px;
}
.articles .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.articles .content p {
  width: 40%;
  text-align: center;
}
.articles button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
.articles button.learn-more {
  width: 13rem;
  height: auto;
}
.articles button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #102842;
  border-radius: 1.625rem;
}
.articles button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.articles button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.articles button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.articles button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: black;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.articles button:hover .circle {
  width: 100%;
}
.articles button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.articles button:hover .button-text {
  color: #fff;
}
.articles .articles-content .article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: .5s all ease;
    align-items: flex-start;
    width: 350px;
    gap: 5px;
    background: #00bcd417;
    padding: 15px;
    border-radius: 10px;
    width:100%;
    height: 420px;
}
.articles .about-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:.5s all ease;
  text-align: start;
      gap: 8px;
}
.articles .about-article p {
  width: 100%;
}
.articles .articles-content .article .image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}
.articles .articles-content .article .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.5s all ease;
}
.articles .articles-content .article:hover img {
  transform: scale(1.2) rotate(4deg);
}
.articles .articles-content .article h3 {
  color: #102842;
  font-size: 22px;
  font-weight: bold;
}
.articles .swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}
.articles .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.articles .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles .swiper-button-next,
.articles .swiper-rtl .swiper-button-prev,
.articles .swiper-button-prev,
.articles .swiper-rtl .swiper-button-next {
  background-color: #102842;
  width: 35px;
  box-shadow: 0 0 2px 2px #b7b7b7;
  height: 35px;
  border-radius: 50%;
      display: flex;
}
.articles .swiper-button-next:after,
.articles .swiper-rtl .swiper-button-prev:after,
.articles .swiper-button-prev:after,
.articles .swiper-rtl .swiper-button-next:after {
  font-size: 20px;
}
.swiper-button-lock {
    display: block;
}
#container {
  direction: ltr;
}
@media (max-width: 769px) {
  .articles .articles-content .article {
    width: 100%;
  }
  .articles .content p {
    width: 100%;
  }
}
/* end articles */
/* start contact us */
.contact-us {
  margin-top: 50px;
  margin-bottom: 50px;
}
.contact-us .container > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-us .container > div .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
}
.contact-us .container > div .content p {
  width: 250px;
}
.contact-us .container > div form {
  /* width: 50%; */
}
.contact-us form div {
  display: flex;
  flex-direction: column;
}
.contact-us form {
  box-shadow: 0px 0px 20px rgba(16, 40, 66, 0.16);
  padding: 20px 15px;
  border-radius: 8px;
  width: 500px;
}
.contact-us form div input,
.contact-us form div textarea {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 5px;
}
.contact-us form div input:focus,
.contact-us form div textarea:focus,
.contact-us form div textarea:active {
  border: 1px solid #bdbdbd !important;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.main-button {
  border-radius: 8px;
  border: none;
  padding: 8px 48px;
  font-weight: bold;
}
.hvr-shutter-in-vertical:before {
  background-color: #102842;
}
.hvr-shutter-in-vertical:before {
  border-radius: 8px;
}
.hvr-shutter-in-vertical {
  background: #4294aa8f;
  color: white;
}
.hvr-shutter-in-vertical:active,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:hover {
  color: #102842;
}
@media (max-width: 769px) {
  .contact-us .container > div .content p {
    width: 239px;
  }
}
@media (max-width: 426px) {
  .contact-us .container > div form {
    width: 100%;
  }
  .contact-us .container > div {
    flex-direction: column;
    gap: 10px;
  }
  .contact-us .container > div .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }
  .contact-us .container > div .content p {
    width: 100%;
  }
}
/* end contact us */
/* start footer */
.footer {
  position: relative;
  /* height: 400px; */
  overflow: hidden;
  padding: 30px 0;
  background-color: #102842;
}

.footer ul:not(.socials ul) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
  padding-left: 0;
}
.footer ul li,
.footer ul li a {
  display: flex;
  align-items: center;
  padding: 4px 0 0 0;
  gap: 10px;
  font-size: 15px;
}
.footer .container .row a:hover {
  color: #7cc07d;
}
.footer .container .row > div:nth-child(1) div {
  /* background-color: #7298ab87; */
  /*padding: 0 0 0 15px;*/
  /*width: 300px;*/
  border-radius: 28px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer .container .row > div:nth-child(1) img {
  width: 85px;
}
.footer .container .row > div:nth-child(1) p {
  /*width: 50%;*/
  /*font-size: 24px;*/
}
.footer .container .row > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.footer .container .row > div:nth-child(1) div svg {
  color: white;
  display: flex;
  margin: 0;
  width: 15px;
}
.footer .container .row > div:nth-child(1) div button {
  border: none;
  color: #0085b9;
  background-color: white;
  border-radius: 28px;
  padding: 8px 14px;
  font-weight: bold;
  transition: 0.5s all ease;
}
.footer .container .row > div:nth-child(1) div button:hover {
  background-color: #377a8c;
  color: white;
}
.footer .container .row > div:nth-child(1) div input {
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  flex-grow: 1;
}
.footer .container .row > div:nth-child(2) {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .container .row > div:nth-child(2) div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .container .row h4 {
  color: white;
  font-size: 20px;
}
.footer .socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.socials ul {
  margin: 0;
  padding: 0;
  display: flex;
  /* position: absolute; */
  /*margin-top: 30px;*/
  margin-bottom:8px;
}
.socials ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials ul svg {
  width: 20px;
}
.socials ul li {
  list-style: none;
  margin: 0 5px;
}
.socials ul li a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 63px;
  /*background: #333;*/
  border-radius: 50%;
  font-size: 45px;
  color: #666;
  padding: 0;
  transition: 0.5s;
  display: flex;
}
.socials ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffee10;
  transition: 0.5s;
  transform: scale(0.9);
  z-index: -1;
}
.socials ul li a:hover::before {
  transform: scale(1.7);
  box-shadow: 0 0 15px #ffee10;
}
.socials ul li a:hover {
  color: #7cc07d;
  box-shadow: 0 0 20px #7cc07d;
  text-shadow: 0 0 5px #7cc07d;
}
.socials li:hover svg {
  color: #7cc07d !important;
}
@media (max-width: 1025px) {
}
@media (max-width: 769px) {
  .footer .container .row > div:nth-child(2) {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 11px;
  }
  .footer .container .row > div:nth-child(1) p {
    width: 100%;
  }
  .get-app {
    /*margin: auto;*/
  }
}

@media (max-width: 426px) {
  .footer .container .row > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }
  .footer .container .row > div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 11px;
    align-items: flex-start;
  }
  /*.pageLinks{*/
  /*      max-height: 140px;*/
  /*  flex-wrap: wrap;*/
  /*}*/
  .footer .container .row {
    gap: 15px;
  }
  .footer .CR p {
    font-size: 12px;
    font-size: 11px;
    width: 139px;
  }
  .footer .CR {
    bottom: 18px;
  }
  .footer .CR div div {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}
/* end footer */
/* start copyright */
.copyRight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2px;
  flex-wrap: nowrap;
  font-size: 10px;
}
.copyRight .logo {
  display: flex;
}
.copyRight .logo ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 3px;
  padding-right: 3px;
  list-style:none;
}
.copyRight .logo ul li {
  margin-left: 15px;
  padding-right: 3px;
  padding-left: 4px;
}
html[lang="en"] .copyRight .logo ul li:not(.last) {
  padding-left: 6.5px;
  border-left: 1px solid #070707;
}
html[lang="sa"] .copyRight .logo ul li:not(:last-child) {
    padding-left: 6.5px;
    border-left: 1px solid #070707;
}
html[lang="sa"] .copyRight .logo ul li::last-child{
        padding-right: 8px;
}
.copyRight img {
  height: 22px;
}
/* end copy right */
/* start all articles */
.all-articles {
  margin-top: 90px;
  margin-bottom: 50px;
}
.all-articles .container > div {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.all-articles .container > div .articles-content {
  width: 334px;
}
.all-articles .about-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: start;
}
.all-articles .about-article p {
  width: 100%;
}
.all-articles .articles-content .article .image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
}
.all-articles .articles-content .article .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.5s all ease;
}
.all-articles .articles-content .article:hover img {
  transform: scale(1.2) rotate(4deg);
}
.all-articles .articles-content .article h3 {
  color: #102842;
  font-size: 22px;
  font-weight: bold;
}
/* end all articles */
/* start articles details */
.articles-details {
  margin-top: 50px;
  margin-bottom: 50px;
}
.articles-details .container > div {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.articles-details .container > div .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* end articles details */

.loader {
  /* background-color: #D4AE6C; */
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 1s all ease;
}
.hide {
  opacity: 0;
  display: none;
}

.get-app a {
  padding: 5px 0;
}
.navbar {
    background: #102842;
}
/*.psc{*/
/*    height: 200px;*/
/*    overflow-y: scroll;*/
/*}*/
.psc::-webkit-scrollbar,
.psc::-webkit-scrollbar-thumb {
      width: 0;
      background-color: transparent;
      border-radius:0;
}
.swiper-wrapper {
    align-items: flex-start;
}
.psc{
    overflow: hidden;
    text-overflow: ellipsis;
    height:120px;
}
.footer p{
    color:white;
}
h3,h2,h1{
    font-weight:bold;
}
.copyRight{
    display:none;
}
@media (max-width: 426px) {
  .get-app a {
  width:100%;
}
}