@charset "UTF-8";

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

html::-webkit-scrollbar {
  width: 0.5rem;
}

html::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Cairo", sans-serif;
  background-color: #D9D9D9;
}
 body:has(.slider-home-nav){
  background-image: url("../images/bg-body.png");

 }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar-toggler-two .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23AC8E63' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

:root {
  /* Primary Colors */
  --color-primary: #004771;
  --color-primary-hover: #004066;
  /* Secondary Colors */
  --color-secondary: #151515;
  --color-secondary-light: #f2f2f2;
  /* info Colors  */
  --color-info: #4A8278;
  --color-info-light: #f2f2f2;
  /* Neutral / Grayscale */
  --color-gray-dark: #3b3c40;
  --color-gray-medium: #454545;
  --color-gray-light: #ebebeb;
  /* Text Colors */
  --color-text-heading: #292929;
  --color-text-dark: #202020;
  --color-text-muted: #858B8A;
  --color-text-footer: #d7d7d7;
  --color-text-light: #DEEDEB;
  --color-text-lighter: #E6E7E7;
  /* Accent Colors */
  --color-accent: #1BBAB9;
  /* Background Colors */
  --color-bg-card: #1D332D;
  --color-bg-light: #F1F5FD;
  --color-bg-light-alt: #DCEBE7;
  --color-bg-light-soft: #DFEAFA;
  /* Dark Backgrounds */
  --color-bg-dark: #0D0D0D;
  --color-bg-dark-alt: #1A1A1A;
  --color-bg-dark-soft: #1C1C1C;
}

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

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

.text-primary-hover {
  color: var(--color-primary-hover) !important;
}

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

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

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

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

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

.text-gray-dark {
  color: var(--color-gray-dark) !important;
}

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

.text-light-custom {
  color: var(--color-text-light);
}

