@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@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: abdomaster_font;
  src: url(../fonts/abdomaster/regular.otf);
}

@font-face {
  font-family: abdomaster_bold;
  src: url(../fonts/abdomaster/bold.ttf);
}

:root {
  --primary: #72401A;
  --secondary: #0B2240;
  --filterPrimary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --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: abdomaster_font;
  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;
}

.fw-bold {
  font-family: abdomaster_bold;
}

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

.color-gray2 {
  color: #888;
}

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

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

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

.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-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_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: 10px;
  height: 10px;
  border-radius: 25px;
}

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

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background-image: unset;
  background-color: #fff;
  -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(--primary);
  -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: '\f105';
}

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

.butn {
  position: relative;
  padding: .6rem 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: 25px;
  font-family: abdomaster_bold;
}

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

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

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

.butn.light_butn {
  background-color: #F7F1E6;
  color: var(--primary);
}

.butn.light_border_butn {
  background-color: transparent;
  color: #D8B981;
  border-color: #D8B981;
}

.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: #563013 !important;
  border: 1px solid #563013 !important;
  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;
}

.sec_head .label {
  line-height: 1.5;
  font-size: 32px;
  text-transform: capitalize;
}

.title_w_vector {
  position: relative;
  font-size: 23px;
  text-transform: capitalize;
}

.title_w_vector::before {
  content: '';
  width: 60px;
  height: 20px;
  background: url(../images/title_vector.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  inset-inline-start: 0;
}

.title_w_line {
  position: relative;
  font-size: 32px;
  text-transform: capitalize;
  font-weight: bold;
}

.title_w_line::before {
  content: '';
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -15px;
  inset-inline-start: 0;
  background-color: #D8B981;
  display: block;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--primary);
  margin: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 13px;
}

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

@-webkit-keyframes slidein {
  from {
    background-position: top;
    background-size: 3000px;
  }
  to {
    background-position: -100px 0px;
    background-size: 2750px;
  }
}

@keyframes slidein {
  from {
    background-position: top;
    background-size: 3000px;
  }
  to {
    background-position: -100px 0px;
    background-size: 2750px;
  }
}

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

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

.navs-container .navbar .nav-link {
  position: relative;
  color: var(--secondary);
  font-size: 15px;
  padding-bottom: 10px;
  -webkit-margin-end: 13px;
          margin-inline-end: 13px;
  text-transform: capitalize;
}

.navs-container .navbar .nav-link i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.navs-container .navbar .nav-link::before {
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  background: var(--primary);
  position: absolute;
  bottom: -2px;
  right: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .nav-link.active {
  color: var(--primary);
  font-weight: bold;
}

.navs-container .navbar .nav-link:hover::before, .navs-container .navbar .nav-link.active::before {
  width: 100%;
}

.navs-container .navbar .search_butn {
  background-color: #F4F0ED;
}

.navs-container .navbar .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.navs-container.nav_inner_pages .navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: transparent;
}

.navs-container .search_butn::after {
    display: none;
}

.navs-container .dropdown-search {
    left: auto;
    right: 0;
}

.navs-container .dropdown-search .form-group {
    position: relative;
}

.navs-container .dropdown-search .form-control {
    border-radius: 25px;
    width: 250px;
    min-height: 45px;
    padding: 4px 20px 10px;
    line-height: 1;
}

.navs-container .dropdown-search .form-group button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--primary);
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.navs-container .dropdown-search {
    left: 0;
    right: auto;
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dropdown .dropdown-menu {
  display: block;
  border-radius: 10px;
  padding: 20px 10px;
  border: 0;
  -webkit-box-shadow: 15px 15px 30px #0001;
          box-shadow: 15px 15px 30px #0001;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 1rem;
  border-radius: 8px;
}

.footer {
  padding: 70px 0 10px 0;
  position: relative;
  background-color: #0B2240;
  overflow: hidden;
}

.footer .foot_top {
  position: relative;
  margin-bottom: 150px;
}

.footer .foot_top .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 10px 0;
}

.footer .foot_top .news_box .form-control {
  height: 50px !important;
  width: calc(100% - 60px);
  border-radius: 25px;
}

.footer .foot_top .news_box .butn {
  border: 2px solid #D8B981;
  font-size: 18px;
}

.footer .foot_top .vector {
  position: absolute;
  bottom: -120px;
  right: 0;
  left: 0;
  height: 60px;
}

.footer .foot_top .vector::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  height: 60px;
  -webkit-transform: scaleY(0.7);
          transform: scaleY(0.7);
  background: url(../images/footer_vector_1.svg) repeat-x center;
  background-size: contain;
  -webkit-animation: slidein 15s;
          animation: slidein 15s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.footer .foot_top .vector.slide_ltr {
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

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

.footer .content .title {
  font-size: 21px;
  position: relative;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.footer .content .title::after {
  content: '';
  width: 40px;
  height: 1px;
  display: block;
  margin-top: 15px;
  background: #D8B981;
}

.footer .content .p {
  color: #ddd;
  text-align: justify;
}

.footer .content .links a {
  display: block;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  text-transform: capitalize;
}

.footer .content .links a::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url(../images/icons/list_icon.svg) no-repeat center;
  background-size: contain;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
  display: inline-block;
  position: relative;
  top: 4px;
}

.footer .content .links a:hover {
  color: #D8B981 !important;
}

.footer .content .contact_items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer .content .contact_items .item i {
  font-size: 20px;
  color: #D8B981;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.footer .content .contact_items .item .phone {
  color: #D8B981;
  font-size: 30px;
  direction: ltr;
  text-align: end;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
}

.footer .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: transparent;
  border: 2px solid #D8B981;
  color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 14px;
}

.footer .content .social_links a:hover {
  background-color: #D8B981;
  color: #fff !important;
}

