@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary: #FE6A00;
  --secondary: #004AAD;
  --filterPrimary: invert(50%) sepia(82%) saturate(3683%) hue-rotate(0deg) brightness(104%) contrast(105%);
  --filterSecondary:invert(18%) sepia(45%) saturate(4891%) hue-rotate(205deg) brightness(94%) contrast(105%);
  --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: "Alexandria", 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,
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 floatingY {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes floatingY {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

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

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

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

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

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

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.section .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.section .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.section .swiper-button-next,
.section .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 50%;
  background-image: unset;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 3px 10px 0 #0001;
          box-shadow: 3px 3px 10px 0 #0001;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.section .swiper-button-next::before,
.section .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(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

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

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

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.section .swiper-button-next,
.section .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,
.section .swiper-button-next::before,
.section .swiper-container-rtl .swiper-button-prev::before {
  content: '\f061';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.section .swiper-button-prev,
.section .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,
.section .swiper-button-prev::before,
.section .swiper-container-rtl .swiper-button-next::before {
  content: '\f060';
}

.butn {
  position: relative;
  padding: .7rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: bold;
}

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

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

.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: var(--primary);
}

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

.title_box {
  background-color: #fff;
  border-radius: 15px;
  font-size: 18px;
  padding: 1rem 3rem;
  border: 1px solid #f8f8f8;
  -webkit-box-shadow: 0 4px 4px 0 #0001;
          box-shadow: 0 4px 4px 0 #0001;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.title_box::after, .title_box::before {
  content: '';
  width: 14px;
  height: 1px;
  background-color: #D8D8D8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.title_box::before {
  inset-inline-start: 0;
}

.title_box::after {
  inset-inline-end: 0;
}

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

.navs-container .navbar .nav-link {
  font-size: 16px;
  color: #1F1F1F;
  margin: 0 10px;
}

.navs-container .navbar .nav-link.active {
  color: var(--secondary);
}

.navs-container .navbar .dropdown button {
  font-size: 14px;
}

.navs-container .navbar .dropdown button .icon {
  width: 30px;
  border-radius: 50%;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.navs-container .navbar .dropdown .dropdown-menu {
  text-align: center;
  border-radius: 15px;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 15px 0 #3331;
          box-shadow: 0px 0px 15px 0 #3331;
  font-size: 13px;
  border: 1px solid #eee;
}

.navs-container .navbar .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}

.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_box {
  background-color: var(--secondary);
  padding: 45px;
  border-radius: 15px;
}

.footer .newsletter_box .form-group .form-control {
  border-radius: 25px;
  height: 55px !important;
  background-color: #f9f9f9;
}

.footer .newsletter_box .form-group .submit_butn {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 60px;
  height: 55px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 25px 0 0 25px;
}

.footer .footer_box .content {
  margin-bottom: 25px;
}

.footer .footer_box .content .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 25px;
}

.footer .footer_box .content .links a {
  display: block;
  margin: 15px 0;
  font-size: 14px;
  color: #3A3A3A;
}

.footer .footer_box .content .contact_data .p {
  margin-bottom: 15px;
  color: #3A3A3A;
  font-size: 14px;
}

.footer .footer_box .content .contact_data .p i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.footer .footer_box .content .social_links a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #eee;
  color: var(--primary);
  border-radius: 50%;
  margin: 0 .5vw;
}

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

.footer .footer_box .foot {
  border-top: 1px solid #eee;
  text-align: center;
}

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

.footer .footer_box .foot .copyright_p .alyom_logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer::before {
  content: '';
  width: 400px;
  height: 400px;
  border-radius: 50%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  position: absolute;
  bottom: 0%;
  background-color: rgba(0, 74, 173, 0.12);
  left: 0%;
  opacity: .6;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .txt_box .title {
  font-size: 46px;
  line-height: 1.5;
}

.header .txt_box .p {
  font-size: 14px;
}

.header .lines {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  pointer-events: none;
}

.header .lines .lineImg {
  pointer-events: none;
}

.header .lines::after {
  content: '';
  width: 26px;
  height: 26px;
  background-color: #004AAD;
  position: absolute;
  bottom: 23px;
  left: 0;
  border-radius: 50%;
  display: block;
  -webkit-animation: circleMovine 5s linear alternate infinite;
          animation: circleMovine 5s linear alternate infinite;
}

@-webkit-keyframes circleMovine {
  0% {
    bottom: 23px;
  }
  40% {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    bottom: 0px;
  }
  60% {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
    bottom: 15px;
  }
  80% {
    -webkit-transform: translateX(350px);
            transform: translateX(350px);
    bottom: 45px;
  }
  100% {
    -webkit-transform: translateX(490px);
            transform: translateX(490px);
    bottom: 150px;
  }
}

@keyframes circleMovine {
  0% {
    bottom: 23px;
  }
  40% {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    bottom: 0px;
  }
  60% {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
    bottom: 15px;
  }
  80% {
    -webkit-transform: translateX(350px);
            transform: translateX(350px);
    bottom: 45px;
  }
  100% {
    -webkit-transform: translateX(490px);
            transform: translateX(490px);
    bottom: 150px;
  }
}

.header::before {
  content: '';
  width: 350px;
  height: 350px;
  background-color: rgba(0, 74, 173, 0.05);
  border-radius: 50%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  position: absolute;
  top: 10px;
  left: 45%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header::after {
  content: '';
  width: 400px;
  height: 400px;
  background-color: rgba(254, 106, 0, 0.12);
  border-radius: 50%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  position: absolute;
  top: 24%;
  left: 4%;
}

.partners_sec {
  overflow: unset;
}

.partners_sec .partner_card {
  height: 150px;
  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;
}

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

.partners_sec .partner_card .logo:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.partners_sec::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);
  background-color: #fff;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  height: 150px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.partners_sec .partners_swiper {
  overflow: hidden;
}

.partners_sec .pattern {
  position: absolute;
  top: -122%;
  right: 0;
  width: 45%;
  pointer-events: none;
}

.partners_sec .pattern2 {
  position: absolute;
  bottom: -60%;
  left: 0;
  width: 30%;
  pointer-events: none;
}

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

.about_sec .img_box .secImg {
  background-color: #fff;
  position: relative;
  z-index: 5;
}

.about_sec .img_box::before {
  content: '';
  width: 180%;
  height: 150%;
  background: url(../images/shadow.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -23%;
  left: -60%;
}

.about_sec .txt_box {
  position: relative;
  z-index: 5;
}

.about_sec .txt_box .title {
  font-size: 26px;
}

.about_sec .txt_box .p {
  color: #686868;
  margin: 10px 0;
}

.statics_sec .static_card {
  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;
  margin: 15px 0;
}

.statics_sec .static_card .icon_box {
  width: 80px;
  height: 80px;
  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;
  border: 1px solid #EEEEEE;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.statics_sec .static_card .content {
  width: calc(100% - 100px);
}

.statics_sec .static_card .content .counter {
  font-size: 44px;
}

.statics_sec .static_card .content .label {
  font-size: 20px;
  color: #1F1F1F;
}

.statics_sec::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);
  background-color: #fff;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  height: 150px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services_sec .serv_card {
  padding: 35px 25px;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border: 1px solid #f6f6f6;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background: #fff;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.services_sec .serv_card .icon_box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--secondary);
  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;
}

