@font-face {
  font-family: "bein";
  src: url("../fonts/beinNormal.ttf");
}

@font-face {
  font-family: "bein";
  src: url("../fonts/beinNormal.ttf");
}

/* ----------- Start Loading Screen ----------- */
.loading-screen {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #000;
  top: 0%;
  left: 0%;
  z-index: 2000;
}

.loading-screen .chicken-loader {
  /* Bird Wattle */
  -webkit-animation: birdWattle 2s linear infinite;
          animation: birdWattle 2s linear infinite;
  border: 1.2rem solid transparent;
  border-left: 1.2rem solid #990000;
  border-bottom: 1.2rem solid #990000;
  border-radius: 50%;
  height: 10rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 10rem;
}

.loading-screen .chicken-loader::before, .loading-screen .chicken-loader::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading-screen .chicken-loader::before {
  /* Large beak with head */
  -webkit-animation: birdBeak 2s linear infinite;
          animation: birdBeak 2s linear infinite;
}

.loading-screen .chicken-loader::after {
  /* Small beak */
  -webkit-animation: birdBottomBeak 2s linear infinite;
          animation: birdBottomBeak 2s linear infinite;
  border: 2.4rem solid transparent;
  border-right: 2.4rem solid #cc8400;
}

.loading-screen .chicken-loader span {
  /* Eye */
  -webkit-animation: birdEye 2s linear infinite;
          animation: birdEye 2s linear infinite;
  background: black;
  border-radius: 50%;
  height: 1.6rem;
  left: 1.6rem;
  position: absolute;
  top: 3.1rem;
  width: 1.6rem;
}

@-webkit-keyframes birdWattle {
  0%, 20%, 100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  40%, 80% {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
            transform: translate(-50%, -50%) rotate(225deg);
  }
}

