@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  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;
}

/**********************************************
   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 {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .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;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          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 {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 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);
  -webkit-box-shadow: none;
          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;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .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: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  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%;
  -webkit-transform: translate(-50%, -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: #0005;
  display: none;
  -webkit-transition: all 0.5s ease;
  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%;
  -webkit-animation: loader 2s linear infinite;
  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%;
  -webkit-animation: loader 3s linear infinite;
  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%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  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;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floatingY {
  0% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
@keyframes floatingY {
  0% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}

.slide_ltr {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .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 {
  -webkit-transform: scale(1);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .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 {
  -webkit-transform: scale(1);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          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;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .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: .8rem 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 18px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: bold;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 40px;
  height: 40px;
}

.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: var(--primary);
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.gray_butn {
  background-color: #f5f5f5;
}

.butn.dark_butn {
  background-color: #1C1C1C;
  color: #fff;
}

.butn:hover {
  background-color: #165928;
  border: 1px solid #165928;
  color: #fff !important;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.d_light {
  display: block;
}

.d_dark {
  display: none;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.zr_navs_char_st1 .navbar {
  z-index: 9999;
}

.zr_navs_char_st1 .navbar.home_nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.zr_navs_char_st1 .navbar .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_navs_char_st1 .navbar .nav-link {
  font-size: 16px;
  color: #2F2F2F;
  margin: 0 7px;
  font-weight: 500;
  position: relative;
}

.zr_navs_char_st1 .navbar .nav-link.active {
  font-weight: bold;
  color: var(--primary) !important;
}

.zr_navs_char_st1 .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.zr_navs_char_st1 .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.zr_navs_char_st1 .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.zr_navs_char_st1 .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.zr_navs_char_st1 .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.zr_navs_char_st1 .navbar .navbar-toggler .navbar-toggler-icon::after, .zr_navs_char_st1 .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.zr_navs_char_st1 .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.zr_navs_char_st1 .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

@media screen and (max-width: 991px) {
  .zr_navs_char_st1 .navbar.home_nav {
    position: relative;
  }
}

.zr_footer_char_st1 .content {
  margin-bottom: 35px;
}

.zr_footer_char_st1 .content .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_footer_char_st1 .content .p {
  color: #2F2F2F;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.zr_footer_char_st1 .content .social_links a {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  border-radius: 50%;
}

.zr_footer_char_st1 .content .links a {
  display: block;
  margin-bottom: 15px;
  position: relative;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #2F2F2F;
}

.zr_footer_char_st1 .content .links a::before {
  content: '';
  width: 10px;
  height: 10px;
  background: url(../images/icons/left_arrows.svg) center no-repeat;
  background-size: contain;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
  position: absolute;
  right: 0;
  top: 8px;
}

.zr_footer_char_st1 .content .contact_items .item {
  position: relative;
  font-size: 16px;
  color: #1C1C1C;
  font-weight: 500;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zr_footer_char_st1 .content .contact_items .item .icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  border-radius: 50%;
}

.zr_footer_char_st1 .copyright_p {
  border-top: 1px solid #ddd;
}

.zr_footer_char_st1 .copyright_p .alyom_logo {
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 7px;
}

@media screen and (max-width: 991px) {
  .zr_footer_char_st1 .zr_footer_char_st1 .copyright_p {
    font-size: 10px;
  }
  .zr_footer_char_st1 .zr_footer_char_st1 .copyright_p .alyom_logo {
    width: 45px;
  }
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.zr_header_char_st1 {
  padding-top: 150px;
  background-color: #F4FAF6;
}

.zr_header_char_st1 .text_box {
  padding: 2vw;
}

.zr_header_char_st1 .text_box .subtitle {
  font-size: 15px;
}

.zr_header_char_st1 .text_box .title {
  font-size: 36px;
  font-weight: 800;
}

.zr_header_char_st1 .text_box .p {
  text-align: justify;
  color: #1C1C1C;
  font-size: 16px;
  font-weight: 500;
}

.zr_header_char_st1 .box .img_box {
  background-color: #fff;
  height: 455px;
  position: relative;
  overflow: hidden;
  border-radius: 0  0 100px 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_header_char_st1 .box .img_box .img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.zr_header_char_st1 .box .img_box::before, .zr_header_char_st1 .box .img_box::after {
  position: absolute;
  content: '';
  background-size: contain !important;
}

.zr_header_char_st1 .box .img_box::before {
  width: 260px;
  height: 260px;
  background: url(../images/vector1_zr_header_char_st1.png) center no-repeat;
  top: 50px;
  right: 15%;
}

.zr_header_char_st1 .box .img_box::after {
  width: 35px;
  height: 35px;
  background: url(../images/vector2_zr_header_char_st1.png) center no-repeat;
  top: 60px;
  left: 15%;
}

.zr_header_char_st1 .box .swiper-slide-active .img_box {
  border-radius: 0 100px 0 0;
}

.zr_header_char_st1 .box .swiper-slide-active .img_box::before {
  -webkit-animation: floatingY 1s infinite alternate linear;
          animation: floatingY 1s infinite alternate linear;
}

.zr_header_char_st1 .box .swiper-slide-active .img_box::after {
  -webkit-animation: rotating 1s infinite alternate linear;
          animation: rotating 1s infinite alternate linear;
}

.zr_header_char_st1 .vector {
  position: absolute;
  right: 38%;
  bottom: 16%;
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_header_char_st1::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #E1F0E5;
  width: 51%;
  right: unset;
}

@media screen and (max-width: 991px) {
  .zr_header_char_st1 .zr_header_char_st1 {
    padding-top: 70px;
  }
  .zr_header_char_st1 .zr_header_char_st1 .text_box {
    margin-bottom: 30px !important;
  }
  .zr_header_char_st1 .zr_header_char_st1 .box .img_box {
    background-color: #fff;
    height: 355px;
  }
  .zr_header_char_st1 .zr_header_char_st1 .box .img_box .img {
    height: 300px;
  }
}

.zr_aboutSec_char_st1 .img_box {
  height: 425px;
  position: relative;
}

.zr_aboutSec_char_st1 .img_box .sec-img {
  position: absolute;
}

.zr_aboutSec_char_st1 .img_box .sec-img.img1 {
  width: 75%;
  height: 300px;
  border-radius: 15px 15px 15px 0;
  right: 0;
  top: 0;
}

.zr_aboutSec_char_st1 .img_box .sec-img.img2 {
  width: 23%;
  height: 115px;
  border-radius: 15px 15px 0 15px;
  left: 0%;
  top: 185px;
}

.zr_aboutSec_char_st1 .img_box .sec-img.img3 {
  width: 23%;
  height: 115px;
  border-radius: 0 15px 15px  15px;
  right: 52%;
  bottom: 0;
}

.zr_aboutSec_char_st1 .img_box .circle1 {
  position: absolute;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  right: -8%;
  bottom: 21%;
}

.zr_aboutSec_char_st1 .img_box .circle2 {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  position: absolute;
  top: 27%;
  left: 13%;
}

.zr_aboutSec_char_st1 .img_box::before {
  content: '';
  display: block;
  width: 11.8%;
  height: 60px;
  border-radius: 15px 0  15px  15px;
  background-color: var(--primary);
  position: absolute;
  bottom: 54px;
  left: 11.5%;
}

.zr_aboutSec_char_st1 .img_box::after {
  content: '';
  background: url(../images/icons/star-1.svg) center no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 17%;
  left: 3%;
  background-size: contain;
}

.zr_aboutSec_char_st1 .txt_box {
  padding: 2vw;
}

.zr_aboutSec_char_st1 .txt_box .p {
  line-height: 2;
  font-size: 14px;
  text-align: justify;
  color: #363636;
}

.zr_aboutSec_char_st1 .statics_inner {
  margin-top: 100px;
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 3px 7px 13px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 3px 7px 13px 0 rgba(0, 0, 0, 0.09);
}

.zr_aboutSec_char_st1 .statics_inner .item {
  margin: 10px 0;
  text-align: center;
  color: #1A1A1A;
}

.zr_progsSec_char_st1 .prog_card {
  background-color: #fff;
  border-radius: 15px;
}

.zr_progsSec_char_st1 .prog_card .card-body {
  position: relative;
  z-index: 5;
  padding: 2rem;
  text-align: center;
}

.zr_progsSec_char_st1 .prog_card .card-body .title {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zr_progsSec_char_st1 .prog_card .card-body .p {
  font-size: 13px;
  text-align: center;
  height: 39px;
  overflow: hidden;
}

.zr_progsSec_char_st1 .prog_card .img {
  position: relative;
  z-index: 5;
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.zr_progsSec_char_st1 .prog_card .more_butn {
  display: block;
  text-align: center;
  padding: 20px;
  border-top: 1px dashed #ddd;
  margin-top: 20px;
  font-weight: bold;
  font-size: 17px;
}

.zr_progsSec_char_st1 .prog_card .more_butn .icon {
  width: 13px;
  height: 13px;
}

.zr_progsSec_char_st1 .prog_card::before, .zr_progsSec_char_st1 .prog_card::after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  background-size: contain !important;
  top: 15px;
  right: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_progsSec_char_st1 .prog_card::before {
  background: url(../images/progCard_vector_1.svg) no-repeat center;
}

.zr_progsSec_char_st1 .prog_card::after {
  background: url(../images/progCard_vector_2.svg) no-repeat center;
  opacity: 0;
}

.zr_progsSec_char_st1 .prog_card:hover::after {
  opacity: 1;
}

.zr_progsSec_char_st1::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, right top, left top, from(#299446), to(#EF8B33));
  background-image: linear-gradient(to left, #299446, #EF8B33);
  opacity: .08;
}

.zr_testimonialsSec_char_st1 {
  background-color: #F6F6F6;
}

.zr_testimonialsSec_char_st1 .testimonial_card {
  background-color: #fff;
  border-radius: 15px;
  padding: 60px 40px;
  position: relative;
  margin-bottom: 40px;
}

.zr_testimonialsSec_char_st1 .testimonial_card .icon_box {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

.zr_testimonialsSec_char_st1 .testimonial_card .icon_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_testimonialsSec_char_st1 .testimonial_card .card-body {
  text-align: center;
}

.zr_testimonialsSec_char_st1 .testimonial_card .card-body .p {
  font-size: 14px;
  font-weight: 500;
  color: #626563;
  line-height: 2;
  height: 112px;
  overflow: hidden;
}

.zr_testimonialsSec_char_st1 .testimonial_card .avatar {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 2px solid #F6F6F6;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}

.zr_testimonialsSec_char_st1 .testimonial_card::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #EF8B33;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_testimonialsSec_char_st1 .testimonial_card::after {
  content: '';
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 15px;
  border: 2px solid #EF8B33;
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.zr_testimonialsSec_char_st1 .testimonial_card:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.zr_testimonialsSec_char_st1 .testimonial_card:hover::after {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.zr_newsletterSec_char_st1 {
  background-color: var(--primary);
}

.zr_newsletterSec_char_st1 .icon {
  width: 90px;
  display: block;
  margin: 10px auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_newsletterSec_char_st1 .form-group .form-control {
  height: 70px !important;
  border-radius: 15px;
}

.zr_newsletterSec_char_st1 .form-group .submit_butn {
  position: absolute;
  height: 60px;
  top: 5px;
  left: 5px;
}

.zr_newsletterSec_char_st1 .vector {
  position: absolute;
  left: 10%;
  bottom: 20%;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit dark_theme
**********************************************/
.dark_theme .d_light {
  display: none;
}

