@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@font-face {
  font-family: "ge_light";
  src: url(../fonts/ge_ss_two/light.otf);
}
@font-face {
  font-family: "ge_medium";
  src: url(../fonts/ge_ss_two/medium.otf);
}
@font-face {
  font-family: "ge_bold";
  src: url(../fonts/ge_ss_two/bold.otf);
}
@font-face {
  font-family: "ge_snd_book";
  src: url(../fonts/ge_snd_book.ttf);
}
:root {
  --primary: #3D59A8;
  --secondary: #AF994C;
  --filterPrimary: invert(31%) sepia(51%) saturate(888%) hue-rotate(189deg) brightness(93%) contrast(88%);
  --filterSecondary: invert(65%) sepia(36%) saturate(540%) hue-rotate(9deg) brightness(86%) contrast(91%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "ge_light";
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.ge_snd_book {
  font-family: "ge_snd_book";
}

.open_sans {
  font-family: "Open Sans", serif;
}

.fw-bolder {
  font-family: "ge_bold";
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f0da";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f0d9";
}

.butn {
  position: relative;
  padding: 0.7rem 1.7rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 25px;
}
.butn i {
  margin-inline-end: 7px;
}
.butn .arrow {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-start: 5px;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}
.butn.blue_butn {
  background-color: #3D59A8;
  color: #fff;
}
.butn:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

.outlined_butn {
  outline: 5px solid;
}
.outlined_butn.secondary_butn {
  outline-color: #DFD3B6;
}
.outlined_butn.secondary_butn:hover {
  background-color: #DFD3B6;
  border-color: var(--secondary);
  outline-color: var(--secondary);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.dir_ltr {
  direction: ltr;
  display: inline-block;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top_nav {
    position: relative;
    padding: 15px 0;
    z-index: 10;
}
.navs-container .top_nav .social_links a {
  color: var(--primary);
  margin-inline-end: 2vw;
}
.navs-container .top_nav .mail_link {
  color: var(--primary);
  direction: ltr;
  font-size: 14px;
  font-weight: 500;
  font-family: "Open Sans", serif;
}
.navs-container .top_nav .mail_link::after {
  content: "|";
  margin-inline-start: 1vw;
}
.navs-container .top_nav .phone_link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}
.navs-container .top_nav .phone_link span {
  font-family: "Open Sans", serif;
}
.navs-container .top_nav .phone_link::after {
  content: "|";
  margin-inline-start: 1vw;
}
.navs-container .top_nav .lang_butn {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
}
.navs-container .top_nav .lang_butn .flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-inline-end: 5px;
}
.navs-container .top_nav .dropdown-menu {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
  border-radius: 10px;
  font-size: 13px;
  border: 0;
}
.navs-container .top_nav .dropdown-menu a {
  padding: 0.6rem 1rem;
}
.navs-container .navbar {
  padding: 1rem;
}
.navs-container .navbar .nav-link {
  color: #1B1A1F;
  margin: 0 10px;
  font-size: 18px;
}
.navs-container .navbar .nav-link.active {
  color: var(--primary);
  font-weight: bold;
}
.navs-container .navbar .nav_end .search_box .search_butn {
  font-size: 20px;
  color: var(--primary);
}
.navs-container .navbar .nav_end .search_box .form-control {
  height: 50px !important;
  width: 250px;
  border-radius: 25px;
  border: 1px solid #485157;
  padding-inline-start: 35px;
}
.navs-container .navbar .nav_end .search_box .form-control::-moz-placeholder {
  color: #969696;
}
.navs-container .navbar .nav_end .search_box .form-control::placeholder {
  color: #969696;
}
.navs-container .navbar .nav_end .search_box .submit_butn {
  color: #969696;
  background-color: transparent;
  position: absolute;
  top: 15px;
  inset-inline-start: 15px;
}
.navs-container .navbar .nav_end .search_box .dropdown-menu {
  padding: 10px;
  border: 0;
  border-radius: 25px;
  background: #f9f9f9;
}
.navs-container .navbar .nav_end .search_box .dropdown-menu[data-bs-popper] {
  right: -200%;
}
.navs-container .navbar .has_dropdown {
  position: relative;
}
.navs-container .navbar .has_dropdown .nav-link {
  position: relative;
  padding-inline-end: 30px;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s linear;
}
.navs-container .navbar .has_dropdown .nav-link::after {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-end: 10px;
  top: 15px;
  color: #888;
  transition: all 0.3s linear;
  font-size: 12px;
}
.navs-container .navbar .has_dropdown .dropdown_box {
  position: absolute;
  background-color: #f9f9f9;
  min-width: 190px;
  z-index: 9;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
}
.navs-container .navbar .has_dropdown .dropdown_box a {
  display: block;
  padding: 15px 15px;
  font-size: 13px;
}
.navs-container .navbar .has_dropdown .dropdown_box a i {
  color: var(--secondary);
  font-size: 18px;
  margin-inline-end: 10px;
}
.navs-container .navbar .has_dropdown .dropdown_box a:hover {
  background-color: #f5f5f5;
}
.navs-container .navbar .has_dropdown:hover .nav-link {
  background-color: #f9f9f9;
}
.navs-container .navbar .has_dropdown:hover .nav-link::after {
  content: "\f068";
}
.navs-container .navbar .has_dropdown:hover .dropdown_box {
  visibility: visible;
  opacity: 1;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-color: #F7F4ED;
}
.footer .content {
  margin-bottom: 30px;
}
.footer .content .p {
  font-size: 15px;
  margin-top: 15px;
}
.footer .content .social_links a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  color: #fff;
  margin-inline-end: 10px;
}
.footer .content .social_links a:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff !important;
}
.footer .content .links a {
  display: block;
  font-size: 18px;
  color: #1B1A1F;
  position: relative;
  padding-inline-start: 25px;
  margin-bottom: 18px;
  font-size: 19px;
}
.footer .content .links a::before {
  font-size: 15px;
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  border-radius: 50%;
}
.footer .content .links a:hover {
  color: #F58824 !important;
}
.footer .content .newsletter_form .form-control {
  border-radius: 10px;
}
.footer .content .newsletter_form .butn {
  border-radius: 10px;
  height: 60px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}
.header .txt_box .title {
  font-size: calc(3vw + 35px);
  color: #fff;
  font-family: "ge_bold";
}
.header .txt_box .p {
  font-size: 18px;
}

.about_sec {
  padding-top: 0;
  overflow: unset;
}
.about_sec .inner {
  margin-top: -70px;
  background: #F7F4ED;
  border-radius: 55px;
  padding: 45px 15px 0px 15px;
}
.about_sec .inner .txt_content .title {
  font-size: 32px;
  font-family: "ge_bold";
}
.about_sec .inner .txt_content .subtitle {
  font-size: 30px;
  color: #191A1D;
  font-family: "ge_bold";
}
.about_sec .inner .txt_content .p {
  font-size: 18px;
  color: #1B1A1F;
}
.about_sec .inner .vision_box {
  border-radius: 40px;
  background-color: #fff;
  padding: 15px;
  margin: 15px 0;
  height: calc(100% - 30px);
}
.about_sec .inner .vision_box .secImg {
  border-radius: 32px;
}
.about_sec .inner .vision_box .card-body .icon_box {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: #EBEDF6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_sec .inner .vision_box .card-body .icon_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about_sec .inner .vision_box .card-body .title {
  font-size: 40px;
}
.about_sec .inner .vision_box .card-body .p {
  line-height: 1.4;
  font-size: 25px;
  color: #505F59;
}
.about_sec .inner .mission_box {
  background-color: #AB9047;
  border-radius: 40px;
  padding: 15px 25px;
  margin: 15px 0;
  height: calc(100% - 30px);
}
.about_sec .inner .mission_box .title {
  font-size: 40px;
}
.about_sec .inner .mission_box .img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-inline-start: auto !important;
}
.about_sec .inner .mission_box .p {
  line-height: 1.4;
  font-size: 28px;
}
.about_sec .inner .vectors {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.stories_sec .story_box {
  position: relative;
  border-radius: 32px;
  background-color: #F7F4ED;
  padding: 20px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stories_sec .story_box .img_box {
  border-radius: 16px;
  position: relative;
  height: 200px;
}
.stories_sec .story_box .img_box .secImg {
  border-radius: 16px;
}
.stories_sec .story_box .img_box .vid_butn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #191A1D;
  font-size: 30px;
}
.stories_sec .story_box .card-body {
  margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stories_sec .story_box .card-body .name {
  font-size: 28px;
  font-weight: bold;
  color: #191A1D;
}
.stories_sec .story_box .card-body .p {
  font-size: 18px;
}
.stories_sec .story_box.popular_box {
  background-color: #3D59A8;
}
.stories_sec .story_box.popular_box .pop_badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #fff;
  padding: 0.5rem;
  direction: ltr;
  border-radius: 25px;
  font-family: "Open Sans", serif;
  font-size: 12px;
  font-weight: 500;
}
.stories_sec .story_box.popular_box .pop_badge i {
  color: #F3B943;
  margin-inline-end: 5px;
}
.stories_sec .story_box.popular_box .card-body * {
  color: #fff;
}
.stories_sec .story_box.popular_box .secondary_butn {
  background-color: #fff;
  outline-color: #1869C8;
}
.stories_sec .story_box.popular_box .secondary_butn span {
  color: #3D59A8;
}
.stories_sec .story_box.popular_box .secondary_butn:hover {
  background-color: #1869C8;
  outline-color: #fff;
}
.stories_sec .story_box.popular_box .secondary_butn:hover span {
  color: #fff;
}
.stories_sec .more_butn {
  position: relative;
  display: block;
  text-align: center;
}
.stories_sec .more_butn span {
  padding-inline: 15px;
  color: var(--secondary);
  font-family: "ge_bold";
  text-decoration: underline !important;
  font-size: 16px;
  position: relative;
  background-color: #fff;
  z-index: 5;
}
.stories_sec .more_butn::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #C7E1D6;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
}

.statics_sec {
  padding-top: 120px;
}
.statics_sec .item {
  margin-bottom: 25px;
  position: relative;
}
.statics_sec .item .circle_box {
  width: 150px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.statics_sec .item .circle_box .content {
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.statics_sec .item .circle_box .content .icon_box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}
.statics_sec .item .circle_box .content .icon_box .icon {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.statics_sec .item .circle_box .content::before {
  content: "";
  width: 45px;
  height: 40px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}
.statics_sec .item .circle_box .content::after {
  content: "";
  width: 100px;
  height: 20px;
  background-color: var(--secondary);
  position: absolute;
  top: -1px;
  right: 40px;
}
.statics_sec .item .circle_box .counter {
  font-size: 30px;
  font-weight: bold;
  background: -webkit-linear-gradient(#b0984f, #3D59A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Open Sans", serif;
}
.statics_sec .item .title {
  text-align: center;
  color: #1B1A1F;
  font-size: 18px;
  margin-top: 25px;
  font-weight: bold;
}
.statics_sec .bg {
  -o-object-position: top;
     object-position: top;
}

.muslims_live {
  background-color: #F7F4ED;
  padding-bottom: 120px;
}
.muslims_live .item {
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  border: 1px solid #eee;
  display: flex;
  padding: 25px 15px;
  box-shadow: 0 10px 15px 0 rgba(137, 137, 137, 0.067);
}
.muslims_live .item .flag_box {
  position: relative;
  width: 55px;
  height: 55px;
  margin-inline-end: 15px;
}
.muslims_live .item .flag_box .flag {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.muslims_live .item .flag_box::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  background-color: #66cb9f;
  position: absolute;
  bottom: 0;
  inset-inline-start: -3px;
  border-radius: 50%;
}
.muslims_live .item .txt_cont {
  width: calc(100% - 70px);
}
.muslims_live .item .txt_cont .title {
  font-size: 15px;
  line-height: 1.4;
}
.muslims_live .item .txt_cont .p {
  color: #db9e30;
}
.muslims_live .curve {
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.certificates_sec .certi_box {
  padding: 20px;
  padding-bottom: 10px;
  border-radius: 40px;
  margin-bottom: 20px;
  height: calc(100% - 20px);
  transition: all 0.3s linear;
}
.certificates_sec .certi_box .img_box {
  height: 255px;
  border-radius: 32px;
}
.certificates_sec .certi_box .img_box .secImg {
  border-radius: 32px;
}
.certificates_sec .certi_box .card-body {
  padding-top: 1.7rem;
}
.certificates_sec .certi_box .card-body * {
  transition: all 0.3s linear;
}
.certificates_sec .certi_box .card-body .name {
  font-size: 30px;
}
.certificates_sec .certi_box .card-body .country_row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.certificates_sec .certi_box .card-body .country_row .p {
  margin-bottom: 0;
  font-size: 18px;
}
.certificates_sec .certi_box .card-body .country_row .flag {
  width: 35px;
  height: 35px;
  border: 1px solid #191A1D;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.certificates_sec .certi_box .card-body .secondary_butn {
  background-color: #DFD3B6;
  color: var(--secondary);
}
.certificates_sec .certi_box:hover {
  background-color: #3D59A8;
}
.certificates_sec .certi_box:hover .name,
.certificates_sec .certi_box:hover .p {
  color: #fff;
}
.certificates_sec .certi_box:hover .country_row .flag {
  border-color: #fff;
}
.certificates_sec .certi_box:hover .secondary_butn {
  background-color: #fff;
  color: #3D59A8;
}

.feedback_sec .inner {
  background-color: #3D59A8;
  border-radius: 40px;
  padding: 50px 2vw;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}
.feedback_sec .inner .sec_head .title {
  font-size: 50px;
  color: #FEE193;
  font-family: "ge_bold";
}
.feedback_sec .inner .sec_head .subtitle {
  font-size: 35px;
}
.feedback_sec .inner .feedback_item {
  background-color: #fff;
  border-radius: 24px;
  padding: 35px;
}
.feedback_sec .inner .feedback_item .icon {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 15px;
}
.feedback_sec .inner .feedback_item .title {
  font-weight: bold;
  font-size: 24px;
}
.feedback_sec .inner .feedback_item .p {
  color: #505F59;
}
.feedback_sec .inner .feedback_item .card_foot .prof_data {
  width: 50%;
  border-inline-end: 1px solid #ccc;
  padding-inline-end: 10px;
}
.feedback_sec .inner .feedback_item .card_foot .prof_data .avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 10px;
}
.feedback_sec .inner .feedback_item .card_foot .prof_data .name {
  font-size: 24px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  padding: 100px 0 60px 0;
}
.pg_header .txt_box .back_butn {
  width: 45px;
  height: 45px;
  background-color: #EBEDF6;
  color: var(--primary);
  border-radius: 8px;
}
.pg_header .bg {
  -o-object-position: top;
     object-position: top;
}

/**********************************************
    Start Edit story det Page 
**********************************************/
.story_pg .main_img {
  height: 580px;
  border-radius: 15px;
}
.story_pg .data_row .prof_data {
  display: flex;
  align-items: center;
}
.story_pg .data_row .prof_data .avatar {
  width: 122px;
  height: 122px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-inline-end: 25px;
}
.story_pg .data_row .prof_data .content .name {
  font-size: 24px;
  color: #505F59;
}
.story_pg .data_row .prof_data .content .job {
  color: #505F59;
  font-size: 16px;
}
.story_pg .data_row .butns {
  justify-content: end;
}
.story_pg .data_row .butns .butn {
  margin-inline-end: 10px;
  background-color: #F7F4ED;
  color: var(--secondary);
}
.story_pg .data_row .butns .butn .icon {
  width: 30px;
  height: 25px;
}
.story_pg .data_row .butns .butn:hover {
  background-color: var(--primary);
}
.story_pg .txt_box {
  background-color: #EFF2F4;
  border-radius: 25px;
  padding: 45px;
}
.story_pg .txt_box .views {
  margin-bottom: 20px;
  font-size: 20px;
  color: #505F59;
}
.story_pg .txt_box .p {
  color: #1B1A1F;
  font-size: 20px;
  line-height: 1.9;
  height: 350px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.story_pg .txt_box .p.active {
  height: auto;
  overflow: unset;
}
.story_pg .related_box {
  height: 785px;
  overflow-x: hidden;
  overflow-y: auto;
}
.story_pg .related_box .item {
  position: relative;
  margin-bottom: 25px;
}
.story_pg .related_box .item .storyImg {
  border-radius: 25px;
}
.story_pg .related_box .item .card-body .title {
  font-size: 32px;
}
.story_pg .related_box .item .card-body .view {
  font-size: 20px;
}
.story_pg .related_box .item .card-body .p {
  font-size: 20px;
  color: #191A1D;
  max-height: 136px;
  overflow: hidden;
}

/**********************************************
    Start Edit jobs Page 
**********************************************/
.jobs_pg .job_card {
  border-radius: 25px;
  border: 1px solid #DFD3B6;
  padding: 25px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.jobs_pg .job_card .logo {
  height: 65px;
  display: block;
  margin-bottom: 20px;
}
.jobs_pg .job_card .title {
  font-size: 24px;
  margin-bottom: 15px;
}
.jobs_pg .job_card .p {
  color: #757575;
}

.jobs_det .txt_box {
  border-radius: 25px;
  padding: 50px 3vw;
  box-shadow: -6px 7px 4px 0 #F4F1EB;
}
.jobs_det .data_box {
  height: 100%;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid #DFD3B6;
}
.jobs_det .data_box .item {
  margin-bottom: 25px;
}
.jobs_det .data_box .item .label {
  margin-bottom: 7px;
  color: #3E3E3E;
}
.jobs_det .data_box .item .data {
  font-size: 20px;
  color: #000;
  font-family: "ge_bold";
}
.jobs_det .form_box {
  padding: 50px 3vw;
  border-radius: 25px;
  border: 1px solid #DFD3B6;
}
.jobs_det .form_box .form-group {
  margin-bottom: 15px;
}
.jobs_det .form_box .form-group .form-control {
  border-radius: 20px;
  border-color: rgba(153, 153, 153, 0.368627451);
}
.jobs_det .form_box .form-group .form-control::-moz-placeholder {
  color: #999999;
}
.jobs_det .form_box .form-group .form-control::placeholder {
  color: #999999;
}
.jobs_det .form_box .drop_box {
  overflow: hidden;
  height: 60px;
  border: 1px solid rgba(153, 153, 153, 0.368627451);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 20px;
}
.jobs_det .form_box .drop_box .kwt-file {
  width: 100%;
}
.jobs_det .form_box .drop_box .kwt-file__drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  transition: 0.3s;
}
.jobs_det .form_box .drop_box .kwt-file__drop-area.is-active {
  background-color: #eee;
}
.jobs_det .form_box .drop_box .kwt-file__choose-file {
  flex-shrink: 0;
  background-color: rgba(204, 204, 204, 0.3647058824);
  border-radius: 15px;
  margin-inline-end: 10px;
  color: var(--secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.jobs_det .form_box .drop_box .kwt-file__choose-file.kwt-file_btn-text {
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
}
.jobs_det .form_box .drop_box .kwt-file__choose-file svg {
  width: 19px;
  height: 19px;
  display: block;
}
.jobs_det .form_box .drop_box .kwt-file__msg {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jobs_det .form_box .drop_box .kwt-file__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.jobs_det .form_box .drop_box .kwt-file__input:focus {
  outline: none;
}
.jobs_det .form_box .drop_box .kwt-file__delete {
  display: none;
  position: absolute;
  inset-inline-end: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.jobs_det .form_box .drop_box .kwt-file__delete:before {
  content: "";
  position: absolute;
  left: 0;
  transition: 0.3s;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}
.jobs_det .form_box .drop_box .kwt-file__delete:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1d3557;
  border-radius: 50%;
  transition: 0.3s;
}
.jobs_det .form_box .drop_box .kwt-file__delete:hover:after {
  transform: translate(-50%, -50%) scale(2.2);
  opacity: 0.1;
}

/**********************************************
    Start Edit files Page 
**********************************************/
.files_pg .table thead th {
  padding: 1.35rem 1rem;
  text-align: center;
  font-size: 22px;
}
.files_pg .table thead th .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 7px auto;
}
.files_pg .table * {
  border-color: #DFD3B6;
}
.files_pg .table tbody td {
  text-align: center;
  padding: 1rem;
  vertical-align: middle;
  max-width: 300px;
  font-size: 18px;
}
.files_pg .table tbody td .p,
.files_pg .table tbody td span {
  font-size: 18px;
}
.files_pg .table tbody td .date {
  color: #3D59A8;
}
.files_pg .table tbody td .file_butn .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--primary);
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 45px;
  height: 40px;
}
.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: #f5f5f5;
  color: var(--primary) !important;
}

/**********************************************
    Start Edit certificates Page 
**********************************************/
.certificates_pg .certi_box {
  background-color: #FBF9F6;
}
.certificates_pg .certi_box .card-body .country_row {
  border-bottom: none;
  padding-bottom: 0;
}
.certificates_pg .certi_box .card-body .data .item {
  margin-bottom: 5px;
  transition: all 0.3s linear;
  font-family: "ge_light";
  color: #333;
}
.certificates_pg .certi_box .card-body .data .item b {
  transition: all 0.3s linear;
  color: #000;
  margin-inline-start: 4px;
}
.certificates_pg .certi_box:hover .data .item {
  color: #eee;
}
.certificates_pg .certi_box:hover .data .item b {
  color: #fff;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .inner {
  border-radius: 25px;
  padding: 3vw;
  box-shadow: 6px 7px 4px 0 #F4F1EB;
}
.contact_pg .inner .contact_box .item {
  align-items: center;
  margin-bottom: 40px;
}
.contact_pg .inner .contact_box .item:last-child {
  margin-bottom: 0;
}
.contact_pg .inner .contact_box .item .icon_outer {
  width: 120px;
  height: 90px;
  background-color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 25px;
  margin-inline-end: 25px;
  font-size: 30px;
  flex-shrink: 0;
}
.contact_pg .inner .contact_box .item .txt {
  width: calc(100% - 60px);
}
.contact_pg .inner .contact_box .item .txt .label {
  font-size: 25px;
  color: #000;
}
.contact_pg .inner .contact_box .item .txt .p {
  color: #9A9A9A;
  font-size: 20px;
}
.contact_pg .inner .map_box iframe {
  border-radius: 25px;
}
.contact_pg .form_box {
  padding: 50px 3vw;
  border-radius: 25px;
  border: 1px solid #DFD3B6;
}
.contact_pg .form_box .form-group {
  margin-bottom: 15px;
}
.contact_pg .form_box .form-group .form-control {
  border-radius: 20px;
  border-color: rgba(153, 153, 153, 0.368627451);
}
.contact_pg .form_box .form-group .form-control::-moz-placeholder {
  color: #999999;
}
.contact_pg .form_box .form-group .form-control::placeholder {
  color: #999999;
}

.mostCountry_sec .img_box {
  position: relative;
}
.mostCountry_sec .img_box .secImg {
  background-color: #f8f8f8;
  height: 780px;
}
.mostCountry_sec .img_box .country_box {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 35%;
  left: 55%;
}
.mostCountry_sec .img_box .country_box .flag_box {
  position: relative;
  width: 35px;
  height: 35px;
  margin-inline-end: 10px;
}
.mostCountry_sec .img_box .country_box .flag_box .flag {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.mostCountry_sec .img_box .country_box .flag_box::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  background-color: #66cb9f;
  position: absolute;
  bottom: 0;
  inset-inline-start: -3px;
  border-radius: 50%;
}

.fancybox-content {
    min-height: 80vh;
    min-width: 80vw;
}

/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  
  .top_nav .d-flex {
      display: block !important;
      justify-content: center !important;
      text-align: center;
  }
  
  .top_nav .d-flex.align-items-center.justify-content-end {
      display: flex !important;
      justify-content: center !important;
      margin-top: 10px;
      text-align: center;
  }
  
  .about_sec .inner .mission_box .p {
      font-size: 18px;
  }
  
  .about_sec .inner .mission_box {
      padding: 30px;
  }
  
  .statics_sec .bg {
      display: none;
  }
  
  .h1, h1 {
    font-size: 21px;
    }
    
    .feedback_sec .inner {
        padding: 30px;
    }
    
    .feedback_sec .inner .sec_head .title {
        font-size: 20px;
    }
    
    .feedback_sec .inner .sec_head .subtitle {
        font-size: 25px;
    }
    
    .feedback_sec .inner .feedback_item {
        margin: 10px 0;
    }
    
    .about_sec .inner .mission_box .title {
        font-size: 30px;
    }
    
    .about_sec .inner .vision_box .card-body .p {
        font-size: 20px;
    }
    
    .about_sec .inner .vision_box .card-body .title {
        font-size: 30px;
    }
  
}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir="ltr"] *:not(i),
html[dir=ltr] .header .txt_box .title{
    font-family: "Poppins", sans-serif;
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}
html[dir=ltr] .navs-container .navbar .nav-link,
html[dir=ltr] .butn {
    font-size: 14px;
}

html[dir=ltr] .navs-container .top_nav .mail_link {
    direction: rtl;
}

html[dir=ltr] .navs-container .navbar .has_dropdown .nav-link::after {
    top: 8px;
}

html[dir=ltr] .fa-arrow-right {
    transform: rotate(180deg);
}

html[dir=ltr] .files_pg .table thead th {
    font-size: 16px;
}

html[dir=ltr] .files_pg .table tbody td,
html[dir=ltr] .files_pg .table tbody td .p,
html[dir=ltr] .files_pg .table tbody td span {
    font-size: 14px;
}

/*# sourceMappingURL=style.css.map */

/* new style 14/12/2025  */
.nav-pills-st2 {
    position: relative;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    z-index: 10;
}

.nav-pills-st2 .nav-item {
    position: relative;
    flex-grow: 1;
    min-width: 200px;
}

.nav-pills-st2 .nav-item .nav-link {
    position: relative;
    background-color: transparent;
    color: #000;
    padding: 15px 30px;
    /* min-width: 250px; */
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.nav-pills-st2 .nav-item .nav-link.active {
    background-color: #F7F4ED;
    color: var(--secondary);
}

.pay_box {
    position: relative;
    border-radius: 20px;
    padding: 30px;
    background-color: #f9f9f9;
}

.pay_box .payment-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.pay_box .payment-imgs .form-check {
    position: relative;
    flex-grow: 1;
    padding: 0;
}

.pay_box .payment-imgs .form-check .form-check-input {
    display: none;
}

.pay_box .payment-imgs .form-check .form-check-label {
    display: block;
    cursor: pointer;
}

.pay_box .payment-imgs .form-check .form-check-input:checked ~ .form-check-label .pay-img {
    border-color: var(--primary);
    background-color: #13265022;
}

.pay_box .payment-imgs .pay-img {
    position: relative;
    height: 70px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #9993;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
}


.checks-custom {
    display: flex;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 20px;
}

.checks-custom .form-check {
    padding: 0;
}

.checks-custom .form-check .form-check-input {
    display: none;
}

.checks-custom .form-check .form-check-label {
    display: block;
    cursor: pointer;
    border: 1px solid #9993;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
}

.checks-custom .form-check .form-check-input:checked ~ .form-check-label {
    border-color: var(--primary);
    background-color: #13265022;
}