.services_sec .serv_card .icon_box .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services_sec .serv_card .more_butn {
  border: 1px solid #f5f5f5;
  border-radius: 25px;
  padding: .6rem 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 0 5px 0 #0001;
          box-shadow: 0 0 5px 0 #0001;
  font-size: 13px;
}

.services_sec .serv_card .more_butn .icon {
  background-color: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  color: #fff;
  font-size: 18px;
}

.services_sec .serv_card:hover {
  border-color: var(--primary);
}

.services_sec .swiper-slide:nth-child(n) .serv_card .icon_box {
  background-color: #FFCF19;
}

.services_sec .swiper-slide:nth-child(n) .serv_card .more_butn .icon {
  background-color: #FFCF19;
}

.services_sec .swiper-slide:nth-child(2n) .serv_card .icon_box {
  background-color: #2EBC88;
}

.services_sec .swiper-slide:nth-child(2n) .serv_card .more_butn .icon {
  background-color: #2EBC88;
}

.services_sec .swiper-slide:nth-child(3n) .serv_card .icon_box {
  background-color: #5B5B85;
}

.services_sec .swiper-slide:nth-child(3n) .serv_card .more_butn .icon {
  background-color: #5B5B85;
}

.services_sec .services_swiper {
  overflow: hidden;
}

