@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap");

* {
  font-family: "Tajawal", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  ::selection {
    background-color: #000072;
    color: #ffffff;
  }
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #000072;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* whatsapp-btn */

html .whatsapp {
  right: auto;
  left: 1rem;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.637);
  text-align: center;
  vertical-align: middle;
  padding: 8px 10px;
  color: #40c351;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5555;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  opacity: 1;
  backface-visibility: hidden;
  transition: all 0.5s ease;
}

.whatsapp:hover {
  transform: translate(0, -20%);
  background: #40c351;
  color: #fff;
}

/* go-up-btn */

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9999;
}

.scroll-to-top svg {
  position: absolute;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke-width: 2;
}

.circle {
  fill: none;
  stroke: #40c351;
  stroke-width: 2;
  stroke-linecap: round;
}

.fa-solid {
  font-size: 24px;
  color: #40c351;
}

.show {
  opacity: 1;
  visibility: visible;
  right: 20px;
  animation: moveUpDown 0.5s ease infinite alternate;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* p-list */

.p-list-wrapper {
  position: fixed;
  top: 50%;
  right: -80px;
  transform: rotate(90deg);
  z-index: 999;
}

.p-list {
  background-color: #283642;
  border: 1px solid #a7abab;
  border-radius: 5px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  height: auto;
  padding: 8px 30px;
  width: auto;
  word-spacing: 2px;
  transition: all 0.3s ease;
}
.p-list:hover {
  background-color: #111b25;
}

.swing {
  animation: swing 3s ease-in-out infinite;
}

@keyframes swing {
  0% {
    transform: translateX(0);
  }
  3% {
    transform: translateX(4px);
  }
  6% {
    transform: translateX(-4px);
  }
  9% {
    transform: translateX(3px);
  }
  12% {
    transform: translateX(-3px);
  }
  15% {
    transform: translateX(2px);
  }
  18% {
    transform: translateX(-2px);
  }
  21% {
    transform: translateX(1px);
  }
  24% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

.p-list a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.p-list a:link {
  transition: all 0.5s ease;
}

/* navbar */

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s, padding 0.2s;
  z-index: 9999;
  overflow: hidden;
}

.navbar-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-section .logo {
  width: 250px;
  cursor: pointer;
}

.navbar .navbar-section {
  border: none;
  background: none;
  padding: 0;
}

.navbar .navbar-section img {
  display: block;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar.scrolled ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 10rem;
  background-color: #0404fe;
  top: 100%;
  left: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition: transform 0.3s ease-in-out;
}

.navbar ul li a.active::after,
.navbar ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: 50% 0;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  color: #0404fe;
}

.navbar.scrolled {
  background-color: #fff;
  padding: 10px 8%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.342);
}

.navbar.scrolled .navbar-section img {
  content: url(../images/nav\ logo.png);
  width: 200px;
}

.navbar.scrolled ul li a {
  color: black;
  font-size: 1rem;
  font-weight: 600;
}

.navbar.scrolled ul li a:hover,
.navbar.scrolled ul li a.active {
  color: #0404fe;
}

/* sidebar */

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease-in-out;
  transform: translateX(-100%);
  z-index: 10000;
}

.sidebar-links-container {
  position: relative;
  width: 100%;
  top: 3rem;
  padding: 3rem 2rem;
}
.sidebar-links-container ul li {
  font-size: 1rem;
  border-radius: 0;
  margin: 0.5rem 0;
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.35);
  padding: 0.5rem 0;
  color: #fff;
}
.sidebar-links-container ul li a {
  color: #fff;
  margin: 0 0.8rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: bolder;
  text-align: right;
}

.sidebar.open {
  left: 0;
  transform: translateX(0);
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin: 20px 0;
  text-align: center;
}

.sidebar-links li a {
  text-decoration: none;
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease-in-out;
}

.sidebar-links li a.active {
  color: #0404fe;
  font-weight: bold;
}

.sidebar-links li a:hover {
  color: #0404fe;
}

.close-btn {
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}
.close-btn:hover {
  color: #0404fe;
  transform: rotate(90deg);
}

/* hero-sec */

.hero-img {
  position: relative;
  height: 20rem;
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin: 0 0 1rem;
  display: block;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.747);
}
.hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    rgba(6, 5, 87, 0.644),
    rgba(12, 3, 51, 0.959)
  );
  z-index: 0;
}

figcaption {
  position: absolute;
  right: 5%;
  left: 5%;
  top: 25%;
  display: block;
  color: #fff;
}

