/* create by: Rayan Alheraki 
    1.general style
    2.nav bar style
    3.Hero section style
    4.puzzle section style
    5.Image Comparison Slider style
    6.video in puzzle style
    7.Voices tabs style
    8.Contact form style
    9.Our Packages style
    10.steps styles
    11.footer style
    last : small screen styles
*/

/* || 1.general style  */
/* import the Font */
@font-face {
  font-family: "NexaLight";
  src: url(../fonts/NexaLight.ttf.woff);
  font-weight: normal;
}
[data-entrance] {
  visibility: hidden;
}

:root {
  --white: #fff;
  --gray: rgb(219, 219, 219);
  --black: #212121;
  --primary: #6bbfd6;
  --secondary: #002950;
  --dark: #001528;
  --lite: #dff6ff;
}

* {
  font-family: "NexaLight" !important;
}
i {
  font-family: "FontAwesome" !important;
}

.center-general {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-text-container {
  padding: 20px;
  text-align: center;
}
.section-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.section-subtitle {
  text-align: center;
}
#main-page {
  background-image: url(../images/home-background-2.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* || 2.nav bar style */
#main_header {
  width: 100%;
  z-index: 1030;
  transition: all 350ms ease-in 0s;
  height: 110px;
}
#main_header .nav-link {
  font-size: 18px;
  color: #fff;
}
.header-scroll {
  background-color: #002950;
  height: 80px !important;
}
.header-scroll .navbar-logo {
  width: 130px;
  height: 60px;
}
.navbar-logo {
  object-fit: contain;
  transition: all 350ms ease-in 0s;
  width: 160px;
  height: 80px;
}

#main_header .navbar-collapse {
  flex-grow: unset;
}

/* || 3.Hero section style  */

.hero {
  height: 85vh;
  position: relative;
  padding: 0;
}
.hero,
.zoominonhover > img {
  width: 100%;
}

.hero-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  padding: 15px 30px;
  z-index: 35;
  width: 100%;
}

.hero-center-content .title-wrap {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.buttons-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.hero-center-content .buttons-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.hero .side-image {
  position: absolute;
  width: 100%;
  bottom: -10rem;
  left: 0;
  z-index: 35;
}

.hero-background-wrap {
  position: relative;
  width: 100%;
  height: 85vh;
}

.hero-overlay {
  background-color: #074371;
  opacity: 0.1;
  z-index: 31;
}
.hero-overlay,
.hero-thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 30;
  position: relative;
}
.jarallax {
  z-index: 0;
}
.background-parallax-overlay,
.jarallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#jarallax-container-0 {
  clip: rect(0 1393px 933px 0);
  clip: rect(0, 1393px, 933px, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.my-4 {
  margin-bottom: 1.5rem !important;
}
.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
/* || 4.puzzle section */
.puzzle {
  width: 100%;
  background-color: #6bbfd6;
  padding: 40px 0;
}

.puzzle-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.puzzle-shapes {
  cursor: pointer;
  max-width: 700px;
}

.puzzle-shapes > a {
  transform: translate(0, 0);

  text-decoration: none;
  color: inherit;
  transition: all 500ms ease-in 0s;
}

.puzzle-shapes:hover > a:nth-child(1) {
  transform: translate(-75px, -75px);
}
.puzzle-shapes:hover > a:nth-child(2) {
  transform: translate(75px, -75px);
}
.puzzle-shapes:hover > a:nth-child(3) {
  transform: translate(-75px, 75px);
}
.puzzle-shapes:hover > a:nth-child(4) {
  transform: translate(75px, 75px);
}
.puzzle-shapes text {
  font-size: 30px;
  fill: var(--secondary);
  font-weight: bold;
}
.puzzle-carousel-container {
  display: none !important;
}

.puzzle-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.puzzle-slide a {
  transform: translate(0, 0);

  text-decoration: none;
  color: inherit;
  transition: all 500ms ease-in 0s;
}
.puzzle-slide > svg {
  max-width: 250px;
}
.puzzle-image-container {
  width: 75%;
  height: 250px;
}
.puzzle-slide-text {
  margin-top: 20px;
  font-size: 25px;
  color: rgb(255, 255, 255);
  position: absolute;
  transform: translate(0, 130px);
}
.puzzle-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.puzzle-2,
.puzzle-3 {
  fill: #fff;
}
.puzzle-1,
.puzzle-4 {
  transition: all 500ms ease-in 0s;
  fill: var(--secondary);
}
.puzzle-shapes:hover .puzzle-1,
.puzzle-shapes:hover .puzzle-4 {
  fill: #fff;
}
.puzzle-1 + text,
.puzzle-4 + text {
  fill: #fff;
}
.puzzle-shapes:hover .puzzle-1 + text,
.puzzle-shapes:hover .puzzle-4 + text {
  fill: var(--secondary);
}

/*
  || 5.Image Comparison Slider styles 
 */

.image-filter {
  padding: 50px 0 70px 0;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-height: 400px;
}
.img-comp-container {
  position: relative;
  width: 600px;
  height: 350px; /*should be the same height as the images*/
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
  vertical-align: middle;
}
.img-comp-container img {
  object-fit: cover;
  width: 600px;
  height: 350px;
  border-radius: 30px;
}
.img-comp-image-2 {
  /* filter: grayscale(100%); */
}
.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrow-left-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 11.5a.5.5 0 0 0 .5.5h11.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 11H1.5a.5.5 0 0 0-.5.5zm14-7a.5.5 0 0 1-.5.5H2.707l3.147 3.146a.5.5 0 1 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H14.5a.5.5 0 0 1 .5.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;

  /* background-color: #2196f3; */
  opacity: 0.8;
  border-radius: 50%;
}

/* || 6.video in puzzle style */

.video-in-container {
  margin-top: 30px;
  position: relative;
}

.video-in-container > video {
  position: absolute;
  left: 0;
  right: 0;
  top: 110px;
  margin: auto;
  width: 485px;
  border-radius: 6px;
}
.video-puzzle {
  width: 800px;
}
.cls-1 {
  fill: #6bbfd6;
}

/* 7.voices section styles */
.voices {
  padding: 40px 0;
  width: 100%;
  background-color: #6bbfd6;
  min-height: 800px;
}
.voices-container {
  width: 80%;
}
#voices-section .nav-tabs {
  /* width: 100%; */
}
#voices-section .nav-item {
  width: 50%;
}
#voices-section .nav-link {
  border: none;
  width: 100%;
  color: #002950;
  background-color: rgb(209, 209, 209);
}
#voices-section .active {
  background-color: white;

  color: #002950;
}
#voices-section .rounded-circle {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.voice-container {
  position: relative;
}
.voice-avatar {
  position: relative;
  width: 90px;
  height: 90px;
}
.voice-name {
  margin-top: 15px;
}
.voice-falg {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.voice-play-button {
  transition: all 200ms ease;
  cursor: pointer;
  opacity: 0;
  color: #fff;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.voice-avatar:hover > .voice-play-button {
  opacity: 1;
}

/* || 8.Contact form style */

.contact-us {
  background-color: #002950;
  padding: 50px 0;
}
.contact-us .wpcf7-form {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contact-form-controls {
  overflow: hidden;
  width: 80%;
}

.contact-form-controls .control {
  position: relative;
  color: #fff;
}

.contact-form-controls .control label {
  line-height: 50px;
  color: #fff;
  z-index: 1;
  text-transform: capitalize;
}

.contact-form-controls .control input {
  border: none;
  border-radius: 6px;
  text-align: left;
  padding: 10px;
}
.contact-form-controls .control input[type="text"] {
  width: 100%;
  border: 0;
  border-top: 1px solid #ddd;
  height: 50px;
  line-height: 50px;
  outline: 0;
  font-weight: 400;
}
.contact-form-controls .control input[type="email"] {
  width: 100%;
  border: 0;
  border-top: 1px solid #ddd;
  height: 50px;
  line-height: 50px;
  outline: 0;
  font-weight: 400;
}

.contact-form-controls .control.left label {
  right: 0;
  top: 0;
}

.contact-form-controls .control textarea {
  border: none;
  width: 100%;
  border: 0;
  border-top: 1px solid #ddd;
  outline: 0;
  padding: 10px;

  border-radius: 6px;
}

.control:last-of-type input[type="text"],
.control:last-of-type textarea {
  border-bottom: 1px solid #ddd;
}
.submit-container {
  position: relative;
}
.contact-form-controls .wpcf7-spinner {
  background-color: #ffffff;
  position: absolute;
  bottom: 10px;
}
.contact-form-controls .wpcf7-spinner::before {
  background-color: #1b1b1b;
}
.contact-form-controls input[type="submit"] {
  border: none;
  padding: 10px 20px;
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  border-radius: 6px;
}

.wpcf7 form .wpcf7-response-output {
  border-color: #fff;
  color: white;
}

.contact-us .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #fff;
  color: white;
}
#pazzules-control {
  height: 150px;
}
.puzzle-radio > span {
  display: none;
}
.puzzle-text {
  font-size: 22px;
}

.puzzle-piece-1 > path,
.puzzle-piece-3 > path {
  fill: white;
}
.puzzle-piece-2 > path,
.puzzle-piece-4 > path {
  fill: white;
}

.shake-horizontal {
  position: absolute;
  margin: 0 0 20px 0;
  max-width: 500px;
  max-height: 130px;
  cursor: pointer;
  -webkit-animation: shake-horizontal 20s linear infinite both;
  animation: shake-horizontal 20s linear infinite both;
  animation-play-state: running;
}
.active-puzzle-piece > path {
  stroke: white;
  fill: var(--primary);
  stroke-linejoin: miter;
  stroke-miterlimit: 1;
}
.shake-horizontal > g path {
  stroke: var(--primary);
  stroke-linejoin: miter;
  stroke-miterlimit: 1;
}
.puzzle-piece-1,
.puzzle-piece-2,
.puzzle-piece-3,
.puzzle-piece-4 {
  -webkit-animation: piece-horizontal 20s linear infinite both;
  animation: piece-horizontal 20s linear infinite both;
}

.shake-horizontal:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

@media (min-width: 675px) {
  @-webkit-keyframes shake-horizontal {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    20% {
      -webkit-transform: translateX(40%);
      transform: translateX(40%);
    }
    40% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    60% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    80% {
      -webkit-transform: translateX(-40%);
      transform: translateX(-40%);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }
  @keyframes shake-horizontal {
    0% {
      -webkit-transform: translateX(-40%);
      transform: translateX(-40%);
    }
    16.5% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    33% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    49.5% {
      -webkit-transform: translateX(40%);
      transform: translateX(40%);
    }
    66% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    82.5% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-40%);
      transform: translateX(-40%);
    }
  }
  @-webkit-keyframes piece-horizontal {
    0% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    14% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    16.5% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    30% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    33% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    64% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    66% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    80% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    82.5% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    100% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
  }
  @keyframes piece-horizontal {
    0% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    14% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    16.5% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    30% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    33% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    64% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    66% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    80% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    82.5% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
    100% {
      -webkit-transform: translateX(var(--val));
      transform: translateX(var(--val));
    }
  }
}

.shake-horizontal:hover .puzzle-piece-1,
.shake-horizontal:hover .puzzle-piece-2,
.shake-horizontal:hover .puzzle-piece-3,
.shake-horizontal:hover .puzzle-piece-4 {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-transform: translateX(var(--val)) !important;
  transform: translateX(var(--val)) !important;
}

/* puzzle carosel */
.advanced-carousel {
  transform: translate3d(0, 0, 0) !important;
  margin: 0 auto;
  max-width: 750px;
}

.advanced-carousel-cell {
  margin-right: 10px;
  transition: transform 0.35s;
  width: 65%;
  transform: translate3d(0px, 0px, 0px);
  will-change: transform;
}
.advanced-carousel-cell.is-selected {
  transform: scale(1) translateX(0);
  z-index: 9999;
}
.advanced-carousel-cell.is-next {
  transform: scale(0.5) translateX(-50%);
}
.advanced-carousel-cell.is-previous {
  transform: scale(0.5) translateX(50%);
}

/* || 9.Our Packages style */

.packages {
  background-color: #6bbfd6;
  padding: 50px 0;
}
.packages-container {
  width: 80%;
}

.packages .columns {
  float: left;
  width: 33.3%;
  padding: 8px;
}

.packages .price {
  background-color: white;
  border-radius: 6px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.packages .price:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
  border: #002950 solid 1px;
}

.packages .price .header {
  color: #002950;
  font-size: 25px;
}
.packages .price .header svg {
  width: 100px;
  height: 100px;
}

