@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

@font-face {
  font-family: "Druk-Super-Trial";
  src: url(../fonts/Druk-Super-Trial.otf);
}


@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.otf);
}

@font-face {
  font-family: "Druk-Bold-Trial";
  src: url(../fonts/Druk-Bold-Trial.otf);
}


a:hover,
a:focus {
  text-decoration: none !important;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #2C2C2C;
}

p {
  margin: 0;
  color: #2C2C2C;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #FDE50F;
}

a:hover {
  color: #FDE50F;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

a {
  text-decoration: none;
}

.font-druk {
  font-family: "Druk-Super-Trial";
  letter-spacing: 1px;
}

.font-blod {
  font-family: "Druk-Bold-Trial";
  letter-spacing: 1px;
}

.font-poppins-regular {
  font-family: "Poppins-Regular";
}

body {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  background-color: #ffffff;
  color: #2C2C2C;
  font-family: "Roboto", sans-serif;
}

html[dir=rtl] body {
  font-family: "Tajawal", sans-serif;
}

html[dir=rtl] .font-druk {
  font-family: "Tajawal", sans-serif;
  font-weight: bold;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 7px;
}

.form-control {
  height: 50px;
  background-color: #fff;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  box-shadow: none;
  padding: 8px 16px;
  font-size: 14px;
  color: #283946;
}

.form-control:focus {
  box-shadow: none;
  background-color: #fff;
  border-color: #FDE50F;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.bg-primary {
  background-color: #FDE50F !important;
}

.text-primary {
  color: #FFBD41 !important;
}

.border-primary {
  border-color: #FDE50F !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

::-moz-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-moz-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-ms-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-o-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

::-webkit-placeholder {
  color: #C2C8DD !important;
  font-size: 14px !important;
}

.loader-page {
  background: #f8f8f8;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-page span {
  position: absolute;
  display: inline-block;
  background-color: #FDE50F;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation: loader3 1.5s linear infinite;
}

.loader-page span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.btn {
  padding: 11px 25px;
  font-size: 16px;
  border-radius: 8px;
  min-width: 160px;
}

@media (max-width: 991px) {
  .btn {
    font-size: 12px;
    padding: 8px 25px;
  }
}

.btn-primary {
  color: #000;
  background: #FDE50F;
  border: 0;
}

.btn-primary:hover,
.btn-primary:focus {
  color: #000;
  background-color: #e4ce0c;
  box-shadow: none;
}

.btn-white {
  color: #00295C;
  background-color: #FFF;
}

@media (max-width: 992px) {
  .main-header {
    padding: 15px 0px;
    position: relative;
    box-shadow: 0px 5px 15px 0px rgba(103, 103, 103, 0.1019607843);
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 100;
  }

  .main-header.fixed-header {
    position: fixed;
  }

  .main-header .menu-nav {
    margin-bottom: 10px;
  }

  .main-header .logo img {
    max-height: 30px;
  }

  .main-header .btn-outline-primary {
    padding: 10px;
    width: 100%;
  }

  .header-mobile__toolbar {
    color: #fff;
  }

  .main-header .menu-container .main-menu .menu_item .menu_link.req {
    /* padding: 8px 20px !important; */
    padding: 8px 13px !important;

  }

  .active-body {
    overflow: hidden;
  }

  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }

  .mobile-menu-overlay-active {
    visibility: visible;
  }

  .menu--mobile {
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #000;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
  }

  .menu--mobile>.container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }

  .menu--mobile .list-main-menu {
    width: 100%;
  }

  .menu--mobile .main-menu .menu_item {
    flex: auto;
  }

  .menu--mobile .main-menu .menu_item .menu_link {
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
  }

  .menu--mobile .main-menu .menu_item .menu_link.active {
    color: #FDE50F;
  }

  .menu--mobile .main-menu .menu_item .btn {
    border-radius: 0;
    width: 100%;
    padding: 10px 15px !important;
    color: #000 !important;
    text-align: start;
    background-color: #FDE50F;
  }

  .menu--mobile .main-menu .dropdown-menu {
    width: 92%;
    min-width: 92%;
  }

  .btn-close-header-mobile {
    color: #fff;
    cursor: pointer;
  }

  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 992px) {
  .main-header {
    display: flex;
    align-items: center;
    top: 0px;
    right: 0;
    width: 100%;
    position: relative;
    height: 100px;
    z-index: 3;
    background-color: #000000;
    transition: all 500ms, color 200ms;
  }

  .main-header .logo img {
    max-height: 85px;
    max-width: 120px;
  }

  .main-header .menu--mobile {
    display: flex;
    align-items: center;
    flex: auto;
  }

  .main-header .menu-container {
    position: relative;
  }

  .main-header .menu-container .main-menu .menu_item {
    display: inline-block;
    position: relative;
  }

  .main-header .menu-container .main-menu .menu_item .menu_link {
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 45px;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    /* margin: 0px 20px; */
    margin: 0px 13px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
  }

  .main-header .menu-container .main-menu .menu_item .menu_link::before {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    background-color: #FDE50F;
    height: 2px;
    transition: width 0.2s ease-in-out;
  }

  .main-header .menu-container .main-menu .menu_item .menu_link:hover::before,
  .main-header .menu-container .main-menu .menu_item .menu_link.active::before {
    width: 30px;
  }

  .main-header .menu-container .main-menu .menu_item .btn-white {
    color: #ffffff;
    background-color: #008fa6;
    padding-left: 15px !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .menu-container .main-menu .menu_item .menu_link {
    font-size: 12px;
  }
}

.dropdown.dropdown-lang .dropdown-menu {
  min-width: 138px;
}

.dropdown-lg .dropdown-menu {
  min-width: 400px;
}

@media (max-width: 567px) {
  .dropdown-lg .dropdown-menu {
    min-width: 300px;
  }
}

.main-header .menu-container .main-menu .dropdown .menu_link {
  border-radius: 6px;
  border: 1px solid transparent;
  color: #fff;
}

@media (min-width: 992px) {
  .main-header .menu-container .main-menu .dropdown .menu_link {
    padding: 9px 20px;
    line-height: 1.5;
  }
}

.main-header .menu-container .main-menu .dropdown .menu_link::before {
  content: unset !important;
}

.main-header .menu-container .main-menu .dropdown .menu_link.show,
.main-header .menu-container .main-menu .dropdown .menu_link:hover {
  border-color: #FDE50F;
}

.main-header .menu-container .main-menu .dropdown .dropdown-menu {
  border-radius: 8px;
}

.main-header .menu-container .main-menu .dropdown .dropdown-menu .dropdown-item {
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  color: #707070;
}

.main-header .menu-container .main-menu .dropdown .dropdown-menu .dropdown-item.active {
  color: #0A0E1C !important;
}

.menu_top.height {
  height: 85px;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1040px;
    max-width: 100%;
  }
}

