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

.main_color {
  color: #29B183 !important;
}

.sub_color {
  color: #83b649 !important;
}

.main_back {
  background-color: #29B183 !important;
  border-color: #29B183 !important;
}

.sub_back {
  background-color: #83b649 !important;
  border-color: #83b649 !important;
}

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

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

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

body {
  font-family: "Tajawal", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
  font-weight: 400;
  direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

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

body a:focus {
  outline: 0;
}

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

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

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

.form-control,
.form-select {
  min-height: 50px;
  background-color: #fff;
  border: 0;
  padding: 5px 15px;
  width: 100%;
  border-radius: 0;
}

.form-control:focus,
.form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

a:hover {
  color: #999;
}

ul {
  padding: 0;
}

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

p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.text,
.text * {
  font-size: 15px;
  line-height: 2;
  color: #1b1b1b;
}

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

.bg_gray {
  background-color: #f5f6f8;
}

.section_padding {
  padding: 80px 0;
}

.section_head {
  position: relative;
  margin-bottom: 40px;
}

.section_head h6 {
  color: #29B183;
  padding: 15px 0;
  position: relative;
  margin-bottom: 20px;
  z-index: 5;
  border-bottom: 1px solid #83b649;
  display: inline-block;
}

.section_head h6::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #83b649;
  -webkit-animation: slide-left 1.5s ease-in-out infinite alternate both;
  animation: slide-left 1.5s ease-in-out infinite alternate both;
}

.section_head h2 {
  font-size: 35px;
  color: #2e2e2e;
}

@-webkit-keyframes slide-left {
  0% {
    right: 0%;
  }
  100% {
    right: 100%;
  }
}

@keyframes slide-left {
  0% {
    right: 0%;
  }
  100% {
    right: 100%;
  }
}

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

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

.butn {
  border: 1px solid #29B183;
  padding: 15px 50px;
  border-radius: 10px;
  text-align: center;
  background-color: #29B183;
  font-size: 14px;
}

.butn span {
  color: #fff;
  font-weight: 600;
}

.butn:hover {
  background-color: transparent;
}

.butn:hover span {
  color: #29B183;
}

.butn.sub_butn {
  border: 1px solid #83b649;
  background-color: #83b649;
}

.butn.sub_butn:hover {
  background-color: transparent;
}

.butn.sub_butn:hover span {
  color: #83b649;
}

.butn.radius {
  border-radius: 30px;
}

.dropdown-toggle::after {
  position: relative;
  top: 5px;
  opacity: 0.5;
  display: none;
}

.dropdown-menu {
  min-width: 170px;
  padding: 10px 0;
  border-radius: 15px;
  border: 0;
  -webkit-box-shadow: 0 0 20px #0001;
          box-shadow: 0 0 20px #0001;
  top: calc(100% + 10px);
}

.dropdown-menu .dropdown-item {
  padding: 6px 20px;
  font-size: 13px;
}

/* ------------ modals style ------------- */
.modal-content {
  border: 0;
  padding: 3vw;
  border-radius: 30px;
}

.riyad_landing {
  min-height: 100vh;
  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;
  position: relative;
}

.riyad_landing::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/back2.png);
  background-size: cover;
  background-position: bottom center;
  opacity: 0.3;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

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

.riyad_landing .info h3 {
  font-size: calc(2vw + 30px);
  margin-bottom: 25px;
}

.riyad_landing .info .text {
  font-size: calc(0.7vw + 15px);
}

.riyad_landing .info .butn {
  margin: 50px 5px 0;
}

.riyad_landing .info .butn.bg_trans {
  background: transparent;
}

.riyad_landing .info .butn.bg_trans span {
  color: #29B183;
}

/* -------------------- responsive style ------------------------- */
/* ======== */
/* ======= */
/*# sourceMappingURL=styles.css.map */