/*$primary: #64a19d !default;*/
.menu {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.5s ease;
  z-index: 5;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.menu .header-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all 0.5s ease;
  padding: 20px;
}
.menu .header-content .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1s ease;
}
.menu .hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-left: auto;
}
.menu nav {
  display: flex;
  margin-left: auto;
}
.menu nav a {
  color: black;
  text-decoration: none;
  margin: 0 15px;
}
.menu nav a:hover {
  color: grey;
}

.menu.scrolled {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.menu.scrolled .logo {
  position: relative;
  left: 0;
  transform: translateX(0);
}

@keyframes rotateInDownCenterZoom {
  0% {
    opacity: 0;
    transform: rotateX(-120deg) scale(2);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) scale(1);
  }
}
.hero {
  background-image: url("../img/bannerwhite.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}
.hero .hero-content {
  position: static;
  z-index: 2;
  text-align: center;
  min-height: 200px;
}
.hero .hero-content .primary-text {
  font-size: 65px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 49px;
  letter-spacing: 25px;
  color: #303030;
  opacity: 0;
  transform-origin: top center;
  transform: rotateX(120deg) scale(2);
  animation: rotateInDownCenterZoom 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s;
}
.hero .hero-content .secondary-text {
  color: #303030;
  font-size: 25px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 10px;
  opacity: 0;
  transform-origin: top center;
  transform: rotateX(120deg) scale(2);
  animation: rotateInDownCenterZoom 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 2s;
  padding: 20px;
}

.gallery-section {
  background-color: #333;
  color: white;
  /*width: 100vw;*/
  text-align: center;
}
.gallery-section .gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-section .gallery img {
  width: 100%;
  transition: filter 0.3s, transform 0.3s;
  border-radius: 10px;
}
.gallery-section .gallery .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.gallery-section .gallery .gallery-item {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.gallery-section .gallery .gallery-item:hover img {
  filter: brightness(50%);
  border-radius: 10px;
}
.gallery-section .gallery .gallery-item:hover .overlay {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.intro-section {
  background-color: #fff;
}
.intro-section .intro-content {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}
.intro-section .intro-box {
  width: 350px;
  text-align: justify;
}
.intro-section .intro-box i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.intro-section .intro-box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 500;
  padding: 20px;
}
.intro-section .intro-box p, .intro-section .intro-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0px;
}

.about-section {
  background-color: #f0f0f0;
}
.about-section .about-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}
.about-section .about-container .about-image {
  width: 350px;
  text-align: justify;
}
.about-section .about-container .about-image img {
  max-width: 350px;
  height: auto;
  margin-right: 20px;
  justify-content: space-around;
  justify-items: center;
  border-radius: 10px;
}
.about-section .about-container .about-content {
  width: 350px;
  text-align: justify;
}
.about-section .about-container .about-content .about-arrow.mobile {
  display: none;
}
.about-section .about-container .about-content .about-arrow.desktop {
  width: 350px;
}
.about-section .about-container .about-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 10px;
  display: flex;
}
.about-section .about-container .about-content p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}
.about-section .about-container .about-iphone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  rotate: z 10deg;
}
.about-section .about-container .about-iphone .iphone-frame {
  position: relative;
  z-index: 2;
  width: 300px;
  height: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section .about-container .about-iphone .iphone-frame img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.about-section .about-container .about-iphone .iphone-screen {
  position: absolute;
  top: 1%;
  left: 3%;
  width: 94%;
  height: 98%;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
}
.about-section .about-container .about-iphone .iphone-screen video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: absolute;
}

.offer-container {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.offer-container .offer-box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 30%;
  transition: transform 0.3s, box-shadow 0.3s ease;
  cursor: pointer;
}
.offer-container .offer-box .description {
  font-size: 14px;
  text-align: center;
  margin: 0;
  flex-grow: 1;
  text-align: justify;
  font-weight: 400;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0px;
}
.offer-container .offer-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.offer-container .offer-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #000000;
}
.offer-container .offer-box img {
  max-width: 150px;
  justify-content: center;
  justify-items: center;
  padding: 20px;
}
.offer-container .offer-box .offer-logo-strefab {
  padding-top: 53px;
  padding-bottom: 35px;
  max-width: 250px;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}
