@charset "UTF-8";
/*
################

Reset - TE project
author: Laszlo BLAHO
www.blaho.hu

################
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ul {
  list-style: none;
}

/*
################

Variables - TE project
author: Laszlo BLAHO
www.blaho.hu

################
*/
:root {
  /* Primary colors */
  --white: 0, 0%, 100%;
  --blue: 220, 74%, 33%;
  --gold: 45, 100%, 42%;
  --red: 350, 100%, 50%;
  /* Secondary colors */
  --orange: 18, 83%, 56%;
  --lightBlue: 202, 78%, 73%;
  --strawberry: 348, 79%, 55%;
  --purple: 276, 31%, 47%;
  --yellow: 51, 100%, 47%;
  --green: 144, 100%, 27%;
  --pink: 333, 83%, 84%;
  --turquoise: 186, 57%, 35%;
  --sand: 34, 93%, 72%;
  /* Other colors */
  --black: 0, 0%, 0%;
  --darkGray: 0,	0%, 17%;
  --midGray: 0,	0%, 27%;
  --lightGray: 0,	0%, 37%;
  --darkBlue: 220, 74%, 20%;
  /* Other variables */
  --transition-time: 400ms;
  --border-radius: 6px;
  --default-padding: 30px;
  --gap: 24px;
  --gap-half: calc(var(--gap) / 2);
  --gap-half-negative: calc(var(--gap-half) * -1) ;
}

html {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}

body,
p {
  font-size: 14px;
}

h4 {
  font-size: 18.2px;
}

h3 {
  font-size: 23.66px;
}

h2 {
  font-size: 30.758px;
}

h1 {
  font-size: 39.9854px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.desktopMenu {
  display: flex;
  align-items: center;
  /* színezések */
}
ul.desktopMenu > li {
  position: relative;
  display: block;
  /* width: 16.66%; */
}
ul.desktopMenu > li > a {
  border-bottom: 3px solid transparent;
  transition: background-color var(--transition-time);
}
ul.desktopMenu > li:hover > a {
  border-bottom: 3px solid hsla(var(--red), 1);
}
ul.desktopMenu > li:hover > a.highlighted {
  background-color: hsla(var(--white), 1);
  color: hsla(var(--red), 1);
  border-bottom: unset;
  animation: unset;
}
ul.desktopMenu > li.parent > a:after {
  position: absolute;
  top: 19px;
  right: 0;
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url(../images/menuArrowDown.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
ul.desktopMenu > li.parent > a {
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 1;
  font-size: 16px;
  padding: 15px 20px 10px 0;
  margin-right: 28px;
  transition: background-color var(--transition-time);
}
ul.desktopMenu > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 1;
  font-size: 16px;
  padding: 15px 0 10px 0;
  margin-right: 28px;
  color: hsla(var(--white),1.0);
  transition: background-color var(--transition-time);
  text-transform: uppercase;
}
ul.desktopMenu > li a.highlighted {
  color: hsla(var(--white), 1);
  padding: 5px 5px 5px 5px;
  border-bottom: unset;
  background-color: hsla(var(--red), 1);
}
ul.desktopMenu > li ul {
  display: none;
  position: absolute;
  width: 228px;
  z-index: 2;
}
ul.desktopMenu > li ul li {
  position: relative;
}
ul.desktopMenu > li ul li a {
  display: block;
  font-size: 16px;
  padding: 6px 22px 6px 10px;
  text-decoration: none;
  line-height: 1;
}
ul.desktopMenu > li ul li:hover {
  background-color: none;
}
ul.desktopMenu > li ul li:hover > ul {
  display: block;
  position: absolute;
  top: 0;
  left: 228px;
}
ul.desktopMenu > li ul li.parent > a {
  background-image: url(../images/menuArrowRight.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
ul.desktopMenu > li ul li.current, ul.desktopMenu > li ul li.active {
  background-color: none;
}

ul.desktopMenu > li:hover ul {
  display: block;
}
ul.desktopMenu > li:hover ul ul {
  display: none;
}
ul.desktopMenu li:last-child a {
  margin-right: 0;
}
ul.desktopMenu > li.active > a {
  border-bottom: 3px solid hsla(var(--red), 1);
}
ul.desktopMenu ul li {
  background-color: hsla(var(--midGray), 1.0);
  color: hsla(var(--white), 1);
}
ul.desktopMenu ul li:hover {
  background-color: hsla(var(--lightGray), 1.0);
}
ul.desktopMenu ul li > a {
  color: hsla(var(--white), 1);
}
ul.desktopMenu ul li.active {
  background-color: oklch(59.37% 0.145 262.24);
}
ul.desktopMenu ul li.current > a {
  background-color: hsla(var(--red), 1);
}

ul.mobileMenu a.highlighted {
  margin: 18px 0;
  background-color: hsla(var(--red), 1);
  color: hsla(var(--white), 1);
  padding: 5px 5px 5px 5px !important;
  border-bottom: unset;
  background-color: hsla(var(--red), 1);
  margin-left: 20px;
}

#burgerMenu {
  display: flex;
  flex: 0 0 36px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 3px 9px;
  border-radius: var(--border-radius);
  z-index: 3;
  cursor: pointer;
  background-color: hsla(var(--red), 0.5);
  transition: background-color var(--transition-time);
}
#burgerMenu .top, #burgerMenu .middle, #burgerMenu .bottom {
  width: 100%;
  height: 3px;
  background-color: hsla(var(--white), 1);
  transition: all var(--transition-time);
}
#burgerMenu .top, #burgerMenu .middle {
  margin-bottom: 3px;
}
#burgerMenu:hover {
  background-color: hsla(var(--red), 1.0);
}
#burgerMenu:hover > div {
  background-color: hsla(var(--white), 1);
}
#burgerMenu.toggled {
  background-color: hsla(var(--red), 1.0);
}
#burgerMenu.toggled:hover {
  background-color: hsla(var(--red), 0.5);
}
#burgerMenu.toggled .top {
  transform: translate(0, 6px) rotate(45deg);
  background-color: hsla(var(--white), 1);
}
#burgerMenu.toggled .middle {
  opacity: 0;
}
#burgerMenu.toggled .bottom {
  transform: translate(0, -6px) rotate(-45deg);
  background-color: hsla(var(--white), 1);
}

@media (max-width: 1640px) {
  ul.desktopMenu > li:nth-child(6) ul {
    left: -175px;
  }
  ul.desktopMenu > li:nth-child(6) ul a {
    text-align: right;
  }
}
@media (max-width: 1405px) {
  ul.desktopMenu > li:nth-child(5) ul {
    left: -140px;
  }
  ul.desktopMenu > li:nth-child(5) ul a {
    text-align: right;
  }
}
@media (max-width: 1150px) {
  ul.desktopMenu > li.parent > a {
    margin-right: 14px;
  }
}
@media (max-width: 1039px) {
  header {
    border-bottom: 1px solid hsla(var(--black), 0.2);
    background-color: hsla(var(--black), 0.7);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    padding: 10px;
    position: fixed;
    width: 100%;
  }
  nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 80px;
    left: -300vw;
    bottom: 0;
    z-index: 2;
    opacity: 0.2;
    transform: translateX(0) rotate(0deg);
    transition: all var(--transition-time) ease;
    padding: 24px;
  }
  nav.active {
    background-color: hsla(var(--blue), 1);
    opacity: 1;
    left: 0;
    width: 100vw;
  }
  nav.active #desktopLogo, nav.active #gevayLogo {
    display: none;
  }
  nav #miscellaneousButtons {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  nav #miscellaneousButtons div {
    display: flex;
  }
  nav #miscellaneousButtons div a:nth-child(3) button {
    margin-right: 0;
  }
  nav #miscellaneousButtons div .socialButton {
    background-color: hsla(var(--white), 1);
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-right: 12px;
    transition: background-color var(--transition-time);
  }
  nav #miscellaneousButtons div .socialButton:hover {
    background-color: hsla(var(--lightBlue), 1);
  }
  nav #miscellaneousButtons div .socialButton img {
    width: 14px;
    height: 14px;
  }
  nav #miscellaneousButtons .languageSelectorButton {
    width: 65px;
    height: 36px;
    text-align: left;
    padding-left: 12px;
    border: 0;
    transition: background-color var(--transition-time);
    border-radius: var(--border-radius);
    color: hsla(var(--blue), 1);
    text-transform: uppercase;
    font-family: "kanitmedium";
    background-image: url(../images/arrowDown.svg);
    background-color: hsla(var(--white), 1);
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
    background-size: 9px 5px;
    font-size: 14px;
    cursor: pointer;
  }
  nav #miscellaneousButtons .languageSelectorButton:hover {
    background-image: url(../images/arrowDownWhite.svg);
    background-color: hsla(var(--lightBlue), 1);
  }
  nav ul.mobileMenu {
    width: 100%;
    height: calc(100% - 84px);
    margin: 0 0;
    overflow-y: scroll;
    scroll-behavior: smooth;
  }
  nav ul.mobileMenu > li {
    border-bottom: 1px solid hsla(var(--lightBlue), 0.3);
  }
  nav ul.mobileMenu > li:last-child {
    border-bottom: none;
  }
  nav ul.mobileMenu a {
    display: inline-block;
    padding: 18px 20px;
    color: hsla(var(--white), 1);
    text-decoration: none;
    font-size: 16px;
  }
  nav ul.mobileMenu li.active > a {
    color: hsla(var(--red), 1.0);
  }
}

@media (max-width: 400px) {
  nav {
    top: 67px;
  }
}

@media (min-width: 1040px) {
  #burgerMenu, #mobileLogo {
    display: none !important;
  }
}

#main-nav-check {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.mobileMenu li > .sub-nav {
  display: none;
}

.mobileMenu li.current > a,
.mobileMenu li > .sub-nav li.current > a {
  color: hsla(var(--red), 1) !important;
}

.sub-nav-check:checked + ul {
  display: block;
  padding-left: 20px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.sub-nav-check:checked + ul > li {
  position: relative;
  height: auto;
}

.toggle-sub {
  position: relative;
  position: relative;
  left: 20px;
}

.toggle-sub:hover {
  color: #fff;
  cursor: pointer;
}

.toggle-sub.active .subMenuArrow {
  transform: rotate(0);
}

.toggle-sub > img {
  pointer-events: none;
}

.parent input[type=checkbox] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.sub-nav-check:checked + ul li a {
  display: inline-block;
  padding: 5px 0;
  text-decoration: none;
}

.subMenuArrow {
  position: relative;
  top: -2px;
  display: inline-block;
  cursor: pointer;
  transform: rotate(-90deg);
  transition: rotate var(--transition-time);
}

.sub-nav-check:checked + ul > li > a {
  margin-left: 20px;
}

.sub-nav-check:checked + ul > li li > a {
  margin-left: 40px;
}

.sub-nav-check:checked + ul > li li li > a {
  margin-left: 60px;
}

.sub-nav-check:checked + ul > li li li li > a {
  margin-left: 80px;
}

.sub-nav-check:checked + ul > li li li li li > a {
  margin-left: 100px;
}

.sub-nav-check:checked + ul > li li li li li li > a {
  margin-left: 120px;
}

#backgroundContainer {
  background-image: url(../images/vaultBg.webp);
  background-position: center center;
  height: 100vh;
}

#backgroundContainer.subPage.dark {
  background-color: hsla(var(--darkGray), 1.0);
  background-image: unset;
  height: unset;
  min-height: 100vh;
}

#backgroundContainer.subPage.light {
  background-color: hsla(var(--white), 1.0);
  background-image: unset;
  height: unset;
  min-height: 100vh;
}


#desktopLogo {
  background: url(../images/autotarolas_logo.svg) no-repeat;
  width: 159px;
  height: 59px;
  margin: 0 30px 0 20px;
}

#gevayLogo {
  background: url(../images/gevay_classic_logo.svg) no-repeat;
  width: 127px;
  height: 59px;
  margin: 0 20px 0 30px;
}

#mobileLogo {
  background: url(../images/logo.svg) no-repeat;
  width: 300px;
  height: 59px;
}


@media (max-width: 400px) {
  #mobileLogo {
    width: 237px;
    height: 46px;
  }
}

#navContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid hsla(var(--black), 0.2);
  background-color: hsla(var(--black), 0.7);
  box-shadow: 0 5px 7px 0 hsla(var(--black), 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  position: fixed;
  width: 100%;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid hsla(var(--black), 0.2);
  background-color: hsla(var(--black), 0.7);
  box-shadow: 0 -5px 7px 0 hsla(var(--black), 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  color: hsla(var(--white), 1);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px;
  font-size: 16px;
}

.footer-content a {
  color: hsla(var(--white), 1.0);
}

.footer-content .fb {
  display: block;
  background: url(../images/facebook.svg) no-repeat;
  width: 16px;
  height: 16px;
}

@media (max-width: 400px) {
  nav {
    top: 67px;
  }
}

@media (max-width: 1039px) {
.footer-content {
   flex-direction: column;
}
.footer {
position: relative;
}
}

#price-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px 30px;
}

@media only screen and (max-width: 810px) {
  #price-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 590px) {
  #price-list {
    grid-template-columns: 1fr;
  }
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 0 20px;
}

.container h1 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.subPage.dark .container h1 {
   color: hsla(var(--white), 1.0);
   -webkit-hyphens: auto;
     -moz-hyphens: auto;
     -ms-hyphens: auto;
     -o-hyphens: auto;
     hyphens: auto;
}

.subPage.light .container h1 {
   color: hsla(var(--darkGray), 1.0);
   -webkit-hyphens: auto;
     -moz-hyphens: auto;
     -ms-hyphens: auto;
     -o-hyphens: auto;
     hyphens: auto;
}

.container .page-icon {
  display: block;
  max-width: 100px;
  height: auto;
  margin: 0 auto 40px;
}

.subPage.dark .container p {
  margin-bottom: 20px;
  color: hsla(var(--white), 1.0);
  font-size: 16px;
}

.subPage.light .container p {
  margin-bottom: 20px;
  color: hsla(var(--darkGray), 1.0);
  font-size: 16px;
}

.last {
  margin-bottom: 60px;
}

.container .button {
  display: inline-block;
  padding: 8px 12px;
  background-color: rgba(var(--red), 1);
  color: var(--black);
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 400ms;
}

.container .button:hover {
  background-color: rgba(var(--red), 0.7);
}



div[itemprop="articleBody"] ul,
div[itemprop="articleBody"] li {
  list-style: revert;
  margin: revert;
  padding: revert;
}

.container a {
  color: hsla(var(--red), 1.0);
  transition: color 400ms;
}

.container a:hover {
  color: hsla(var(--red), 0.7);
}

.price-group .title {
  color: hsla(var(--red), 1.0) !important;
  text-align: center;
  font-weight: 700;
  font-size: 24px !important;
}

.price-group h3 {
  text-align: center;
  color: hsla(var(--white), 1.0);
}

.price-group h3 span {
  font-size: 16px;
}

.subPage.dark .price-group .bullets,
.subPage.dark .bullets {
  margin-bottom: 20px;
  font-size: 16px;
  padding: 0;
  color: hsla(var(--white), 1.0);
}

.subPage.light .price-group .bullets,
.subPage.light .bullets {
  margin-bottom: 20px;
  font-size: 16px;
  padding: 0;
  color: hsla(var(--darkGray), 1.0);
}

.bullets {
   list-style-type: disc;  
}

.price-group p {
  font-size: 16px;
}

.price-group ul li {
  list-style-type: disc;
  margin: 0 0 5px 15px;
  transition: all 400ms;
  cursor: default;
  padding-left: 5px;
}

.price-group ul li:has(a) {
   padding-left: 0;
}

.price-group ul li a {
  color: hsla(var(--red), 1.0);
  transition: all 400ms;
  display: block;
  text-decoration: none;
  padding: 1px 5px;
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}

.price-group a:hover {
  background-color: hsla(var(--white), 1.0);
  color: hsla(var(--red), 1.0);
}



.price-group ul li.nobullet {
  list-style-type: none;
}

.price-group ul li:hover {
  // color: rgba(var(--red), 1.0);
  // transform:scale(1.05,1.17);
}

.price-group ul li > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.price-group ul li > div > div:nth-child(2) {
  padding-left: 10px;
  display: flex;
  justify-content: flex-end;
}


.price-group .price-image {
  display: block;
  width: 60%;
  height: auto;
  margin: 0 auto 20px;
}

.price-group h3 {
  margin-bottom: 10px;
}

.bg-image img {
  display: block;
  width: 100%;
  height: auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 50px;
}

.video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 0;
}