@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* Global Rules */
:root {
  --main-color: #000;
  --white-color: #fff;
  --light-color: #2c3a47;

  --main-transition: all 0.4s;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  direction: rtl !important;
  line-height: 1.4;
  color: var(--main-color);
  font-family: Arial, sans-serif !important;
  height: 5000px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif !important;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input {
  outline: none;
}

.hotline-btn {
  background: #001797; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 7px 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
}

/* container */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */

/* Start topbar */
.topbar {
  background: #001797; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  display: flex;
  justify-content: center;
  align-items: center;
}
.topbar p {
  color: var(--white-color);
  padding: 10px;
  font-family: "Cairo", sans-serif !important;
}
/* End topbar */

/* Start Navbar */
nav {
  background-color: var(--main-color);
  min-height: 72px;
  overflow: hidden;
}
nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}
nav .inner .open-menu {
  color: var(--white-color);
  display: none;
}
nav .inner .open-menu span {
  font-size: 35px !important;
}
nav .inner .navbar-links {
  display: flex;
  align-items: center;
}
nav .inner .navbar-links a {
  color: var(--white-color);
  padding: 30px 15px;
  width: 100%;
  transition: var(--main-transition);
  font-family: "Cairo", sans-serif !important;
}
nav .inner .navbar-links a:hover {
  background-color: var(--white-color);
  color: var(--main-color);
}
nav .navbar-links-mobile {
  display: none;
}

@media (max-width: 992px) {
  nav .navbar-links {
    display: none !important;
  }
  nav .hotline-btn {
    display: none !important;
  }
  nav .open-menu {
    display: block !important;
  }
  nav .navbar-links-mobile {
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--main-color);
  }
  nav .navbar-links-mobile a {
    display: block;
    color: var(--white-color);
    padding: 15px 20px;
    font-family: "Cairo", sans-serif !important;
  }
  nav .navbar-links-mobile a:hover {
    background-color: var(--white-color);
    color: var(--main-color);
  }
}
/* End Navbar */

/* Start Showcase */
.showcase {
  background-image: url("../img/showcase-img.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  display: flex;
  justify-content: center;
}
.showcase .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.showcase h1 {
  font-size: 70px;
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
  padding-bottom: 20px;
}
.showcase h2 {
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  color: var(--white-color);
  padding-bottom: 20px;
}
.showcase p {
  text-align: center;
  color: var(--white-color);
  font-size: 22px;
}
.showcase .showcase-btn {
  display: block;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .showcase h1 {
    font-size: 50px;
  }
  .showcase h2 {
    font-size: 22px;
  }
  .showcase p {
    font-size: 20px;
    text-align: justify;
  }
}
/* End Showcase */

/* Start Features */
.features {
  margin-top: 100px;
}
.features .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
.features .grid-wrapper .box {
  padding: 10px;
  text-align: center;
}
.features .grid-wrapper .box span {
  background: #001797; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: var(--white-color);
  font-size: 70px;
  border-radius: 100%;
  padding: 20px;
  margin: 20px 0;
}
.features .grid-wrapper .box h2 {
  font-weight: 400;
  padding-bottom: 10px;
}
.features .grid-wrapper .box p {
  color: var(--light-color);
  font-size: 18px;
}
@media (max-width: 992px) {
  .features .grid-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
/* End Features */

/* Start About */
.about {
  margin-top: 100px;
}
.about .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
.about h2 {
  font-size: 35px;
  padding-bottom: 20px;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.about h3 {
  font-size: 22px;
  padding-bottom: 10px;
  font-weight: 400;
}
.about p {
  font-size: 18px;
  color: var(--light-color);
  padding-bottom: 20px;
}
.about img {
  width: 100% !important;
  display: block;
  border-radius: 10px;
  box-shadow: 0 1px 10px #ddd;
}
.about .about-btn {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .about .grid-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about .col {
    order: 2;
  }
  .about .col-img {
    order: 1;
  }
  .about p {
    text-align: justify;
  }
}
/* End About */

/* Start Section Img */
.section-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-img img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
/* End Section Img */

/* Start Section 1 */
.section-1 {
  margin-top: 100px;
  background-color: var(--main-color);
  padding: 100px 0;
}
.section-1 h2 {
  font-size: 50px;
  padding-bottom: 20px;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-align: center;
}
.section-1 p {
  font-size: 20px;
  color: var(--white-color);
  padding: 10px 0;
}
@media (max-width: 992px) {
  .section-1 h2 {
    font-size: 40px;
  }
  .section-1 p {
    text-align: justify;
  }
}
/* End Section 1 */

/* Start Section 2 */
.section-2 {
  margin-top: 100px;
  padding: 100px 0;
}
.section-2 .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.section-2 h2 {
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.section-2 p {
  font-size: 20px;
  color: var(--main-color);
  padding: 10px 0;
}
@media (max-width: 992px) {
  .section-2 .grid-wrapper {
    grid-template-columns: 1fr;
  }
  .section-2 h2 {
    font-size: 40px;
  }
  .section-2 p {
    text-align: justify;
  }
}
/* End Section 2 */

/* Start Section 3 */
.section-3 {
  margin-top: 100px;
  padding: 100px 0;
}
.section-3 .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}
.section-3 h2 {
  text-align: center;
  font-size: 50px;
  padding-bottom: 20px;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-3 span {
  font-size: 80px;
  text-align: center;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-3 .col {
  border: solid 1px var(--main-color);
  border-radius: 10px;
}
.section-3 h3 {
  font-size: 20px;
  font-weight: 400;
  padding: 10px;
  background: #001797; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.section-3 p {
  font-size: 18px;
  color: var(--light-color);
  padding: 10px;
  text-align: justify;
}
@media (max-width: 992px) {
  .section-3 .grid-wrapper {
    grid-template-columns: 1fr;
  }
}
/* End Section 3 */

/* Start Section 4 */
.section-4 {
  margin-top: 100px;
  padding: 100px 0;
  background-color: var(--main-color);
}

.section-4 span {
  font-size: 80px;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.section-4 h2 {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;

  color: var(--white-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.section-4 p {
  font-size: 20px;
  color: var(--white-color);
  margin-top: 20px;
}
/* End Section 4 */

/* Start contact */
.contact {
  background-color: #fff;

  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.contact img {
  width: 100%;
  border-radius: 10px;
}
.contact h2 {
  font-size: 40px;
  font-weight: 500;
  padding: 10px;
  background: linear-gradient(to left, #ee2b30 5%, #001797);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;

  color: var(--white-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.contact p {
  margin-top: 20px;
  font-size: 18px;
}
.contact .box {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 1px 10px #eee;
}
.contact .special-order-btn {
  background: #001797; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ee2b30,
    #001797
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 100px;
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cairo", sans-serif !important;
}
.contact .special-order-btn .material-icons {
  font-size: 25px;
}
.contact .phone-numbers {
  display: flex;
  flex-direction: column;
  border: var(--light-color) solid 1px;
  margin-top: 20px;
  border-radius: 10px;
}
.contact .phone-numbers h3 {
  font-size: 20px;
  text-align: center;
  padding: 10px 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .phone-numbers h3 .material-icons-outlined {
  font-size: 40px !important;
}
.contact .phone-numbers li {
  width: 100%;
  padding: 10px 20px;
  font-size: 20px;
  border-bottom: solid 1px var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .phone-numbers .break {
  color: #000;
  padding: 10px;
  font-size: 28px;
}
@media (max-width: 992px) {
  .contact .row {
    grid-template-columns: 1fr;
  }
  .contact .box {
    margin-top: 50px;
  }
  .contact .phone-numbers li {
    font-size: 18px;
  }
}
/* End contact */

/* Start Footer */
footer {
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 20px;
  text-align: center;
  font-family: "Cairo", sans-serif !important;
}
/* End Footer */

/* Sticky Hotline */
.sticky-hotline {
  background-color: rgb(3, 143, 3);
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  padding: 20px;
  font-family: "Cairo", sans-serif !important;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .sticky-hotline {
    font-size: 16px;
    display: flex;
  }
}