.offer-container .offer-box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 500;
  padding: 20px;
}

.pricing-table {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  align-items: stretch;
  gap: 20px;
  margin: 0 auto;
}
.pricing-table .pricing-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 30%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.pricing-table .pricing-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pricing-table .pricing-card button {
  background-color: #f9f9f9;
}
.pricing-table .pricing-card button:hover {
  background-color: #555;
  color: white;
}
.pricing-table .pricing-card.highlighted {
  border-color: #000000;
}
.pricing-table .pricing-card.highlighted:hover:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.pricing-table .pricing-card .pricing-header h1 {
  font-size: 36px;
  color: #333;
}
.pricing-table .pricing-card .pricing-header h2 {
  font-size: 24px;
  margin: 10px 0;
}
.pricing-table .pricing-card .pricing-header h3 {
  font-size: 16px;
  color: #888;
}
.pricing-table .pricing-card .pricing-header p {
  color: #555;
}

.pricing-table-plus {
  display: flex;
  justify-content: center;
  padding: 50px;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.pricing-table-plus .pricing-card-plus {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.pricing-table-plus .pricing-card-plus:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pricing-table-plus .additional-info-plus {
  text-align: center;
  padding-bottom: 50px;
}

.features-list {
  list-style: none;
  padding: 0;
  text-align: left;
  position: relative;
  padding-bottom: 20px;
}
.features-list li {
  margin: 10px 0;
  color: #555;
  display: flex;
  align-items: center;
}
.features-list li .checkmark {
  margin-right: 10px;
  color: #000000;
}
.features-list li .additional-comments {
  text-align: center;
  font-size: 12px;
  color: #777;
}
.features-list li .additional-comments-info {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.additional-info {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}
.additional-info p {
  font-size: 14px;
  color: #777;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideIn 0.3s ease;
}

.close-modal {
  cursor: pointer;
  align-self: flex-end;
  margin-right: 5px;
  font-size: 26px;
}

.modal-row {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 40px;
}
.modal-row img {
  max-width: 350px;
  height: auto;
  margin-right: 20px;
  justify-content: space-around;
  justify-items: center;
  border-radius: 10px;
}
.modal-row video {
  max-width: 20%;
  height: auto;
  border-radius: 8px;
  display: block;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.modal-row a {
  font-size: 20px;
  letter-spacing: 2px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  display: flex;
  transition: color 0.3s;
}
.modal-row a:hover {
  color: #555;
}
.modal-row i {
  color: #000000;
  align-items: center;
}

.icons-contact {
  margin-right: 30px;
  color: #000000;
}

.contact-list {
  list-style: none;
  text-align: left;
  position: static;
}
.contact-list li {
  margin: 15px 0;
  color: #555;
  display: flex;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}
.contact-section {
  background-color: #f0f0f0;
}
.contact-section .contact-list {
  list-style: none;
  text-align: left;
  position: static;
}
.contact-section .contact-list li {
  margin: 15px 0;
  color: #555;
  display: flex;
  align-items: center;
}
.contact-section .icons-contact {
  margin-right: 30px;
  color: #000000;
}
.contact-section .contact-container {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .contact-container .contact-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #f0f0f0;
  flex: 1;
}
.contact-section .contact-container .contact-box a {
  font-size: 20px;
  letter-spacing: 2px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  display: flex;
  transition: color 0.3s;
}
.contact-section .contact-container .contact-box a:hover {
  color: #555;
}
.contact-section .contact-container .contact-box i {
  color: #000000;
  align-items: center;
}
.contact-section .contact-container .contact-box img {
  max-width: 350px;
  height: auto;
  margin-right: 20px;
  justify-content: space-around;
  justify-items: center;
  border-radius: 10px;
}
.contact-section .contact-container .contact-box video {
  max-width: 20%;
  height: auto;
  border-radius: 8px;
  display: block;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.contact-section .contact-container .contact-box h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}
footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 32px;
  transition: color 0.3s;
}
footer .social-icons a:hover {
  color: #555;
}

@media (max-width: 768px) {
  .content-section, .gallery, .intro-section, .about-section, .about-container, .offer-section, .intro-content, .offer-container {
    flex-direction: column;
    align-items: center !important;
  }
  .hamburger {
    display: block !important;
  }
  nav {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: white;
    width: 100%;
    padding: 20px;
  }
  nav a {
    margin: 10px 0 !important;
    text-align: center;
  }
  nav.open {
    display: flex !important;
    background-color: white;
  }
  .menu.open {
    background-color: white;
  }
  .menu {
    top: 0 !important;
  }
  .menu .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1s ease;
  }
  .menu.scrolled .logo {
    left: 0;
    transform: translateX(0);
  }
  .hero {
    background-size: 350%;
    background-position: 20% center;
    height: 100vh;
  }
  .primary-text {
    font-size: 25px;
    line-height: 70px !important;
    letter-spacing: 10px !important;
  }
  .secondary-text {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 5px;
  }
  .iphone-frame {
    width: 250px !important;
  }
  .iphone-screen {
    top: 1%;
    left: 3%;
    width: 94% !important;
    height: 98%;
    border-radius: 30px;
  }
  .iphone-frame {
    width: 200px !important;
  }
  .iphone-screen {
    top: 1%;
    left: 3%;
    width: 94% !important;
    height: 98%;
    border-radius: 25px;
  }
  .offer-box {
    max-width: 100% !important;
  }
  .gallery {
    max-width: 100% !important;
  }
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .additional-info {
    text-align: left !important;
  }
  .modal-content {
    width: 80% !important;
  }
  .modal-content video {
    display: none !important;
  }
  .modal-content img {
    display: none !important;
  }
  .contact-container {
    align-items: stretch !important;
    flex-direction: column;
  }
  .contact-box {
    max-width: 100% !important;
    flex-direction: column !important;
  }
  .contact-box video {
    display: none !important;
  }
  .contact-box img {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .about-arrow.desktop {
    display: none;
  }
  .about-arrow.mobile {
    display: flex !important;
    max-width: 100% !important;
    height: auto;
    align-items: center;
    text-align: center;
  }
}
.contact-section {
  background-color: #f0f0f0;
}
.contact-section .contact-list {
  list-style: none;
  text-align: left;
  position: static;
}
.contact-section .contact-list li {
  margin: 15px 0;
  color: #555;
  display: flex;
  align-items: center;
}
.contact-section .icons-contact {
  margin-right: 30px;
  color: #000000;
}
.contact-section .contact-container {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .contact-container .contact-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #f0f0f0;
  flex: 1;
}
.contact-section .contact-container .contact-box a {
  font-size: 20px;
  letter-spacing: 2px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  display: flex;
  transition: color 0.3s;
}
.contact-section .contact-container .contact-box a:hover {
  color: #555;
}
.contact-section .contact-container .contact-box i {
  color: #000000;
  align-items: center;
}
.contact-section .contact-container .contact-box img {
  max-width: 350px;
  height: auto;
  margin-right: 20px;
  justify-content: space-around;
  justify-items: center;
  border-radius: 10px;
}
.contact-section .contact-container .contact-box video {
  max-width: 20%;
  height: auto;
  border-radius: 8px;
  display: block;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.contact-section .contact-container .contact-box h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.alert-row {
  background-color: #f0f0f0;
  padding: 0px !important;
}

.alert-cookie {
  max-width: 1200px;
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
  padding-top: 16PX;
  padding-bottom: 16PX;
  display: grid;
  grid-template-columns: 9fr 1fr;
  grid-gap: 20px;
}

.close {
  border: 0;
  background-color: #f0f0f0;
  right: 0 !important;
  padding-top: 0px !important;
  font-size: 26px;
}

/*@import '../scss/oldVersion.scss';*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none;
}

body {
  height: 100%;
  font-family: "Josefin Sans", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}
body section {
  padding: 80px 0;
}
body button {
  background-color: #f9f9f9;
  color: #333;
  border: 1px solid #555;
  padding: 10px 20px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}
body button :hover {
  background-color: #555;
  color: white;
  transform: scale(1.05);
}/*# sourceMappingURL=main.css.map */