:root {
  --green-2: #70A323;
  --purple:#6A3C9F;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

a, span {
  display: inline-block;
}

ul {
  list-style: none;
}

.container {
  margin: auto;
  padding: 0 20px;
}

@media (min-width: 576px) {
  .container {
    max-width: 664px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1108px;
  }
}
/* Common*/
.page-wrapper {
  overflow: hidden;
}

@media (max-width: 575px) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .hide-tablet {
    display: none;
  }
}

@media (min-width: 992px) {
  .hide-desktop {
    display: none;
  }
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 992px) {
  .button-group {
    justify-content: start;
  }
}

.heading-light {
  color: white;
}

.text-light {
  color: #EAEDE6;
}

.section-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .section-title {
    font-size: 52px;
    line-height: 58px;
  }
}

.page-title {
  color: #EAEDE6;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
  text-align: center;
}
@media (min-width: 576px) {
  .page-title {
    font-size: 52px;
    line-height: 58px;
    letter-spacing: -0.01em;
  }
}
@media (min-width: 992px) {
  .page-title {
    font-size: 64px;
    line-height: 68px;
    text-align: start;
  }
}

.review-ticker .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Component Styling Starts */
.btn {
  --box-shadow: inset 0px 5px 12px #9959E2, inset 0px -5px 0px #6A3C9F;
  --border-color: #6A3C9F;
  --background-color: #8845D6;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
  padding: 12px 24px;
  border-radius: 20px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--box-shadow);
  background-color: var(--background-color);
  font-weight: 600;
  font-size: 14px;
  gap: 6px;
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn {
    font-size: 18px;
    padding: 16px 32px;
  }
}
.btn-black {
  --box-shadow: inset 0px 5px 12px #414639, inset 0px -5px 0px #000000;
  --border-color: #000000;
  --background-color: #282B26;
}
.btn-orange {
  --box-shadow: inset 0px 5px 12px #FB8937, inset 0px -5px 0px #A84A0C;
  --border-color:#A84A0C;
  --background-color:#E56407;
}
.btn img {
  width: 24px;
  height: 22px;
}
@media (min-width: 992px) {
  .btn img {
    width: 28px;
    height: 28px;
  }
}

/* resources-tab*/
.resource-tab-content:not(.active) {
  display: none;
}

.resources-tab-nav {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 16px;
  overflow-x: scroll;
}
@media (min-width: 576px) {
  .resources-tab-nav {
    margin-top: 24px;
  }
}
@media (min-width: 992px) {
  .resources-tab-nav {
    margin-top: 30px;
    justify-content: center;
    overflow-x: hidden;
  }
}
.resources-tab-nav .tab-nav-item {
  color: #121807;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  padding: 11px 22px 13px;
  border: 2px solid #414639;
  border-radius: 20px;
  background-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.resources-tab-nav .tab-nav-item.active {
  background-color: #121807;
  color: #EAEDE6;
}

/* Site Header styling*/
.site-header {
  padding-top: 16px;
  padding-bottom: 16px;
  background: #70A323;
  border-bottom: 1px solid #ACCA7F;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.site-header .brand-logo {
  width: 113.33px;
}
@media (min-width: 992px) {
  .site-header .brand-logo {
    width: 158px;
  }
}
[dir=rtl] .site-header .brand-logo {
  width: 87px;
}
.site-header .brand-logo img {
  width: 100%;
}
.site-header .header-widgets {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.site-header .header-widgets .flag-widget {
  width: 50px;
  height: 50px;
}
@media (max-width: 991px) {
  .site-header .header-widgets {
    column-gap: 6px;
  }
  .site-header .header-widgets .btn {
    display: none;
  }
  .site-header .header-widgets .flag-widget {
    width: 36px;
    height: 36px;
  }
}
.site-header .header-widgets img {
  width: 100%;
}
.site-header .header-widgets .mobile-menu-trigger {
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-header .header-widgets .mobile-menu-trigger {
    display: none;
  }
}
.site-header .header-widgets .mobile-menu-trigger .open {
  display: none;
}
.site-header .header-widgets .mobile-menu-trigger:not(.open) .open {
  display: block;
}
.site-header .header-widgets .mobile-menu-trigger:not(.open) .close {
  display: none;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu {
  display: none;
}
@media (min-width: 992px) {
  .main-menu {
    display: flex;
    gap: 14px;
  }
}
.main-menu li {
  color: #F6FAF2;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  /* identical to box height, or  */
  letter-spacing: -0.0011em;
}
.main-menu li a {
  color: inherit;
  padding: 8px;
}
.mobile-menu .main-menu {
  display: block;
}

.mobile-menu {
  background-color: #5A9304;
  position: absolute;
  top: 69px;
  left: 0;
  width: 100%;
  z-index: 11;
  display: none;
  opacity: 0;
  border-bottom: 1.5px solid #EAEDE6;
}
.mobile-menu > * {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 20px;
  row-gap: 60px;
}
.mobile-menu .main-menu li {
  padding-left: 0;
  padding-right: 0x;
}
.mobile-menu .header-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}
.mobile-menu .header-btn-group > * {
  width: 100%;
}
.mobile-menu .header-btn-group .btn {
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 10px;
}
.mobile-menu .header-btn-group .btn-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  letter-spacing: -0.0011em;
  text-decoration: underline;
  color: #FFFFFF;
}

/* Hero Section Style */
.hero-section {
  background-color: #5A9304;
  padding-top: 120px;
  padding-bottom: 21px;
  position: relative;
  z-index: 5;
}
@media (min-width: 576px) {
  .hero-section {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 77px;
  }
}
@media (max-width: 991px) {
  .hero-section .container {
    max-width: 689px;
  }
}
@media (max-width: 575px) {
  .hero-section .container {
    max-width: 375px;
  }
}
@media (max-width: 575px) {
  .hero-section .button-group {
    display: none;
  }
}
.hero-section .hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  position: relative;
}
@media (max-width: 991px) {
  .hero-section .hero-content-wrapper {
    flex-direction: column-reverse;
  }
}
.hero-section .hero-description-block {
  max-width: 649px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 46px;
  align-items: center;
}
@media (min-width: 576px) {
  .hero-section .hero-description-block {
    margin-top: 9px;
  }
}
@media (min-width: 992px) {
  .hero-section .hero-description-block {
    max-width: 556px;
    gap: 32px;
    align-items: flex-start;
  }
}
.hero-section .hero-description-block p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3333333333;
  letter-spacing: -0.0008em;
  color: #EAEDE6;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-section .hero-description-block p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .hero-section .hero-description-block p {
    text-align: start;
    max-width: 556px;
  }
}
.hero-section .hero-image-block {
  max-width: 324px;
}
@media (min-width: 576px) {
  .hero-section .hero-image-block {
    max-width: 377px;
  }
}
@media (min-width: 992px) {
  .hero-section .hero-image-block {
    max-width: 452px;
  }
}
.hero-section .hero-image-block img {
  width: 100%;
}
.hero-section .hero-review-widget {
  background-color: #70A323;
  border: 1px solid #7DAD35;
  border-radius: 10px;
  max-width: 335px;
  padding: 17px 15px;
  margin-top: 43px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .hero-section .hero-review-widget {
    margin-top: 10px;
    margin-bottom: 23px;
  }
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget {
    margin-top: 88px;
    margin-bottom: 0;
    max-width: initial;
    padding: 24px;
  }
}
.hero-section .hero-review-widget .review-description {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  color: #FFFFFF;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget .review-description {
    gap: 24px;
  }
}
.hero-section .hero-review-widget .review-title {
  margin-right: 16px;
}
@media (max-width: 991px) {
  .hero-section .hero-review-widget .review-title {
    display: none;
  }
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget .review-text {
    text-decoration: underline;
  }
}
@media (max-width: 991px) {
  .hero-section .hero-review-widget .review-text {
    width: 100%;
    order: 3;
    text-align: center;
    margin-top: -3px;
  }
}
.hero-section .hero-review-widget .review-title,
.hero-section .hero-review-widget .review-text,
.hero-section .hero-review-widget .rating-label {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget .review-title,
  .hero-section .hero-review-widget .review-text,
  .hero-section .hero-review-widget .rating-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
  }
}
.hero-section .hero-review-widget .rating-block {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget .rating-block {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .hero-section .hero-review-widget .rating-block {
    order: 2;
    flex-direction: row-reverse;
  }
}
.hero-section .hero-review-widget .rating-icon {
  display: flex;
  align-items: center;
  gap: 3px;
}
.hero-section .hero-review-widget .rating-icon img {
  width: 21px;
  height: 21px;
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget .rating-icon img {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 991px) and (max-width: 1033px) {
  .hero-section .hero-review-widget .rating-icon img {
    width: 20px;
    height: 20px;
  }
}
.hero-section .hero-review-widget .review-btn {
  cursor: pointer;
  max-width: 111px;
  height: 30px;
}
@media (min-width: 992px) {
  .hero-section .hero-review-widget .review-btn {
    margin-inline-start: auto;
  }
}
@media (max-width: 991px) {
  .hero-section .hero-review-widget .review-btn {
    order: 1;
  }
}
.hero-section .device-icon-block {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 30px;
}
[dir=rtl] .hero-section .device-icon-block {
  flex-direction: row-reverse;
}
@media (min-width: 576px) {
  .hero-section .device-icon-block {
    margin-top: 23px;
  }
}
@media (min-width: 992px) {
  .hero-section .device-icon-block {
    margin-top: 51px;
  }
}
.hero-section .device-icon-block .device-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #70A323;
  border-radius: 30px;
}
.hero-section .device-icon-block .device-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hero-section__individual {
  padding-bottom: 64px;
}
@media (min-width: 576px) {
  .hero-section__individual {
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .hero-section__individual {
    padding-bottom: 77px;
  }
}
.hero-section__individual .page-title {
  font-size: 32px;
  line-height: 36px;
}
@media (min-width: 992px) {
  .hero-section__individual .page-title {
    font-size: 64px;
    line-height: 68px;
  }
}
.hero-section__individual .hero-image-block {
  max-width: 448px;
}
.hero-section__individual .hero-review-widget {
  margin-top: 43px;
}
@media (min-width: 576px) {
  .hero-section__individual .hero-review-widget {
    margin-top: 37px;
  }
}
@media (min-width: 992px) {
  .hero-section__individual .hero-review-widget {
    margin-top: 51px;
  }
}
@media (min-width: 576px) {
  .hero-section__individual .device-icon-block {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .hero-section__individual .device-icon-block {
    margin-top: 51px;
  }
}
.hero-section__school {
  background: linear-gradient(211.59deg, #F8FFED 19.04%, #E6FFFF 79.19%);
  position: relative;
  padding-top: 102px;
  padding-bottom: 34px;
}
@media (min-width: 576px) {
  .hero-section__school {
    padding-top: 114px;
    padding-bottom: 37px;
  }
}
@media (min-width: 992px) {
  .hero-section__school {
    padding-top: 144px;
    padding-bottom: 64px;
  }
}
.hero-section__school::before {
  content: "";
  position: absolute;
  background-image: url("//static.3asafeer.com/images/shapes/hero-school-bg.webp");
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.hero-section__school .hero-description-block {
  margin-top: 60px;
}
@media (min-width: 576px) {
  .hero-section__school .hero-description-block {
    margin-top: 36px;
  }
}
@media (min-width: 992px) {
  .hero-section__school .hero-description-block {
    margin-top: 0px;
  }
}
.hero-section__school .hero-description-block .page-title {
  color: #000000;
}
.hero-section__school .hero-description-block p {
  color: #414639;
}
.hero-section__school .hero-image-block {
  max-width: 340px;
}
@media (min-width: 576px) {
  .hero-section__school .hero-image-block {
    max-width: 430px;
  }
}
@media (min-width: 992px) {
  .hero-section__school .hero-image-block {
    max-width: 489px;
  }
}
.hero-section__school .device-icon-block {
  margin-top: 41px;
}
@media (min-width: 576px) {
  .hero-section__school .device-icon-block {
    margin-top: 62px;
  }
}
@media (min-width: 992px) {
  .hero-section__school .device-icon-block {
    margin-top: 40px;
  }
}
.hero-section__school .device-icon-block .device-icon {
  background-color: #95B5B3;
}

/*cta-section start*/
.cta-content-wrapper {
  display: flex;
  flex-direction: column-reverse;
  margin: auto;
  align-items: center;
  z-index: 5;
  position: relative;
  margin-top: 64px;
  margin-bottom: 47px;
}
@media (min-width: 576px) {
  .cta-content-wrapper {
    max-width: 624px;
    margin-bottom: 70px;
  }
}
@media (min-width: 992px) {
  .cta-content-wrapper {
    max-width: 1400px;
    margin-top: -71px;
    gap: 92px;
    margin-bottom: 0;
    flex-direction: row;
  }
  [dir=rtl] .cta-content-wrapper {
    flex-direction: row-reverse;
  }
}
.cta-content-wrapper .cta-image-wrapper .desktop-image {
  display: none;
  margin: -18% -12% -24% -16%;
}
.cta-content-wrapper .cta-image-wrapper .mobile-image {
  margin: -18% -14% -23% -17%;
}
@media (min-width: 576px) {
  .cta-content-wrapper .cta-image-wrapper {
    max-width: 563px;
  }
}
@media (min-width: 992px) {
  .cta-content-wrapper .cta-image-wrapper {
    max-width: 680px;
    margin-left: -121px;
    margin-bottom: 80px;
  }
  .cta-content-wrapper .cta-image-wrapper .mobile-image {
    display: none;
  }
  .cta-content-wrapper .cta-image-wrapper .desktop-image {
    display: block;
  }
}
.cta-content-wrapper .cta-image-wrapper img {
  width: 100%;
}
.cta-content-wrapper .cta-content {
  max-width: 504px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .cta-content-wrapper .cta-content {
    margin-bottom: 53px;
  }
}
@media (min-width: 992px) {
  .cta-content-wrapper .cta-content {
    max-width: 552px;
    padding-top: 40px;
  }
  [dir=rtl] .cta-content-wrapper .cta-content {
    max-width: 568px;
  }
}
.cta-content-wrapper .cta-content .section-title {
  font-size: 30px;
  line-height: 36px;
  color: white;
  text-align: center;
}
@media (min-width: 992px) {
  .cta-content-wrapper .cta-content .section-title {
    font-size: 52px;
    line-height: 64px;
    text-align: start;
  }
  [dir=rtl] .cta-content-wrapper .cta-content .section-title {
    text-align: end;
  }
}
.cta-content-wrapper .cta-content .button-group {
  margin-top: 24px;
}
[dir=rtl] .cta-content-wrapper .cta-content .button-group {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cta-content-wrapper .cta-content .button-group {
    justify-content: flex-start;
  }
}
.cta-content-wrapper .cta-btn {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 12px 24px 14px 20px;
  gap: 10px;
  width: 204px;
  height: 69px;
}
[dir=rtl] .cta-content-wrapper .cta-btn {
  flex-direction: row;
}
[dir=rtl] .cta-content-wrapper .cta-btn img {
    transform: scale(-1, 1);
}
.cta-content-wrapper .cta-btn img {
  max-width: 28px;
  height: 34px;
  object-fit: contain;
}
.cta-content-wrapper .cta-btn-text {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  text-align: left;
}
[dir=rtl] .cta-content-wrapper .cta-btn-text {
    text-align: right;
    margin-right: 10px;
}
.cta-content-wrapper .cta-btn-text .top-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.cta-content-wrapper .cta-btn-text .bottom-tetx {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.cta-content-wrapper .cta-dark-btn {
  background: #282B26;
  border: 1.5px solid #000000;
  box-shadow: inset 0px 5px 12px #414639, inset 0px -5px 0px #000000;
}
.cta-content-wrapper .cta-blue-btn {
  background: #4285F4;
  border: 1.5px solid #3265BA;
  box-shadow: inset 0px 5px 12px #679AEF, inset 0px -5px 0px #255AB3;
}

/*footer-section start*/
.site-footer {
  background-color: var(--green-2);
  position: relative;
  z-index: 10;
  padding: 60px 20px 20px 20px;
  z-index: 3;
  /*----------Pattern Shape---------*/
  /*----------Substract Shape---------*/
}
@media (min-width: 576px) {
  .site-footer {
    padding: 60px 20px 40px 20px;
  }
}
.site-footer::after {
  content: "";
  background-image: url(//static.3asafeer.com/images/shapes/hero-bg-pattern.webp);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.site-footer::before {
  content: "";
  position: absolute;
  background-image: url(//static.3asafeer.com/images/shapes/footer-subtract.svg);
  left: 0;
  right: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 100%;
  z-index: -1;
}
.site-footer .footer-particles {
  max-width: 613px;
  height: 216.2px;
  /* margin: 0 auto; */
  position: absolute;
  top: 1%;
  width: 100%;
  z-index: -1;
  left: 50%;
  transform: translate(-50%);
  pointer-events: none;
}
.site-footer .footer-particles .particles {
  position: absolute;
}
@media (min-width: 992px) {
  .site-footer .footer-particles {
    display: none;
  }
}
.site-footer--school {
  background-color: #E56407;
}
.site-footer--school::before {
  display: none;
}
.site-footer--school .cta-content {
  padding-top: 0;
}
.site-footer--school .cta-content-wrapper {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .site-footer--school .cta-content-wrapper {
    margin-bottom: 90px;
  }
}
@media (min-width: 992px) {
  .site-footer--school .cta-content-wrapper {
    margin-bottom: 118px;
    margin-top: 50px;
  }
}
.site-footer--school .cta-content-wrapper .mobile-image {
  margin: -7% -14% -18% -17%;
}
.site-footer--school .footer-particles .chanachur {
  left: 11px;
  top: 61%;
  transform: rotate(249deg);
}
@media (min-width: 576px) {
  .site-footer--school .footer-particles .chanachur {
    right: 0px;
    top: 61%;
    left: auto;
    transform: rotate(0deg);
  }
}
.site-footer--school .footer-particles .star {
  position: relative;
}
.site-footer--school .footer-particles .mobile-star {
  position: absolute;
  right: 68px;
  top: -18px;
  max-width: 44px;
}
.site-footer--school .footer-particles .mobile-star img {
  width: 100%;
}
.site-footer--school .footer-particles .tablet-star {
  position: absolute;
  left: 0;
}

.site-footer-shape {
  width: 100%;
  transform: rotate(180deg);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}

.footer-content-box {
  background: #FFFFFF;
  opacity: 0.95;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px;
  padding-top: 60px;
  margin: auto;
  max-width: 624px;
  position: relative;
  z-index: 11;
}
@media (min-width: 576px) {
  .footer-content-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .footer-content-box {
    max-width: 1319px;
    padding-left: 80px;
    padding-right: 80px;
    border-radius: 50px;
  }
}
.footer-content-box .footer-main-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  flex-wrap: wrap;
  row-gap: 48px;
}
.footer-content-box .footer-list-row {
  display: flex;
  width: 100%;
  gap: 32px;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 576px) {
  .footer-content-box .footer-list-row {
    flex-direction: row;
    order: 3;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .footer-content-box .footer-list-row {
    width: 43%;
    max-width: 490px;
    order: 2;
    margin-inline-start: 30px;
  }
}
@media (min-width: 1319px) {
  .footer-content-box .footer-list-row {
    margin-inline-start: 149px;
  }
  [dir=rtl] .footer-content-box .footer-list-row {
    margin-inline-start: 125px;
  }
}

.footer-list {
  width: 39%;
  max-width: 160px;
}
.footer-list:nth-child(1) {
  width: 37%;
  max-width: 130px;
}
.footer-list a {
  color: #414639;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}

.footer-description-block {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  max-width: 295px;
  order: 0;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .footer-description-block {
    margin: 0;
    max-width: 249px;
    text-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .footer-description-block {
    margin: auto;
    max-width: 295px;
  }
}
.footer-description-block .footer-brand {
  max-width: 148px;
}
.footer-description-block .footer-brand img {
  width: 100%;
}
.footer-description-block p {
  color: #414639;
  font-size: 14px;
  line-height: 20px;
}
.footer-description-block .social-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
[dir=rtl] .footer-description-block .social-links {
  flex-direction: row-reverse;
}
.footer-description-block .social-links img {
  width: 32px;
  height: 32px;
}

.social-links div {
    background-color: #000;
    width: 32px;
    height: 32px;
    color: #fff !important;
    border-radius: 50%;
    line-height: 32px;
	text-align:center;
	float: right;
    margin: 2.5px;
}
.social-links div i {
    color: #fff;
}

.footer-contact-block {
  max-width: 211px;
}
@media (min-width: 576px) {
  .footer-contact-block {
    order: 2;
  }
}
@media (min-width: 992px) {
  .footer-contact-block {
    width: 18%;
    max-width: 205px;
    order: 3;
  }
}
.footer-contact-block .footer-title {
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 16px;
}
.footer-contact-block .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact-block .footer-contact-list img {
  width: 20px;
  height: 20px;
}
.footer-contact-block .footer-contact-list .footer-contact-single {
  color: #414639;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.copyright-block {
  padding-top: 16px;
  padding-bottom: 20px;
  border-top: 1px solid #EAEDE6;
}
.copyright-block p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  letter-spacing: -0.008em;
  color: #414639;
}

/*Content Section Styling*/
.content-section {
  background-color: var(--purple);
  padding-top: 48px;
  padding-bottom: 48px;
  overflow-x: hidden;
  background-repeat: repeat;
}
@media (min-width: 576px) {
  .content-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .content-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.content-section .section-title-block-wrapper {
  display: flex;
  columns: 30px;
  justify-content: center;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .content-section .section-title-block-wrapper {
    margin-bottom: 64px;
    justify-content: space-between;
    align-items: center;
  }
}
.content-section .section-title-block-wrapper .section-title-block {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  text-align: center;
  max-width: 382px;
}
@media (min-width: 992px) {
  .content-section .section-title-block-wrapper .section-title-block {
    max-width: initial;
    text-align: start;
  }
}
.content-section .section-title-block-wrapper .section-title-block p {
  color: #EAEDE6;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .content-section .section-title-block-wrapper .section-title-block p {
    font-size: 18px;
    line-height: 24px;
  }
}
.content-section > .container {
  position: relative;
}

.content-card {
  padding: 24px 16px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 17px;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  min-height: 330px;
}
@media (min-width: 992px) {
  .content-card {
    min-height: 411px;
  }
}
.content-card-description {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  max-width: 438px;
}
.content-card-title {
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.008em;
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .content-card-title {
    font-size: 30px;
    line-height: 1.2;
  }
}
.content-card-image {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .content-card-image {
    padding: 0 15%;
  }
  .content-card-image::before, .content-card-image::after {
    content: "";
    position: absolute;
  }
}
.content-card-image::before {
  background-image: url(//static.3asafeer.com/images/shapes/circle-shape-thin.svg);
  left: 3%;
  width: 29%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  top: -5%;
}
.content-card-image::after {
  background-image: url(//static.3asafeer.com/images/shapes/circle-shape-thik.svg);
  right: -13%;
  width: 45%;
  height: 113%;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  bottom: -40%;
}
.content-card-image img {
  width: 100%;
}
.content-card p {
  color: #414639;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3333333333;
  letter-spacing: -0.0008em;
}
@media (min-width: 992px) {
  .content-card p {
    font-size: 18px;
  }
}

/* Slider Styles */
.content-slider-navigation {
  display: none;
}
@media (min-width: 992px) {
  .content-slider-navigation {
    display: flex;
    gap: 13px;
  }
  [dir=rtl] .content-slider-navigation {
    flex-direction: row-reverse;
  }
}
.content-slider-navigation button {
  padding: 16px;
  width: 60px;
  height: 60px;
  background: #E56407;
  border: 1.5px solid #A84A0C;
  box-shadow: inset 0px 5px 12px #FB8937, inset 0px -5px 0px #A84A0C;
  border-radius: 20px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .content-slider-wrapper {
    width: 1224px;
  }
}
.content-slider-wrapper .swiper {
  overflow: initial;
}
.content-slider-wrapper .swiper-slide {
  max-width: 292px;
}
@media (min-width: 992px) {
  .content-slider-wrapper .swiper-slide {
    max-width: 600px;
  }
}

.video-box {
  height: 188px;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .video-box {
    height: 351px;
  }
}
@media (min-width: 992px) {
  .video-box {
    height: 601px;
  }
}
.video-box iframe {
  border-radius: 20px;
}

/* stat-section start*/
.stat-section {
  background-color: #5F960A;
  padding-top: 88px;
  padding-bottom: 88px;
  position: relative;
  z-index: 20;
}
@media (min-width: 576px) {
  .stat-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (min-width: 992px) {
  .stat-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.stat-section::before {
  content: "";
  position: absolute;
  background-image: url(//static.3asafeer.com/images/shapes/Subtract.svg);
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  height: 100px;
  background-repeat: repeat-x;
  background-size: 100%;
  z-index: -2;
}
.stat-section .star-icon {
  position: absolute;
  bottom: -11px;
  left: 42px;
}
@media (min-width: 576px) {
  .stat-section .star-icon {
    left: 127px;
  }
}
@media (min-width: 992px) {
  .stat-section .star-icon {
    top: -77px;
    bottom: auto;
  }
}
.stat-section .bg-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: -200px;
  background-image: url(//static.3asafeer.com/images/shapes/bg-overlay.webp);
  z-index: -1;
  background-size: contain;
  background-repeat: repeat-x;
  opacity: 0.1;
}
@media (min-width: 576px) {
  .stat-section .bg-overlay {
    top: -230px;
    height: 685px;
  }
}
@media (min-width: 992px) {
  .stat-section .bg-overlay {
    top: -330px;
    height: 908px;
  }
}
.stat-section .left-circle-shape {
  position: absolute;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.1;
  top: 30%;
}
.stat-section .right-circle-shape {
  position: absolute;
  right: 0;
  mix-blend-mode: multiply;
  opacity: 0.1;
}
.stat-section .stat-content-description {
  max-width: 730px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .stat-section .stat-content-description {
    gap: 32px;
  }
}
.stat-section .stat-content-description .section-title {
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 992px) {
  .stat-section .stat-content-description .section-title {
    font-size: 52px;
    line-height: 68px;
  }
}
.stat-section .stat-content-description .button-group {
  justify-content: center;
  gap: 7px;
}
.stat-section .stat-content-description .user-block {
  background: #70A323;
  max-width: 361px;
  padding: 8px 12px 8px 8px;
  border-radius: 130px;
  margin: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.stat-section .stat-content-description .user-block span {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .stat-section .stat-content-description .user-block span {
    font-size: 24px;
    line-height: 30px;
  }
}
.stat-section .stat-content-description .user-block .user-stack {
  width: 76px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.stat-section .stat-content-description .user-block .user-stack img {
  width: 32px;
  height: 32px;
}
.stat-section .stat-content-description .user-block .user-stack .user-one {
  z-index: 7;
}
.stat-section .stat-content-description .user-block .user-stack .user-two {
  position: absolute;
  left: 23px;
  z-index: 5;
}
.stat-section .stats-stack {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .stat-section .stats-stack {
    flex-wrap: nowrap;
    gap: 10px;
  }
}
.stat-section .stats-stack .stat-block {
  color: #F4F7F0;
}
@media (max-width: 575px) {
  .stat-section .stats-stack .stat-block {
    width: 100%;
  }
}
.stat-section .stats-stack .stat-block .title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 992px) {
  .stat-section .stats-stack .stat-block .title {
    font-size: 52px;
    line-height: 58px;
  }
}
.stat-section .stats-stack .stat-block .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .stat-section .stats-stack .stat-block .text {
    font-size: 18px;
  }
}

.partners-section {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .partners-section {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
.partners-section .section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #000000;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}
@media (min-width: 992px) {
  .partners-section .section-title {
    margin-bottom: 40px;
  }
}
.partners-section .partner-bg-shape {
  position: absolute;
  right: 0;
  max-width: 500px;
  z-index: -1;
  top: 41%;
}
@media (min-width: 576px) {
  .partners-section .partner-bg-shape {
    top: 0;
  }
}
@media (max-width: 575px) {
  [dir=rtl] .partners-section .partner-bg-shape {
    max-width: 100%;
  }
}

.partners-ticker {
  z-index: 5;
  position: relative;
}
.partners-ticker .swiper-slide {
  max-width: 248px;
}
.partners-ticker img {
  width: 100%;
  object-fit: contain;
  margin: auto;
  height: 146px;
}
.partners-ticker .partners-single-ticker {
  border: 1px solid rgba(112, 163, 35, 0.2);
  border-radius: 20px;
  padding: 5px;
  background-color: white;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 576px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* review-section start */
.review-section {
  padding-top: 40px;
  padding-bottom: 60px;
  z-index: 22;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 576px) {
  .review-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .review-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.review-section .section-title {
  color: #000000;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .review-section .section-title {
    font-size: 52px;
    line-height: 68px;
  }
}
.review-section .section-title-block {
  position: relative;
  max-width: 279px;
  margin: auto;
  z-index: 5;
}
@media (min-width: 576px) {
  .review-section .section-title-block {
    max-width: 475px;
  }
}
@media (min-width: 992px) {
  .review-section .section-title-block {
    max-width: 880px;
  }
}
.review-section .section-title-block .shape {
  position: absolute;
  left: 3px;
  top: -25px;
  width: 46px;
}
[dir=rtl] .review-section .section-title-block .shape {
  left: -31px;
  top: -24px;
}
@media (min-width: 576px) {
  [dir=rtl] .review-section .section-title-block .shape {
    left: -15px;
    top: -48px;
  }
}
@media (min-width: 576px) {
  .review-section .section-title-block .shape {
    left: -15px;
    top: -48px;
  }
}
.review-section .section-title-block .star-icon {
  position: absolute;
  right: 58px;
  top: 15px;
  z-index: 0;
}
@media (max-width: 575px) {
  [dir=rtl] .review-section .section-title-block .star-icon {
    top: -41px;
  }
}
@media (min-width: 576px) {
  .review-section .section-title-block .star-icon {
    right: -50px;
    top: -20px;
  }
}
@media (min-width: 992px) {
  .review-section .section-title-block .star-icon {
    right: -84px;
  }
}
.review-section .review-ticker {
  margin-top: 24px;
  overflow: visible;
}
@media (min-width: 992px) {
  .review-section .review-ticker {
    margin-top: 64px;
  }
}
.review-section .review-btn {
  margin-top: 36px;
  text-align: center;
}
.review-section .review-btn .btn-orange {
  display: inline-block;
}

.review-card {
  max-width: 312px;
  background: #FFFFFF;
  border-top: 1px solid #6A3C9F;
  border-left: 1px solid #6A3C9F;
  border-right: 1px solid #6A3C9F;
  border-bottom: 5px solid #6A3C9F;
  border-radius: 10px;
  padding: 6px 6px 10px;
}
@media (min-width: 992px) {
  .review-card {
    border-bottom: 8px solid #6A3C9F;
    padding: 12px;
    border-radius: 30px;
  }
}
.review-card img {
  width: 100%;
  border-radius: 7px;
}
@media (min-width: 992px) {
  .review-card img {
    border-radius: 20px;
  }
}
.review-card .review-card-body {
  padding: 10px;
}
.review-card .review-card-body h5 {
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
}
@media (min-width: 992px) {
  .review-card .review-card-body h5 {
    font-size: 24px;
    line-height: 30px;
  }
}
.review-card .review-card-body p {
  color: #414639;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .review-card .review-card-body p {
    font-size: 18px;
    line-height: 24px;
  }
}

/* mobile-card*/
.mobile-review-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.review-ticker .swiper-slide {
  max-width: 195px;
}
@media (min-width: 992px) {
  .review-ticker .swiper-slide {
    max-width: 332px;
  }
}

/* faq-section start */
.faq-section {
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  z-index: 20;
}
@media (min-width: 576px) {
  .faq-section {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .faq-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.faq-section .section-title {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  text-align: start;
  letter-spacing: -0.01em;
}
@media (min-width: 576px) {
  .faq-section .section-title {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .faq-section .section-title {
    font-size: 52px;
    line-height: 58px;
  }
}
.faq-section .faq-wrapper {
  max-width: 604px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .faq-section .faq-wrapper {
    margin-top: 72px;
    max-width: 908px;
  }
}
.faq-section #accordion .accordion-item {
  border-bottom: 1px solid #E8E8E7;
  padding: 30px 0;
}
.faq-section #accordion .accordion-item:nth-child(1) {
  padding-top: 0;
}
.faq-section #accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.faq-section #accordion .accordion-header-title {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .faq-section #accordion .accordion-header-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.faq-section #accordion .accordion-content {
  color: #414639;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-top: 18px;
  display: none;
}
.faq-section #accordion .accordion-content:first-of-type {
  display: block;
}
.faq-section .accordion-open-icon, .faq-section .accordion-close-icon {
  width: 30px;
  height: 30px;
  margin-top: 5px;
}
.faq-section .accordion-open-icon img, .faq-section .accordion-close-icon img {
  width: 100%;
  height: 100%;
}

/* sticky-cta start */
.sticky-cta {
  background: #70A323;
  padding: 12px 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 70;
  background: #70A323;
  box-shadow: 0px -3px 8px rgba(61, 101, 1, 0.3);
}
@media (min-width: 992px) {
  .sticky-cta {
    display: none !important;
  }
}
.sticky-cta .btn-block {
  margin: auto;
  max-width: 335px;
}
.sticky-cta .button-group {
  gap: 8px;
}
.sticky-cta .button-group .btn {
  padding: 12px 18.5px;
}
.sticky-cta .text {
  color: #EAEDE6;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

/* resources-section Start*/
.resources-section {
  background-color: #EAEDE6;
  padding: 48px 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .resources-section {
    padding: 70px 0;
  }
}
.resources-section .section-title {
  color: #000000;
  text-align: center;
}
.resources-section .resources-card-deck {
  margin-top: 24px;
}
@media (min-width: 576px) {
  .resources-section .resources-card-deck {
    margin-top: 32px;
  }
}
@media (min-width: 992px) {
  .resources-section .resources-card-deck {
    margin-top: 64px;
  }
}
.resources-section .resources-card-deck .resources-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .resources-section .resources-card-deck .resources-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .resources-section .resources-card-deck .resources-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
  }
}
.resources-section .resources-card-deck .resources-card-grid .resources-card {
  background-color: white;
  padding: 8px 8px 20px 8px;
  border-radius: 15px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
.resources-section .resources-card-deck .resources-card-grid .resources-card img {
  width: 100%;
  border-radius: 10px;
}
.resources-section .resources-card-deck .resources-card-grid .resources-card-body {
  margin-top: 16px;
  padding: 0 12px;
}
.resources-section .resources-card-deck .resources-card-grid .resources-card-body .resources-card-title {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .resources-section .resources-card-deck .resources-card-grid .resources-card-body .resources-card-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.resources-section .resources-card-deck .resources-badge-group {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
}
[dir=rtl] .resources-section .resources-card-deck .resources-badge-group {
  flex-direction: row-reverse;
  justify-content: start;
}
.resources-section .resources-card-deck .resources-badge-group span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  padding: 4px 10px;
  border: none;
  border-radius: 10px;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.008em;
  cursor: pointer;
}
@media (min-width: 992px) {
  .resources-section .resources-card-deck .resources-badge-group span {
    font-size: 14px;
    line-height: 20px;
  }
}
.resources-section .resources-card-deck .resources-badge-group .purple-badge {
  background-color: #6A3C9F;
}
.resources-section .resources-card-deck .resources-badge-group .green-badge {
  background-color: #70A323;
}
.resources-section .resources-btn {
  text-align: center;
  margin-top: 24px;
}
@media (min-width: 576px) {
  .resources-section .resources-btn {
    margin-top: 32px;
  }
}
@media (min-width: 992px) {
  .resources-section .resources-btn {
    margin-top: 64px;
  }
}
.resources-section .resources-btn .btn-orange {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
.resources-section .resource-search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .resources-section .resource-search-bar {
    flex-direction: row;
  }
}
.resources-section .resource-search-bar .search-input {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  width: 100%;
  padding: 0px 14px;
  border: 1.5px solid #CCCFC8;
  border-radius: 10px;
  gap: 10px;
}
@media (min-width: 576px) {
  .resources-section .resource-search-bar .search-input {
    width: 293px;
  }
}
@media (min-width: 992px) {
  .resources-section .resource-search-bar .search-input {
    width: 363px;
  }
}
.resources-section .resource-search-bar .search-input input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  color: #414639;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
}
.resources-section .resource-search-bar .search-input input::placeholder {
  color: #414639;
  opacity: 0.6;
  font-family: "Poppins", sans-serif;
}
.resources-section .resource-search-bar .search-input input:focus-visible {
  outline: none;
}
.resources-section .resource-search-bar select {
  width: 100%;
  font-family: "Poppins";
  background-color: #FFFFFF;
  border: 1.5px solid #CCCFC8;
  padding: 12px 14px;
  border-radius: 10px;
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (min-width: 576px) {
  .resources-section .resource-search-bar select {
    width: 209px;
  }
}
.resources-section .resource-search-bar select:focus-visible {
  outline: none;
}
.resources-section .resource-search-bar .filter-wrap {
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  .resources-section .resource-search-bar .filter-wrap {
    width: 209px;
  }
}
.resources-section .resource-search-bar .filter-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("//static.3asafeer.com/images/icons/select-icon.svg");
  width: 13px;
  height: 8px;
  right: 20px;
  background-repeat: no-repeat;
  object-fit: contain;
}
[dir=rtl] .resources-section .resource-search-bar .filter-wrap:before {
  left: 20px;
  right: auto;
}
.resources-section ::-webkit-scrollbar {
  width: 1px;
}
.resources-section ::-webkit-scrollbar-track {
  opacity: 0;
}

.teach-section {
  padding-top: 48px;
  padding-bottom: 48px;
  overflow: hidden;
}
.teach-section .section-title {
  color: #000000;
  text-align: center;
}
@media (min-width: 992px) {
  .teach-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .teach-section {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
.teach-section .teach-widget-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
  margin-top: 24px;
  position: relative;
}
@media (min-width: 576px) {
  .teach-section .teach-widget-wrapper {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-widget-wrapper {
    gap: 36px;
    margin-top: 72px;
  }
}
.teach-section .teach-widget-wrapper .moon-shape {
  position: absolute;
  max-width: 872px;
  transform: translateY(-50%);
  z-index: -1;
  top: 43%;
  left: 18px;
}
@media (min-width: 576px) {
  .teach-section .teach-widget-wrapper .moon-shape {
    top: 47%;
    left: 96px;
  }
}
.teach-section .teach-widget-wrapper .moon-shape img {
  width: 100%;
}
.teach-section .teach-wrapper {
  position: relative;
}
.teach-section .teach-wrapper .teach-yellow-shape {
  position: absolute;
  width: 27px;
  height: 27px;
  top: 95px;
  left: 50%;
}
@media (min-width: 576px) {
  .teach-section .teach-wrapper .teach-yellow-shape {
    top: 30px;
    width: 31px;
    left: 0%;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-wrapper .teach-yellow-shape {
    width: 51px;
    height: 51px;
  }
}
.teach-section .teach-wrapper .teach-orange-shape {
  position: absolute;
  width: 23px;
  height: 23px;
  right: -5px;
  top: -12px;
}
@media (min-width: 992px) {
  .teach-section .teach-wrapper .teach-orange-shape {
    width: 33px;
    height: 33px;
    top: -40px;
  }
}
.teach-section .teach-widget {
  text-align: left;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
}
@media (min-width: 576px) {
  .teach-section .teach-widget {
    text-align: center;
    display: block;
  }
}
@media (min-width: 576px) {
  .teach-section .teach-widget:nth-child(odd) .widget-body {
    margin-top: 34px;
  }
}
@media (min-width: 576px) {
  .teach-section .teach-widget:nth-child(even) .widget-body {
    margin-bottom: 34px;
  }
}
.teach-section .teach-widget .widget-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 576px) {
  .teach-section .teach-widget .widget-body {
    gap: 13px;
  }
}
@media screen and (max-width: 575px) {
  .teach-section .teach-widget .widget-body {
    max-width: 175px;
  }
}
.teach-section .teach-widget .widget-body .teach-widget-title {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .teach-section .teach-widget .widget-body .teach-widget-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.teach-section .teach-widget .widget-body p {
  color: #414639;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 576px) {
  .teach-section .teach-widget .widget-body p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-widget .widget-body p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 575px) {
  .teach-section .teach-widget .number-wrapper-desktop {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .teach-section .teach-widget .number-wrapper-mobile {
    display: none !important;
  }
}
.teach-section .teach-widget .number-wrapper {
  width: 31px;
  height: 31px;
  background: #8845D6;
  border: 1.5px solid #6A3C9F;
  box-shadow: inset 0px -5px 0px #6A3C9F;
  border-radius: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .teach-section .teach-widget .number-wrapper {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-widget .number-wrapper {
    width: 48px;
    height: 48px;
  }
}
.teach-section .teach-widget .number-wrapper span {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .teach-section .teach-widget .number-wrapper span {
    font-size: 34px;
    line-height: 36px;
  }
}
.teach-section .widget-image {
  margin: auto;
}
.teach-section .widget-image img {
  width: 100%;
}
.teach-section .teach-widget-one .widget-image {
  max-width: 140px;
}
@media (min-width: 576px) {
  .teach-section .teach-widget-one .widget-image {
    max-width: 129px;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-widget-one .widget-image {
    max-width: 206px;
  }
}
.teach-section .teach-widget-two .widget-image {
  max-width: 140px;
}
@media (min-width: 576px) {
  .teach-section .teach-widget-two .widget-image {
    max-width: 172px;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-widget-two .widget-image {
    max-width: 274px;
  }
}
.teach-section .teach-widget-three .widget-image {
  max-width: 140px;
}
@media (min-width: 576px) {
  .teach-section .teach-widget-three .widget-image {
    max-width: 168px;
  }
}
@media (min-width: 992px) {
  .teach-section .teach-widget-three .widget-image {
    max-width: 268px;
  }
}

.showcase-section {
  padding: 40px 0px;
}
@media (min-width: 992px) {
  .showcase-section {
    padding: 80px 0px;
  }
}
.showcase-section .section-title {
  text-align: center;
  max-width: 736px;
  margin: auto;
  margin-bottom: -45px;
  z-index: 5;
  position: relative;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 576px) {
  .showcase-section .section-title {
    margin-bottom: -32px;
  }
}
@media (min-width: 992px) {
  .showcase-section .section-title {
    font-size: 52px;
    line-height: 68px;
    margin-bottom: -53px;
  }
.showcase-section .showcase-box {
	height: 600px !important;
  }
}
.showcase-section .showcase-box {
  max-width: 1314px;
  margin: auto;
  position: relative;
  padding: 0 20px;
}
@media (min-width:768px){
	.showcase-section .showcase-box {
		width: 100%;
		height: 400px;
		overflow: hidden;
		padding:0px !important;
		max-width: 100% !important;
	}
	.showcase-section{
		padding:0px !important;
	}
	.cvrcont{
		width:unset !important;
		height:unset !important;
	}
	.whtotrans{height:50% !important;}
	.horcovs{
		transform:unset !important;
		margin:-10vw 0 0 0 !important;
	}
	[lang=en] .horcovs{margin:-10vw 0 0 -10vw !important;}
	.horcovs .row1, .horcovs .row2, .horcovs .row3, .horcovs .row4, .horcovs .row5,.horcovs .row6{width:130vw !important;}
	.horcovs img{width: 25vw !important;height: 15vw !important;}
}
@media (min-width: 992px) {
  .showcase-section .showcase-box img {
    height: 503px;
  }
}
.showcase-section .showcase-box::before {
  content: "";
  position: absolute;
  background: radial-gradient(289.67% 98.34% at 47.01% 1.66%, rgba(255, 255, 255, 0.97) 24.42%, rgba(255, 255, 255, 0.4) 59.81%, rgba(255, 255, 255, 0) 100%);
  left: 0;
  top: -3px;
  right: 0;
  bottom: 0;
}

/*pricing-Section start*/
.pricing-section {
  padding: 40px 0;
  position: relative;
  z-index: 5;
}
@media (min-width: 992px) {
  .pricing-section {
    padding: 80px 0;
  }
}
.pricing-section .pricing-bg-shape {
  position: absolute;
  left: 0;
  top: -5px;
  z-index: -1;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  right: 0;
  background-image: url("//static.3asafeer.com/images/shapes/pricing-bg-shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 576px) {
  .pricing-section .pricing-bg-shape {
    top: 30%;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-bg-shape {
    top: 50px;
  }
}
[dir=rtl] .pricing-section .pricing-bg-shape {
  right: auto;
  left: 0;
}
.pricing-section .pricing-card-deck {
  max-width: 924px;
  margin: 0 auto;
}
.pricing-section .pricing-card-deck .section-title-block {
  max-width: 226px;
  margin: auto;
  position: relative;
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .section-title-block {
    max-width: 490px;
  }
}
.pricing-section .pricing-card-deck .section-title-block .double-stick-shape {
  position: absolute;
  width: 16%;
  max-width: 58px;
  right: -27px;
  top: -9px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .section-title-block .double-stick-shape {
    width: 12%;
    right: -20px;
    top: -2px;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .section-title-block .double-stick-shape {
    right: -44px;
    top: -6px;
  }
}
.pricing-section .pricing-card-deck .section-title {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .section-title {
    font-size: 52px;
    line-height: 68px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-block {
    margin-top: 74px;
  }
}
[dir=rtl] .pricing-section .pricing-card-deck .pricing-card-block {
  flex-direction: row-reverse;
}
.pricing-section .pricing-card-deck .pricing-card-block .plan-badge-wrapper {
  max-width: 99px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -31px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .plan-badge-wrapper {
    top: -52px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .plan-badge-wrapper img {
  max-width: 21px;
  object-fit: contain;
  margin-bottom: -10px;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .plan-badge-wrapper img {
    max-width: 35px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .plan-badge-wrapper .plan-badge {
  background: #E56407;
  border-radius: 7.33333px;
  padding: 1.5px 9.5px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 8px;
  line-height: 16px;
  letter-spacing: -0.0015em;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .plan-badge-wrapper .plan-badge {
    font-size: 14.6667px;
    line-height: 26px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card {
  position: relative;
  padding: 32px 32px 20px;
  width: 43%;
  max-width: 392px;
  padding: 4px;
  border-radius: 20px;
  text-align: center;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card {
    padding: 32px 32px 20px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .plan-duration {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .plan-duration {
    margin-top: 15px;
  }
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .plan-duration {
    text-align: start;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .plan-duration {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 0;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 10px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block {
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block {
    flex-direction: column;
    margin-top: 32px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .price {
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .price {
    font-size: 52px;
    line-height: 58px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .text-block {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .text-block {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .text-block {
    justify-content: center;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .text-block .badge {
  background: #8845D6;
  border-radius: 4px;
  padding: 0px 5px;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card .pricing-plan .price-block .text-block .badge {
    font-size: 14px;
    line-height: 20px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--green {
  background: #70A323;
  border: 2.5px solid #5A9304;
  box-shadow: 0px 4px 0px #5A9304;
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--green .price {
  color: #FFFFFF;
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--green .plan-duration {
  color: #EAEDE6;
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--green .text {
  color: #EAEDE6;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card--green .text {
    font-size: 14px;
    line-height: 20px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--white {
  background: #FFFFFF;
  border: 1.5px solid #414639;
  box-shadow: 0px 3px 0px #222426;
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--white .price,
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--white .plan-duration {
  color: #000000;
}
.pricing-section .pricing-card-deck .pricing-card-block .pricing-card--white .text {
  color: #000000;
  opacity: 0.7;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card--white .text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-block .pricing-card--white .text {
    font-size: 18px;
    line-height: 28px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-bottom {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-bottom {
    margin-top: 40px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-bottom .btn-black {
  font-size: 10px;
  line-height: 24px;
  padding: 7px 0px;
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .pricing-section .pricing-card-deck .pricing-card-bottom .btn-black {
    padding: 16px 32px;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-bottom .btn-black {
    font-size: 18px;
    line-height: 28px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-bottom .annual-text {
  color: #EAEDE6;
  opacity: 0.9;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-bottom .annual-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.pricing-section .pricing-card-deck .pricing-card-bottom .monthly-text {
  color: #000000;
  opacity: 0.7;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 992px) {
  .pricing-section .pricing-card-deck .pricing-card-bottom .monthly-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.pricing-section .pricing-video {
  margin-bottom: 80px;
  border-radius: 20px;
  position: relative;
}
.pricing-section .pricing-video iframe {
  border: 4px solid #8845D6;
}
@media (min-width: 576px) {
  .pricing-section .pricing-video {
    margin-top: 80px;
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .pricing-section .pricing-video {
    margin-top: 160px;
  }
}
.pricing-section .pricing-video .single-stick-shape {
  position: absolute;
  right: 28px;
  top: -44px;
  width: 14px;
}
@media (min-width: 992px) {
  .pricing-section .pricing-video .single-stick-shape {
    width: 33px;
    right: -5px;
    top: -110px;
  }
}

/* video-content- section start*/
.video-content-section {
  padding: 28px 0;
  background-color: #EAEDE6;
  position: relative;
  overflow: hidden;
}
.video-content-section::before {
  content: "";
  position: absolute;
  background-image: url(//static.3asafeer.com/images/shapes/subtract.svg);
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  height: 100px;
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 100%;
}
.video-content-section .star-icon {
  position: absolute;
  top: 1px;
  left: 25%;
}
@media (min-width: 992px) {
  .video-content-section .star-icon {
    top: 33px;
  }
}
@media (min-width: 576px) {
  .video-content-section {
    padding: 55px 0;
  }
}
@media (min-width: 992px) {
  .video-content-section {
    padding: 80px 0;
  }
}
.video-content-section .video-contwnt-shape-bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  width: 100%;
  background-color: #5c9117;
}
.video-content-section .title-block {
  position: relative;
  max-width: 470px;
  margin: auto;
  text-align: center;
}
.video-content-section .title-block .stick-shape {
  position: absolute;
  right: -30px;
  top: -5px;
  width: 54px;
}
.video-content-section .title-block .section-title {
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 576px) {
  .video-content-section .title-block .section-title {
    font-size: 64px;
    line-height: 68px;
  }
}
.video-content-section .video-content-wrapper {
  margin-top: 24px;
  position: relative;
  z-index: 12;
}
.video-content-section .video-content-wrapper iframe {
  border: 4px solid #8845D6;
}
@media (min-width: 992px) {
  .video-content-section .video-content-wrapper {
    margin-top: 64px;
  }
}

/*feature-section start*/
.feature-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}
@media (min-width: 576px) {
  .feature-section {
    padding: 34px 0;
  }
}
@media (min-width: 992px) {
  .feature-section {
    padding: 80px 0;
  }
}
.feature-section::before {
  content: "";
  position: absolute;
  background-image: url("//static.3asafeer.com/images/shapes/education-feature-bg.svg");
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.feature-section .section-title-block {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: 390px;
  text-align: center;
  margin: auto;
}
@media (min-width: 576px) {
  .feature-section .section-title-block {
    max-width: 392px;
  }
}
@media (min-width: 992px) {
  .feature-section .section-title-block {
    max-width: 641px;
  }
}
.feature-section .section-title-block .section-title {
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 992px) {
  .feature-section .section-title-block .section-title {
    font-size: 52px;
    line-height: 58px;
  }
}
.feature-section .section-title-block p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .feature-section .section-title-block p {
    font-size: 18px;
    line-height: 24px;
  }
}

.feature-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  column-gap: 15px;
  row-gap: 32px;
  justify-content: center;
}
@media (min-width: 576px) {
  .feature-block {
    column-gap: 50px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .feature-block {
    margin-top: 64px;
  }
}
.feature-block .feature-widget {
  max-width: 160px;
}
@media (min-width: 992px) {
  .feature-block .feature-widget {
    max-width: 250px;
  }
}
.feature-block .feature-widget-image-wrapper {
  max-width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .feature-block .feature-widget-image-wrapper {
    max-width: 130px;
    height: 130px;
  }
}
.feature-block .feature-widget-image-wrapper img {
  max-width: 100%;
}
.feature-block .feature-widget-title {
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  margin-top: 8px;
}
@media (min-width: 576px) {
  .feature-block .feature-widget-title {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .feature-block .feature-widget-title {
    font-size: 18px;
    line-height: 28px;
  }
}

/*feature-two-section start*/
.feature-two-section {
  background-color: #5A9304;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow-x: hidden;
  background-repeat: repeat;
}
.feature-two-section .section-title-block-wrapper {
  display: flex;
  columns: 30px;
  justify-content: center;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .feature-two-section .section-title-block-wrapper {
    margin-bottom: 64px;
    justify-content: space-between;
    align-items: center;
  }
}
.feature-two-section .section-title-block-wrapper .section-title-block {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  text-align: center;
  max-width: 382px;
}
@media (min-width: 992px) {
  .feature-two-section .section-title-block-wrapper .section-title-block {
    max-width: initial;
    text-align: left;
  }
}
.feature-two-section > .container {
  position: relative;
}
.feature-two-section .content-card {
  padding: 24px 16px;
  row-gap: 62px;
  background: linear-gradient(211.59deg, #F8FFED 19.04%, #E6FFFF 79.19%);
}
.feature-two-section .content-card .content-card-description {
  max-width: 100%;
}
.feature-two-section .content-card .content-card-image {
  padding: 0px 24%;
}
.feature-two-section .content-card .content-card-image:before {
  background-image: url(//static.3asafeer.com/images/shapes/featureTwo-cicle-left.svg);
  top: 1%;
}
.feature-two-section .content-card .content-card-image::after {
  background-image: url(//static.3asafeer.com/images/shapes/featureTwo-cicle-right.svg);
}

/* Slider Styles */
.feature-two-slider-navigation {
  display: none;
}
@media (min-width: 992px) {
  .feature-two-slider-navigation {
    display: flex;
    gap: 13px;
  }
  [dir=rtl] .feature-two-slider-navigation {
    flex-direction: row-reverse;
  }
}
.feature-two-slider-navigation button {
  padding: 16px;
  width: 60px;
  height: 60px;
  background: #E56407;
  border: 1.5px solid #A84A0C;
  box-shadow: inset 0px 5px 12px #FB8937, inset 0px -5px 0px #A84A0C;
  border-radius: 20px;
  cursor: pointer;
}

/*award-section start*/
.award-section {
  padding-top: 90px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10;
}
@media (min-width: 576px) {
  .award-section {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
@media (min-width: 992px) {
  .award-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.award-section .award-star-icon {
  position: absolute;
  top: 20px;
  max-width: 35px;
  left: 50%;
  transform: translateX(-50%);
}
.award-section .award-bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-repeat: repeat-x;
}
@media (min-width: 576px) {
  .award-section .award-bg-shape {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.award-section .award-bg-shape img {
  width: 100%;
}
.award-section .section-title-block {
  display: flex;
  gap: 16px;
  flex-direction: column;
  text-align: center;
}
.award-section .section-title-block .section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 576px) {
  .award-section .section-title-block .section-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .award-section .section-title-block .section-title {
    font-size: 52px;
    line-height: 58px;
  }
}
.award-section .section-title-block .section-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.award-widget-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .award-widget-wrapper {
    gap: 30px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .award-widget-wrapper {
    gap: 36px;
    margin-top: 64px;
  }
}
.award-widget-wrapper .award-widget {
  max-width: 230px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .award-widget-wrapper .award-widget {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .award-widget-wrapper .award-widget {
    max-width: 330px;
  }
}
.award-widget-wrapper .award-widget-image-wrapper {
  width: 100%;
}
.award-widget-wrapper .award-widget-image-wrapper img {
  width: 100%;
}
.award-widget-wrapper .award-widget-title {
  text-align: center;
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .award-widget-wrapper .award-widget-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-top: 24px;
  }
}
.award-widget-wrapper .award-widget--one .award-widget-title {
  color: #4285F4;
}
.award-widget-wrapper .award-widget--two .award-widget-title {
  color: #70A323;
}
.award-widget-wrapper .award-widget--three .award-widget-title {
  color: #DC6C33;
}

/*integration-section start*/
.integration-section {
  padding: 40px 0;
}
.integration-section .section-title-block {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin: auto;
  text-align: center;
}
@media (min-width: 576px) {
  .integration-section .section-title-block {
    max-width: 375px;
  }
}
@media (min-width: 992px) {
  .integration-section .section-title-block {
    max-width: 100%;
  }
}
.integration-section .section-title-block .section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 576px) {
  .integration-section .section-title-block .section-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.integration-section .section-title-block .section-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.integration-section .integration-logo-group {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.integration-section .integration-logo-group .integration-image-wrapper {
  max-width: 164px;
}
@media (min-width: 992px) {
  .integration-section .integration-logo-group .integration-image-wrapper {
    max-width: 203px;
  }
}
.integration-section .integration-logo-group .integration-image-wrapper img {
  width: 100%;
}

/*contact-section start*/
.contact-section {
  background-color: #5A9304;
  padding: 56px 0;
}
@media (min-width: 992px) {
  .contact-section {
    padding: 80px 0;
  }
}
.contact-section .section-title-block {
  text-align: center;
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin: 0 auto 24px auto;
}
@media (min-width: 576px) {
  .contact-section .section-title-block {
    max-width: 335px;
  }
}
@media (min-width: 992px) {
  .contact-section .section-title-block {
    max-width: 100%;
  }
}
.contact-section .section-title-block .section-title {
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 576px) {
  .contact-section .section-title-block .section-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .contact-section .section-title-block .section-title {
    font-size: 52px;
    line-height: 58px;
  }
}
.contact-section .section-title-block p {
  color: #EAEDE6;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .contact-section .section-title-block p {
    font-size: 18px;
    line-height: 24px;
  }
}

.form-wrapper {
  max-width: 484px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .form-wrapper {
    max-width: 744px;
  }
}
.form-wrapper .form-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .form-wrapper .form-block {
    gap: 30px;
  }
}
.form-wrapper .form-block input {
  width: 100%;
  background: linear-gradient(104.74deg, #F8FFED 36.87%, #EDFFFF 88.07%);
  border: 0;
  padding: 7px 0px 10px 22px;
}
[dir=rtl] .form-wrapper .form-block input {
  padding: 7px 22px 10px 5px;
}
.form-wrapper .form-block input:focus-visible {
  outline: none;
}
[lang=ar] .form-submission-block label{font-family:'Hacen Algeria' !important;}
.form-wrapper .form-block label,.form-submission-block label{
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .form-wrapper .form-block label {
    font-size: 18px;
  }
}
.form-wrapper .form-block .input-wrapper {
  background: linear-gradient(104.74deg, #F8FFED 36.87%, #EDFFFF 88.07%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 10px;
}
[dir=rtl] .form-wrapper .form-block .input-wrapper {
  padding: 10px 25px 10px 10px;
}
.form-wrapper .form-block .input-wrapper .image-wrapper {
  position: relative;
}
.form-wrapper .form-block .input-wrapper .image-wrapper::after {
  content: "";
  position: absolute;
  background-color: #414639;
  height: 25px;
  width: 1px;
  top: 2px;
  right: -15px;
  opacity: 0.2;
}
[dir=rtl] .form-wrapper .form-block .input-wrapper .image-wrapper::after {
  left: -13px;right:unset;
}
.form-wrapper .form-block .input-wrapper img {
  max-width: 28px;
  height: 28px;
}
.form-wrapper .form-block .input-group {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .form-wrapper .form-block .input-group {
    flex-direction: row;
  }
  [dir=rtl] .form-wrapper .form-block .input-group {
    flex-direction: row-reverse;
  }
}
.form-wrapper .form-block .input-group .input-block {
  width: 100%;
}
@media (min-width: 992px) {
  .form-wrapper .form-block .input-group .input-block {
    width: 50%;
  }
}
.form-wrapper .input-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-wrapper .form-submission-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.form-wrapper .form-submission-block .btn-block {
  display: block;
}
@media (min-width: 992px) {
  .form-wrapper .form-submission-block .btn-block {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .form-wrapper .form-submission-block .btn-block .btn {
    width: 100%;
  }
}
[lang=ar] .form-wrapper .form-submission-block .checkbox-block{text-align:right;}
[lang=en] .form-wrapper .form-submission-block .checkbox-block{text-align:left;}
.form-wrapper .form-submission-block .checkbox-block span {
  color: #EAEDE6;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 576px) {
  .form-wrapper .form-submission-block .checkbox-block span {
    font-size: 18px;
  }
}
.form-wrapper .form-submission-block .checkbox-block .checkbox-group {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .form-wrapper .form-submission-block .checkbox-block .checkbox-group {
    flex-direction: row;
    gap: 40px;
  }
}
.form-wrapper .form-submission-block .checkbox-block .checkbox-group input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1px solid #EAEDE6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-wrapper .form-submission-block .checkbox-block .checkbox-group input[type=checkbox]:checked:after {
  content: "";
  background-image: url(//static.3asafeer.com/images/icons/check-icon.svg);
  width: 8px;
  height: 5px;
}
.form-wrapper .form-submission-block .checkbox-block .checkbox-group label {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.0008em;
}
.form-wrapper .form-submission-block .checkbox-block .checkbox-group .checkbox-container {
  display: flex;
  align-items: center;
  gap: 6px;
}
[lang=ar] .form-block label{font-family:'Hacen Algeria';}
input#country_selector{	width:0px;}
[dir=rtl] .form-wrapper .country-select.inside input,
[dir=rtl] .form-wrapper .country-select.inside input[type=text] {
  padding-right: 43px;
  padding-top: 8px;
  position: relative;
  unicode-bidi: plaintext;
  text-align: left;
}
input#sms{unicode-bidi: plaintext;text-align: left;}
[lang=ar] .country-select .country-list .flag{
	margin-left:6px;
}
[lang=ar] ul.country-list{text-align:right;}
[dir=rtl] .form-wrapper .country-select.inside .flag-dropdown {
  right: 0;
  left: auto;
}
/*[dir=rtl] .form-wrapper .country-select {
  width: 100%;
}*/
.form-wrapper .country-select .selected-flag .arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
[dir=rtl] .form-wrapper .country-select .selected-flag .arrow {
  right: 28px;
}
.form-wrapper .country-select .selected-flag .arrow.up {
  border-bottom: 4px solid #ffffff;
}

[lang=ar] h1, [lang=ar] h2, [lang=ar] h3, [lang=ar] h4, [lang=ar] h5, [lang=ar] h6 {
  font-weight: 400 !important;
  font-family: "Hacen Algeria Hd";
}
[lang=ar] span, [lang=ar] a, [lang=ar] p, [lang=ar] input, [lang=ar] button {
  font-family: "Hacen Algeria";
}/*# sourceMappingURL=style.css.map */