figcaption h1 {
  font-family: "Cairo", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  top: 0;
}

figcaption nav {
  display: block;
}
figcaption nav ol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 !important;
  margin: 0.5rem 0;
  list-style: none;
}
figcaption nav ol li {
  font-size: 1rem;
  display: flex;
}
figcaption nav ol li a {
  padding: 0 7px;
  color: #fff;
  text-decoration: none;
}
figcaption nav ol li a:hover {
  color: #0404fe;
  transition: all 0.5s ease-in-out;
}
figcaption .space {
  color: #0404fe;
}
figcaption .space::before {
  padding: 0 7px;
  display: inline-block;
  content: "->";
  color: #fff;
}
/* social-btn */

figcaption ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  padding: 0;
}

figcaption ul li {
  list-style: none;
  margin: 0 10px;
}

figcaption ul li a.gmail-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #292929;
  transition: 0.3s ease;
}
figcaption ul li a.whatsapp-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #292929;
  transition: 0.3s ease;
}
figcaption ul li a.facebook-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #292929;
  transition: 0.3s ease;
}

figcaption ul li a:hover .right-g {
  color: #4caf50;
  transition: 0.3s ease;
}
figcaption ul li a:hover .left-g {
  color: #1e88e5;
  transition: 0.3s ease;
}
figcaption ul li a:hover .top-mid-g {
  color: #e53935;
  transition: 0.3s ease;
}
figcaption ul li a:hover .top-left-g {
  color: #c62828;
  transition: 0.3s ease;
}
figcaption ul li a:hover .top-right-g {
  color: #fbc02d;
  transition: 0.3s ease;
}

figcaption ul li a:hover .whatsapp-btn {
  color: #fff;
}

figcaption ul li a:hover .facebook-btn {
  color: #fff;
}

figcaption ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: 0.6s ease;
}

figcaption ul li a:hover {
  transform: translate(0, -10%);
}

figcaption ul li:nth-child(3) a:hover {
  background-color: #4267b2;
}
figcaption ul li:nth-child(2) a:hover {
  background-color: #40c351;
}

/* about us */

.about-us {
  display: block;
  overflow: hidden;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us .ceo-sec {
  position: relative;
  margin: 0rem 1rem 2rem 1.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ceo-sec .ceo {
  flex: 33%;
  max-width: 33%;
  position: relative;
  width: 100%;
  padding: 0 1rem;
}
.ceo-sec .ceo figure {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.ceo-sec .ceo figure img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

.ceo-sec .ceo-talk {
  position: relative;
  width: 100%;
  flex: 66%;
  max-width: 66%;
  padding: 0 1rem;
}
.ceo-sec .ceo-talk h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0404fe;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.ceo-sec .ceo-talk h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  left: -11rem;
  bottom: 0;
  margin: auto 0.5rem;
  height: 5px;
  width: 10rem;
  background: #0404fe;
  z-index: 1;
}
.ceo-sec .ceo-talk p {
  margin-bottom: 1rem;
  color: #292929;
  font-weight: 500;
  max-width: 80%;
  text-align: justify;
}

.who-we-are {
  padding: 80px 0 40px 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 9;
  display: inline-block;
  float: none;
}
.who-we-are .container {
  padding: 0 1rem;
  margin: 0 7.8rem;
}

.who-we-are .container .row:nth-of-type(odd) .row-img {
  float: left;
}
.who-we-are .container .row:nth-of-type(odd) .row-info {
  float: right;
}
.who-we-are .container .row:nth-of-type(even) .row-img {
  float: right;
}
.who-we-are .container .row:nth-of-type(even) .row-info {
  float: left;
}
.who-we-are .container .row::after {
  content: "";
  display: block;
  clear: both;
}

.who-we-are .container .row:not(:first-of-type):not(:last-of-type) {
  padding: 50px 0 50px 0;
}
.who-we-are .container .row:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.who-we-are .container .row:first-of-type {
  padding-bottom: 3rem;
}
.who-we-are .container .row:last-of-type {
  padding-top: 3rem;
}
.who-we-are .container .row:nth-of-type(even) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row-reverse;
}
.who-we-are .container .row-info {
  width: 58.33333333%;
  position: relative;
  min-height: 1px;
  padding-right: 1rem;
  padding-left: 1rem;
}
.who-we-are .container .row-info h4 {
  color: #333;
  float: left;
  font-size: 20px;
  margin: 0 0 15px 0;
  width: 100%;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.1;
  text-align: justify;
}
.who-we-are .container .row-info p {
  color: #666;
  float: left;
  font-size: 15px;
  line-height: 28px;
  text-align: justify;
  margin: 0;
  width: 100%;
}
.who-we-are .container .row-info ul {
  color: #666;
  list-style: decimal;
  margin-right: 1rem;
  font-weight: 500;
}

.who-we-are .container .row-img {
  width: 41.66666667%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.who-we-are .container .row-img img {
  margin: 0 auto;
  max-height: 200px;
  display: block;
  max-width: 100%;
  height: auto;
}
.who-we-are .container .big img {
  max-height: 280px;
  max-width: 100%;
}
.who-we-are .container .small img {
  max-height: 150px;
  max-width: 100%;
}

/* time-line */

.time-line {
  background-color: #0404fee7;
  background-image: url(../images/time-line.png);
  background-position: center;
  background-size: cover;
  color: #fff;
  display: block;
  margin: -40px auto 0 auto;
  padding: 210px 0 100px;
  position: relative;
  width: 100%;
  z-index: 0;
  ::selection {
    background-color: #ffffff;
    color: #000072;
  }
}

.time-line .container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.time-line .section-head {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: center;
}

.time-line .section-head .title {
  margin: 0 25%;
}

.time-line .section-head .title h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.time-line .section-head .title p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 15px 0 0;
}

.time-line-list {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 0;
}

.time-line-list ul {
  position: relative;
  margin: 0;
  padding: 60px 0 0;
  list-style: none;
}

.time-line-list ul::before,
.time-line-list ul::after {
  content: " ";
  display: table;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #0404fee7;
}

.time-line-list-line {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #fff;
}

.time-line-list-items {
  overflow: hidden;
}

.time-line-list-items .time-line-list-item {
  position: relative;
  width: 50%;
  padding: 0 30px 20px 30px;
  box-sizing: border-box;
}

.time-line-list-items .time-line-list-item:nth-child(even) {
  float: left;
  text-align: right;
  padding: 0 70px 20px 30px;
  clear: both;
}

.time-line-list-items .time-line-list-item:nth-child(odd) {
  float: right;
  margin: 50px 0 0 0;
  padding: 0 30px 20px 70px;
  clear: both;
}

.time-line-list-items .time-line-list-item + .time-line-list-line {
  margin-top: -30px;
}

.time-line-list-items > .time-line-list-item {
  list-style: none;
  margin-bottom: 50px;
}

.time-line-list-item:nth-child(even) > .time-line-badge {
  right: -6px;
}

.time-line-list-item .time-line-badge {
  position: absolute;
  top: 12px;
  z-index: 1;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 24px;
  background-color: #0404fee7;
  text-decoration: none;
}

.time-line-list-item:nth-child(even) > .time-line-badge::before {
  left: -50px;
}

.time-line-list-item .time-line-badge::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 3px;
  width: 50px;
}

.time-line-list-item .time-line-details .time-line-details-head span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1px 0 0 15px;
}

.time-line-list-item .time-line-details p {
  display: inline-block;
  font-size: 1rem;
  line-height: 30px;
  margin: 10px 0 0 0;
  width: 100%;
}

.time-line-list-items .time-line-list-item:nth-child(odd) {
  float: right;
  clear: right;
  margin: 50px 0 0 0;
  padding: 0 30px 20px 70px;
}
.time-line-list-item:nth-child(odd) > .time-line-badge {
  left: -6px;
}
.time-line-list-item:nth-child(odd) > .time-line-badge::before {
  right: -50px;
}
.time-line-list-items
  .time-line-list-item:nth-child(odd)
  .time-line-details
  .time-line-details-head
  span {
  float: left;
}

.time-line .time-line-list-items::after {
  bottom: 0;
  top: inherit;
}

.custom-shape-divider-top-1726983405 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1726983405 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.custom-shape-divider-top-1726983405 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-bottom-1726983405 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1726983405 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.custom-shape-divider-bottom-1726983405 .shape-fill {
  fill: #ffffff;
}

/* quality-sec */

.quality-sec {
  position: relative;
  display: block;
  width: 100%;
}

.quality-sec .container {
  width: 1200px;
  color: #fff;
  margin: 0 auto;
  padding: 1rem;
}

.quality-sec .container .quality-head {
  margin-bottom: 1rem;
}
.quality-sec .container .quality-head h2 {
  font-size: 3rem;
  text-align: center;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 700;
}

.quality-sec .container .quality-text {
  margin: 0 8rem;
  padding: 0 1rem;
}
.quality-sec .container .quality-text p {
  font-size: 1.8rem;
  text-align: justify;
  text-align-last: center;
}

