@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--mainColor);
  color: #fff;
}

*::selection {
  background-color: var(--mainColor);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #eee;
}

*::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 8px;
}

*,
* button:focus {
  outline: 0;
}

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

.mainColor {
  color: var(--mainColor) !important;
}

.subColor {
  color: var(--subColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

/* ==================== global style ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

a {
  color: #000;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #999;
}

a:focus {
  outline: 0;
}

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

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

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

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p,
.p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  -webkit-box-shadow: 15px 15px 30px #0001;
          box-shadow: 15px 15px 30px #0001;
}

.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

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

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;
}

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(--mainColor) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form textarea {
  resize: none;
}

form .form-check-input {
  height: 1em !important;
}

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

.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;
}

.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

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

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

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/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: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/**********************************************
   Start Loader
**********************************************/
/**********************************************
    Start Public Style
**********************************************/
.swiper-container .swiper-pagination,
.zr_header_char_st5 .swiper-pagination,
.zr_partner_char_st5 .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.zr_header_char_st5 .swiper-pagination .swiper-pagination-bullet,
.zr_partner_char_st5 .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 3px;
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.zr_header_char_st5 .swiper-pagination .swiper-pagination-bullet-active,
.zr_partner_char_st5 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--mainColor);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.zr_header_char_st5 .swiper-button-next,
.zr_header_char_st5 .swiper-button-prev,
.zr_partner_char_st5 .swiper-button-next,
.zr_partner_char_st5 .swiper-button-prev {
  background-image: unset;
  width: 60px;
  height: 50px;
  background-image: unset;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after,
.zr_header_char_st5 .swiper-button-next::after,
.zr_header_char_st5 .swiper-button-prev::after,
.zr_partner_char_st5 .swiper-button-next::after,
.zr_partner_char_st5 .swiper-button-prev::after {
  display: none;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.zr_header_char_st5 .swiper-button-next,
.zr_header_char_st5 .swiper-container-rtl .swiper-button-prev,
.zr_partner_char_st5 .swiper-button-next,
.zr_partner_char_st5 .swiper-container-rtl .swiper-button-prev {
  right: 1%;
  left: auto;
  background: url(../images/swiper_arrow_right.svg);
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.zr_header_char_st5 .swiper-button-prev,
.zr_header_char_st5 .swiper-container-rtl .swiper-button-next,
.zr_partner_char_st5 .swiper-button-prev,
.zr_partner_char_st5 .swiper-container-rtl .swiper-button-next {
  left: 1%;
  right: auto;
  background: url(../images/swiper_arrow_left.svg);
}

.butn {
  position: relative;
  padding: .7rem 1.7rem;
  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: 14px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-weight: bold;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.primary_butn {
  background-color: var(--mainColor);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  background-color: transparent;
}

.butn.secondary_butn {
  background-color: var(--subColor);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--subColor);
  color: var(--subColor);
  background-color: transparent;
}

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #333;
}

.butn:hover {
  background-color: #ba6a60;
  border-color: #ba6a60;
  color: #fff !important;
}

.title_br {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 800;
  color: var(--subColor);
}

.title_br::after, .title_br::before {
  content: '';
  width: 35px;
  height: 1px;
  background-color: var(--mainColor);
  display: inline-block;
  margin: 0 10px;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.zr_navs_char_st5.home_nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.zr_navs_char_st5 .navbar .logo {
  width: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_navs_char_st5 .navbar .nav-link {
  margin: 0 10px;
  font-weight: 400;
  font-size: 18px;
  color: #292929;
}

.zr_navs_char_st5 .navbar .nav-link.active {
  color: var(--mainColor);
  font-weight: bold;
}

.zr_navs_char_st5 .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.zr_navs_char_st5 .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_st5 .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.zr_navs_char_st5 .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.zr_navs_char_st5 .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--mainColor);
  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_st5 .navbar .navbar-toggler .navbar-toggler-icon::after, .zr_navs_char_st5 .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--mainColor);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.zr_navs_char_st5 .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.zr_navs_char_st5 .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.zr_footer_char_st5 .logo {
  width: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_footer_char_st5 .p {
  margin: 10px 0;
}

.zr_footer_char_st5 .social_links a {
  width: 40px;
  height: 40px;
  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 #686464;
  color: #686464;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 14px;
}

.zr_footer_char_st5 .social_links a:hover {
  background-color: var(--mainColor);
  color: #fff;
  border-color: var(--mainColor);
}

/**********************************************
    Start Edit Home Page 
**********************************************/
/* --------------- zr_header_char_st5 --------------- */
.zr_header_char_st5 {
  padding: 200px 0 100px 0;
}

.zr_header_char_st5 .img_box {
  position: relative;
  height: 650px;
}

.zr_header_char_st5 .img_box img {
  position: absolute;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 8px solid #fff;
}

.zr_header_char_st5 .img_box img.img1 {
  width: 150px;
  height: 150px;
  top: 0;
  right: 16%;
}

.zr_header_char_st5 .img_box img.img2 {
  width: 340px;
  height: 340px;
  top: 10%;
  left: 0%;
  z-index: 2;
}

.zr_header_char_st5 .img_box img.img3 {
  width: 470px;
  height: 470px;
  bottom: 0;
  right: 0%;
}

.zr_header_char_st5 .txt_box .title {
  font-size: 50px;
}

.zr_header_char_st5 .txt_box .p {
  font-size: 19px;
  color: #292929;
  line-height: 2;
}

.zr_header_char_st5 .bg {
  -o-object-position: bottom;
     object-position: bottom;
}

.zr_header_char_st5 .headerSwiper {
  overflow: hidden;
}

/* --------------- zr_about_char_st5 --------------- */
.zr_about_char_st5 .txt_box .p {
  color: #1E1E1E;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.zr_about_char_st5 .img_box {
  height: 500px;
  position: relative;
  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;
}

.zr_about_char_st5 .img_box .img {
  height: 350px;
}

.zr_about_char_st5 .img_box::before {
  content: '';
  width: 100%;
  height: 500px;
  background: url(../images/vector_zr_about_char_st5.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

/* --------------- zr_blog_char_st5 --------------- */
.zr_blog_char_st5 .blog_card {
  background-color: var(--mainColor);
  border-radius: 15px;
  padding: 130px 35px;
  position: relative;
  text-align: center;
  height: 100%;
}

.zr_blog_char_st5 .blog_card .p {
  line-height: 2;
}

.zr_blog_char_st5 .blog_card::after, .zr_blog_char_st5 .blog_card::before {
  content: '';
  background: url(../images/vector_zr_blog_char_st5.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 95px;
  height: 115px;
}

.zr_blog_char_st5 .blog_card::before {
  top: 0;
  right: 0;
}

.zr_blog_char_st5 .blog_card::after {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.zr_blog_char_st5 .blog_card_swiper {
  overflow: hidden;
}

.zr_blog_char_st5 .blog_card_swiper .swiper-pagination-bullet-active {
  background-color: #fff;
}

.zr_blog_char_st5 img {
  border-radius: 15px;
}

.zr_blog_char_st5 img.lg_img {
  height: 590px;
}

.zr_blog_char_st5 img.sm_img {
  height: 295px;
}

/* --------------- zr_statics_char_st5 --------------- */
.zr_statics_char_st5 .txt_box {
  border-left: 1px solid #939393;
}

.zr_statics_char_st5 .statics_box .item {
  text-align: center;
  margin: 15px 0;
}

.zr_statics_char_st5 .statics_box .item .counter {
  margin-bottom: 10px;
}

/* --------------- zr_quote_char_st5 --------------- */
.zr_quote_char_st5 {
  height: 100vh;
}

.zr_quote_char_st5 .txt_box {
  margin-top: 70px;
}

.zr_quote_char_st5 .txt_box .title_br::after, .zr_quote_char_st5 .txt_box .title_br::before {
  background-color: #fff;
}

.zr_quote_char_st5 img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.zr_quote_char_st5 img.img1 {
  top: 50px;
  right: 0;
  width: 70%;
  height: 80%;
}

.zr_quote_char_st5 img.img2 {
  width: 45%;
  height: 330px;
  border-radius: 15px;
  bottom: 0;
  left: 20%;
  z-index: 4;
}

.zr_quote_char_st5 img.img3 {
  z-index: 3;
  width: 22%;
  left: 15%;
  top: 14%;
}

.zr_quote_char_st5::after {
  content: '';
  width: 30%;
  height: 70%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FAF9EE;
}

/* --------------- zr_partner_char_st5 --------------- */
.zr_partner_char_st5 .partnerLogo {
  max-width: 85%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_partner_char_st5 .partnerLogo:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.zr_partner_char_st5 .partner_swiper {
  overflow: hidden;
}

.zr_partner_char_st5 .arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.zr_partner_char_st5 .arrows .inner {
  padding: 0 2vw;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
  -webkit-margin-end: 10%;
          margin-inline-end: 10%;
}

.zr_partner_char_st5 .arrows .inner .swiper-button-next,
.zr_partner_char_st5 .arrows .inner .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin: 0 10px;
}

.zr_partner_char_st5 .arrows::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #939393;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* --------------- zr_contact_char_st5 --------------- */
.zr_contact_char_st5 .form_box {
  padding: 40px 35px 70px 35px;
  background-color: var(--mainColor);
  position: relative;
  z-index: 8;
}

.zr_contact_char_st5 .form_box .title_br::after, .zr_contact_char_st5 .form_box .title_br::before {
  background-color: #fff;
}

.zr_contact_char_st5 .form_box .form-group {
  margin-bottom: 1.5rem;
}

.zr_contact_char_st5 .form_box .form-group .form-control {
  border-radius: 35px;
  background-color: #fff;
  border-color: #fff;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
}

.zr_contact_char_st5 .form_box .form-group .form-control::-webkit-input-placeholder {
  color: #6B6B6B;
}

.zr_contact_char_st5 .form_box .form-group .form-control:-ms-input-placeholder {
  color: #6B6B6B;
}

.zr_contact_char_st5 .form_box .form-group .form-control::-ms-input-placeholder {
  color: #6B6B6B;
}

.zr_contact_char_st5 .form_box .form-group .form-control::placeholder {
  color: #6B6B6B;
}

.zr_contact_char_st5 .form_box .form-group textarea {
  padding-top: 15px;
}

.zr_contact_char_st5 .form_box .form-group .icon {
  color: var(--mainColor);
  position: absolute;
  top: 17px;
  right: 15px;
}

.zr_contact_char_st5 .form_box .butn {
  width: 150px;
}

.zr_contact_char_st5 .form_box::before {
  content: '';
  background: url(../images/vector_zr_contact_char_st5.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 95px;
  height: 115px;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.zr_contact_char_st5 .social_links {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 25px;
  color: #686464;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: absolute;
  top: 70px;
  z-index: 99;
  width: 115px;
  height: calc(100% - 140px);
  font-size: 22px;
}

.zr_contact_char_st5 .social_links a:hover {
  color: var(--mainColor);
}

.zr_contact_char_st5 .map_box {
  height: 580px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* --------------- Section_Name --------------- */
/* --------------- Section_Name --------------- */
/**********************************************
    Start Edit pg_header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .zr_navs_char_st5.home_nav {
    position: relative;
  }
  .zr_header_char_st5 {
    padding: 70px 0;
  }
  .zr_header_char_st5 .txt_box .butn {
    font-size: 12px;
    padding: 0.8rem 0.8rem;
  }
  .zr_header_char_st5 .txt_box .vid_butn {
    font-size: 12px;
  }
  .zr_header_char_st5 .img_box {
    height: 450px;
  }
  .zr_header_char_st5 .img_box img.img2 {
    width: 200px;
    height: 200px;
  }
  .zr_header_char_st5 .img_box img.img3 {
    width: 300px;
    height: 300px;
  }
  .zr_about_char_st5 .txt_box .butn {
    font-size: 12px;
    padding: 0.8rem 0.8rem;
  }
  .zr_about_char_st5 .txt_box .vid_butn {
    font-size: 12px;
  }
  .zr_blog_char_st5 img {
    height: 250px !important;
  }
  .zr_statics_char_st5 .txt_box {
    border-left: none;
    padding-bottom: 25px;
  }
  .zr_quote_char_st5 img.img1 {
    width: 100%;
  }
  .zr_quote_char_st5 img.img2 {
    width: 80%;
    height: 230px;
    left: 5%;
  }
  .zr_quote_char_st5 img.img3 {
    display: none;
  }
  .zr_quote_char_st5::after {
    opacity: 0;
  }
  .zr_contact_char_st5 .social_links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: unset;
    bottom: 14px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-shadow: 3px 6px 10px 0 #0001;
            box-shadow: 3px 6px 10px 0 #0001;
  }
  .zr_footer_char_st5 .logo {
    margin: 0 auto 15px auto;
  }
  .zr_footer_char_st5 .p {
    margin: 15px 0 25px 0;
    font-size: 12px;
  }
  .zr_footer_char_st5 .social_links {
    width: 100%;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */