/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

header {
  background: url(../../img/slider.png) no-repeat top center;
  min-height: 450px;
  height: 80vh;
}

.header-inner {
  min-height: 250px;
  height: auto;
}

.header-inner nav {
  margin-bottom: 70px;
}

.header-inner h4 {
  color: #fff;
  font-weight: bold;
}

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

.datebe ul li {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
}

.datebe ul li:last-child {
  color: #CC2027;
}

.dat-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff2b;
  padding: 10px;
  border-radius: 10px;
}

.dat-b img {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  width: 20px;
}

.dat-b ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav {
  padding: 10px 0;
  background-image: url(../../img/nav-back.svg);
  border-bottom: 1px solid #59657A;
  margin-bottom: 25vh;
}

.logo img {
  width: 50px;
}

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

.filter_bar {
  border-radius: 5px;
  padding: 5px;
  background: #fff;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 350px;
  padding-right: 10px;
}

.filter_bar > img {
  width: 20px;
  height: 20px;
}

.filter_bar input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0;
  height: 100%;
  padding: 0 10px;
  color: #7B809E;
}

.filter_bar input:focus {
  outline: 0;
}

.filter_bar button {
  background-color: #F6F7F9;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 30px;
  height: 30px;
  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;
}

.filter_bar button:focus {
  outline: 0;
}

.filter_bar button:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.filter_bar button img {
  width: 20px;
  height: 20px;
}

.responsive_nav {
  display: none;
}

.container_lan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_lang {
  margin-left: 20px;
}

.cont_lang a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_lang a span {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.log_in {
  display: inline-block;
  background: #FFD36A;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
}

.links_a {
  padding: 10px 0;
}

.links_a ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.links_a ul li {
  margin-left: 2vw;
}

.links_a ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.links_a ul li a.active {
  position: relative;
}

.links_a ul li a.active::before {
  background-color: #CC2027;
  content: " ";
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  bottom: -26px;
}

.content-slider {
  text-align: center;
}

.content-slider h2 {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
}

.content-slider p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  color: #AAAEB7;
}

.content-slider a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #CC2027;
  color: #fff;
  border-radius: 3px;
  padding: 6px 25px;
  font-size: 14px;
}

.owl-header {
  position: relative;
}

.owl-header .owl-nav {
  position: absolute;
  left: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.owl-header .owl-nav button {
  width: 40px;
  height: 40px;
  background-color: #424B61 !important;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.owl-header .owl-nav button svg {
  color: #fff;
}

.owl-header .owl-dots {
  position: absolute;
  left: 50%;
  top: 4vh;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.owl-header .owl-dot span {
  background-color: #5D6375 !important;
  width: 20px !important;
  height: 5px !important;
  margin: 5px 3px !important;
  border-radius: 0 !important;
  -webkit-transition: all .8s;
  transition: all .8s;
}

.owl-header .owl-dots .owl-dot.active span, .owl-header .owl-dots .owl-dot:hover span {
  background: #CC2027 !important;
  width: 40px !important;
}

footer {
  background: url(../../img/back-foot.png) no-repeat center bottom;
}

.foot-top {
  padding-top: 20px;
  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;
}

.foot-top .logo-img {
  margin-bottom: 10px;
}

.foot-top .logo-img img {
  width: 45px;
}

.foot-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.foot-top ul li {
  margin: 0 1vw;
}

.foot-top ul li a {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.foot-buttom {
  border-top: 1px solid #D5D5D5;
  padding: 20px 0;
  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;
}

.foot-buttom h6 {
  font-size: 14px;
  color: #fff;
}

.foot-buttom h6 span {
  color: #CC2027;
}

.foot-buttom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.foot-buttom ul li {
  margin-right: 20px;
}

.foot-buttom ul li svg {
  color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

button:focus {
  outline: none;
}

.item-slider {
  margin-top: 45px;
  margin-bottom: 30px;
}

.item-slider img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.copon {
  position: relative;
}

.copon .owl-nav button {
  width: 40px !important;
  height: 40px !important;
  background: #F7E5E6 !important;
}

.copon .owl-nav button svg {
  color: #CC2027;
}

.copon .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: -70px;
}

.copon .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -70px;
}

.item-info {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #DADFE5;
  margin-bottom: 20px;
}

.item-info h4 {
  font-weight: bold;
  color: #222F4B;
  margin-bottom: 20px;
}

.item-info span {
  margin-bottom: 20px;
  background: #8F96A4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 150px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
}

.info-text {
  margin-bottom: 40px;
}

.info-text h5 {
  color: #0B2D51;
  font-weight: bold;
  margin-bottom: 20px;
}

.info-text p {
  margin-bottom: 15px;
  color: #59657A;
}

.button-to {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-to a {
  background-color: #CC2027;
  padding: 7px 13px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.button-to a img {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}

.button-to a span {
  color: #fff;
}

.button-to a.blu {
  background-color: #222F4B;
}

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

.modal-header h5 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.modal-header .button {
  margin: 0;
}

.title-ourv {
  margin-bottom: 30px;
  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;
}

.title-ourv h4 {
  font-weight: bold;
  font-size: 20px;
  color: #0B2D51;
}

.title-ourv p {
  color: #7F9CBB;
}

.item-v {
  border-radius: 10px;
  padding: 15px;
  background-color: #F2F4F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.item-v span {
  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;
  min-width: 80px;
  min-height: 80px;
}

.item-v span img {
  width: 40px;
}

.item-v p {
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  -webkit-border-start: 1px solid #C4CCD5;
          border-inline-start: 1px solid #C4CCD5;
  color: #222F4B;
}

.item-serves {
  background-color: #F2F4F6;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.item-serves h4 {
  font-size: 17px;
  font-weight: bold;
  margin-top: 10px;
  color: #222F4B;
}

.item-serves .is {
  position: relative;
}

.item-serves .is img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.item-serves span {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #222f4b94;
  padding: 7px 14px;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
}

.item-serves .aff {
  background-color: #cc202770;
}

.login_container {
  position: fixed;
  z-index: 90;
  width: 100%;
  height: 100%;
  background-color: #00000061;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login_body {
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background-color: #fff;
}

.login_body h6 {
  text-align: center;
  margin-bottom: 10px;
}

.login_body h5 {
  text-align: center;
  margin-bottom: 15px;
}

.form_input {
  margin-bottom: 20px;
}

.form_input input {
  border-radius: 5px;
  width: 100%;
  height: 37px;
  border: 1px solid #DFDFDF;
  padding: 0 10px;
  color: #000;
}

.form_input input:focus {
  outline: 1px solid #CC2027;
}

.form_input select {
  border-radius: 5px;
  width: 100%;
  height: 37px;
  border: 1px solid #DFDFDF;
  padding: 0 10px;
  color: #000;
}

.form_input select:focus {
  outline: 1px solid #CC2027;
}

.save_password label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.save_password label input {
  width: 20px;
  height: 20px;
  accent-color: #CC2027;
}

.save_password label span {
  margin: 0 5px;
  font-size: 14px;
}

.login_btn {
  display: inline-block;
  background: #CC2027;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  color: #FFD36A;
  width: 100%;
  margin-bottom: 20px;
}

.login_btn:hover {
  color: #FFD36A;
}

.lo_btn {
  display: inline-block;
  background: #F6F7F9;
  text-align: center;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  width: 100%;
}

.lo_btn:hover {
  color: #FFD36A;
}

.save_password {
  margin-bottom: 20px;
}

button {
  border: 0;
  cursor: pointer;
}

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

.google_login a {
  width: 49%;
}

.forget_p {
  text-align: center;
  margin-bottom: 30px;
}

.log-m {
  margin-bottom: 20px;
  color: #7B809E;
  font-size: 13px;
}

.conact_whats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.conact_whats img {
  width: 30px;
}

.conact_whats span {
  font-size: 14px;
  margin: 0 8px;
}

[dir="ltr"] body {
  text-align: left;
  direction: ltr;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  color: inherit;
}

body {
  font-family: 'Almarai';
  text-align: right;
  direction: rtl;
}

html {
  scroll-behavior: smooth;
}

/* end scroll-top */
.about {
  padding: 40px 0;
}

.about-us {
  margin-top: 30px;
}

.about-us > span {
  color: #CC2027;
  font-weight: bold;
}

.about-us h3 {
  margin: 20px 0;
  color: #162542;
  font-weight: bold;
}

.about-us h3 span {
  color: #CC2027;
}

.about-us > p {
  color: #222F4B;
  margin-bottom: 20px;
}

.border-to {
  margin-top: -10px;
  display: block;
  margin-bottom: 20px;
}

.item-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.item-about img {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 32px;
}

.item-about span {
  color: #59657A;
  font-size: 13px;
}

.button-main a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #CC2027;
  color: #fff;
  border-radius: 3px;
  padding: 6px 25px;
  font-size: 14px;
}

.serves {
  background: url(../../img/back-r.png) no-repeat top center;
  padding: 40px 0;
}

.serves-body {
  border: 1px solid #38435C;
  min-height: 450px;
  padding: 40px 0;
}

.min-serves-title {
  text-align: center;
  margin-bottom: 40px;
  background: url(../../img/bac-t.png) no-repeat top center;
  background-size: contain;
}

.min-serves-title span {
  color: #CC2027;
  display: inline-block;
  margin-bottom: 15px;
}

.min-serves-title h3 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

.serv-item {
  text-align: center;
  margin-bottom: 20px;
}

.serv-item img {
  margin-bottom: 15px;
}

.serv-item h5 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: bold;
}

.serv-item p {
  color: #7F9CBB;
  font-size: 14px;
}

.our-works {
  min-height: 600px;
  padding: 40px 0;
  background: url(../../img/our-works.png) no-repeat bottom center;
}

.min-serves-title1 {
  text-align: center;
  margin-bottom: 40px;
  background: url(../../img/bac-t1.svg) no-repeat top center;
  background-size: contain;
}

.min-serves-title1 span {
  color: #CC2027;
  display: inline-block;
  margin-bottom: 15px;
}

.min-serves-title1 h3 {
  color: #222F4B;
  font-weight: 800;
  margin-bottom: 15px;
}

.work-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  height: 250px;
  width: 100%;
  background: #222F4B;
}

.work-item img {
  min-width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.wi-info {
  padding: 20px;
}

.wi-info span {
  font-size: 14px;
  background: #4D2B41;
  color: #CC2027;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.wi-info h4 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.wi-info p {
  font-size: 14px;
  color: #A6ABB7;
}

.owl_offer .owl-nav button {
  width: 40px !important;
  height: 40px !important;
  background: #F7E5E6 !important;
}

.owl_offer .owl-nav button svg {
  color: #CC2027;
}

.owl_offer .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: -70px;
}

.owl_offer .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -70px;
}

.contact-us {
  background: #fff;
  padding: 80px 0;
}

.contact-body {
  min-height: 350px;
  position: relative;
}

.contact-body::after {
  content: " ";
  display: block;
  background: url(../../img/back-contact.svg) no-repeat top center;
  width: 250px;
  height: 100%;
  position: absolute;
  top: -30px;
  right: -40px;
}

.contact-body-c {
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  height: 100%;
  min-height: 350px;
  background: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
}

.map {
  position: relative;
  width: 350px;
}

.map iframe {
  border-radius: 10px;
  height: 500px !important;
}

.call {
  position: absolute;
  right: -90px;
}

.call img {
  width: 180px;
}

.c-b-info {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-b-info .about-us {
  margin-top: 0;
}

.c-b-info .about-us h3 {
  font-size: 20px;
  margin-top: 10px;
}

.c-b-info .about-us img {
  margin-top: -5px;
}

.form-t {
  width: 100%;
  margin-bottom: 25px;
}

.form-t input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F2F4F6;
  border: 0;
  height: 50px;
  border-radius: 5px;
  padding: 0 10px;
}

.form-t textarea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F2F4F6;
  border: 0;
  padding: 10px;
  height: 125px;
  border-radius: 5px;
}

.has-icon {
  position: relative;
}

