@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

body {
  font-size: 62.5%;
  /* 1rem = 10px */
  font-family: "Inria Sans", sans-serif;
  background-color: #EEEEEE;
}

.page-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  /* hogy a footert lefelé tolja, ami flex = 1 */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* fontos! */
}

h1 {
  /* @include set-text(9.6em, 400, 120%, $color-secondary); */
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 6.6em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
  margin: 0;
}
@media (max-width: 640px) {
  h1 {
    font-size: 4em;
  }
}

h2 {
  /* @include set-text(9.6em, 400, 120%, white); */
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 6.6em;
  font-weight: 400;
  line-height: 120%;
  color: white;
}
@media (max-width: 640px) {
  h2 {
    font-size: 3.2em;
  }
}

.p1 {
  /* @include set-text(6.4em, 400, 120%, $color-secondary); */
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3.4em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
}
@media (max-width: 640px) {
  .p1 {
    font-size: 2.4em;
    font-weight: 400;
  }
}

.p2 {
  /* @include set-text(4.8em, 400, 120%, $color-secondary); */
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 4em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
}
@media (max-width: 640px) {
  .p2 {
    font-size: 2.4em;
  }
}

.p3 {
  /* @include set-text(3.2em, 400, 120%, $color-secondary); */
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3.2em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
}
@media (max-width: 640px) {
  .p3 {
    font-size: 2.4em;
  }
}
.p3 span.bold-italic {
  font-weight: 600;
  font-style: italic;
}

.p4 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3.2em;
  font-weight: 400;
  line-height: 120%;
  color: white;
}
.p4 span {
  font-size: 0.8em;
  display: block;
  text-align: center;
}
@media (max-width: 640px) {
  .p4 {
    font-size: 2.4em;
  }
}

.p5 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3em;
  font-weight: 400;
  line-height: 120%;
  color: white;
  text-align: center;
}
@media (max-width: 640px) {
  .p5 {
    font-size: 2.4em;
  }
}

.p6 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3.8em;
  font-weight: 600;
  line-height: 120%;
  color: #0F517B;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .p6 {
    font-size: 2.4em;
  }
}

.p7 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 120%;
  color: #0F517B;
  text-align: center;
}
@media (max-width: 640px) {
  .p7 {
    font-size: 2.4em;
  }
}

.p8 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
  text-align: center;
}
@media (max-width: 640px) {
  .p8 {
    font-size: 2.4em;
  }
}

.p9 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 3.2em;
  font-weight: 600;
  line-height: 120%;
  color: #0F517B;
  text-align: left;
}
@media (max-width: 640px) {
  .p9 {
    font-size: 2.4em;
  }
}

.p10 {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
  text-align: left;
}
@media (max-width: 640px) {
  .p10 {
    font-size: 2.4em;
  }
}

.nav-text {
  transition: color 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2.3em;
  font-weight: 400;
  line-height: 120%;
  color: #0F517B;
}
.nav-text:hover {
  color: #ED6F24;
}

.nav-lang-icon {
  width: 45px;
  height: 30px;
}

.cart-icon {
  width: 60px;
  height: 60px;
}

.btn {
  text-align: center;
  padding: 17px 17px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  cursor: pointer;
}
.btn:focus {
  outline: none;
}
.btn--primary {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 120%;
  color: white;
  background-color: #ED6F24;
  border: 0 solid cyan;
  border-radius: 10px;
}
.btn--primary.primary--var {
  padding: 7px;
}
.btn--secondary {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2em;
  font-weight: 600;
  line-height: 120%;
  color: white;
  background-color: #0F517B;
  border: 0 solid cyan;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn--secondary.secondary--var {
  border-radius: 10px;
}
.btn--tertary {
  padding: 0 8px;
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2em;
  font-weight: 600;
  line-height: 120%;
  color: #0F517B;
  background-color: #C4C4C4;
  border: 1px solid #0F517B;
  border-radius: 10px;
}
.btn--fourth {
  padding: 7px;
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 120%;
  color: #0F517B;
  background-color: white;
  border: 0 solid cyan;
  border-radius: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 8px;
  background-color: transparent;
  border: none;
}

.hamburger span {
  width: 32px;
  height: 4px;
  background: black;
  border-radius: 10px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8.5px, 8.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8.5px, -8.5px);
}

.card-preview {
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  align-items: center;
}
.card-preview img {
  width: 240px;
  height: 150px;
}

.card-info {
  width: 298px;
  height: 520px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.card-info:hover {
  transform: scale(1.01);
}
.card-info img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-info .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0px 10px;
  background: rgba(15, 81, 123, 0.67);
  min-height: 30%;
  display: flex;
  align-items: center;
}

