@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
@font-face {
  font-family: 'Droid Arabic Kufi';
  src: url("../../fonts/DroidArabicKufi-Bold.woff2") format("woff2"), url("../../fonts/DroidArabicKufi-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Droid Arabic Kufi';
  src: url("../../fonts/DroidArabicKufi.woff2") format("woff2"), url("../../fonts/DroidArabicKufi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: 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;
}

.container {
  max-width: 1560px;
  width: 88%;
}

body {
  font-family: "Almarai", sans-serif;
  text-align: right;
  direction: rtl;
  background: #FBFCFE;
}

html {
  scroll-behavior: smooth;
}

nav {
  padding: 10px 0;
  width: 100%;
  z-index: 4;
  background: #222222;
}

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

nav .nav-item .nav-logo {
  height: 40px;
  overflow: hidden;
}

nav .nav-item .nav-logo img {
  width: 130px;
}

.second-nav.inner-nav {
  min-height: 150px !important;
}

.second-nav .over-lay {
  min-height: 150px !important;
}

.second-nav .title-second {
  margin-top: 30px;
}

.burg {
  display: none;
}

.burg img {
  width: 25px;
}

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

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

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

.nav-links ul li {
  margin: 0 10px;
}

.nav-links ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}

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

.nav-login ul li {
  margin-right: 10px;
}

.nav-login ul li a img {
  width: 24px;
  height: 24px;
}

.slider-baner .content-baner h3 {
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #0004;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  width: 50%s;
}

.slider-baner .owl-nav button {
  width: 50px;
  height: 50px;
  background: #222222 !important;
  border-radius: 50% !important;
  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;
  zoom: .7;
}

.slider-baner .owl-prev {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider-baner .owl-prev img {
  width: 100%;
  height: 100%;
}

.slider-baner .owl-next {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider-baner .owl-next img {
  width: 100%;
  height: 100%;
}

.slider-baner .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}

.slider-baner .owl-dots button:focus {
  outline: 0;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.slider-baner .owl-theme .owl-dots .owl-dot span {
  background: #888888;
  border: 1px solid #fff;
}

.slider-baner .owl-theme .owl-dots .owl-dot.active span {
  background: #222222;
  width: 30px;
  border-color: #222222;
}

.slider-baner .owl-theme .owl-dots .owl-dot:hover span {
  background: #222222;
  border-color: #222222;
}

.slider-baner .owl-nav button {
  color: #fff !important;
}

.main-info {
  background: #0000000a;
  margin-top: -10px;
  padding: 40px 0;
}

.main-info-item-img img {
  width: 250px;
  height: 250px;
  border: 2px solid #bdbcbc;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}

.main-info-item {
  font-weight: 500;
}

.main-info-item img {
  width: 300px;
  height: 300px;
  border: 2px solid #bdbcbc;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}

.main-info-item h3 {
  margin-bottom: 10px;
  text-align: left;
  font-size: 19px;
}

.main-info-item span {
  color: #222222;
  font-size: 14px;
  text-align: justify;
  display: block;
}

.main-info-item p {
  font-size: 14px;
  text-align: justify;
}

.main-info-item p strong {
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  margin-left: 7px;
}

/*start  side menu*/
.side-menu {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000007d;
  z-index: 5;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  /* width */
  /* Track */
  /* Handle */
}

.side-menu .foot-logo {
  padding: 0 20px;
}

.side-menu ::-webkit-scrollbar {
  width: 10px;
}

.side-menu ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.side-menu ::-webkit-scrollbar-thumb {
  background: #08ada7;
}

.side-menu .foot-logo {
  margin-top: 20px;
}

.menu-show {
  visibility: visible;
  opacity: 1;
}

.menu-show .menu-content {
  margin-left: 0;
}

.menu-content {
  width: 410px;
  height: 100%;
  overflow-y: auto;
  background: #F3F3F3;
  margin-left: -100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.top-menu {
  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;
  margin-bottom: 10px;
}

.top-menu .logo {
  width: 130px;
}

.top-menu .closes {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.user-menu {
  border-bottom: 2px solid #F9F9FC;
  padding-bottom: 10px;
}

.user-menu h5 {
  text-transform: capitalize;
  font-weight: 600;
}

.user-menu span {
  font-size: .9rem;
}

.user-photo {
  margin: 0px auto 15px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: none;
}

.menu-content-head {
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 0 0 3px 0px #00000045;
          box-shadow: 0 0 3px 0px #00000045;
}

.menu-content-head ul {
  margin-top: 10px;
  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;
  padding: 0px 10px;
}

.menu-content-head ul li {
  cursor: pointer;
}

.menu-content-head ul li .tap-menu {
  margin: auto;
  width: 40px;
  height: 40px;
  background: #08ada7;
  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;
  border-radius: 3px;
}

.menu-content-head ul li .tap-menu img {
  width: 25px;
  height: 25px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.menu-content-head ul li span {
  display: block;
  margin-top: 5px;
  font-size: .9rem;
  text-transform: capitalize;
}

.title-cat {
  color: #7E859B;
  text-transform: capitalize;
  font-weight: 600;
}

.menu-content-body {
  background: #fff;
  margin-top: 8px;
  padding: 10px 10px 0px 10px;
  -webkit-box-shadow: 0 0 3px 0px #00000045;
          box-shadow: 0 0 3px 0px #00000045;
}

.menu-content-body ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.menu-content-body ul li a {
  font-weight: 600;
  color: #222;
}

.menu-content-footer {
  background: #fff;
  margin-top: 8px;
  -webkit-box-shadow: 0 0 3px 0px #00000045;
          box-shadow: 0 0 3px 0px #00000045;
}

.item-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-foot .item-f {
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-foot .item-f a {
  color: #222;
  font-size: .9rem;
  margin: 0 8px;
}

.item-foot .item-f span {
  width: 30px;
  height: 30px;
  background: #08ada7;
  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;
  border-radius: 50%;
}

.item-foot .item-f span img {
  width: 20px;
  height: 20px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

/*start  side menu*/
.body-cards {
  margin: 40px 0;
}

.normal-ads {
  margin: 20px 0;
}

.normal-card {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 4px 1px #00000029;
          box-shadow: 0 0 4px 1px #00000029;
  background: #545b620d;
  padding: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.normal-card .img-card {
  width: 200px;
  max-height: 120px;
  overflow: hidden;
  border-radius: 10px;
}

.normal-card .img-card img {
  border-radius: 10px;
}

.normal-info {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

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

.cbi-img span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.cbi-img span img {
  height: 100%;
}

.cbi-img p {
  font-weight: 600;
  padding: 0 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.get-item {
  background: #08ada7;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
}

.get-item:hover {
  color: #fff;
}

.card-info.modet {
  padding: 0 0 10px 0;
}

.remove-list {
  background: #dc3545;
}

.our-partner {
  padding: 40px 0;
}

.our-partner .item {
  text-align: center;
}

.our-partner .item img {
  width: 100px;
  height: 100px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-partner .owl-nav button {
  width: 50px;
  height: 50px;
  background: #222222 !important;
  border-radius: 50% !important;
  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;
  zoom: .7;
}

.our-partner .owl-prev {
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.our-partner .owl-prev img {
  width: 100%;
  height: 100%;
}

.our-partner .owl-next {
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.our-partner .owl-next img {
  width: 100%;
  height: 100%;
}

.our-partner .owl-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}

.our-partner .owl-dots button:focus {
  outline: 0;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.our-partner .owl-theme .owl-dots .owl-dot span {
  background: #888888;
  border: 1px solid #fff;
}

.our-partner .owl-theme .owl-dots .owl-dot.active span {
  background: #08ada7;
  width: 30px;
  border-color: #08ada7;
}

.our-partner .owl-theme .owl-dots .owl-dot:hover span {
  background: #08ada7;
  border-color: #08ada7;
}

.our-partner .owl-nav button {
  color: #fff !important;
}

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

.title-main h4 {
  display: inline-block;
  border-bottom: 4px solid #08ada7;
  border-top: 4px solid #08ada7;
  background: #08ada7;
  color: #fff;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.title-main p {
  font-size: 20px;
}

/* start footer*/
.footer-top {
  padding: 40px 0;
  background: #222222;
}

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

.foot-logo p {
  color: #888888;
  font-weight: 500;
  margin-bottom: 20px;
}

.foot-logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.foot-logo ul li {
  width: 50px;
}

.foot-logo ul li span {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #333333;
  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-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

.foot-logo ul li span:hover {
  background: #08ada7;
}

.foot-logo ul li span img {
  width: 20px;
  height: 20px;
  margin: 4px 0;
}

.foot-logo .policy a {
  color: #888888;
  text-decoration: underline !important;
}

.foot-link h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.foot-link ul li {
  margin-bottom: 10px;
}

.foot-link ul li a {
  color: #888888;
  font-size: .9rem;
}

.contact-us h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-us ul li {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-us ul li .icon-mail {
  width: 40px;
  height: 40px;
  background: #333333;
  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;
  border-radius: 50%;
}

.contact-us ul li .icon-mail img {
  width: 22px;
  height: 22px;
}

.contact-us ul li span {
  color: #888888;
  margin: 0 5px;
}

.footer-bottom {
  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;
  padding: 20px;
  background: #111111;
}

.footer-bottom h6 {
  color: #888888;
  font-weight: 400;
  font-size: 13px;
}

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

.footer-bottom ul li {
  margin: 0 8px;
  width: 60px;
  height: 30px;
  background: #222222;
  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;
  border-radius: 3px;
}

.footer-bottom ul li img {
  width: 40px;
}

/* end footer*/
/*start login*/
.p-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}

.p-login h1 {
  margin-top: 100px;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #222222;
}

.p-login h1 span {
  background: #08ada7;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.img-login {
  width: 50%;
  text-align: center;
}

.img-login img {
  width: 90%;
}

.content-login {
  background: #fff;
  width: 50%;
  min-width: 50%;
  min-height: 100vh;
  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;
}

.login-input {
  width: 400px;
  text-align: center;
}

.login-input h1 {
  display: none;
  margin-top: 100px;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #222222;
}

.login-input h1 span {
  background: #08ada7;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.login-input h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
}

.login-input h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
}

.login-input > span {
  display: inline-block;
  text-align: center;
  color: #888888;
  margin-bottom: 30px;
}

.login-input > span a {
  color: #08ada7;
  font-weight: 600;
}

.e-fild {
  margin-bottom: 20px;
}

.e-fild input,
.e-fild textarea {
  height: 40px;
  width: 100%;
  outline: 0;
  border: 0;
  background: #F3F3F3;
  padding: 10px;
  border-radius: 4px;
}

.e-fild input::-webkit-input-placeholder,
.e-fild textarea::-webkit-input-placeholder {
  /* Edge */
  color: #888888;
  font-weight: 500;
}

.e-fild input:-ms-input-placeholder,
.e-fild textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888888;
  font-weight: 500;
}

.e-fild input::-ms-input-placeholder,
.e-fild textarea::-ms-input-placeholder {
  color: #888888;
  font-weight: 500;
}

.e-fild input::placeholder,
.e-fild textarea::placeholder {
  color: #888888;
  font-weight: 500;
}

.e-fild textarea {
  height: 120px !important;
}

.sad-face {
  margin: 10px 0;
  text-align: center;
}

.sad-face img {
  width: 80px;
  height: 80px;
  margin: auto;
}

.forget-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.forget-m a {
  color: #08ada7;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.b-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.b-sub {
  padding: 10px 39px;
  border-radius: 20px;
  border: 0;
  font-size: 20px;
  background: #08ada7;
  color: #fff;
  outline: 0;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.b-sub:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.fild-number {
  position: relative;
}

.fild-number select {
  position: absolute;
  width: 70px;
  top: 5px;
  background: #08ada7;
  left: 10px;
  height: 30px;
}

.fild-number input {
  padding-left: 100px;
}

/*end login*/
.inner-nav {
  height: auto;
  min-height: 220px;
}

.inner-nav .over-lay {
  min-height: 220px;
  height: auto;
}

.filter {
  margin-top: 20px;
  -webkit-box-shadow: 0 0 4px 1px #00000029;
          box-shadow: 0 0 4px 1px #00000029;
  border-radius: 5px;
  overflow: hidden;
}

.filter .head-filter {
  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;
  height: 40px;
  background: #08ada7;
}

.filter .head-filter h4 {
  color: #fff;
  text-transform: capitalize;
}

.filter .filter-body {
  padding: 10px;
  background: #fff;
}

.body-posts {
  padding: 20px 0;
}

.item-filter h5 {
  color: #222222;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 17px;
}

.item-filter .checkbox-list li .custom-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.item-filter .checkbox-list li .custom-check span {
  margin: 0 12px;
  color: #888888;
  text-transform: capitalize;
  font-weight: 500;
}

.item-filter .checkbox-list li .custom-check input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
}

.item-filter .checkbox-list li .custom-check input::before {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #888888;
  background: #fff;
  position: absolute;
  cursor: pointer;
  visibility: visible;
  z-index: 2;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.item-filter .checkbox-list li .custom-check input::after {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 5;
  visibility: visible;
  background: url(../../img/right-check.svg);
  background-size: contain;
  opacity: 0;
  top: 2px;
  left: 3px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.item-filter .checkbox-list li .custom-check input:checked::before {
  border: 2px solid #41A6DF;
}

.item-filter .checkbox-list li .custom-check input:checked::after {
  opacity: 1;
}

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

.item-slider-r input {
  background-color: #F3F3F3;
  font-size: 14px;
  line-height: 38px;
  color: #222222;
  font-weight: 600;
  border: 1px solid #E4E2E2;
  width: 65px;
  text-align: center;
  height: 35px;
}

.item-slider-r input:-webkit-inner-spin-button {
  display: none;
}

.item-slider-r input[type=number]::-webkit-inner-spin-button,
.item-slider-r input[type=number]::-webkit-outer-spin-button {
  display: none;
}

.ui-widget.ui-widget-content {
  border: 0;
  margin-bottom: 20px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -7px;
  border-radius: 50%;
  background: #08ada7;
  cursor: pointer;
}

.footer-button {
  margin-bottom: 10px;
}

.footer-button button {
  width: 100%;
  border: 0;
  background: #08ada7;
  height: 40px;
  color: #fff;
  text-align: center;
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.footer-button button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.subscription-packages {
  margin: 40px 0;
}

.dit {
  margin-top: 20px;
}

.dit h5 {
  text-transform: capitalize;
  margin-bottom: 10px;
  padding-left: 4px;
  border-left: 4px solid #08ada7;
  font-weight: 600;
}

.dit p {
  margin-bottom: 20px;
}

.dit ul {
  list-style: disc;
  padding: 0 15px;
}

.dit ul li {
  font-weight: 600;
  color: #888888;
}

.dit ul li::marker {
  color: #08ada7;
}

.contact-img {
  margin-top: 40px;
}

/* start section price box */
.owl-packages {
  position: relative;
}

.owl-packages .item {
  margin: 0 10px;
}

.owl-packages .owl-prev {
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-packages .owl-prev:hover {
  background: transparent !important;
}

.owl-packages .owl-prev img {
  width: 30px;
}

.owl-packages .owl-next {
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-packages .owl-next:hover {
  background: transparent !important;
}

.owl-packages .owl-next img {
  width: 30px;
}

.price-box .card {
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  position: relative;
  padding: 40px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
  margin: 30px auto;
}

.price-box .card:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.price-box .item-one:nth-child(1) .card,
.price-box .item-one:nth-child(1) .card .title span {
  background: linear-gradient(-45deg, #41A6DF, #41A6DF);
}

.price-box .item-tow .card,
.price-box .item-tow .card .title span {
  background: linear-gradient(-45deg, #00bcd4, #00bcd4);
}

.price-box .item-one:nth-child(3) .card,
.price-box .item-one:nth-child(3) .card .title span {
  background: linear-gradient(-45deg, #41A6DF, #41A6DF);
}

.price-box .card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  -webkit-transform: skewY(-5deg) scale(1.5);
  transform: skewY(-5deg) scale(1.5);
}

.price-box .card .title span {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.price-box .card .title h2 {
  position: relative;
  font-family: "Raleway", sans-serif;
  margin: 20px 0 0;
  color: #fff;
  font-size: 28px;
  z-index: 2;
}

.price-box .card .price {
  position: relative;
  z-index: 2;
}

.price-box .card .price h4 {
  margin: 0;
  padding: 20px 0;
  color: #fff;
  font-size: 60px;
}

.price-box .card .option {
  position: relative;
  z-index: 2;
}

.price-box .card .option ul {
  margin: 0;
  padding: 0;
}

.price-box .card .option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 16px;
}

.price-box .card a {
  position: relative;
  z-index: 2;
  font-weight: 600;
  background: #fff;
  color: #000;
  width: 150px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  margin: 20px auto 0;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.price-box .card a:hover {
  background-color: #F93D66;
  color: #fff;
}

/* end section price box */
.dit {
  margin-bottom: 20px;
}

.dit p {
  font-size: 15px;
  font-weight: 600;
  color: #888888;
}

.end-date {
  font-weight: 600;
  color: #6c757d;
  font-size: 13px;
}

.end-date img {
  width: 15px;
  height: 15px;
}

.end-date span {
  margin: 0 5px;
}

/*start card-requests*/
.pending-requests {
  margin-bottom: 20px;
}

.card-requests {
  width: 250px;
  margin: 0 10px;
  margin-bottom: 20px;
}

.card-requests .rate-fot {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0 !important;
}

.card-requests .item-sl {
  background: #08ada7 !important;
}

.card-requests-body {
  border-radius: 10px 10px 0 0;
  padding: 20px 10px 20px 10px;
  background: #fff;
  text-align: center;
}

.card-requests-body h6 {
  margin: 10px 0 5px 0;
  color: #3A3B43;
}

.card-requests-body span {
  color: #B9C8DD;
  font-weight: 300;
}

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

.price-money img {
  width: 25px !important;
  height: 25px;
}

.price-money span {
  padding: 0 8px;
  color: #08ada7 !important;
  font-weight: bold;
}

.s-Pending {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}

.s-Pending span {
  font-weight: 500;
  padding: 5px 25px;
  color: #E4B340 !important;
  background: #FDF7EB;
  border-radius: 20px;
  font-size: 13px;
  text-transform: uppercase;
}

.basket {
  width: 100px;
  height: 100px;
  margin: auto;
  background: #D9F5F3;
  border-radius: 50%;
  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;
}

.basket img {
  width: 50px;
  height: 50px;
}

.card-requests-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-requests-footer button {
  color: #fff;
  font-weight: 600;
  border: 0;
  width: 50%;
  background: #08ada7;
  height: 40px;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
}

.card-requests-footer button:focus {
  outline: 0;
}

.card-requests-footer button:active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.card-requests-footer button:nth-child(1) {
  border-radius: 0 0 0 10px;
}

.card-requests-footer button:nth-child(2) {
  border-radius: 0 0 10px 0;
}

/*start top-products*/
.item-top-products {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 25px 10px 20px 10px;
  text-align: center;
}

.item-top-products p {
  margin: 10px 0;
  text-align: center;
  color: #3A3B43;
  font-weight: 500;
  text-transform: capitalize;
  font-weight: bold;
}

.item-top-products span {
  color: #B9C8DD;
  font-weight: 100px;
  text-transform: capitalize;
  font-size: 13px;
}

.product-img2 {
  margin: auto;
  width: 110px;
  height: 110px;
  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;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 5px 0px #E7E7F2;
          box-shadow: 0 0 5px 0px #E7E7F2;
}

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

.r-star {
  background: #FFE6B3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  padding: 5px 10px;
  border-radius: 0 5px 5px 0;
}

.r-star span {
  padding: 0 5px;
  color: #E99D01;
  font-weight: bold;
}

/* end top-products*/
.hide-star .card-post-head::before {
  display: none !important;
}

.modal-header {
  padding: 10px;
}

.modal-header span img {
  width: 15px;
}

.modal-header h5 {
  font-size: 16px;
  font-weight: 600;
  color: #888;
  text-transform: capitalize;
}

.item-breadcrumb {
  margin: 30px 0;
}

.item-breadcrumb ul {
  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;
}

.item-breadcrumb ul li {
  margin-right: 20px;
  text-transform: capitalize;
  position: relative;
  color: #222222;
  font-weight: 600;
  font-size: 13px;
}

.item-breadcrumb ul li a {
  color: inherit;
}

.item-breadcrumb ul li::after {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -15px;
}

.item-breadcrumb ul li:last-child {
  color: #888888;
}

.item-breadcrumb ul li:last-child::after {
  display: none;
}

.load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 20px 0;
}

.load-more button {
  border-radius: 10px;
  background: #000;
  color: #fff;
  padding: 7px 20px;
  border: 0;
  text-transform: capitalize;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.load-more button:hover {
  background: #FA354C;
  color: #fff;
}

.title-h h4 {
  font-size: 23px;
  font-weight: 600;
  color: #222;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.title-h h4::after {
  content: " ";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 18px;
  background: #41a6df26;
  position: absolute;
  z-index: -1;
  top: 15px;
}

.title-h h4::after {
  z-index: 4;
}

.card-post {
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 4px 1px #00000029;
          box-shadow: 0 0 4px 1px #00000029;
  background: #545b620d;
}

.card-post .card-post-head {
  position: relative;
}

.card-post .card-post-head img {
  border-radius: 15px;
}

.card-post .card-post-head::before {
  content: " ";
  background-image: url(../../img/star.svg);
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 10px;
  top: 10px;
  -webkit-filter: sepia(1);
          filter: sepia(1);
  opacity: .5;
}

.card-info {
  padding: 10px 0;
}

.card-info h4 {
  font-size: 18px;
  font-weight: 600;
}

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

.card-foot .price {
  color: #dc3545;
  font-weight: 700;
  font-size: 14px;
}

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

.card-foot ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
}

.card-foot ul li span {
  width: 20px;
  height: 20px;
  background: #6c757d42;
  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;
  border-radius: 50%;
}

.card-foot ul li span img {
  width: 10px;
  height: 10px;
}

.card-foot ul li p {
  margin: 0 5px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #6c757d;
}

.link-profile svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.login {
  border: 1px solid #fff;
  padding: 5px 10px;
  color: #fff !important;
  min-width: 100px;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.login.active {
  background: #08ada7;
  color: #fff;
  border: 1px solid #08ada7;
}

.login:active {
  -webkit-transform: scaleY(0.8);
          transform: scaleY(0.8);
}

button,
a {
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

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

@media (max-width: 1250px) {
  header .over-lay .content {
    width: 80%;
  }
}

@media (max-width: 992px) {
  header .over-lay .content {
    width: 85%;
  }
  .slider-baner .owl-next {
    right: 10px;
  }
  .slider-baner .owl-prev {
    left: 10px;
  }
  .content {
    padding-top: 50px;
  }
  header {
    height: auto;
  }
  .img-login {
    display: none;
  }
  .content-login {
    width: 100%;
  }
  .body-order {
    margin-bottom: 30px;
  }
  .add-to-rate .item-web {
    display: none;
  }
  .add-to-rate .call-web {
    display: none;
  }
  .add-to-rate .mop-show {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .steps ul li::after {
    display: none !important;
  }
  .summary {
    margin-top: 20px;
  }
  .billing {
    margin-bottom: 20px;
  }
  .arrivals-body {
    margin: 30px 0;
  }
  .body-order {
    margin-bottom: 20px;
  }
  .content-myorder .item-cm {
    margin-bottom: 15px !important;
  }
  .cm-button button {
    max-width: 300px;
  }
  .res-fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.back-g {
  background: url(../../img/backr.jpg);
  background-position: 108% 10%;
  margin-top: 0;
}

@media (max-width: 776px) {
  .card-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10px;
  }
  .card-news .card-news-img {
    width: 100%;
    text-align: center;
  }
  .card-news .card-news-img img {
    border-radius: 8px;
  }
  .order-summary {
    margin-bottom: 40px;
  }
  .os-item-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .os-text .information {
    margin: 10px 0 !important;
  }
  .os-text {
    padding: 5px 0 !important;
  }
  .login-input {
    width: 100%;
    padding: 0 15px;
  }
  .burg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-login,
  .nav-links {
    display: none;
  }
  header .over-lay .content h2 {
    font-size: 20px;
    text-align: center;
  }
  .slider-baner .owl-nav button {
    width: 30px;
    height: 30px;
  }
  nav .nav-item .nav-logo img {
    width: 130px;
  }
  .burg img {
    width: 20px;
    height: 20px;
  }
  .form-search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
  }
  .form-search-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-search .select-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .normal-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .img-card {
    margin: auto;
  }
  .normal-info {
    padding: 0;
  }
  .card-info.modet {
    padding: 10px 0;
  }
  .rate-share ul li span {
    display: none;
  }
  .main-info-item-img {
    text-align: center;
  }
  .slider-baner .content-baner h3 {
    width: 90%;
    bottom: 50px;
    font-size: 17px;
  }
  .main-info-item span {
    text-align: justify;
    display: inline-block;
  }
  .main-info-item p {
    text-align: justify;
  }
}

@media (max-width: 500px) {
  .card-info h4 {
    font-size: 16px;
  }
  .owl-carousel .owl-item img {
    min-height: 200px;
  }
  .header .over-lay .content {
    width: 95%;
  }
  .menu-content {
    width: 100%;
  }
  .container {
    width: 98%;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-bottom h6 {
    margin-bottom: 10px;
  }
  .slider-baner .content-baner h3 {
    font-size: 16px;
    text-align: justify;
  }
}

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

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

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

/* 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);
  }
}

header {
  min-height: 150px;
  background: #000;
}

.head-title {
  min-height: 150px;
  background: url(../../img/back-inner.jpg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  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;
}

.head-title h2 {
  color: #fff;
  background-color: #0a180c5c;
  padding: 10px;
  /* border-bottom: 4px solid #ffc10745; */
  width: 100%;
  min-height: 150px;
  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;
}

.about-body {
  padding: 40px 0;
}

.achievement-body {
  padding: 30px 0;
}

.achievement-card {
  position: relative;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.achievement-card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.achievement-card .over-div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000004d;
  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-transition: all .3s;
  transition: all .3s;
  opacity: 0;
}

.achievement-card .over-div span {
  width: 50px;
  height: 50px;
  background: #08ada7c4;
  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;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.achievement-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.achievement-card:hover .over-div {
  opacity: 1;
}

.achievement-card:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.serv-link {
  padding: 30px 0;
}

.serv-link-item {
  margin-bottom: 20px;
  border: 1px solid #9e9e9e82;
  border-radius: 8px;
  background: #00000017;
  -webkit-box-shadow: 0 0.5rem 1rem #00000026 !important;
          box-shadow: 0 0.5rem 1rem #00000026 !important;
  padding: 15px;
}

.serv-link-item span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #08ada7;
  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: 20px auto;
  color: #fff;
  font-size: 25px;
}

.serv-link-item span i {
  color: #fff !important;
}

.serv-link-item span svg {
  fill: #fff !important;
}

.serv-link-item h3 {
  text-align: center;
  color: #222;
}

.advice {
  padding: 40px 0;
}

.advice .card {
  margin-bottom: 30px;
}

.advice .card-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;
  padding: 7px 10px;
  background: #08ada7;
  color: #fff;
  cursor: pointer;
}

.advice .card-header h5 {
  color: #fff;
}

.advice .card-header svg {
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.advice .card-header.collapsed svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.advice .card-body {
  text-align: justify;
}

.advice .card-body p {
  text-align: justify;
  margin-bottom: 10px;
}

.qoutet {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.qoutet h2 {
  text-align: center;
  background: #08ada71c;
  padding: 20px;
  -webkit-box-shadow: 0 0 5px #00000042;
          box-shadow: 0 0 5px #00000042;
  width: 100%;
}

.lic-item {
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px #0000000d;
          box-shadow: 0 0 5px #0000000d;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  min-height: 260px;
}

.lic-item span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #08ada7;
  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: 20px auto;
  color: #fff;
  font-size: 25px;
}

.lic-item span i {
  color: #fff !important;
}

.lic-item span svg {
  fill: #fff !important;
}

.lic-item h4 {
  text-align: center;
  margin-bottom: 10px;
}

.lic-item p {
  text-align: center;
}

.help-sec {
  padding: 30px 0;
}

.help-sec .title-main p {
  margin-top: 20px;
  font-size: 20px;
}

.help-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.help-card img {
  border-bottom: 4px solid #08ada7;
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.help-card .help-card-info {
  padding: 10px;
}

.help-card .help-card-info span {
  color: #777;
}

.help-card:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.help-info {
  margin-bottom: 30px;
}

.help-info p {
  margin-bottom: 10px;
  font-size: 18px;
  color: #777;
}

.help-tabs {
  margin: 50px 0;
}

.help-tabs .nav-link {
  color: #000;
  font-size: 18px;
}

.help-tabs .nav-link.active {
  background: #08ada7;
  color: #fff;
}

.help-tabs .tab-pane {
  padding-top: 20px;
}

.help-tabs .title-main {
  text-align: start;
}

.help-tabs .list-help {
  padding: 0 10px;
  list-style: disc;
}

.help-tabs .list-help li {
  font-size: 18px;
}

.help-tabs .list-help ::marker {
  color: #08ada7 !important;
}

.p-container a {
  padding: 8px 10px;
  background: #08ada7;
  display: inline-block;
  color: #fff;
  border: 0;
  border-radius: 5px;
}

.lic-item {
  text-align: center;
}

.lic-item .list-help {
  text-align: center;
  list-style: none;
}

.step-section {
  margin: 50px 0 30px 0;
}

/* start work*/
.text-back h2 {
  color: #08ada7;
  display: inline-block;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.text-back h2::after {
  content: " ";
  display: inline-block;
  height: 30px;
  background: #e3f7fb;
  width: 100%;
  position: absolute;
  left: 0;
  top: 18px;
  z-index: -1;
}

.works {
  margin: 30px 0;
}

.works .work-item {
  -webkit-transition: all .5s;
  transition: all .5s;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 15px;
  -webkit-box-shadow: 0px 0px 10px #33333347;
  box-shadow: 0px 0px 10px #33333347;
  border-radius: 4px;
  margin-bottom: 30px;
  cursor: pointer;
  margin-bottom: 50px;
}

.works .work-item.work-marg {
  margin-top: -30px;
}

.works .work-item:hover {
  background: #08ada7;
}

.works .work-item:hover span {
  background: #fff;
  color: #08ada7;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.works .work-item:hover p {
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.works .work-item span {
  width: 50px;
  margin: 10px auto;
  height: 50px;
  background: #08ada7;
  border-radius: 50%;
  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;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.works .work-item p {
  color: #505050;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  text-align: center;
}

.works .work-img img {
  width: 80%;
}

@-webkit-keyframes anims {
  0% {
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateX(60px) rotate(360deg);
    transform: translateX(60px) rotate(360deg);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes anims {
  0% {
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateX(60px) rotate(360deg);
    transform: translateX(60px) rotate(360deg);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

/*end work*/
.update-l.main-info-item h3 {
  text-align: right;
  font-size: 23px;
}

.update-l.main-info-item p {
  font-size: 18px;
}

.update-l.main-info-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.update-l.main-info-item ul li {
  margin-left: 10px;
}

.update-l.main-info-item ul li a {
  color: #828282;
}

.update-l.main-info-item ul li a i {
  font-size: 18px;
}

.update-l.main-info-item ul li a svg {
  width: 25px;
  height: 25px;
}

.law-card span svg {
  width: 25px;
}

.law-card p {
  text-align: center;
  color: #888;
}

.app-head {
  background: url(../../img/apps.jpg) no-repeat center center;
  height: 500px;
  background-attachment: fixed;
}

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

.item-app img {
  margin: auto;
  width: 110px;
}

.item-app h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.item-app p {
  font-size: 14px;
  text-align: center;
}

.info-app {
  margin-bottom: 30px;
  padding-top: 20px;
}

.info-app h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.info-app p {
  font-size: 16px;
}

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

.app-img img {
  height: 350px;
  width: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  text-align: justify;
}

.owl-partner h3 {
  font-size: 17px;
  font-weight: 600;
  color: #08ada7;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.lang a {
  color: #fff;
}

.sub-btn button {
  border: 0;
}

.card-low {
  -webkit-box-shadow: 0px 5px 10px 0 #00000033;
          box-shadow: 0px 5px 10px 0 #00000033;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-img {
  background: #444;
}

.card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
  width: 100%;
}

.div-info {
  background: #fff;
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
}

.div-info h3 {
  color: #353535;
  text-align: center;
  margin-bottom: 20px;
}

.div-info a {
  text-decoration: none;
  padding: 5px 20px;
  color: #353535;
  border: solid 1px #353535;
  border-radius: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.div-info a:hover {
  background: #353535;
  color: white;
}

.card-profile {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px 0 #00000033;
          box-shadow: 0px 5px 10px 0 #00000033;
  padding: 15px;
  text-align: center;
}

.card-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}

.info-item-lo {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px 0 #00000033;
          box-shadow: 0px 5px 10px 0 #00000033;
  padding: 15px;
}

.info-item-lo-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.item-k {
  margin-bottom: 15px;
}

.item-k h5 {
  color: #08ada7;
}

.card-price {
  padding: 20px;
  -webkit-box-shadow: 0px 2px 10px 2px #ddddddba;
          box-shadow: 0px 2px 10px 2px #ddddddba;
  margin-bottom: 20px;
  background: #fff;
  text-align: center;
}

.card-price ul li {
  font-size: 19px;
  color: #666;
}

.t-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 40px;
  color: #303030;
}

.card-price-title {
  margin: -20px -20px 20px -20px;
  height: 50px;
  background: #303030;
  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;
  color: #fff;
  font-size: 20px;
}

.t-c {
  margin-bottom: 10px;
  display: block;
}

.btn-pricing {
  background-color: #08ada7;
  text-transform: uppercase;
  border-radius: 20px;
  color: #fff;
  padding: 8px 55px;
  margin-top: 10px;
}

.btn-pricing:hover {
  color: #fff;
}

.modal-header {
  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;
  padding: 10px;
}

.modal-header .close {
  padding: 0;
  margin: 0;
}

.sub-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sub-btn a,
.sub-btn button {
  background-color: #08ada7;
  text-transform: uppercase;
  border-radius: 20px;
  color: #fff;
  padding: 8px 55px;
  margin-top: 10px;
}

.sub-btn a:hover,
.sub-btn button:hover {
  color: #fff;
}

.news {
  margin: 30px 0;
}

.card-news {
  border-radius: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-shadow: 0 0 5px #0000000d;
          box-shadow: 0 0 5px #0000000d;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: 20px;
}

.card-news:hover {
  -webkit-box-shadow: 0 0 8px #00000047;
          box-shadow: 0 0 8px #00000047;
}

.card-news .card-news-img img {
  width: 200px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-news-info {
  padding: 15px;
}

.card-news-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #303030 !important;
}

.card-news-info p {
  color: #828282;
}

.date-c {
  margin-top: 1px;
}

.date-c img {
  width: 20px;
  height: 20px;
}

.date-c span {
  color: #828282;
  padding: 0 10px;
  font-weight: bold;
}

.img-post {
  text-align: center;
}

.img-post img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 400px;
}

.text-post {
  padding-top: 30px;
}

.text-post h2 {
  margin-bottom: 20px;
}

.text-post p {
  font-size: 18px;
  margin-bottom: 10px;
}

.form-control {
  background: #eee;
}

.dwonload-now h3 {
  text-align: center;
}

.dwonload-now-link {
  margin: 40px 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;
}

.dwonload-now-link a img {
  margin: 0 10px;
  width: 150px;
  height: 60px;
}
/*# sourceMappingURL=style.css.map */