@keyframes birdWattle {
  0%, 20%, 100% {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  40%, 80% {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
            transform: translate(-50%, -50%) rotate(225deg);
  }
}

@-webkit-keyframes birdBeak {
  0%, 20%, 100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    border: 4rem solid transparent;
    border-top: 4rem solid orange;
    border-left: 4rem solid white;
    border-bottom: 4rem solid lightgray;
  }
  40%, 80% {
    border-top: 4rem solid lightgray;
    border-left: 4rem solid white;
    border-bottom: 4rem solid orange;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@keyframes birdBeak {
  0%, 20%, 100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    border: 4rem solid transparent;
    border-top: 4rem solid orange;
    border-left: 4rem solid white;
    border-bottom: 4rem solid lightgray;
  }
  40%, 80% {
    border-top: 4rem solid lightgray;
    border-left: 4rem solid white;
    border-bottom: 4rem solid orange;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@-webkit-keyframes birdBottomBeak {
  0%, 20%, 100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  40%, 80% {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@keyframes birdBottomBeak {
  0%, 20%, 100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  40%, 80% {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@-webkit-keyframes birdEye {
  0%, 20%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40%, 80% {
    -webkit-transform: translate(1.5rem, 1.5rem);
            transform: translate(1.5rem, 1.5rem);
  }
}

@keyframes birdEye {
  0%, 20%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40%, 80% {
    -webkit-transform: translate(1.5rem, 1.5rem);
            transform: translate(1.5rem, 1.5rem);
  }
}

/* ----------- End Loading Screen ----------- */
/* ---------- Start Button to top ----------- */
.btn_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  border: none !important;
  outline: none !important;
  background-color: #FFAA00;
  cursor: pointer;
  padding: 20px 25px 20px;
  opacity: .5;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: none;
}

.btn_top .arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.btn_top:hover {
  background-color: #d48f04;
  opacity: 1;
  -webkit-transform: translate(0, -5px);
          transform: translate(0, -5px);
}

/* ---------- End Button to top ----------- */
/* ---------- Start Global ----------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "bein", sans-serif;
  direction: rtl;
  color: #1a5302;
}

a {
  text-decoration: none !important;
  line-height: 1.5 !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.regular-cards {
  border: 2px solid #FFAA00;
  border-radius: 40px 40px 0 0;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  padding: 2em 1em;
  margin: 1em 0 2em;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.regular-cards .content-box {
  margin: 0 auto;
}

.cards {
  border: 2px solid #FFAA00;
  border-radius: 40px 40px 0 0;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  padding: 3.5em 1em;
  margin: 1em 0 2em;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/* ---------- Start Global Media Query ----------- */
@media (max-width: 991px) {
  .regular-cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}

/* ---------- End Global Media Query ----------- */
/* ---------- End Global ----------- */
@font-face {
  font-family: "bein";
  src: url("../fonts/beinNormal.ttf");
}

.dropdown-menu {
  border-radius: 10px;
  padding: 0;
  border: 1px solid #ddd;
  margin: 0;
  left: -5%;
}

.dropdown-menu .dropdown-item {
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #F0F0F0;
}

.dropdown-menu .dropdown-item .active, .dropdown-menu .dropdown-item:active {
  background-color: #1a5302;
}

.dropdown-menu .dropdown-item:first-of-type {
  border-radius: 10px 10px 0 0;
}

.dropdown-menu .dropdown-item:last-of-type {
  border-radius: 0 0 10px 10px;
}

.dropdown-menu .dropdown-divider {
  margin: 0;
}

.collapsing {
  -webkit-transition-duration: 0s !important;
          transition-duration: 0s !important;
}

.navbar {
  direction: rtl;
  background-color: #ffffff !important;
  -webkit-box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.08), 0px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.08), 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-brand img {
  width: 69px;
}

.navbar .collapse .navbar-nav {
  margin: 0 10px 0 0 !important;
}

.navbar .collapse .navbar-nav .nav-item .nav-link {
  color: #1a5302;
  font-weight: bold;
}

.navbar .collapse .navbar-nav .nav-item .nav-link:hover {
  background-color: #F0F0F0;
  border-radius: 10px;
}

.navbar .collapse form {
  background-color: #F0F0F0 !important;
  padding: 5px 10px 5px 0;
  border-radius: 20px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  height: 35px;
}

.navbar .collapse form .search-area, .navbar .collapse form .submit {
  border: none;
  outline: none;
  background-color: transparent;
}

.navbar .collapse form .search-area {
  width: 170px;
}

.navbar .collapse form .submit i {
  margin-top: 5px;
}

.navbar .collapse .sign-box {
  margin: 0 auto 0 0;
}

.navbar .collapse .sign-box a {
  color: #1a5302;
  font-weight: bold;
  background-color: transparent;
  padding: 10px;
  border-radius: 20px;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: inline-block;
  margin-right: 10px;
}

.navbar .collapse .sign-box a:hover {
  background-color: #FFAA00;
}

.navbar .profile-box {
  margin: 0 auto 0 0;
}

.navbar .profile-box .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.navbar .profile-box .dropdown-toggle .profile-photo {
  width: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.navbar .profile-box .dropdown-toggle h6 {
  color: #1a5302;
  margin: 5px 5px 0;
  font-weight: bold;
}

.navbar .profile-box .dropdown-toggle::after {
  border: none;
}

.navbar .profile-box .dropdown-toggle .arrow {
  background-color: #FFAA00;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

.navbar .profile-box .dropdown-toggle .arrow .arrow-down {
  height: 15px;
  width: 15px;
}

.navbar .profile-box .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}

.navbar .profile-box .dropdown-menu .dropdown-item-especial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .profile-box .dropdown-menu .dropdown-item-especial .profile-photo {
  width: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.navbar .profile-box .dropdown-menu .dropdown-item-especial h6 {
  color: #1a5302;
  margin: 5px 5px 0;
  font-weight: bold;
}

.navbar .profile-box .dropdown-menu .dropdown-item-especial:first-of-type:active {
  background-color: #F0F0F0;
}

@media (max-width: 991px) {
  form .search-area {
    width: 95% !important;
  }
}

@media (min-width: 991px) and (max-width: 1110px) {
  form .search-area {
    width: 50px !important;
  }
}

@media (max-width: 1200px) {
  .navbar .collapse {
    text-align: center;
  }
}

@font-face {
  font-family: "bein";
  src: url("../fonts/beinNormal.ttf");
}

footer {
  background-color: #FFAA00;
  margin-top: 2em;
  padding-top: 2em;
  border-radius: 35px 0 0 0;
  direction: rtl;
}

footer .overlay {
  background-color: #1a5302;
  border-radius: 0 35px 0 0;
  padding: 2em 0 1em;
}

footer .overlay ul {
  text-align: right;
}

footer .overlay ul li {
  margin-bottom: 5px;
}

footer .overlay ul li a {
  color: #FFAA00;
  border-bottom: 1px solid transparent;
  display: inline-block !important;
}

footer .overlay ul li a:hover {
  border-bottom: 1px solid #FFAA00;
}

footer .overlay ul .title {
  color: #ffffff;
  font-size: 20px;
}

footer .overlay .media-box {
  margin-top: 15px;
  text-align: center;
}

footer .overlay .media-box img {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

footer .overlay .media-box img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

footer .overlay .media-box .google-play, footer .overlay .media-box .app-store {
  width: 180px;
  display: block;
  margin: 0 auto;
}

footer .overlay .media-box .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .overlay .media-box .social-media i {
  font-size: 35px;
  color: #ffffff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

footer .overlay .media-box .social-media .facebook i {
  margin-right: 10px;
}

footer .overlay .media-box .social-media .facebook i:hover {
  color: #507CBD;
}

footer .overlay .media-box .social-media .instagram i:hover {
  color: #DA7493;
}

footer .overlay h5 {
  margin-top: 1em;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 1200px) {
  footer ul {
    margin-bottom: 1em;
  }
  footer ul li {
    text-align: center;
  }
}

@font-face {
  font-family: "bein";
  src: url("../fonts/beinNormal.ttf");
}

.right {
  margin-bottom: 3em;
}

.right .main-title {
  color: #ffffff;
  background-color: #1a5302;
  width: 100%;
  text-align: center;
  font-size: 30px;
  padding: 5px 0 10px;
  margin: 0;
  border-radius: 20px;
}

.right .main-title .icon-s {
  margin-top: 10px;
  display: block;
}

.right .accordion {
  margin-top: -45px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}

.right .accordion .card .card-header {
  text-align: right;
  border: none;
  background-color: transparent;
}

.right .accordion .card .card-header .btn-link {
  color: #1a5302;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  font-size: 25px;
  width: 100%;
  text-align: right;
}

.right .accordion .card .card-header .btn-link i {
  margin-left: 5px;
  font-size: 20px;
}

.right .accordion .card .collapse .card-body {
  padding-top: 0;
}

.right .accordion .card .collapse .card-body ul {
  text-align: right;
}

.right .accordion .card .collapse .card-body ul li i {
  font-size: 14px;
  margin-left: 5px;
  color: #1a5302;
}

.right .accordion .card .collapse .card-body ul li a {
  color: #1a5302;
  font-size: 20px;
  display: block;
}

.right .accordion .card .collapse .card-body ul li a label, .right .accordion .card .collapse .card-body ul li a input[type='radio'] {
  margin: 0;
  cursor: pointer;
}

.right .accordion .card .collapse .card-body ul li a label:hover, .right .accordion .card .collapse .card-body ul li a input[type='radio']:hover {
  color: #FFAA00;
}

.right .accordion .card .collapse .card-body ul li a input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -6px;
  left: 2px;
  position: relative;
  background-color: white;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid #1a5302;
}

.right .accordion .card .collapse .card-body ul li a input[type='radio']:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -6px;
  left: 2px;
  position: relative;
  background-color: #ffa500;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid #1a5302;
}

.right .accordion .card .collapsing {
  -webkit-transition: none !important;
  transition: none !important;
}

.right .accordion .card:first-of-type {
  border-radius: 20px 20px 0 0;
}

.right .accordion .card:last-of-type {
  border-radius: 0 0 20px 20px;
}

@media (min-width: 992px) and (max-width: 3000px) {
  .right .main-title {
    cursor: auto;
  }
  .right .accordion {
    display: block !important;
  }
}

@media (max-width: 992px) {
  .right {
    display: block !important;
  }
  .right .main-title {
    cursor: pointer;
  }
  .right .accordion {
    display: none;
  }
}

@font-face {
  font-family: "bein";
  src: url("../fonts/beinNormal.ttf");
}

.inner-search-box {
  margin: 3em 0 0;
}

.inner-search-box .holder .box-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  border: 2px solid #1a5302;
  border-radius: 15px;
  -webkit-box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.08), 0px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.08), 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.inner-search-box .holder .box-tabs .tabs {
  width: 22.5%;
  text-align: right;
  border-left: 2px solid #1a5302;
  margin: 20px 0;
}

.inner-search-box .holder .box-tabs .tabs i {
  color: #1a5302;
  font-size: 18px;
  margin-right: 15px;
}

.inner-search-box .holder .box-tabs .tabs .title {
  display: inline-block;
  color: #777A7C;
  margin-right: 5px;
}

.inner-search-box .holder .box-tabs .tabs select {
  display: block;
  margin: 0 auto;
  color: #1a5302;
  font-weight: bold;
  border: none;
  outline: none;
  font-size: 17px;
}

.inner-search-box .holder .box-tabs .tabs .special-link {
  display: block;
  text-align: center;
  color: #1a5302;
  font-weight: bold;
  margin-top: 4px;
  font-size: 19px;
}

.inner-search-box .holder .box-tabs .tabs:nth-of-type(4) {
  border: none;
}

.inner-search-box .holder .box-tabs .tabs:last-of-type {
  border-left: none;
  border-right: 2px solid #1a5302;
  width: 10%;
  margin: 0;
  background-color: #FFAA00;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.inner-search-box .holder .box-tabs .tabs:last-of-type:hover {
  background-color: #d48f04;
}

.inner-search-box .holder .box-tabs .tabs-especial {
  border-radius: 15px 0 0 15px;
}

.inner-search-box .holder .box-tabs .tabs-especial input {
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  background-image: url("../images/search-solid.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
}

header {
  direction: ltr;
  margin-top: 1em;
}

header .banner {
  width: 100%;
}

.global-sections {
  padding: 3em 0 0;
}

.global-sections .holder .tabs .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.global-sections .holder .tabs .nav .nav-item {
  margin: 0 10px;
}

.global-sections .holder .tabs .nav .nav-item .nav-link {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  width: 250px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  border-bottom: none;
  background-color: #eee;
  color: #3d9c12;
}

.global-sections .holder .tabs .nav .nav-item .active {
  background-color: #FFAA00;
  color: #1a5302;
}

.inner-search-box .holder .box-tabs {
  border: none;
  position: relative;
  z-index: 1;
}

.inner-search-box .holder .box-tabs .search-box-overlay, .inner-search-box .holder .box-tabs .edge {
  position: absolute;
  height: 100%;
  border-radius: 15px;
  top: 0;
  right: 0;
  width: 100%;
}

.inner-search-box .holder .box-tabs .search-box-overlay {
  z-index: 3;
  background-color: #ffffff;
}

.inner-search-box .holder .box-tabs .edge {
  background-color: #1a5302;
  z-index: 2;
  right: -20px;
}

.inner-search-box .holder .box-tabs .tabs {
  position: relative;
  z-index: 4;
  width: 28%;
}

.inner-search-box .holder .box-tabs .tabs .date {
  margin: 5px auto 0;
  display: block;
}

.inner-search-box .holder .box-tabs .tabs:nth-of-type(3) {
  border: none;
}

.inner-search-box .holder .box-tabs .tabs:last-of-type {
  border: none;
  width: 16%;
}

.inner-search-box .holder .box-tabs .tabs-especial input {
  background-image: none;
  font-weight: bold;
  font-size: 33px;
}

.global-content {
  margin: 3em 0 0;
}

.global-content .holder {
  padding: 0 5em;
}

.global-content .holder .add-ads {
  margin-top: 1em;
  background-color: #FFAA00;
  color: #1a5302;
  font-size: 20px;
  font-weight: bold;
  border: none;
  -webkit-box-shadow: 0px 4px 5px #ddd;
          box-shadow: 0px 4px 5px #ddd;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 15px;
  padding: 10px 0;
}

.global-content .holder .add-ads:hover {
  background-color: #d48f04;
}

.global-content .holder .right {
  margin-right: auto;
  margin-left: auto;
}

.global-content .holder .left {
  margin: 0 auto;
  padding: 0 3em;
}

.global-content .holder .left .all-cards .one-card {
  padding: 2em 1.5em;
}

.global-content .holder .left .all-cards .one-card .logo-box {
  text-align: right;
  margin: 0 0 0 1.5em;
}

.global-content .holder .left .all-cards .one-card .logo-box .card-image {
  width: 180px;
  border-radius: 40px;
  border: 2px solid #1a5302;
}

.global-content .holder .left .all-cards .one-card .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.global-content .holder .left .all-cards .one-card .content-box .top {
  width: 100%;
}

.global-content .holder .left .all-cards .one-card .content-box .top h2, .global-content .holder .left .all-cards .one-card .content-box .top h3 {
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #1a5302;
}

.global-content .holder .left .all-cards .one-card .content-box .top .price {
  color: #FFAA00;
}

.global-content .holder .left .all-cards .one-card .content-box .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.global-content .holder .left .all-cards .one-card .content-box .bottom .bottom-right {
  text-align: center;
}

.global-content .holder .left .all-cards .one-card .content-box .bottom .bottom-right .date, .global-content .holder .left .all-cards .one-card .content-box .bottom .bottom-right .address {
  display: block;
  font-weight: bold;
  color: #1a5302;
  font-size: 24px;
}

.global-content .holder .left .all-cards .one-card .content-box .bottom .bottom-left .more-details {
  margin-top: 20px;
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #FFAA00;
  background-color: #1a5302;
  border-radius: 5px;
  padding: 8px 30px;
}

.global-content .holder .left .all-cards .one-card:hover {
  -webkit-box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.08), 0px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.08), 0px 1px 5px rgba(0, 0, 0, 0.3);
  border: 2px solid #d48f04;
}

@media (max-width: 991px) {
  .all-cards .one-card .logo-box {
    margin-bottom: 0 !important;
    text-align: center !important;
  }
  .all-cards .one-card .content-box {
    margin: 3em 0 0;
  }
  .all-cards .one-card .content-box h2 {
    margin-top: 0 !important;
  }
  .global-content .holder {
    padding: 0 1em;
  }
  .global-content .holder .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .global-content .holder .row .left {
    padding: 0 1em;
  }
  .global-content .holder .row .left .all-cards .one-card .content-box .bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .global-content .holder .row .left .all-cards .one-card .content-box .bottom .bottom-right {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .global-content {
    margin: 3em 0;
  }
  .global-content .holder {
    padding: 0 2em;
  }
  .global-content .holder .left {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .global-sections .holder .tabs .nav .nav-item .nav-link {
    width: 150px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .global-sections .holder .tabs .nav .nav-item .nav-link {
    width: 120px;
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .global-sections .holder .tabs .nav .nav-item .nav-link {
    width: 80px;
    font-size: 16px;
  }
}
/*# sourceMappingURL=market_home.css.map */