/* _____ Import files _____ */
@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* _____ style all rules _____ */
:root {
  --primary01: #0c5adb;
  --primary02: #5580ff;
  --primary03: #081158;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  font-weight: 500;
}

/* lang */
.lang-menu {
  position: relative;
}
.lang-menu:hover .lang-dropdown {
  display: block;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 140px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
  border-radius: 5px;
  padding: 5px 0;
}
.lang-dropdown li a {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
}
.lang-dropdown li a:hover {
  background: #f5f5f5;
}
/* end lang */

.text-white {
  color: #fff;
}

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

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

ul {
  list-style-type: none;
}

a {
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
}

p {
  line-height: 1.5;
}

img {
  vertical-align: middle;
}

.img-fluid {
  max-width: 100%;
}

.position-relative {
  position: relative;
}

.btn {
  width: fit-content;
  padding: 12px 30px;
  color: #fff;
  font-family: "Poppins", serif !important; /* edit */
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 12px;
}

.btn-primary {
  background: var(--primary01);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s linear;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  width: 100%;
  height: 100%;
  background-color: rgba(17, 43, 241, 0.938);
  transform: scaleX(0);
  transform-origin: left;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-outline-primary {
  color: var(--primary03);
}

.btn-outline-primary:hover {
  background-color: var(--primary03);
  color: #fff;
}

.main-title h3 {
  text-transform: capitalize;
  font-size: 35px;
  font-weight: 500;
  color: var(--primary03);
}

@media screen and (max-width: 576px) {
  .main-title h3 {
      font-size: 20px;
  }
}

.main-title h3:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  content: "";
  background-color: var(--primary01);
}

.section {
  padding: 40px 0;
}

.text-white {
  color: #fff;
}

