@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: rb_font;
  src: url(../fonts/rb/regular.TTF);
}

body {
  font-family: rb_font;
  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;
}

.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 {
  bottom: 0;
}

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

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

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

.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: -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(--mainColor);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--mainColor);
  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: 1%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f105';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 1%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f104';
}

.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: 0;
  font-weight: bold;
}

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

.butn.sm_butn {
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.butn.sm_butn::after {
  border-radius: 50% !important;
}

.butn.primary_butn {
  color: #fff;
}

.butn.primary_butn::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 0px;
  background: var(--mainColor);
  background-size: 200% 200%;
  background-position: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-image: -webkit-gradient(linear, left bottom, right top, from(#E5C184), color-stop(#D4AE76), color-stop(#BC9461), color-stop(#C3A172), to(#CAAE81));
  background-image: linear-gradient(to right top, #E5C184, #D4AE76, #BC9461, #C3A172, #CAAE81);
}

.butn.border_butn::before {
  content: '';
  width: calc(100% - 7px);
  height: calc(100% + 14px);
  border: 1px solid var(--mainColor);
  position: absolute;
  top: -7px;
  left: -7px;
  border-radius: 0px;
  z-index: 1;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.butn:hover {
  color: #fff !important;
}

.butn:hover::after {
  background-position: 0%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.sec_title {
  font-size: 24px;
}

.sec_title .num::after {
  content: '';
  width: 80px;
  height: 1px;
  background-color: var(--mainColor);
  display: inline-block;
  margin: 0 10px;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.zr_navs_law_st1 .navbar .logo {
  width: 95px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_navs_law_st1 .navbar .nav-link {
  font-size: 18px;
  margin: 0 10px;
  color: #333;
}

.zr_navs_law_st1 .navbar .nav-link.active {
  color: var(--mainColor);
}

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

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

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

.zr_navs_law_st1 .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_law_st1 .navbar .navbar-toggler .navbar-toggler-icon::after, .zr_navs_law_st1 .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_law_st1 .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

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

.zr_footer_law_st1 {
  background-color: #202126;
  padding-top: 70px;
  position: relative;
}

.zr_footer_law_st1 .content {
  margin-bottom: 35px;
}

.zr_footer_law_st1 .content .logo {
  width: 90px;
  display: block;
  margin-bottom: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_footer_law_st1 .content .links a {
  color: #fff;
  -webkit-margin-end: 3vw;
          margin-inline-end: 3vw;
  font-size: 20px;
}

.zr_footer_law_st1 .content .form-group {
  position: relative;
}

.zr_footer_law_st1 .content .form-group .form-control {
  height: 60px !important;
  border-radius: 0;
}

.zr_footer_law_st1 .content .form-group .butn {
  height: 40px;
  position: absolute;
  left: 10px;
  top: 10px;
}

.zr_footer_law_st1 .foot {
  border-top: 1px solid #888;
}

.zr_footer_law_st1 .foot .p {
  font-size: 15px;
}

.zr_footer_law_st1 .foot .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;
  background-color: #fff;
  color: var(--mainColor);
  margin: 0 5px;
  border-radius: 50%;
  font-size: 14px;
}

.zr_footer_law_st1 .foot .social_links a:hover {
  background-color: var(--mainColor);
  color: #fff !important;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
/* --------------- zr_header_law_st1 --------------- */
.zr_header_law_st1 {
  background-image: -webkit-gradient(linear, left top, right top, from(#0D111A), color-stop(#333335), to(#1E1F24));
  background-image: linear-gradient(to right, #0D111A, #333335, #1E1F24);
}

/* --------------- zr_manager_law_st1 --------------- */
.zr_manager_law_st1 .txt_box {
  -webkit-box-shadow: 13px 16px 50px 0 #0001;
          box-shadow: 13px 16px 50px 0 #0001;
  background-color: #fff;
  padding: 110px 2vw 45px 2vw;
  position: relative;
  z-index: 5;
  top: 100px;
  margin-bottom: 100px;
}

.zr_manager_law_st1 .txt_box .logo {
  background-color: #f9f9f9;
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
}

.zr_manager_law_st1 .img {
  width: 57%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
}

@media screen and (max-width: 991px) {
  .zr_manager_law_st1 .txt_box {
    top: 0;
    margin-bottom: 0;
  }
  .zr_manager_law_st1 .img {
    width: 100%;
    position: relative;
  }
}

/* --------------- zr_services_law_st1 --------------- */
.zr_services_law_st1 {
  background-color: #F5F5F5;
}

.zr_services_law_st1 .service_card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 40px 45px;
  text-align: center;
  position: relative;
}

.zr_services_law_st1 .service_card .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.zr_services_law_st1 .service_card .title {
  margin-bottom: 10px;
  font-size: 22px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_services_law_st1 .service_card .data {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_services_law_st1 .service_card::after {
  content: '';
  background: url(../images/img-1.png) no-repeat center;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-filter: blur(10%);
          filter: blur(10%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_services_law_st1 .service_card::before {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: var(--mainColor);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 1;
}

.zr_services_law_st1 .service_card:hover::after {
  opacity: .2;
  height: 100%;
  -webkit-filter: blur(0%);
          filter: blur(0%);
}

.zr_services_law_st1 .service_card:hover::before {
  height: 100%;
  opacity: .8;
}

.zr_services_law_st1 .service_card:hover .title,
.zr_services_law_st1 .service_card:hover .data {
  color: #fff;
}

/* --------------- zr_work_law_st1 --------------- */
.zr_work_law_st1 .vid_box .title {
  font-size: 22px;
  font-weight: 600;
  color: #1D1D1B;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.zr_work_law_st1 .vid_box .arrow {
  margin: 0 10px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_work_law_st1 .vid_box .vid_link {
  width: 100px;
  height: 100px;
  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(--mainColor);
  color: #fff;
  font-size: 30px;
}

.zr_work_law_st1 .txt_box .ul {
  counter-reset: section;
  list-style-type: none;
}

.zr_work_law_st1 .txt_box .ul .li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.zr_work_law_st1 .txt_box .ul .li::before {
  counter-increment: section;
  content: "0" counter(section);
  width: 50px;
  height: 50px;
  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(--mainColor);
  color: #fff;
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.zr_work_law_st1::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  width: 65%;
  height: calc(100% - 170px);
  left: unset;
  top: unset;
}

@media screen and (max-width: 991px) {
  .zr_work_law_st1::before {
    width: 100%;
  }
  .zr_work_law_st1 .txt_box {
    padding: 20px;
    margin-top: 0 !important;
  }
}

/* --------------- zr_contact_num_law_st1 --------------- */
.zr_contact_num_law_st1 .data_box {
  border: 8px solid #CACACA;
  padding: 35px 25px;
  text-align: center;
  margin: 15px 0;
}

.zr_contact_num_law_st1 .data_box .logo {
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 15px auto;
  display: block;
}

.zr_contact_num_law_st1 .data_box .num {
  color: var(--mainColor);
  font-weight: 500;
  font-size: calc( 1vw + 35px);
}

.zr_contact_num_law_st1::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  height: calc(100% - 140px);
  top: 70px;
}

/* --------------- zr_blog_law_st1 --------------- */
.zr_blog_law_st1 .blog_card {
  background-color: #f5f5f5;
  position: relative;
}

.zr_blog_law_st1 .blog_card .img_box {
  height: 320px;
  position: relative;
}

.zr_blog_law_st1 .blog_card .img_box .categ_box {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  font-size: 22px;
  font-weight: bold;
}

.zr_blog_law_st1 .blog_card .img_box .categ_box .icon_box {
  width: 80px;
  height: 80px;
  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(--mainColor);
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.zr_blog_law_st1 .blog_card .img_box .categ_box .icon_box .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_blog_law_st1 .blog_card .card-body {
  padding: 1.5rem 1.5vw;
}

.zr_blog_law_st1 .blog_card .card-body .title {
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}

.zr_blog_law_st1 .blog_card .card-body .p {
  height: 51px;
  overflow: hidden;
  font-size: 15px;
}

.zr_blog_law_st1 .blog_card .card-body .more_butn {
  position: relative;
  font-size: 18px;
  color: var(--mainColor);
  font-weight: bold;
}

.zr_blog_law_st1 .blog_card .card-body .more_butn::before {
  content: '';
  width: 60px;
  height: 1px;
  background-color: var(--mainColor);
  display: inline-block;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.zr_blog_law_st1 .blog_swiper {
  overflow: hidden;
}

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

.zr_blog_law_st1 .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_blog_law_st1 .arrows .inner .swiper-button-next,
.zr_blog_law_st1 .arrows .inner .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin: 0 10px;
  background-color: var(--mainColor);
}

.zr_blog_law_st1 .arrows .inner .swiper-button-next::before,
.zr_blog_law_st1 .arrows .inner .swiper-button-prev::before {
  color: #fff;
}

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

/* --------------- zr_partners_law_st1 --------------- */
.zr_partners_law_st1 {
  padding: 50px 0;
}

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

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

.zr_partners_law_st1 .partners_swiper {
  overflow: hidden;
}

/* --------------- Section_Name --------------- */
/* --------------- Section_Name --------------- */
/**********************************************
    Start Edit pg_header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    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 */