/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template 
    :: Author: Turbo
    :: Author URL:www.boo-code.com 
    :: Version: 1.0
    :: Created: 10 2023
    :: Last Updated: 10 2023
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
@font-face {
  font-family: "expo-regular";
  src: url("../fonts/ExpoArabic-Regular.ttf");
}
@font-face {
  font-family: "expo-semi-bold";
  src: url("../fonts/ExpoArabic-SemiBold.ttf");
}
@font-face {
  font-family: "expo-bold";
  src: url("../fonts/ExpoArabic-Bold.otf");
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "expo-regular", sans-serif;
}

a {
  text-decoration: unset;
}

.sec-button {
  background-color: transparent;
  color: #F5BE44;
  border: 2px solid #F5BE44;
  padding: 1rem 3rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.sec-button:hover {
  background-color: #F5BE44;
  color: #fff;
}

.navbar {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
}
.navbar .logo {
  margin-top: 2rem;
  width: 100px;
  height: 100px;
}
.navbar .navbar-nav {
  -moz-column-gap: 2.7rem;
       column-gap: 2.7rem;
  row-gap: 1rem;
  border-bottom: 1px solid #8F8F8F;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  padding-bottom: 1rem;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #F5BE44;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  border-bottom: 2px solid #fff;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("../images/hero/hero-bg.jpg") no-repeat right center/cover;
  overflow-x: hidden;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero .hero-content h1 {
  font-family: "expo-bold", sans-serif;
  font-size: 5rem;
  color: #F5BE44;
}
.hero .hero-content p {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.about {
  padding: 6rem 0;
}
.about h1 {
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  color: #1E6FA7;
}
.about p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #343434;
  margin-top: 1rem;
}
.about img {
  width: 100%;
}

.vision {
  padding: 7rem 0;
  background: url("../images/vision/vision-bg.jpg") no-repeat center center/cover;
}
.vision h2 {
  color: #fff;
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
}
.vision p {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  display: block;
  margin-bottom: 4rem;
}
.vision .vision-box {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 2rem 1rem 2rem;
  border-inline-start: 0.8rem solid #E9B351;
  margin-top: 1rem;
  margin-top: 1rem;
  min-height: 277px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vision .vision-box h5 {
  font-size: 1.2rem;
  line-height: 1.8;
}
.vision .vision-box img {
  height: 3rem;
  margin-right: auto;
  display: block;
}

.our-message {
  padding: 6rem 0;
}
.our-message h1 {
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  color: #1E6FA7;
}
.our-message p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #343434;
  margin-top: 1rem;
}
.our-message img {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.fetures {
  padding: 7rem 0;
  background: url("../images/fetures/fetures-bg.jpg") no-repeat center center/cover;
}
.fetures h2 {
  color: #fff;
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
}
.fetures p.desc {
  color: #F5BE44;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  display: block;
  margin-bottom: 4rem;
}
.fetures .feat-box {
  background: rgba(0, 0, 0, 0.6901960784);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 1rem;
}
.fetures .feat-box .img-box {
  width: 106px;
  height: 106px;
  flex-shrink: 0;
  margin-top: -3rem;
}
.fetures .feat-box .img-box img {
  width: 80px;
}
.fetures .feat-box h3 {
  font-family: "expo-bold", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-top: 0.5rem;
}
.fetures .feat-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin-top: 1rem;
}

.services {
  padding: 6rem 0;
}
.services h1 {
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  color: #1E6FA7;
}
.services p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #343434;
  margin-top: 1rem;
}
.services img.cover {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.services h2 {
  font-family: "expo-bold", sans-serif;
  font-size: 2rem;
  color: #1E6FA7;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.services .services-box {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.services .services-box .img-box {
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.1607843137);
  border: 11px solid #FFFFFF;
}
.services .services-box .img-box img {
  border-radius: 1rem 1rem 0 0;
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .services-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 80%;
  padding: 2rem 2rem;
  font-size: 1.3rem;
  background: #F5BE44;
  color: #fff;
  border-radius: 1rem 0 0 1rem;
  margin-top: -3.5rem;
  box-shadow: 0px 7px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 2;
}

.testimonials {
  padding: 7rem 0;
  background: url("../images/testimonials/testimonials-bg.png") no-repeat center center/cover;
}
.testimonials h2 {
  color: #fff;
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
}
.testimonials p.desc {
  color: #F5BE44;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  display: block;
  margin-bottom: 4rem;
}
.testimonials .carousel {
  padding-bottom: 4rem;
}
.testimonials .carousel .carousel-indicators {
  bottom: -20px;
}
.testimonials .carousel .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 0;
  margin-left: 5px;
  margin-right: 5px;
  opacity: 1;
  background-color: #fff;
}
.testimonials .carousel .carousel-indicators button.active {
  background-color: #F5BE44;
}
.testimonials .testimonials-box {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
}
.testimonials .testimonials-box img {
  height: 5rem;
}
.testimonials .testimonials-box h5 {
  font-family: "expo-semi-bold", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
}
.testimonials .testimonials-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.contact {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 6rem 0;
  background: url("../images/contact/contact-bg.png") no-repeat center center/cover;
  background-size: contain;
}
.contact h1 {
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  color: #1E6FA7;
  text-align: center;
}
.contact p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #414141;
  margin-top: 1rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  margin-bottom: 5rem;
}
.contact .contact-box {
  display: flex;
  gap: 2rem;
}
.contact .contact-box img {
  height: 40px;
}
.contact .contact-box h4 {
  font-family: "expo-semi-bold", sans-serif;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.contact .contact-box a {
  display: block;
  color: #414141;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.contact .contact-box a:hover {
  color: #1E6FA7;
}

footer {
  padding: 8rem 0;
  background: url("../images/footer/footer-bg.png") no-repeat bottom center/cover;
}
footer .logo {
  height: 9rem;
}
footer p {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 60%;
  line-height: 1.8;
}
footer .social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
footer .social img {
  width: 40px;
  transition: all 0.3s ease-in-out;
}
footer .social img:hover {
  transform: scale(1.1);
}
footer h4 {
  font-family: "expo-semi-bold", sans-serif;
  font-size: 1.6rem;
  color: #F5BE44;
  margin-bottom: 2rem;
  margin-top: 6rem;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .links a {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
footer .links a:hover {
  color: #F5BE44;
}

.internal-navbar {
  position: relative;
  background: transparent linear-gradient(90deg, #1F72AB 0%, #10365B 100%) 0% 0% no-repeat padding-box;
}
.internal-navbar .logo {
  margin-top: 0rem;
  width: 80px;
  height: 80px;
}
.internal-navbar .navbar-nav {
  border-bottom: none;
}
.internal-navbar .navbar-nav .nav-item .nav-link {
  padding-bottom: 0.5rem;
}
.internal-navbar .navbar-nav .nav-item .nav-link.active {
  color: #F5BE44;
  border-color: #F5BE44;
}

.banner {
  background: no-repeat bottom center/cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner h1 {
  font-family: "expo-bold", sans-serif;
  font-size: 3rem;
  color: #fff;
}
.banner.finance {
  background-image: url("../images/banners/finance.jpg");
}
.banner.contact-us {
  background-image: url("../images/banners/contact.jpg");
}
.banner.it {
  background-image: url("../images/banners/it.jpg");
}
.banner.edaria {
  background-image: url("../images/banners/edaria.jpg");
}

.intenral-content {
  padding: 4rem 0;
}
.intenral-content .section-box {
  padding: 4rem 0;
}
.intenral-content .section-box.bg {
  background: #F8F8F8;
}
.intenral-content .section-box .row {
  align-items: center;
}
.intenral-content .content-box .title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.intenral-content .content-box .title span {
  background: transparent linear-gradient(180deg, #F8CE82 0%, #D49231 100%) 0% 0% no-repeat padding-box;
  border-radius: 7px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 2rem;
  color: #fff;
  font-family: "expo-bold", sans-serif;
}
.intenral-content .content-box .title h2 {
  font-family: "expo-semi-bold", sans-serif;
  font-size: 1.4rem;
  color: #1E6FA7;
  margin: 0;
  line-height: 1.6;
}
.intenral-content .content-box p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #343434;
  margin-top: 2rem;
}
.intenral-content .content-box-img {
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .navbar {
    background: white;
  }
  .navbar .logo {
    height: 4rem;
    width: 4rem;
    margin-top: 0rem;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    color: #1E6FA7;
    padding-bottom: 0.5rem;
  }
  .navbar .navbar-nav {
    border-bottom: none;
    padding-top: 1rem;
  }
  .hero {
    background: url(../images/hero/hero-bg.jpg) no-repeat bottom center/cover;
  }
  .hero .hero-content {
    padding: 1rem;
  }
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .about {
    padding: 3rem 0;
  }
  .about .row {
    flex-direction: column-reverse;
  }
  .about img {
    margin-bottom: 2rem;
  }
  .about h1 {
    font-size: 2rem;
  }
  .about p {
    font-size: 1.1rem;
  }
  .vision {
    padding: 3rem 0;
  }
  .vision h2 {
    font-size: 2rem;
  }
  .vision p {
    font-size: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .services img.cover {
    width: 200px;
  }
  .our-message img {
    width: 200px;
  }
  .our-message {
    padding: 3rem 0;
  }
  .our-message h1 {
    font-size: 2rem;
  }
  .our-message p {
    font-size: 1.2rem;
  }
  .fetures {
    padding: 3rem 0;
  }
  .fetures h2 {
    font-size: 2rem;
  }
  .fetures p.desc {
    font-size: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  .fetures .feat-box h3 {
    font-size: 1.8rem;
  }
  .fetures .feat-box p {
    font-size: 1.2rem;
  }
  .services {
    padding: 3rem 0;
  }
  .services h1 {
    font-size: 2rem;
  }
  .services p {
    font-size: 1.2rem;
  }
  .services h2 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .services .services-box {
    margin-bottom: 4rem;
  }
  .services .services-box a {
    width: 85%;
    padding: 2rem 1rem;
  }
  .testimonials {
    padding: 3rem 0;
  }
  .testimonials h2 {
    font-size: 2rem;
  }
  .testimonials p.desc {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
  }
  .testimonials .testimonials-box {
    flex-direction: column;
  }
  .testimonials .testimonials-box img {
    height: 5rem;
    width: 5rem;
  }
  .contact {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 3rem 0;
    background-size: cover;
  }
  .contact h1 {
    font-size: 2rem;
  }
  .contact p {
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 2rem;
  }
  footer {
    padding: 3rem 0;
    padding-bottom: 6rem;
    background: url(../images/footer/footer-bg.png) no-repeat center center/cover;
  }
  footer .logo {
    height: 5rem;
  }
  footer p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
  }
  footer h4 {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .banner {
    height: 200px;
  }
  .banner h1 {
    font-size: 2rem;
  }
  .intenral-content {
    padding: 2rem 0;
  }
  .intenral-content .section-box {
    padding: 2rem 0;
  }
  .intenral-content .section-box .row {
    flex-direction: column-reverse;
  }
  .intenral-content .section-box.bg .row {
    flex-direction: column;
  }
  .intenral-content .content-box-img {
    height: auto;
    width: 80%;
    margin-bottom: 2rem;
  }
}
/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .navbar {
    background: white;
    position: relative;
  }
  .navbar .logo {
    height: 4rem;
    width: 4rem;
    margin-top: 0rem;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    color: #1E6FA7;
    padding-bottom: 0.5rem;
  }
  .navbar .navbar-nav {
    border-bottom: none;
    padding-top: 1rem;
  }
  .hero {
    background: url(../images/hero/hero-bg.jpg) no-repeat bottom center/cover;
  }
  .hero .hero-content {
    padding: 1rem;
  }
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .our-message img {
    width: 200px;
    margin-bottom: 2rem;
  }
  .services img.cover {
    width: 300px;
  }
  .services .services-box {
    margin-bottom: 4rem;
  }
}
/*  large screen  */
@media only screen and (min-width: 1024px) and (max-width: 1290px) {
  .services img.cover {
    width: 300px;
  }
  .our-message img {
    width: 300px;
  }
}
/* 17 inch *//*# sourceMappingURL=style.css.map */