.hero-wrap {
  background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
      url("{{asset($slider->cover)}}") center /cover fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wrap h2 {
  font-size: 30px;
}

.overflow-hidden {
  overflow: hidden;
}
.up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
  line-height: 44px;
  cursor: pointer;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  z-index: 12;
  transform: translateY(-200px);
  background-color: var(--primary01);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
.up.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
a.whats {
  background: #0ba98f;
  text-align: center;
  line-height: 42px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 4px 10px 0 #00000085;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

a.whats::before {
  content: attr(data-msg);
  position: absolute;
  top: 0;
  left: 140%;
  bottom: 0;
  background-color: #212529;
  border-radius: 5px;
  color: #fff;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
a.whats::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #212529;
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

a.whats:hover::before,
a.whats:hover::after {
  opacity: 1;
  visibility: visible;
}


/* _____ start style header area _____ */
.header-area {
  position: absolute;
  width: 100%;
  z-index: 99;
  top: 10px;
  transition: 350ms ease-in-out;
}

@media screen and (min-width: 992px) {
  .header-area .container {
      border-radius: 4px;
      left: 0;
      right: 0;
      padding: 10px 15px;
      background-color: #fff;
  }
}

@media screen and (max-width: 991px) {
  .header-area {
      top: 0;
      border-radius: 0;
      left: 0;
      right: 0;
      padding: 10px 15px;
      background-color: #fff;
  }
}

@media screen and (max-width: 576px) {
  .header-area {
      top: 0;
      border-radius: 0;
      background: #fff !important;
  }
}

.header-area.scrolled {
  margin-top: -130px;
  padding: 0;
  transition: .3s all ease-out;
}

.header-area.sticky {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}

.header-area .logo {
  max-width: 70px;
}

@media screen and (max-width: 768px) {
  .header-area .logo {
      max-width: 60px;
  }
}

.header-area .bars {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}

.header-area .bars span {
  display: block;
  margin-bottom: 7px;
  width: 26px;
  height: 2px;
  transition: 150ms linear;
  background-color: #000;
}

.header-area .bars span:last-of-type {
  margin-bottom: 0;
}

.header-area .bars.active span:first-child {
  transform: translateY(9px) rotate(135deg);
}

.header-area .bars.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100px);
}

.header-area .bars.active span:last-of-type {
  transform: translateY(-9px) rotate(-135deg);
  margin-bottom: 0;
}

.header-area .navigation li a {
  font-size: 15px;
  padding: 10px 13px;
  display: inline-block;
  color: #000;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.header-area .navigation li:hover>a,
.header-area .navigation li a.active,
.site-mobile ul li a:hover,
.site-mobile ul li a.active {
  color: var(--primary01);
}

.header-area .navigation li ul.dropdown {
  min-width: 250px;
  background-color: #fff;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
  position: absolute;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

.header-area .navigation li ul.dropdown li {
  margin-left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-area .navigation li:hover ul.dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* _____ end style header area _____ */

/* _____ style site mobile _____ */
.site-mobile {
  background-color: #fff;
  position: fixed;
  width: 300px;
  right: -100%;
  top: 0;
  opacity: 0;
  height: 100%;
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transition: 250ms linear;
  overflow: hidden;
  z-index: 100;
}

.site-mobile.active {
  right: 0;
  opacity: 1;
}

.mobile-close {
  position: absolute;
  right: 20px;
  top: 0;
  cursor: pointer;
}

.mobile-close span {
  font-size: 40px;
  color: #000 !important;
  opacity: 1;
}

.site-mobile ul {
  padding: 0 40px;
}

.site-mobile ul li a {
  padding: 5px 0;
  color: #212529;
  margin: 3px 0;
  display: block !important;
}

.site-mobile ul li a .down {
  width: 36px;
  height: 36px;
  font-size: 11px;
  border-radius: 50%;
  border: 1px solid #f8f9fa;
  text-align: center;
  line-height: 36px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: 0.3s linear;
}

.site-mobile ul ul {
  padding: 0;
  transition: 0.3s linear;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: top center;
  max-height: 0;
  overflow: hidden;
}

.site-mobile ul li.active>ul {
  transform: scaleY(1);
  max-height: 172px;
  overflow: visible;
}

.site-mobile ul li.active .down {
  transform: rotate(180deg);
}

.site-mobile ul ul li a {
  padding-left: 20px;
  font-size: 13px;
  color: #777;
  display: block !important;
}

.site-mobile ul a.btn {
  width: fit-content;
}

.site-mobile ul li.active>a {
  color: var(--primary01);
}

/* _____ end style site mobile _____ */

/* _____ start style hero-section _____ */
.hero-section {
  padding-top: 9rem;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(5, 0, 0, 0.6)), url(../images/landing-page.webp) fixed center / cover;
  z-index: 1;
  display: flex;
  align-items: center;
}

.modal-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .9);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: .7s linear;
}
.modal-video.active {
  opacity: 1;
  visibility: visible;
}
.modal-video span.close {
  position: absolute;
  right: 45px;
  top: 15px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 444;
  width: 400px;
}

.hero-section .hero-desc h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4; /* edit */
}

.hero-section .hero-desc p {
  color: #ccc;
  text-align: justify; /* edit */
}

.hero-section .hero-desc a.btn-video {
  background: #fff;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  position: relative;
  margin-left: 16px;
  box-shadow: 0;
  color: var(--primary01);
  animation: shadowThrob 1s linear infinite;
}

@keyframes shadowThrob {
  0% {
      box-shadow:
          0 0 0 0 rgba(255, 255, 255, 0.03),
          0 0 0 10px rgba(255, 255, 255, 0.03),
          0 0 0 20px rgba(255, 255, 255, 0.09);
  }

  100% {
      box-shadow:
          0 0 0 10px rgba(255, 255, 255, 0.03),
          0 0 0 20px rgba(255, 255, 255, 0.09),
          0 0 0 30px rgba(255, 255, 255, 0)
  }
}

@media screen and (max-width: 992px) {
  .hero-section .hero-desc h3 {
      font-size: 30px;
  }
}

/* _____ end style hero-section _____ */

/* _____ start style service-img _____ */
.services-parent .service-img {
  padding: 25px 15px;
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 20px;
  transition: 250ms linear;
  box-shadow: 0 0 50px 10px rgba(132, 144, 255, 0.2);
  position: relative;
}

.services-parent .service-img img {
  transition: 250ms linear;
}

