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

@font-face {
  font-family: 'rb_regular';
  src: url(../fonts/rb/regular.TTF);
}

@font-face {
  font-family: 'rb_bold';
  src: url(../fonts/rb/bold.TTF);
}

:root {
  --primary: #B61D22;
  --secondary: #2E3192;
  --filterPrimary: invert(10%) sepia(88%) saturate(4240%) hue-rotate(350deg) brightness(113%) contrast(91%);
  --filterSecondary: invert(20%) sepia(15%) saturate(4068%) hue-rotate(213deg) brightness(83%) contrast(104%);
  --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: 'rb_regular';
  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,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

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

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

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

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

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

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

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

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;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  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: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  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);
}

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

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

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}

#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader::before {
  top: 0;
}

#preloader::after {
  bottom: 0;
}

#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}

#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #0005;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#preloader #loading-wrapper.show {
  display: block;
}

#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}

#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  animation: loader 3s linear infinite;
}

#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
  opacity: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}

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

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

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

@-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-transform: scale(1.05);
          transform: scale(1.05);
  -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-transform: scale(1.05);
          transform: scale(1.05);
  -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;
}

/**********************************************
    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: 8px;
  height: 8px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--primary) !important;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

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

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

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

.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: '\f0d9';
}

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

.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: #fff;
  border: 1px solid #D6D3D3;
}

.butn:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff !important;
}

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

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

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

.butn_w_arrow {
  position: relative;
  -webkit-padding-start: 2rem;
          padding-inline-start: 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: 16px;
  border: 1px solid transparent;
  border-radius: 55px;
  height: 50px;
  width: 170px;
  -webkit-padding-end: 60px;
          padding-inline-end: 60px;
  text-transform: uppercase;
}

.butn_w_arrow::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 55px;
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.butn_w_arrow i {
  position: absolute;
  inset-inline-end: 16px;
  top: 16px;
  font-size: 20px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

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

.butn_w_arrow.secondary_butn i {
  color: var(--secondary);
}

.butn_w_arrow.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn_w_arrow.primary_butn i {
  color: var(--primary);
}

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

.butn_w_arrow:hover::before {
  width: calc(100% - 10px);
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 0;
}

.navs-container .navbar .navbar-brand {
  padding: 0;
}

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

.navs-container .navbar .navs_inner {
  -webkit-border-start: 1px solid #eee;
          border-inline-start: 1px solid #eee;
  width: 100%;
}

.navs-container .navbar .navs_inner .top_nav {
  padding: 15px 2vw 15px 2vw;
  border-bottom: 1px solid #eee;
}

.navs-container .navbar .navs_inner .top_nav .contact_links a {
  font-size: 13px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.navs-container .navbar .navs_inner .top_nav .contact_links a .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.navs-container .navbar .navs_inner .top_nav .social_links a {
  font-size: 13px;
  color: var(--secondary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.navs-container .navbar .navs_inner .main_nav {
  padding: 1rem;
}

.navs-container .navbar .navs_inner .main_nav .nav-link {
  color: var(--secondary);
  margin: 0 10px;
  font-size: 17px;
}

.navs-container .navbar .navs_inner .main_nav .nav-link.active {
  font-weight: bold;
}

.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 .newsletter_inner {
  border-radius: 15px;
  background-color: #fff;
  padding: 0px 7vw;
  margin-bottom: -120px;
  -webkit-box-shadow: -20px -10px 30px 0 rgba(167, 167, 167, 0.073);
          box-shadow: -20px -10px 30px 0 rgba(167, 167, 167, 0.073);
}

.footer .newsletter_inner .form_box .form-control {
  background-color: #f5f5f5;
  border-color: #f2f2f2;
  border-radius: 35px;
}

.footer .newsletter_inner .form_box .submit_butn {
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
}

.footer .footer_outer {
  background-color: #080735;
  padding-top: 200px;
}

.footer .footer_outer .content {
  margin-bottom: 35px;
}

.footer .footer_outer .content .logo {
  width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

.footer .footer_outer .content .p {
  font-size: 12px;
  color: #fff9;
}

.footer .footer_outer .content .title {
  font-size: 18px;
}

.footer .footer_outer .content .links a {
  display: block;
  margin-bottom: 15px;
  color: #fff9;
  font-size: 16px;
}

.footer .footer_outer .content .contact_links p {
  margin-bottom: 15px;
  color: #fff9;
  font-size: 16px;
}

.footer .footer_outer .content .contact_links p i {
  color: var(--primary);
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.footer .foot {
  padding: 15px 0;
}

.footer .foot .copyright_p {
  font-size: 14px;
}

.footer .foot .copyright_p .alyom_logo {
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.footer .foot .social_links a {
  color: #888;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  min-height: 95vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .txt_box {
  padding: 25px 0;
  -webkit-padding-start: 3vw;
          padding-inline-start: 3vw;
  -webkit-border-start: 2px solid #eeeeeeac;
          border-inline-start: 2px solid #eeeeeeac;
}

.header .txt_box .subtitle {
  font-size: 24px;
  color: #f5f5f5;
}

.header .txt_box .subtitle .left_arrows {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.header .txt_box .title {
  font-size: 72px;
  line-height: 1.4;
}

.header::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-image: -webkit-gradient(linear, left top, right top, from(#00000075), to(#000000eb));
  background-image: linear-gradient(to right, #00000075, #000000eb);
  z-index: 1;
}

.header .carImg {
  position: absolute;
  width: 40%;
  bottom: 0;
  inset-inline-end: 0;
  z-index: 2;
}

.header .planeImg {
  position: absolute;
  inset-inline-start: 1%;
  bottom: 16%;
  z-index: 2;
  width: 12%;
}

.about_sec .img_box {
  height: 540px;
  position: relative;
}

.about_sec .img_box .secImg {
  -o-object-fit: cover;
     object-fit: cover;
}

.about_sec .img_box .secImg.img1 {
  width: 80%;
  border-radius: 35px;
  border: 5px solid #fff;
  -webkit-box-shadow: 0 60px 30px 0 #d9d9d9a1;
          box-shadow: 0 60px 30px 0 #d9d9d9a1;
}

.about_sec .img_box .secImg.img2 {
  width: 250px;
  height: 270px;
  border-radius: 35px;
  border: 5px solid #fff;
  position: absolute;
  inset-inline-end: 0;
  bottom: 115px;
}

.about_sec .img_box .exp_box {
  width: 130px;
  height: 135px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: var(--primary);
  position: absolute;
  bottom: -20px;
  inset-inline-end: 50px;
}

.about_sec .img_box .exp_box::before {
  content: '';
  width: 27px;
  height: 20px;
  background-color: #ab1b20;
  position: absolute;
  inset-inline-start: -27px;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.about_sec .img_box .circles {
  position: absolute;
  top: 33px;
  inset-inline-end: 35px;
  z-index: -1;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about_sec .txt_box .box {
  background-color: #FBFBFB;
  border-radius: 25px;
  -webkit-border-start: 4px solid var(--primary);
          border-inline-start: 4px solid var(--primary);
  padding: 25px;
}

.about_sec .txt_box .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about_sec .txt_box .box ul li {
  width: 48%;
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_sec .txt_box .box ul li::before {
  content: '';
  background: url(../images/icons/left_arrow.svg) no-repeat center;
  background-size: contain;
  display: block;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 24px;
  height: 24px;
}

.features_sec {
  background-color: #080735;
}
.features_sec .swiper-slide {
    height: auto;
}
.features_sec .feature_card {
    height: 100%;
  position: relative;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features_sec .feature_card .icon_box {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FCF6F6;
  margin: 0 auto 25px auto;
}

.features_sec .feature_card .icon_box .icon {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features_sec .feature_card .label {
  font-size: 17px;
  color: #1E1E1E;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features_sec .feature_card:hover {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: #ffffff0e;
}

.features_sec .feature_card:hover .label {
  color: var(--primary);
}

.features_sec .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff9;
}

.features_sec .bg {
  width: 80%;
  right: unset;
  opacity: .03;
}

.gallery_sec .gallery_card {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

.gallery_sec .gallery_card::after {
  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);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery_sec .gallery_card.lg_card {
  height: 600px;
}

.gallery_sec .gallery_card.sm_card {
  height: 290px;
}

.gallery_sec .gallery_card:hover::after {
  opacity: 0;
}

.blog_sec {
  background-color: #FBFBFB;
}

.blog_sec .blog_card {
  position: relative;
  background-color: transparent;
  padding: 0 45px;
  margin-bottom: 50px;
}

.blog_sec .blog_card .img_box {
  position: relative;
  height: 400px;
  z-index: 5;
}

.blog_sec .blog_card .img_box .secImg {
  border-radius: 10px;
}

.blog_sec .blog_card .img_box .badge_categ {
  width: 200px;
  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;
  font-weight: bold;
  color: var(--primary);
  font-weight: bold;
  font-size: 17px;
  background-color: #fff;
  position: absolute;
  top: 30px;
  inset-inline-start: -30px;
  border-radius: 5px;
}

.blog_sec .blog_card .img_box .badge_categ::before {
  content: '';
  width: 33px;
  height: 13px;
  background-color: #1E1E1E;
  position: absolute;
  inset-inline-start: 0;
  top: -13px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.blog_sec .blog_card .img_box .dateTime {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 60px 90px 0 rgba(46, 45, 123, 0.19);
          box-shadow: 0 60px 90px 0 rgba(46, 45, 123, 0.19);
  font-size: 14px;
  color: #454545;
}

.blog_sec .blog_card .card-body {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 40px;
}

.blog_sec .blog_card .card-body .title {
  font-size: 16px;
  color: #1E1E1E;
}

.blog_sec .blog_card .card-body .butn {
  margin: 35px auto -40px auto;
}

.blog_sec .blog_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: #fff;
  -webkit-box-shadow: 0 60px 90px 0 rgba(46, 45, 123, 0.04);
          box-shadow: 0 60px 90px 0 rgba(46, 45, 123, 0.04);
  height: 80%;
  top: unset;
  border-radius: 10px;
}

.blog_sec .search_box .form-control {
  background-color: #f5f5f5;
  border-color: #f2f2f2;
  border-radius: 35px;
}

.blog_sec .search_box .submit_butn {
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  text-align: center;
  background-color: #080735;
}

.pg_header .bread .item {
  font-size: 15px;
  color: #eee;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.pg_header .bread .item::after {
  content: '\f104';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  color: #6e7c878d;
}

.pg_header .bread .item.active {
  color: #fff;
}

.pg_header .bread .item.active::after {
  display: none;
}

.pg_header .bg {
  width: 80%;
  right: unset;
  opacity: .03;
}

/**********************************************
    Start Edit blog_det Page 
**********************************************/
.blog_det .box {
  padding: 45px 3vw;
  background-color: #f9f9f9;
  border-radius: 15px;
}

