/* 
TABLE OF CONTENT 

- DOCUMENT SETUP
- HOME
- WHO ARE WE
- SERVICES
- OFFERS
- BRANCHES
- JOBS
- NEWS
- FOOTER
- RESPONSIVENSS
*/
@import "normalize.css";
body {
  font-family: "Poppins", sans-serif;
  --blue: #1461aa;
  --pink: #ee1a43;
}

.container {
  margin: auto;
  width: 95%;
  max-width: 1800px;
}

.main-btn {
  text-transform: uppercase;
  background-color: var(--blue);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 200;
  padding: 10px 35px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  display: block;
  margin: auto;
}

.divider {
  background-position: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6588235294), rgba(0, 0, 0, 0.6588235294)), var(--url);
  height: 100px;
}

.paragraph {
  text-align: center;
}
.paragraph .title {
  letter-spacing: 2px;
  font-size: 46px;
  color: var(--blue);
}
.paragraph .subtitle {
  font-size: 12px;
  margin-top: 20px;
  font-weight: 600;
}
.paragraph .hr {
  height: 2px;
  width: 120px;
  background-color: #dbdbdb;
  margin: 20px auto;
}
.paragraph p {
  font-size: 16px;
  margin-bottom: 50px;
  color: #505050;
}

.menu-wrapper {
  position: absolute;
  padding: 20px;
  padding-top: 30px;
  padding-right: 40px;
  right: 0;
  width: 200px;
  z-index: 1;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.menu-wrapper.collapsed {
  height: 0px;
  padding: 0px;
  opacity: 0;
}

#menu {
  background-color: #fff;
}
#menu ul {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
#menu ul li {
  padding: 13px 10px;
  text-align: center;
  text-transform: uppercase;
}
#menu ul li:hover {
  background-color: #f8f8f8;
}
#menu ul #close-menu {
  text-align: end;
  cursor: pointer;
  background-color: unset;
  color: var(--pink);
}

.welcome-home{
  --hero-height: 700px;
  height: var(--hero-height);
}

#home {
  color: #fff;
  position: relative;
}
#home .carousel-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: -1;
}
#home .owl-carousel .img-wrapper {
  height: 200px;
  height: var(--hero-height);
  background: var(--pink);
}
#home .owl-carousel .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#home header #open-menu {
  color: var(--pink);
  cursor: pointer;
}
#home header .social {
  display: flex;
  gap: 7px;
}
#home .welcome {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 150px;
  text-transform: uppercase;
}
#home .welcome p:nth-child(1) {
  font-weight: 200;
  letter-spacing: 5px;
}
#home .welcome p:nth-child(2) {
  font-size: 44px;
  font-weight: 200;
  margin: 10px 0;
}
#home .welcome p:nth-child(2) strong {
  color: var(--blue);
  font-weight: 600;
}
#home .welcome p:nth-child(3) {
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2196078431);
}
#home .welcome .search {
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  overflow: hidden;
  position: relative;
}
#home .welcome .search input {
  background-color: rgba(255, 255, 255, 0);
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  color: white;
  font-size: 24px;
  outline: none;
  font-weight: 200;
}
#home .welcome .search input::-moz-placeholder {
  color: white;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}
#home .welcome .search input::placeholder {
  color: white;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}
#home .welcome .search i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: var(--pink);
}

#us .main {
  padding: 100px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#us .main .start {
  color: var(--blue);
  flex-basis: 50%;
}
#us .main .start .title {
  letter-spacing: 2px;
  font-size: 36px;
}
#us .main .start .subtitle {
  font-size: 14px;
  color: #505050;
}
#us .main .start .hr {
  height: 2px;
  width: 120px;
  background-color: #dbdbdb;
  margin: 20px 0;
}
#us .main .start p {
  font-size: 16px;
  margin-bottom: 50px;
}
#us .main .start .main-btn {
  margin: unset;
}
#us .main .end {
  flex-basis: 50%;
  flex-grow: 1;
  text-align: center;
}
#us .main .end figure {
  margin: auto;
  max-width: 600px;
}
#us .main .end figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#services .container {
  padding: 50px 0;
}
#services .cards-wrapper {
  padding: 0 50px;
}
#services .cards {
  margin-bottom: 50px;
}
#services .cards .card {
  height: 250px;
  position: relative;
}
#services .cards .card img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#services .cards .card .btns {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 24px;
  opacity: 0;
  transition: 0.2s all ease-in-out;
}
#services .cards .card .btns .red {
  background-color: var(--pink);
}
#services .cards .card .btns .blue {
  background-color: var(--blue);
}
#services .cards .card .btns > * {
  display: block;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 5px 10px;
  color: #fff;
  font-weight: 200;
}
#services .cards .card .btns > *:hover {
  filter: saturate(5);
}
#services .cards .card:hover .btns {
  opacity: 1;
}
#services .owl-carousel .nav-btn {
  height: 47px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: 100px !important;
  color: #dbdbdb;
  transition: all ease-in-out;
}
#services .owl-carousel .nav-btn:hover {
  color: #909090;
}
#services .owl-carousel .right {
  right: -33px;
}
#services .owl-carousel .left {
  left: -47px;
}