.services-parent .service-img:hover,
.services-parent .service-img.active {
  border: 1px solid var(--primary01);
  box-shadow: 0 0 10px 0 rgba(132, 144, 255, 0.2);
}

.service-details {
  display: none;
}

.service-details.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

.service-details h3 {
  font-size: 28px;
  font-weight: 400;
}

.service-details p {
  color: #444;
  font-size: 14px;
  text-align: justify;
}

/* _____ end style service-img _____ */

/* _____ start style about _____ */

.about h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary03);
}

@media screen and (max-width: 576px) {
  .about h2 {
      font-size: 30px;
  }
}

.about p {
  color: #333;
  text-align: justify;
}

/* _____ end style about _____ */

/* _____ start style projects _____ */
.projects-inner a {
  padding: 7px 15px;
  background: var(--primary02);
  color: #fff;
  position: relative;
  border-radius: 4px;
  margin-right: 10px;
}

.projects-inner a.active,
.projects-inner a:hover {
  background: var(--primary01);
}

.projects-inner a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  left: 50%;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary01) transparent transparent transparent;
}

.projects-parent .projects img {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
}

.overlay {
  position: relative;
}

.projects-parent .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.projects-parent .overlay:hover::before {
  opacity: 1;
  visibility: visible;
}

.projects-parent .overlay .overlay-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.projects-parent .overlay .overlay-inner a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 100px;
  border: 2px solid #fff;
  text-align: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.overlay:hover .overlay-inner a {
  opacity: 1;
  visibility: visible;
}

.projects-parent .overlay .overlay-inner a::before {
  content: "+";
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.15s ease-in-out;
}

.projects-parent .overlay .overlay-inner a::after {
  content: attr(data-to);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transition: 0.25s ease-in-out;
}

.projects-parent .overlay .overlay-inner a:hover::before {
  opacity: 0;
}

.projects-parent .overlay .overlay-inner a:hover::after {
  opacity: 1;
}

.projects-parent .overlay .overlay-inner a:hover {
  width: 130px;
  /*font-family: "Poppins", serif;*/
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 12px;
  background-color: var(--primary02);
  border: 2px solid var(--primary02);
}

.projects-parent .overlay::before .overlay-inner a {
  opacity: 1;
  visibility: visible;
}

/* _____ end style projects _____ */
/* _____ start style counter _____ */
.counter-section {
  padding: 100px 0;
  background-color: #f3f7fd;
}

@media screen and (max-width: 576px) {
  .counter-section {
      padding: 30px 0;
  }
}

.counter-section img {
  width: 54px;
}

.counter-section h2 {
  font-size: 45px;
  font-weight: 200;
}

/* _____ end style counter _____ */
/* _____ start style forms _____ */
.forms form input,
.forms form textarea,
.forms form select {
  width: 100%;
  color: var(--primary03);
  padding: 15px;
  border: 1px solid #ced4da;
  margin-bottom: 15px;
  /*font-family: "Poppins", sans-serif;*/
  outline: none;
  transition: 100ms linear;
  margin-bottom: 20px;
  font-size: 12px;
}

.forms form textarea {
  height: 150px;
  resize: vertical;
}

.forms form input:focus,
.forms form textarea:focus {
  box-shadow: rgba(85, 128, 255) 0px 0px 5px;
}

.forms form .errorInp {
  color: #f00;
  margin-bottom: 15px;
  display: none;
  font-size: 12px;
  font-family: "poppins", sans-serif;
}

.forms form .errorInp.active {
  display: block;
}

/* _____ end style forms _____ */

/* _____ start style footer-area _____ */
.footer-area {
  background: #000 url(../images/footer.svg);
}

.counter-section {
  background: #0c5adb url(../images/counter.png) center center / cover fixed;
}

footer.footer-area h3 {
  font-size: 18px;
}

footer.footer-area .social-icons a {
  display: inline-block;
  color: #fff;
  margin-right: 2px;
  background-color: #111;
  font-size: 12px;
  transition: 150ms linear;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
}

footer.footer-area .social-icons a:first-child {
  background-color: #3b5998;
}

