@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  font-family: poppins;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  height: auto;
  min-height: 500px;
  position: relative;
  background-image: url(https://images.unsplash.com/photo-1501676491272-7bbd3e71f7e1?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=687a32748561c1902aca06a66f247776&auto=format&fit=crop&w=1500&q=90);
  background-size: cover;
  background-position: center;
  background-image: linear-gradient( 109.6deg,  rgba(112,246,255,0.33) 11.2%, rgba(221,108,241,0.26) 42%, rgba(229,106,253,0.71) 71.5%, rgba(123,183,253,1) 100.2% );
}

.hero-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /*position: absolute;*/
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.hero-box {
  flex-basis: 33.3%;
  background: #f0f0f0;
  min-height: 300px;
  padding: 60px 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-box:hover .hero-box__circle {
  width: 100%;
  height: 100%;
  transition: width 0.3s ease, border-bottom-left-radius 0.3s ease, border-bottom-right-radius 0.1s ease, border-top-left-radius 0.1s ease, border-top-right-radius 0.1s ease;
  top: 0;
  right: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.hero-box:hover .hero-box__circle:after {
  transform: scale(1);
  transition: 0.2s ease;
  transition-delay: 0.1s;
}
.hero-box:hover .hero-box__circle:before {
  transition: 0.2s ease;
  transition-delay: 0.1s;
  right: 100px;
  top: 100px;
}
.hero-box:hover .hero-box__body {
  color: #e6e6e6;
  transition: 0.15s ease;
  transition-delay: 0.15s;
}
.hero-box:hover .hero-box__title {
  color: white;
  transition: 0.1s ease;
  transition-delay: 0.15s;
}

.hero-box__title {
  font-weight: 600;
  position: relative;
  color: #091517;
}

.hero-box__body {
  font-size: 14px;
  color: #969696;
  position: relative;
}

.hero-box__circle {
  width: 50px;
  height: 50px;
  background: #c8c8c8;
  border-top-left-radius: 100rem;
  border-top-right-radius: 100rem;
  border-bottom-right-radius: 100rem;
  border-bottom-left-radius: 100rem;
  position: absolute;
  display: block;
  right: 50px;
  top: 50px;
  transition: width 0.15s ease, height 0.15s ease, border-bottom-left-radius 0.3s ease, border-bottom-right-radius 0.3s ease, border-top-left-radius 0.3s ease, border-top-right-radius 0.3s ease;
}
.hero-box__circle:after {
  width: 300px;
  height: 300px;
  position: absolute;
  top: -100px;
  right: -100px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  border-radius: 100rem;
  transform: scale(0);
}
.hero-box__circle:before {
  width: 25px;
  height: 25px;
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItYXJyb3ctdXAtcmlnaHQiPjxsaW5lIHgxPSI3IiB5MT0iMTciIHgyPSIxNyIgeTI9IjciPjwvbGluZT48cG9seWxpbmUgcG9pbnRzPSI3IDcgMTcgNyAxNyAxNyI+PC9wb2x5bGluZT48L3N2Zz4=);
  background-size: cover;
  transition: 0.5s ease;
}

.hero-box__circle--green {
  background-color: #00c569;
}

.hero-box__circle--blue {
  background-color: #0011c6;
}

.hero-box__circle--orange {
  background-color: #fd7d02;
}

header {
  display: flex;
  margin: 0 50px;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.header-branding,
.header-links {
  display: inherit;
  align-items: center;
}

.header-branding__title {
  color: #161f75;
  margin-right: 60px;
}

.header-branding__link {
  color: #091517;
  text-decoration: none;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 100rem;
  background: #f0f0f0;
}

.header-links__anchor {
  text-decoration: none;
  font-size: 15px;
  color: #091517;
  margin-right: 40px;
}

.header-links__cart {
  color: #091517;
}

.header-links__menu {
  border-radius: 0;
  border: 0;
  background: #091517;
  height: 2px;
  width: 20px;
  font-size: 0;
  position: relative;
  margin: 0 0 5px 20px;
  cursor: pointer;
}
.header-links__menu:after, .header-links__menu:before {
  width: inherit;
  height: inherit;
  background: inherit;
  position: absolute;
  content: "";
  left: 0;
}
.header-links__menu:after {
  top: -5px;
}
.header-links__menu:before {
  top: 5px;
}

.hero-content {
  margin: 0 50px;
  height: auto;
  /*display: flex;*/
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  padding-bottom:0px !important;
  margin-bottom:-4px;
}

.hero-content__title {
  font-size: calc( 35px + 15 * ( (100vw - 499px) / 661 ) );
  color: #091517;
  max-width: 50%;
}
@media screen and (max-width: 499px) {
  .hero-content__title {
    font-size: 35px;
  }
}
@media screen and (min-width: 1160px) {
  .hero-content__title {
    font-size: 50px;
  }
}

.hero-content__links {
  /*position: absolute;*/
  /*margin-top:50px;*/
  margin-top:10px;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.hero-content__links ul li {
  list-style: none;
  display: inline-block;
}
.hero-content__links a {
  text-decoration: none;
  color: #091517;
  font-size: 14px;
  margin: 0 20px;
}

.hero-content__links__ul--light li a {
  color: #969696;
}

@media only screen and (max-width: 1000px) {
  .hero-box-container {
    flex-wrap: wrap;
  }

  .hero-box {
    flex-basis: 50%;
  }
  .hero-box:last-of-type {
    flex-basis: 100%;
  }

  .hero-content {
    height: 325px;
    flex-wrap: wrap;
  }

  .hero-content__title {
    max-width: 100%;
  }

  .hero-content__links a {
    padding: 10px 15px;
    background: #f0f0f0;
    border-radius: 100rem;
    margin: 20px 0;
  }

  .hero-content__links {
    position: relative;
  }
}
@media only screen and (max-width: 850px) {
  .header-branding__link {
    display: none;
  }

  .hero-content {
    margin: 0 20px;
  }

  header {
    margin: 0 20px;
  }

  .hero-box-container {
    position: relative;
  }

  .hero-content__links {
    display: none;
  }
}
@media only screen and (max-width: 710px) {
  .hero-box {
    flex-basis: 100%;
  }

  .header-links__anchor {
    display: none;
  }
}

.gradient {
  color: blue;
  @supports (-webkit-background-clip: text) and
    (-webkit-text-fill-color: transparent) {
    background-image: -webkit-linear-gradient(45deg, blue, purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.asa {
   /* font-size: 1.4rem; Állítsd a szöveg méretéhez igazodóan */
  position: relative;
  display: inline-block;
  margin: 0;
}

.asa::after {
  content: "";
  position: absolute;
  bottom: -4px; /* Távolság a szöveg alatt (állítható) */
  left: 0;
  width: 100%; /* A szöveg teljes szélességét lefedi */
  height: 0.75rem; /* Az aláhúzás magassága */
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/664131/underline.svg');
  background-repeat: no-repeat;
  background-size: 100% auto; /* A szélesség kitölti a szöveget, a magasság arányosan méreteződik */
  background-position: center;
  pointer-events: none;
}

.carousel {
  position: relative;
  width: 300px;
  height: 100px;
  margin-top: 40px;
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none; /* Alapértelmezetten el van rejtve */
}

.carousel-item.show {
  display: block; /* Megjelenítés, amikor az elem aktív */
}


/* Mega menu */
.mega-menu {
  opacity:0;
  visibility:hidden;
  z-index: -900;
  left: 0;
  position: absolute;
  text-align: left;
  width: 100%;
  transition: all 0.15s linear 0s;
}
/* #hoverable Class Styles */
.hoverable {
  position: static;
}

.hoverable > a:after {
  content: "\25BC";
  font-size: 10px;
  padding-left: 6px;
  position: relative;
  top: -1px;
}

.hoverable:hover .mega-menu {
  opacity:1;
  visibility:visible;
  z-index: 900;
}


/* #toggle Class Styles */

.toggleable > label:after {
  content: "\25BC";
  font-size: 10px;
  padding-left: 6px;
  position: relative;
  top: -1px;
}

.toggle-input {
  display: none;
}
.toggle-input:not(checked) ~ .mega-menu {
  opacity:0;
  visibility:hidden;
  z-index: -900;
}

.toggle-input:checked ~ .mega-menu {
  opacity:1;
  visibility:visible;
  z-index: 900;
}

.toggle-input:checked + label {
  color: white;
  background: rgb(3, 102, 114); /*@apply bg-teal-700 */
}

.toggle-input:checked ~ label:after {
  content: "\25B2";
  font-size: 10px;
  padding-left: 6px;
  position: relative;
  top: -1px;
}
