@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 10px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 13px;
  width: 13px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #FFFFFF;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #C91416;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  color: #070505;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: #070505;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.iso .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.iso .buttons .btn-red,
.iso .buttons .btn-white {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  white-space: nowrap;
  transition: 1s all;
}
.iso .buttons .btn-red img,
.iso .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.iso .buttons .btn-red::before,
.iso .buttons .btn-white::before,
.iso .buttons .btn-red::after,
.iso .buttons .btn-white::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  transition: 1s ease-out;
  z-index: -1;
}
.iso .buttons .btn-red::before,
.iso .buttons .btn-white::before {
  right: -50px;
  border-right: 50px solid transparent;
  transform: translateX(-100%);
}
.iso .buttons .btn-red::after,
.iso .buttons .btn-white::after {
  left: -50px;
  border-left: 50px solid transparent;
  transform: translateX(100%);
}
.iso .buttons .btn-red:hover,
.iso .buttons .btn-white:hover {
  box-shadow: 0 0 4px #FFFFFF;
}
.iso .buttons .btn-red:hover::before,
.iso .buttons .btn-white:hover::before {
  transform: translateX(-20%);
}
.iso .buttons .btn-red:hover::after,
.iso .buttons .btn-white:hover::after {
  transform: translateX(20%);
}
.iso .buttons .btn-red {
  background-color: #C91416;
  color: #FFFFFF;
}
.iso .buttons .btn-red::before,
.iso .buttons .btn-red::after {
  border-bottom: 100px solid #5CA177;
}
.iso .buttons .btn-white {
  border: 1px solid #070505;
  background-color: #FFFFFF;
}
.iso .buttons .btn-white::before,
.iso .buttons .btn-white::after {
  border-bottom: 100px solid #F5F5F5;
}
.iso .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.iso .heading p {
  margin-top: 1rem;
}
.iso .heading h2 {
  width: 100%;
  font-size: 22px;
}
.iso .center-heading {
  justify-content: center;
  align-items: center;
}
.iso .center-heading h2,
.iso .center-heading p {
  text-align: center !important;
}
.iso .white-heading h2,
.iso .white-heading p {
  color: #FFFFFF;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes circleMover {
  from {
    transform: rotate(0deg) translateX(13px) translateY(5px);
  }
  to {
    transform: rotate(360deg) translateX(13px) translateY(5px);
  }
}
@keyframes blink {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes move {
  0% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.iso .banner {
  flex-direction: column;
  background-image: url(/_public/images/pmparabic-new/banner-bg.png);
  background-size: 100% 100%;
  padding: 0;
}
.iso .banner .logo-container,
.iso .banner .tka-logo,
.iso .banner .menu {
  display: flex;
}
.iso .banner .container {
  height: 100%;
}
.iso .banner .logo-container {
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  z-index: 1;
}
.iso .banner .logo-container .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
}
.iso .banner .arabic-buttons {
  width: 100%;
  margin: 0 auto 1rem;
}
.iso .banner .arabic-buttons .btn-red:first-child {
  margin-right: 1rem;
}
.iso .banner .tka-logo {
  max-width: 190px;
}
.iso .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.iso .banner .menu {
  margin-left: auto;
}
.iso .banner .menu img {
  width: 22px;
  height: 23px;
}
.iso .banner .menu-links {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  padding: 1rem;
  width: 80%;
  transition: 1s all;
  transform: translateX(100%);
  background-color: #FFFFFF;
}
.iso .banner .menu-toggle {
  display: flex;
  font-weight: 500;
  justify-content: flex-end;
  align-items: center;
}
.iso .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.iso .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #070505;
}
.iso .banner ul .links-li:first-child {
  padding-top: 0;
}
.iso .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.iso .banner ul .links-li:last-child {
  display: none;
}
.iso .banner .menu.active + .menu-links {
  transform: translateX(0);
}
.iso .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.16);
  border: 0;
  padding: 1rem 1.5rem;
}
.iso .banner .sticky-down {
  top: -100px;
}
.iso .banner .banner-container,
.iso .banner .banner-content,
.iso .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.iso .banner .banner-container {
  padding: 4rem 1.5rem;
}
.iso .banner .banner-container::before {
  content: '';
  background-image: url(/_public/images/pmparabic-new/element.svg);
  background-size: 100% 100%;
  width: 226px;
  height: 139px;
  top: -31px;
  position: absolute;
  left: -66px;
}
.iso .banner .banner-content h1 {
  font-size: 35px;
  margin-bottom: 1rem;
  text-shadow: none;
  position: relative;
}
.iso .banner .banner-content h1 img {
  width: 28px;
  height: 28px;
  margin-right: 0.5rem;
  transform: translateY(6px);
}
.iso .banner .banner-content h1 span {
  font-weight: 500;
  position: relative;
}
.iso .banner .banner-content h1 span::before {
  content: '';
  background-image: url(/_public/images/pmparabic-new/shape.svg);
  background-size: 100% 100%;
  width: 140px;
  height: 12px;
  position: absolute;
  bottom: -8px;
}
.iso .banner .banner-content h1 span b {
  font-weight: 600;
}
.iso .banner .banner-content h1 span strong {
  font-weight: 500;
}
.iso .banner .banner-content p {
  font-size: 13px;
  line-height: 27px;
}
.iso .banner .banner-content p:nth-of-type(2) {
  margin-top: 1rem;
}
.iso .banner .banner-info {
  display: none;
  background-color: #FFFFFF;
  padding: 2rem;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
}
.iso .banner .banner-info b {
  font-size: 22px;
  margin-bottom: 6px;
}
.iso .overview .overview-container,
.iso .overview .overview-content,
.iso .overview .course-content {
  display: flex;
  flex-direction: column;
}
.iso .overview .overview-content {
  align-items: center;
}
.iso .overview .overview-content p {
  text-align: center !important;
}
.iso .overview .overview-content p:nth-of-type(1) {
  margin-bottom: 1rem;
}
.iso .overview .overview-container::after {
  content: '';
  background-image: url(/_public/images/pmparabic-new/trainer.png);
  background-size: 100% 100%;
  width: 350px;
  height: 382px;
  margin-top: 2rem;
}
.iso .course {
  padding-top: 1rem;
  padding-bottom: 5rem;
}
.iso .course .course-container,
.iso .course .course-list,
.iso .course .course-item,
.iso .course .course-head,
.iso .course .info {
  display: flex;
  flex-direction: column;
}
.iso .course .heading p {
  margin: 0;
}
.iso .course .course-list h2 {
  text-align: center !important;
  font-size: 18px;
  background-color: #1F8044;
  color: #FFFFFF;
  padding: 0.3rem;
  border: 1px dashed;
}
.iso .course .course-head {
  margin-top: 2rem;
}
.iso .course .course-head:first-child {
  margin-top: 0;
}
.iso .course .course-item {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  margin-top: 2rem;
}
.iso .course .course-item h3 {
  font-size: 14px;
  padding: 0.8rem 1rem;
  transition: 1s all;
  background-color: #F5F5F5;
  border-radius: 20px 20px 0 0;
}
.iso .course .course-item:hover h3 {
  background-color: #1F8044;
  color: #FFFFFF;
}
.iso .course .course-item:hover h3::before {
  background-color: #070505;
  color: #FFFFFF;
  border-color: transparent;
}
.iso .course .course-item:hover .content span img:first-child {
  display: none;
}
.iso .course .course-item:hover .content span img:last-child {
  display: flex;
}
.iso .course .content {
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
}
.iso .course .content span {
  display: none;
  width: 88px;
  height: 88px;
  transition: 1s all;
}
.iso .course .content span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.iso .course .content span img:last-child {
  display: none;
}
.iso .course .info p {
  font-size: 12px;
  color: #838383;
}
.iso .course .info p:nth-of-type(1) {
  margin-bottom: 0.2rem;
}
.iso .course .info .buttons .btn-red {
  min-width: 132px;
}
.iso .course .info .buttons .btn-red img {
  width: 15px;
  height: 15px;
}
.iso .method {
  background-image: url(/_public/images/pmparabic-new/method-bg.png);
  background-size: 100% 100%;
}
.iso .method .method-container,
.iso .method .method-list,
.iso .method .method-item {
  display: flex;
  flex-direction: column;
}
.iso .method .heading {
  margin-bottom: 0;
}
.iso .method .method-item {
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}
.iso .method .method-item span {
  display: flex;
  width: 130px;
  height: 130px;
  border-radius: 65px;
  overflow: hidden;
  border: 5px solid #FFFFFF;
  transition: 1s all;
  order: 1;
}
.iso .method .method-item span img {
  width: 100%;
  height: 100%;
}
.iso .method .method-item a {
  margin-top: 1rem;
  order: 2;
  border-radius: 50px;
  transition: 1s all;
  background-color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
}
.iso .method .method-item a:hover {
  background-color: #C91416;
  color: #FFFFFF;
  box-shadow: none;
}
.iso .method .method-item a:hover ~ span {
  border: 5px solid #1F8044;
}
.iso .method .method-item h3 {
  margin: 0.8rem 0;
  font-size: 17px;
  width: 100%;
  order: 3;
}
.iso .method .method-item p {
  font-size: 13px;
  order: 4;
}
.iso .method .method-item p,
.iso .method .method-item h3 {
  text-align: center !important;
}
.iso .process .process-container,
.iso .process .process-content,
.iso .process .process-info {
  display: flex;
  flex-direction: column;
}
.iso .process .process-content {
  align-items: center;
}
.iso .process .process-content p {
  text-align: center  !important;
  margin-top: 1rem;
}
.iso .process .process-content p:first-child {
  margin-top: 0;
}
.iso .process .process-info {
  align-items: center;
  position: relative;
  margin-top: 2rem;
}
.iso .process .process-info::before {
  content: '';
  background-image: url(/_public/images/pmparabic-new/note.svg);
  background-size: 35px 35px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50px;
  width: 68px;
  height: 68px;
  background-color: #1F8044;
  padding: 5px;
  position: absolute;
  box-shadow: 0px 0px 0px 4px #FFFFFF;
  right: 0;
}
.iso .process .process-info p b {
  font-size: 18px;
}
.iso .process .process-info span {
  display: flex;
  flex-direction: column;
  box-shadow: -10px 10px 25px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  width: 147px;
  height: 173px;
  padding: 20px;
  position: absolute;
  border-radius: 15px;
  bottom: 18px;
  left: 0;
}
.iso .process .process-info span img {
  width: 100%;
  height: 100%;
}
.iso .process .process-info > img {
  width: 303px;
  height: 376px;
}
.iso .choose {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.iso .choose .choose-container,
.iso .choose .choose-list,
.iso .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.iso .choose .heading {
  margin-bottom: 0;
}
.iso .choose .choose-list {
  counter-reset: counter;
}
.iso .choose .choose-item {
  padding: 1.5rem 1rem;
  box-shadow: 0px 10px 19px rgba(0, 0, 0, 0.16);
  text-align: center;
  border: 1px solid rgba(31, 128, 68, 0.5);
  align-items: center;
  margin-top: 2rem;
  width: 272px;
  align-self: center;
}
.iso .choose .choose-item span {
  display: flex;
  width: 118px;
  height: 118px;
  padding: 1.8rem;
  border: 6px solid #F5F5F5;
  border-radius: 70px;
  position: relative;
}
.iso .choose .choose-item span::before {
  content: counter(counter, decimal-leading-zero);
  counter-increment: counter;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #FFFFFF;
  width: 35px;
  height: 35px;
  font-weight: 500;
  right: -12px;
  top: 0;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
.iso .choose .choose-item span::after {
  content: '';
  position: absolute;
  background-color: rgba(201, 20, 22, 0.15);
  width: 30px;
  height: 30px;
  border-radius: 20px;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  animation: scale 4s linear infinite;
}
.iso .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.iso .choose .choose-item h3 {
  margin: 1rem 0 0.8rem;
  font-size: 17px;
}
.iso .choose .choose-item p {
  font-size: 13px;
  text-align: center !important;
}
.iso .tool .tool-container,
.iso .tool .tool-content,
.iso .tool .tool-info {
  display: flex;
  flex-direction: column;
}
.iso .tool .tool-content {
  align-items: center;
}
.iso .tool .tool-content p {
  text-align: center !important;
  margin-top: 1rem;
}
.iso .tool .tool-content p:first-child {
  margin-top: 0;
}
.iso .tool .tool-info {
  margin-top: 2rem;
  height: 100%;
}
.iso .tool .tool-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.iso .tool .tool-info span img {
  width: 100%;
  height: 100%;
}
.iso .tool .tool-info span img:last-child {
  display: none;
}
.iso .fact {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.iso .fact .fact-container {
  display: flex;
  flex-direction: column;
}
.iso .fact .heading {
  margin-bottom: 0;
}
.iso .fact .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.iso .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #C1BCBC;
  padding: 1rem 0.8rem;
  border-radius: 15px;
  margin-top: 1.5rem;
  width: 47%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.iso .fact .fact-item h3 {
  font-size: 35px;
  line-height: 1;
}
.iso .fact .fact-item p {
  margin-top: 1rem;
  position: relative;
  background: linear-gradient(90deg, #5CA177 1.65%, #FFFFFF 100%);
  background-repeat: no-repeat;
  background-size: 115px 4px;
  padding-top: 0.8rem;
}
.iso .client {
  background-color: #5CA177;
}
.iso .client .client-container,
.iso .client .client-list {
  display: flex;
  flex-direction: column;
}
.iso .client .client-list {
  z-index: 0;
}
.iso .client .client-item {
  display: flex;
  flex-wrap: wrap;
  background-color: #FFFFFF;
  background-image: url(/_public/images/pmparabic-new/quotes.svg);
  background-size: 31px 31px;
  background-repeat: no-repeat;
  background-position: top 20px right 20px;
  padding: 1.5rem 1rem;
  border-radius: 7px;
  width: 95%;
}
.iso .client .client-item p {
  font-size: 13px;
  margin: 2rem 0 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.16);
  padding-top: 1rem;
}
.iso .client .client-item h3 {
  align-self: center;
  font-size: 16px;
  position: relative;
}
.iso .client .client-item h3::before {
  content: '';
  position: absolute;
  background-color: #070505;
  width: 21px;
  height: 2px;
  right: -29px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.iso .client .star {
  width: 105px;
  height: 15px;
}
.iso .client .review {
  width: 45px;
  height: 45px;
  margin-right: 1rem;
}
.iso .client .owl-nav {
  display: flex;
  width: 80px;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.iso .client .owl-nav .owl-prev,
.iso .client .owl-nav .owl-next {
  background-image: url(/_public/images/pmparabic-new/black-arrow.svg);
  border: 1px solid #070505;
  background-size: 10px 16px;
  width: 33px;
  height: 33px;
  background-repeat: no-repeat;
  background-position: center;
}
.iso .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.iso .client .owl-nav .btn-active {
  background-color: #FFFFFF;
}
.iso .onsite {
  padding-bottom: 2rem;
}
.iso .onsite .onsite-container,
.iso .onsite .onsite-content,
.iso .onsite .onsite-info,
.iso .onsite .info {
  display: flex;
  flex-direction: column;
}
.iso .onsite .onsite-content {
  align-items: center;
}
.iso .onsite .onsite-content p {
  text-align: center !important;
}
.iso .onsite .onsite-info {
  align-items: center;
  margin-top: 2rem;
  position: relative;
}
.iso .onsite .onsite-info > img {
  width: 270px;
  height: 378px;
}
.iso .onsite .onsite-detail {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: absolute;
}
.iso .onsite .onsite-detail p {
  font-size: 10px;
}
.iso .onsite .onsite-detail b {
  font-size: 12px;
}
.iso .onsite .onsite-detail:nth-of-type(1) {
  width: 185px;
  box-shadow: 0px 0px 0px 7px #d7d7d7;
  padding: 18px;
  margin: auto;
  bottom: 30%;
  left: 0;
}
.iso .onsite .onsite-detail:nth-of-type(1) img {
  width: 49px;
  height: 49px;
}
.iso .onsite .onsite-detail:nth-of-type(2) {
  width: 165px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  right: 0;
  top: 44px;
}
.iso .onsite .onsite-detail:nth-of-type(2) img {
  width: 28px;
  height: 28px;
}
.iso .onsite .onsite-detail:nth-of-type(2) b {
  font-size: 14px;
}
.iso .faq .faq-container,
.iso .faq .form,
.iso .faq .faq-item,
.iso .faq .faq-content {
  display: flex;
  flex-direction: column;
}
.iso .faq .form {
  margin-top: 2.5rem;
  background-color: #070505;
  padding: 2.5rem 1rem;
  margin-bottom: 0;
}
.iso .faq .form .buttons .btn-red {
  min-width: 125px;
}
.iso .faq .form .buttons .btn-red img {
  width: 15px;
  height: 15px;
}
.iso .faq .input-container {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F5F5F5;
  padding-bottom: 1rem;
}
.iso .faq .input-container:nth-child(6),
.iso .faq .input-container:nth-child(9) {
  align-items: flex-start;
}
.iso .faq .input-container span {
  display: flex;
  height: 15px;
  width: 15px;
}
.iso .faq .input-container span img {
  height: 100%;
  width: 100%;
}
.iso .faq .input-container span img:last-child {
  display: none;
}
.iso .faq .input-container input,
.iso .faq .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  color: #FFFFFF;
}
.iso .faq .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.iso .faq .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #F5F5F5;
}
.iso .faq .input-container :-ms-input-placeholder {
  /* Edge */
  color: #F5F5F5;
}
.iso .faq .input-container ::placeholder {
  color: #F5F5F5;
}
.iso .faq .input-error {
  border-bottom: 1px solid #ff0000;
}
.iso .faq .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.iso .faq .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.iso .faq .input-error ::placeholder {
  color: #ff0000;
}
.iso .faq .input-error span img:first-child {
  display: none;
}
.iso .faq .input-error span img:last-child {
  display: flex;
}
.iso .faq .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.iso .faq .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.iso .faq .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
  line-height: 1.6;
  color: #FFFFFF;
  font-weight: 500;
}
.iso .faq .form-consent p {
  font-size: 12px;
  color: #FFFFFF;
}
.iso .faq .form-consent a {
  font-weight: 600;
  color: #C91416;
}
.iso .faq .consent-error,
.iso .faq .consent-error-other {
  margin-bottom: 0.5rem;
}
.iso .faq .consent-error p,
.iso .faq .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.iso .faq .faq-item {
  border: 1px solid #C1BCBC;
  border-top: none;
}
.iso .faq .faq-item:first-child {
  border-top: 1px solid #C1BCBC;
}
.iso .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
}
.iso .faq .faq-item .ques h3 {
  font-weight: 500;
  font-size: 15px;
  width: calc(100% - 48px);
}
.iso .faq .faq-item .ques span {
  display: flex;
  width: 27px;
  height: 27px;
}
.iso .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
}
.iso .faq .faq-item .ques span img:last-child {
  display: none;
}
.iso .faq .faq-item .ans {
  display: none;
  padding: 1rem 0.8rem;
}
.iso .faq .faq-item .ans p {
  font-size: 13px;
}
.iso .faq .faq-item.active .ques {
  background-image: linear-gradient(-90deg, #C91416 55px, #070505 55px);
}
.iso .faq .faq-item.active .ques h3 {
  color: #FFFFFF;
}
.iso .faq .faq-item.active .ques span img:first-child {
  display: none;
}
.iso .faq .faq-item.active .ques span img:last-child {
  display: flex;
}
.iso .footer {
  padding-top: 1rem;
}
.iso .footer .footer-container,
.iso .footer .footer-list,
.iso .footer .footer-item {
  display: flex;
  flex-direction: column;
}
.iso .footer .heading {
  margin-bottom: 0;
}
.iso .footer .footer-item {
  margin-top: 1.5rem;
}
.iso .footer .footer-item h4 {
  font-size: 15px;
  font-weight: 500;
}
.iso .footer .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
}
.iso .footer .info img {
  width: 25px;
  height: 25px;
}
.iso .footer .info a {
  font-weight: 500;
  width: calc(100% - 40px);
  font-size: 14px;
}
.iso .footer .info .number {
  text-decoration: underline;
}
.arabic-pmp .banner .banner-content h1 {
  text-align: right!important;
}
.arabic-pmp .tool .tool-content,
.arabic-pmp .onsite .tool-content,
.arabic-pmp .tool .onsite-content,
.arabic-pmp .onsite .onsite-content {
  align-items: flex-end !important;
}
.arabic-pmp .course .course-list h2 {
  text-align: center !important;
}
.arabic-pmp .client .heading,
.arabic-pmp .client .client-item,
.arabic-pmp .client .owl-nav {
  margin-left: auto;
}
.arabic-pmp .choose .heading h2,
.arabic-pmp .fact .heading h2,
.arabic-pmp .choose .heading p,
.arabic-pmp .fact .heading p {
  text-align: center !important;
}
.arabic-pmp .choose .choose-item p {
  text-align: center !important;
}
.arabic-pmp .method .method-item {
  align-items: flex-end;
}
.arabic-pmp .method .method-item h3 {
  min-height: auto !important;
}
.arabic-pmp .method .method-item p,
.arabic-pmp .method .method-item h3 {
  text-align: right !important;
}
.arabic-pmp .process .process-info span p {
 text-align: right!important;
}
.arabic-pmp .tool .tool-content {
  align-items: center!important;
}
.arabic-pmp .tool .tool-info span img:first-child {
  display: none;
}
.arabic-pmp .tool .tool-info span img:last-child {
  display: flex;
}
.arabic-pmp .client .owl-nav {
  margin: 1.5rem 0 0 auto!important;
}
.arabic-pmp .onsite .onsite-content {
  align-items: center!important;
}
.arabic-pmp .faq .form .heading h2 {
  font-size: 14px;
}
.arabic-pmp .faq .form-consent {
  flex-direction: row-reverse!important;
}
.arabic-pmp .faq .form-consent label {
  margin-right: 0.5rem!important;
}
.arabic-pmp .faq .buttons {
  margin-left: auto!important;
}
.arabic-pmp .footer .info {
  flex-direction: row-reverse;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .enq-fund {
  justify-content: flex-end;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .enq-fund p {
  text-align: right;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .fields label {
  text-align: right;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .fields label .error {
  left: 0;
  right: auto;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .fields input {
  text-align: right;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .enq-message {
  align-items: flex-end;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .consents {
  width: 100%;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .consents .consent {
  flex-direction: row-reverse;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .consents .consent input {
  margin: 0 0 0 15px;
}
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .consents .consent p,
.arabic-pmp .enq-popup .main-popup .enq-form .main-form .consents .consent label {
  text-align: right;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .iso .banner .menu.active + .menu-links {
    width: 50%;
  }
  .iso .banner .logo-container {
    padding: 1rem 2rem;
  }
  .iso .banner .sticky {
    padding: 1rem 2rem !important;
  }
  .iso .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 2rem;
    align-items: center;
  }
  .iso .overview .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .iso .overview .overview-container::after {
    margin-top: 0;
  }
  .iso .overview .overview-content {
    align-items: flex-start;
    width: 48%;
  }
  .iso .overview .overview-content h2,
  .iso .overview .overview-content p {
    text-align: left !important;
  }
  .iso .course .course-head {
    flex-flow: wrap;
    justify-content: center;
  }
  .iso .course .course-head h2 {
    width: 67%;
  }
  .iso .course .course-item {
    width: 47%;
    margin-right: 2rem;
  }
  .iso .course .course-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .iso .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .iso .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .iso .method .method-item {
    width: 48%;
  }
  .iso .method .method-item p {
    min-height: 63px;
  }
  .iso .process .process-info {
    width: 48%;
  }
  .iso .process .process-container {
    align-items: center;
  }
  .iso .choose .heading {
    width: 85%;
    margin: auto;
  }
  .iso .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .iso .choose .choose-item {
    width: 45%;
  }
  .iso .tool .tool-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .iso .tool .tool-content {
    align-items: flex-start;
    width: 48%;
  }
  .iso .tool .tool-content h2,
  .iso .tool .tool-content p {
    text-align: left !important;
  }
  .iso .tool .tool-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 120px;
  }
  .iso .fact .fact-item {
    width: 23%;
  }
  .iso .client .client-item p {
    min-height: 142px;
  }
  .iso .onsite .onsite-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .iso .onsite .onsite-content {
    width: 52%;
    align-items: flex-start;
  }
  .iso .onsite .onsite-content .heading h2 {
    text-align: left !important;
  }
  .iso .onsite .onsite-content p {
    text-align: left !important;
  }
  .iso .onsite .onsite-info {
    width: 42%;
    margin-top: 0;
  }
  .iso .faq .faq-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .iso .faq .form {
    width: 45%;
    margin-top: 0;
  }
  .iso .faq .faq-content {
    width: 50%;
  }
  .iso .faq .faq-list {
    overflow-y: scroll;
    max-height: 610px;
    padding-right: 1.5rem;
  }
  .iso .footer .footer-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .iso .footer .footer-item {
    width: 48%;
  }
  .arabic-pmp .overview .overview-content {
    align-items: flex-end;
  }
  .arabic-pmp .overview .overview-content h2,
  .arabic-pmp .overview .overview-content p {
    text-align: right !important;
  }
  .arabic-pmp .onsite .onsite-content,
  .arabic-pmp .process .onsite-content,
  .arabic-pmp .tool .onsite-content,
  .arabic-pmp .onsite .process-content,
  .arabic-pmp .process .process-content,
  .arabic-pmp .tool .process-content,
  .arabic-pmp .onsite .tool-content,
  .arabic-pmp .process .tool-content,
  .arabic-pmp .tool .tool-content {
    align-items: flex-end !important;
  }
  .arabic-pmp .onsite .onsite-content p,
  .arabic-pmp .process .onsite-content p,
  .arabic-pmp .tool .onsite-content p,
  .arabic-pmp .onsite .process-content p,
  .arabic-pmp .process .process-content p,
  .arabic-pmp .tool .process-content p,
  .arabic-pmp .onsite .tool-content p,
  .arabic-pmp .process .tool-content p,
  .arabic-pmp .tool .tool-content p {
    text-align: right !important;
  }
  .arabic-pmp .onsite .onsite-content .heading,
  .arabic-pmp .process .onsite-content .heading,
  .arabic-pmp .tool .onsite-content .heading,
  .arabic-pmp .onsite .process-content .heading,
  .arabic-pmp .process .process-content .heading,
  .arabic-pmp .tool .process-content .heading,
  .arabic-pmp .onsite .tool-content .heading,
  .arabic-pmp .process .tool-content .heading,
  .arabic-pmp .tool .tool-content .heading {
    align-items: flex-end !important;
  }
  .arabic-pmp .onsite .onsite-content .heading h2,
  .arabic-pmp .process .onsite-content .heading h2,
  .arabic-pmp .tool .onsite-content .heading h2,
  .arabic-pmp .onsite .process-content .heading h2,
  .arabic-pmp .process .process-content .heading h2,
  .arabic-pmp .tool .process-content .heading h2,
  .arabic-pmp .onsite .tool-content .heading h2,
  .arabic-pmp .process .tool-content .heading h2,
  .arabic-pmp .tool .tool-content .heading h2,
  .arabic-pmp .onsite .onsite-content .heading p,
  .arabic-pmp .process .onsite-content .heading p,
  .arabic-pmp .tool .onsite-content .heading p,
  .arabic-pmp .onsite .process-content .heading p,
  .arabic-pmp .process .process-content .heading p,
  .arabic-pmp .tool .process-content .heading p,
  .arabic-pmp .onsite .tool-content .heading p,
  .arabic-pmp .process .tool-content .heading p,
  .arabic-pmp .tool .tool-content .heading p {
    text-align: right !important;
  }
  .arabic-pmp .client .client-item p {
    min-height: 100px;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .iso .heading h2 {
    font-size: 28px;
    position: relative;
    padding-left: 1.7rem;
  }
  .iso .heading h2::before,
  .iso .heading h2::after {
    content: '';
    position: absolute;
    border-radius: 50px;
    background-color: #5CA177;
  }
  .iso .heading h2::after {
    height: 15px;
    width: 15px;
    top: 4px;
    left: -7px;
    animation: circleMover 5s linear infinite;
  }
  .iso .heading h2::before {
    height: 10px;
    width: 10px;
    top: 7px;
    left: -3px;
    animation: pulse 2s linear infinite;
  }
  .iso .white-heading h2::before,
  .iso .white-heading h2::after {
    background-color: #FFFFFF;
  }
  .iso .center-heading h2 {
    width: auto;
  }
  .iso .buttons .btn-red,
  .iso .buttons .btn-white {
    font-size: 16px;
  }
  .iso .banner {
    position: relative;
  }
  .iso .banner .tka-logo {
    max-width: 228px;
  }
  .iso .banner .menu,
  .iso .banner .menu-toggle {
    display: none;
  }
  .iso .banner .menu-links {
    position: relative;
    width: auto;
    transform: translateX(0);
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
  .iso .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .iso .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.3rem;
    padding: 0;
    transition: 1s all;
  }
  .iso .banner ul .links-li:hover {
    color: #5CA177;
  }
  .iso .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .iso .banner ul .links-li:last-child:hover {
    color: inherit;
  }
  .iso .banner ul .links-li:last-child .btn-white {
    margin-right: 1.3rem;
    min-width: 47px;
    padding: 14px;
  }
  .iso .banner ul .links-li:last-child .btn-white img {
    margin-right: 0;
  }
  .iso .banner ul .links-li:last-child .btn-white,
  .iso .banner ul .links-li:last-child .btn-blue {
    font-size: 14px;
  }
  .iso .banner ul .links-li:nth-last-child(3) {
    display: none;
  }
  .iso .banner .sticky {
    background-color: #FFFFFF;
  }
  .iso .banner .sticky .menu-links {
    background-color: transparent;
    padding: 0;
  }
  .iso .banner .banner-content {
    width: 52%;
  }
  .iso .banner .banner-content h1 {
    font-weight: 500;
  }
  .iso .banner .banner-container::after {
    content: '';
    background-image: url(/_public/images/pmparabic-new/man.png);
    background-size: 100% 100%;
    width: 357px;
    height: 340px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .iso .banner .banner-info {
    width: 16%;
    display: flex;
    padding: 15px 15px;
    position: absolute;
    right: -29%;
    top: 35%;
    left: 0;
    margin: auto;
  }
  .iso .overview .overview-container {
    align-items: center;
  }
  .iso .overview .overview-content {
    width: 58%;
  }
  .iso .overview .overview-content h2 {
    width: 100%;
  }
  .iso .course {
    padding-top: 3rem;
  }
  .iso .course .course-head h2 {
    font-size: 22px;
  }
  .iso .course .course-item {
    width: 31%;
  }
  .iso .course .course-item:nth-of-type(2n) {
    margin-right: 2rem;
  }
  .iso .course .course-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .iso .method .heading {
    width: 84%;
    margin: auto;
  }
  .iso .method .method-item {
    width: 23%;
  }
  .iso .method .method-item h3 {
    min-height: 52px;
  }
  .iso .method .method-item p {
    min-height: 94px;
  }
  .iso .process {
    padding-top: 5rem;
  }
  .iso .process .process-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .iso .process .process-content {
    width: 55%;
    align-items: flex-start;
  }
  .iso .process .process-content .heading {
    align-items: flex-start;
  }
  .iso .process .process-content h2,
  .iso .process .process-content p {
    text-align: left !important;
  }
  .iso .process .process-info {
    width: 40%;
    margin-top: 0;
  }
  .iso .choose .choose-container {
    width: 90%;
    margin: auto;
  }
  .iso .choose .choose-list {
    justify-content: space-between;
  }
  .iso .choose .choose-item {
    width: 29.5%;
    position: relative;
  }
  .iso .choose .choose-item::before {
    content: "..";
    position: absolute;
    color: #d7d7d7;
    font-size: 60px;
    letter-spacing: 10px;
    left: -19px;
    line-height: 1;
    top: 10%;
    animation: move 7s linear infinite;
  }
  .iso .choose .choose-item p {
    min-height: 117px;
  }
  .iso .tool .tool-container {
    background-color: #F5F5F5;
    padding: 4rem 3.5rem;
  }
  .iso .tool .tool-content {
    width: 56%;
  }
  .iso .tool .tool-info {
    width: 41%;
  }
  .iso .fact .heading {
    width: 85%;
    margin: auto;
  }
  .iso .fact .fact-item {
    background-image: url(/_public/images/pmparabic-new/fact-bg.png);
    background-size: 53px 33px;
    background-repeat: no-repeat;
    background-position: top right -1px;
    padding: 1.2rem 1rem;
  }
  .iso .fact .fact-item p::before {
    width: 55%;
  }
  .iso .client .heading {
    width: 80%;
  }
  .iso .client .client-item p {
    min-height: 110px;
  }
  .iso .faq .heading h2 {
    padding-left: 0;
  }
  .iso .faq .heading h2::before,
  .iso .faq .heading h2::after {
    content: none;
  }
  .iso .faq .faq-list {
    counter-reset: counter;
    max-height: 585px;
  }
  .iso .faq .faq-item .ques h3 {
    width: calc(100% - 98px);
  }
  .iso .faq .faq-item .ques::before {
    content: counter(counter, decimal-leading-zero) ".";
    counter-increment: counter;
    font-weight: 500;
  }
  .iso .faq .faq-item.active .ques::before {
    color: #FFFFFF;
  }
  .iso .faq .form {
    padding: 2.5rem 2rem;
  }
  .iso .faq .faq-content {
    margin-top: 0;
  }
  .iso .footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .iso .footer .heading {
    width: 34%;
    margin-right: auto;
  }
  .iso .footer .footer-list {
    align-items: center;
    width: 54%;
  }
  .iso .footer .footer-item {
    width: 32%;
    margin-top: 0;
  }
  .iso .footer .footer-item:last-child {
    width: 58%;
  }
  .arabic-pmp .heading h2 {
    padding: 0 2rem 0 0;
  }
  .arabic-pmp .heading h2::before {
    right: -3px;
  }
  .arabic-pmp .heading h2::after {
    right: -7px;
  }
  .arabic-pmp .banner .banner-content p {
    font-size: 20px;
  }
  .arabic-pmp .method .heading p {
    text-align: center !important;
  }
  .arabic-pmp .process .process-content .heading {
    align-items: flex-end;
  }
  .arabic-pmp .process .process-content p {
    text-align: right !important;
  }
  .arabic-pmp .client .client-item p {
    min-height: 87px;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .iso .heading h2 {
    padding-left: 0;
    width: 100%;
  }
  .iso .heading h2::before,
  .iso .heading h2:after {
    content: none;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .iso .heading h2 {
    font-size: 32px;
  }
  .iso .banner .logo-container {
    padding: 1rem 0;
  }
  .iso .banner .logo-container .container {
    position: relative;
  }
  .iso .banner .arabic-buttons {
    position: absolute;
    margin: 0;
    left: 300px;
    top: 5px;
    width: auto;
  }
  .iso .banner .arabic-buttons .btn-red {
    min-width: fit-content;
  }
  .iso .banner .tka-logo {
    max-width: 228px;
  }
  .iso .banner ul .links-li:nth-last-child(2) {
    display: flex;
  }
  .iso .banner .sticky {
    padding: 1rem 0 !important;
  }
  .iso .banner .banner-container {
    padding: 6rem 0 5rem;
  }
  .iso .banner .banner-container::before {
    left: -62px;
    top: 0;
  }
  .iso .banner .banner-container::after {
    width: 535px;
    height: 530px;
  }
  .iso .banner .banner-content {
    width: 48%;
  }
  .iso .banner .banner-content h1 {
    font-size: 42px;
    line-height: 1.4;
    z-index: 1;
  }
  .iso .banner .banner-content h1 strong::before {
    content: '';
    background-color: rgba(214, 226, 221, 0.49);
    width: 220px;
    height: 107px;
    position: absolute;
    border-radius: 50%;
    top: -17px;
    right: 0;
    z-index: -1;
  }
  .iso .banner .banner-content h1 img {
    width: 36px;
    height: 36px;
    transform: translateY(8px);
  }
  .iso .banner .banner-info {
    width: 12%;
    right: -27%;
    top: 34%;
  }
  .iso .banner .banner-info b {
    font-size: 35px;
  }
  .iso .overview .overview-content {
    width: 62.5%;
  }
  .iso .course .course-head {
    counter-reset: counter;
  }
  .iso .course .course-item h3 {
    padding: 1rem 1rem 1rem 3.2rem;
    position: relative;
  }
  .iso .course .course-item h3::before {
    content: counter(counter);
    counter-increment: counter;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -13px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFFFFF;
    border: 1px solid #C1BCBC;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 600;
    transition: 1s all;
  }
  .iso .course .content {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    align-items: center;
  }
  .iso .course .content span {
    display: flex;
  }
  .iso .course .info {
    width: calc(100% - 112px);
  }
  .iso .process .process-info {
    width: 30%;
  }
  .iso .process .process-info::after {
    content: '';
    background-image: url(/_public/images/pmparabic-new/process-bg.png);
    background-size: 100% 100%;
    width: 495px;
    height: 412px;
    position: absolute;
    left: -40%;
    z-index: -1;
  }
  .iso .method .method-item h3 {
    min-height: auto;
  }
  .iso .method .method-item p {
    min-height: 71px;
  }
  .iso .choose .choose-item p {
    min-height: 94px;
  }
  .iso .tool .tool-info {
    position: static;
    top: 0;
    align-self: center;
  }
  .iso .fact .fact-item {
    width: 22%;
  }
  .iso .fact .fact-item h3 {
    font-size: 43px;
  }
  .iso .fact .fact-item p {
    font-size: 17px;
  }
  .iso .client {
    background-color: transparent;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .iso .client .client-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .iso .client .heading {
    width: 26%;
    margin-bottom: 0;
  }
  .iso .client .heading h2,
  .iso .client .heading p {
    color: #070505;
  }
  .iso .client .heading h2 {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
    padding-bottom: 2rem;
  }
  .iso .client .heading h2::before,
  .iso .client .heading h2::after {
    background-color: #5CA177;
  }
  .iso .client .client-list {
    background-image: url(/_public/images/pmparabic-new/client-bg.png);
    background-size: 100% 100%;
    padding: 2.3rem 1rem;
    width: 68%;
    position: relative;
  }
  .iso .client .client-list::before {
    content: '';
    position: absolute;
    width: 74%;
    height: 1px;
    background-color: #999999;
    bottom: 52px;
    left: 35px;
  }
  .iso .client .client-item {
    width: 91%;
    margin: auto;
  }
  .iso .client .owl-nav {
    margin: 1.5rem 1.2rem 0 auto;
  }
  .iso .onsite {
    padding-bottom: 2rem;
  }
  .iso .onsite .onsite-container {
    align-items: center;
  }
  .iso .onsite .onsite-info {
    width: 36%;
  }
  .iso .onsite .onsite-info::after {
    content: '';
    background-image: url(/_public/images/pmparabic-new/growth.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    position: absolute;
    background-color: #1F8044;
    left: 46px;
    top: 78px;
  }
  .iso .onsite .onsite-content {
    width: 60%;
  }
  .iso .faq .faq-list {
    max-height: 580px;
  }
  .iso .footer {
    padding: 3rem 0;
    background-image: url(/_public/images/pmparabic-new/footer-bg.png);
    background-size: 100% 100%;
  }
  .iso .footer .heading h2,
  .iso .footer .heading p {
    color: #FFFFFF;
  }
  .iso .footer .footer-list {
    width: 48%;
  }
  .iso .footer .footer-item {
    width: 28%;
  }
  .iso .footer .footer-item:last-child {
    width: 62%;
  }
  .iso .footer .info a {
    font-size: 18px;
  }
  .arabic-pmp .client .heading {
    margin-right: auto;
  }
}
@media (min-width : 1900px) {
  .iso .banner .banner-container {
    position: relative;
  }
  .iso .banner .banner-container::before {
    content: none;
  }
  .iso .banner .banner-info {
    width: 13%;
    right: -20%;
    top: 27%;
  }
  .iso .footer .heading {
    width: 33%;
  }
  .iso .footer .footer-list {
    width: 57%;
  }
}
