/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
:root {
  --main-color: #168aad;
  --second-color: #113333;
  --main-color-hover: #fbad3b;
}
ul {
  margin-bottom: 0;
}
::-webkit-scrollbar {
  width: 5px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}
.special {
  color: var(--main-color) !important;
}
body {
  font-family: "Almarai", sans-serif;
  color: #393939;
  font-family: "Montserrat", sans-serif;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  color: var(--main-color-hover);
  text-decoration: none;
}

.whats-icon i {
  position: fixed;
  display: inline-block;
  width: 45px;
  height: 45px;
  bottom: 30px;
  left: 30px;
  line-height: 45px;
  background-color: #4ced69;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #168aad;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 996;
  background: var(--main-color);
  width: 45px;
  height: 45px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--main-color-hover);
  color: #fff;
}

.call {
  position: fixed;
  left: 30px;
  bottom: 80px;
  z-index: 996;
  background: var(--main-color);
  width: 45px;
  height: 45px;
  border-radius: 4px;
  transition: all 0.4s;
}

.call i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.call:hover {
  background: var(--main-color-hover);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
.bg-header-portfolio {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--main-color);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 50px;
  width: 100%;
}

.social .social1 {
  font-size: 15px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 33px;
  height: 33px;
  transition: 0.3s;
  border: 1px solid #fff;
}

.social .social1:hover {
  background-color: #ffffff35;
}

@media (min-width: 992px) {
  .social .social1 {
    font-size: 16px;
    padding: 8px 0;
    width: 33px;
    height: 33px;
  }
}

@media (max-height: 500px) {
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

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

.navbar > ul {
  display: flex;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding-inline-start: 10px;
}

.navbar a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  padding: 0 3px;
}

.navbar a:hover,
.navbar a:focus,
.navbar a:active {
  color: #fff;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.social .getstarted,
.social .getstarted:focus {
  padding: 7px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
}

.social .getstarted {
  margin-left: 10px;
}

.social .getstarted:hover,
.social .getstarted:focus:hover {
  color: #fff;
  background: #ffffff35;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar li .active:before {
  visibility: visible;
  width: 100%;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #ed502e;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #455a8ed4;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 10%;
  right: 15px;
  bottom: 20%;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 8px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--main-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #ed502e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.social .getstarted,
.social .getstarted:focus {
  padding: 7px 12px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  /*  background: url(../img/01.png);
  background-repeat: no-repeat;
  background-size: cover;  */
}

#hero:before {
  content: "";
  background-image: linear-gradient(#11333385, #113333b0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#bg-video {
  position: absolute;
  min-width: 100%;
  /* min-height: 100vh; */
  max-width: 100%;
  /* max-height: 100vh; */
  object-fit: cover;
  z-index: -1;
  height: 100%;
}

#hero .container {
  position: relative;
  padding-top: 100px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 56px;
  color: #ffffff;
}

#hero h1 span {
  color: var(--th-color);
}

#hero h2 {
  color: #ffffff;
  margin: 15px 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

#hero h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

#hero .btn-get-started {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--main-color);
  border: 1px solid rgba(255, 255, 255, 0.237);
}

#hero .btn-get-started:hover {
  background: var(--main-color-hover);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 70px 0;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 27px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.section-title p {
  color: #696a6b;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  padding: 80px 0;
}
.about .image {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  overflow: hidden;
}
/* .about .image img {
    aspect-ratio: 1/0.65;
} */

.about .block {
  margin-bottom: 15px;
  justify-content: space-between;
}
.about .block h2 {
  font-size: 23px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.about .block p {
  font-size: 14px;
}
.about .block .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--main-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 2px;
}
.about .block .icon i {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 22px !important;
}
.about .block:hover .icon i {
  color: var(--main-color-hover);
}
.about .block .content {
  width: calc(100% - 70px);
}
/* 
.about .content p {
    line-height: 28px;
} */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  text-align: center;
  background: #fefefe;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  border-radius: 10px;
  border: 2px solid #70707017;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 90px;
  height: 65px;
  background: #dcc59652;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box img {
  height: 40px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #333333;
}

.services .icon-box p {
  line-height: 26px;
  font-size: 14px;
  margin-bottom: 0;
  color: #666666;
}

.services .icon-box:hover {
  border: 2px solid #7070702e;
  box-shadow: 0px 5px 40px 0px rgba(110, 123, 131, 0.066);
}

.services .icon-box:hover .icon {
  transform: translateY(-5px);
}

.services .icon-box:hover .icon i {
  color: #ed502e;
}

.services .icon-box:hover .icon::before {
  background: #f1775d;
}

/*--------------------------------------------------------------
# awards Testimonials
--------------------------------------------------------------*/

.awards {
  background-image: url(../img/patern.png);
  background-size: cover;
  background-color: var(--main-color);
  background-position: bottom;
}

.awards .section-title h2,
.awards .section-title p {
  color: #fff;
}

.awards .awards-carousel,
.awards .awards-slider {
  overflow: hidden;
}

.awards .awards-item {
  box-sizing: content-box;
  padding: 30px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  min-height: 150px;
  background: #fff;
  border: 1px solid #455a8e;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 0.6fr 2fr;
}

.awards .awards-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--main-color-hover);
}

.awards .awards-item p {
  color: #666666;
  line-height: 27px;
}

.awards .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.awards .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff59;
  opacity: 1;
}

.awards .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

/*--------------------------------------------------------------
# Testimonials 
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
  text-align: center;
}

.testimonials-wrap {
}

.testimonials .testimonials-item {
  box-sizing: content-box;
  padding: 30px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  min-height: 150px;
  background: #fff;
  border: 1px solid #455a8e;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 0.6fr 2fr;
}

.testimonials .testimonials-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--main-color-hover);
}

.testimonials .testimonials-item p {
  color: #666666;
  line-height: 27px;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #455a8e2b;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.testimonials img {
  aspect-ratio: 1/0.5;
  object-fit: cover;
  width: 100%;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #263035;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #26303517;
  margin-inline-start: 10px;
}

.portfolio .portfolio-item img {
  border-radius: 15px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--main-color);
  border-radius: 6px;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 6px;
  text-align: center;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  left: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  left: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

.btn-view-all a {
  display: inline-block;
  color: #313334;
  padding: 11px 70px;
  border-radius: 9px;
  background: #e8e8e8bc;
  font-size: 12px;
  transition: 0.3s all;
}

.btn-view-all a:hover {
  background: var(--main-color);
  color: #fff;
}

@media (max-width: 768px) {
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 13px;
  }
  .portfolio .portfolio-item .portfolio-info p {
    font-size: 10px;
  }
}

@media (max-height: 400px) {
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 10px;
  }
  .portfolio .portfolio-item .portfolio-info p {
    font-size: 8px;
  }
}

.what-we-offer h4 {
  font-weight: 600;
}

.what-we-offer h5 {
  font-weight: 600;
}

.what-we-offer h6 {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details iframe {
  height: 530px;
  padding-bottom: 19.25%;
}

.project-details {
  background: #455a8e0e;
  padding: 25px;
}

.project-details h1,
.project-details h3 {
  font-size: 18px;
  color: var(--main-color);
  font-weight: 600;
  border-bottom: 1px solid #696a6b13;
  padding-bottom: 15px;
}

.project-details h2 {
  font-size: 16px;
  color: var(--main-color);
  font-weight: 600;
}

.project-details p {
  font-size: 15px;
  color: #393939;
  line-height: 26px;
}

.project-details .social-links a {
  border: 1px solid transparent;
}

.project-details .instagram {
  background: #d54b8b;
}

.project-details .twitter {
  background: #58b4fb;
}

.project-details .facebook {
  background: #1f92e4;
}

.project-details .instagram:hover {
  border: 1px solid #d54b8b;
  color: #d54b8b;
}

.project-details .twitter:hover {
  border: 1px solid #58b4fb;
  color: #58b4fb;
}

.project-details .facebook:hover {
  border: 1px solid #1f92e4;
  color: #1f92e4;
}

@media (max-width: 768px) {
  .portfolio-details iframe {
    height: 300px;
    padding-bottom: 10%;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/imgs-1/AFFILIATIONS.webp") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta2 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/cover-section.webp") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta2 h3 {
  color: white;
}

.cta h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 400 !important;
  margin-bottom: 20px;
}

.cta h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 12px 0;
}

.cta p {
  color: #fff;
  font-weight: 300 !important;
  font-size: 17px;
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 33px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: var(--main-color-hover);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 15px 0;
  min-height: 40px;
  margin-top: 140px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li {
  font-size: 18px;
}

.breadcrumbs ol li + li {
  padding-inline-start: 8px;
  font-weight: 600;
}

.breadcrumbs ol li a {
  color: #515151;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-inline-end: 8px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# joun us
--------------------------------------------------------------*/