#offers .container {
  padding: 50px 0;
}
#offers .cards-wrapper {
  padding: 0 50px;
}
#offers .cards {
  margin-bottom: 50px;
}
#offers .cards .card {
  height: 250px;
  display: flex;
  justify-content: start;
  align-items: center;
}
#offers .cards .card {
  flex-direction: row !important;
}
#offers .cards .card .img {
  width: 40%;
  /* background: #000; */
}
#offers .cards .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
#offers .cards .card .text {
  width: 60%;
  flex-grow: 0;
  padding: 20px;
  letter-spacing: 1px;
}
#offers .cards .card .text p {
  line-height: 200%;
}
#offers .owl-carousel .nav-btn {
  height: 47px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: 100px !important;
  color: #dbdbdb;
  transition: all ease-in-out;
}
#offers .owl-carousel .nav-btn:hover {
  color: #909090;
}
#offers .owl-carousel .right {
  right: -33px;
}
#offers .owl-carousel .left {
  left: -47px;
}

#branches .container {
  padding: 50px 0;
}
#branches .cards {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
#branches .cards .card {
  flex: 0 1 20%;
}
#branches .cards .card .img {
  height: 250px;
  position: relative;
}
#branches .cards .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#branches .cards .card .img .overlay {
  opacity: 0;
  transition: 0.2s all ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(105, 134, 230, 0.3294117647);
  display: flex;
  justify-content: center;
  align-items: center;
}
#branches .cards .card .img .overlay .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #6986e6;
  color: #fff;
  text-decoration: none;
}
#branches .cards .card .body {
  padding: 10px 0;
  text-align: center;
}
#branches .cards .card .body .title {
  margin: 10px 0;
  font-weight: 600;
}
#branches .cards .card .body .text {
  font-size: 13px;
  line-height: 150%;
}
#branches .cards .card:hover .overlay {
  opacity: 1;
}

#jobs .container {
  padding: 50px 0;
}
#jobs .cards {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
#jobs .cards .card {
  flex: 0 1 20%;
}
#jobs .cards .card .img {
  height: 250px;
  border: 1px solid #eee;
}
#jobs .cards .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#jobs .cards .card .body {
  padding: 10px 0;
  text-align: center;
}
#jobs .cards .card .body .title {
  margin: 10px 0;
  font-weight: 600;
}
#jobs .cards .card .body .text {
  font-size: 13px;
  line-height: 150%;
}

#news .container {
  padding: 50px 0;
}
#news .cards {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
#news .cards .card {
  flex: 0 1 20%;
}
#news .cards .card .img {
  height: 250px;
}
#news .cards .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  -o-object-position: center;
     object-position: center;
}
#news .cards .card .body {
  padding: 10px 0;
  text-align: center;
}
#news .cards .card .body .title {
  margin: 10px 0;
  font-weight: 600;
}
#news .cards .card .body .text {
  font-size: 13px;
  line-height: 150%;
}
.card .header{
  text-align: center;
}
.card .button{
  margin-top: 1rem;
}
footer {
  background-color: #020f1b;
  color: #909090;
  font-weight: 200;
  font-size: 14px;
}
footer .container {
  max-width: 1200px;
}
footer .flex {
  padding: 70px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
footer .flex div {
  flex-basis: 30%;
}
footer .flex .title {
  color: #fff;
  margin-bottom: 30px;
}
footer .flex .title strong {
  font-weight: 600;
}
footer .flex .title i {
  color: var(--pink);
}
footer .flex .about p {
  margin-bottom: 50px;
  line-height: 150%;
}
footer .flex .about .social {
  display: flex;
  gap: 10px;
}
footer .flex .work {
  width: 28%;
}
footer .flex .work .tiles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
footer .flex .work .tiles div {
  flex: 0 1 30%;
  height: 100px;
  background-color: #0e253b;
}
footer .flex .work a {
  margin-top: 10px;
  display: block;
}
footer .flex .news ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer .flex .news ul li {
  display: flex;
  gap: 10px;
  line-height: 150%;
}
footer .bottom {
  background-color: black;
  padding: 20px 0;
}
footer .bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1350px) {
  .menu-wrapper {
    padding-right: 20px;
  }
}
@media (max-width: 1000px) {
  #branches .cards .card {
    flex: 0 1 40%;
  }
  #jobs .cards .card {
    flex: 0 1 40%;
  }
  #news .cards .card {
    flex: 0 1 40%;
  }
}
@media (max-width: 600px) {
  .menu-wrapper {
    padding-right: 14px;
  }
  #home header #open-menu {
    order: 2;
  }
  #home header .logo {
    order: 0;
  }
  #home header nav {
    order: 1;
  }
  #home header nav .social {
    display: none;
  }
  #us .main {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  #us .main .start {
    color: var(--blue);
    flex-basis: 50%;
  }
  #us .main .start .title {
    letter-spacing: 2px;
    font-size: 36px;
  }
  #us .main .start .subtitle {
    font-size: 14px;
    color: #505050;
  }
  #us .main .start .hr {
    height: 2px;
    width: 120px;
    background-color: #dbdbdb;
    margin: 20px 0;
  }
  #us .main .start p {
    font-size: 16px;
    margin-bottom: 50px;
  }
  #us .main .start .main-btn {
    margin: unset;
  }
  #us .main .end {
    flex-basis: 50%;
    flex-grow: 1;
    text-align: center;
  }
  #us .main .end figure {
    margin: auto;
    max-width: 600px;
  }
  #us .main .end figure img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #offers .cards .card {
    flex-direction: column !important;
    height: unset;
  }
  #offers .cards .card .img {
    width: unset;
  }
  #offers .cards .card .text {
    width: unset;
  }
  #branches .cards .card {
    flex: 0 1 90%;
  }
  #jobs .cards .card {
    flex: 0 1 90%;
  }
  #news .cards .card {
    flex: 0 1 90%;
  }
  footer .flex {
    flex-direction: column;
    gap: 30px;
  }
  footer .flex div {
    flex-basis: 100%;
  }
  footer .flex .work {
    width: 100%;
  }
  footer .flex .work .tiles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  footer .flex .work .tiles div {
    flex: 0 1 30%;
    height: 100px;
    background-color: #0e253b;
  }
  footer .bottom .container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */


/* single page  */
.single-pages{
  background: #020f1b;
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
  color: #909090;
  font-weight: 200;
  font-size: 14px;
  -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  color: #020f1b;
}
/* .single-pages a{
  color: #020f1b;
} */
.card {
  border: none;
}
.details {
  display: flex;
  padding: 24px 12px;
  overflow: hidden;
}
.details .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50%;
  height: 420px;
  overflow: hidden;
  background: #fff;
}
.details .contant {
  display: flex;
  align-items: center;
  padding: 32px;
}
.details .title {
  font-size: 40px;
  color: #000;
  text-transform: capitalize;
  position: relative;
}

a:hover {
  color: #020f1b;
}
.main-btn:hover {
  color: #fff;
}
.social a:hover {
  color: #fff;
}
.social i:hover {
  transform: scale(1.2);
  color: var(--pink);
}
.social .languages i {
  color: var(--pink);
}

/* contact US */
.contactus , .forms{
  width: 100%;
  position: relative;
  background: #f7f7f7;
  padding: 24px 0px 48px 0px;
  border-radius: 1rem;
}
.contactus .item .contact-block{
  display: flex;
  position: relative;
  background: #fff;
  padding: 40px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  min-height: 140px;
}
.contactus .item .contact-block .block-info{
  position: relative;
  padding-left: 20px;
  z-index: 10;
  text-align: center;
  width: 80%;

}
.contactus .item .contact-block .block-info .title{
  color: #000;
  font-size: 28px;
  margin-bottom: 8px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.contactus .item .contact-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid #ee1a43;
}
.contactus .item .contact-block svg{
  max-width: 100%;
  max-height: 100%;
  fill: #ea232a;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.contactus .innerform {
  margin-top: 48px;
}
.contactus .title {
  font-size: 40px;
  color: #000;
  text-transform: capitalize;
  position: relative;
}
.contactus .text {
  margin-top: 16px;
  line-height: 28px;
}
.contactus .innerform .title, .contactus .innerform .text,  .forms.contactus .innerform .text {
  text-align: center;
}
.contactus .innerform .field, .forms  .field{
  margin-top: 16px;
}
.contactus .innerform .field .bottom, .forms  .field .bottom{
  margin: 0px auto;
  height: 54px;
  border-radius: 0.25rem;
}
.contactus form .text-danger,  .forms .text-danger{
  font-size: 0.8rem;
}

.owl-carousel:lang(ar) { direction: ltr !important; }

.image-service img{
  min-width: 289px;
  max-height: 234px;
}



html[dir="rtl"]{
  #home{
      .welcome{
          .search input{
              padding-left: unset ;
              padding-right: 10px ;
          }
          i{
              right: unset; 
              left: 10px; 
          }
          
      }
  }
  .menu-wrapper{
      padding-right: unset;
      padding-left: 40px;
      right: unset;
      left: 0;
  }
}

