@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

:root {
 --text-display: #1f2a37;
 --background-primary: #1b8354;
 --background-primary-dark: #1b6041;
 --border-neutral-primary: #d2d6db;
 --text-light-primary: #c3e6d3;
 --gradient-dark-color1: #182230;
 --gradient-dark-color2: #475467;
 --text-primary-paragraph: #384250;
 --text-white: #fff;
 --text-black: #000;
 --container-width: 1440px;
}

:marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
    display: none;
}
* {
 padding: 0;
 margin: 0;
 text-decoration: none;
 box-sizing: border-box;
}

body {
 padding: 0;
 margin: 0;
 font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.header {
 max-width: var(--container-width);
 margin: 0 auto;
 overflow: hidden;
 h3 {
  text-align: center;
  padding: 1rem 0;
  font-size: 1.5rem;
  color: var(--text-display);
 }
 p {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 1rem;
  color: var(--text-primary-paragraph);
  font-weight: 500;
 }
}

.subSections {
 width: 100%;
 height: 65px;
 margin: 0 auto;
 background-color: var(--background-primary);
 position: relative;
 margin-top: 3.5rem;
 border-radius: 1.5rem;

 .container {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
 }
}

ul.tabs {
 display: flex;

 position: absolute;
 top: -50px;
 right: 0;
 left: 0;
 margin: 0 auto;
 column-gap: 1rem;
 align-items: center;

 justify-content: center;
}
.tabs li {
 list-style: none;

 font-weight: 500;
 height: 50px;
 line-height: 50px;
}
.tabs li.active a {
 background-color: var(--background-primary) !important;
 color: #fff !important;
 border: none;
}
.tabs li a {
 border-right: 1px solid var(--border-neutral-primary);
 border-left: 1px solid var(--border-neutral-primary);
 border-top: 1px solid var(--border-neutral-primary);
 border-top-right-radius: 0.5rem;
 border-top-left-radius: 0.5rem;

 color: var(--text-black) !important;
    background-color: #fff !important;

 
 transition: all 0.3s;
 display: block;

 padding: 0rem 0.75rem;
 height: 100%;

 box-sizing: border-box;
 cursor: pointer;
}
.tabs li a:hover {
 border: none;
 background-color: var(--background-primary) !important;
 color: #fff;
 border-right: 1px solid transparent;
 border-left: 1px solid transparent;
 border-top: 1px solid transparent;
}

.subectionsList {
 padding: 0;
 margin: 0;
 height: 100%;
 display: flex;

 align-items: center;
 justify-content: space-around;
 
 li {
  list-style: none;
  font-size: 0.95rem;
 }
 li a {
  color: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.4rem 0.8rem;
  transition: all 0.3s;
  cursor: pointer;
 }
 li.active a {
  color: #fff;
  border: 1px solid #fff;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
 }

 li a:hover {
  color: #fff;
  border: 1px solid #fff;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
 }
}

.subectionsList.center-items {
 justify-content: center;
}

.riyalicon
{
vertical-align: middle;
    height: 25px;

}
ul.listcontent {
    margin-right: 5%;
}

.content {
 max-width: var(--container-width);
 margin: 0 auto;
}
@keyframes gradient-animation {
 0% {
  background-position: 0% 50%;
 }
 50% {
  background-position: 100% 50%;
 }
 100% {
  background-position: 0% 50%;
 }
}
.hero {
 max-width: var(--container-width);
 border-radius: 1.5rem;
 background: linear-gradient(
   311deg,
   rgba(51, 121, 208, 0.16) 33.34%,
   rgba(255, 255, 255, 0) 97.7%
  ),
  #1b8354;
 background-size: 200% 200%;
 animation: gradient-animation 10s ease infinite;
 margin: 2rem auto 2rem;
 color: var(--text-white);
 padding: 2rem 2rem 0;

 .row {
  display: flex;
  justify-content: space-between;
  max-width: 85%;
  margin: 0 auto;
 }
 .row:first-child {
  max-width: 85%;
  border-bottom: 1px solid #ffffff25;
  padding-bottom: 1rem;
 }
}

.heading {
 display: flex;
 align-items: center;
 column-gap: 1rem;
 h3 {
  font-size: 1.5rem;
  font-weight: 500;
 }
 .apply a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  padding: 0.5rem 2rem;
  color: var(--text-white);
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
   45deg,
   var(--gradient-dark-color1) 0%,
   var(--gradient-dark-color2) 100%
  );
  box-shadow: 0 4px 12px 0 #196c56;
  transition: all 0.3s;
 }

 .apply a:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
   145deg,
   var(--gradient-dark-color2) 0%,
   var(--gradient-dark-color1) 100%
  );
  box-shadow: 0 4px 12px 0 #0f4335;
 }
}

.name {
 display: flex;
 flex-direction: column;

 row-gap: 0.25rem;
 font-weight: 400;
}

.details {
 padding: 3rem 0;

 margin: 0;
 display: flex;
 min-width: 100%;
 justify-content: space-between;
 margin: 0 auto;
 align-items: baseline;
 h3 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 135%;
  text-align: center;
 }
 h3 b {
  font-weight: 400;
  display: block;
  padding: 0;
  font-weight: bold;
  margin: 0;
  color: var(--text-light-primary);
 }

 li {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  align-items: center;
 }
 li span {
  flex: 1 1 0;
  display: flex;
  width: 72px;
  height: 72px;
  padding: 16px 14px;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 20px;
  border: 1px solid #56efd52d;

  background: radial-gradient(
   545056.07% 112.98% at 36.1% 105.56%,
   rgba(27, 225, 189, 0.05) 0%,
   rgba(18, 54, 84, 0.05) 100%
  );
  box-shadow: 0 12px 24px 0 #276248;
  position: relative;
 }
/* li span::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
   145deg,
   #ffffff59,
   rgba(255, 255, 255, 0.1)
  );
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
 }*/
}

section {
 display: flex;
 column-gap: 2rem;
 align-items: start;

 justify-content: space-between;
 .right {
  flex: 1 1 65%;
 }
 .left {
  flex: 1 1 35%;

  img {
   width: 100%;
  }
 }
}

.conditions,
.docs {
 h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-weight: 500;
  font-size: 1.4rem;
  font-weight: 500;

  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
 }
 h3::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border-neutral-primary);
  position: absolute;
  bottom: 0;
  right: 0;
 }

 ul li {
  line-height: 1.8;
  color: var(--text-primary-paragraph);
  position: relative;
  text-indent: 4px;
  margin-right: 5%;
  list-style:circle;
  color: var(--text-primary-paragraph);
 }
/* ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--background-primary-dark);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  right: 0;
 }*/
}

.docs {
 margin-top: 2rem;
}

.fees {
 margin-top: 2rem;
}

@media (max-width: 768px) {
 .hero {
  padding: 2rem 1rem 0;
 }

 .hero .row:first-child {
  flex-direction: column;
  gap: 1rem;
 }

 .heading {
  flex-direction: column;
  gap: 1rem;
 }

 .details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
 }

 .name {text-align: center;}
 ul.tabs {
  flex-direction: column;
  position: relative;
  top: unset;
  gap: 0.5rem;
 }

 .tabs li {
  width: 100%;
  text-align: center;
 }

 .subSections {
  height: auto;
  margin-top: 1rem;
  padding: 1rem 0;
 }

 .subectionsList {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  height: auto;
  gap: 1rem;
 }

 section {
  flex-direction: column;
  padding: 0 1rem;
  row-gap: 1.5rem;
 }

 .heading .apply {
  display: block;
  width: 100%;
 }
 .heading .apply a {
  display: flex;
  margin: 0 auto;
  max-width: 80%;
 }

 section .left {
flex: 1 1 100%;
width: 100%;


  img {
   width: 100%;
  }
 }



 .subSections {
  .container {
   overflow: hidden;

   padding: 1rem 0;
  }
 }

 .subectionsList {
  li {
   width: 100%;
   a {
    width: 94%;
    padding: 0.75rem 1rem;
    text-align: center;
    margin: 0 auto;
    display: block;
   }
  }
 }

 .tabs li.active a {
  background-color: var(--background-primary-dark);
  border-right: 1px solid var(--border-neutral-primary);
  border-left: 1px solid var(--border-neutral-primary);
  border-top: 1px solid var(--border-neutral-primary);
  max-width: 98%;
  margin: 0 auto;
  border-radius: 1rem;
 }


}

@media (max-width: 480px) {
 .header h3 {
  font-size: 1.2rem;
 }

 .header p {
  font-size: 0.9rem;
 }

 .heading h3 {
  font-size: 1.2rem;
 }

 .apply a {
  padding: 0.5rem 1rem;
 }

 .name h4 {
  font-size: 0.9rem;
 }

 .details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 }

 .details h3 {
  font-size: 0.9rem;
 }

 .conditions h3,
 .docs h3 {
  font-size: 1.2rem;
 }

 .conditions ul li,
 .docs ul li {
  font-size: 0.9rem;
 }
 .heading .apply {
  display: block;
  width: 100%;
 }
 .heading .apply a {
  display: flex;
  margin: 0 auto;
  max-width: 80%;
 }

 .subSections {
  .container {
   overflow: hidden;

   padding: 1rem 0;
  }
 }

 .subectionsList {
  li {
   width: 100%;
   a {
    width: 94%;
    padding: 0.75rem 1rem;
    text-align: center;
    margin: 0 auto;
    display: block;
   }
  }
 }

 .tabs li.active a {
  background-color: var(--background-primary-dark);
  border-right: 1px solid var(--border-neutral-primary);
  border-left: 1px solid var(--border-neutral-primary);
  border-top: 1px solid var(--border-neutral-primary);
  max-width: 98%;
  margin: 0 auto;
  border-radius: 1rem;
 }
}