.packages .price li {
  padding: 20px;
  text-align: center;
}
.packages .price .plan-name {
  background-color: #002950;
  color: white;
}

.packages .price .grey {
  background-color: #eee;
  font-size: 20px;
}

.packages .button {
  background-color: #04aa6d;
  border: none;
  color: white;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
}

/* || 10.steps styles */

.steps {
  min-height: 500px;
  padding: 80px 0;
}
.steps-row {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 60%;
  position: relative;
}
.steps-row h2 {
  font-weight: 800;
}
.arrow {
  position: absolute;
  bottom: -60px;
  left: -20px;
  transform: rotate(180deg);
}
@media (min-width: 750px) {
  #steps-section > div:nth-child(2) {
    margin-left: 150px;
  }
  #steps-section > div:nth-child(3) {
    margin-left: 300px;
  }
  #steps-section > div:nth-child(4) {
    margin-left: 450px;
  }
  #steps-section > div:nth-child(5) {
    margin-left: 600px;
  }
}

/* || 11.footer style */

.footer {
  background-color: var(--secondary);
  width: 100%;
  display: flex;
  align-items: top;
  padding: 5rem 0;
}
.footer ul {
  list-style: none;
  padding-left: 0;
}
.footer section {
  padding: 1rem 2rem;
  width: 100%;
  vertical-align: top;
}

.footer section h3 {
  color: var(--primary);
  font-weight: bold;
}

.footer section a {
  color: var(--gray);
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 15px 0;
  text-decoration: none;
}

.footer section a:hover {
  color: var(--white);
}

.footer section:nth-child(2) a:before,
.footer section:nth-child(3) a:before {
  content: "";
  font-family: "FontAwesome";
  margin-right: 5px;
  color: var(--white);
}

.footer section a span {
  margin: 0 10px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 30px;
}
.footer-logo + p {
  text-align: center;
  color: white;
}
.sub-footer {
  background-color: var(--dark);
  text-align: Center;
  color: var(--white);
  padding: 1rem 0;
}

.sub-footer a {
  text-decoration: none;
  color: inherit;
}
.sub-footer a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.page-header {
  position: sticky;
  top: 0;
  height: 100px;
  background-color: var(--secondary);
}
.page-content {
  min-height: 50vh;
  width: 75%;
  padding: 100px 0;
  margin: auto;
  left: 0;
  right: 0;
}

@media (max-width: 1020px) {
  .footer {
    display: block;
  }
  .footer section {
    padding: 1rem 1rem;
  }
  .footer section:nth-child(2),
  .footer section:nth-child(3) {
    width: 49%;
    display: inline-block;
  }
  .page-content {
    width: 85%;
  }
}

/* || small screen styles */
@media screen and (max-width: 675px) {
  /* header styels */
  #main_header {
    background-color: #002950;
  }
  #main_header .container {
    padding: 0;
  }
  #main_header .container a {
    margin-left: 6%;
  }
  #main_header .container button {
    margin-right: 6%;
  }
  #main_header .navbar-collapse {
    background-color: #002950;
  }
  .header-scroll {
    opacity: 1;
  }

  /* puzzle */

  .puzzle-carousel-container {
    display: block !important;
  }
  .puzzle-container {
    height: auto;
  }
  .puzzle-shapes {
    display: none;
  }
  /* contac form */
  .shake-horizontal {
    width: 90%;
  }
  .puzzle-piece-1,
  .puzzle-piece-2,
  .puzzle-piece-3,
  .puzzle-piece-4 {
    -webkit-transform: translateX(var(--val)) !important;
    transform: translateX(var(--val)) !important;
  }

  /* Image Comparison Slider */

  .img-comp-container {
    width: 350px;
    height: 350px; /*should be the same height as the images*/
  }

  .img-comp-container img {
    width: 350px;
    height: 350px;
  }

  /* video in puzzle */
  .vedio-in-container {
    margin-top: 20px;
  }

  .video-in-container > video {
    top: 50px;
    width: 210px;
  }

  .video-puzzle {
    width: 350px;
  }

  /* steps */
  .steps-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
  }
  .arrow {
    bottom: -20px;
    left: -35px;
    transform: rotate(215deg);
  }
}