.footer .copyright_p {
  text-align: center;
  color: #A2ABB7;
  font-size: 15px;
  border-top: 1px solid #a2abb79b;
}

.footer::after {
  width: 900px;
  height: 900px;
  background-color: #DEFEFF;
  opacity: .4;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  content: '';
  top: -43%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  opacity: .1;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
}

.header .item {
  position: relative;
  height: 95vh;
  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;
}

.header .item .text_box .title {
  font-size: calc(3vw + 40px);
  font-family: abdomaster_bold;
  text-transform: uppercase;
}

.header .item .text_box .txt .he {
  font-size: calc(3vw + 40px);
  color: #D8B981;
  font-family: abdomaster_bold;
}

.header .item .text_box .txt .statment {
  font-size: 34px;
  position: relative;
  right: -30px;
}

.header .item .text_box .txt .statment .color-primary {
  color: #D8B981 !important;
}

.header .item .pattern {
  position: absolute;
  top: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header .item::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: rgba(11, 34, 64, 0.6);
  z-index: 1;
}

.header .swiper-pagination {
  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;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 100%;
  right: 3%;
  top: 0;
}

.header .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  margin: 7px 0;
  opacity: .5;
  position: relative;
}

.header .swiper-pagination .swiper-pagination-bullet::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: '';
  position: absolute;
  border: 1px solid #D8B981;
  top: -4px;
  left: -4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.header .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #D8B981 !important;
  opacity: 1;
}

.header .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.about_sec .text_box .p {
  text-align: justify;
  color: #535858;
  line-height: 2;
}

.about_sec .text_box .ul li {
  width: 49%;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  color: var(--primary);
}

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

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

.statics_sec .static_card {
  height: 200px;
  width: 200px;
  border-radius: 25px;
  outline: 5px solid #F0F2F4;
  margin: 10px auto;
  position: relative;
}

.statics_sec .static_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 40px 20px;
  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;
}

.statics_sec .static_card .box .icon_box {
  margin-bottom: 20px;
  position: relative;
}

.statics_sec .static_card .box .icon_box .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(96%) sepia(7%) saturate(6395%) hue-rotate(308deg) brightness(118%) contrast(70%);
          filter: invert(96%) sepia(7%) saturate(6395%) hue-rotate(308deg) brightness(118%) contrast(70%);
}

.statics_sec .static_card .box .icon_box::before {
  content: '';
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: -10px;
  background-color: rgba(216, 185, 129, 0.14);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.statics_sec .static_card .box .content .counter {
  color: var(--secondary);
  font-size: 45px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.statics_sec .static_card .box .content .counter::after {
  content: '';
  width: 40px;
  height: 1px;
  display: block;
  background: #D8B981;
}

.statics_sec .static_card .box .content .label {
  color: #535858;
  font-size: 16px;
  text-transform: capitalize;
}

.statics_sec .static_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.statics_sec .static_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.statics_sec .static_card:hover .counter {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.statics_sec .static_card:hover::after {
  width: calc(100% - 43px);
  border-radius: 25px 0 0 0;
}

.statics_sec .static_card:hover::before {
  height: calc(100% + 9px);
  border-radius: 0 25px 25px 0;
}

.services_sec {
  background-color: #F6F5F3;
}

.services_sec .serviceTitle_swiper .item {
  padding: 15px 1vw;
  position: relative;
}

.services_sec .serviceTitle_swiper .item .title {
  font-family: abdomaster_bold;
  font-size: 18px;
  color: var(--primary);
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
}

.services_sec .serviceTitle_swiper .item .title::before {
  content: '';
  background: url(../images/icons/list_icon.svg) no-repeat center;
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.services_sec .serviceTitle_swiper .item .title::after {
  content: '\f060';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0;
}

.services_sec .serviceTitle_swiper .item::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

.services_sec .serviceTitle_swiper .swiper-slide-thumb-active .item::after {
  width: 100% !important;
}

.services_sec .swiper_box {
  position: relative;
}

.services_sec .swiper_box .box .img_box {
  width: 500px;
  height: 500px;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.services_sec .swiper_box .box .img_box .secImg {
  border-radius: 50%;
}

.services_sec .swiper_box .box .img_box .txt_content {
  position: absolute;
  padding: 45px 6vw;
  bottom: 0;
  width: 100%;
  right: 0;
  z-index: 5;
}

.services_sec .swiper_box .box .img_box .txt_content .title {
  color: #fff;
  font-size: 15px;
  position: relative;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}

.services_sec .swiper_box .box .img_box .txt_content .title::before {
  content: '';
  width: 6px;
  border-radius: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #D8B981;
  inset-inline-start: 0;
}

.services_sec .swiper_box .box .img_box .txt_content .butn {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 160px;
  height: 45px;
}

.services_sec .swiper_box .box .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-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#07182f));
  background-image: linear-gradient(to bottom, transparent, #07182f);
  border-radius: 50%;
  opacity: .7;
}

.services_sec .swiper_box .box .circle_box {
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 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;
}

.services_sec .swiper_box .box .circle_box .content {
  width: 130px;
  height: 130px;
  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: #EBEDF0;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.services_sec .swiper_box .box .circle_box .content .icon_box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  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;
  position: relative;
  z-index: 5;
}

.services_sec .swiper_box .box .circle_box .content .icon_box .icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services_sec .swiper_box .box .circle_box .content::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}

.services_sec .swiper_box .box .circle_box .content::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -1px;
  right: 47px;
}

.services_sec .hands {
  position: absolute;
  width: 50%;
  bottom: -30%;
  left: 3.5%;
}

.services_sec::before {
  width: 900px;
  height: 900px;
  background-color: #fff;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  content: '';
  top: -63%;
  inset-inline-start: -9%;
  border-radius: 50%;
}

.services_sec::after {
  width: 900px;
  height: 900px;
  background-color: #DEFEFF;
  opacity: .4;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  content: '';
  bottom: -63%;
  inset-inline-end: 4%;
  border-radius: 50%;
}

.timeline_sec .inner {
  position: relative;
  height: 510px;
}

.timeline_sec .txt_box .logo {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 30px auto;
}

.timeline_sec .item {
  width: 335px;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
}

.timeline_sec .item .circle_box {
  width: 130px;
  height: 130px;
  background-color: #F6F5F3;
  border: 1px solid #eee;
  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;
}

.timeline_sec .item .circle_box .border_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;
  background-color: #EBEDF0;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.timeline_sec .item .circle_box .border_box .icon_box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  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;
  position: relative;
  z-index: 5;
}

.timeline_sec .item .circle_box .border_box .icon_box .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.timeline_sec .item .circle_box .border_box::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}

.timeline_sec .item .circle_box .border_box::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -1px;
  right: 47px;
}

.timeline_sec .item .txt_box {
  width: calc(100% - 170px);
}

.timeline_sec .item .txt_box .year {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary);
  font-size: 35px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.timeline_sec .item .txt_box .year::after {
  content: '';
  width: 40px;
  height: 1px;
  display: block;
  background: #D8B981;
}

.timeline_sec .item .txt_box .p {
  font-size: 13px;
  color: #535858;
}

.timeline_sec .item .txt_box .p::first-letter {
  text-transform: capitalize;
}

.timeline_sec .item::after {
  content: '';
  background-size: contain;
  position: absolute;
  display: block;
}

.timeline_sec .item.one {
  top: 0%;
  right: 0;
}

.timeline_sec .item.one::after {
  width: 80px;
  height: 137px;
  background: url(../images/timeline_vector_1.svg) no-repeat center;
  top: 100%;
  right: 98px;
}

.timeline_sec .item.two {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0;
  right: 7%;
}

.timeline_sec .item.two::after {
  width: 200px;
  height: 130px;
  background: url(../images/timeline_vector_2.svg) no-repeat center;
  top: 110px;
  right: 210px;
}

.timeline_sec .item.three {
  right: 40%;
  bottom: 0;
}

.timeline_sec .item.three .txt_box {
  position: relative;
  top: 70px;
}

.timeline_sec .item.three::after {
  width: 230px;
  height: 20px;
  background: url(../images/timeline_vector_3.svg) no-repeat center;
  top: 53px;
  right: 174px;
}

.timeline_sec .item.four {
  left: 1%;
  bottom: 4%;
}

.timeline_sec .item.four::after {
  width: 134px;
  height: 140px;
  background: url(../images/timeline_vector_4.svg) no-repeat center;
  top: -119%;
  right: 97px;
}

.timeline_sec .item.five {
  left: 5%;
  top: 7%;
}

.timeline_sec .item.five .txt_box {
  text-align: end;
}

