html {
  zoom: 65%;
  direction: rtl;
}

body {
  font-family: "kufi";
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Kufi";
  src: url(../fonts/DroidArabicKufi.woff2) format("woff2"), url(../fonts/DroidArabicKufi.woff2) format("woff");
  font-weight: normal;
  font-style: normal;
}
section {
  padding: 150px 0px 250px 0px;
}
section p {
  font-size: 18px;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: auto;
  max-width: 1920px;
}

header {
  background-color: #1F294D;
  height: 270px;
  position: relative;
  z-index: 999;
}
header .navbar {
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  grid-column: 1/17;
}
@media (max-width: 965px) {
  header .navbar {
    align-items: center;
    gap: 0px;
  }
}
header .navbar .logo {
  flex-grow: 0;
  padding: 30px;
}
header .navbar .logo img {
  width: 90%;
}
header .navbar .toggle-button {
  display: none;
}
@media (max-width: 965px) {
  header .navbar .toggle-button {
    display: block;
  }
  header .navbar .toggle-button img {
    width: 60px;
    margin-top: 30px;
  }
}
header .navbar .menu {
  background-color: #1F294D;
}
@media (max-width: 965px) {
  header .navbar .menu {
    display: none;
  }
  header .navbar .menu.active {
    display: block;
    width: 100%;
    height: 500px;
    position: absolute;
    top: 200px;
  }
}
header .navbar .menu ul {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  padding-left: 0px;
}
@media (max-width: 965px) {
  header .navbar .menu ul {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 30px;
    width: 100%;
  }
}
header .navbar .menu ul li {
  font-size: large;
  font-weight: 600;
  display: block;
  padding: 40px;
}
header .navbar .menu ul li a {
  color: white;
}
header .navbar .menu ul li:hover {
  background-color: #BABECF;
}
@media (max-width: 965px) {
  header .navbar .menu ul li {
    width: 100%;
    text-align: center;
  }
}

.hero {
  height: 800px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero .intro {
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.hero .intro h1 {
  color: white;
  font-size: 45px;
}
.hero .intro h2 {
  color: #BABECF;
  font-size: 30px;
  margin-top: -20px;
}
@media (max-width: 965px) {
  .hero .intro {
    flex-direction: column;
    row-gap: 60px;
  }
  .hero .intro h1 {
    color: white;
    font-size: 30px;
    margin: 0;
  }
  .hero .intro h2 {
    color: #BABECF;
    font-size: 20px;
    margin: 0;
  }
}
.hero .intro div, .hero .intro img {
  z-index: 2;
  position: relative;
  text-align: center;
}
.hero .intro img {
  width: 35%;
}
.hero #myVideo {
  right: 0;
  position: absolute;
  z-index: 0;
  min-width: 100%;
  filter: none;
}
@media (max-width: 965px) {
  .hero #myVideo {
    height: 1230px;
  }
}

.form1 {
  display: flex;
  flex-direction: column;
  width: 360px;
  grid-column: 12/16;
}
@media (max-width: 965px) {
  .form1 {
    width: 80%;
  }
}
.form1 div {
  padding: 20px 20px 20px 20px;
  text-align: center;
  font-size: 20px;
}
.form1 div:first-child {
  background-color: #484848;
  color: white;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
}
.form1 div:nth-child(2) {
  background-color: #BABECF;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  border-style: solid;
  border-width: 2px;
}
.form1 form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.form1 form .form-input {
  width: 260px;
  height: 40px;
  border-radius: 10px;
  border-style: solid;
  text-align: right;
  font-size: 18px;
  padding-left: 12px;
}
.form1 form input[type=Text] {
  text-align: right;
  font-family: "kufi";
}
.form1 form input[type=Password] {
  text-align: right;
  font-family: kufi;
}
.form1 form .form-btn {
  background-color: #1F294D;
  color: white;
  padding: 10px;
  width: 180px;
  border-radius: 10px;
  font-size: 18px;
  font-family: "kufi";
}
.form1 form .form-btn:hover {
  color: white;
  background-color: #798099;
}

.welcome {
  padding: 350px 0px 350px 0px;
  z-index: 1;
  position: relative;
  background-image: url("/images/tri-eptaroka.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}
.welcome .container .welcomeinside {
  padding: 40px;
  grid-column: 1/17;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-around;
}
.welcome .container .welcomeinside div {
  text-align: center;
}
.welcome .container .welcomeinside div {
  width: 100%;
}
@media (max-width: 965px) {
  .welcome .container .welcomeinside {
    flex-direction: column;
    height: 1000px;
  }
}
.welcome .container .form-btn {
  background-color: #1F294D;
  color: white;
  padding: 10px;
  width: 180px;
  border-radius: 10px;
  font-size: 18px;
}
.welcome .container .form-btn:hover {
  color: white;
  background-color: #798099;
}

.services {
  position: relative;
  background-color: #798099;
  height: 2000px;
}
@media (max-width: 965px) {
  .services {
    height: 100%;
  }
}
.services .container div:first-child {
  grid-column: 1/17;
  text-align: center;
}
.services .container div:first-child h1 {
  color: white;
  font-size: 36px;
}
@media (max-width: 965px) {
  .services .container div:first-child h1 span {
    display: block;
    margin-top: 40px;
  }
}
.services .container div:first-child h2 {
  color: #9ef7c2;
  font-size: 26px;
  font-weight: 500;
  margin-top: -20px;
}
.services .ourservices {
  grid-column: 1/17;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 965px) {
  .services .ourservices {
    flex-direction: column;
  }
}
.services .ourservices .one-service {
  width: 470px;
}
@media (max-width: 965px) {
  .services .ourservices .one-service {
    width: 350px;
  }
}
.services .ourservices .one-service h1 {
  color: white;
  text-align: center;
}
.services .ourservices .one-service h1 {
  color: white;
  background-color: #1F294D;
  text-align: center;
  padding: 30px;
  margin-bottom: 0px;
  margin-top: 0px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  font-size: 26px !important;
}
.services .ourservices .one-service p {
  background-color: white;
  padding: 30px;
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  text-align: center;
  height: 250px;
}
.services .ourservices .one-service img {
  margin-bottom: -5px;
  border-width: 0.5px;
  border-style: solid;
  border-color: white;
  width: 466px;
}
@media (max-width: 965px) {
  .services .ourservices .one-service img {
    width: 350px;
  }
}
.services .ourservices .one-service .form-btn {
  position: absolute;
  bottom: 64px;
  right: 25%;
  background-color: #1F294D;
  color: white;
  padding: 10px;
  width: 180px;
  border-radius: 10px;
  font-size: 18px;
}
@media (max-width: 965px) {
  .services .ourservices .one-service .form-btn {
    margin: auto;
  }
}
.services .ourservices .one-service .form-btn:hover {
  color: white;
  background-color: #798099;
}

.goods {
  background-image: url("/images/bbb.jpg");
  background-position: center;
  background-size: cover;
  padding: 0px 0px 260px 0px;
  height: 100%;
}
.goods .exp {
  margin-top: -272px;
  z-index: 1;
  grid-column: 6/17;
}
@media (max-width: 965px) {
  .goods .exp {
    grid-column: 1/17;
    margin-top: 10px;
  }
  .goods .exp img {
    width: 100%;
    display: none;
  }
}
.goods .container div:nth-child(2), .goods .container div:nth-child(3) {
  grid-column: 1/17;
  text-align: center;
}

.map {
  background-image: url("/images/map.JPG");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  height: 1000px;
  background-color: #484848;
  padding: 0px;
}

footer {
  padding: 60px 0px 100px 0px;
  background-color: #1F294D;
}
footer .container .footerinfo {
  grid-column: 1/17;
  display: flex;
  flex-direction: row;
  color: white;
  justify-content: space-around;
}
@media (max-width: 965px) {
  footer .container .footerinfo {
    flex-direction: column;
    row-gap: 40px;
  }
}
footer .container .footerinfo div {
  flex: 1 1 auto;
}
footer .container .footerinfo ul {
  list-style: none;
  line-height: 60px;
  font-size: 20px;
}
@media (max-width: 965px) {
  footer .container .footerinfo ul {
    font-size: 14px;
  }
}
footer .container .footerinfo ul li {
  position: relative;
}
footer .container .footerinfo ul li span {
  position: absolute;
  left: -40px;
  top: 6px;
}
footer .copyrights {
  grid-column: 1/17;
  color: white;
  text-align: center;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */