/* https://www.youtube.com/watch?v=d34GsFz-HkY / http://pixelcog.github.io/parallax.js/ */
/* licence free images: https://crello.com/similar-photos/345264946/?page=3 https://unsplash.com/s/photos/massage, https://pixabay.com/images/search/massage/, https://www.pexels.com/search/massage/ */
/* #00b4e6 blue, #f3781e orange, #92c039 green*/
/* libre-baskerville-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  src: url("./../fonts/libre-baskerville-v14-latin-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  src: url("./../fonts/libre-baskerville-v14-latin-italic.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  src: url("./../fonts/libre-baskerville-v14-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* allura-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Allura";
  font-style: normal;
  font-weight: 400;
  src: url("./../fonts/allura-v21-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
  flex-wrap: wrap;
}

.test {
  display: none;
}

/*blobs pulse*/
.blob {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  animation: pulse-orange 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@-webkit-keyframes pulse-orange {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 #09ff00;
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 #09ff00;
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}

.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 100000000000000000;
  align-items: center;
  justify-content: center;
}

.social {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social li {
  list-style: none;
}

p {
  font-size: 18px;
  color: #333;
}

h1 {
  color: #f3781e;
  font-weight: 400;
  font-family: "Libre Baskerville", sans-serif;
}

html {
  scrollbar-color: #667284 #ffffff;
}

/**/
header {
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px; /* header nav height */
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navigation {
  position: relative;
  display: flex;
}

header .navigation li {
  list-style: none;
  margin-left: 15px;
  font-size: 20px;
  opacity: 0;
}

header .navigation li a {
  text-decoration: none;
}

header .navigation .fa,
.fab {
  font-size: 30px;
}

header .navigation .fab {
  color: #58db00;
}

header .navigation li a:hover {
  text-decoration: none;
  color: #f3781e;
}

header.sticky {
  background-color: rgb(247, 247, 247);
  color: #f3781e;
  padding: 20px 50px; /* header after scrollnav height */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

header.sticky .navigation li {
  color: #444; /* header after scrollnav color: */
  opacity: 1;
}

header.sticky .navigation li a {
  color: #444; /* header after scrollnav color: */
  transition: 0.5s;
}

header.sticky .navigation li a:hover {
  color: #f3781e;
}

header.sticky .navigation img {
  width: 30px;
  height: auto;
}

header .logo img {
  width: 200px;
  height: auto;
  transition: 0.5s;
  opacity: 0;
}

header.sticky .logo img {
  opacity: 1;
  width: 150px;
  height: auto;
  transition: 0.5s;
}

/* https://codepen.io/nxworld/pen/OyRrGy */
#section05 {
  position: absolute;
  bottom: 20px;
}

#section05 span {
  position: absolute;
  bottom: 75px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
.parallax {
  position: relative;
  width: 100%;
  height: 75vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  width: 800px;
  height: 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(146, 191, 56, 0.5254901961);
  background-color: rgba(0, 180, 230, 0.7529411765);
  background-color: rgba(243, 119, 30, 0.7607843137);
  background-color: rgba(255, 255, 255, 0.8078431373);
  border-radius: 5px;
  transition: 2s;
  text-align: center;
  flex-direction: column;
}

.title img {
  display: none;
}

.title h1 {
  font-size: 80px;
  font-weight: 800;
  color: #f3781e;
}

.title h2 {
  font-size: 56px;
  font-weight: 400;
  color: #92bf38;
}

.title:hover {
  opacity: 0;
  transition: 1s;
  cursor: pointer;
}

/*_container*/
._container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
}

._content {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

._card {
  position: relative;
  width: 580px;
  height: auto;
  margin: 10px;
}

._card h2 {
  font-family: "Allura", sans-serif;
  font-size: 40px;
}

.frame1 {
  position: absolute;
  right: 40px;
  bottom: 20px;
  width: 580px;
  height: 500px;
  border-bottom: solid 2px #a79e8c;
}

.frame2 {
  position: absolute;
  right: 60px;
  bottom: -20px;
  width: 580px;
  height: 540px;
  border-right: solid 2px #a79e8c;
}

.frame3 {
  position: absolute;
  left: -20px;
  top: 20px;
  width: 580px;
  height: 500px;
  border-top: solid 2px #a79e8c;
}

.frame4 {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 580px;
  height: 540px;
  border-left: solid 2px #a79e8c;
}

/*https://codepen.io/mdfarzan/pen/QWyrbQP*/
#slider {
  width: 500px;
  height: 500px;
}

.slides {
  overflow: hidden;
  animation-name: fade;
  animation-duration: 2s;
  display: none;
}

.slides img {
  width: 500px;
  height: 500px;
}

#dot {
  margin: 0 auto;
  text-align: center;
}

.dot {
  display: inline-block;
  border-radius: 50%;
  background: #d3d3d3;
  padding: 4px;
  margin: 30px 5px;
}

.active-dot {
  background: #ff0000;
}

@media (max-width: 500px) {
  #slider {
    width: 100%;
    height: auto;
  }
  .slides img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
