/* this coding created by web developer/ Ahmed fawzy mohamed */
/* personal email: ahmedfawzyalhegazy2020@gmail.com */
/* whatsapp: +201094848584 */
/* website: https://orion-comp.com/ */
/* formal email: info@orion-comp.com */
/* linkedin account: https://www.linkedin.com/in/ahmed-fawzy-mohamed-48a771202 */

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --white: #ffffff;
  --black: #000000;
  --yellow: #ecb21f;
  --gray: #4e4c4b;
  --bordrad10: 10px;
  --main-transition: 0.25s;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: var(--white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
}
::-webkit-scrollbar-thumb:hover {
  /* background-color: var(--green); */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Afacad", sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
section {
  overflow: hidden;
}
.mainbtn {
  display: inline-block;
  padding: 7px 30px;
  border-radius: 30px;
  background-color: var(--yellow);
  color: var(--black);
  transition: var(--main-transition);
}
.mainbtn:hover {
  background-color: #bd8801;
}
/* media query  */
@media (max-width: 320px) {
  .container {
    max-width: 300px !important;
  }
}
@media (min-width: 360px) {
  .container {
    max-width: 340px !important;
  }
}
@media (min-width: 410px) {
  .container {
    max-width: 390px !important;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 769px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px !important;
  }
}
/* End @media */

/* End Global Rules */

/* Start header */
.header {
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999999;
}
.header .container {
  padding: 15px 10px;
}
.header .container > .row > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: left;
  align-items: center;
}
.header .container > .row > div:nth-of-type(2) {
  justify-content: center;
}
.header .container > .row > div:last-of-type {
  justify-content: right;
}
.header .linklogo img {
  height: 70px;
}
.header .menubtn {
  border-radius: 5px;
  color: var(--yellow);
  /* background-color: var(--main-color); */
  width: 40px;
  height: 40px;
  font-size: 25px;
  text-align: center;
  line-height: 40px;
  position: absolute;
  right: 20px;
  cursor: pointer;
  display: none;
}
.header ul li {
  display: inline-block;
}
.header ul li a {
  margin-right: 15px;
  padding: 5px 8px;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  transition: all 0.35s ease-in-out;
}

.header ul li a::after {
  content: " ";
  width: 0%;
  height: 4px;
  border-radius: 4px;
  background-image: linear-gradient(
    to right,
    #f8e1a7,
    #f6d890,
    #f4d079,
    #f1c762,
    #efbe49,
    #efbe49,
    #efbe49,
    #efbe49,
    #f1c762,
    #f4d079,
    #f6d890,
    #f8e1a7
  );
  display: block;
  position: absolute;
  bottom: 0px;
  transition: all 0.35s ease-in-out;
}
.header ul li a:hover {
  color: var(--yellow);
}
.header ul li a:hover::after {
  width: 100%;
}
.header .btnheader {
}
.header .btnheader a {
  padding: 6px 15px;
  font-family: "Zain", serif;
}
.header .btnheader a span {
  margin-right: 10px;
}
@media (max-width: 769px) {
  .header ul,
  .header .btnheader {
    background-color: var(--black);
    padding: 10px;
  }
  .header .container > .row > div {
    justify-content: center;
  }
  .header .container > .row > div:first-of-type {
    justify-content: left;
  }
  .header ul li {
    display: block;
    text-align: center;
    padding: 7px;
  }
  .header ul li a {
    margin-right: 0px;
  }
  .header .container > .row > div:last-of-type {
    justify-content: center;
    text-align: center;
  }
  .header .menubtn {
    display: block;
  }
  .header ul {
    display: none;
  }
  .header .btnheader {
    display: none;
    width: 100%;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .header .linklogo img {
    height: 50px;
  }
  .header ul li a {
    margin-right: 0px;
  }
  .header .container > .row > div {
    padding: 0px;
  }
  .header ul li a {
    margin-left: 5px;
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .header ul li a {
    margin-right: 10px;
  }
}
/* End header */

/* Start intro */
.intro {
  background: url("../img/intro-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: 700px;
  position: relative;
}
.intro .container {
  padding: 50px 0px;
  height: 100%;
}
.intro .maincont {
  display: flex;
  align-items: center;
  height: 100%;
}
.intro h1 {
  color: var(--yellow);
  font-size: 50px;
  font-weight: bold;
}
.intro p {
  width: 390px;
  color: var(--white);
  font-size: 25px;
  margin-bottom: 30px;
}
.intro .upmainbtn {
}
@media (max-width: 576px) {
  .intro {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100% !important;
    height: 350px;
  }
  .intro h1 {
    font-size: 24px;
  }
  .intro p {
    font-size: 14px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .intro {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100% !important;
    height: 400px;
  }
  .intro p {
    font-size: 16px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .intro {
    height: 400px;
  }
  .intro h1 {
    font-size: 24px;
  }
  .intro p {
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End intro */

/* Start about */
.about {
}
.about .container {
  padding: 50px 0px;
}
.about .row > div {
}
.about h4 {
  margin-bottom: 20px;
  font-size: 32px;
}
.about p {
  font-size: 18px;
}
.about img {
  border-radius: var(--bordrad10);
  width: 100%;
}
.about ul {
}
.about li {
  color: var(--black);
  font-size: 15px;
  text-align: left;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.about li span {
  margin-right: 7px;
  color: var(--yellow);
  margin-left: -25px;
}
@media (max-width: 576px) {
  .about .row > div {
    margin-bottom: 30px;
  }
  .about p {
    font-size: 14px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .about .row > div {
    margin-bottom: 30px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .about p {
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End about */

/* Start  */
.vision {
}
.vision .container {
  padding: 50px 0px;
}
.vision .container > .row > div {
}
.vision .container > .row > div:nth-of-type(2) {
  padding-top: 40px;
}
.vision .container > .row > div .row > div:nth-of-type(2) img {
  margin-top: -40px;
}
.vision h4 {
  position: relative;
  width: fit-content;
  margin-bottom: 20px;
}
.vision h4 span {
  color: var(--yellow);
  position: absolute;
  right: -25px;
  top: 12px;
}
.vision p {
  font-size: 18px;
}
.vision img {
  border-radius: var(--bordrad10);
  width: 90%;
  display: block;
  margin: auto;
}
@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
  .vision p {
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End vision */

/* Start services */
.services {
  background: url("../img/services-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: 700px;
  position: relative;
}
.services .container {
  padding: 50px 0px;
}
.services .upcont {
}
.services h3 {
  text-align: center;
  color: var(--red);
  margin-bottom: 20px;
}
.services .mainlist {
  width: 50%;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 30px;
}
.services .mainlist li {
  display: inline-block;
  color: var(--gray);
  padding: 10px 30px;
  border-radius: 30px;
  border: 1px solid var(--gray);
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.25s ease-in-out;
}
.services .mainlist li.selected {
  background-color: var(--gray);
  color: var(--white);
}
.services .maincont > div:not(:first-of-type) {
  display: none;
}
.services .servbox {
}
.services .slidebox {
  position: relative;
}
.services .slidebox > img {
  width: 100%;
  border-radius: 5px;
}
.services .uptitling {
  position: absolute;
  left: 20px;
  width: calc(100% - 40px);
  top: 20px;
  height: calc(100% - 40px);
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.services .uptitling span {
}
.services .uptitling span img {
  width: 30px;
  margin: auto;
  margin-bottom: 10px;
}
.services .uptitling h5 {
  color: var(--white);
}
.services .slidebox:hover .uptitling {
  top: 100%;
}
.services .updata {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  top: -100%;
  /* top: 10px; */
  height: calc(100% - 20px);
  /* background-color: lch(76 75.04 79.75 / 1); */
  background-color: var(--gray);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  padding: 0px 10px;
  transition: all 0.5s ease-in-out;
}
.services .slidebox:hover .updata {
  top: 10px;
}
.services .updata > span {
  background-color: var(--yellow);
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.services .updata > span img {
  width: 25px;
  margin: auto;
  text-shadow: 1px 1px 1px #5c5c5c;
}
.services .updata h5 {
  color: var(--white);
  text-align: left;
  text-shadow: 1px 1px 1px #5c5c5c;
}
.services .updata ul {
}
.services .updata li {
  color: var(--white);
  font-size: 15px;
  text-align: left;
  padding-left: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-shadow: 1px 1px 1px #5c5c5c;
}
.services .updata li:not(:last-of-type) {
  border-bottom: 1px solid var(--gray);
}
.services .updata li span {
  /* margin-right: 7px; */
  color: var(--yellow);
  margin-left: -20px;
}
.services .owl-nav {
  display: none;
}
@media (max-width: 576px) {
  .services .mainlist {
    width: 100%;
  }
  .services .mainlist li {
    padding: 10px;
    font-size: 14px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .services .mainlist {
    width: 100%;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .services .mainlist {
    width: 80%;
  }
  .services {
    height: 730px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .services .mainlist {
    width: 70%;
  }
}
/* End services */

/* Start partners */
.partners {
  position: relative;
  padding: 50px 20px;
}
.partners {
}
.partners .owl-carousel {
  /* direction: ltr; */
}
.partners .slidebox {
  text-align: center;
  padding: 10px 0px;
}
.partners .slidebox img {
  width: 200px;
  margin: auto;
}
.partners .owl-nav,
.partners .owl-dots {
  display: none;
}

@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End partners */

/* Start supporting */
.supporting {
  position: relative;
  padding: 50px 20px;
}
.supporting h3 {
  text-align: center;
  margin-bottom: 30px;
}
.supporting .owl-carousel {
  /* direction: ltr; */
}
.supporting .upcarbox {
}
.supporting .slidebox {
  text-align: center;
  padding: 10px 0px;
}
.supporting .slidebox img {
  width: 200px;
  margin: auto;
}
.supporting .owl-nav,
.supporting .owl-dots {
  display: none;
}

@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End supporting */

/* Start footer */
footer {
  background-color: #4e4c4b;
}
footer .container {
}
footer .row {
  padding: 20px 0px;
}
footer .row > div {
  display: flex;
  align-items: center;
}
footer .row > div:nth-of-type(1) {
  text-align: start;
}
footer .row > div:nth-of-type(2) {
  justify-content: center;
}
footer .row > div:nth-of-type(3) {
  justify-content: end;
}
footer {
}
footer .upsocial {
}
footer .upsocial a {
  color: var(--black-color);
}
footer .upsocial span {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: var(--yellow);
  color: var(--blue);
  border-radius: 50%;
  margin: 0px 5px;
}
footer .footlogo {
}
footer .footvimg {
  width: 300px;
}
footer p {
  color: var(--white);
  text-align: center;
  margin-bottom: 0px;
  padding: 20px 0px;
  font-size: 16px;
  border-top: 1px solid #777;
}
@media (max-width: 576px) {
  footer .row > div {
    text-align: center !important;
    justify-content: center !important;
    margin-bottom: 20px;
  }
  footer .footvimg {
    width: 250px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  footer .row > div {
    margin-bottom: 20px;
  }
  footer .footvimg {
    width: 250px;
  }
  footer .row > div:last-of-type {
    justify-content: center !important;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  footer .upsocial span {
    margin: 0px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End footer */

/* Start inner-intro */
.inner-intro {
  background: url("../img/constructions-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: 500px;
  position: relative;
}
.healthcareintro {
  background: url("../img/healthcare-bg.png");
}
.inner-intro .container {
  padding: 50px 0px;
  height: 100%;
}
.inner-intro .maincont {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.inner-intro h1 {
  color: var(--yellow);
  font-size: 50px;
  font-weight: bold;
}
.inner-intro p {
  color: var(--white);
  font-size: 25px;
  margin-bottom: 30px;
}
.inner-intro .upmainbtn {
}
@media (max-width: 576px) {
  .inner-intro {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100% !important;
    height: 400px;
  }
  .inner-intro h1 {
    font-size: 24px;
  }
  .inner-intro p {
    font-size: 20px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .inner-intro {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100% !important;
    height: 450px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .inner-intro {
    height: 400px;
  }
  .inner-intro h1 {
    font-size: 24px;
  }
  .inner-intro p {
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End inner-intro */

/* Start choose */
.choose {
  background: url("../img/choose-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  background-attachment: fixed;
  width: 100% !important;
  height: auto;
  position: relative;
}
.choose .container {
  padding: 50px 0px;
  text-align: center;
}
.choose .row > div:not(:last-of-type) {
  border-right: 1px solid;
}
.choose h3 {
  margin-bottom: 30px;
}
.choose .choobox {
  padding: 0px 20px;
}
.choose .choobox span {
  display: inline-block;
  margin-bottom: 20px;
}
.choose .choobox span img {
}
.choose .choobox h5 {
  font-size: 28px;
}
.choose .choobox p {
}
@media (max-width: 576px) {
  .choose .row > div:not(:last-of-type) {
    border: none !important;
  }
  .choose .row > div {
    margin-bottom: 20px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .choose .row > div:not(:last-of-type) {
    border: none !important;
  }
  .choose .row > div {
    margin: auto;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .choose .choobox {
    padding: 0;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End choose */

/* Start conservices */
.conservices {
}
.conservices .container {
  padding: 50px 0px;
}
.conservices .row > div {
  margin-bottom: 15px;
}
.conservices .conservbox {
  box-shadow: 1px 1px 1px #ddd, -1px -1px 1px #ddd;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  transition: var(--main-transition);
}
.conservices .conservbox:hover {
  background-color: #ededed;
}
.conservices .conservbox > span {
  background-color: var(--yellow);
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.conservices .conservbox > span img {
  width: 23px;
  margin: auto;
}
.conservices .conservbox h5 {
  color: var(--black);
  text-align: left;
}
.conservices .conservbox ul {
}
.conservices .conservbox li {
  color: var(--black);
  font-size: 15px;
  text-align: left;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.conservices .conservbox li:not(:last-of-type) {
  /* border-bottom: 1px solid var(--gray); */
}
.conservices .conservbox li span {
  margin-right: 7px;
  color: var(--yellow);
  margin-left: -25px;
}
@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End conservices */

/* Start contact */
.contact {
}
.contact .container {
  padding: 50px 0px;
}
.contact .row {
}
.contact .row > div {
}
.contact .contactdata {
}
.contact h4 {
  font-size: 32px;
}
.contact p {
  margin-bottom: 20px;
}
.contact ul {
}
.contact ul li {
  color: var(--black);
  font-size: 15px;
  text-align: left;
  padding-left: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.contact li span {
  margin-right: 7px;
  color: var(--black);
  background-color: var(--yellow);
  margin-left: -35px;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}
.contact .upform {
}
.contact form {
}
.contact form input[type="text"],
.contact form input[type="tel"],
.contact form input[type="email"],
.contact form textarea {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 6px 10px;
  color: var(--black);
}
.contact form input[type="submit"] {
  text-align: center;
  margin: auto;
  display: block;
  border: none;
  padding: 7px 50px;
}
@media (max-width: 576px) {
  .contact .contactdata {
    margin-bottom: 30px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .contact .contactdata {
    margin-bottom: 30px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End contact */

/* Start thanks */
.thanks {
  height: 100vh;
  background-color: var(--section-background);
}
.thanks .container {
  padding: 100px 0px;
  text-align: center;
}
.thanks h2 {
  color: var(--yellow);
}
.thanks h4 {
  margin-bottom: 30px;
}
.thanks a {
  background-color: var(--yellow);
  color: var(--black);
  padding: 7px 20px;
  display: inline-block;
  border-radius: 5px;
  transition: all 0.35s ease-in-out;
}
.thanks a:hover {
  background-color: var(--black);
  color: var(--white);
}
/* End thanks */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* starting button-top */
#button-top {
  background-color: var(--yellow);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  cursor: pointer;
  border: 1px solid #000;
  color: var(--black);
  opacity: 0.8;
}

#button-top:hover i {
  opacity: 0.5;
}

/*  End button-top */

/*@media (max-width: 576px)
@media (min-width: 577px) and (max-width: 769px)
@media (min-width: 770px) and (max-width: 992px)
@media (min-width: 993px) and (max-width: 1199px)*/