.has-icon img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 23px;
}

.has-icon input {
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}

.mb-t4 {
  margin-bottom: 40px;
}

.button-t button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #CC2027;
  color: #fff;
  border-radius: 3px;
  padding: 8px 25px;
  font-size: 14px;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #CC2027;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@-webkit-keyframes mymove1 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes mymove1 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.i_head {
  background: url(../../img/head.png) no-repeat top center;
  min-height: 200px;
  background-size: cover;
  border-radius: 10px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.i_head h4 {
  margin-bottom: 10px;
  color: #FFD36A;
}

.i_head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.i_head ul li {
  margin: 0 3px;
  color: #fff;
}

.inner {
  background: #fff;
}

.notification_head {
  margin-bottom: 20px;
  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;
}

.notification_head a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notification_head a img {
  margin: 0 5px;
  width: 20px;
}

.notification_body {
  margin-bottom: 40px;
}

.item_noti {
  -webkit-box-shadow: #959da521 0px 8px 24px;
  box-shadow: #959da521 0px 8px 24px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item_noti img {
  width: 60px;
}

.item_noti p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
}

.item_noti span {
  color: #7B809E;
}

.no-data {
  margin-bottom: 20px;
  text-align: center;
}

.no-data h4 {
  margin-bottom: 20px;
}

.ci_img .ci_img_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.prof {
  padding: 20px 20px 0 20px;
}

.pr a {
  padding: 8px 36px;
}

.main-t {
  margin-top: 40px;
}

.title-pro {
  border-top: 1px solid #D3D4D5;
  padding-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .title-ourv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .title-ourv p {
    margin-top: 10px;
  }
  .item-v {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .item-v p {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    border: 0;
  }
  .button-to {
    margin-bottom: 30px;
  }
  .inner_header {
    margin-top: 20px;
  }
  .main_slider {
    margin-top: 20px;
  }
  .i-open {
    overflow: hidden;
  }
  .md_show {
    display: block;
  }
  .md_none {
    display: none;
  }
  .responsive_nav {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 10px 15px 0 15px;
  }
  .responsive_nav img {
    width: 60px;
  }
  .responsive_nav svg {
    color: #fff;
  }
  .links_a {
    padding-top: 40px;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 65px;
    left: -100%;
    z-index: 44;
    background-color: #fff;
    -webkit-transition: left 0.6s;
    transition: left 0.6s;
    background: url(../../img/slider.png) no-repeat top center;
  }
  .links_a.open {
    left: 0;
  }
  .links_a ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .links_a ul li {
    margin-bottom: 10px;
  }
  .links_a ul li a {
    font-weight: 600;
  }
  .links_a .md_show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  .links_a .md_show .cont_lang a span {
    color: #000;
  }
  .contact-body-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-body-c .map {
    width: 100%;
  }
  .contact-body-c .map > img {
    width: 100%;
    height: auto;
  }
  .call {
    right: -50px;
  }
  .serves {
    background-size: cover;
  }
  .links_a {
    background-size: cover;
  }
}

@media (max-width: 700px) {
  .dat-b {
    display: none;
  }
  .work-item {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .work-item img {
    height: 230px;
  }
  .owl-header .owl-dots {
    display: none;
  }
  .foot-top ul {
    display: none;
  }
  .i_head {
    min-height: 120px;
  }
  .foot-buttom {
    border-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .foot-buttom ul {
    margin-top: 10px;
  }
  .item_noti {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 500px) {
  .login_body {
    max-width: 96%;
    margin: 0 2%;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1020px;
    margin: 1.75rem auto;
  }
}
/*# sourceMappingURL=style.css.map */