/* our-team */

.team {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.team .container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2rem;
}

.team .container h2 {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Kufi Arabic", sans-serif;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.team .container .cards .row {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  margin-bottom: 2rem;
}

.team .container .cards .row .card {
  width: 250px;
  height: 300px;
  border: solid 1px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.our-team .picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}
.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #0404fe;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}
.our-team:hover .picture::before {
  height: 100%;
}
.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0404fe;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #4e5052;
  font-weight: 700;
}

/* certificate */

.certificate-sec {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(
    rgba(6, 5, 87, 0.644),
    rgba(12, 3, 51, 0.781)
  );
  padding: 2rem;
}
.certificate-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/quality-bg.svg) no-repeat center fixed;
  background-size: cover;
  z-index: -1;
}

.certificate-sec .container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}

.certificate-sec .container .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}

.certificate-sec .container .row .certificate {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
.certificate-sec .container .row .certificate .certificate-logo img {
  display: block;
  width: 300px;
  height: auto;
}

.certificate-sec .container .row .certificate .certificate-info {
  text-align: center;
}
.certificate-sec .container .row .certificate .certificate-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.iso-btn {
  font-size: 16px;
  position: relative;
  margin: auto;
  padding: 0.8em 1.5em;
  border: none;
  background: #000072;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  transition: all 0.2s linear;
  box-shadow: 0 0.3em 0.8em rgba(0, 0, 0, 0.15);
  text-align: center;
}

.iso-btn:active {
  transform: scale(0.96);
}

.iso-btn span {
  color: #fff;
  font-weight: bold;
}

.iso-btn .border {
  position: absolute;
  border: 0.15em solid #000072;
  transition: all 0.3s 0.1s linear;
  top: 50%;
  left: 50%;
  width: 9em;
  height: 2.8em;
  transform: translate(-50%, -50%);
}

.iso-btn:hover .border {
  display: block;
  width: 9.8em;
  height: 3.5em;
}

.iso-btn:hover {
  background: #000072;
}

.full-rounded {
  border-radius: 2em;
}

/* footer */

footer {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #111b25;
}

footer .container {
  width: 1280px;
  padding: 80px 40px 40px 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

footer .container .row {
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-items: center;
}
footer .container .row .main-col,
.about-col {
  grid-column: span 2 / span 2;
}

footer .container .row .main-col {
  text-align: start;
  text-align: justify;
}
footer .container .row .main-col img {
  margin-bottom: 1rem;
}

footer .container .row .main-col p {
  color: rgba(255, 255, 255, 0.4);
  max-width: 90%;
  padding-right: 10px;
}

footer .container .row .pages-col {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}
footer .container .row h5 {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: bolder;
  text-align: start;
  padding-right: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

footer .container .row ul li {
  margin: 8px;
  list-style: none;
}

footer .container .row ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
footer .container .row ul li a svg {
  margin-left: 8px;
}
footer .container .row ul li a:hover {
  color: #fff;
}

footer .container .row .contact-col {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

footer .container .row .contact-col .social-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

footer .container .row .contact-col .social-links li a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: inline-block;
  font-size: 18px;
  height: 40px;
  padding: 7px 0 0 0;
  text-align: center;
  width: 40px;
  transition: all 0.3 ease;
}
footer .container .row .contact-col .social-links li a:hover {
  border-color: #fff;
}
footer .container .row .contact-col .social-links li a svg {
  margin: 0;
}

footer .container .row .about-col {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

footer .container .row .about-col p {
  color: rgba(255, 255, 255, 0.4);
  max-width: 100%;
  padding-right: 10px;
  text-align: justify;
}

hr {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0;
  margin: 60px 0;
}

footer .container .sec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

footer .container .address {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer .container .address h5 {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 30px;
  color: #fff;
  font-weight: bolder;
  text-align: start;
  margin-bottom: 2rem;
  margin-right: 10px;
}
footer .container .address .content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
footer .container .address .content svg {
  color: #fff;
  width: 40px;
  height: 40px;
}
footer .container .address .content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  max-width: 75%;
  font-weight: 700;
}

footer .copyright-sec {
  background-color: #0f151c;
  float: left;
  position: relative;
  width: 100%;
}
footer .copyright-sec .container {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 38px 0;
}

footer .copyright-sec .container .footer-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .copyright-sec .container .footer-row img {
  width: 60px;
  padding-left: 20px;
}
footer .copyright-sec .container .footer-row p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}
footer .copyright-sec .container .footer-row a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
