* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-image: url(../images/background/background-mobile.png);
  background-size: 100%;
}

.cover {
  width: 100%;
  height: 250px;
  border-bottom: 3px solid #3dbda4;
}

button {
  color: black !important;
  background-color: #3dbda4 !important;
}

@keyframes slide {
  from {
    transform: translatex(-150%);
  }

  to {
    transform: translatex(0);
  }
}

.profile {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: 125px auto;
  border: 3px solid #3dbda4;
  animation: slide 3s ease;
}

section {
  width: 90%;
  margin-top: 125px;
}

section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-button {
  text-align: center;
  width: 100%;
  direction: rtl;
  font-size: 1.5em;
  background-color: #3dbda4;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  /* font-family: "Heebo-Regular"; */
}

/* @font-face {
  font-family: "Heebo-Black";
  src: url(./Heebo/static/Heebo-Black.ttf);
} */

h1 {
  /* font-family: "Heebo-Black"; */
  text-align: center;
  font-weight: bold !important;
  font-size: 3em;
  text-align: center;
  direction: rtl;
  color: #3dbda4 !important;
  text-shadow: 2.5px 2.5px 2.5px #2d2c2f !important;
}

p {
  text-align: center;
  font-size: 1.5em;
  text-align: center;
  direction: rtl;
}

/* @font-face {
  font-family: "Heebo-Regular";
  src: url(./Heebo/static/Heebo-Regular.ttf);
} */

section h2 {
  /* font-family: "Heebo-Regular"; */
  text-align: center;
  font-size: 1.5em;
  direction: rtl;
}

.social_media {
  width: 97.5%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.social_media > a {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #3dbda4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social_media > a > img {
  width: 50px;
  height: 50px;
}

#saveContact {
  color: white !important;
  width: 80vw;
  max-width: 350px;
  height: 50px;
  border-radius: 15px;
  font-family: "Heebo-Regular";
  font-size: 1.5em;
  border: none;
}

.description {
  width: 90%;
}

.description h2 {
  text-align: center;
  font-size: 1.5em;
  direction: rtl;
}

.reviwes {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25em;
  /* margin: 100px auto; */
}

.caruselReviwes {
  width: 97.5%;
  display: grid;
  grid-template-columns: repeat(13, 65vw);
  grid-template-rows: repeat(1, 1fr);
  overflow: scroll;
  gap: 7.5em;
}

.caruselReviwes > iframe {
  width: 375px;
  height: 100%;
}

iframe {
  width: 100%;
  border-radius: 15px;
}

.QR {
  width: 85%;
}

#credit {
  width: 100%;
  text-decoration: unset;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #3dbda4;
  padding: 0.75em 0.75em 0.75em 0.75em;
}

footer > h2 {
  font-family: "Heebo-Regular";
  direction: rtl;
  color: white;
  margin: 0 15px;
  font-size: 1.25em;
  text-align: center;
}

footer > img {
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 700px) {
  .cover {
    width: 100%;
    height: 550px;
    border-bottom: 3px solid #3dbda4;
  }

  .profile {
    margin: 425px auto;
    border: 3px solid #3dbda4;
  }

  .contact-button {
    width: 22em;
  }

  .caruselReviwes {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(13, 20vw);
    grid-template-rows: repeat(1, 1fr);
    overflow: scroll;
    gap: 3em;
    place-content: unset;
  }

  iframe {
    width: 100%;
  }

  .map > iframe {
    width: 100%;
    height: 100%;
  }

  .QR {
    width: 1000px;
    height: 1000px;
  }

  #credit {
    width: 100%;
    text-decoration: unset;
  }

  footer {
    padding: 0.25em 0.25em 0.25em 0.25em;
    flex-direction: row-reverse;
  }
}