.section {
  padding: 70px 0px;
}

.section-home {
  background: url(../images/bg-home.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.section-home::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.45;
  top: 0;
  left: 0;
  z-index: -1;
}

.section-home .home-title span {
  color: #f4408a;
}

@media (min-width: 992px) {
  .section-home {
    padding: 70px 0px;
  }

  .section-home .home-image {
    text-align: end;
  }

  .section-home .home-title {
    font-size: 70px;
    margin-bottom: 12px;
    line-height: 72px;
  }
}

@media (min-width: 992px) {
  .title-section {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .title-section {
    font-size: 26px;
  }
}

.bg-1 {
  position: relative;
  z-index: 1;
}

.bg-1::before {
  background: url(../images/bg-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 50px;
  background-position: center;
  z-index: -1;
}

.widget__item-1 {
  position: relative;
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
}

.widget__item-1 .widget__item-icon {
  padding: 10px;
  border-radius: 50%;
  background-color: #61ce7054;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.widget__item-1 .widget__item-icon img {
  /* width: 100%; */
  width: 55px;
  height: 55px;
}

/* .widget__item-1::before {
  position: absolute;
  content: "";
  inset-inline-start: 0px;
  width: 3px;
  background-color: #79fd00;
  top: 0;
  height: 100%;
} */

@media (min-width: 992px) {
  .widget__item-1 .widget__item-title {
    font-size: 30px;
  }
}

.bg-2 {
  position: relative;
  z-index: 1;
  background-color: #f7f7f7;
}

.bg-2::before {
  background: url(../images/bg-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 50px;
  background-position: center;
  z-index: -1;
}

.widget__item-faq:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}

.widget__item-faq .widget__item-head {
  padding: 20px;
  cursor: pointer;
}

.widget__item-faq .widget__item-head .widget__item-title {
  -webkit-padding-start: 66px;
  padding-inline-start: 66px;
}

.widget__item-faq .widget__item-head:not(.collapsed) .fa-plus::before {
  content: "\f068";
}

.widget__item-faq i {
  color: #75AE00;
}

.widget__item-faq .widget__item-content {
  padding: 20px 20px 40px;
  -webkit-padding-start: 100px;
  padding-inline-start: 100px;
}

.section-contact {
  background-color: #f7f7f7;
}

.bg-3 {
  position: relative;
  z-index: 1;
}

.bg-3::before {
  background: url(../images/bg-03.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
  top: 30px;
  inset-inline-end: 30px;
  background-position: center;
  z-index: -1;
}

.bg-4 {
  position: relative;
  z-index: 1;
}

.bg-4::after {
  background: url(../images/bg-04.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 135px;
  height: 170px;
  bottom: 10px;
  inset-inline-start: 30px;
  background-position: center;
  z-index: -1;
}

.page-header {
  position: relative;
  z-index: 1;
  height: 75vh;
  max-height: 75vh;
  overflow: hidden;
}

.page-header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.45;
  z-index: -1;
}

.page-header .page-title {
  font-size: 30px;
}

@media (min-width: 992px) {
  .page-header .page-title {
    font-size: 50px;
  }
}

.page-header.bg-header-1 {
  background: url(../images/bg-header-01.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-header.bg-header-2 {
  background: url(../images/bg-header-02.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-header.bg-header-3 {
  background: url(../images/bg-header-03.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .page-header.bg-header-3 {
    padding: 150px 0;
  }
}

.bg-gray {
  background-color: #f4f4f4;
}

.text-green {
  color: #75ae00;
}

#map {
  width: 100%;
  height: 420px;
}

.widget__item-step {
  box-shadow: 0 25px 36px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  position: relative;
}

.widget__item-step .widget__item-content {
  padding: 24px;
  flex: 1;
  background-color: #FFF;
  border-radius: 15px;
}

.widget__item-step .widget__item-icon {
  padding: 24px;
  width: 124px;
  flex: 0 0 auto;
}

.widget__item-step .widget__item-icon .widget__item-icon-inner {
  background-color: rgba(255, 255, 255, 0.16);
  width: 70px;
  height: 70px;
}

/* .widget__item-step::before {
  position: absolute;
  inset-inline-end: -5px;
  content: "";
  width: 40px;
  height: 40px;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  z-index: -1;
} */

.widget__item-step-number {
  border: 20px solid #EBECEE;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  font-size: 47px;
}

.step-1 .widget__item-step::before {
  background-color: #4cb6ef;
}

.step-1 .widget__item-icon {
  background-color: #4cb6ef;
}

.step-1 .widget__item-step-circle {
  /* border: 8px solid #4cb6ef; */
  border: 8px solid #fde50f;
}

.step-1 .widget__item-step-number {
  color: #fde50f;
}

.step-2 .widget__item-step::before {
  background-color: #E58D3C;
}

.step-2 .widget__item-icon {
  background-color: #E58D3C;
}

.step-2 .widget__item-step-circle {
  border: 8px solid #E58D3C;
}

.step-2 .widget__item-step-number {
  color: #E58D3C;
}

.step-3 .widget__item-step::before {
  background-color: #98D031;
}

.step-3 .widget__item-icon {
  background-color: #98D031;
}

.step-3 .widget__item-step-circle {
  border: 8px solid #98D031;
}

.step-3 .widget__item-step-number {
  color: #98D031;
}

.step-4 .widget__item-step::before {
  background-color: #7961F5;
}

.step-4 .widget__item-icon {
  background-color: #7961F5;
}

.step-4 .widget__item-step-circle {
  border: 8px solid #7961F5;
}

.step-4 .widget__item-step-number {
  color: #7961F5;
}

.steps {
  position: relative;
  z-index: 1;
}

.steps::before {
  position: absolute;
  content: "";
  right: 50%;
  transform: translateX(50%);
  border-radius: 30px;
  width: 16px;
  height: 100%;
  background-color: #ebecee;
  z-index: -1;
}

.steps .step .widget__item-step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

/* .steps .step:nth-child(even) {
  flex-direction: row-reverse;
}

.steps .step:nth-child(even) .widget__item-step-number {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.steps .step:nth-child(even) .widget__item-step {
  flex-direction: row-reverse;
} */

/* .steps .step:nth-child(even) .widget__item-step::before {
  inset-inline-start: -5px;
} */

.steps .step:not(:last-of-type) {
  margin-bottom: 40px;
}

html[dir=rtl] .step .widget__item-step .widget__item-icon {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

/* html[dir=rtl] .step:nth-child(even) .widget__item-icon {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
} */

html[dir=ltr] .step .widget__item-step .widget__item-icon {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* html[dir=ltr] .step:nth-child(even) .widget__item-icon {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
} */

@media (max-width: 991px) {
  .step {
    margin-bottom: 50px;
  }

  .step .widget__item-step-number,
  .step .widget__item-step-circle {
    margin: auto;
  }

  .step .widget__item-step-circle {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.dropdown-lang img {
  height: 20px;
}

.dropdown-lang .dropdown-menu {
  width: 100%;
  min-width: 100%;
}

.main-footer .text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.main-footer .footer-top {
  background: url(../images/bg-footer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .main-footer .footer-top {
    background-size: cover !important;
  }
}

.main-footer .footer-bottom {
  background-color: #191A16;
  padding: 15px 0;
}

.main-footer .footer-bottom .menu-footer li a {
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
}

.main-footer .footer-bottom .menu-footer li a:hover {
  color: #FFF;
}

.main-footer .footer-bottom .menu-footer li:not(:last-of-type) {
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
}

.main-footer .link-footer a {
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 5px 0px;
  position: relative;
  transition: color 200ms;
}

.main-footer .link-footer a:hover {
  color: #FFF;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li a {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0px 2px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out;
  background-color: #3D5453;
}

.social-media li a i {
  transition: color 0.3s ease-in-out;
}

.social-media li:not(:last-of-type) {
  margin-right: 10px;
}

.social-media li a:hover {
  color: #fff;
  background-color: #FDE50F;
}

html[dir=rtl] .social-media li:not(:last-of-type) {
  margin-left: 10px;
  margin-right: 0;
}

.qr-code {
  background-color: #FFF;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qr-code img {
  max-height: 90px;
}

/*# sourceMappingURL=main.css.map */

@media (min-width: 991px) {

  .fs-lg-65 {
    font-size: 65px;
  }

  .fs-lg-80 {
    font-size: 80px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 35px 0px;
  }

  .widget__item-step::before {
    display: none;
  }
}

.text-gray {
  color: #757575;
}

.main-menu .btn {
  min-width: unset;
}

.widget__item-teams {
  margin-bottom: 40px;
}

.widget__item-teams .widget__item-image {
  text-align: center;
  margin-bottom: 10px;
}

.widget__item-teams .widget__item-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  text-align: center;
}