/* Setting Style
======================*/
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap");

:root {
  --main_color: #1a3430;
  --second_color: #c49d4a;
  --normal_weg: 400;
  --bold_weg: 700;
}

*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main_color) !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #efefef;
  width: 10px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

body {
  font-family: "Tajawal", sans-serif;
  font-weight: normal;
  overflow: hidden;
  width: 100%;
  font-weight: var(--normal_weg);
}

.shadow {
  box-shadow: 0px 10px 60px 1px #ededed !important;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

section {
  position: relative;
  width: 100%;
  padding: 70px 0;
}

.section_title {
  font-size: 36px;
  font-weight: var(--bold_weg);
  text-align: center;
  color: var(--main_color);
  margin: 0 auto 55px;
}

@media all and (max-width: 576px) {
  .section_title {
    font-size: 29px;
  }
  .partners{
    padding: 25px 0
  }
}

.section_title::after {
  content: "";
  width: 125px;
  height: 1px;
  border-bottom: 2px solid var(--second_color);
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
}

.link {
  padding: 0 30px;
  line-height: 55px;
  background-color: var(--main_color);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: var(--bold_weg);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  border: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  clip-path: circle(0% at 100% 100%);
  background-color: var(--second_color);
  -webkit-transition: 0.4s all linear;
  -moz-transition: 0.4s all linear;
  -ms-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  transition: 0.4s all linear;
}

.link span {
  position: relative;
  z-index: 999;
}

.link:hover {
  color: #fff;
}

.link:hover::before {
  clip-path: circle(70.7% at 50% 50%);
}

/* Header
==========================*/
header {
  position: fixed;
  top: 0;
  right: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 9997;
  padding: 15px 0;
  border-bottom: 1px solid #f6fafc;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

header .logo {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 999;
  width: 100%;
  max-width: 270px;
}

header .logo img {
  width: 100%;
  height: auto;
}

header .link i {
  margin-inline-end: 5px
}

@media all and (max-width: 576px) {
  header {
    padding: 5px 0;
  }

  header .logo {
    max-width: 190px;
  }

  header .link {
    padding: 0;
    height: 55px;
    width: 55px;
    overflow: hidden;
    text-align: center;
    font-size: 25px;
  }

  header .link i {
    width: 100%;
    line-height: 55px;
    display: block;
  }
}

/* Main Section 
==========================*/
.main_section {
  padding: 220px 0 50px;
  position: relative;
}

.main_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  top: -10px;
  left: 0;
  background: url(../images/top_shap.png) no-repeat left;
  background-size: contain;
  opacity: 50%;
}

.main_section img {
  width: 100%;
}

.main_section .intro {
  text-align: center;
  max-width: 740px;
  margin: auto;
}

.main_section .intro h1 {
  font-size: 48px;
  font-weight: var(--bold_weg);
  margin: 0;
  line-height: 50px;
  color: var(--main_color);
}

.main_section .intro h3 {
  font-size: 54px;
  line-height: 60px;
  margin: 35px 0;
  color: var(--second_color);
}

.main_section .intro form {
  margin-top: 40px;
  position: relative;
}

.main_section .intro form .form-control {
  line-height: 70px;
  height: 70px;
  padding-inline-start: 30px;
  font-size: 18px;
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid var(--second_color);
  border-radius: 25px;
}

.main_section .intro form i {
  margin-inline-end: 10px;
}

.main_section .intro form button {
  position: absolute;
  line-height: 100%;
  height: 60px;
  left: 5px;
  top: 5px;
  min-width: 160px;
}

@media all and (max-width: 767px) {
  .main_section .intro h1 {
    font-size: 36px;
  }

  .main_section .intro h3 {
    font-size: 44px;
    line-height: 50px;
    margin-top: 15px;
  }
}

@media all and (max-width: 576px) {
  .main_section {
    padding: 120px 0 0;
  }

  .main_section .intro form button {
    width: 50px;
    overflow: hidden;
    padding: 0;
    min-width: auto;
  }

  .main_section .intro form button i {
    width: 100%;
    min-width: auto;
    height: 60px;
    line-height: 60px;
  }

  .main_section .intro h3 {
    font-size: 25px;
    line-height: 35px;
  }
}

/* About
==========================*/
.about {
  background: url(../images/shap_bc.png) no-repeat top center;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.services {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.services li {
  min-width: 190px;
  width: 24%;
}

.service_item {
  background-color: #fff;
  padding: 30px 15px;
  line-height: 25px;
  border-radius: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bold_weg);
  font-size: 18px;
  color: var(--main_color);
  margin: 15px auto 0;
  cursor: pointer;
  min-height: 105px;
}

.service_item:hover {
  color: var(--second_color)
}

@media all and (max-width: 991px) {
  .services li {
    width: 47%;
  }

  .service_item {
    min-height: auto;
    padding: 30px 0;
  }
}

@media all and (max-width: 576px) {
  .services li {
    width: 100%;
  }

  .service_item {
    padding: 15px 0;
  }
}

/* Footer
=======================*/
footer {
  margin-top: -8px;
  text-align: center;
  background: url(../images/shap_bc.png) no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 999;
  padding: 70px 0 30px;
}

footer .up_btn {
  width: 60px;
  height: 60px;
  line-height: 50px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--second_color);
  display: block;
  margin: auto;
  color: #fff;
  margin-top: -30px;
  margin-bottom: 30px;
  font-size: 22px;
  transition: 0.4s linear all;
}

footer .up_btn:hover {
  background-color: var(--main_color);
}

footer img {
  width: 100%;
  max-width: 290px;
  margin: 25px auto;
}

footer h4 {
  margin: 0 0 15px;
  font-size: 18px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

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