footer.footer-area .social-icons a:nth-child(2) {
  background-color: #00aced;
}

footer.footer-area .social-icons a:nth-child(3) {
  background-color: #39c;
}

footer.footer-area .social-icons a:nth-child(4) {
  background-color: #cd201f;
}

footer.footer-area .social-icons a:nth-child(5) {
  background-color: #0a66c2;
}

footer.footer-area .links li {
  margin-bottom: 15px;
}

footer.footer-area .links li a {
  color: #fff;
}

footer.footer-area .address li:not(:last-child) {
  margin-bottom: 25px;
}

footer.footer-area .address a {
  color: #fff;
}

footer.footer-area p.copy {
  /*font-family: "poppins", sans-serif;*/
  font-size: 12px;
}

footer.footer-area p.copy a {
  color: var(--primary02);
}

/* _____ start style footer-area _____ */



/* _____ start style about-us page _____ */
.about-us {
  background: url(../images/blob01.png) center / contain fixed;
}

.about-left {
  background-color: #2d2d2d;
  color: #fff;
}

.according-head {
  width: 100%;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
  border-radius: 40px;
  box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21);
  padding: 15px;
  cursor: pointer;
  transition: 350ms;
  background-color: #fff;
}

.according-head.active {
  background-color: var(--primary02);
  border: 1px solid var(--primary02);
  color: #fff;
}

.according-head svg {
  height: 0.9rem;
  margin-right: 10px;
}

.according-head .fa-angle-down {
  float: right;
  font-size: 14px;
  margin: 6px 0;
  transition: 0.3s linear;
  position: absolute;
  right: 15px;
  top: 13px;
}

.according-head.active .fa-angle-down {
  transform: rotate(-180deg);
}

.according-description {
  max-height: 0;
  overflow: hidden;
  transition: 350ms;
  background: #ff8b19;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  border-radius: 30px;
  box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
}

.according-description p {
  line-height: 24px;
  padding: 15px;
}

/* _____ end style about-us page _____ */


/* _____ start style service page _____ */
.service {
  background: var(--primary03);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 20px;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "poppins", sans-serif;
  text-align: justify;
}

.serv-inner {
  color: #000;
}

/* Hover Effect */
.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service p:last-child {
  margin-bottom: 0 !important;
}

.options li i {
  margin-right: 10px;
  color: var(--primary03);
}

.subtitle {
  color: var(--primary03);
  margin: 35px 0 15px;
  font-size: 20px;
}

/* _____ end style service page _____ */

/* product  */
.product-btn {
  background-color: transparent !important;
  color: var(--primary03) !important;
  border: 1px solid var(--primary03);
}

.product-btn:hover {
  border: 1px solid var(--primary02);
  color: #fff !important;
}


/* _____ start style careers page _____ */
select {
  appearance: none;
  position: relative;
}

select+.fa-angle-down {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 12px;
  color: var(--primary03);
}

.forms label {
  color: var(--primary03);
  padding: 15px;
  border: 1px solid #ced4da;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: 100ms linear;
  margin-bottom: 20px;
  font-size: 12px;
  position: absolute;
  width: 100%;
  padding-left: 40px;
  height: 49px !important;

}

.forms label::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--primary03);
}

.forms label.active::before {
  animation: width 2.5s linear;
}

@keyframes width {

  50%,
  100% {
      width: 100%;
  }
}

input[type="file"] {
  opacity: 0;
  border: 1px solid #000 !important;
}

.fa-upload {
  position: absolute;
  top: 25%;
  left: 15px;
  font-size: 12px;
  color: var(--primary03);
  z-index: -1;
}

/* _____ end style careers page _____ */


/* _____ start style forms page _____ */
.forms.forms-pages {
  background: url(../images/q.png) center / cover no-repeat fixed;
}

.forms-connect i {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary02);
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  margin-right: 30px;
  display: inline-block;
  flex: 0 0 80px;
}

.forms-connect a {
  color: #000;
}
/* _____ end style contact page _____ */




/* _____ start style blog page _____ */

.blog .blog-items .notify-items {
  position: absolute;
  top: 15px;
  right: 25px;
}

.blog .tab-hidden {
  display: none;
}

.blog .tab-hidden.active {
  display: block;
}

.blog .blog-items a.notify {
  background-color: var(--primary01);
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 25px;
  color: #fff;
}

.blog .blog-items h2 a {
  color: #3a3a3a;
  transition: all 0.3s ease-in-out;
}

.blog .blog-items h2 a:hover {
  color: var(--primary01);
}

.blog .blog-items p {
  color: #787878
}

.blog .blog-items img {
  border-radius: 20px;
}
.blog .pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px !important;
}

.blog .pagination li a {
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 14px;
  color: #000;
  border: 1px solid var(--primary01);
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  cursor: pointer;
}

.blog .pagination li.active,
.blog .pagination li:hover {
  background-color: var(--primary01);
  color: #fff;
}
/* _____ end style blog page _____ */





/* start style arabic language */
@font-face {
  font-family: 'TheSans-Regular';
  src: url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-Regular_TRIAL.woff2') format('woff2'),
  url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-Regular_TRIAL.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TheSans-Bold';
  src: url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-Bold_TRIAL.woff2') format('woff2'),
  url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-Bold_TRIAL.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'TheSans-Italic';
  src: url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-Italic_TRIAL.woff2') format('woff2'),
  url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-Italic_TRIAL.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'TheSans-BoldItalic';
  src: url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-BoldItalic_TRIAL.woff2') format('woff2'),
  url('https://bluezonekw.com/front/fonts/thesans/TheSansOffice-BoldItalic_TRIAL.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
[dir="rtl"] body {
  font-family: 'TheSans', sans-serif;
}
[dir="rtl"] .site-mobile {
  right: -100% !important;
}

[dir="rtl"] .site-mobile.active {
  right: 0 !important;
}

[dir="rtl"] .mobile-close {
  position: absolute;
  right: auto;
  left: 20px !important;
  top: 0;
  cursor: pointer;
}

[dir="rtl"] .site-mobile ul li a .down {
  left: 0 !important;
  right: auto;
}

[dir="rtl"] .me-3 {
  margin-left: 1rem !important;
  margin-right: 0 !important
}

[dir="rtl"] .ms-3 {
  margin-left: 0 !important;
  margin-right: 1rem !important
}

[dir="rtl"] .ms-auto {
  margin-left:0 !important;
  margin-right: auto !important;
}

[dir="rtl"] .hero-section .hero-desc a.btn-video {
  margin-right: 16px;
  margin-left: 0;
}

[dir="rtl"] .btn-primary::before {
  transform-origin: right !important;
  right: 0 !important;
  left: auto;
}

[dir="rtl"] .ms-2 {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}

[dir="rtl"] .me-1 {
  margin-left: .25rem!important;
  margin-right: 0 !important;
}

[dir="rtl"] .according-head .fa-angle-down {
  right: auto;
  left: 15px !important;
}

[dir="rtl"] .according-head svg {
  margin-right: 0;
  margin-left: 10px !important;
}

[dir="rtl"] select+.fa-angle-down {
  right: auto;
  left: 25px !important;
}

[dir="rtl"] .forms form .errorInp {
  color: #f00;
  margin-bottom: 15px;
  display: none;
  font-size: 12px;
  font-family: "poppins", sans-serif;
}

[dir="rtl"] .forms label::before {
  left: auto;
  right: 0 !important;
}

[dir="rtl"] .forms-connect i {
  margin-right: 0;
  margin-left: 30px !important;
}

[dir="rtl"] .up {
  bottom: 20px;
  right: auto;
  left: 20px !important;
}
[dir="rtl"] a.whats {
  left: auto;
  right: 20px !important;
}
[dir="rtl"] a.whats::after {
  left: -40%;
  border-left-color: #212529;
}

[dir="rtl"] a.whats::before {
  right: 140% !important;
}

[dir="rtl"] a.whats::after {
  left: -40% !important;
  border-right-color: transparent !important;
  border-left-color: #212529 !important;
}

/* end style arabic language */
.service-icon {
    max-width: 110px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.service-icon:hover {
    transform: scale(1.15);
}