.blog_det .box .item {
  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-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.blog_det .box .item .img {
  width: 110px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  border-radius: 15px;
}

.blog_det .box .item .txt {
  width: calc(100% - 125px);
}

.blog_det .box .item .txt .date {
  color: var(--primary);
  font-size: 13px;
}

.blog_det .box .item .txt .date i {
  color: #11487B;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.blog_det .box a:last-child .item {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content_pg .blog_card .img_box {
  height: 100px !important;
}

.content_pg .blog_card .img_box .badge_categ {
  background-color: #f5f5f5;
  inset-inline-start: -5vw;
}

.content_pg .blog_card::before {
  height: 100%;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about_cards .item {
  position: relative;
  border-radius: 25px;
  padding: 35px 35px;
  background-color: #FAFAFA;
  border: 1px solid transparent;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.about_cards .item .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
  display: block;
}

.about_cards .item .label {
  font-size: 24px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 15px;
}

.about_cards .item .p {
  font-size: 13px;
  color: #606060;
}

.about_cards .item:hover {
  border-color: var(--primary);
  background-color: #fff;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .form_box {
  padding: 50px 3vw;
  border-radius: 15px;
  -webkit-box-shadow: 0 0px 25px 0 rgba(0, 0, 0, 0.049);
          box-shadow: 0 0px 25px 0 rgba(0, 0, 0, 0.049);
}

.contact_pg .form_box .text_head .title {
  font-size: 44px;
  font-weight: 900;
  color: #1F1F1F;
  line-height: 1.4;
  font-family: 'rb_bold';
}

.contact_pg .form_box .label {
  font-size: 13px;
  margin-bottom: .6rem;
  text-transform: capitalize;
}

.contact_pg .form_box input, .contact_pg .form_box select {
  height: 55px !important;
}

.contact_pg .form_box .form-group .form-control {
  -webkit-padding-start: 55px;
          padding-inline-start: 55px;
  border-radius: 10px;
}

.contact_pg .form_box .form-group .icon {
  font-size: 20px;
  color: var(--primary);
  position: absolute;
  inset-inline-start: 20px;
  top: 16px;
}

.contact_pg .form_box .phone_group .form-control {
  padding-left: 95px;
  text-align: left;
}

.contact_pg .form_box .phone_group .countryCode_span {
  position: absolute;
  left: 1px;
  top: 1px;
  height: calc(100% - 2px);
  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 1rem;
  background-color: #eee;
  font-size: 15px;
  font-weight: bold;
  direction: ltr;
  border-radius: 10px 0 0 10px;
}

.contact_pg .form_box .phone_group .submit_phone_butn {
  position: absolute;
  right: 54px;
  top: 26px;
  color: var(--secondary);
  font-size: 11px;
  text-decoration: underline !important;
  font-weight: bold;
}

.contact_pg .form_box textarea {
  padding-top: 20px;
}

.contact_pg .form_box .butn {
  font-size: 22px;
  height: 55px;
  min-width: 180px;
}

.contact_pg .data_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FCF6F6;
  border: 1px solid var(--primary);
  border-radius: 15px;
  padding: 45px 3vw;
  margin-bottom: 25px;
}

.contact_pg .data_box .item .icon_box {
  position: relative;
  width: 65px;
  height: 65px;
  background-color: var(--primary);
  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;
  font-size: 22px;
  color: #fff;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.contact_pg .data_box .item .txt {
  width: calc(100% - 80px);
}

.contact_pg .data_box .item .txt .label {
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
}

.contact_pg .data_box .item .txt .data {
  font-size: 18px;
  color: #8A8A8A !important;
}

.contact_pg .data_box .item .txt .social_links a {
  width: 30px;
  height: 30px;
  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: #666;
  background: #f5f5f5;
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 14px;
}

.contact_pg .data_box .item .txt .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.contact_pg .data_box .map_box iframe {
  border-radius: 20px;
}

/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .d_mob_none {
    display: none !important;
  }
  .navs-container .navbar {
    padding: 1rem 1rem 0 1rem;
  }
  .navs-container .navbar .navs_inner {
    -webkit-border-start: none;
            border-inline-start: none;
  }
  .navs-container .navbar .navs_inner .top_nav {
    padding: 15px 0vw 0px 0vw;
    border-bottom: none;
  }
  .navs-container .navbar .navbar-toggler {
    position: absolute;
    top: 30px;
    inset-inline-end: 0;
  }
  .header .txt_box .title {
    font-size: 30px;
  }
  .about_sec .txt_box .box ul li {
    width: 100%;
  }
  .gallery_sec .gallery_card {
    height: 150px !important;
  }
  .blog_sec .butn_w_arrow {
    display: none;
  }
  .blog_sec .blog_card {
    padding: 0 15px;
  }
  .blog_sec .blog_card .img_box {
    height: 250px;
  }
  .navs-container .navbar .navs_inner .top_nav .contact_links a {
    font-size: 10px;
  }
    .about_sec .img_box .secImg.img1 {
        box-shadow: 0 10px 30px 0 #d9d9d9a1;
    }

     .about_sec .img_box  {
        margin-bottom: 30px ;
    }
}

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

/*# sourceMappingURL=style.css.map */