@font-face {
  font-family: filson_regular;
  src: url(../fonts/filson_pro/FilsonProRegular.otf);
}

@font-face {
  font-family: filson_bold;
  src: url(../fonts/filson_pro/FilsonProBold.otf);
}

@font-face {
  font-family: filson_medium;
  src: url(../fonts/filson_pro/FilsonProMedium.otf);
}

@font-face {
  font-family: filson_light;
  src: url(../fonts/filson_pro/FilsonProLight.otf);
}

*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #C79A65;
  --subColor: #C8C5C7;
  --subColor2: #6A952B;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1320px;
}

.mainColor {
  color: #C79A65 !important;
}

.subColor {
  color: #00A9E7 !important;
}

.subColor2 {
  color: #6A952B !important;
}

.mainBack {
  background-color: #C79A65 !important;
  border-color: #C79A65 !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: filson_regular;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  color: #000;
  background-color: #FCFEFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
  font-weight: bold;
}

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

.fw-medium {
  font-family: filson_medium;
  font-weight: 500;
}

.fw-regular {
  font-family: filson_regular;
  font-weight: 400;
}

.fw-light {
  font-family: filson_light;
  font-weight: 300;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #999;
}

ul {
  padding: 0;
}

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

.img_cover .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.7;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

/* --------------- buttons --------------- */
.butn {
  padding: 12px 30px;
  background-color: var(--mainColor);
  font-size: 14px;
  border-radius: 30px;
  border: 1px solid var(--mainColor);
  text-transform: capitalize;
}

.butn span {
  color: #fff;
}

.butn:hover {
  background-color: #fff;
}

.butn:hover span {
  color: var(--mainColor);
}

.butn.butn_borderd {
  background: transparent;
}

.butn.butn_borderd span {
  color: var(--mainColor);
}

.butn.butn_borderd:hover {
  background-color: var(--mainColor);
}

.butn.butn_borderd:hover span {
  color: #fff;
}

.butn.butn_borderd_dark {
  background: #fff;
  border-color: #000;
}

.butn.butn_borderd_dark span {
  color: #000;
}

.butn.butn_borderd_dark:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.butn.butn_borderd_dark:hover span {
  color: #fff;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/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: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

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

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 20px 0;
  z-index: 99;
}

.navbar .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  color: #707070;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  font-family: filson_regular;
  text-transform: capitalize;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #000;
}

.navbar .navbar-nav .has_dropdown {
  position: relative;
}

.navbar .navbar-nav .has_dropdown .drop_down {
  position: absolute;
  top: 40px;
  min-width: 200px;
  border-radius: 5px;
  border: 1px solid #eee;
  visibility: hidden;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  overflow: hidden;
}

