@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: "Inter", sans-serif;
  /*  background-color: gray; */
}

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

h1 {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 4.8em;
  font-weight: 600;
  line-height: 120%;
  color: white;
}
@media (max-width: 640px) {
  h1 {
    font-size: 4em;
  }
}

h2 {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 4em;
  font-weight: 500;
  line-height: 120%;
  color: #F3C41F;
}
@media (max-width: 640px) {
  h2 {
    font-size: 2.4em;
    font-weight: 400;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 4em;
  font-weight: 700;
  line-height: 120%;
  color: #3D3D3D;
}
@media (max-width: 640px) {
  h3 {
    font-size: 3.2em;
  }
}

h4 {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 3.2em;
  font-weight: 400;
  line-height: 120%;
  color: #AF110B;
}
@media (max-width: 640px) {
  h4 {
    font-size: 2.4em;
  }
}

.nav-text {
  transition: color 0.3s;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 120%;
  color: #3D3D3D;
}
.nav-text:hover {
  color: #A3100C;
}

.btn {
  text-align: center;
  transition: all 0.3s;
  padding: 18px 20px;
  min-width: min(195px, 90%);
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  cursor: pointer;
  /* azért nincs color, mert külön állatja az összes gomb */
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 120%;
  color: black;
}
.btn:focus {
  outline: none;
}
.btn--primary {
  color: white;
  background-color: #AF110B;
  border: 2px solid white;
  border-radius: 36px;
}
.btn--primary:hover {
  border-color: #AF110B;
  /* color: $primary-btn-backround; */
  background-color: #a80047;
}
.btn--secondary {
  color: #A3100C;
  background-color: white;
  border: 2px solid #A3100C;
  border-radius: 36px;
}
.btn--secondary:hover {
  border-color: white;
  color: white;
  background-color: #F3C41F;
}
.btn--tertiary {
  max-width: none;
  width: 100%;
  color: #AF110B;
  background-color: #FAF9F7;
  border: 2px solid #AF110B;
  border-radius: 12px;
}
.btn--tertiary:hover {
  border-color: #FAF9F7;
  color: #FAF9F7;
  background-color: #F3C41F;
}
.btn--tertiary-var {
  color: white;
  background-color: #AF110B;
  border: 2px solid white;
  border-radius: 12px;
}
.btn--tertiary-var:hover {
  border-color: #AF110B;
  color: #AF110B;
  background-color: white;
}

.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);
}

/* TODO kiszervezni minnél több változót */
.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 380px;
  overflow: hidden;
  transition: background-color 0.1s ease;
}
.card:hover {
  background-color: rgba(241, 218, 204, 0.1490196078);
}
.card .card-header {
  height: 65px;
  background-color: #F3C41F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 16px;
}
.card .card-header img {
  width: 50px;
  height: auto;
}
.card .card-header div {
  box-shadow: none;
  padding: 4px 20px;
  cursor: default;
}
.card .card-header--paid {
  background-color: #A3100C;
  border: 2px solid white;
  border-radius: 36px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 120%;
  color: white;
}
.card .card-header--free {
  background-color: white;
  border: 2px solid #AF110B;
  border-radius: 36px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 120%;
  color: #AF110B;
}
.card .card-content-wrapper {
  min-height: 390px;
  padding: 16px 16px 21px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.card .card-content-wrapper .card-content {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.card .card-content-wrapper .card-content .card-title {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 3.2em;
  font-weight: 500;
  line-height: 120%;
  color: #AF110B;
}
.card .card-content-wrapper .card-content .card-description {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 150%;
  color: #3D3D3D;
}
.card .card-content-wrapper .card-content .card-price {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 120%;
  color: #A8A6AC;
}

.pages {
  margin: 40px auto 0;
  padding: 12px 0;
  max-width: 360px;
  display: flex;
  justify-content: space-between;
  display: none;
}
.pages .page-numbers {
  display: flex;
  justify-content: center;
}
.pages .page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 120%;
  color: #535862;
}

.btn-arrow {
  width: 40px;
  height: 36px;
  border: none;
  border-radius: 8px;
  border: 1px solid #414651;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.btn-arrow--prev {
  background-image: url("../images/arrow-left.svg");
}
.btn-arrow--next {
  background-image: url("../images/arrow-right.svg");
}
.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: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 120%;
  color: #3D3D3D;
  width: 100%;
  padding: 12px 16px;
}
.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 #737B7D;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form-panel .form-rows .input-wrapper:focus-within {
  border-color: #A3100C;
}
.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 #737B7D;
  flex: 1;
}
.form-panel .form-rows .row-half input:focus {
  border-color: #A3100C;
}
@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: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.6em;
  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: #AF110B;
  flex-shrink: 0;
}
.form-panel .form-footer {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  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: "Inter", 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: #AF110B;
}
@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(195px, 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: #AF110B;
}
.dropdown-menu-item:last-child:hover {
  background-color: #A3100C;
}
.dropdown-menu-item .dropdown-menu-text {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 120%;
  color: black;
}

/* TODO navbar logo responsive*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 70px;
  height: 85px;
  background-color: #F3C41F;
}
.navbar .logo {
  display: flex;
}
.navbar .logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .navbar .logo img {
    width: 145px;
  }
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
@media (max-width: 1024px) {
  .navbar .nav-links {
    /*  flex: none; */
  }
}
@media (max-width: 768px) {
  .navbar .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #F3C41F;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .navbar .nav-links.show {
    padding: 10px 0 25px;
    max-height: 600px;
  }
  .navbar .hamburger {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .navbar {
    padding: 0 32px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 64px;
  min-height: 340px;
}
.footer-content .footer-logo {
  width: 270px;
  max-width: 100%;
}
.footer-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-content ul li {
  width: 100%;
}
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 70px;
  }
  .footer-content .footer-logo {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .footer-content {
    padding: 100px 32px 48px;
  }
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 120%;
  color: white;
  background-color: #AF110B;
  height: 85px;
}

.hero {
  min-height: 560px;
  padding: 100px 90px;
  background-color: #AF110B;
  /* bármi kép vagy ha interactol a contentel, img*/
  background-image: url("../images/header-img-visualityon.svg");
  background-repeat: no-repeat;
  background-position: right 53px center;
  background-size: 473px auto;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 640px) {
  .hero .hero-title {
    text-align: center;
  }
}
.hero .hero-subtitle {
  max-width: 740px;
}
@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 80px;
  }
}

/* todo megérteni és használni */
.preview {
  padding: 80px 70px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.preview img {
  width: 100%;
}
.preview .preview-texts {
  flex-shrink: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
.preview .preview-texts .preview-subtitle {
  margin-bottom: 15px;
}
.preview .preview-texts .preview-description {
  max-width: 660px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 120%;
  color: #3D3D3D;
}
@media (max-width: 640px) {
  .preview {
    padding: 40px 32px;
  }
}
@media (max-width: 1024px) {
  .preview {
    flex-direction: column;
    align-items: center;
  }
  .preview .preview-img {
    flex: 1 0 auto;
  }
}

.separation {
  min-height: 280px;
  padding: 32px 32px;
  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 h3 {
  max-width: 100%;
}
.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: 60px 32px;
}
.card-section .cards-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 1536px) {
  .card-section .cards-area {
    gap: 40px;
  }
}
.card-section .cards-area.active {
  animation: fadeIn 0.5s ease;
}
@media (max-width: 640px) {
  .card-section .pages {
    display: flex;
  }
}
.card-section .card-group {
  display: none;
}
.card-section .active {
  display: flex;
}

@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: #F3C41F;
  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;
}

.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 .form-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 32px;
}
@media (max-width: 1280px) {
  .login .form-wrapper {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .separation {
    margin-top: 100px;
  }
}

.card-section {
  margin-bottom: 100px;
}
.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 */