.timeline_sec .item.five .txt_box .year::after {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.timeline_sec::after {
  width: 1200px;
  height: 1200px;
  background-color: rgba(216, 185, 129, 0.14);
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  content: '';
  top: -94%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
}

.partners_sec .partner_box {
  background-color: #F6F5F3;
  border-radius: 0 115px;
  height: 70px;
  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_box .logo {
  height: 40px;
  max-width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

.partners_sec .partner_card .title {
  color: #535858;
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
}

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

.manager_sec {
  background-color: #F6F5F3;
  padding: 150px 0 100px;
}

.manager_sec .txt_box .p {
  color: #535858;
  font-size: 16px;
  line-height: 2.2;
  text-align: justify;
}

.manager_sec .secImg {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.manager_sec .vector {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
}

.manager_sec .vector::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  height: 60px;
  background: url(../images/footer_vector_1.svg) repeat-x center;
  background-size: contain;
  -webkit-animation: slidein 15s;
          animation: slidein 15s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.manager_sec .vector.slide_ltr {
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.manager_sec::after {
  width: 900px;
  height: 900px;
  background-color: #DEFEFF;
  opacity: .4;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  content: '';
  bottom: -63%;
  left: 4%;
  border-radius: 50%;
}

.certificates_sec .certi_card {
  margin-bottom: 25px;
  border-radius: 25px;
  border: 5px solid #F0F2F4;
  position: relative;
}

.certificates_sec .certi_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 0px;
  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;
  overflow: hidden;
}

.certificates_sec .certi_card .box .secImg {
  height: 250px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #fff;
  padding: 10px 5px;
}

.certificates_sec .certi_card .box .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  pointer-events: none;
}

.certificates_sec .certi_card .box .txt_box .title {
  position: relative;
  z-index: 5;
  padding: 15px 3vw;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  text-transform: capitalize;
  color: #fff;
  text-shadow: -1px 1px 0 var(--primary), 1px 1px 0 var(--primary), 1px -1px 0 var(--primary), -1px -1px 0 var(--primary);
}

.certificates_sec .certi_card .box .txt_box::after {
  border-radius: 25px;
  position: absolute;
  content: '';
  background: #141414;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(178, 142, 104, 0.5)), to(rgba(20, 20, 20, 0)));
  background: linear-gradient(0deg, rgba(178, 142, 104, 0.5) 0%, rgba(20, 20, 20, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.certificates_sec .certi_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.certificates_sec .certi_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.certificates_sec .certi_card:hover .txt_box .title {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.certificates_sec .certi_card:hover .txt_box::after {
  opacity: 1;
}

.certificates_sec .certi_card:hover::after {
  width: calc(100% - 80px);
}

.certificates_sec .certi_card:hover::before {
  height: calc(100% - 20px);
}

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

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  background-color: #E6BC9D11;
  padding: 265px 0 80px 0;
}

.pg_header .title_w_vector {
  font-size: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pg_header .title_w_vector::before {
  inset-inline-start: unset;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pg_header::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 135px;
  right: 0;
  left: 0;
  height: 60px;
  -webkit-transform: scaleY(0.7);
          transform: scaleY(0.7);
  background: url(../images/pg_header_vector_1.svg) repeat-x center;
  background-size: contain;
  -webkit-animation: slidein 20s;
          animation: slidein 20s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.pg_header::after {
  content: '';
  background: url(../images/pg_header_vector_2.svg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pg_header .bg {
  opacity: .25;
}

.pg_header .bg .secImg {
  -o-object-position: bottom;
     object-position: bottom;
}

.pg_header .bg::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-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#0B2240));
  background-image: linear-gradient(to bottom, transparent, #0B2240);
}

/**********************************************
    Start Edit about Page 
**********************************************/
.philosophy_sec .philosophy_card {
  border-radius: 25px;
  outline: 5px solid #F0F2F4;
  margin: 10px auto 20px auto;
  position: relative;
  height: calc(100% - 30px);
}

.philosophy_sec .philosophy_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 40px 20px;
  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;
}

.philosophy_sec .philosophy_card .box .icon_box {
  margin-bottom: 20px;
  position: relative;
  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;
}

.philosophy_sec .philosophy_card .box .icon_box .title_w_line {
  font-size: 27px;
}

.philosophy_sec .philosophy_card .box .icon_box .icon {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.philosophy_sec .philosophy_card .box .icon_box::before {
  content: '';
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: absolute;
  inset-inline-start: 5px;
  top: 0px;
  background-color: rgba(216, 185, 129, 0.14);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.philosophy_sec .philosophy_card .box .content .p {
  color: #535858;
  font-size: 17px;
}

.philosophy_sec .philosophy_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  transition:  all .3s linear;
}

.philosophy_sec .philosophy_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  transition:  all .3s linear;
}


.philosophy_sec .philosophy_card:hover::after {
  width: calc(100% - 43px);
  border-radius: 25px 0 0 0;
}

.philosophy_sec .philosophy_card:hover::before {
  height: calc(100% + 9px);
  border-radius: 0 25px 25px 0;
}


.philosophy_sec::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  height: 47px;
  background: url(../images/philosophy_vector_1.svg) no-repeat center;
  background-size: cover;
}

.philosophy_sec::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 40%;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
}

/**********************************************
    Start Edit services Page 
**********************************************/
.catering_sec {
  padding-bottom: 150px;
}

.catering_sec .serv_det_img_box {
  width: 100%;
  border-radius: 25px;
  position: relative;
}

.catering_sec .serv_det_img_box .serv_det_swiper {
  height: 500px;
}

.catering_sec .serv_det_img_box .serv_det_swiper .secImg {
  border-radius: 25px;
  height: 100%;
  display: block;
}

.catering_sec::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: -20%;
  right: 0;
  left: 0;
  height: 60%;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}

/**********************************************
    Start Edit iso_sec 
**********************************************/
.iso_sec {
  position: relative;
  padding: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#F6F5F3), to(#F2F6F5));
  background-image: linear-gradient(to right, #F6F5F3, #F2F6F5);
}

.iso_sec .iso_card {
  position: relative;
  padding: 5vw 4vw 8vw;
  -webkit-box-shadow: 10px 10px 30px #0001;
          box-shadow: 10px 10px 30px #0001;
  border-radius: 40px 40px 0 0;
  text-align: center;
  overflow: hidden;
}

.iso_sec .iso_card * {
  position: relative;
  z-index: 20;
}

.iso_sec .iso_card::before {
  content: "";
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-20%, -60%);
          transform: translate(-20%, -60%);
  background: radial-gradient(#d8b98155, transparent);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.iso_sec .iso_card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: var(--secondary);
  opacity: 0.8;
}

.iso_sec .iso_card .img {
  position: relative;
}

.iso_sec .iso_card .iso_logo {
  width: 180px;
  margin: 0 auto 50px;
}

.iso_sec .iso_card h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--secondary);
  color: #fff;
}

.iso_sec .iso_card .text {
  font-size: 18px;
  color: #fff;
}

.iso_sec .iso_card .shap_1 {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.iso_sec .iso_card .vid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

/**********************************************
    Start Edit serv_det Page 
**********************************************/
.serv_det_pg {
  padding-bottom: 150px;
}

.serv_det_pg .serv_det_img_box {
  height: 700px;
  width: 100%;
  border-radius: 25px;
  border: 5px solid #F0F2F4;
  position: relative;
}

.serv_det_pg .serv_det_img_box .serv_det_swiper {
  height: 700px;
}

.serv_det_pg .serv_det_img_box .serv_det_swiper .secImg {
  border-radius: 25px;
  height: 100%;
  display: block;
}

.serv_det_pg .txt_box {
  position: relative;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  -webkit-margin-end: -100px;
          margin-inline-end: -100px;
  z-index: 5;
  border-radius: 25px;
  border: 5px solid #F0F2F4;
  background-color: #fff;
  margin-top: 25px;
}

.serv_det_pg .txt_box .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  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;
  padding: 70px 5vw 70px 5vw;
}

.serv_det_pg .txt_box::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.serv_det_pg .txt_box::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.serv_det_pg::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: -7%;
  right: 0;
  left: 0;
  height: 45%;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content_pg .inner {
  height: 100%;
  width: 100%;
  border-radius: 25px;
  outline: 5px solid #F0F2F4;
  margin: 10px auto;
  position: relative;
}

.content_pg .inner .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 70px 4vw;
  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;
}

.content_pg .inner .box .p {
  font-size: 17px;
  line-height: 2;
}

.content_pg .inner::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.content_pg .inner::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.content_pg::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: -5%;
  right: 0;
  left: 0;
  height: 45%;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

/**********************************************
    Start Edit projects Page 
**********************************************/
.projects_pg .proj_card {
  height: calc(100% - 35px);
  width: 100%;
  border-radius: 25px;
  outline: 5px solid #F0F2F4;
  margin: 10px auto;
  position: relative;
  margin-bottom: 35px;
}

.projects_pg .proj_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  padding: 40px 20px;
  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;
}

.projects_pg .proj_card .box .icon_box {
  margin-bottom: 20px;
  position: relative;
}

.projects_pg .proj_card .box .icon_box .logo {
  width: 150px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.projects_pg .proj_card .box .icon_box::before {
  content: '';
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: absolute;
  inset-inline-start: -5px;
  top: -10px;
  background-color: rgba(216, 185, 129, 0.14);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.projects_pg .proj_card .box .content .title {
  color: var(--secondary);
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  height: 69px;
  overflow: hidden;
}

.projects_pg .proj_card .box .content .title::after {
  content: '';
  width: 40px;
  height: 1px;
  display: block;
  background: #D8B981;
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
}

.projects_pg .proj_card .box .content .label {
  color: #535858;
  font-size: 16px;
  text-transform: capitalize;
}

.projects_pg .proj_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.projects_pg .proj_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.projects_pg .proj_card:hover::after {
  width: calc(100% - 43px);
  border-radius: 25px 0 0 0;
}

.projects_pg .proj_card:hover::before {
  height: calc(100% + 9px);
  border-radius: 0 25px 25px 0;
}

.projects_pg::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 35%;
  right: 0;
  left: 0;
  height: 350px;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

/**********************************************
    Start Edit team Page 
**********************************************/
.team_pg .team_card {
  height: 650px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 25px;
  overflow: hidden;
}

.team_pg .team_card .img_box {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #f5f5f5;
}

.team_pg .team_card .img_box .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
  -o-object-position: top;
     object-position: top;
}

.team_pg .team_card .img_box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: -20px;
  top: 0;
  background: url(../images/pg_header_vector_1.svg) center;
  background-size: cover;
  height: 50px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.team_pg .team_card .txt_content {
  text-align: center;
  background: #f8f8f8ee;
  border-bottom: 10px solid #e8e8e8;
  padding: 40px 2vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: all ease 300ms;
  transition: all ease 300ms;
}

.team_pg .team_card .txt_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;
  color: #777;
  background: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 14px;
}

.team_pg .team_card .txt_content .social_links a:hover {
  background-color: #D8B981;
  color: #fff !important;
}

.team_pg .team_card .txt_content .p {
  font-size: 14px;
  letter-spacing: 1.4px;
  margin: 0 0 19px;
  -webkit-transition: all ease 350ms;
  transition: all ease 350ms;
  height: 55px;
  overflow: hidden;
}

.team_pg .team_card .txt_content .name {
  color: #141414;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  font-weight: bold;
  -webkit-transition: all ease 350ms;
  transition: all ease 350ms;
}

.team_pg .team_card .txt_content .job {
  color: #666;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  -webkit-transition: all ease 350ms;
  transition: all ease 350ms;
}

.team_pg .team_card::before {
  position: absolute;
  content: '';
  border: 5px solid #D8B981;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  left: 20px;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.04, 1.08);
          transform: scale(1.04, 1.08);
  -webkit-transition: all ease 350ms;
  transition: all ease 350ms;
  border-radius: 25px;
}

.team_pg .team_card::after {
  position: absolute;
  content: '';
  background: #0B2240;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(4, 0, 27, 0.8)), to(rgba(20, 20, 20, 0)));
  background: linear-gradient(0deg, rgba(4, 0, 27, 0.8) 0%, rgba(20, 20, 20, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 350ms;
  transition: all ease 350ms;
}

.team_pg .team_card:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.team_pg .team_card:hover::after {
  opacity: .8;
  visibility: visible;
}

.team_pg .team_card:hover .txt_content {
  background: 0 0;
  border-bottom: 10px solid transparent;
}

.team_pg .team_card:hover .txt_content .social_links a {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.team_pg .team_card:hover .txt_content .p {
  color: #fff;
}

.team_pg .team_card:hover .txt_content .name {
  color: #fff;
}

.team_pg .team_card:hover .txt_content .job {
  color: #f5f5f5;
}

/**********************************************
    Start Edit partners Page 
**********************************************/
.partners_pg .partner_card {
  margin-bottom: 45px;
}

.partners_pg .partner_card .partner_box {
  height: 180px;
  width: 300px;
  padding: 20px;
  margin: 0 auto;
}

.partners_pg .partner_card .partner_box .logo {
  height: 130px;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.partners_pg .partner_card .title {
  font-size: 15px;
}

.partners_pg .partner_card .more_butn {
  position: relative;
}

.partners_pg .partner_card .more_butn::before {
  content: '';
  width: 20px;
  height: 6px;
  background-color: #d8ba8172;
  position: absolute;
  left: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  bottom: 0;
}

.partners_pg .partner_card .more_butn:hover::before {
  width: 100%;
}

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

/**********************************************
    Start Edit partners_det Page 
**********************************************/
.partners_det .txt_box {
  -webkit-padding-end: 2vw;
          padding-inline-end: 2vw;
}

.partners_det .txt_box .circle_box {
  width: 110px;
  height: 110px;
  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;
}

.partners_det .txt_box .circle_box .content {
  width: 90px;
  height: 90px;
  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: #EBEDF0;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.partners_det .txt_box .circle_box .content .icon_box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  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;
  position: relative;
  z-index: 5;
}

.partners_det .txt_box .circle_box .content .icon_box .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.partners_det .txt_box .circle_box .content::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}

.partners_det .txt_box .circle_box .content::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -1px;
  right: 47px;
}

.partners_det .txt_box .brand_logo {
  height: 100px;
  width: 100px;
  padding: 7px;
  background-color: #f9f9f9;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

.partners_det .img_box {
  border-radius: 25px;
  border: 5px solid #F0F2F4;
  overflow: hidden;
}

.partners_det .img_box .swiper-container {
  height: 500px;
}

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

.partners_det .img_box .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: .8;
}

.partners_det .img_box .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
}

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

/**********************************************
    Start Edit blog Page 
**********************************************/
.blog_pg .blogCateg_swiper .butn {
  width: 100%;
  background-color: #f8f8f8;
  height: 50px;
}

.blog_pg .blogCateg_swiper .butn small {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  color: #777;
}

.blog_pg .blogCateg_swiper .butn.active {
  background-color: var(--primary);
  color: #fff;
}

.blog_pg .blogCateg_swiper .butn.active small {
  color: #eee;
}

.blog_pg .blogCateg_swiper .butn:hover {
  background-color: #D8B981 !important;
  color: var(--primary) !important;
}

.blog_pg .blogCateg_swiper .butn:hover small {
  color: var(--primary) !important;
}

.blog_pg .blog_card {
  position: relative;
  margin-bottom: 30px;
  height: 480px;
  border-radius: 25px;
  overflow: hidden;
}

.blog_pg .blog_card .txt_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px 3vw;
  z-index: 3;
  width: 100%;
}

.blog_pg .blog_card .txt_content .categ {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  color: #fff;
  background: var(--primary);
  margin: 0;
  display: inline-block;
  padding: 5px 10px 8px 9px;
  min-height: 27px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -30px, 0);
          transform: translate3d(0, -30px, 0);
  -webkit-transition: all ease 350ms;
  transition: all ease 350ms;
  border-radius: 25px;
}

.blog_pg .blog_card .txt_content .date {
  display: block;
  font-size: 12px;
  color: #eee;
}

.blog_pg .blog_card .txt_content .date i {
  color: #D8B981;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog_pg .blog_card .txt_content .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  height: 63px;
  overflow: hidden;
}

.blog_pg .blog_card .txt_content .p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f5f5f5;
  font-size: 13px;
}

.blog_pg .blog_card .txt_content .more_butn {
  position: relative;
  color: #D8B981;
}

.blog_pg .blog_card .txt_content .more_butn::before {
  content: '';
  width: 20px;
  height: 6px;
  background-color: #d8ba8172;
  position: absolute;
  left: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  bottom: 0;
}

.blog_pg .blog_card .txt_content .more_butn:hover {
  color: #fff !important;
}

.blog_pg .blog_card .txt_content .more_butn:hover::before {
  width: 100%;
}

.blog_pg .blog_card::before {
  position: absolute;
  content: '';
  border: 5px solid #D8B981;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  left: 20px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.04, 1.08);
          transform: scale(1.04, 1.08);
  -webkit-transition: all ease 300ms;
  transition: all ease 300ms;
  border-radius: 25px;
}

.blog_pg .blog_card::after {
  position: absolute;
  content: '';
  background: #141414;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 20, 20, 0.8)), to(rgba(20, 20, 20, 0)));
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog_pg .blog_card:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.blog_pg .blog_card:hover .categ {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.blog_pg::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 35%;
  right: 0;
  left: 0;
  height: 350px;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

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

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

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

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

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

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

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

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

.blog_det_pg .p {
  font-size: 17px;
  line-height: 2;
}

.related_blog_sec {
  background-color: #F6F5F3;
  padding-top: 100px;
}

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

.related_blog_sec .vector {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
}

.related_blog_sec .vector::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  height: 60px;
  background: url(../images/footer_vector_1.svg) repeat-x center;
  background-size: contain;
  -webkit-animation: slidein 15s;
          animation: slidein 15s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.related_blog_sec .vector.slide_ltr {
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.related_blog_sec::after {
  display: none;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery_pg .photos_box .gallery_card {
  width: 100%;
  border-radius: 25px;
  border: 5px solid #F0F2F4;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
  height: 450px;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}

.gallery_pg .photos_box .gallery_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
}

.gallery_pg .photos_box .gallery_card .box .secImg {
  border-radius: 25px;
}

.gallery_pg .photos_box .gallery_card .box .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.gallery_pg .photos_box .gallery_card .box .txt_box .title {
  position: relative;
  z-index: 5;
  padding: 35px 3vw;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.gallery_pg .photos_box .gallery_card .box .txt_box::after {
  border-radius: 25px;
  position: absolute;
  content: '';
  background: #141414;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 20, 20, 0.8)), to(rgba(20, 20, 20, 0)));
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery_pg .photos_box .gallery_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
}

.gallery_pg .photos_box .gallery_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
}

.gallery_pg .photos_box .gallery_card:hover::after {
  width: calc(100% - 43px);
  border-radius: 25px 0 0 0;
}

.gallery_pg .photos_box .gallery_card:hover::before {
  height: calc(100% + 9px);
  border-radius: 0 25px 25px 0;
}

.gallery_pg .photos_box .swiper-slide-active .gallery_card {
  opacity: 1;
  height: 500px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.gallery_pg .photos_box .swiper-slide-active .gallery_card .txt_box .title {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.gallery_pg .photos_box .swiper-slide-active .gallery_card .txt_box::after {
  opacity: 1;
}

.gallery_pg .photos_box .swiper-slide-active .gallery_card::before, .gallery_pg .photos_box .swiper-slide-active .gallery_card::after {
  opacity: 1;
}

.gallery_pg .photos_box .swiper-slide {
  height: 500px;
}

.gallery_pg .vid_card {
  width: 100%;
  border-radius: 25px;
  border: 5px solid #F0F2F4;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  height: 350px;
  margin-bottom: 30px;
}

.gallery_pg .vid_card .box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 5;
}

.gallery_pg .vid_card .box .secImg {
  border-radius: 25px;
}

.gallery_pg .vid_card .box .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.gallery_pg .vid_card .box .txt_box .title {
  position: relative;
  z-index: 5;
  padding: 35px 3vw;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  padding: 20px 3vw;
  height: 88px;
  overflow: hidden;
}

.gallery_pg .vid_card .box .txt_box::after {
  border-radius: 25px;
  position: absolute;
  content: '';
  background: #141414;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 20, 20, 0.8)), to(rgba(20, 20, 20, 0)));
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery_pg .vid_card .box .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);
          transform: translate(-50%, -55%) scale(0);
  z-index: 6;
}

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

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

.gallery_pg .vid_card .box .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 .vid_card::before {
  content: '';
  width: 55px;
  height: 70px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery_pg .vid_card::after {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #D8B981;
  position: absolute;
  top: -5px;
  right: 47px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery_pg .vid_card:hover .button {
  -webkit-transform: translate(-50%, -55%) scale(0.7);
          transform: translate(-50%, -55%) scale(0.7);
}

.gallery_pg .vid_card:hover::after {
  width: calc(100% - 43px);
  border-radius: 25px 0 0 0;
}

.gallery_pg .vid_card:hover::before {
  height: calc(100% + 9px);
  border-radius: 0 25px 25px 0;
}

.gallery_pg::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  height: 350px;
  background: url(../images/philosophy_vector_2.svg) no-repeat center;
  background-size: cover;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .form_box {
  border-radius: 25px;
  position: relative;
  border: 5px solid #f5f5f5;
  overflow: hidden;
  padding: 50px 3vw;
  background-color: #fff;
}

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

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

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

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

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

.contact_pg .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 .form_box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  background: url(../images/pg_header_vector_1.svg) center;
  background-size: cover;
  height: 50px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.contact_pg .branch_box {
  border-radius: 25px;
  position: relative;
  border: 5px solid #f5f5f5;
  padding: 40px 3vw;
}

.contact_pg .branch_box .branch_group_select {
  position: relative;
}

.contact_pg .branch_box .branch_group_select .branch_select {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--secondary) !important;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 18px;
}

.contact_pg .branch_box .branch_group_select option {
  font-size: 13px;
}

.contact_pg .branch_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 .branch_box .item .circle_box {
  width: 70px;
  height: 70px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.contact_pg .branch_box .item .circle_box .content {
  width: 50px;
  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;
  background-color: #fff;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.contact_pg .branch_box .item .circle_box .content .icon_box {
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
  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;
  position: relative;
  z-index: 5;
}

.contact_pg .branch_box .item .circle_box .content .icon_box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_pg .branch_box .item .circle_box .content::before {
  content: '';
  width: 45px;
  height: 40px;
  border-radius: 0 25px 0 0;
  background-color: var(--primary);
  position: absolute;
  top: -1px;
  right: -5px;
}

.contact_pg .branch_box .item .circle_box .content::after {
  content: '';
  width: 30px;
  height: 20px;
  background-color: #D8B981;
  position: absolute;
  top: -1px;
  right: 40px;
}

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

.contact_pg .branch_box .item .txt .label {
  font-size: 15px;
  color: #888;
}

.contact_pg .branch_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 .branch_box .item .txt .social_links a:hover {
  background-color: #D8B981;
  color: #fff !important;
}

.contact_pg .branch_box .map_box iframe {
  border-radius: 15px;
}

/**********************************************
    Start Edit careers Page 
**********************************************/
.careers_pg {
  position: relative;
  padding-top: 0px;
}

.careers_pg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background-color: #e6bc9d11;
}

.up_group {
  position: relative;
}

.up_group .input-group-append {
  position: absolute;
  left: 6px;
  bottom: 5px;
  width: 150px;
  font-size: 12px;
  min-height: calc(100% - 10px);
  text-align: center;
  display: inline-block;
  background-color: #eee;
  font-weight: bold;
  border-radius: 50px !important;
  color: var(--secondary);
  pointer-events: none;
  padding: 10px;
}

.up_group .file {
  position: absolute;
  opacity: 0;
  left: 0;
  bottom: 2px;
  width: 100%;
  min-height: 50px;
  z-index: 20;
  cursor: pointer;
}

.up_group .input_ques {
  min-height: 50px;
  width: 100% !important;
  display: block !important;
  border-radius: 50px !important;
  border: 1px solid #ced4da;
  padding: 8px 20px;
  font-size: 13px;
  background-color: #fff;
  padding-left: 160px !important;
}

.up_group .input_ques::-webkit-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: bold;
  padding: 1rem 1.35rem;
}

.up_group .input_ques:-ms-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: bold;
  padding: 1rem 1.35rem;
}

.up_group .input_ques::-ms-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: bold;
  padding: 1rem 1.35rem;
}

.up_group .input_ques::placeholder {
  font-size: 14px;
  color: #888;
  font-weight: bold;
  padding: 1rem 1.35rem;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media (min-width: 991px) and (max-width: 1200px) {
  .timeline_sec .item.two {
    bottom: 4%;
    right: -3%;
  }
  .timeline_sec .item.three::after {
    width: 83px;
    top: 31px;
    right: 145px;
  }
  .timeline_sec .item.four {
    left: 0;
    bottom: 9%;
  }
  .timeline_sec .item.five {
    left: 0;
  }
}

@media screen and (max-width: 992px) {
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .navs-container .navbar .logo {
    width: 250px;
  }
  .sec_head .label {
    font-size: 28px;
  }
  .navbar-collapse .navbar-brand {
    display: none !important;
  }
  .header .item .pattern {
    width: 100%;
  }
  .about_sec .text_box .ul li {
    width: 100%;
  }
  .about_sec .img_box {
    margin: 15px 0;
  }
  .about_sec .img_box .img {
    height: 200px;
  }
  .about_sec .img_box .txt {
    top: unset;
    bottom: -30px;
  }
  .services_sec .swiper_box .box .img_box {
    width: 320px;
    height: 320px;
  }
  .services_sec .swiper_box .box .circle_box {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    top: -35px;
    left: 0;
  }
  .services_sec .hands {
    width: 100%;
    left: 0;
    bottom: -10%;
  }
  .timeline_sec .item {
    width: 100%;
    margin: 0 auto 15px auto;
    position: relative;
    top: unset !important;
    right: unset !important;
    left: unset !important;
    bottom: unset !important;
  }
  .timeline_sec .item::after {
    display: none;
  }
  .timeline_sec .item.two {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .timeline_sec .item.three .txt_box {
    top: 0px;
  }
  .timeline_sec .item.five {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .timeline_sec .item.five .txt_box {
    text-align: start;
  }
  .timeline_sec .item.five .txt_box .year::after {
    -webkit-margin-start: unset;
            margin-inline-start: unset;
  }
  .timeline_sec .inner {
    height: auto;
  }
  .manager_sec .secImg {
    height: auto;
  }
  .serv_det_pg .txt_box {
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    margin-top: 25px;
  }
}

@media (max-width: 991px) {
    .navs-container.nav_inner_pages .navbar {
        position: relative;
    }
    .pg_header {
        padding: 80px 0;
    }
    .navs-container .navbar .search_butn {
        margin: 10px auto;
    }
    
    .about_sec .img_box {
        height: max-content;
    }
    .services_sec .swiper_box .box .img_box .txt_content .title {
        font-size: 12px;
        margin-bottom: 25px !important;
    }
    .services_sec .swiper_box .box .circle_box {
        transform: scale(0.5);
        top: -15px;
        left: calc(50% - 80px) !important;
        right: auto !important;
    }
    
    .services_sec .swiper_box .box .img_box .txt_content .title {
        display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;  
      overflow: hidden;
    }
    
    .partners_det .txt_box .p,
    .partners_det .txt_box h1{
        padding-inline-end: 25vw !important;
    }
    
    .partners_det .img_box {
        margin-top: 50px;
    }
    
}

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

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}

html[dir="ltr"] .header .item .text_box .txt .statment {
  right: unset;
}

html[dir="ltr"] .header .swiper-pagination {
  left: 3%;
  right: unset;
}

html[dir="ltr"] .about_sec .img_box .txt {
  font-size: 10px;
}

html[dir="ltr"] .about_sec .ul li {
  font-size: 15px;
}

html[dir="ltr"] .statics_sec .static_card .box .icon_box::before {
  left: -5px;
  right: unset;
}

html[dir="ltr"] .statics_sec .static_card .box .content .label {
  font-size: 14px;
}

html[dir="ltr"] .services_sec .serviceTitle_swiper .item .title::after {
  content: '\f061';
  right: 0;
  left: unset;
}

html[dir="ltr"] .services_sec .swiper_box .box .circle_box {
  right: 40px;
  left: unset;
}

html[dir="ltr"] .services_sec .swiper_box .box .img_box .txt_content .butn i {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

html[dir="ltr"] .services_sec .hands {
  right: 3.5%;
  left: unset;
}

html[dir="ltr"] .timeline_sec .item.one {
  left: 0;
  right: unset;
}

html[dir="ltr"] .timeline_sec .item.one::after {
  left: 85px;
  right: unset;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

html[dir="ltr"] .timeline_sec .item.two {
  left: 7%;
  right: unset;
}

html[dir="ltr"] .timeline_sec .item.two::after {
  top: 110px;
  left: 210px;
  right: unset;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

html[dir="ltr"] .timeline_sec .item.three {
  left: 40%;
  right: unset;
}

html[dir="ltr"] .timeline_sec .item.three::after {
  left: 174px;
  right: unset;
}

html[dir="ltr"] .timeline_sec .item.four {
  right: 1%;
  left: unset;
}

html[dir="ltr"] .timeline_sec .item.four::after {
  top: -93%;
  left: 97px;
  right: unset;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

html[dir="ltr"] .timeline_sec .item.five {
  right: 5%;
  left: unset;
}

html[dir="ltr"] .manager_sec::after {
  right: 4%;
  left: unset;
}

html[dir="ltr"] .swiper-container .swiper-button-next::before,
html[dir="ltr"] .swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f104';
}

html[dir="ltr"] .swiper-container .swiper-button-prev::before,
html[dir="ltr"] .swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f105';
}

html[dir="rtl"] .about_sec .img_box .txt {
    text-align: end;
}

@media (min-width: 991px) and (max-width: 1200px) {
  html[dir="ltr"] .timeline_sec .item.two {
    bottom: 4%;
    left: -3%;
  }
  html[dir="ltr"] .timeline_sec .item.three::after {
    width: 83px;
    top: 31px;
    left: 145px;
  }
  html[dir="ltr"] .timeline_sec .item.four {
    right: 0;
    bottom: 9%;
  }
  html[dir="ltr"] .timeline_sec .item.five {
    right: 0;
  }
}

@media screen and (max-width: 992px) {
  html[dir="ltr"] .sec_head .label {
    font-size: 22px;
  }
}
/*# sourceMappingURL=style.css.map */

.fancybox-content {
    min-height: 80vh;
}

/*---------- 26/5 ----------*/
.services_sec .sm-slide-swiper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

/*.services_sec .sm-slide-swiper .swiper-wrapper {*/
/*    height: 400px;*/
/*}*/


