@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;
}

* {
 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: 480px;
  margin: 0 auto 1rem;
  color: var(--text-primary-paragraph);
  font-weight: 500;
 }
}

.subSections {
 width: 100%;
 height: 78px;
 margin: 0 auto;
 border-radius: 20px;
 background-color: var(--background-primary);
 position: relative;
 margin-top: 0px;

 .container {
  max-width: var(--container-width);
  margin: 0 auto !important;
  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;
}

ul.contentlist
{
        margin: 2% 4% 2% 0;
}

ol.contentlist
{
        margin: 2% 4% 2% 0;
        list-style: none;
}

.tabs li {
 list-style: none;

 font-weight: 500;
 height: 50px;
 line-height: 50px;
}
.tabs li.active a {
 background-color: var(--background-primary);
 color: #fff;
 border: none;
 display: 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);
 transition: all 0.3s;
 display: block;

 padding: 0rem 0.75rem;
 height: 100%;

 box-sizing: border-box;
 cursor: pointer;
}

.subectionsList li a img {
    width: 40px;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.subectionsList  li a:active, .subectionsList  li a:hover, .subectionsList  li a:focus
{
    border: 0px solid #fff;
    border-radius: 10px;
}


.tabs li a:hover {
 border: none;
 background-color: var(--background-primary);
 color: #fff;
 border-right: 0px solid transparent;
 border-left: 0px solid transparent;
 border-top: 0px 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: 0px solid #fff;
        border-radius: 12px;
        padding: 0.2rem 0.3rem;
        transition: all 0.3s;
        cursor: pointer;
        display: block;
        margin: 2px auto;
        
        text-align: center;
 }
 li.active a {
  color: #fff;
  border: 0px 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;
}

.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: center;
 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: block;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        font-weight: 500;
        font-size: 1.2rem;
        font-weight: normal;
        position: relative;
        padding-bottom: 0.5rem;
        margin-bottom: 1.4rem;
 }
 h3::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border-neutral-primary);
  position: absolute;
  bottom: 0;
  right: 0;
 }
h6 {
  display: block;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-weight: normal;
  font-size: 1rem;

  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
 }
 ul li {
  line-height: 1.8;
  color: var(--text-primary-paragraph);
  position: relative;
  text-indent: 15px;
  list-style: none;
  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;
}

ul.resp-tabs-list, p {
    margin: 0px;
    padding: 0px;
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    /*padding: 13px 15px;*/
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    float: left;
}

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
}

.resp-tab-content {
    display: none;
    padding: 15px;
}

.resp-tab-active {
	border: 1px solid #fff !important;
	/*border-bottom: none;
	margin-bottom: 0px !important;
	padding: 12px 14px 14px 14px !important;
	border-top: 0px solid #5AB1D0 !important;
	border-bottom: 0px #fff solid !important;*/
    border-radius:10px;
}


.conditions h3 img {
    vertical-align: middle;
    width: 40px;
        margin-left: 5px;
}

.resp-tab-active {
    border-bottom: none;
    background-color: #fff;
}

.resp-content-active, .resp-accordion-active {
    display: block;
}

.resp-tab-content {
    border: 0px solid #c1c1c1;
	border-top-color: #5AB1D0;
}

h2.resp-accordion {
    font-size: 13px;
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 10px 15px;
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    margin-bottom: 0px !important;
    padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}

@media (max-width: 992px) {
 .hero {
  padding: 2rem 1rem 0;
 }
h2.resp-accordion img {
    width: 44px;
    vertical-align: middle;
}
 .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;
 }
}
/*-----------Accordion styles-----------*/
h2.resp-tab-active {
    background-color: #085934 !important;/* !important;*/
}
h2.resp-accordion span
{
  color:#fff;
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;/* !important;*/
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
}

h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1;/* !important;*/
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 992px) {
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
        
        background-color: #1b8354 !important;
    }
    .subSections {
        height: auto;
        margin-top: 0rem;
        padding: 0rem 0;
        background-color: transparent;
    }
h2.resp-accordion span {
    color: #fff;
}
    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }
}
.text-kfu {
    color: #066058;
}