@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: transparent;
  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-content */

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.content {
  text-align: center;
}

.main-page-logo {
  width: 200px;
}

.content h1 {
  font-family: "Cairo", sans-serif;
  font-size: 4rem;
  color: #fff;
  font-weight: 900;
}

/* social-btn */

.social-btn ul {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.social-btn ul li {
  list-style: none;
  margin: 0 15px;
}

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

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

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

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

.social-btn ul li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  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;
}

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

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

/* hero-video */

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: no-repeat;
  background-size: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
    rgba(6, 5, 87, 0.644),
    rgba(12, 3, 51, 0.959)
  );
  z-index: 0;
}

/* who-we-are */

.abou-us {
  position: relative;
  background: url(../images/Untitled\ design.svg) no-repeat center;
  padding: 3rem 4rem 4rem 4rem;
  display: flex;
  justify-content: space-evenly;
  background-size: cover;
}

.about-content {
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}

.about-content .title {
  position: relative;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #0404fe;
}

.about-content .title::after {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 0;
  margin: auto 0.5rem;
  height: 5px;
  width: 10rem;
  background: #0404fe;
  z-index: 1;
}

.about-content p {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: justify;
}

.about-content .btn {
  --color: #0404fe;
  display: inline-block;
  width: 8rem;
  height: 2.6rem;
  line-height: 2.5rem;
  margin: 0.5rem auto;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color 0.5s;
  z-index: 1;
  border-radius: 4rem;
  cursor: pointer;
}

.about-content .btn a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0404fe;
}

.about-content .btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  width: 200px;
  height: 300px;
  border-radius: 2rem;
}

.about-content .btn:hover a {
  color: #fff;
  transition: color 0.5s ease;
}

.about-content .btn:before {
  top: 100%;
  left: 100%;
  transition: all 0.5s ease;
}

.about-content .btn:hover:before {
  top: -30px;
  left: -30px;
}

.about-content .btn:active:before {
  background: #3a0ca3;
}

.about-img {
  max-width: 50%;
  display: flex;
  align-items: center;
}
.about-img img {
  max-width: 400px;
}

/* why-us */

.form-sec {
  background-color: rgba(6, 5, 87, 0.644);
  position: relative;
  display: block;
  ::selection {
    background-color: #fff;
    color: #000072;
  }
}
.form-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/why\ us.png) no-repeat center fixed;
  background-size: cover;
  z-index: -1;
}

.form-sec .why-us {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 4rem 0;
}

.form-sec .why-us .why-us-text {
  color: #fff;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  margin: 0 1rem;
}
.form-sec .why-us-text h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}
.form-sec .why-us-text p {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: justify;
}

.why-us-hr {
  display: none;
}

.why-us .why-us-text .count .count-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.count .count-content .text-center {
  padding: 0 2rem;
  position: relative;
  text-align: center;
  direction: ltr;
}
.count .count-content .text-center h2 {
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.count .count-content .info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 35px;
  width: 2px;
  margin: auto;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  right: auto;
  left: 0;
}

.form-sec .why-us .form {
  flex: 0 0 40%;
  max-width: 40%;
}
.form-sec .why-us .form form {
  width: 480px;
  text-align: center;
}
form .inbut-box {
  display: flex;
  justify-content: space-between;
}
.inbut-box .input-field {
  width: 48.5%;
}
.inbut-box .input-field-msg {
  width: 100%;
}

.field .item {
  width: 100%;
  height: auto;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  color: #ededed;
  margin: 12px 0;
}
.field.error .item {
  border-color: #d93025;
}

.field .item::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.field .error-txt {
  font-size: 1rem;
  color: #d93025;
  text-align: right;
  margin: -5px 0 10px;
  font-weight: 600;
  display: none;
}
.field.error .error-txt {
  display: block;
}

form .textarea-field .item {
  resize: none;
  height: 83px;
}

form .textarea-field .error-txt {
  margin-top: -10px;
}

form button {
  padding: 12px 32px;
  width: 100%;
  background-color: #0404fe;
  border: none;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 8px #0404fe;
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.5s ease;
  overflow: hidden;
}
form button:hover {
  background-color: #04132a;
  box-shadow: none;
}
/* services-sec */

.services {
  background: #f4f5f9;
  position: relative;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.services .title {
  font-family: "Cairo", sans-serif;
  position: relative;
  font-size: 24px;
  color: #0404fe;
  text-align: center;
}
.services .title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .title .sec-text {
  margin-inline-end: 1rem;
  margin-inline-start: 1rem;
  font-size: 32px;
  color: #000072;
}

.services .row .description {
  font-size: 28px;
  color: #000072;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.services .row .description h2,
.services .row .description span {
  font-family: "Noto Kufi Arabic", sans-serif;
  line-height: 140%;
}

.services .row .description span {
  color: #0404fe;
}

.ser-cards {
  width: 1200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.credentialing {
  --bg-color: #5776ff;
  --bg-color-light: #86a9ff;
  --text-color-hover: #d5e4ff;
  --box-shadow-color: rgba(111, 109, 255, 0.48);
}
.ser-card {
  width: 220px;
  height: 321px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.ser-card:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
}

.ser-card:hover .overlay {
  transform: scale(4) translateZ(0);
}

.ser-card:hover .circle {
  border-color: var(--bg-color-light);
  background: var(--bg-color);
}

.ser-card:hover .circle:after {
  background: var(--bg-color-light);
}

.ser-card:hover p {
  color: var(--text-color-hover);
}

.ser-card:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
    0 15px 24px var(--box-shadow-color);
}

.ser-card p {
  font-size: 17px;
  color: #4c5656;
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
}

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle:after {
  content: "";
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: var(--bg-color);
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
}

.circle img {
  z-index: 10000;
  transform: translateZ(0);
  width: 70px;
}

.overlay {
  width: 118px;
  position: absolute;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
  top: 70px;
  left: 50px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

/* products */

.products {
  position: relative;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.prod-title {
  position: relative;
  margin-bottom: 1rem;
}

.prod-title h1 {
  text-align: center;
  padding-bottom: 0.7rem;
  color: #000072;
  font-size: 3rem;
}

.prod-title h1 span {
  font-weight: 500;
  line-height: 2em;
  color: #0404fe;
  display: block;
  line-height: 1.3;
  font-size: 2rem;
}

.prod-title h1::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  content: "";
  left: 50%;
  margin-left: -30px;
  background-color: #000072;
}

.more-btn .btn {
  font-size: 20px;
  font-weight: 500;
  background: transparent;
  border: none;
  padding: 1em 1.5em;
  color: #000072;
  text-transform: uppercase;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}

.more-btn .btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #0404fe;
  border-radius: 1rem;
  transition: 0.5s ease;
}

.more-btn .btn:hover {
  color: #fff;
  transition-delay: 0.5s;
}

.more-btn .btn:hover::before {
  width: 100%;
}

.more-btn .btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #0404fe;
  border-radius: 1rem 1rem 0 0;
  transition: 0.4s ease;
  z-index: -1;
}

.more-btn .btn:hover::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
}

.slide-container {
  max-width: 1500px;
  width: 100%;
}

.slide-content {
  padding: 45px 20px;
  margin: 0 40px;
  overflow: hidden;
  border-radius: 1.5rem;
}

.card {
  border-radius: 1rem;
  background-color: #dfdfdf;
  border: 2px solid #f8f8f8;
  transition: border-color 1s ease;
}

.card:hover {
  border-color: #c3c6ce;
  -webkit-box-shadow: 10px 5px 18px 0 rgba(255, 255, 255, 0.877);
  box-shadow: 10px 5px 18px 0 rgba(255, 255, 255, 0.877);
}

.img-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.img-content {
  position: relative;
  row-gap: 5px;
  padding-top: 2rem;
}

.card-iamge {
  position: relative;
  width: 240px;
  height: 240px;
  transition: transform 0.5s ease;
}
.card:hover .card-iamge {
  transform: scale(1.1);
}

.card-iamge .card-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.card-name {
  font-family: "Cairo", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000072;
  padding-bottom: 1rem;
}

.swiper-navBtn {
  color: #5e5eff;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #0404fe;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 40px;
}

.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #3535ff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #0404fe;
}

.grabCursor:active {
  cursor: grabbing;
}

/* 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;
}