.text-lighter-custom {
  color: var(--color-text-lighter);
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-secondary-light {
  background-color: var(--color-secondary-light) !important;
}

.bg-card {
  background-color: var(--color-bg-card) !important;
}

.bg-light {
  background-color: var(--color-bg-light) !important;
}

.bg-light-alt {
  background-color: var(--color-bg-light-alt) !important;
}

.bg-light-soft {
  background-color: var(--color-bg-light-soft) !important;
}

.bg-dark {
  background-color: var(--color-bg-dark) !important;
}

.bg-dark-alt {
  background-color: var(--color-bg-dark-alt) !important;
}

.bg-dark-soft {
  background-color: var(--color-bg-dark-soft) !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.text-Neutral-700 {
  color: #333333 !important;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.hero-text {
  line-height: 140% !important;
}

.line-height-120 {
  line-height: 120% !important;
}

.line-height-150 {
  line-height: 150% !important;
}

.line-height-160 {
  line-height: 160% !important;
}

ol {
  list-style-type: lower-alpha;
}

.btn-primary {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: all 0.5s linear !important;
  font-weight: 700;
  display: inline-block;
}

.btn-primary:hover {
  color: var(--color-primary) !important;
  background-color: var(--color-bg-light) !important;
  border-color: var(--color-bg-light) !important;
  font-weight: 700;
  transform: translateY(-5px) !important;
}

.btn-primary-two {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: 0.5s linear !important;
  font-weight: 700;
  display: inline-block;
}

.btn-primary-two:hover {
  color: var(--color-primary) !important;
  background-color: var(--light-color-three) !important;
  border-color: var(--light-color-three) !important;
}

.btn-dark {
  color: white !important;
  background-color: var(--dark-color) !important;
  border-color: var(--dark-color) !important;
  transition: 0.5s linear !important;
}

.btn-dark:hover {
  color: var(--dark-color) !important;
  background-color: transparent !important;
  border-color: var(--dark-color) !important;
}

.btn-outline-primary {
  color: var(--color-primary) !important;
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  transition: 0.5s linear !important;
}

.btn-outline-primary:hover {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.btn-secondary {
  color: white !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transition: 0.5s linear !important;
}

.btn-secondary:hover {
  color: var(--secondary-color) !important;
  background-color: transparent !important;
  border-color: var(--secondary-color) !important;
}

.btn-secondary:hover svg path {
  fill: var(--secondary-color) !important;
}

.btn-white {
  color: #1E1E1E !important;
  background-color: white !important;
  border-color: white !important;
  transition: 0.5s linear !important;
}

.btn-white:hover {
  color: white !important;
  background-color: transparent !important;
  border-color: white !important;
}

.btn-outline-gray {
  background-color: transparent;
  border: 1px solid #cccccc !important;
  color: black !important;
}

.btn-gray-transparent {
  background-color: rgba(255, 255, 255, 0.4509803922);
  border: 1px solid rgba(255, 255, 255, 0.4509803922) !important;
  color: white !important;
}

::placeholder {
  color: #606564 !important;
}

input {
  color: #474b4a!important;
  border: 1px solid #AEB2B0 !important;
}

input:focus {
  border: 1px solid #606564 !important;
  box-shadow: none !important;
}

select {
  color: #606564 !important;
}

.form-select {
  border: 1px solid #AEB2B0 !important;
}

.form-select:focus {
  border: 1px solid #606564 !important;
  box-shadow: none !important;
}

.intl-tel-input {
  width: -webkit-fill-available !important;
}

textarea {
  border: 1px solid #AEB2B0 !important;
  resize: none !important;
}

textarea:focus {
  border: 1px solid #606564 !important;
  box-shadow: none !important;
}

.iti {
  width: -webkit-fill-available !important;
}

body:not(.arabicVersion) .iti--allow-dropdown .iti__flag-container,
body:not(.arabicVersion) .iti--show-selected-dial-code .iti__flag-container {
  right: auto !important;
  left: 0 !important;
}

body:not(.arabicVersion) .iti__arrow {
  margin-right: 5px;
  margin-left: 6px;
}

body:not(.arabicVersion) .iti {
  direction: ltr !important;
  width: -webkit-fill-available !important;
}

body:not(.arabicVersion) .iti input {
  direction: ltr !important;
  text-align: left !important;
  padding-left: 50px !important;
}

body:not(.arabicVersion) .iti input.iti__search-input {
  padding-left: 10px !important;
}

.iti__country-name {
  margin-right: 8px;
  color: var(--dark-color) !important;
}

.LanguageMenu {
  text-align: left;
}

.LanguageMenu span {
  font-size: 16px;
}

.LanguageMenu svg {
  display: inline-block !important;
  vertical-align: middle;
  direction: ltr;
}

body.arabicVersion {
  font-family: "Cairo", sans-serif;
}

.fs-ar {
  font-family: "Inter", sans-serif;
}

body.arabicVersion .fs-ar {
  font-family: "Inter", sans-serif;
}

body.arabicVersion .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

body.arabicVersion .LanguageMenu {
  text-align: right;
}

body.arabicVersion .LanguageMenu span {
  font-size: 16px;
}

body.arabicVersion .LanguageMenu svg {
  margin-right: 0;
}

body.arabicVersion .arrow-ar {
  transform: scaleX(-1) !important;
}

body:not(.arabicVersion) .arrow-ar-dir {
  transform: scaleX(-1) !important;
}

body.arabicVersion .plan-img {
  transform: scaleX(1) !important;
}

.plan-img {
  transform: scaleX(-1) !important;
}

body.arabicVersion .rotate-img {
  transform: scaleX(-1) !important;
}

.link-hover {
  transition: 0.4s all !important;
}

.link-hover:hover {
  transform: translateX(5px) !important;
}

.social-icons {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: white !important;
  transition: 0.5s all;
  border: none !important;
}

.social-icons:hover {
  background-color: white !important;
  color: var(--color-primary) !important;
  transform: translateY(-5px);
}

.social-icons:hover svg path {
  stroke: var(--color-primary);
}

.back-to-top {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px;
  right: 10px;
  background-color: #F8A53B !important;
  border: 1px solid #F8A53B !important;
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 20px !important;
  line-height: 0px !important;
  display: none;
  z-index: 2;
    left:auto;

  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.back-to-top img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(162deg) brightness(101%) contrast(104%);
}

/*body.arabicVersion .back-to-top {*/
/*  left: 10px;*/
/*  right: auto;*/
/*}*/

.btn-phone i {
  line-height: 1;
}

.whats-app {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 70px;
  background-color: #F8A53B !important ;
  border: 1px solid #F8A53B !important;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 23px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  right: 10px;
  left:auto;
}

.whats-app:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/*body.arabicVersion .whats-app {*/
/*  left: 10px;*/
/*  right: auto;*/
/*}*/

.hover-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

@media (max-width: 991px) {
  .offcanvas-body::-webkit-scrollbar {
    width: 8px;
  }

  .flight-path {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .offcanvas-body::-webkit-scrollbar-track {
    background: white;
  }

  .offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
  }

  .offcanvas {
    padding: 0;
  }

  .offcanvas-body {
    padding: 0;
  }

  .offcanvas-body .navbar-nav {
    margin: 0;
  }

  .offcanvas-header {
    display: flex;
    align-items: end;
    justify-content: end;
    background-color: var(--color-primary) !important;
  }

  .offcanvas-header .btn-close {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    width: 5px;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .offcanvas-body .nav-link {
    color: white !important;
    border-bottom: 1px solid #fff;
    padding: 10px 15px;
    margin: 0;
  }

  .offcanvas-body .nav-link:hover {
    background-color: white !important;
    color: var(--color-primary) !important;
  }

  .offcanvas-body .nav-link:hover svg path {
    stroke: var(--color-primary);
  }

  .offcanvas-body {
    background-color: var(--color-primary);
    color: white !important;
  }

  .offcanvas-body .text-primary {
    color: white !important;
    border-bottom: 1px solid #fff;
  }

  .offcanvas-body .btn-outline-primary {
    color: white !important;
    border: 1px solid white !important;
  }

  .offcanvas-body .btn-outline-primary:hover {
    color: var(--color-primary) !important;
  }

  .offcanvas-body .text-secondary {
    color: white !important;
  }
}

@media (min-width: 1100px) {
  .bg-img {
    background-size: 100% 70% !important;
    background-position: bottom;
    background-repeat: no-repeat;
  }

  .nav-hover-link {
    transition: color 0.5s ease, font-weight 0.5s ease;
  }

  .nav-hover-link::after {
    content: "";
    height: 2px;
    width: 0%;
    background-color: #F8A53B !important;
    transition: 0.5s;
    margin: auto;
    display: block;
  }

  .nav-hover-link:hover::after {
    width: 100%;
    color: #F8A53B !important;
  }

  .nav-hover-link:hover {
    color: #F8A53B !important;
  }
}

.btn-custom {
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .card-not-hover:hover {
    transform: translateY(0px);
    box-shadow: none !important;
  }

  .position-resp {
    position: static !important;
  }

  .position-resp .para-responsive {
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .position-resp .heading-responsive {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  .position-resp .text-black-responsive {
    color: #1E1E1E !important;
  }

  .text-resp {
    font-size: 10px !important;
  }

  .h6-resp {
    font-size: 12px !important;
    white-space: nowrap;
    font-weight: 500;
  }

  .h1-resp {
    font-size: 20px !important;
  }
}

.fs-4-sm {
  font-size: 1.4rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-resp .fs-4-sm {
    font-size: 1rem;
  }

  .text-resp p {
    font-size: 12px;
  }

  .para-responsive {
    font-size: 10px !important;
  }

  .heading-responsive {
    font-size: 12px !important;
  }
}

.image-container {
  display: block;
  overflow: hidden;
  border-radius: 0.7rem;
  position: relative;
}

.rounded-top-img {
  border-radius: 0.4rem 0.4rem 0 0 !important;
}

.image-container img {
  transition: transform 0.5s ease-in-out;
  width: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 0);
  mask-image: radial-gradient(circle, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 0);
}

.image-container:hover img {
  transform: scale(1.06);
}

.home-img img {
  animation: animate 3s ease-in-out infinite;
}

@keyframes animate {
  0% {
    transform: translate(-11px, 0);
  }

  50% {
    transform: translate(0px, -11px);
  }

  100% {
    transform: translate(-11px, 0);
  }
}

@media (min-width: 768px) {
  .custom-modal-size {
    max-width: 700px;
  }
}

.cursor-pointer {
  cursor: pointer !important;
}

@media (min-width: 999px) and (max-width: 1199px) {
  .fs-sm {
    font-size: 13px !important;
  }
}

.line-height-153 {
  line-height: 153%;
}

.custom-gap {
  row-gap: 0.5rem !important;
}

.border-gray {
  border: 1px solid #ebebeb !important;
}

.border-card-form {
  border: 1px solid #a7a6a4 !important;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.form-sec input:focus {
  border: none !important;
  border-bottom: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
  color: var(--color-primary) !important;
}

.form-sec ::placeholder {
  color: #606564 !important;
}

.form-sec textarea:focus {
  border: none !important;
  border-bottom: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
  color: var(--color-primary) !important;
}

.border-primary {
  border: 1px solid #282522 !important;
}

.overlay-text {
  max-width: 90%;
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 14px;
    padding: 8px;
  }
}

.text-nowrap {
  word-break: break-word;
}

.dropdown-item:focus,
.dropdown-item:active {
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--color-primary);
}

.hero-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.centerd {
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  position: absolute;
}

.lh-100 {
  line-height: 100% !important;
}

@font-face {
  font-family: "GeorgiaCustom";
  src: url("../fonts/georgia-2/georgia.ttf") format("truetype");
}

.ff-georgian {
  font-family: "GeorgiaCustom", serif;
}

.h-500 {
  height: 650px;
}

body.arabicVersion .phone {
  direction: rtl;
  text-align: right;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.section-background {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 350px;
  border-radius: 0rem;
}

.section-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000B2;
}

.section-background .section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.section-background .section-content h1 {
  font-size: 2.5rem;
}

.img-right {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-25%) scaleX(-1);
}

body:not(.arabicVersion) .img-right {
  right: unset;
  left: 0;
  transform: translateY(-25%) scaleX(1);
}

.img-left-two {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(90%);
}

body:not(.arabicVersion) .img-left-two {
  left: unset;
  right: 0;
  transform: translateY(90%) scaleX(-1);
}

.img-left {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(3%);
}

body:not(.arabicVersion) .img-left {
  left: unset;
  right: 0;
  transform: translateY(-20%) scaleX(-1);
}

.img-left-top {
  position: absolute;
  left: 0;
  top: 0;
}

body:not(.arabicVersion) .img-left-top {
  left: unset;
  right: 0;
  transform: scaleX(-1);
}

.icon-footer {
  position: absolute;
  right: 0;
  transform: translateX(-20%);
}

body:not(.arabicVersion) .icon-footer {
  right: unset;
  left: 0;
  transform: translateX(20%) scaleX(1);
}

.icon-popup {
  position: absolute;
  left: 0;
  bottom: 0 !important;
}

body:not(.arabicVersion) .icon-popup {
  left: unset;
  right: 0;
}

.text-white-two {
  color: #F5F6F6 !important;
}

.custom-radio {
  position: relative;
  border: none !important;
}

.custom-radio:checked::after {
  content: "✔";
  color: white;
  background-color: #355F58;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}

.text-gray {
  color: #606564 !important;
}

.card-border {
  border: 1px solid #AEB2B0 !important;
}

.card-border-gray {
  border: 1px solid #393D3D !important;
}

.card-border-bottom {
  border-bottom: 1px solid #AEB2B0 !important;
}

hr {
  color: #AEB2B0 !important;
}

.p-07 {
  padding: 0.7rem !important;
}

.modal-header .btn-close {
  margin-left: 0;
  margin-right: auto;
}

body.arabicVersion .modal-header .btn-close {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.height-400 {
  height: 400px;
}

.height-350 {
  height: 350px;
}

.height-300 {
  height: 300px;
}

.height-100 {
  height: 100px;
  cursor: pointer;
}

.slider-nav .slick-slide {
  margin: 0 5px;
}

@media (min-width: 768px) {
  .border-md-start {
    border-left: unset;
    border-right: 1px solid var(--bs-border-color);
  }

  body.arabicVersion .border-md-start {
    border-right: unset;
    border-left: 1px solid var(--bs-border-color);
  }
}

.text-primary-alt {
  color: #31544E !important;
}

.camp-sec .form-check-input:checked {
  background-color: #355F58 !important;
  border-color: #355F58 !important;
}

body.arabicVersion .form-check-label {
  padding-right: 0.5rem;
}

input[type=time]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 1;
}

body.arabicVersion .custom-rtl-input {
  direction: ltr;
  width: 100%;
  background-color: transparent;
}

body.arabicVersion .custom-rtl-input input {
  direction: rtl;
  text-align: right;
  background-color: transparent;
  /* color: white; */
}

body.arabicVersion input[type=time]::-webkit-calendar-picker-indicator,
body.arabicVersion input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

input[type=time]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

.input-group-text {
  background-color: transparent !important;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.text-white-three {
  color: #F4F9F8 !important;
}

.services-sec .nav-tabs .nav-link.active,
.services-sec .nav-tabs .nav-item.show .nav-link {
  color: white !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: all 0.5s linear !important;
  font-weight: 700;
  display: inline-block;
}

.services-sec .nav-tabs-scrollable {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}

.services-sec .nav-tabs-scrollable::-webkit-scrollbar {
  margin-top: 15px;
}

.services-sec .nav-tabs-scrollable {
  padding-bottom: 0.5rem;
}

.services-sec .nav-tabs-scrollable::-webkit-scrollbar {
  width: 0.2rem;
  height: 10px;
}

.services-sec .nav-tabs-scrollable::-webkit-scrollbar-track {
  background: white;
  background: var(--color-bg-light);
  border-radius: 30px;
}

.services-sec .nav-tabs-scrollable::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 30px;
}

.services-sec .nav-tabs-scrollable .nav-link {
  white-space: nowrap;
  flex-shrink: 0;
}

.bg-img {
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.loader-bg {
  position: fixed;
  overflow: hidden;
  z-index: 1111111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  height: 80px;
  width: auto;
  animation: scalePulse 1.5s ease-in-out infinite;
}

/* Animation */
@keyframes scalePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.bg-card-two {
  background-color: #38625A !important;
}

.img-card {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media only screen and (min-width: 991px) {
  .grid .img-card {
    height: 160px;
  }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
  color: var(--mainColor5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-js .vjs-big-play-button {
  cursor: pointer;
  background-color: var(--mainColor3);
  border-radius: 50%;
  height: 2em;
  width: 2em;
}



.price {
  align-items: center;
  display: flex;
  position: relative;
}

.price:after {
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg width='18' height='22' viewBox='0 0 18 22' xmlns='http://www.w3.org/2000/svg'><path d='M18 17.3555C17.8811 18.3172 17.829 18.7342 17.3848 19.6719L10.5635 21.0801C10.7202 20.0668 10.9289 19.2853 11.2686 18.8164L18 17.3555ZM8.49902 10.7207L10.5371 10.2783V3.83789C11.2965 2.98541 11.7631 2.60201 12.6797 2.11816V9.81348L18 8.6582C17.881 9.62025 17.829 10.0378 17.3848 10.9756L12.6797 11.9697V14.1328L18 13.0068C17.8811 13.9687 17.8288 14.3858 17.3848 15.3232L12.6797 16.2949V16.3154L10.5371 16.7578V12.4229L8.49902 12.8535V15.5859L8.46387 15.5928C7.99505 16.4149 7.33322 17.403 6.69531 18.1914L0 19.4658C0.0600304 18.6044 0.185654 18.1187 0.575195 17.251L6.35547 15.998V13.3066L0.998047 14.4395C1.05809 13.5782 1.18375 13.0932 1.57324 12.2256L6.35547 11.1865V2.63965C7.11497 1.78706 7.58226 1.40385 8.49902 0.919922V10.7207Z' fill='black'/></svg>");
  width: 24px;
  height: 24px;
  display: inline-block;
  align-items: center;
}

.price.text-primary:after {
  background-image: url("data:image/svg+xml;utf8,<svg width='18' height='22' viewBox='0 0 18 22' xmlns='http://www.w3.org/2000/svg'><path d='M18 17.3555C17.8811 18.3172 17.829 18.7342 17.3848 19.6719L10.5635 21.0801C10.7202 20.0668 10.9289 19.2853 11.2686 18.8164L18 17.3555ZM8.49902 10.7207L10.5371 10.2783V3.83789C11.2965 2.98541 11.7631 2.60201 12.6797 2.11816V9.81348L18 8.6582C17.881 9.62025 17.829 10.0378 17.3848 10.9756L12.6797 11.9697V14.1328L18 13.0068C17.8811 13.9687 17.8288 14.3858 17.3848 15.3232L12.6797 16.2949V16.3154L10.5371 16.7578V12.4229L8.49902 12.8535V15.5859L8.46387 15.5928C7.99505 16.4149 7.33322 17.403 6.69531 18.1914L0 19.4658C0.0600304 18.6044 0.185654 18.1187 0.575195 17.251L6.35547 15.998V13.3066L0.998047 14.4395C1.05809 13.5782 1.18375 13.0932 1.57324 12.2256L6.35547 11.1865V2.63965C7.11497 1.78706 7.58226 1.40385 8.49902 0.919922V10.7207Z' fill='%23004771'/></svg>");

}

.navbar-nav .nav-link {
  color: var(--color-primary);
}

@media only screen and (min-width: 991px) {

  body:has(.slider-home-nav) header {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;

  }

  body:has(.slider-home-nav) .navbar-nav .nav-link:not(.active) {
    color: white !important;
  }

  body:has(.slider-home-nav) header .LanguageMenu {
    color: white !important;


  }

   body:has(.slider-home-nav) .navbar-nav .nav-link:not(.active):hover {
        color: #F8A53B !important;
    }

  body:has(.slider-home-nav) .LanguageMenu svg path {

    stroke: white !important;

  }
}

.video-js {
  height: 450px !important;
}

.navbar-nav .nav-link.active {
  color: #F8A53B !important;
}

.checkbox:hover {
  cursor: pointer;
}

.checkbox label {
  border-color: #AEAEB2 !important;
}

.checkbox:has(input:checked) label {
  border-color: #F8A53B !important;
}



.tabber {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.tabber label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 60px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0px);
  transition: transform 125ms ease-in-out, filter 125ms ease-in-out;
}
.tabber label:hover {
  transform: scale(1.15);
}
.tabber input[type=radio] {
  display: none;
}
.tabber input[type=radio]#t1 ~ .blob {
  transform-origin: right center;
}
.tabber input[type=radio]#t2 ~ .blob {
  transform-origin: left center;
}
.tabber input[type=radio]#t1:checked ~ .blob {
  -webkit-animation-name: stretchyRev;
          animation-name: stretchyRev;
}
.tabber input[type=radio]#t2:checked ~ .blob {
  -webkit-animation-name: stretchy;
          animation-name: stretchy;
}
.tabber input[type=radio]:checked ~ .blob {
  background-color: var(--color-primary);

}
.tabber .blob {
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition: transform 150ms ease, background-color 150ms ease;
}
.tabber .blob:before, .tabber .blob:after {
  display: block;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  background-color: inherit;
  height: 100%;
  width: 50%;
  border-radius: 100%;
  transition: transform 150ms ease;
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.tabber .blob:before {
  left: 0;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.tabber .blob:after {
  right: 0;
}
.tabber input[type=radio]:checked + label{
  color: white !important;

}
@-webkit-keyframes stretchy {
  0% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(100%) scaleX(1);
  }
}

@keyframes stretchy {
  0% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(100%) scaleX(1);
  }
}
@-webkit-keyframes stretchyRev {
  0% {
    transform: translateX(100%) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}
@keyframes stretchyRev {
  0% {
    transform: translateX(100%) scaleX(1);
  }
  50% {
    transform: translateX(0) scaleX(2);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}

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

.required::after{
  content: "*";
  color: red;
}

.bg-model {
  background-image: url("../../assets/images/bg-body.png");
  background-repeat: no-repeat;
}

.payment .form-check-input:checked[type=radio] {
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z' fill='%23004771' stroke='%23004771' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.125 9.75L10.625 15L7.875 12.375' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");


}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary)
}
.form-check .form-check-input {
  height: 16px;
  width: 16px;
}
.form-check .form-check-input {
  margin-left: 0em;
  margin-inline: 3px;
}

html[lang="ar"] .form-check .form-check-input {
    float: right;
}
.form-check-input{
  background-color: transparent;
}
.slick-slide {
  padding-inline: 15px;
}

@media (max-width: 767px) {
  .img-con{
height: 300px !important;
  }}

 html[lang="ar"] .ff-georgian{
font-family: "cairo";
  }
  html[lang="ar"] .offcanvas-start {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.slick-slider 
  .slick-track {
    margin-left: initial;
    margin-right: initial;
  }