.services_sec .swiper-button-next,
.services_sec .swiper-button-prev {
  top: 60%;
}

.services_sec::after, .services_sec::before {
  content: '';
  width: 600px;
  height: 300px;
  border-radius: 20%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  position: absolute;
  top: 40%;
  opacity: .4;
}

.services_sec::before {
  background-color: rgba(0, 74, 173, 0.12);
  left: 4%;
}

.services_sec::after {
  background-color: rgba(254, 106, 0, 0.12);
  right: 4%;
}

.feedback_sec .box {
  position: relative;
  height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feedback_sec .box::before {
  content: '';
  width: 100%;
  height: 460px;
  background: url(../images/shape-1.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.feedback_sec .box::after {
  content: '';
  background: url(../images/shape-2.svg) no-repeat center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 39px;
  left: 0;
}

.feedback_sec .feeback_card {
  height: 245px;
  position: relative;
  padding: 35px 25px;
  border-radius: 15px;
  -webkit-box-shadow: -3px 3px 10px 0 #0001;
          box-shadow: -3px 3px 10px 0 #0001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  border: 1px solid #f6f6f6;
  background-color: #fff;
}

.feedback_sec .feeback_card .p {
  font-size: 18px;
  line-height: 2;
  max-height: 110px;
  overflow: hidden;
}

.feedback_sec .feeback_card .name {
  font-weight: bold;
  color: #000;
}

.feedback_sec .swiper-button-next,
.feedback_sec .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin: 0 5px;
}

.feedback_sec .swiper-3d .swiper-slide-shadow {
  display: none;
}

.feedback_sec .star {
  position: absolute;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback_sec .star.star1 {
  right: 18%;
  bottom: 15%;
  -webkit-animation: rotate-center 6s linear infinite both;
          animation: rotate-center 6s linear infinite both;
}

.feedback_sec .star.star2 {
  width: 30px;
  right: 22%;
  bottom: 10%;
  -webkit-animation: floatingY 1s linear infinite both alternate;
          animation: floatingY 1s linear infinite both alternate;
}

.feedback_sec .pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback_sec2 .feeback_card {
  height: 245px;
  position: relative;
  padding: 25px 15px;
  border-radius: 15px;
  -webkit-box-shadow: -3px 3px 10px 0 #0001;
          box-shadow: -3px 3px 10px 0 #0001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #f6f6f6;
  background-color: #ffffff;
}

.feedback_sec2 .feeback_card .p {
  font-size: 18px;
  line-height: 2;
  max-height: 110px;
  overflow: hidden;
}

.feedback_sec2 .feeback_card .name {
  font-weight: bold;
  color: #000;
}

.feedback_sec2 .swiper-container {
  overflow: hidden;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit about Page 
**********************************************/
.about_cards .about_card {
  padding: 40px 30px;
  position: relative;
  -webkit-box-shadow: 0px 4px 25px 0px #00000010;
          box-shadow: 0px 4px 25px 0px #00000010;
  background-color: #fff;
  height: calc(100% - 35px);
  margin-bottom: 35px;
  border-radius: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about_cards .about_card .content {
  position: relative;
  z-index: 5;
}

.about_cards .about_card .icon_box {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  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: 25px;
          margin-inline-end: 25px;
  color: #fff;
  border-radius: 50%;
}

.about_cards .about_card .p {
  font-size: 12px;
}

.about_cards .about_card::before {
  content: '';
  background: url(../images/about_card_shape.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 22px;
  left: 0;
  opacity: 0.08;
  width: 150px;
  height: 100px;
  background-position: left top;
}

.about_cards .about_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.about_cards .col-lg-4:nth-child(2) .about_card .icon_box {
  background-color: #2EBC88;
}

.about_cards .col-lg-4:nth-child(3) .about_card .icon_box {
  background-color: var(--primary);
}

.about_cards::after, .about_cards::before {
  content: '';
  width: 600px;
  height: 300px;
  border-radius: 20%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  position: absolute;
  top: 20%;
  opacity: .2;
}

.about_cards::before {
  background-color: rgba(0, 74, 173, 0.12);
  left: 4%;
}

.about_cards::after {
  background-color: rgba(254, 106, 0, 0.12);
  right: 4%;
}

.ceo_sec .txt_box {
  padding: 40px 15px;
}

.ceo_sec .txt_box .p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 2;
}

.ceo_sec .img_box {
  position: relative;
  height: 100%;
}

.ceo_sec .img_box::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);
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background-image: linear-gradient(to right, #fff, transparent);
  width: 40%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  right: unset;
}

/**********************************************
    Start Edit services_det Page 
**********************************************/
.serv_det .box_head {
  position: relative;
  padding: 50px 0;
}

.serv_det .box_head .img_box {
  border-radius: 25px;
  border: 5px solid #f5f5f5;
  overflow: hidden;
  height: 400px;
}

.serv_det .box_head .img_box .secImg {
  border-radius: 25px;
}

.serv_det .box_head .txt_box {
  -webkit-padding-end: 2vw;
          padding-inline-end: 2vw;
}

.serv_det .box_head .txt_box .categ {
  background-color: var(--primary);
  padding: .4rem 1.5rem .6rem 1.5rem;
  border-radius: 25px;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
}

.serv_det .box_head .txt_box .date {
  font-size: 15px;
  color: #555;
}

.serv_det .box_head .txt_box .date i {
  color: #D8B981;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.serv_det .box_head::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: #FE6A00;
  width: 70%;
  right: unset;
  left: unset;
  inset-inline-start: 0;
  border-radius: 30px 0   0 30px;
  opacity: .12;
}

.serv_det .p {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 10px;
  text-align: justify;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content_pg .box {
  border: 1px solid #d8d8d865;
  border-radius: 25px;
  padding: 0 4vw 50px 4vw;
  position: relative;
}

.content_pg .box .p {
  font-size: 15px;
  line-height: 2.2;
}

.content_pg .title_box {
  margin-top: -27.5px;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery_pg .nav-link {
  padding: 1.3rem 2rem 1rem 2rem;
  width: 170px;
  border-radius: 10px;
  background-color: #f5f5f5;
  color: #080822;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  font-weight: bold;
  border-bottom: 9px solid transparent;
}

.gallery_pg .nav-link .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.gallery_pg .nav-link.active {
  background-color: #121241;
  color: #fff;
  border-bottom: 9px solid var(--primary);
}

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

.gallery_pg .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_pg .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_pg .button.is-play .triangle {
  -webkit-animation: fadeIn 7s ease;
          animation: fadeIn 7s ease;
}

.gallery_pg .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_pg .button .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
          animation: smallScale 3s infinite;
}

.gallery_pg .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_pg .gallery_card {
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid #f5f5f5;
}

.gallery_pg .gallery_card .img-box {
  height: 300px;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}

.gallery_pg .gallery_card .img-box .secImg {
  border-radius: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.gallery_pg .gallery_card:hover .img-box .secImg {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery_pg .swiper-container {
  overflow: hidden;
}

.gallery_pg .imgGallery_swiper .gallery_card {
  margin-bottom: 10px;
}

.gallery_pg .imgGallery_swiper .gallery_card .img-box {
  height: 262px;
}

.gallery_pg .imgGallery_swiper .lg_card .img-box {
  height: 550px;
}

.gallery_pg .vidGallery_swiper .gallery_card {
  margin-bottom: 20px;
}

/**********************************************
    Start Edit career Page 
**********************************************/
.career_pg .form_box {
  border: 1px solid #d8d8d865;
  border-radius: 25px;
  padding: 0 4vw 50px 4vw;
  position: relative;
}

.career_pg .form_box form {
  position: relative;
  z-index: 5;
}

.career_pg .form_box form .form-control {
  border-radius: 15px;
  font-size: 12px;
  height: 55px !important;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.career_pg .form_box form .cv_uploading_box {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  padding: 0.375rem 0.75rem;
  border-radius: 15px;
  height: 260px;
  width: 100%;
}

.career_pg .form_box form .cv_uploading_box .icon {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 55px;
          margin-inline-end: 55px;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper {
  width: 145px;
  height: 55px;
  position: relative;
  font-size: 14px;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper #file-upload-name {
  margin: 0px 0 0 0;
  font-size: 12px;
  position: absolute;
  bottom: -30px;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0px auto 0;
  position: relative;
  cursor: pointer;
  background-color: var(--secondary);
  color: #fff;
  border: 1px solid #eee;
  padding: 14px 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper input[type="file"] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper > svg {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success > svg {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.uploaded {
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper .file-upload-text {
  position: absolute;
  inset-inline-start: 65px;
  top: 19px;
  font-weight: bold;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .file-success-text {
  opacity: 0;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
  visibility: hidden;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  position: absolute;
  left: 0;
  right: 0;
  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;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .file-success-text svg {
  width: 25px;
  height: auto;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .file-success-text span {
  margin-left: 15px;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-success-text {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success.uploaded .file-success-text span {
  display: none;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper .file-success-text circle {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  -webkit-transition: 1s linear all;
  transition: 1s linear all;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-success-text circle {
  stroke-dashoffset: 0;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper .file-success-text polyline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  -webkit-transition: 1s linear all;
  transition: 1s linear all;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-success-text polyline {
  stroke-dashoffset: 0;
}

.career_pg .form_box form .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.career_pg .form_box form .primary_butn {
  width: 160px;
  height: 55px;
}

.career_pg .form_box::after, .career_pg .form_box::before {
  content: '';
  width: 600px;
  height: 300px;
  border-radius: 20%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  position: absolute;
  top: 20%;
  opacity: .25;
}

.career_pg .form_box::before {
  background-color: rgba(0, 74, 173, 0.12);
  left: 4%;
}

.career_pg .form_box::after {
  background-color: rgba(254, 106, 0, 0.12);
  right: 4%;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .inner .data_box {
  background-color: var(--secondary);
  padding: 45px;
  position: relative;
  border-radius: 20px;
}

.contact_pg .inner .data_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.contact_pg .inner .data_box .item .icon_box {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #fff;
  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: 18px;
  color: var(--secondary);
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.contact_pg .inner .data_box .item .icon_box::after {
  content: '';
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px dashed var(--primary);
  position: absolute;
  top: 7.5px;
  left: 7.5;
}

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

.contact_pg .inner .data_box .item .txt .label {
  font-size: 14px;
  color: #ccc;
}

.contact_pg .inner .data_box .item .txt .data {
  font-size: 17px;
}

.contact_pg .inner .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: var(--primary);
  background: #d8ba8153;
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 14px;
}

.contact_pg .inner .data_box .item .txt .social_links a:hover {
  background-color: #D8B981;
  color: #fff !important;
}

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

.contact_pg .inner .form_box {
  background-color: #f6f6f6;
  border-radius: 20px;
  padding: 45px 3vw;
}

.contact_pg .inner .form_box .form-group {
  margin-bottom: 1.4rem;
}

.contact_pg .inner .form_box .form-group .form-control {
  border-radius: 25px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-color: #fff;
}

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

.contact_pg .inner .form_box .form-group label {
  font-size: 12px;
  color: #888;
  padding: 1rem 1.35rem;
}

.contact_pg .inner .form_box .form-group textarea {
  height: auto;
}

.contact_pg .inner .form_box .form-group textarea:focus ~ label {
  opacity: .65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact_pg .inner .form_box .primary_butn {
  width: 180px;
  height: 55px;
}

/**********************************************
    Start Edit gallery 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;
  }
  .d-mob-block {
    display: block !important;
  }
  .header .txt_box .title {
    font-size: 33px;
  }
  .header .lines {
    display: none;
  }
  .partners_sec {
    padding: 0;
  }
  .partners_sec::after {
    height: 100%;
  }
  .partners_sec .pattern,
  .partners_sec .pattern2 {
    display: none;
  }
  .about_sec .img_box {
    height: auto;
    margin-bottom: 25px;
  }
  .statics_sec::after {
    height: 100%;
  }
  .feedback_sec .box {
    height: auto;
    margin-bottom: 40px;
  }
  .footer .newsletter_box {
    padding: 45px 20px;
  }
  .gallery_pg .nav-link {
    width: 140px;
  }
  .gallery_pg .gallery_card .img-box {
    height: 180px !important;
  }
  .gallery_pg .imgGallery_swiper .lg_card .img-box {
    height: 300px !important;
  }
  .content_pg .box_head::before {
    width: 100%;
  }
  .content_pg .box_head .img_box {
    height: 250px;
    margin-top: 25px;
  }
}

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

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */