@import url(general.css);

* {
  box-sizing: border-box;
}


html {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
  position: relative;
  height: 100%;
}

body {
  color: white;
  margin: 0;
}

.overlay1 {
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.hero-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-header h1,
.hero-header h2,
.parent {
  width: 100%;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: var(--main-background-color);
  padding: 1rem;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 100px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  justify-content: center;
}

img {
  width: 170px;
  margin: 50px 0;
  z-index: 1;
  margin-bottom: 0;
}

h1 {
  font-size: 60px;
  font-weight: lighter;
  text-align: center;
  margin: 0;
  margin-top: 10px;
  color: white;
}

span {
  display: inline-block;
  text-align: center;
  border-left: 1px solid white;
  height: 65px;
  margin: 0 auto;
}

.parent a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: xx-large;
  font-weight: bolder;
  z-index: 1;
  color: transparent;
  border-radius: 100px;
  transition: all 0.2s;

}

div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.eg,
.uae,
.ksa,
.qatar {
  width: 200px;
  margin: 10px;
  padding: 10px;
  height: 200px;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s;
}

.eg:hover,
.uae:hover,
.ksa:hover,
.qatar:hover {
  transform: translateY(-10px);
}

.eg a:hover,
.uae a:hover,
.ksa a:hover,
.qatar a:hover {
  background-color: #d75fa3;
  color: rgb(255, 255, 255);
}


.eg {
  background-image: url(../images/eg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.uae {
  background-image: url(../images/uae.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.ksa {
  background-image: url(../images/ksa.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.qatar {
  background-image: url(../images/qa.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.add img {
  width: 1200px;
  border-radius: 20px;
}

@media (max-width:694px) {
  .parent {
    width: 100%;
  }

  .parent div {
    width: 40%;
  }

  h1 {
    font-size: 40px;
  }

  span {
    height: 50px;
  }

  img {
    width: 130px;
    margin-top: 70px;
    margin-bottom: 10px;
  }

  .eg,
  .uae,
  .ksa,
  .qatar {
    height: 150px;
  }

  .parent a {
    width: 100%;
  }
}