@import "colors.css";
@import url("https://fonts.googleapis.com/css?family=Play&display=swap");
@import url("https://fonts.googleapis.com/css?family=Almarai&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Galada&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "play";
  box-sizing: border-box;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  transition: background 0.8s, color 0.8s;
  font-family: "Amiri", "play", "Roboto", "Galada", sans-serif;
}

/* ------------------------ section-1 ---------------------------------------------------- */
.section-1 {
  background-color: var(--background-color9);
  margin: 0px 0 30px 0;
  height: 580px;
  opacity: 0.7;
}

.section-1 .container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}

.title-container {
  display: block;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.title-container h1 {
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 7px;
  word-spacing: 5px;

  margin-bottom: 40px;
  overflow: hidden;
}
/* ------------------------ section-2 -------------------------------------- */
.section-2 {
  text-align: center;
  margin: 0px 0 30px 0;
}

.section-2 .container {
  display: flex;
}

#OmanZoomMap {
  background: var(--background-color);
  padding: 10px 0px 0px 0px;
}

.containerMap {
  border: 1px solid var(--border-color);
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.containerMap h2 {
  color: var(--text-color2);
}

.containerMap p {
  margin: 10px;
  font-size: 10px;
}

#tooltipDetail {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 30px 5px 0px 40px;
  text-align: justify;
}

.MapDescription p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-color2);
}

.MapDescription span {
  display: block;
  margin-bottom: 20px;
}

#tooltipDetail i {
  color: var(--text-color2);
}

/* ------------------------- end -------------------------- */
@media only screen and (max-width: 767px) {
  /* ------------------------ section-1 ---------------------------------------------------- */
  .section-1 {
    margin: 0px 0 60px 0;
    height: 500px;
  }
  .title-container h1 {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    word-spacing: 3px;
    margin-top: 80px;
    margin-bottom: 40px;
    overflow: hidden;
  }
  /* ------------------------ section-2 ------------------------------------ */
  .section-2 {
    text-align: center;
    margin: 0px 0 30px 0;
  }
  .section-2 .container {
    display: block;
  }
  .containerMap {
    width: 290px;
    padding: 15px;
  }
  .containerMap p {
    line-height: normal;
    margin: 0;
  }
  .containerMap h2 {
    font-size: 14px;
    margin: 0;
  }

  .MapDescription p {
    font-size: 16px;
  }

  .MapDescription span {
    font-size: 14px;
    margin-bottom: 20px;
  }
  #tooltipDetail {
    width: 100%;
    padding-right: 20px;
  }

  #tooltipDetail strong {
    font-size: 16px !important;
    line-height: 2 !important;
  }

  #tooltipDetail {
    font-size: 12px;
  }
}