.join-us-form input,
.join-us-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.join-us-form input:focus,
.join-us-form textarea:focus {
  border-color: var(--second-color);
  /*  box-shadow: #146161 0px 6px 24px 0px, #146161 0px 0px 0px 1px; */
  box-shadow: 0 0 0 0.25rem #14616139;
}

.join-us-form input {
  padding: 11px 15px;
  border-radius: 3px;
}

.join-us-form button[type="submit"] {
  background: var(--second-color);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin-top: 20px;
}

.join-us-form button[type="submit"]:hover {
  background: #146161;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: var(--second-color);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  position: relative;
  overflow-x: hidden;
  z-index: 9;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}

.social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background-color: #ffffff25;
}

.social-links a:hover {
  color: var(--main-color);
  background: #ffffff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  position: relative;
}

#footer .footer-top .footer-links h4::after {
  content: "";
  height: 2px;
  background-color: #fff;
  position: absolute;
  width: 30px;
  top: 28px;
  left: 15px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
}

#footer .footer-top .footer-links ul i {
  color: var(--main-color);
  font-size: 20px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.links ul li a:hover {
  display: inline-block;
  transform: translatex(-5px);
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
  margin-top: 80px;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--main-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #a8834c72;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--main-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--main-color-hover);
}

/***/

/*-------------------
-----News Styles-----
---------------------*/

.timeline {
  position: relative;
  z-index: 1;
  text-align: right;
}

.timeline:before {
  display: block;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 1px;
  top: 0;
  border-right: 1px solid #b38e58;
  z-index: -1;
}

.timeline .date-title {
  text-align: center;
  margin: 70px 0 50px;
}

.timeline .date-title span {
  padding: 15px 30px;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
}

#news {
  padding: 0 !important;
}

.news-item {
  padding-bottom: 45px;
}

.news-item.right {
  float: right;
  margin-top: 40px;
}

.news-item .news-content {
  margin: 20px 30px 0 0;
  position: relative;
  padding: 30px;
  padding-left: 100px;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: -5px 5px 0 rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.news-item:hover .news-content {
  background: var(--main-color);
  color: #fff;
}

.news-item.right .news-content {
  margin: 20px 0 0 30px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.08);
}

.news-item .news-content:after {
  display: block;
  content: "";
  position: absolute;
  top: 50px;
  right: -40px;
  width: 0px;
  height: 0px;
  background: transparent;
  border: 20px solid transparent;
  border-left: 20px solid #f5f5f5;
  -webkit-transition: border-left-color 0.3s ease-out;
  transition: border-left-color 0.3s ease-out;
}

.news-item.right .news-content:after {
  position: absolute;
  left: -40px;
  right: auto;
  border-left: 20px solid transparent;
  border-right: 20px solid #f5f5f5;
  -webkit-transition: border-right-color 0.3s ease-out;
  transition: border-right-color 0.3s ease-out;
}

.news-item:hover .news-content:after {
  border-left-color: var(--main-color);
}

.news-item.right:hover .news-content:after {
  border-left-color: transparent;
  border-right-color: var(--main-color);
}

.news-item .news-content:before {
  display: block;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -55px;
  top: 60px;
  background: var(--main-color);
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}

.news-item.right .news-content:before {
  left: -55px;
  right: auto;
}

.news-content .date {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 10px;
  text-align: center;
  color: #5cc9df;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.news-item:hover .news-content .date {
  color: #fff;
}

.news-content .date p {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
}

.news-content .date small {
  margin: 0;
  font-size: 26px;
  font-weight: 300;
  line-height: 24px;
}

.news-content .news-title {
  font-size: 25px;
  font-weight: 400;
}

.news-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.news-content .news-media {
  position: absolute;
  width: 80px;
  bottom: -45px;
  right: 40px;
  border-radius: 8px;
}

.news-content .news-media img {
  border-radius: 8px;
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.news-content .news-media a {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.news-content .news-media a:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.news-content .news-media a:after {
  content: "\f065";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  font-family: FontAwesome;
  font-size: 32px;
  line-height: 80px;
  text-align: center;
  color: #5cc9df;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0.1s;
  transition: all 0.2s ease-out 0.1s;
}

.news-content .news-media.video a:after {
  content: "\f04b";
}

.news-content .news-media a:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.news-content .news-media.gallery {
  box-shadow: 4px 4px 0 #bbb, 8px 8px 0 #ddd;
}

/****************************************/

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card img {
  height: 50px;
}

.flip-card h4 {
  font-weight: 300;
  margin: 15px 0;
  font-size: 24px;
  color: #333333;
}

.flip-card p {
  line-height: 22px;
  font-size: 14px;
  margin-bottom: 0;
  color: #666666;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  text-align: center;
  background: #fefefe;
  transition: all ease-in-out 0.3s;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 50px 20px;
  border: 2px solid #70707017;
  border-radius: 10px;
}
.flip-card-front .icon i {
  font-size: 60px;
  color: var(--main-color);
}
.flip-card-front {
  border-radius: 6px;
  color: black;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.pricing .section-header {
  margin-bottom: 60px;
}
.pricing .section-header-pricing h2 {
  text-transform: capitalize;
}
.pricing .row {
  display: flex;
}
.pricing .row > div {
  /* height: 100% !important; */
}
.pricing .row > div > div {
  height: 100%;
  padding: 30px 30px;
}
.pricing .pricing-box {
  background-color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(0, 0, 0, 0.1) !important;
  background-color: white;
  min-height: 1010px;
  border-radius: 10px;
}
.pricing .pricing-box h4 {
  padding: 20px 0 !important;
  color: white;
  background-color: var(--main-color);
  text-align: center;
}

.pricing .pricing-box p {
  font-size: 15px;
}
.pricing .pricing-box i {
  font-size: 17px;
  color: var(--main-color);
}
.pricing .pricing-box > div {
  padding: 15px !important;
}
.section-header-pricing {
  text-align: center;
}
.section-header-pricing h2 {
  display: inline-block;
  position: relative;
}
/* .section-header-pricing h2::after {
    content:"";
    width:50%;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
} */
.pricing .section-header p {
  font-size: 15px;
  width: 40%;
  margin: auto;
}
@media (max-width: 702px) {
  .pricing .section-header p {
    width: 90%;
  }
}

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

/* .wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    margin: 50px;
    padding: 0px 20px;


} */
.pricing-table {
  box-shadow: 0px 0px 18px #ccc;
  text-align: center;
  padding: 30px 0px 0;
  border-radius: 5px;
  position: relative;
}
.pricing-table .head {
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
  transition: all 0.5s ease;
}
.pricing-table:hover .head {
  border-bottom: 1px solid #8e2de2;
}

.pricing-table .head .title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
}

.pricing-table .content .price {
  background: linear-gradient(to right, #8e2de2 0%, var(--main-color) 100%);
  width: 90px;
  height: 90px;
  margin: auto;
  line-height: 90px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0px 0px 10px #ccc;
  margin-top: -50px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-table .content .price i {
  font-size: 35px;
}
.pricing-table:hover .content .price {
  transform: scale(1.2);
}
.pricing-table .content .price h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.pricing-table .content ul {
  list-style-type: none;
  /* margin-bottom: 20px; */
  padding: 0;
  padding-top: 10px;
}

.pricing-table .content ul li {
  margin: 7px 0px;
  font-size: 14px;
  color: #555;
  text-align: left;
}
.pricing-table .content ul li i {
  color: var(--main-color);
}

.pricing-table .content .sign-up {
  background: linear-gradient(to right, #8e2de2 0%, var(--main-color) 100%);
  border-radius: 40px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin: 30px 0 0px;
}

.pricing-table .btn {
  color: #fff;
  padding: 5px 40px;
  /* width:100%; */
  display: inline-block;
  text-align: center;
  font-weight: 600;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3 linear;
  transition: all 0.3 linear;
  border: none;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  margin: 2px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.pricing-table .btn:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.pricing-table .btn.bordered {
  z-index: 50;
  color: #333;
  width: 100%;
}
.pricing-table:hover .btn.bordered {
  color: #fff !important;
}

.pricing-table .btn.bordered:after {
  background: #fff none repeat scroll 0 0;
  border-radius: 50px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3 linear;
  transition: all 0.3 linear;
  width: 99%;
  z-index: -1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.pricing-table:hover .btn.bordered:after {
  opacity: 0;
  transform: scale(0);
}
.pricing-table .content {
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
  margin-top: 80px;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--main-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #a8834c72;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--main-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--main-color-hover);
}

/* CSS للتحسينات */

.contact .info-box {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .contact .info-box,
  .contact .php-email-form {
    margin-bottom: 20px;
  }

  .contact .info-box h3,
  .contact .php-email-form {
    text-align: center;
  }

  .contact .php-email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact .form-row {
    width: 100%;
    max-width: 400px;
  }

  .contact .form-row .col {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact .form-row .form-group textarea {
    width: 100%;
  }

  .contact .text-center button {
    width: 100%;
    max-width: 200px;
  }
}
