/* Start Global Rulse  */
@font-face {
  font-family: "Monadi";
  src: url(../text-font/Monadi.ttf) format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Almarai";
  src: url(../text-font/Almarai-Regular.ttf) format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Almarai";
  src: url(../text-font/Almarai-Bold.ttf) format("truetype");
  font-weight: bold;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

:root {
  /* --main-color: #38773a; */
  --main-color: #2e5baf;
  --color-two: #00a2e3;
  /* --color-two: #34b9c2; */
  --color-three: #fff;

  --main-section-color: #ddd;

  --main-font-color: #fff;
  --second-font-color: #4b7083;

  --background-color-two: #f1f1f1;

  --box-shadow: 0 0 10px -5px #000;
}

/* body {
  background-color: var(--main-color);
} */
html {
  font-family: "Almarai", sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
}

.separator {
  width: 100%;
  height: 20px;
  background-color: var(--color-two);
}

/* I'm using BootStrap CSS Media Queries

/* Small  */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Medium  */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Large */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container {
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Monadi", sans-serif;
  font-weight: normal;
}

/* END Global Rulse  */

/* Start Floating */
.float {
  position: fixed;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  bottom: 10px;
  text-align: center;
  right: 10px;
}

.float img {
  width: 70px;
}

/* End Floating */

/* Start Before Header  */
.before-header {
  background-color: var(--main-color);
}

.before-header .container {
  padding: 15px;
  display: flex;
  align-items: center;
  direction: ltr;
  /* margin: 0; */
}

.before-header .box.media {
  display: flex;
  gap: 20px;
}

.before-header .box.media a {
  display: flex;
}

.before-header .box.media a img {
  width: 20px;
  border-radius: 2px;
}

/* End Before Header  */

/* Start Header  */

header {
  position: sticky;
  background-color: var(--color-three);
  width: 100%;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* box-shadow: var(--box-shadow); */
  border-bottom: 1px solid #999;
  top: 0;
  font-family: monospace, sans-serif;
  font-weight: bold;
}

.head-logo {
  position: relative;
  margin: auto;
  z-index: 3;
  opacity: 1;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 65px;
  background: linear-gradient(var(--main-color), #29519ad2);
}

@media (min-width: 992px) {
  .head-logo {
    /* margin: 0 50px 0 auto; */
    margin-left: auto;
    justify-content: end;
    height: auto;
    z-index: 11;

    /* box-shadow: 0 0 5px #0a3c9ab6; */
  }
}

.head-logo a {
  display: flex;
}

.head-logo img {
  width: 80px;
  margin: 5px;
}

/* @media (min-width: 992px) {
  .head-logo img {
    margin: 20px;
  }
} */

.click-menu {
  left: 13px;
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: 16;
}

@media (min-width: 992px) {
  header .click-menu {
    display: none;
  }
}

header .click-menu .menu-x,
header .click-menu .menu-bars {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  cursor: pointer;
  width: 100%;
  height: 100%;
  color: var(--main-color);
  background-color: inherit;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}

@media (min-width: 992px) {
  header .click-menu .menu-bars {
    display: none;
  }
}

header .click-menu .menu-x {
  display: none;
}

header .click-menu img {
  fill: white;
}

header .sidebar-overlay {
  display: none;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 5;
}

@media (max-width: 991px) {
  header .sidebar-overlay {
    display: block;
  }
}

header .sidebar-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: inherit;
  position: relative;
  width: fit-content;
  top: 0;
  z-index: 10;
}

@media (max-width: 991px) {
  header .sidebar-menu {
    position: absolute;
    box-shadow: none;
    display: block;
    height: calc(100vh);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: 0.5s transform;
    margin: 0 auto;
    min-width: 230px;
    width: 60%;
    max-width: 100%;
    z-index: 10;
  }
}

header .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: rtl;
}

@media (max-width: 991px) {
  header .list {
    margin-right: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-left: 20px;
    top: 60px;
  }
}

header .list .box.media {
  /* display: none; */
  border-left: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 90px;
}

@media (max-width: 991px) {
  header .list .box.media {
    border-top: 1px solid white;
    border-left: none;
    width: auto;
    /* display: block; */
  }
}

header .list .box.media a {
  margin: 8px 10px;
  font-size: 20px;
  padding: 0;
  display: flex;
}

header .list .box.media a img {
  width: 20px;
}

