@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;700&display=swap");
body {
  font-family: "Cairo", sans-serif;
}
body a {
  color: #f4e4b3;
  text-decoration: none;
}
body a:hover {
  color: #fc1419;
}

.logo {
  width: 200px;
  margin: 20px auto 40px;
  display: block;
  position: relative;
  z-index: 2;
}

.studio {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  background-image: url("images/studio_pano-resized.jpg");
  position: fixed;
  top: 0;
  left: 0;
  background-repeat: none;
  background-size: cover;
  background-position: center center;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  border-radius: 25px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  padding: 20px;
  flex-direction: row-reverse;
  background: rgba(0, 0, 0, 0.7);
}
.container .content {
  flex: 1;
  padding: 0 20px;
}
.container .content.rtl {
  text-align: right;
  direction: rtl;
}
.container .content h1 {
  color: #fff;
}
.container .content p {
  color: #fff;
  font-size: 20px;
  line-height: 1.5em;
}
.container .content .whatsapp {
  height: 20px;
  position: relative;
  margin-bottom: -2px;
}
.container .content .telfix {
  direction: ltr !important;
  unicode-bidi: isolate;
}

@media only screen and (max-width: 600px) {
  .studio {
    background-position: 1050px center;
  }

  .container {
    margin-top: 50px;
    flex-direction: column;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