.navbar .navbar-nav .has_dropdown .drop_down a {
  display: block;
  padding: .75rem 1rem;
  background-color: #fff;
  font-size: 13px;
  color: #888;
  text-transform: capitalize;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navbar .navbar-nav .has_dropdown .drop_down a:hover {
  background-color: #f9f9f9;
  color: var(--mainColor);
}

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

.navbar .lang_link {
  font-family: 'Tajawal', sans-serif;
}

/* --------------- header --------------- */
header {
  position: relative;
  padding: 0;
  background-image: url(../images/hero.png);
  background-size: cover;
  margin-bottom: 120px;
  height: 85vh;
  min-height: 85vh;
}

header .row {
  height: 100%;
}

header .container {
  position: relative;
  z-index: 10;
}

header .content {
  padding: 100px 0;
  background-color: #ffffffcd;
  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;
  -webkit-padding-start: calc((100vw - 1320px) / 2);
          padding-inline-start: calc((100vw - 1320px) / 2);
  -webkit-padding-end: 140px;
          padding-inline-end: 140px;
  height: 100%;
}

header .info h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

header .info h2 {
  font-size: 40px;
}

header .info .text {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

header .info .small {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
}

header .img {
  height: 450px;
  overflow: hidden;
}

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

header .zi_5 {
  position: relative;
  z-index: 5;
}

/* --------------- about --------------- */
.about {
  padding: 100px 0;
}

.about .title {
  font-size: 30px;
  padding: 40px;
}

.about .numbers_box {
  padding: 60px 120px;
  -webkit-box-shadow: 3px 5px 10px #BFD6DE55;
          box-shadow: 3px 5px 10px #BFD6DE55;
  background-color: #fff;
}

.about .numbers_box .text {
  font-size: 18px;
  color: #707070;
}

.about .numbers_box .numbers .number_item h3 {
  font-size: 40px;
  margin-bottom: 5px;
}

.about .numbers_box .numbers .number_item p {
  font-size: 18px;
}

.about .vision_card {
  position: relative;
}

.about .vision_card .img_box {
  height: 400px;
  position: relative;
}

.about .vision_card .img_box::before {
  content: '';
  width: 40%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(#fff));
  background-image: linear-gradient(to right, transparent, #fff);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.about .vision_card .txt_box {
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
}

.about .vision_card .txt_box h3 {
  font-size: 35px;
  line-height: 65px;
  color: #312f2f;
}

.about .vision_card .txt_box p {
  font-size: 18px;
  color: #000;
  margin-bottom: 20px;
}

.about_cards {
  background-color: #F5F5F5;
  padding: 100px 0 100px;
}

.about_cards .about_card {
  padding: 75px 20px;
  text-align: center;
  background-color: #fff;
  margin-top: 50px;
  height: calc(100% - 50px);
}

.about_cards .about_card .icon {
  height: 60px;
  margin-bottom: 30px;
}

.about_cards .about_card .info h5 {
  font-family: filson_medium;
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #547519;
  text-transform: uppercase;
}

.about_cards .about_card .info .text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  height: 77px;
  overflow: hidden;
}

.about_header .content {
  padding: 130px 0;
  -webkit-padding-end: 140px;
          padding-inline-end: 140px;
  -webkit-padding-start: calc((100vw - 1320px) / 2);
          padding-inline-start: calc((100vw - 1320px) / 2);
}

/* --------------- props_sec --------------- */
.props_sec {
  padding: 120px 0;
  position: relative;
}

.props_sec .txt {
  position: relative;
  height: 410px;
}

.props_sec .txt .sec_title {
  color: var(--subColor2);
  text-transform: capitalize;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 145px;
  left: -10%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-family: filson_regular;
}

.props_sec .prop_card {
  height: 410px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.props_sec .prop_card .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.props_sec .prop_card .title {
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  left: 0;
  font-size: 25px;
  font-family: filson_regular;
  text-align: center;
  z-index: 2;
}

.props_sec .prop_card:hover .main_img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.props_sec .prop_card:hover .title {
  color: var(--subColor2);
}

.props_sec .prop_card:hover::before {
  opacity: .9;
}

.props_sec .prop_card::before {
  content: '';
  width: 100%;
  height: 200px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background-image: linear-gradient(to bottom, transparent, #fff);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: .9;
  z-index: 1 !important;
}

.props_sec .butn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.services_sec {
  position: relative;
  padding: 70px 0;
}

.services_sec .box {
  overflow: hidden;
}

.services_sec .box .service_card {
  position: relative;
  padding: 30px;
  background-color: #fff;
  height: 100%;
}

.services_sec .box .service_card .img {
  height: 280px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services_sec .box .service_card .card-body {
  padding: 1.5rem .25rem .25rem .25rem;
}

.services_sec .box .service_card .card-body .title {
  font-size: 20px;
}

.services_sec .box .service_card .card-body .p {
  font-size: 15px;
}

.services_sec .box .swiper-slide {
  height: auto;
}

.services_sec::before {
  content: '';
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #E6F4FC;
}

/* --------------- ceo_pg --------------- */
.ceo_pg {
  position: relative;
  padding: 100px 0;
}

.ceo_pg .text_box {
  position: relative;
  background-color: white;
  -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);
  padding: 70px 5vw 70px 5vw;
  margin-left: -20%;
  z-index: 5;
}

.ceo_pg .sec-img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --------------- story_pg --------------- */
.story_pg .text_box {
  padding: 30px 1vw;
}

.story_pg .img_box {
  height: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.story_pg .img_box img:first-of-type {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.story_pg .img_box img:nth-of-type(2) {
  width: 200px;
  height: 220px;
  border: 10px solid #f5f5f5;
  position: absolute;
  bottom: 50px;
  right: 0px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  -o-object-fit: cover;
     object-fit: cover;
}

.story_pg .img_box::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  right: 10px;
  top: 0;
  border: 10px solid #f5f5f5;
  z-index: -1;
}

.about_story_pg .numbers_box .numbers .number_item p {
  font-size: 14px;
}

.statics_sec {
  background-color: #F5F5F5;
  padding: 70px 0;
  position: relative;
}

.statics_sec .inner {
  position: relative;
  background-color: #fff;
  padding: 25px 0;
  -webkit-box-shadow: 0 3px 6px 0 #A5A5A5;
          box-shadow: 0 3px 6px 0 #A5A5A5;
}

.statics_sec .inner .static_card {
  position: relative;
  padding: 35px 25px;
  text-align: center;
}

.statics_sec .inner .static_card .counter {
  font-size: 45px;
}

.statics_sec .inner .static_card .label {
  font-size: 25px;
  text-transform: uppercase;
}

.statics_sec .inner .static_card::after, .statics_sec .inner .static_card::before {
  content: '';
  width: 1px;
  height: 250px;
  top: 50%;
  position: absolute;
  background: #000;
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.statics_sec .inner .static_card::before {
  left: 1px;
}

.statics_sec .inner .static_card::after {
  right: 0;
}

.statics_sec .statics_swiper {
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}

.statics_sec .statics_swiper .swiper-slide {
  height: auto;
}

.statics_sec .statics_swiper .swiper-slide-active .static_card::after, .statics_sec .statics_swiper .swiper-slide-active .static_card::before {
  opacity: 1;
}

.statics_sec .arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.statics_sec .arrows span {
  -webkit-box-shadow: 0px 0px 10px 0 #0001;
          box-shadow: 0px 0px 10px 0 #0001;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

.statics_sec .arrows span img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.statics_sec .arrows .swiper_next {
  -webkit-margin-start: -25px;
          margin-inline-start: -25px;
}

.statics_sec .arrows .swiper_prev {
  -webkit-margin-end: -25px;
          margin-inline-end: -25px;
}

/* --------------- locations --------------- */
.locations .title {
  font-weight: bold;
  font-size: 60px;
  line-height: 65px;
  text-align: center;
  color: #363636;
  margin-bottom: 50px;
}

.locations .locations_content {
  position: relative;
  overflow: hidden;
}

.locations .locations_content .img {
  height: 500px;
}

.locations .locations_content h2 {
  font-weight: bold;
  font-size: 60px;
  line-height: 65px;
  color: #547519;
}

.locations .locations_content .locations_slider {
  position: relative;
  overflow: hidden;
}

.locations .locations_content .locations_slider .arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding: 0 30px;
}

.locations .locations_content .locations_slider .arrows span {
  pointer-events: all;
}

.locations .locations_content .locations_slider .arrows span img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.locations .swiper-slide-active .slider_card::after {
  opacity: 0;
}

.locations .swiper-slide-active .slider_card .float_info {
  opacity: 1;
}

.locations .slider_card {
  position: relative;
}

.locations .slider_card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.locations .slider_card .float_info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background-color: #f9f9f9;
  padding: 30px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.locations .slider_card .float_info h3 {
  font-weight: bold;
  font-size: 25px;
  line-height: 35px;
  color: #547519;
  margin-bottom: 0;
}

.locations .slider_card .float_info p {
  font-size: 12px;
  color: #a5a5a5;
}

.locations .slider_card .float_info .icon_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.locations .slider_card .float_info .icon_items .item {
  text-align: center;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  margin-top: 20px;
}

.locations .slider_card .float_info .icon_items .item .icon {
  height: 20px;
  display: block;
  margin: 0 auto 10px;
}

.locations .slider_card .float_info .icon_items .item small {
  font-size: 11px;
  color: #000;
  white-space: nowrap;
}

.locations .slider_card .float_info .icon_items.half_items .item {
  width: 50%;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

/* --------------- footer --------------- */
footer {
  position: relative;
  z-index: 20;
  margin-top: 20px;
  padding: 70px 0 0;
  background-color: #E2F5FD;
}

footer a:hover {
  color: var(--mainColor);
}

footer .foot_info h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

footer .foot_info p {
  font-size: 17px;
  margin-bottom: 10px;
}

footer .foot_info .social_icons a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

footer .foot_info .social_icons a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

footer .links li {
  margin-bottom: 12px;
  text-transform: capitalize;
}

footer .sub_title {
  font-size: 17px;
  margin-bottom: 15px;
}

footer .form-select {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #999;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  padding: 0;
  margin-bottom: 20px;
}

footer .footer_mob_view {
  padding: 0px 9vw;
}

footer .footer_mob_view .accordion .accordion-item {
  background-color: transparent;
  margin: 8px 0;
  border: none;
}

footer .footer_mob_view .accordion .accordion-item .accordion-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  background-color: transparent;
}

footer .footer_mob_view .accordion .accordion-item .accordion-button::after {
  display: none;
}

footer .footer_mob_view .accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

footer .footer_mob_view .accordion .accordion-item .accordion-button:not(.collapsed) {
  border-bottom-color: #777;
}

footer .footer_mob_view .accordion .accordion-item .accordion-body ul li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
  text-transform: capitalize;
}

footer .footer_mob_view .social_icons a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 5px;
}

footer .footer_mob_view .social_icons a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

footer .foot {
  text-align: center;
  background-color: #fff;
  padding: 30px 0;
  margin-top: 70px;
}

footer .foot p {
  color: #777;
}

footer .foot .foot_logo_img {
  -webkit-filter: invert(0%) sepia(25%) saturate(6468%) hue-rotate(312deg) brightness(0%) contrast(108%);
          filter: invert(0%) sepia(25%) saturate(6468%) hue-rotate(312deg) brightness(0%) contrast(108%);
  opacity: 0.6;
  width: 50px;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

/* --------------- about page --------------- */
.about_services .ser_item {
  position: relative;
}

.about_services .ser_item .img {
  height: 730px;
  overflow: hidden;
}

.about_services .ser_item .title {
  position: absolute;
  left: 0;
  top: 60%;
  padding: 30px 15px;
  text-align: center;
  background-color: #ffffff8c;
  width: 100%;
}

.about_services .ser_item .title p {
  font-size: 25px;
  text-transform: uppercase;
}

.who_we_are {
  padding-top: 120px;
}

.who_we_are .content_card .img {
  height: 600px;
  display: block;
}

.who_we_are .content_card .info .title {
  font-weight: bold;
  font-size: 60px;
  line-height: 65px;
  color: #312f2f;
  margin-bottom: 15px;
}

.who_we_are .content_card .info p {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  line-height: 1.7;
  margin-top: 20px;
  font-family: filson_regular;
}

.facilities {
  position: relative;
  padding: 180px 0 140px;
  background-color: #f4f4f4;
  margin-top: 0px;
}

.facilities .title {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  color: #000;
}

.facilities .cards_wrapper {
  position: relative;
  padding: 50px 30px;
  background-color: #fff;
  margin-bottom: 60px;
}

.facilities .cards_wrapper .row .col-lg-4:nth-of-type(2) {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.facilities .cards_wrapper .fac_card {
  text-align: center;
}

.facilities .cards_wrapper .fac_card .icon {
  height: 40px;
  margin-bottom: 30px;
}

.vision_mission {
  padding-top: 120px;
}

.vision_mission .col-lg-4:nth-of-type(1) .icon {
  background-color: #D5E1C3;
}

.vision_mission .col-lg-4:nth-of-type(2) .icon {
  background-color: #B7E7F8;
}

.vision_mission .col-lg-4:nth-of-type(3) .icon {
  background-color: #E7DBCC;
}

.vision_mission .vis_cad {
  padding: 50px 40px;
  background-color: #fff;
  -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);
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.vision_mission .vis_cad .icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 30px;
  background-color: #eee;
  font-size: 25px;
}

.vision_mission .vis_cad .icon .iconImg {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.vision_mission .vis_cad .info h5 {
  font-size: 25px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.vision_mission .vis_cad .info p {
  color: #707070;
  font-size: 15px;
}

.vision_mission .values_wrapper .slider_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.vision_mission .values_wrapper .slider_title .icon {
  font-size: 20px;
}

.vision_mission .values_wrapper .slider_title h5 {
  font-size: 25px;
}

.swiper-notification {
  display: none;
}

.drive_slider {
  position: relative;
}

.drive_slider .info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20%;
  z-index: 10;
}

.drive_slider .info .info_content {
  padding: 50px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.drive_slider .info .info_content h2 {
  font-size: 28px;
  color: #58595b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.drive_slider .info .info_content p {
  font-size: 15px;
  color: #58595b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.drive_slider .info .info_content .tr_text {
  font-size: 15px;
  color: #B9BABB;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.drive_slider .info .info_content a {
  margin-top: 8px;
  font-size: 17px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.drive_slider .img {
  height: 500px;
}

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

.drive_slider .swiper-slide .info_content {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.drive_slider .swiper-slide .info_content h2,
.drive_slider .swiper-slide .info_content p,
.drive_slider .swiper-slide .info_content .tr_text,
.drive_slider .swiper-slide .info_content a {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.drive_slider .swiper-slide.swiper-slide-active .info_content {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drive_slider .swiper-slide.swiper-slide-active .info_content h2,
.drive_slider .swiper-slide.swiper-slide-active .info_content p,
.drive_slider .swiper-slide.swiper-slide-active .info_content .tr_text,
.drive_slider .swiper-slide.swiper-slide-active .info_content a {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

.drive_slider .swiper-pagination {
  text-align: left;
}

.drive_slider .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 0;
  background-color: #0005;
}

.drive_slider .swiper-button-next:after,
.drive_slider .swiper-button-prev:after {
  color: #fff;
  font-size: 30px;
}

.derives_pg {
  position: relative;
  height: 85vh;
  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;
}

.derives_pg .txt_box {
  padding: 0 2vw;
}

.derives_pg .txt_box .title {
  font-weight: 500;
}

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

.derives_pg .box {
  width: 100%;
  position: relative;
  z-index: 9;
}

.derives_pg::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #eee;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.values_sec {
  background-color: #F4F4F4;
  padding: 70px 0;
}

.values_sec .inner {
  position: relative;
  background-color: #fff;
}

.values_sec .value_card {
  position: relative;
  padding: 40px 3vw;
  height: 100%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.values_sec .value_card .img {
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.values_sec .value_card .card-body {
  padding: 2rem 1rem;
}

.values_sec .value_card::after, .values_sec .value_card::before {
  content: '';
  width: 1px;
  height: 250px;
  top: 50%;
  position: absolute;
  background: #000;
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.values_sec .value_card::before {
  left: 1px;
}

.values_sec .value_card::after {
  right: 0;
}

.values_sec .values_swiper {
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}

.values_sec .values_swiper .swiper-slide {
  height: auto;
}

.values_sec .values_swiper .swiper-slide-active .value_card::after, .values_sec .values_swiper .swiper-slide-active .value_card::before {
  opacity: 1;
}

.values_sec .arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.values_sec .arrows span {
  -webkit-box-shadow: 0px 0px 10px 0 #0001;
          box-shadow: 0px 0px 10px 0 #0001;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

.values_sec .arrows span img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.values_sec .arrows .swiper_next {
  -webkit-margin-start: -25px;
          margin-inline-start: -25px;
}

.values_sec .arrows .swiper_prev {
  -webkit-margin-end: -25px;
          margin-inline-end: -25px;
}

.content_sec {
  padding: 70px 0;
}

.content_sec .box {
  padding: 6vw;
  position: relative;
  -webkit-box-shadow: 0 3px 6px 0 #A5A5A5;
          box-shadow: 0 3px 6px 0 #A5A5A5;
}

.content_sec .box .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content_sec .box .txt_box {
  padding: 25px 2vw;
}

/* --------------- location_page --------------- */
.location_pg_card {
  padding-top: 120px;
  position: relative;
}

.location_pg_card h2 {
  font-size: 45px;
}

.location_pg_card .location_card {
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
  margin-top: 15px;
  height: calc(100% - 15px);
  margin-bottom: 15px;
}

.location_pg_card .location_card .img {
  height: 250px;
}

.location_pg_card .location_card .info {
  padding: 30px;
}

.location_pg_card .location_card .info .title {
  font-size: 25px;
  margin-bottom: 10px;
}

.location_pg_card .location_card .info p {
  font-size: 15px;
  color: #707070;
  line-height: 1.5;
}

.location_pg_card .loc_swiper,
.location_pg_card .loc_swiper2 {
  position: relative;
  overflow: hidden;
  padding: 0 23px;
}

.location_pg_card .arrows {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.location_pg_card .arrows span {
  -webkit-box-shadow: 0px 0px 10px 0 #0001;
          box-shadow: 0px 0px 10px 0 #0001;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

.location_pg_card .arrows span img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header_loc_pg {
  position: relative;
  padding: 70px 0;
  background: transparent;
}

.header_loc_pg::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background-color: #6A952B;
  opacity: 10%;
}

.header_loc_pg .box .loc_card {
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  border-radius: 3px;
  -webkit-box-shadow: 0 30px 50px 0 rgba(0, 9, 40, 0.1);
          box-shadow: 0 30px 50px 0 rgba(0, 9, 40, 0.1);
  height: 100%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.header_loc_pg .box .loc_card .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header_loc_pg .box .loc_card .txt {
  margin-top: 7px;
  width: calc(100% - 60px);
}

.header_loc_pg .box .loc_card .txt .det {
  font-size: 13px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.header_loc_pg .box .swiper-slide {
  height: auto;
}

.properties_sec {
  padding-top: 70px;
}

.properties_sec .inner {
  position: relative;
  padding: 70px 3vw;
  background-color: #15131b;
}

.properties_sec .inner .butn {
  background-color: #fff;
}

.properties_sec .inner .butn span {
  color: var(--mainColor) !important;
}

.properties_sec .inner .zi-5 {
  position: relative;
  z-index: 5;
}

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

/* --------------- page_compound --------------- */
.page_compound header {
  background: transparent;
  position: relative;
  padding: 70px 0;
}

.page_compound header::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background-color: #E2F5FD;
  opacity: 100%;
}

.compound_overview {
  padding-top: 0px;
}

.compound_overview .title {
  font-size: 25px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.compound_overview .img {
  height: 280px;
}

.compound_overview .overview_slider {
  position: relative;
  overflow: hidden;
}

.compound_overview .overview_slider .swiper-button-next::after,
.compound_overview .overview_slider .swiper-button-prev::after {
  color: #fff;
  font-size: 20px;
}

.compound_overview .locations .locations_content {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
}

.compound_overview .locations .locations_content .location_card {
  padding: 0;
  margin-top: 20px;
  -webkit-filter: none;
          filter: none;
}

.compound_overview .compound_info {
  position: relative;
  margin-top: 50px;
  padding: 30px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.compound_overview .compound_info .box {
  padding: 20px;
  height: 100%;
  background-color: #f9f9f9;
}

.compound_overview .compound_info .cart_icon {
  position: absolute;
  bottom: 100px;
  right: 100px;
}

.compound_overview .compound_info .title {
  font-size: 25px;
  margin-bottom: 30px;
}

.compound_overview .compound_info .item {
  margin-bottom: 30px;
}

.compound_overview .compound_info .item .sub_title {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.compound_overview .compound_info .item p {
  font-size: 15px;
  color: #707070;
  margin: 10px 0;
}

.compound_overview .compound_info .item .icon img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.compound_overview .compound_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.compound_overview .compound_info ul li {
  width: 50%;
}

.compound_overview .compound_info ul li p {
  margin: 12px 0;
}

.compound_overview .content_box {
  margin: 50px 0;
}

.compound_overview .content_box .title_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.compound_overview .content_box .title_box h2 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 35px;
  font-weight: bold !important;
}

.compound_overview .content_box .inner {
  background-color: #F1F4ED;
  padding: 40px 4vw;
  -webkit-box-shadow: inset 0 3px 6px 0 #0001;
          box-shadow: inset 0 3px 6px 0 #0001;
}

.compound_overview .content_box .inner .content {
  margin: 30px 0;
}

.compound_overview .content_box .inner .content h4 {
  text-transform: uppercase;
  height: 65px;
}

.compound_overview .content_box .inner .content p {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: filson_light;
}

.compound_overview .content_box .inner .content p .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.compound_overview .location_card {
  position: relative;
  margin-top: 50px;
  padding: 50px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.compound_overview .location_card .title {
  font-size: 25px;
  margin-bottom: 30px;
}

.compound_overview .location_card .map {
  position: relative;
  overflow: hidden;
}

.compound_overview .location_card .map iframe {
  margin-bottom: -6px;
}

.compound_overview .location_card .map .full_map {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background-color: #000000c2;
  color: #fff;
  font-size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
}

.compound_overview .det_box .compound_card {
  padding: 25px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.compound_overview .det_box .compound_card .img_box {
  height: 300px;
  position: relative;
}

.compound_overview .det_box .compound_card .img_box .expand_butn {
  width: 40px;
  height: 40px;
  background-color: var(--mainColor);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}

.compound_overview .det_box .compound_card .img_box .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.compound_overview .det_box .compound_card .card-body {
  padding: 1.5rem .5rem;
}

.compound_overview .det_box .compound_card .card-body .title {
  font-size: 25px;
}

.compound_overview .det_box .compound_card .card-body li {
  font-size: 16px;
  color: #707070;
  padding: 5px 0;
  list-style-type: circle;
  width: 100%;
  -webkit-margin-start: 25px;
          margin-inline-start: 25px;
  -webkit-padding-start: 5px;
          padding-inline-start: 5px;
}

.compound_overview .det_box .compound_swiper {
  position: relative;
  overflow: hidden;
  padding: 15px;
}

.compound_overview .det_box .compound_swiper .arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding: 0 20px;
}

.compound_overview .det_box .compound_swiper .arrows span {
  -webkit-box-shadow: 0px 0px 10px 0 #0001;
          box-shadow: 0px 0px 10px 0 #0001;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
}

.compound_overview .det_box .compound_swiper .arrows span img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- page_contact --------------- */
.page_contact header::after {
  background-color: var(--mainColor);
}

.page_contact header .info .contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #707070;
  font-size: 17px;
  margin-top: 15px;
}

.page_contact header .info .contact_item .icon {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  color: var(--mainColor);
  background-color: #C79A6522;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact_content {
  padding-bottom: 90px;
}

.contact_content .contact_page_title {
  position: relative;
  padding: 70px 0;
  text-align: center;
  background-color: #6A952B11;
  margin-bottom: 120px;
}

.contact_content .contact_page_title h2 {
  font-size: 50px;
  text-transform: capitalize;
}

.contact_content .map_card {
  position: relative;
  padding: 30px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.contact_content .form-select .form-select {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #9993;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  padding: 0;
  margin-bottom: 20px;
}

.contact_content .map {
  position: relative;
  overflow: hidden;
}

.contact_content .map iframe {
  margin-bottom: -6px;
}

.contact_content .map .full_map {
  position: absolute;
  left: 0;
  top: 20px;
  width: 120px;
  height: calc(100% - 40px);
  background-color: #000000c2;
  color: #fff;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
}

.contact_content .contact_form {
  position: relative;
  padding: 30px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.contact_content .contact_form .img {
  height: 300px;
}

.contact_content .contact_form .form-control {
  font-size: 13px;
}

.info_side {
  position: relative;
  padding: 30px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.info_side .contact_item {
  padding: 30px;
  margin-top: 20px;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_side .contact_item .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eee;
  font-size: 18px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  color: var(--mainColor);
}

.info_side .img {
  margin-bottom: 30px;
  height: 215px;
}

/* --------------- page_kyc --------------- */
.page_kyc header {
  position: relative;
}

.page_kyc header::after {
  background-color: var(--mainColor);
}

.page_kyc header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 45px;
  color: #fff;
  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;
  z-index: 10;
}

.page_kyc header .full_img {
  height: 550px;
}

.page_kyc .kyc_content {
  padding-top: 120px;
}

.page_kyc .kyc_content h2 {
  font-size: 45px;
  color: #707070;
  margin-bottom: 50px;
  text-align: center;
}

.page_kyc .kyc_content .form_box {
  position: relative;
  padding: 60px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
          filter: drop-shadow(0 3px 6px #d7e7ec);
}

.page_kyc .kyc_content .form_box label {
  font-weight: bold;
  font-size: 13px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.page_kyc .kyc_content .form_box .form-control,
.page_kyc .kyc_content .form_box .form-select {
  font-size: 14px;
  border-color: #9992;
  border-radius: 7px;
}

.page_kyc .kyc_content .cards .card_box {
  background-color: #f9f9f9;
  padding: 0 30px 30px 30px;
  border-radius: 15px;
  border: 1px solid #9992;
}

.page_kyc .kyc_content .cards .card_box .card_title {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  color: var(--mainColor);
  text-transform: capitalize;
  border: 1px solid #9992;
  border-radius: 0 0 30px 30px;
  margin-bottom: 30px;
  font-size: 13px;
}

.page_kyc .kyc_content .cards .card_box .form-check {
  margin-top: 15px;
}

.page_kyc .kyc_content .cards .card_box .form-check label {
  font-size: 16px;
  font-weight: normal;
  color: #707070;
}

.page_kyc .kyc_content .cards .card_box .form-check .form-check-input {
  width: 25px;
  height: 25px;
  margin-top: -2px;
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
  border: 0;
  background-color: #e2e2e2;
}

.page_kyc .kyc_content .cards .card_box .form-check .form-check-input:checked {
  background-color: var(--mainColor);
}

.kyc_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.kyc_pg .form_box {
  position: relative;
  padding: 60px;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px #d7e7ec);
  filter: drop-shadow(0 3px 6px #d7e7ec);
}

.kyc_pg .form_box .form-wizard .wizard-fieldset {
  display: none;
}

.kyc_pg .form_box .form-wizard .wizard-fieldset.show {
  display: block;
}

.kyc_pg .form_box .form-wizard .wizard-form-error {
  display: none;
  background-color: #d70b0b;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
}

.kyc_pg .form_box .form-wizard .form-wizard-previous-btn {
  background-color: #fb1647;
}

.kyc_pg .form_box .form-wizard .form-group {
  position: relative;
  margin-bottom: 30px;
}

.kyc_pg .form_box .form-wizard .form-group .label {
  font-size: 14px;
  color: #666;
  margin-bottom: .5rem;
  display: block;
  font-weight: bold;
}

.kyc_pg .form_box .form-wizard .form-group .form-control {
  font-weight: 300;
  height: auto !important;
  padding: 15px;
  color: #888888;
  background-color: #f1f1f1;
  border: none;
  border-radius: 0;
}

.kyc_pg .form_box .form-wizard .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.kyc_pg .form_box .form-wizard .form-group .iti {
  width: 100%;
}

.kyc_pg .form_box .form-wizard .form-group .iti #phone {
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}

.kyc_pg .form_box .form-wizard .form-group .flag_dropdown .vodiapicker {
  display: none;
}

.kyc_pg .form_box .form-wizard .form-group .flag_dropdown .dropdown li {
  list-style-type: none;
  text-align: start;
  font-size: 12px;
  padding: 5px 7px;
  cursor: pointer;
}

.kyc_pg .form_box .form-wizard .form-group .flag_dropdown .dropdown .dropdown-toggle {
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 0;
  border: none;
  height: 54px;
  font-size: 14px;
}

.kyc_pg .form_box .form-wizard .form-group .flag_dropdown .dropdown img {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.kyc_pg .form_box .form-wizard .form-group .flag_dropdown .dropdown .dropdown-menu {
  min-width: 140px;
  text-align: center;
}

.kyc_pg .form_box .form-wizard .form-group .flag_dropdown .dropdown .dropdown-toggle::after {
  position: absolute;
  top: 26px;
  inset-inline-end: 5px;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .display_num {
  padding: 15px;
  color: #888888;
  background-color: #f1f1f1;
  height: 54px;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  border: none;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .display_num::after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: inline-block;
  position: absolute;
  inset-inline-end: 15px;
  top: 19px;
  color: #343A40;
  font-size: 12px;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box {
  position: absolute;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 0;
  background-color: #fff;
  z-index: 5;
  padding: .5rem;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .item {
  padding: .5rem 1rem;
  width: 100%;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .item .sm_title {
  color: #666;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 8px;
  border: 2px solid #ddd;
  min-width: 139px;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt-plus,
.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt-minus {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt-plus:hover,
.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt-minus:hover {
  background-color: var(--mainColor) !important;
  color: #fff !important;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt-plus .fa,
.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt-minus .fa {
  font-weight: 300;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .quantity-container .qt {
  display: inline-block;
  min-width: 40px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: var(--secondary);
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

.kyc_pg .form_box .form-wizard .form-group .select_num_people .selection_box .butn:hover {
  color: #fff;
}

.kyc_pg .form_box .form-wizard .wuzard_title {
  color: #555;
}

.kyc_pg .form_box .form-wizard .butns .butn {
  color: #fff;
}

.kyc_pg .form_box .form-wizard .butns .butn:hover {
  color: var(--mainColor);
}

.kyc_pg .form_box .form-wizard .butns .form-wizard-previous-btn {
  padding: 12px 20px;
  background-color: #eee;
  font-size: 14px;
  border-radius: 30px;
  border: 1px solid #eee;
  margin: 0 5px;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-start: 14%;
          padding-inline-start: 14%;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li {
  width: 33%;
  position: relative;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li span {
  background-color: #dddddd;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  text-align: center;
  width: 40px;
  z-index: 1;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li::after {
  background-color: #f3f3f3;
  content: "";
  height: 5px;
  position: absolute;
  left: -50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li:last-child::after {
  width: 50%;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li.active::after {
  background-color: var(--mainColor);
  left: 0%;
  width: 50%;
  border-color: var(--mainColor);
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li.active span {
  background-color: var(--mainColor);
  color: #ffffff;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li.active:last-child::after {
  width: 15%;
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li.activated::after {
  background-color: var(--mainColor);
  left: 0%;
  width: 100%;
  border-color: var(--mainColor);
}

.kyc_pg .form_box .form-wizard .form-wizard-steps li.activated span {
  background-color: var(--mainColor);
  color: #ffffff;
}

.modal-content {
  border: 0;
  border-radius: 30px;
  background-color: #ffffffec;
}

.success_modal .modal-content {
  text-align: center;
  padding: 50px 30px;
}

.success_modal .modal-content .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #547519;
}

/* --------------- page_contact --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  body {
    overflow-x: hidden !important;
  }
  section {
    padding: 50px 0 !important;
    overflow: hidden !important;
  }
  section#shadow-host-companion {
    padding: 0 !important;
  }
  .order_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .navbar .logo {
    width: 200px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    text-align: center;
  }
  .navbar .butn, .navbar .lang_link {
    margin: auto !important;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  header {
    overflow: hidden;
    margin-bottom: 0 !important;
  }
  header .content {
    padding: 50px 2vw !important;
  }
  header .info h1 {
    font-size: 40px;
  }
  .about {
    padding: 50px 0;
  }
  .about .title {
    padding: 0 0 20px 0;
  }
  .about .numbers_box {
    padding: 30px;
  }
  .about .numbers_box .numbers .number_item {
    margin-bottom: 20px;
  }
  .about .vision_card .img_box {
    height: auto;
    position: relative;
    margin-bottom: 25px;
  }
  .about_cards .about_card .info h5 {
    font-size: 30px;
  }
  .about_cards .about_card .info p {
    font-size: 15px;
  }
  .locations .locations_content {
    padding: 30px;
  }
  .locations .locations_content h2 {
    margin-bottom: 20px;
  }
  .locations .locations_content .locations_slider .arrows {
    padding: 0 10px;
  }
  .locations .locations_content .locations_slider .arrows span img {
    width: 30px;
    height: 30px;
  }
  footer .sub_title {
    margin-top: 30px;
  }
  footer .footer_web_view {
    display: none !important;
  }
  footer .footer_mob_view {
    display: block !important;
  }
  footer .foot .text-start,
  footer .foot .text-end {
    text-align: center !important;
    margin: 5px 0;
  }
  .about_services {
    padding: 0 15px;
  }
  .about_services .ser_item {
    margin-bottom: 20px;
  }
  .about_services .ser_item .img {
    height: 350px;
  }
  .who_we_are .content_card {
    padding: 0;
  }
  .who_we_are .content_card .info {
    padding: 30px;
  }
  .who_we_are .content_card .info .title {
    font-size: 30px;
    line-height: normal;
  }
  .who_we_are .content_card .info p {
    font-size: 15px;
  }
  .facilities .title {
    font-size: 20px;
  }
  .facilities .cards_wrapper .row .col-lg-4:nth-of-type(2) {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: none;
    border-left: none;
    padding: 15px 0;
    margin: 20px 0;
  }
  .ceo_pg .text_box {
    margin-left: 0;
    width: 95%;
    margin: auto;
    margin-top: -50px;
    padding: 30px 5vw;
  }
  .ceo_pg .sec-img {
    height: 300px;
    width: 100%;
  }
  .page_compound header::after {
    width: 100%;
  }
  .compound_overview .content_box .inner .content h4 {
    height: auto;
    font-size: 17px;
  }
  .compound_overview .content_box .inner .content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact_content .contact_page_title {
    margin-bottom: 70px;
  }
  .contact_content .map_card {
    margin-top: 25px;
  }
  .contact_content .map iframe {
    height: 400px;
  }
  .derives_pg .txt_box {
    padding: 70px 2vw;
  }
  .derives_pg::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .values_sec .value_card::after,
  .values_sec .value_card::before,
  .statics_sec .statics_swiper .swiper-slide-active .static_card::after,
  .statics_sec .statics_swiper .swiper-slide-active .static_card::before {
    display: none;
  }
  .content_sec,
  .values_sec {
    margin-top: 0 !important;
  }
  .kyc_header {
    min-height: auto;
    height: auto;
  }
  .kyc_header h1 {
    width: 100%;
    text-align: center;
    font-size: 35px;
  }
  .kyc_pg .form_box {
    padding: 60px 5vw;
  }
  .services_sec .props_sec {
    padding: 0;
  }
  .services_sec::before {
    width: 100%;
  }
  .location_pg_card h2 {
    font-size: 35px;
  }
  .location_pg_card .location_card .img {
    height: 250px !important;
  }
  .story_pg .img_box {
    height: 250px;
  }
  .info_side .img {
    height: 300px !important;
  }
  .vision_mission .vis_cad {
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }
  .page_kyc .kyc_content .form_box {
    padding: 30px 15px;
  }
  .img_cover {
    height: 100vw !important;
  }
  .contact_content .map .full_map,
  .compound_overview .location_card .map .full_map {
    width: 50px;
    font-size: 20px;
  }
  .compound_overview .location_card,
  .compound_overview .compound_info {
    padding: 30px 15px;
  }
  .props_sec .txt {
    height: auto;
  }
  .props_sec .txt .sec_title {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    margin-bottom: 25px;
    font-size: 35px;
  }
  .compound_overview .content_box .title_box h2 {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-bottom: 25px;
  }
  .values_sec .arrows .swiper_prev,
  .values_sec .arrows .swiper_next,
  .statics_sec .arrows .swiper_next,
  .statics_sec .arrows .swiper_prev {
    margin: 0 !important;
  }
}

/* ======= */
html[dir="rtl"] body {
  direction: rtl;
}
/*# sourceMappingURL=style.css.map */