/* @media (max-width: 991px) {
  header .list .box.media a img {
    width: 26px;
  }
} */
header .list a {
  text-decoration: none;
  color: black;
  padding: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

header .list a:hover {
  color: var(--color-two);
  font-weight: bold;
}

header .list .active {
  color: var(--color-two);
  font-weight: bold;
}

/* End Header  */

/* Start Main-section */
.main-section {
  --main-section-color: #fff;
  position: relative;
  min-height: 85vh;
  font-size: 30px;
  overflow: hidden;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  /* padding: 56px 0; */
  display: flex;
  justify-content: center;
  /* padding-top: 90px; */
}

/* .main-section .main-swiper {
  position: relative;
  top: -60px;
} */

.main-section .images {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  z-index: 0;
  transition: 0.5s;
}

.main-section .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.5); */
}

.main-section .container {
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* .main-section .splide__arrows {
  display: none;
} */
.main-section .splide__list {
  min-height: 500px;
  align-items: center;
}

.main-section .splide__slide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
  transition-timing-function: ease;
  /* transition-delay: 0.3s; */
}

.main-section .splide__slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.main-section .container h1,
.main-section .container h2 {
  position: relative;
  color: var(--main-section-color);
  font-weight: normal;
  font-size: 50px;
  line-height: 1.3;
  direction: rtl;
  text-align: center;
  /* margin-top: 50px; */
}

/* @media (min-width: 768px) {
  .main-section .container h1,
  .main-section .container h2 {
    font-size: 70px;
  }
} */
/* @media (min-width: 992px) {
  .main-section .container h1 {
    font-size: 100px;
  }
} */
.main-section .container span {
  display: block;
  font-size: 20px;
  color: var(--main-section-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  direction: rtl;
  margin: auto;
  text-align: center;
}

/* @media (min-width: 768px) {
  .main-section .container span {
    font-size: 25px;
  }
} */
.main-section .container span a {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: underline;
}

.main-section .box-container {
  direction: rtl;
  margin: auto;
  margin-top: 20px;
  text-align: start;
  width: fit-content;
  overflow: hidden;
}

.main-section .box-container a {
  display: block;
  background-color: var(--main-color);
  color: var(--main-font-color);
  padding: 10px;
  border: 2px solid var(--color-two);
  border-radius: 5px;
  font-weight: bold;
}

.main-section .box {
  position: relative;
  color: var(--main-section-color);
  margin: 10px 0;
  width: fit-content;
  font-size: 18px;
}

@media (max-width: 767px) {
  .main-section .box {
    margin: 20px 0;
  }
}

.main-section .box a {
  color: var(--main-section-color);
}

.main-section .box i {
  margin-left: 10px;
}

.main-section>a {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  color: var(--main-section-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* End Main-section */

/* Start about-us  */

.about-us {
  position: relative;
  padding: 100px 0;
  background-color: #bbd8e9;
  /* color: var(--second-font-color); */
  overflow: hidden;
}

.about-us h2 {
  font-size: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;

  direction: rtl;
}

@media (max-width: 767px) {
  .about-us h2 {
    margin: 0 30px 50px auto;
  }
}

.about-us h2 p {
  font-size: 18px;
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  direction: rtl;
  justify-content: center;
  margin: auto;
  gap: 20px;
}

.about-us .container img {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px;
  /* width: 250px; */
  /* height: 250px; */
}

.about-us .container .text-holder {
  text-align: justify;
  direction: rtl;
  width: 600px;
  max-width: 90%;
  font-size: 20px;
  line-height: 1.5;

  padding: 50px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-right: 5px solid var(--color-two);
}

@media (max-width: 767px) {
  .about-us .container .text-holder {
    padding: 20px;
  }
}

.about-us .container .text-holder::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #999;
}

.about-us .container .text-holder .box h3 {
  padding: 20px 0;
  font-size: 20px;
}

/* End about-us  */

/* Start intro  */

.intro {
  direction: rtl;
  position: relative;
  padding: 100px 0;
  background-color: var(--color-three);
  /* color: var(--main-font-color); */
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1500px;
  width: 500px;
  background: linear-gradient(var(--main-color), var(--color-two));
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
  .intro::before {
    transform: translate(-50%, -50%) rotate(-30deg);
    width: 400px;
  }
}

.intro .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* .intro .box {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  width: 450px;
  max-width: 90%;
  box-shadow: var(--box-shadow);
} */
.intro .box {
  border-radius: 5px;
  overflow: hidden;
  width: 240px;
  max-width: 90%;
  box-shadow: var(--box-shadow);
  background-color: white;
  /* background: linear-gradient(#d6fcff, white); */
}

.intro .box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.intro h4 {
  /* color: var(--second-font-color); */
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: fit-content;
  font-size: 18px;
  /* border-bottom: 1px solid var(--main-color); */
}

.intro p {
  border-top: 1px solid black;
  color: #666;
  padding: 10px;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* End intro  */

/*  Start Services */

.our-services {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-three);
  color: black;
  overflow: hidden;
}

.our-services h2 {
  font-size: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}

.our-services .container {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  direction: rtl;
}

@media (max-width: 767px) {
  .our-services .container {
    /* flex-wrap: nowrap; */
    gap: 10px;
  }
}

.our-services .container .box {
  -ms-flex-preferred-size: 300px;
  flex-basis: 300px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--box-shadow);
  background-color: var(--color-three);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .our-services .container .box {
    /* flex-basis: 155px; */
    max-width: 80%;
  }
}

.our-services .container .box img {
  max-width: 100%;
  margin: 0;
  width: 500px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #999;
}

.our-services .container .box h3 {
  font-size: 22px;
  font-weight: normal;
  padding: 20px;
  position: relative;
  /* top: -15px; */
  color: var(--second-font-color);
  font-weight: bold;
}

/* @media (max-width: 767px) {
  .our-services .container .box h3 {
    font-weight: bold;
  }
} */
.our-services .container .box ul {
  text-align: start;
  direction: rtl;
}

.our-services .container .box ul li {
  width: fit-content;
  padding: 10px;
  /* list-style: inside; */
  position: relative;
  padding-right: 30px;
}

.our-services .container .box>ul>li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: rotate(45deg);
  border: 3px solid white;
  background-color: var(--color-two);
  position: absolute;
  right: 10px;
  top: 18px;
  outline: 2.5px solid var(--main-color);
}

.our-services .container .box ul ul {
  margin-right: 20px;
  /* color: #999; */
}

.our-services .container .box ul ul li {
  padding: 0;
  list-style: disc inside;
}

.our-services .container .box a {
  position: relative;
  margin: 20px auto;
  font-size: 20px;
  padding: 5px 20px;
  border-radius: 5px;
  display: block;
  width: fit-content;
  background-color: var(--main-color);
  color: var(--main-font-color);
}

@media (max-width: 767px) {
  .our-services .container .box a {
    font-size: 15px;
  }
}

/*  End Services */

/* Start our-customers  */

.our-customers {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-three);
  color: black;
  overflow: hidden;
}

.our-customers h2 {
  font-size: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}

.our-customers .container {
  position: relative;
  max-width: 625px;
}

.our-customers .container .splide {
  width: 600px;
  height: 270px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin: auto;
  direction: rtl;
}

/* .our-customers .container .splide {} */
.our-customers .container .splide__slide {
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  direction: rtl;
}

.splide__pagination__page {
  background-color: var(--main-color);
}

.splide__pagination__page.is-active {
  background-color: var(--color-two);
}

.our-customers .container .splide__slide img {
  object-fit: contain;
  width: 80%;
  max-height: 270px;
}

.our-customers .splide__arrow {
  background-color: var(--main-color);
}

.our-customers .splide__arrow svg {
  fill: var(--main-font-color);
}

.our-customers a {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 20px auto;
  box-shadow: var(--box-shadow);
  width: fit-content;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: var(--main-font-color);
  transition: 0.3s background-color, 0.3s color;
}

.our-customers a:hover {
  background-color: var(--color-three);
  color: var(--second-font-color);
}

/* End our-customers  */

/* Start why us  */

/* .why-us {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-three);
  color: black;
  overflow: hidden;
  direction: rtl;
  line-height: 1.5;
}
.why-us h2 {
  font-size: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
.why-us .container {
  padding: 30px;
}
@media (min-width: 768px) {
  .why-us .container {
    width: 550px;
  }
}
.why-us h3 {
  font-size: 16px;
  margin-bottom: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (min-width: 768px) {
  .why-us h3 {
    font-size: 25px;
  }
}

.why-us h3 span {
  color: var(--second-font-color);
  font-weight: bold;
  display: block;
}
.why-us p {
  margin: 20px 0;
  margin-right: 0;
  padding-right: 20px;
  font-size: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .why-us p {
    font-size: 20px;
    padding-right: 30px;
  }
}
.why-us p::before {
  content: "✔";
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: green;
} */
/* End why us  */

/* Start Team and-policy */

.team-and-policy {
  padding: 100px 0;
  background-color: var(--color-three);
  direction: rtl;
  overflow: hidden;
}

.team-and-policy h2 {
  width: fit-content;
  margin: 20px auto;
  position: relative;
  z-index: 1;
  padding: 10px;
  color: var(--main-font-color);
  font-size: 30px;
}

.team-and-policy h2::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1000%;
  background-color: var(--main-color);
  z-index: -1;
  border-radius: 50px;
}

.team-and-policy .box {
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .team-and-policy .box {
    flex-direction: column;
  }
}

.team-and-policy .box img {
  width: 300px;
  min-width: 40%;
  max-width: 90%;
  display: block;
  margin: auto;
}