.card {
  background-color: white;
  max-width: 360px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.card:hover {
  transform: scale(1.01);
}
.card .card-header {
  padding: 10px;
}
.card .card-header img {
  max-width: 340px;
  width: 100%;
  height: auto;
}
.card .card-content-wrapper {
  min-height: 390px;
  padding: 16px 16px 21px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.card .card-content-wrapper .card-content {
  display: flex;
  gap: 35px;
  flex-direction: column;
}
.card .card-content-wrapper .card-content .p8 {
  margin: 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #0F517B;
}
.card .card-content-wrapper a {
  max-width: 220px;
}

.form-panel {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-panel .form-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-panel .form-rows input,
.form-panel .form-rows textarea {
  border: none;
  outline: none;
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 120%;
  color: black;
  width: 100%;
  padding: 12px 16px;
  background: none;
}
.form-panel .form-rows input::-moz-placeholder, .form-panel .form-rows textarea::-moz-placeholder {
  color: #8E8E8E;
}
.form-panel .form-rows input::placeholder,
.form-panel .form-rows textarea::placeholder {
  color: #8E8E8E;
}
.form-panel .form-rows .input-wrapper {
  border-bottom: 1px solid #EEEEEE;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.5);
}
.form-panel .form-rows .input-wrapper:focus-within {
  border-color: #EEEEEE;
}
.form-panel .form-rows .input-wrapper.--success {
  border-color: #008000;
}
.form-panel .form-rows .input-wrapper img {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  cursor: pointer;
}
.form-panel .form-rows .row-half {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
}
.form-panel .form-rows .row-half input {
  border-bottom: 1px solid #EEEEEE;
  flex: 1;
}
.form-panel .form-rows .row-half input:focus {
  border-color: #0F517B;
}
@media (max-width: 640px) {
  .form-panel .form-rows .row-half {
    flex-direction: column;
    gap: 23px;
  }
}
.form-panel .form-rows textarea {
  resize: none;
  overflow: hidden;
}
@media (max-width: 640px) {
  .form-panel .form-rows {
    gap: 25px;
  }
}
.form-panel .checkbox-row {
  margin-top: 40px;
  padding: 12px 4px;
}
.form-panel .checkbox-row label {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 120%;
  color: #383C3E;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.form-panel .checkbox-row label a {
  text-decoration: none;
  text-decoration: underline;
  color: #383C3E;
}
.form-panel .checkbox-row label input {
  width: 18px;
  height: 18px;
  accent-color: #0F517B;
  flex-shrink: 0;
}
.form-panel .form-footer {
  margin-top: 30px;
  display: flex;
  justify-content: left;
  gap: 50px;
}
.form-panel .form-footer .footer-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.form-panel .form-footer .footer-item img {
  width: 28px;
  height: 28px;
}
.form-panel .form-footer .footer-item p {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 120%;
  color: black;
}
.form-panel .form-footer .footer-item p .red-span {
  color: #0F517B;
}
@media (max-width: 640px) {
  .form-panel .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1280px) {
  .form-panel {
    padding: 40px 32px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .form-panel {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}

.submit-text {
  font-size: 13px;
}
.submit-text.--error {
  color: #b3261e;
}
.submit-text.--success {
  color: #008000;
}

.dropdown-button-wrapper {
  position: relative;
  /*     min-width: min($btn-default-width, 90%); */
  display: flex;
  justify-content: center;
}
.dropdown-button-wrapper .profile-dropdown-menu {
  position: absolute;
  top: 61px;
  margin-top: 10px;
  width: 100%;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown-button-wrapper .profile-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}
.dropdown-menu-item:hover {
  background-color: rgba(241, 218, 204, 0.1490196078);
}
.dropdown-menu-item:last-child {
  border-bottom: none;
  background-color: #0F517B;
}
.dropdown-menu-item:last-child:hover {
  background-color: #ED6F24;
}
.dropdown-menu-item .dropdown-menu-text {
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 120%;
  color: black;
}

/* TODO navbar logo responsive*/
.navbar-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: white;
  display: flex;
  justify-content: center;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1600px;
  padding: 0px 40px;
  height: 125px;
  background-color: white;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.navbar .logo {
  padding-right: 12px;
  border-right: 1px solid #0F517B;
  margin-right: 23px;
}
.navbar .logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 1024px) {
  .navbar .logo img {
    width: 145px;
  }
}
.navbar .nav-icon {
  width: 24px;
  height: 24px;
  background-image: url("../images/home-icon.svg");
  background-size: 24px 24px;
}
.navbar .nav-icon:hover {
  filter: brightness(0) saturate(100%) invert(58%) sepia(76%) saturate(6249%) hue-rotate(-11deg) brightness(97%) contrast(91%);
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.navbar .nav-links .nav-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1280px) {
  .navbar .nav-links .nav-left {
    flex-direction: column;
  }
}
@media (max-width: 1280px) {
  .navbar .nav-links .nav-left img {
    display: none;
  }
}
@media (max-width: 1280px) {
  .navbar .nav-links .nav-right {
    flex-direction: column;
  }
}
.navbar .nav-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1280px) {
  .navbar {
    justify-content: space-between;
  }
  .navbar .nav-links {
    position: absolute;
    top: 125px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #EEEEEE;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 10000;
  }
  .navbar .nav-links.show {
    padding: 25px 25px 25px;
    max-height: 600px;
  }
  .navbar .hamburger {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .navbar {
    padding: 0 32px;
  }
}

.footer-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: white;
  display: flex;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1600px;
  padding: 0 32px;
  font-family: "Inria Sans", sans-serif;
  text-decoration: none;
  font-size: 2.2em;
  font-weight: 500;
  line-height: 120%;
  color: #0F517B;
  text-align: center;
  background-color: white;
  height: 150px;
}

.hero {
  padding: 50px 90px 30px;
  min-height: 560px;
  background-color: white;
  /* bármi kép vagy ha interactol a contentel, img*/
  background-image: url("../images/papir-bc.png");
  background-repeat: no-repeat;
  background-position: right center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1000;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .hero .hero-title {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hero .hero-subtitle {
    text-align: center;
  }
}
.hero .hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .hero .hero-buttons {
    flex-direction: column;
  }
}
@media (max-width: 1280px) {
  .hero {
    background-image: none;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 65px 32px 65px;
  }
}

/* todo megérteni és használni */
.preview {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ED6F24;
  gap: 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1000;
}
.preview .preview-imgs {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.preview .preview-imgs > *:not(:last-child) {
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .preview {
    padding: 40px 32px;
  }
}
@media (max-width: 1024px) {
  .preview {
    flex-direction: column;
    align-items: center;
  }
}

.separation {
  padding: 20px 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.separation .separation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}
.separation .separation-content .separation-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
@media (max-width: 640px) {
  .separation .separation-content .separation-buttons {
    gap: 20px;
    /*  flex-direction: column; */
    align-items: center;
  }
  .separation .separation-content .separation-buttons .btn {
    flex: 1 1 150px;
    /* grow, shrink, base width */
    min-width: 0;
    font-size: 16px;
    padding: 18px 8px;
  }
}

.card-section {
  padding: 50px 25px 75px;
  background-color: #EEEEEE;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.card-section .info-cards {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  flex-wrap: wrap;
}

.info {
  padding: 50px 25px 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info .info-cards {
  display: flex;
  gap: 14px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.contact-section .section-main {
  display: flex;
  max-width: 1400px;
  width: 100%;
  justify-content: space-between;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.contact-section .section-main .form-wrapper {
  flex: 0 1 800px;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .contact-section .section-main .form-wrapper {
    flex: auto;
    height: auto;
  }
}
.contact-section .section-main .logo-banner {
  flex: 0 1 480px;
  min-width: 200px;
  height: 900px;
  background-color: #ED6F24;
  background-image: url("../images/visualityon-logo-tagline.svg");
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .contact-section .section-main .logo-banner {
    display: none;
  }
}
@media (max-width: 1024px) {
  .contact-section .section-main {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .contact-section {
    padding-top: 100px;
    padding: 0 16px;
  }
}

/* más lapokon is hasznos */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sub-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.sub-wrapper .side {
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
}
.login .login-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 850px;
  width: 100%;
}
.login .login-wrapper .register-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 32px;
}
.login .login-wrapper .register-header img {
  width: 40px;
}
.login .login-wrapper .register-header .register-buttons {
  display: flex;
  gap: 10px;
}
.login .login-wrapper .register-header .register-buttons img {
  width: 90px;
}
@media (max-width: 640px) {
  .login .login-wrapper .register-header {
    padding: 0 16px;
  }
}
.login .form-wrapper {
  border-radius: 12px;
  overflow: hidden;
  padding: 32px;
}
@media (max-width: 1280px) {
  .login .form-wrapper {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .separation {
    padding: 65px 32px 65px;
  }
}

.card-section .pages {
  margin: 40px auto 0;
}

.contact-section {
  margin-bottom: 100px;
}
.contact-section .section-header {
  margin-bottom: 85px;
}
@media (max-width: 640px) {
  .contact-section .section-header {
    margin-bottom: 100px;
  }
}

.login {
  margin-top: 80px;
  margin-bottom: 100px;
}

.register-submit-section {
  margin-top: 140px;
  flex: 1;
}/*# sourceMappingURL=main.css.map */