:root {
  --primary: #EDA523;
  --secondary: #8FC744;
  --purple: #613458;
  --filterPrimary: invert(85%) sepia(14%) saturate(7477%) hue-rotate(342deg) brightness(96%) contrast(93%);
  --filterSecondary: invert(74%) sepia(31%) saturate(847%) hue-rotate(40deg) brightness(94%) contrast(84%);
  --filterPurple: invert(22%) sepia(7%) saturate(3785%) hue-rotate(260deg) brightness(100%) contrast(89%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
  scroll-behavior: smooth;
}

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

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

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

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

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

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.fancybox-content {
    height: 85% !important; 
}
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.color-purple {
  color: var(--purple);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterPurple {
  -webkit-filter: var(--filterPurple);
          filter: var(--filterPurple);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

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

a:focus {
  outline: 0;
}

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

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

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

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

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

form textarea {
  resize: none;
}

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


.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

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

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}


.modal-content {
  padding: 70px  20px;
  border-radius: 20px;
}

.modal-content .butn_close {
  position: absolute;
  top: 9px;
  left: 6px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 10px 0 #0002;
          box-shadow: 3px 6px 10px 0 #0002;
  opacity: 1;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  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;
  color: var(--secondary);
}

.stateModal .img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 30px auto;
  display: block;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floatingY {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes floatingY {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.slide_rtl.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes rotateScaling {
  0% {
    -webkit-transform: rotate(0) scale(0.6);
            transform: rotate(0) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes rotateScaling {
  0% {
    -webkit-transform: rotate(0) scale(0.6);
            transform: rotate(0) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes slide-in-bl {
  0% {
    -webkit-transform: translateY(500px) translateX(-1000px);
            transform: translateY(500px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-bl {
  0% {
    -webkit-transform: translateY(500px) translateX(-1000px);
            transform: translateY(500px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

.slide-in-bl {
  -webkit-animation: slide-in-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 25px;
  outline: 1px solid #ccc;
  border: 4px solid #fff;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--purple) !important;
  outline-color: var(--purple);
}

.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: #fff;
  border: 2px solid #eee;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 1;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

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

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

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

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

.butn {
  position: relative;
  padding: .8rem 2rem;
  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: 5px;
  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(--primary);
  color: #fff;
}

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

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

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

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

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

.butn.purple_border_butn {
  border: 1px solid var(--purple);
  color: var(--purple);
}

.butn.purple_butn {
  color: #fff;
  background-color: var(--purple);
  border-color: var(--purple);
}

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

.butn:hover i,
.butn:hover .icon {
  animation: pulse .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

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

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

.title_bb {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.title_bb::after {
  content: '';
  width: 90%;
  height: 5px;
  border-radius: 25px;
  position: absolute;
  bottom: 2px;
  inset-inline-start: 1px;
  z-index: -1;
  background-color: var(--secondary);
}

.line {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top_nav {
  padding: 10px 0;
  background-color: var(--secondary);
}

.navs-container .top_nav .links a {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  font-size: 12px;
  color: #fff;
  pointer-events: none;
}

.navs-container .top_nav .links a i {
  color: #fff;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.navs-container .top_nav .links a:hover {
  color: #fff !important;
}

.navs-container .top_nav .social_links a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  background-color: #fff;
  color: #888;
  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;
  font-size: 10px;
}

.navs-container .top_nav .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.navs-container .navbar {
  position: relative;
  z-index: 9;
  padding: 0;
}

.navs-container .navbar .logo {
  width: 155px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  position: relative;
  margin: 0;
  padding: 2rem 1.5rem;
  font-size: 14px;
  color: #fff;
  -webkit-border-end: 1px solid #683D60;
          border-inline-end: 1px solid #683D60;
}

.navs-container .navbar .nav-link:focus {
  color: #fff;
}

.navs-container .navbar .nav-link.active {
  color: #fff;
  font-weight: bold;
}

.navs-container .navbar .nav-link:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.navs-container .navbar .butn {
  padding: 0.7rem 1.5rem !important;
}

.navs-container .navbar .has_dropdown {
  position: relative;
}

.navs-container .navbar .has_dropdown::after {
  content: '\f0dd';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-end: 13px;
  top: 37px;
  font-size: 9px;
  color: #eee;
}

.navs-container .navbar .has_dropdown .drop_down {
  background-color: #fff;
  position: absolute;
  min-width: 200px;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border: 1px solid #eee;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  visibility: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .has_dropdown .drop_down a {
  font-size: 15px;
  display: block;
  padding: .95rem 1rem;
  background-color: #fff;
  width: 100%;
}

.navs-container .navbar .has_dropdown .drop_down a:hover {
  background-color: #f9f9f9;
  -webkit-padding-start: .5rem;
          padding-inline-start: .5rem;
}

.navs-container .navbar .has_dropdown:hover .drop_down {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  visibility: visible;
}

.navs-container .navbar::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: var(--purple);
  width: 78%;
  right: unset;
  left: unset;
  inset-inline-end: 0;
  inset-block-start: unset;
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  max-width: calc(100% - 200px);
}

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

.navs-container .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);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

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

.footer .col-lg-4:last-child .content {
  -webkit-border-end: .5px solid transparent;
          border-inline-end: .5px solid transparent;
}

.footer .content {
  padding: 100px 3vw;
  -webkit-border-end: 0.5px solid rgba(148, 170, 205, 0.2);
          border-inline-end: 0.5px solid rgba(148, 170, 205, 0.2);
}

.footer .content .logo {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -25px;
}

.footer .content .title {
  font-size: 20px !important;
}

.footer .content .det {
  color: #6B5858;
  line-height: 2;
}

.footer .content .social_links a {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  border: 1px solid var(--purple);
  color: var(--purple);
  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;
}

.footer .content .social_links a:hover {
  background-color: var(--purple);
  color: #fff !important;
}

.footer .content .title_bb::after {
  width: 50px;
  bottom: 1px;
}

.footer .content .links a {
  display: block;
  color: #8D8D8D;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer .content .contact_items .item {
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  pointer-events: none;
}

.footer .content .contact_items .item .icon {
  -o-object-fit: contain;
     object-fit: contain;
  font-size: 15px;
  color: #929292;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -webkit-filter: invert(64%) sepia(1%) saturate(0%) hue-rotate(353deg) brightness(92%) contrast(87%);
          filter: invert(64%) sepia(1%) saturate(0%) hue-rotate(353deg) brightness(92%) contrast(87%);
}

.footer .content .contact_items .item .p {
  font-size: 15px;
  color: #8D8D8D;
}

.footer .foot {
  border-top: 0.5px solid rgba(148, 170, 205, 0.2);
  color: #8D8D8D;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .item {
  overflow: hidden;
  opacity: 0;
}

.header .item .text_box .title {
  font-size: calc(1.5vw + 35px);
  line-height: 1.5;
}

.header .item .text_box .p {
  font-size: 18px;
  color: #373C58;
  line-height: 2;
}

.header .item .text_box .butn {
  -webkit-box-shadow: 3px 8px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 3px 8px 10px 0 rgba(0, 0, 0, 0.15);
}

.header .item .img_box {
  height: 650px;
  position: relative;
}

.header .item .img_box .sec-img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.header .swiper-slide-active .item {
  opacity: 1;
}

.header .swiper-slide-active .item .subtitle {
  -webkit-animation: fadeInUp 1.3s both;
          animation: fadeInUp 1.3s both;
}

.header .swiper-slide-active .item .title {
  -webkit-animation: fadeInUp 1.3s both;
          animation: fadeInUp 1.3s both;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.header .swiper-slide-active .item .p {
  -webkit-animation: fadeInUp 1.3s both;
          animation: fadeInUp 1.3s both;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.header .swiper-slide-active .item .butn {
  -webkit-animation: fadeInUp 1.3s both;
          animation: fadeInUp 1.3s both;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.header .swiper-slide-active .item .sec-img {
  -webkit-animation: fadeInRight .9s  both;
          animation: fadeInRight .9s  both;
}

.header .swiper-pagination {
  bottom: 40px;
}

.about-sec .img_box {
  height: 650px;
  position: relative;
  padding: 0 2vw;
}

.about-sec .img_box .first_box {
  height: 60%;
  width: 53%;
  position: absolute;
  right: 0;
  top: 0;
}

.about-sec .img_box .first_box::before {
  content: '';
  width: 150px;
  height: 180px;
  background-color: var(--secondary);
  position: absolute;
  bottom: -15px;
  right: -15px;
  z-index: -1;
}

.about-sec .img_box .second_box {
  height: 60%;
  width: 53%;
  position: absolute;
  left: 0;
  top: 20%;
}

.about-sec .img_box .second_box::before {
  content: '';
  width: 150px;
  height: 180px;
  background-color: var(--purple);
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
}

.about-sec .img_box .third_box {
  height: 50%;
  width: 70%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.about-sec .img_box .third_box::before {
  content: '';
  width: 200px;
  height: 120px;
  background-color: var(--primary);
  position: absolute;
  bottom: -15px;
  left: -15px;
  z-index: -1;
}

.about-sec .img_box .sec-img {
  border-radius: 8px;
  -webkit-box-shadow: 10px 3px 15px 0 #0001;
          box-shadow: 10px 3px 15px 0 #0001;
}

.about-sec .text_box {
  -webkit-padding-end: 3vw;
          padding-inline-end: 3vw;
}

.about-sec .text_box .title {
  color: #2C476B;
}

.about-sec .text_box .main_title {
  font-size: calc(.8vw + 35px);
}

.about-sec .text_box .p {
  line-height: 2;
  color: #202020;
}

.geographical-sec {
  background-color: var(--purple);
}

.geographical-sec .sec-head .title {
  font-size: 48px;
}

.geographical-sec .nav-link {
  width: 170px;
  height: 60px;
  background-color: #7D4B73;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  font-size: 16px;
}

.geographical-sec .nav-link.active {
  background-color: #fff;
  color: var(--purple);
}

.geographical-sec .region_card {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.geographical-sec .region_card .txt_box {
  text-align: start;
  background-color: rgba(255, 255, 255, 0.8);
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2vw 2vw;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 1;
}

.geographical-sec .region_card .txt_box .p {
  font-size: 12px;
  color: #141010;
}

.geographical-sec .region_card:hover .txt_box {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.locations-sec .text_box {
  padding: 0 4vw;
  overflow: hidden;
}

.locations-sec .text_box .item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #ddd;
}

.locations-sec .text_box .item .icon {
  height: 35px;
  -webkit-margin-end: 40px;
          margin-inline-end: 40px;
}

.locations-sec .text_box .item .txt .label {
  margin-bottom: 10px;
  color: #555;
  font-size: 17px;
}

.locations-sec .text_box .social_links .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.locations-sec .text_box .social_links .icon:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.partners-sec .partner_card {
  padding: 25px 10px;
  border: 4px solid #F8F8F8;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners-sec .partner_card .partner_logo {
  height: 90px;
  width: 80%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners-sec .partner_card:hover {
  border-color: var(--primary);
}

.partners-sec .partner_card:hover .partner_logo {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact-sec .text_box .title {
  color: #2C476B;
}

.contact-sec .text_box .p {
  line-height: 2;
}

.contact-sec .form_box {
  background-color: #fff;
  padding: 50px 3vw;
}

.contact-sec .form_box .form-group {
  margin-bottom: 20px;
}

.contact-sec .form_box .form-group .label {
  margin-bottom: .8rem;
  font-weight: bold;
  font-size: 14px;
}

.contact-sec .form_box .form-group input,
.contact-sec .form_box .form-group select {
  height: 55px !important;
}

.contact-sec .form_box .butn {
  height: 55px;
}

.contact-sec .bg, .contact-sec::before {
  height: 75%;
}

.contact-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(255, 255, 255, 0.83);
  z-index: 2;
}

.downloading-sec {
  margin-bottom: -100px;
}

.downloading-sec .text_box .down_item {
  margin: 10px 0;
}

.downloading-sec .text_box .down_item .icon_outer {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.downloading-sec .text_box .down_item .icon_outer .icon {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterPurple);
          filter: var(--filterPurple);
}

.downloading-sec .text_box .down_item .txt {
  width: calc(100% - 65px);
}

.downloading-sec .text_box .down_item .txt .label {
  font-size: 13px;
}

.downloading-sec .text_box .down_item .txt .p {
  font-size: 12px;
}

.downloading-sec .text_box .down_butns .down_link {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.downloading-sec .text_box .down_butns .down_link .img {
  width: 130px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.downloading-sec .text_box .down_butns .down_link:hover .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.downloading-sec .sec-img {
  height: 670px;
}

.downloading-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: var(--purple);
  height: calc(100% - 200px);
  top: 100px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg-header {
  padding: 20px 0 30px 0;
  background-color: #eee;
}

.pg-header .bread {
  color: #333;
}

.pg-header .bread .item {
  font-size: 15px;
  color: #333;
  margin: 0 10px;
}

.pg-header .bread .item .logo {
  width: 50px;
}

.pg-header .bread .item::after {
  content: '';
  width: 15px;
  height: 1px;
  background-color: #999;
  display: inline-block;
  margin: 0 10px 0 0px;
}

.pg-header .bread .item.active {
  color: var(--purple);
}

.pg-header .bread .item.active::after {
  display: none;
}

.pg-header .bread a:hover {
  color: var(--primary) !important;
}

.pg-header .logo_pattern {
  position: absolute;
  width: 90%;
  opacity: .02;
  inset-inline-end: -0%;
  bottom: -65px;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-cards {
  background-color: #F8F8F8;
}

.about-cards .about_card {
  background-color: #fff;
  position: relative;
  padding: 50px 15px 40px 15px;
  border-radius: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}

.about-cards .about_card .icon_outer {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  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;
  margin: 0 auto 30px auto;
}

.about-cards .about_card .icon_outer .icon {
  width: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-cards .about_card .icon_outer::before, .about-cards .about_card .icon_outer::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .icon_outer::before {
  background-color: #7c4872;
  -webkit-transform: rotate(45deg) scale(0.9);
          transform: rotate(45deg) scale(0.9);
}

.about-cards .about_card .icon_outer::after {
  background-color: #E8EBFA;
}

.about-cards .about_card .card-body {
  text-align: center;
}

.about-cards .about_card .card-body .title {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .card-body p {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 14px;
  line-height: 2.2;
  text-align: start !important;
margin-bottom: 0 !important;
}
.about-cards .about_card:hover li {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.about-cards .about_card .card-body .text_collapsing  {
    height: 124px;
  overflow: hidden;
    -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.about-cards .about_card .card-body .text_collapsing.active {
    height: auto;
}
.about-cards .about_card .card-body .more_butn {
    display: block;
    color: #666;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 3px 6px 15px #0005;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: underline !important;
    margin: 20px auto 0 auto;
}
.about-cards .about_card .card-body .more_butn .icon {
    width: 25px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
.about-cards .about_card .more_butn .see_more_txt::before {
    content: 'اظهار المزيد';
}
.about-cards .about_card .more_butn.active .see_more_txt::before {
    content: ' إظهار اقل  ';
}
.about-cards .about_card::before {
  content: '';
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #7c4872;
  opacity: .07;
  border-radius: 0 0 10px 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 6;
}

.about-cards .about_card:hover {
  background-color: var(--purple);
  -webkit-box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.16);
}
.about-cards .about_card:hover .more_butn {
  color: #fff;
}

.about-cards .about_card:hover::before {
  height: 15px;
  opacity: 1;
}

.about-cards .about_card:hover .icon_outer::after {
  background-color: #fff;
}

.about-cards .about_card:hover .icon_outer::before {
  -webkit-transform: rotate(45deg) scale(1) translateY(-10px) translateX(-10px);
          transform: rotate(45deg) scale(1) translateY(-10px) translateX(-10px);
}

.about-cards .about_card:hover .title {
  color: #fff;
}

.about-cards .about_card:hover p,
.about-cards .about_card:hover li {
  color: #eee;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact-pg .contact_cards .contact_item {
  position: relative;
  margin: 20px 0;
  background-color: #f8f8f8;
  border-radius: 15px;
  padding: 30px 20px;
}

.contact-pg .contact_cards .contact_item .icon_outer {
  background-color: var(--primary);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  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;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.contact-pg .contact_cards .contact_item .icon_outer .icon {
  width: 23px;
  height: 23px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-pg .contact_cards .contact_item .title {
  font-weight: bold;
  font-size: 1rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-pg .contact_cards .contact_item:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.contact-pg .contact_cards .contact_item:hover .title {
  color: var(--primary);
}

.contact-pg .map_box iframe {
  border-radius: 15px;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery-sec .nav-link {
  background-color: #f7f7f7;
  margin: 0 10px;
  min-width: 100px;
  padding: .9rem 1rem;
  border-radius: 10px;
  color: var(--dark);
  text-transform: capitalize;
}

.gallery-sec .nav-link.active {
  color: #fff !important;
  background-color: var(--primary) !important;
}

.gallery-sec .gallery_card {
  height: 310px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
}

.gallery-sec .gallery_card .sec-img {
  border-radius: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery-sec .gallery_card .title {
  text-align: center;
  position: absolute;
  bottom: 80px;
  width: 100%;
  font-size: 1.1rem;
  z-index: 8;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery-sec .gallery_card .button {
  background-color: var(--primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.75) scale(0);
          transform: translate(-50%, -50%) scale(0.75) scale(0);
  opacity: 0;
  z-index: 6;
}

.gallery-sec .gallery_card .button.is-play .button-outer-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.gallery-sec .gallery_card .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-sec .gallery_card .button.is-play .triangle {
  -webkit-animation: fadeIn 7s ease;
          animation: fadeIn 7s ease;
}

.gallery-sec .gallery_card .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
          animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.gallery-sec .gallery_card .button i {
  color: #fff;
  position: relative;
  right: 3px;
  top: 5px;
  font-size: 23px;
}

.gallery-sec .gallery_card .button .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
          animation: smallScale 3s infinite;
}

.gallery-sec .gallery_card .button .has-delay-short {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

.gallery-sec .gallery_card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  z-index: 1;
}

.gallery-sec .gallery_card:hover .sec-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery-sec .gallery_card:hover .button {
  -webkit-transform: translate(-50%, -50%) scale(0.75) scale(1);
          transform: translate(-50%, -50%) scale(0.75) scale(1);
  opacity: 1;
}

.gallery-sec .gallery_card:hover .title {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.gallery-sec .gallery_card:hover::before {
  opacity: 1;
}

.gallery-sec .swiper-pagination-bullet {
  background-color: #333;
}

/**********************************************
    Start Edit news Page 
**********************************************/
.news-pg .news_card {
  border-radius: 30px;
    height: 400px;
  overflow: hidden;
  position: relative;
  margin-bottom: 35px;
}

.news-pg .news_card .sec-img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.news-pg .news_card .txt_box {
  padding: 1.5rem;
  /*background-color: var(--purple);*/
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 0 30px 30px;
  -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(97,52,88,.7);
}
.news-pg .news_card .txt_box .title {
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-pg .news_card .txt_box .p {
  /*height: 55px;*/
  /*overflow: hidden;*/
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-pg .news_card .txt_box .date i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.news-pg .news_card .txt_box .butn {
  padding: 0.5rem 1.5rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.news-pg .news_card:hover .sec-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-pg .news_card:hover .txt_box {
  background-color: rgba(0, 0, 0, 0.7);
}

.news-det .inner {
  border: 1px solid #eee;
  border-radius: 30px;
}

.news-det .inner .img_box {
  height: 500px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
}

.news-det .inner .img_box .date {
  border-radius: 15px 15px 0 0;
  padding: .6rem 1rem;
  background-color: var(--purple);
  color: #fff;
  position: absolute;
  inset-inline-start: 5%;
  bottom: 0;
  font-size: 12px;
}

.news-det .inner .img_box .date i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.news-det .inner .txt_box {
  padding: 30px 1.5vw;
}

.news-det .inner .txt_box .title {
  font-size: calc(.1vw + 35px);
}

.news-det .inner .txt_box .p {
  line-height: 2.2;
}

.news-det .sm_box {
  border-radius: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 7px 50px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 7px 50px rgba(0, 0, 0, 0.07);
  padding: 33px 40px 40px 40px;
}

.news-det .sm_box .links a {
  display: block;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news-det .sm_box .links a {
    overflow: hidden;
}
.news-det .sm_box .links a .sm_img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.news-det .sm_box .links a .txt  {
    width: calc(100% - 80px);
}
.news-det .sm_box .links a .txt .title {
  color: #333;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-det .sm_box .links a .txt .date {
  font-size: 12px;
  color: #666;
}

.news-det .sm_box .links a .txt .date i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  color: var(--purple);
}

.news-det .sm_box .links a:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-det .sm_box .tags_links a {
  position: relative;
  padding: .6rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  border: 1px solid #ddd;
  color: #666;
  border-radius: 25px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  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;
  text-align: center;
  margin-bottom: 15px;
}

.news-det .sm_box .tags_links a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
    Start Edit facilities Page 
**********************************************/
.facilities-sec .search_box .form-control {
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
}

.facilities-sec .search_box .submit_butn {
  background-color: transparent;
  position: absolute;
  top: 15px;
  right: 13px;
}

.facilities-sec .search_box .submit_butn .icon {
  width: 21px;
  -o-object-fit: contain;
     object-fit: contain;
}

.facilities-sec .search_box .submit_butn i {
  color: var(--purple);
  font-size: 21px;
}

.facilities-sec .img_box {
  height: 550px;
  position: relative;
}

.facilities-sec .img_box .sec-img {
  -o-object-position: center;
     object-position: center;
  border: 1px solid #eee;
  -webkit-box-shadow: 30px 30px 30px 0 rgba(97, 51, 88, 0.16);
          box-shadow: 30px 30px 30px 0 rgba(97, 51, 88, 0.16);
}

.facilities-sec .img_box::after, .facilities-sec .img_box::before {
  content: '';
  z-index: -1;
  position: absolute;
  height: 200px;
}

.facilities-sec .img_box::before {
  background-color: var(--purple);
  width: 20%;
  top: -25px;
  left: -25px;
}

.facilities-sec .img_box::after {
  background-color: var(--primary);
  width: 25%;
  bottom: -25px;
  right: -25px;
}

.facilities-sec .station_card {
  position: relative;
  height: 400px;
  margin-bottom: 50px;
}

.facilities-sec .station_card .txt {
  z-index: 5;
  position: absolute;
  padding: 40px;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
}

.facilities-sec .station_card .txt .more_butn {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 3px 6px 15px #0005;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.facilities-sec .station_card .txt .more_butn .icon {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.facilities-sec .station_card .badge_station {
  background-color: var(--purple);
  text-align: center;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: 6;
  padding: 0.8rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}

.facilities-sec .station_card .badge_station .label {
  color: #ddd;
}

.facilities-sec .station_card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#333), color-stop(#111), to(#000));
  background-image: linear-gradient(to bottom, transparent, #333, #111, #000);
  opacity: .4;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 1;
}

.facilities-sec .station_card::after {
  content: '';
  width: 90%;
  height: 20px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--purple);
}

.facilities-sec .station_card:hover::before {
  opacity: .7;
}

.facilities-sec .station_card:hover .badge_station {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
}

.facilities-sec .facilities_card {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 30px 30px 30px 0 rgba(97, 51, 88, 0.05);
          box-shadow: 30px 30px 30px 0 rgba(97, 51, 88, 0.05);
  position: relative;
  margin-bottom: 30px;
}

.facilities-sec .facilities_card .title .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.facilities-sec .facilities_card .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit services Page 
**********************************************/
.services-pg {
  background-color: #fafafa;
}

.services-pg .serv_card {
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 30px 30px 30px 0 rgba(97, 51, 88, 0.05);
          box-shadow: 30px 30px 30px 0 rgba(97, 51, 88, 0.05);
}

.services-pg .serv_card .box_s {
  padding: 2vw;
}

.services-pg .serv_card .box_s .data_item .icon {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.services-pg .serv_card .box_s .data_item .txt .label {
  color: #9C9C9C;
  font-size: 14px;
}

.services-pg .serv_card .box_s .data_item .txt .data {
  font-size: 16px;
  color: #1B303E;
}

.services-pg .serv_card .box_s .line {
  border-bottom: 1px solid #E7E7E7;
  width: 90%;
  display: block;
  height: 1px;
  margin: 40px auto 0 auto;
}

.services-pg .serv_card .box_s .img_box {
  height: 150px;
  position: relative;
}

.services-pg .serv_card .box_e {
  height: 100%;
  padding: 2vw;
  background-color: #F5F1F1;
}

.services-pg .serv_card .box_e .custom_ul .li {
  display: block;
  margin-bottom: 30px;
  position: relative;
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
}

.services-pg .serv_card .box_e .custom_ul .li::before {
  content: '';
  width: 20px;
  height: 14px;
  background: url(../images/icons/check.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: 5px;
  top: 5px;
}

.services-pg .serv_card .box_e .logo_img {
  width: 100%;
  height: 115px;
  margin-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services-pg .serv_card .box_e .content_box .item .title i {
  width: 16px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  color: var(--purple);
}

/**********************************************
    Start Edit stations det Page 
**********************************************/
.stations-det {
  background-color: #f9f9f9;
  overflow: unset;
}

.stations-det .box {
  position: relative;
  background-color: #fff;
    padding: 36px 45px;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.03);
}

.stations-det .img_box .swiper_box .lg-slide-swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  overflow-x: hidden;
}

.stations-det .img_box .swiper_box .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 15px;
}

.stations-det .img_box .swiper_box .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  position: relative;
  z-index: 1;
}

.stations-det .img_box .swiper_box .sm-slide-swiper {
  overflow: hidden;
  height: 150px;
  padding-bottom: 4px;
}

.stations-det .img_box .swiper_box .sm-slide-swiper .swiper-slide {
  opacity: .7;
  cursor: pointer;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.stations-det .img_box .swiper_box .sm-slide-swiper .sm-bg-header {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 4px;
  border-radius: 15px;
  border: 2px solid transparent;
  padding: 0px;
}

.stations-det .img_box .swiper_box .sm-slide-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.stations-det .img_box .swiper_box .sm-slide-swiper .swiper-slide-thumb-active .sm-bg-header {
  border-color: var(--purple) !important;
}

.stations-det .text_box {
  padding: 40px 30px;
}

.stations-det .text_box .p {
  line-height: 2.2;
  color: #777;
}

.stations-det .sm_box {
  padding: 40px 30px 20px 30px;
}

.stations-det .sm_box .data {
  line-height: 2.2;
  color: #777;
  font-size: 15px;
}

.stations-det .sm_box .pattern {
  position: absolute;
  bottom: 5px;
  inset-inline-end: 5px;
  width: 72%;
  opacity: .05;
  pointer-events: none;
}

.stations-det .services_box {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.03);
}

.stations-det .services_box .services_nav {
  background-color: #eee;
  padding: 0 2rem;
  border-radius: 15px 15px 0 0;
}

.stations-det .services_box .services_nav .nav-link {
  font-size: 15px;
  min-width: 120px;
  height: 90px;
  border-radius: 0;
  font-weight: bold;
  color: #666;
  border-top: 5px solid transparent;
}

.stations-det .services_box .services_nav .nav-link.active {
  background-color: #fff;
  color: var(--secondary);
  border-top: 5px solid var(--primary);
  height: 96px;
  margin-top: -6px;
}

.stations-det .services_box .tab_wrapper {
  padding: 30px 2vw;
}

.stations-det .services_box .tab_wrapper .p {
  line-height: 2;
  color: #777;
}

.stations-det .accordion .accordion-item {
  border: transparent;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

.stations-det .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary);
}

.stations-det .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary);
}

.stations-det .accordion .accordion-item .accordion-button {
  padding: 1rem 2rem;
  font-weight: bold;
  color: #333;
  font-size: 17px;
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}

.stations-det .accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.stations-det .accordion .accordion-item .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  background-image: unset;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  inset-inline-start: 20px;
  top: 15px;
}

.stations-det .accordion .accordion-item .accordion-body {
  padding: 1.5rem 1.25rem;
  -webkit-box-shadow: 30px 30px 60px 0 rgba(0, 0, 1, 0.05);
          box-shadow: 30px 30px 60px 0 rgba(0, 0, 1, 0.05);
}

.stations-det .accordion .accordion-item .accordion-body .p {
  font-size: 14px;
}

.stations-det .order_butn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 15px;
  z-index: 999;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
}

/**********************************************
    Start Edit rental_form Page 
**********************************************/
.form_pg {
  background-color: #f9f9f9;
}

.form_pg .inner {
  position: relative;
  background-color: #fff;
  padding: 50px 3vw;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
}

.form_pg .inner .form-group {
  margin-bottom: 30px;
}

.form_pg .inner .form-group .label {
  margin-bottom: 0.8rem;
  font-weight: bold;
  font-size: 14px;
}

.form_pg .inner .form-group .form-control {
  background-color: #f9f9f9;
  border-color: #f4f4f4;
}

.form_pg .inner .form-group .radios_row {
  height: 60px;
}

.form_pg .inner .form-group .drop_box {
  overflow: hidden;
  height: 60px;
  background-color: #f9f9f9;
  border: 1px solid #f4f4f4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.form_pg .inner .form-group .drop_box .kwt-file {
  width: 100%;
}

.form_pg .inner .form-group .drop_box .kwt-file__drop-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form_pg .inner .form-group .drop_box .kwt-file__drop-area.is-active {
  background-color: #eacee5;
}

.form_pg .inner .form-group .drop_box .kwt-file__choose-file {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--purple);
  border-radius: 5px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  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;
  font-size: 15px;
}

.form_pg .inner .form-group .drop_box .kwt-file__choose-file.kwt-file_btn-text {
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
}

.form_pg .inner .form-group .drop_box .kwt-file__choose-file svg {
  width: 19px;
  height: 19px;
  display: block;
}

.form_pg .inner .form-group .drop_box .kwt-file__msg {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form_pg .inner .form-group .drop_box .kwt-file__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  padding-inline-end: 37px;
}

.form_pg .inner .form-group .drop_box .kwt-file__input:focus {
  outline: none;
}

.form_pg .inner .form-group .drop_box .kwt-file__delete {
  display: none;
  position: absolute;
  inset-inline-end: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form_pg .inner .form-group .drop_box .kwt-file__delete:before {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}

.form_pg .inner .form-group .drop_box .kwt-file__delete:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  background-color: #1d3557;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form_pg .inner .form-group .drop_box .kwt-file__delete:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(2.2);
          transform: translate(-50%, -50%) scale(2.2);
  opacity: 0.1;
}

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

/**********************************************
    Start Edit jobs Page 
**********************************************/
.jobs-sec .job_card {
  position: relative;
  padding: 45px;
  background-color: #f8f8f8;
  margin-bottom: 30px;
  border-radius: 15px;
}

.jobs-sec .job_card .date {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.jobs-sec .job_card .date i {
  color: var(--secondary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.jobs-sec .job_card .butn {
  padding: 0.9rem 1rem;
  font-size: 13px;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--purple);
  margin: 0 4px;
  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;
  padding: 0;
  width: 45px;
  height: 40px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--purple);
  color: #fff !important;
}



/**********************************************
   Start Loader
**********************************************/

/* The Loader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.no-js #loader-wrapper {
  display: none;
}

#loader {
  display: block;
    position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #EDA523;
  -webkit-animation: spin 1.7s linear infinite;
          animation: spin 1.7s linear infinite;
  z-index: 999;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #8FC744;
  -webkit-animation: spin-reverse 0.6s linear infinite;
          animation: spin-reverse 0.6s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #613458;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #361d31;
  z-index: 10;
  opacity: .85;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}
/*# sourceMappingURL=style.css.map */


.stateModal .img {
    width: 60px;
    height: 60px;
}

.modal-content {
    padding: 20px;
}

.modal-content h3 {
    font-size: 18px;
}


@media (min-width: 992px) {
    
    .modal-lg {
        max-width: 450px;
    }
    
}


/*--------- 09/02/2025 ---------*/
.files-sec {
    position: relative;
    padding: 50px 0 80px;
    background-color: #f7f7f7;
}
.files-sec .cards .item {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #61345815;
    margin-top: 30px;
    height: calc(100% - 30px);
}

.files-sec .cards .item .icon {
    margin-bottom: 30px;
}

.files-sec .cards .item .icon img {
    height: 50px;
}

.files-sec .cards .item:hover {
    border-color: #613458;
}

.files-sec .floating-number {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 50;
    font-size: 13px;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 0 30px 30px 0;
    box-shadow: 10px 10px 30px #0001;
}