.team-and-policy .box p {
  min-width: 50%;
  border-radius: 50px;
  max-width: 90%;
  margin: auto;
  padding: 20px;
  font-size: 20px;
  border-right: 3px solid var(--main-color);
}

.team-and-policy .our-policy .box p {
  border-right: none;
  border-left: 3px solid var(--main-color);
}

.our-policy h2::before {
  right: -30px;
  left: auto;
}

/* End Team and-policy */

/* Start CEO  */
.ceo {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-three);
  color: black;
  overflow: hidden;
  direction: rtl;
}

.ceo .container {
  max-width: 90%;
  /* margin: auto; */
}

.ceo .head {
  width: 350px;
  max-width: 100%;
  /* margin-right: 150px; */
}

.ceo .head h2 {
  font-size: 30px;
}

.ceo .head p {
  margin-bottom: 50px;
  font-weight: bold;
  color: #777;
}

.ceo .container .box-container {
  display: flex;
  /* flex-wrap: wrap; */
  /* justify-content: center; */
  gap: 20px;
}

@media (max-width: 767px) {
  .ceo .container .box-container {
    flex-direction: column;
  }
}

.ceo .container img {
  border-radius: 50%;
  border: 1px solid black;
  width: 150px;
}

.ceo .container .box {
  max-width: 90%;
}

.ceo .container .box:nth-of-type(1) {
  width: 300px;
}

.ceo .container .box h3 {
  font-size: 18px;
}

.ceo .container .box p {
  font-size: 14px;
}

.ceo .container .box li {
  padding: 15px 0;
  position: relative;
  font-size: 15px;
  padding-right: 25px;
}

.ceo .container .box li::before {
  content: "";
  position: absolute;
  background: url(../Images/logos/checked.svg) no-repeat;
  background-size: 15px 15px;
  width: 15px;
  height: 15px;
  right: 0;
  top: 20px;
  color: #2196f3;
}

/* End CEO  */

/* Start Jobs  */
.jobs {
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jobs a {
  background-color: var(--main-color);
  color: var(--main-font-color);
  padding: 10px 25px;
  font-size: 26px;
  border-radius: 10px;
}

/* End Jobs  */

/* Start Contact  */

.contact {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-three);
  overflow: hidden;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* @media (max-width: 767px) {
  .contact .container {
    flex-direction: column;
    display: block;
  }
} */
.contact h2 {
  padding-top: 50px;
  font-size: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}

.contact .container .box {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  direction: rtl;
}

@media (max-width: 767px) {
  .contact .container .box {
    width: 49%;
  }

  /* .contact .container .box.box-phone {
    width: 90%;
    border-bottom: 1px solid black;
  } */
  .contact .container .box.box-whatsapp {
    border-left: 1px solid #999;
    margin: 30px 0px;
  }
}

.contact .container .box img {
  width: 60px;
}

.contact .box.location {
  border-top: 1px solid black;
  width: 95%;
  margin: auto;
}

.contact .box.location h3 {
  font-size: 25px;
}

.contact .box.location img {
  width: 200px;
  max-width: 100%;
}

.contact .box.location p i {
  font-size: 20px;
  position: relative;
  bottom: -10px;
}

.contact .container .box i {
  font-size: 50px;
}

.contact .container .box p {
  font-size: 18px;
  padding: 15px 0;
  text-align: center;
}

/* @media (max-width: 767px) {
  .contact .container .box.box-email {
    border-top: 1px solid #888;
  }
} */

.contact .container .box a {
  font-size: 15px;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 5px;
  color: var(--main-font-color);
}

.contact .container .box-phone i {
  color: #03a9f4;
}

.contact .container .box-whatsapp i {
  color: #25d366;
}

.contact .container .box-phone .button {
  background-color: #03a9f4;
}

.contact .container .box-whatsapp .button {
  background-color: #25d366;
}

.contact .container .box-email .button {
  background-color: black;
}

.contact .container .box-email p {
  padding: 0;
}

.contact .container .box-email p:last-of-type {
  padding-bottom: 10px;
}

/* Ends Contact  */

/* Start Footer  */

footer {
  background-color: var(--main-color);
  color: var(--main-font-color);
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  flex-wrap: wrap;
  direction: rtl;
  /* font-size: 20px; */
  padding: 50px 0;
}

@media (max-width: 767px) {
  footer {
    flex-direction: column;
  }
}

footer p {
  text-align: start;
  font-size: 18px;
  margin: 10px;
}

footer .box.media {
  margin: 10px;
}

footer .box.media a {
  margin: 0 20px;
}

footer .box.media a img {
  width: 24px;
}

footer .box.media i {
  /* padding: 10px; */
  font-size: 30px;
  color: white;
}

/* End Footer  */