/*slide2 https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_slideshow_auto*/
.mySlides {
  display: none;
}

.mySlides img {
  max-width: 500px;
  height: 500px;
}

.slideshow-container {
  max-width: 500px;
  height: 500px;
  position: relative;
  margin: auto;
}

#dot2 {
  margin: 0 auto;
  text-align: center;
}

.dot2 {
  display: inline-block;
  border-radius: 50%;
  background: #d3d3d3;
  padding: 4px;
  margin: 30px 5px;
}

.dot2-active {
  background-color: #ff0000;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 100%) {
  .text {
    font-size: 11px;
  }
}
.footer_container {
  text-align: center;
}

.footer_container ul {
  list-style: none;
  color: #555;
  line-height: 24px;
}

.footer_container a {
  text-decoration: none;
  color: #555;
}

.footer_container a:hover {
  opacity: 50%;
}

.credit {
  text-align: center;
}

.credit p {
  font-size: 12px;
  color: #555;
  padding: 10px;
}

.credit a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
}

.credit a:hover {
  opacity: 50%;
}

/*modal mail*/
#myModalBtn,
#myModalBtn2 {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 600px;
}

.close {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.contactBtn {
  font-size: 18px;
  cursor: pointer;
}

.contactBtn:hover {
  opacity: 50%;
  cursor: pointer;
}

.contactBtn img {
  margin-right: 5px;
}

.contactBtn2 {
  cursor: pointer;
}

/**/
.footer_mail {
  width: 555px;
  height: auto;
}

.footer_mail_img {
  width: 100%;
  height: auto;
  text-align: center;
}

.footer_mail_img img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.footer_mail p {
  margin-bottom: 20px;
}

.footer_mail a {
  text-decoration: none;
  color: red;
}

.footer_mail .fas {
  text-decoration: none;
  color: red;
  font-size: 24px;
  margin-right: 10px;
}

.text-height {
  width: 100%;
  height: 32px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 14px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #333;
}

.message-height {
  width: 100%;
  height: 96px;
  resize: none;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 14px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #333;
}

.postpage-captcha {
  margin-bottom: 20px;
}

.postpage-code-fill-in {
  width: 200px;
  height: 32px;
  margin-bottom: 10px;
  font-size: 20px;
  padding: 10px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #333;
}

.postpage-btn {
  background-color: red;
  color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  margin: 10px;
  letter-spacing: 1px;
  font-size: 16px;
  border: none;
}

.postpage-btn:hover {
  opacity: 50%;
  cursor: pointer;
}

.reveal-top {
  position: relative;
  transform: translateY(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-top.active-top {
  transform: translateY(0);
  opacity: 1;
}

/**/
.reveal-left {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-left.active-left {
  transform: translateX(0);
  opacity: 1;
}

/* */
.reveal-right {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-right.active-right {
  transform: translateX(0);
  opacity: 1;
}

/**/
.reveal-bottom {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-bottom.active-bottom {
  transform: translateY(0);
  opacity: 1;
}

/******************************************* 750 **********************************/
@media screen and (max-width: 1160px) {
  body {
    display: non;
  }
  /*header*/
  header,
  header.sticky {
    padding: 10px 10px;
  }
  header .navigation {
    display: none;
  }
  header .navigation.active {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgb(219, 191, 178);
    background: radial-gradient(
      circle,
      rgb(219, 191, 178) 31%,
      rgba(145, 131, 128, 0.9079831762) 82%
    );
  }
  header .navigation li {
    opacity: 1;
  }
  header .navigation li a {
    color: #333;
    font-size: 22px;
    line-height: 38px;
  }
  .menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url("./../img/open.png");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header.sticky .menuToggle {
    filter: invert(1);
  }
  .clear:hover .title {
    opacity: 1;
  }
  .parallax {
    display: none;
  }
  .test1,
  .test2,
  .test3,
  .test4 {
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
  .test1 {
    background-image: url("./../img/parallaxBg (0).webp");
  }
  .test2 {
    background-image: url("./../img/parallaxBg (1).webp");
  }
  .test3 {
    background-image: url("./../img/parallaxBg (2).webp");
  }
  .test4 {
    background-image: url("./../img/parallaxBg (3).webp");
  }
  .title {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0;
    padding: 30px;
  }
  .title img {
    display: block;
    width: 90%;
    height: auto;
  }
  .title h2 {
    font-size: 40px;
  }
  .mobile-hide {
    display: none;
  }
  ._container {
    width: 100%;
    height: auto;
    margin: 0 0;
  }
  ._card {
    width: 100%;
    height: auto;
    margin: 0 10px;
  }
  .frame1,
  .frame2,
  .frame3,
  .frame4 {
    display: none;
  }
  .mobile-margin {
    margin-bottom: 20px;
  }
  .footer_container img {
    width: 80%;
    height: auto;
  }
  .modal-content {
    padding: 10px;
    border: 0;
    width: 100%;
    height: auto;
  }
  .footer_mail {
    width: 100%;
    height: auto;
  }
}
/**/
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateX(0%);
  }
} /*# sourceMappingURL=style-arabic.css.map */