.dark_theme .d_dark {
  display: block;
}

.dark_theme body,
.dark_theme .zr_progsSec_char_st1 .prog_card,
.dark_theme .zr_testimonialsSec_char_st1 .testimonial_card {
  background-color: #1a1a1a;
}

.dark_theme .zr_header_char_st1,
.dark_theme .zr_testimonialsSec_char_st1 {
  background-color: #202020;
}

.dark_theme .zr_header_char_st1::before {
  background-color: #303030;
}

.dark_theme .title,
.dark_theme .subtitle,
.dark_theme .zr_aboutSec_char_st1 .statics_inner .item,
.dark_theme .zr_progsSec_char_st1 .prog_card .more_butn,
.dark_theme .zr_testimonialsSec_char_st1 .testimonial_card .card-body h5 {
  color: #fff !important;
}

.dark_theme .navs-container .navbar .nav-link,
.dark_theme .p, .dark_theme p,
.dark_theme .zr_header_char_st1 .text_box .p,
.dark_theme .zr_footer_char_st1 .content .links a,
.dark_theme .zr_footer_char_st1 .content .contact_items .item {
  color: #eee !important;
}

.dark_theme .zr_progsSec_char_st1 .prog_card::before,
.dark_theme .zr_progsSec_char_st1 .prog_card::after {
  opacity: .03;
}

.themeToggler {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 9px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #505050;
  background-color: #202020;
  color: #f5f5f5;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
  background: #000 url("https://i.ibb.co/FxzBYR9/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #eee;
          box-shadow: 0 0 1px #eee;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  content: "";
  background: #f5f5f5 url("https://i.ibb.co/7JfqXxB/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border: 1px solid #eee;
  color: var(--secondary);
}

.themeToggler .slider.round {
  border-radius: 35px;
}

.themeToggler .slider.round:before {
  border-radius: 50%;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */