/* --------------------------------- global --------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(85, 0, 0, 0.4);
  text-shadow: none;
}

::-moz-selection {
  background: rgba(85, 0, 0, 0.4);
  text-shadow: none;
}

@font-face {
  font-family: "Satoshi-Regular";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"),
    url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi-Bold";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2"), url("./fonts/Satoshi-Bold.woff") format("woff"),
    url("./fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi-Medium";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2"), url("./fonts/Satoshi-Medium.woff") format("woff"),
    url("./fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi-Italic";
  src: url("./fonts/Satoshi-Italic.woff2") format("woff2"), url("./fonts/Satoshi-Italic.woff") format("woff"),
    url("./fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Didot-Regular";
  src: url("./fonts/Didot-Regular.woff2") format("woff2"), url("./fonts/Didot-Regular.woff") format("woff"),
    url("./fonts/Didot-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Didot-Bold";
  src: url("./fonts/Didot-Bold.woff2") format("woff2"), url("./fonts/Didot-Bold.woff") format("woff"),
    url("./fonts/Didot-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --primary: #550000;
  --accent: #380000;
  --black: #0e0e0e;
  --white: #f4f4f4;
}

body {
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 30px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fel-le-mozgas {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ------------------------------- sticky-nav ------------------------------- */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  transition: transform 0.4s ease-out;
}

.sticky-nav.is-visible {
  transform: translateY(0);
}

.sticky-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-nav .logo {
  flex: 1;
}

.sticky-nav .logo img {
  height: auto;
  transition: none;
}

.sticky-nav nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-nav nav a {
  font-family: "Satoshi-Medium";
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}

.sticky-nav nav a:hover {
  transform: scale(1.1);
}

.sticky-nav nav a#contact {
  background-color: var(--primary);
  padding: 10px 20px;
  border-radius: 10px;
}

@media only screen and (max-width: 1100px) {
  .sticky-nav {
    display: none;
  }
}

/* ----------------------------- responsive nav ----------------------------- */

.nav-toggle {
  z-index: 3;
  position: absolute;
  top: 38px;
  right: 30px;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle img {
  width: 20px;
  height: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

header {
  z-index: 2;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 70%;
  background-color: var(--primary);
  padding: 100px 30px 30px 30px;
  -webkit-box-shadow: -8px 0px 15px 1px rgba(0, 0, 0, 0.2);
  box-shadow: -8px 0px 15px 1px rgba(0, 0, 0, 0.2);

  transform: translateX(100%);

  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

header nav {
  display: flex;
  flex-direction: column;
}

header nav a {
  font-family: "Satoshi-Medium";
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 15px;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open header {
  transform: translateX(0);
}

body.nav-open .nav-toggle img:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle img:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle img:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media only screen and (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }
}

/* ---------------------------------- hero ---------------------------------- */

.hero {
  background-image: url("./img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
}

.hero .container .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero .container .top-bar .logo {
  flex: 1;
}

.hero .container .top-bar .logo img {
  width: 424px;
}

.hero .container .top-bar nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .container .top-bar nav a {
  font-family: "Satoshi-Medium";
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}

.hero .container .top-bar nav a:hover {
  transform: scale(1.1);
}

.hero .container .top-bar nav a#contact {
  background-color: var(--primary);
  padding: 10px 20px;
  border-radius: 10px;
}

.hero .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 60%;
  margin-left: 40%;
}

.hero .container .content h1 {
  font-family: "Didot-Bold";
  font-size: 60px;
  color: var(--white);
  text-align: right;
}

.hero .container .content p {
  font-family: "Satoshi-Regular";
  font-size: 20px;
  color: var(--white);
  text-align: right;
  margin-top: 20px;
}

.hero .container .content a.cta {
  font-family: "Satoshi-Regular";
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary);
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 20px;
  transition: all 0.2s;
}

.hero .container .content a.cta:hover {
  transform: scale(1.1);
}

.hero .container .bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .container .bottom-bar img {
  animation: fel-le-mozgas 1.5s ease-in-out infinite;
}

@media only screen and (max-width: 1100px) {
  .hero {
    height: 400px;
  }

  .hero .container {
    padding: 20px 30px 50px 30px;
  }

  .hero .container .top-bar .logo img {
    width: 120px;
  }

  .hero .container .top-bar nav {
    display: none;
  }

  .hero .container .content {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .hero .container .content h1 {
    font-size: 25px;
  }

  .hero .container .content p {
    font-size: 14px;
    width: 80%;
  }

  .hero .container .content a.cta {
    font-size: 13px;
  }

  .hero .container .bottom-bar {
    display: none;
  }
}

/* ------------------------------- how-we-work ------------------------------ */

.how-we-work .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
}

.how-we-work .container h2 {
  font-family: "Didot-Bold";
  font-size: 35px;
  color: var(--primary);
}

.how-we-work .container h3 {
  font-family: "Didot-Regular";
  font-weight: 400;
  font-size: 16px;
  width: 40%;
  text-align: center;
  color: var(--black);
  margin-top: 10px;
}

.how-we-work .container .row {
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  align-items: stretch;
  gap: 15px;
  position: relative;
}

.how-we-work .container .row .box {
  background-color: var(--black);
  padding: 30px;
  flex: 1;
  position: relative;
}

.how-we-work .container .row .box .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.how-we-work .container .row .box .wrapper img.decor-1 {
  position: absolute;
  top: -10px;
  left: -10px;
}

.how-we-work .container .row .box .wrapper img.decor-2 {
  transform: rotate(180deg);
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.how-we-work .container .row .box .wrapper img.decor-3 {
  transform: rotate(90deg);
  position: absolute;
  top: -18px;
  right: -5px;
}

.how-we-work .container .row .box .wrapper#2 img {
  transform: rotate(90deg);
}

.how-we-work .container .row .box span {
  font-size: 35px;
  font-family: "Didot-Bold";
  color: var(--white);
}

.how-we-work .container .row .box span#bigger {
  font-size: 100px;
  margin-right: 5px;
  line-height: 70px;
}

.how-we-work .container .row .box p {
  color: var(--white);
  font-family: "Satoshi-Regular";
  font-size: 16px;
  margin-top: 20px;
}

@media only screen and (max-width: 1100px) {
  .how-we-work .container {
    margin-top: 50px;
    margin-bottom: 0;
  }

  .how-we-work .container h2 {
    font-size: 20px;
  }

  .how-we-work .container h3 {
    font-size: 13px;
    width: 100%;
  }

  .how-we-work .container .row {
    flex-direction: column;
    margin-top: 50px;
  }

  .how-we-work .container .row .box {
    padding: 0 20px 20px 20px;
  }

  .how-we-work .container .row .box span {
    font-size: 20px;
  }

  .how-we-work .container .row .box span#bigger {
    font-size: 50px;
  }

  .how-we-work .container .row .box p {
    font-size: 14px;
    line-height: 20px;
  }

  .how-we-work .container .row .box .wrapper img.decor-1 {
    transform: scale(0.7);
    top: -25px;
    left: -25px;
  }

  .how-we-work .container .row .box .wrapper img.decor-2 {
    transform: scale(0.7) rotate(90deg);
    top: -30px;
    right: -20px;
  }

  .how-we-work .container .row .box .wrapper img.decor-3 {
    transform: scale(0.7) rotate(180deg);
    right: -25px;
    top: auto;
    bottom: -25px;
  }
}

/* --------------------------------- crease --------------------------------- */

.crease .top {
  margin-bottom: -100px;
}

.crease .top .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.crease .top .container .image {
  width: 340px;
  height: 175px;
  position: relative;
}

.crease .top .container .image .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.crease .top .container .image .wrapper img.decor-1 {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 65px;
  height: 76px;
}

.crease .top .container .image img {
  width: 100%;
  height: 100%;
}

.crease .center {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./img/crease-bg.png");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.crease .center p {
  font-size: 40px;
  font-family: "Didot-Bold";
  text-align: center;
  color: var(--white);
}

.crease .bottom {
  margin-top: -100px;
}

.crease .bottom .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.crease .bottom .container .image {
  width: 340px;
  height: 175px;
  position: relative;
}

.crease .bottom .container .image .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.crease .bottom .container .image .wrapper img.decor-1 {
  transform: rotate(180deg);
  position: absolute;
  bottom: -20px;
  left: -10px;
  width: 65px;
  height: 76px;
}

.crease .bottom .container .image img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1100px) {
  .crease .top {
    margin-bottom: -40px;
  }
  .crease .top .container .image,
  .crease .bottom .container .image {
    width: 144px;
    height: auto;
  }

  .crease .center {
    height: 180px;
    background-image: url("./img/crease-bg-responsive.webp");
    background-size: 100% 100%;
  }

  .crease .center p {
    font-size: 15px;
  }

  .crease .top .container .image .wrapper img.decor-1 {
    transform: scale(0.7) rotate(270deg);
    left: -20px;
    top: -20px;
  }

  .crease .bottom {
    margin-top: -40px;
  }

  .crease .bottom .container .image .wrapper img.decor-1 {
    transform: scale(0.7) rotate(180deg);
    left: -15px;
    bottom: -20px;
  }
}

/* ------------------------------ home-delivery ----------------------------- */

.home-delivery .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 70px;
}

.home-delivery .container h2 {
  font-family: "Didot-Bold";
  font-size: 35px;
  color: var(--primary);
}

.home-delivery .container h3 {
  font-family: "Didot-Regular";
  font-weight: 400;
  font-size: 16px;
  width: 40%;
  text-align: center;
  color: var(--black);
  margin-top: 10px;
}

.home-delivery .container .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 70px;
}

.home-delivery .container .row .left {
  width: 60%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

.home-delivery .container .row .left li {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--black);
  margin-bottom: 5px;
  padding-left: 5px;
}

.home-delivery .container .row .left li::marker {
  color: var(--primary);
  font-size: 26px;
  font-family: "Didot-Bold";
}

.home-delivery .container .row .right {
  width: 40%;
  float: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-delivery .container .row .right img {
  width: 100%;
  position: relative;
}

.home-delivery .container .row .right img.decor-1 {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
}

.home-delivery .container .row .right img.decor-2 {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 60px;
  transform: rotate(180deg);
}

@media only screen and (max-width: 1100px) {
  .home-delivery .container {
    margin-top: 40px;
  }

  .home-delivery .container h2 {
    font-size: 20px;
  }

  .home-delivery .container h3 {
    font-size: 13px;
    width: 100%;
  }

  .home-delivery .container .row {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 40px;
    gap: 30px;
  }

  .home-delivery .container .row .left {
    width: 100%;
    padding-left: 5px;
  }

  .home-delivery .container .row .left li::marker {
    font-size: 17px;
  }

  .home-delivery .container .row .left li {
    font-size: 14px;
  }

  .home-delivery .container .row .right {
    width: 80%;
  }
}

/* ---------------------------------- quote --------------------------------- */

.quote {
  width: 100%;
  margin-top: 200px;
  position: relative;
}

.quote .background {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./img/quote-bg.png");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.quote .giorgio {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -35px;
}

.quote .giorgio .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.quote .giorgio .container img {
  order: 2;
}

.quote .giorgio .container .message-box {
  z-index: 2;
  width: 509px;
  height: 244px;
  order: 1;
  background-image: url(./img/message-giorgio-bg.svg);
  margin-top: -400px;
  margin-right: -50px;
  padding: 20px 25px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.quote .giorgio .container .message-box h4 {
  font-family: "Didot-Bold";
  font-size: 18px;
  color: var(--white);
}

.quote .giorgio .container .message-box .italic {
  display: flex;
  align-items: center;
  margin-left: 30px;
  margin-top: 20px;
}

.quote .giorgio .container .message-box .italic img {
  order: 1;
}

.quote .giorgio .container .message-box .italic p {
  order: 2;
  font-family: "Satoshi-Italic";
  line-height: 20px;
  font-size: 16px;
  color: var(--white);
  margin-left: 15px;
  margin-top: 0;
}

.quote .giorgio .container .message-box p {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
  margin-top: 20px;
}

.quote .coco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -40px;
}

.quote .coco .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.quote .coco .container img {
  order: 1;
}

.quote .coco .container .message-box {
  z-index: 2;
  width: 509px;
  height: 244px;
  order: 2;
  background-image: url(./img/message-coco-bg.svg);
  margin-left: -50px;
  margin-bottom: -300px;
  padding: 20px 25px;
  padding-top: 40px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.quote .coco .container .message-box h4 {
  font-family: "Didot-Bold";
  font-size: 18px;
  color: var(--white);
}

.quote .coco .container .message-box .italic {
  display: flex;
  align-items: center;
  margin-left: 30px;
  margin-top: 20px;
}

.quote .coco .container .message-box .italic img {
  order: 1;
}

.quote .coco .container .message-box .italic p {
  order: 2;
  font-family: "Satoshi-Italic";
  line-height: 20px;
  font-size: 16px;
  color: var(--white);
  margin-left: 15px;
  margin-top: 0;
}

.quote .coco .container .message-box p {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
  margin-top: 20px;
}

@media only screen and (max-width: 1100px) {
  .quote {
    margin-top: 150px;
  }
  .quote .background {
    height: 460px;
    width: 100%;
    background-image: url("./img/quote-bg-responsive.webp");
    background-size: 100% 100%;
  }

  .quote .coco .container img {
    height: 144px;
    width: 80;
  }

  .quote .coco {
    top: -250px;
  }

  .quote .coco .container {
    justify-content: space-between;
  }

  .quote .coco .container .message-box {
    margin-left: 0px;
    margin-bottom: -200px;
    width: 243px;
    height: 277px;
    background-image: url(./img/message-coco-bg-responsive.svg);
    padding: 25px 15px 20px 20px;
  }

  .quote .coco .container .message-box h4 {
    font-size: 17px;
  }

  .quote .coco .container .message-box .italic {
    margin-left: 10px;
    margin-top: 12px;
  }

  .quote .coco .container .message-box .italic img {
    height: 77px;
  }

  .quote .coco .container .message-box .italic p {
    font-size: 14px;
  }

  .quote .coco .container .message-box p {
    font-size: 14px;
    margin-top: 10px;
  }

  .quote .giorgio .container {
    justify-content: space-between;
  }

  .quote .giorgio .container img {
    height: 144px;
    width: 80;
  }

  .quote .giorgio {
    bottom: -80px;
  }

  .quote .qiorgio .container {
    justify-content: space-between;
  }

  .quote .giorgio .container .message-box {
    margin-top: 150px;
    margin-right: 0px;
    width: 243px;
    height: 245px;
    background-image: url(./img/message-giorgio-bg-responsive.svg);
    padding: 25px 10px 20px 20px;
  }

  .quote .giorgio .container .message-box h4 {
    font-size: 17px;
  }

  .quote .giorgio .container .message-box .italic {
    margin-left: 10px;
    margin-top: 12px;
  }

  .quote .giorgio .container .message-box .italic img {
    height: 60px;
  }

  .quote .giorgio .container .message-box .italic p {
    font-size: 14px;
  }

  .quote .giorgio .container .message-box p {
    font-size: 14px;
    margin-top: 10px;
  }
}
/* --------------------------------- prices --------------------------------- */

.prices {
  margin: 120px 0;
}

.prices .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 70px;
}

.prices .container h2 {
  font-family: "Didot-Bold";
  font-size: 35px;
  color: var(--primary);
}

.prices .container h3 {
  font-family: "Didot-Regular";
  font-weight: 400;
  font-size: 16px;
  width: 40%;
  text-align: center;
  color: var(--black);
  margin-top: 10px;
}

.prices .container .content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 50px;
}

.prices .container .content table {
  table-layout: fixed;
  width: 50%;
  border-collapse: collapse;
}

.prices .container .content table .center {
  width: 30%;
}

.prices .container .content table .right {
  width: 33%;
}

.prices .container .content table th {
  font-family: "Satoshi-Medium";
  font-weight: 500;
  font-size: 17px;
  text-align: right;
  padding: 10px 0;
}

.prices .container .content table td {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  text-align: right;
}

.prices .container .content table th.left {
  text-align: left;
}

.prices .container .content table tr {
  border-bottom: 2px var(--primary) solid;
}

.prices .container .content table tr:first-child,
.prices .container .content table tr:last-child {
  border: none;
}

.prices .container .content .express {
  background-color: var(--primary);
  padding: 20px 25px 20px 40px;
}

.prices .container .content .express h4 {
  font-family: "Didot-Bold";
  font-size: 25px;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

.prices .container .content .express ul li {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}

.prices .container .notes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 150px;
}

.prices .container .notes .egyszeri {
  background-image: url(./img/egyszeri-bg.svg);
  background-size: cover;
  width: 280px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 17px;
  margin-top: -23px;
}

.prices .container .notes .egyszeri p {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
}

.prices .container .notes .rendszeres {
  background-image: url(./img/rendszeres-bg.svg);
  background-size: cover;
  width: 440px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 17px;
  margin-left: 100px;
}

.prices .container .notes .rendszeres p {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
}

.prices .container .notes .rendszeres p#responsive {
  display: none;
}

.prices .container .infos {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.prices .container .infos .info-box {
  background-color: var(--black);
  padding: 20px;
  width: 50%;
}

.prices .container .infos .info-box .row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.prices .container .infos .info-box .row:last-child {
  margin-bottom: 0;
}

.prices .container .infos .info-box .row p {
  color: white;
  font-family: "Satoshi-Regular";
  font-size: 16px;
}

@media only screen and (max-width: 1100px) {
  .prices {
    margin-bottom: 50px;
  }

  .prices .container h2 {
    font-size: 20px;
  }

  .prices .container h3 {
    font-size: 13px;
    width: 80%;
  }

  .prices .container .content {
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
  }

  .prices .container .content table {
    width: 100%;
  }

  .prices .container .content table th {
    font-size: 14px;
  }

  .prices .container .content table td {
    font-size: 14px;
  }

  .prices .container .content table .center {
    width: 35%;
  }

  .prices .container .content table .right {
    width: 35%;
  }

  .prices .container .content .express {
    width: 100%;
    padding: 15px;
  }

  .prices .container .content .express h4 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .prices .container .content .express ul {
    padding-left: 20px;
  }

  .prices .container .content .express ul li {
    text-align: left;
    font-size: 14px;
  }

  .prices .container .notes {
    background-color: var(--accent);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    padding: 20px;
  }

  .prices .container .notes .egyszeri {
    display: none;
  }

  .prices .container .notes .rendszeres {
    position: static;
    background: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 0;
  }

  .prices .container .notes .rendszeres p {
    width: 100%;
    text-align: center;
  }

  .prices .container .notes .rendszeres p {
    display: none;
  }

  .prices .container .notes .rendszeres p#responsive {
    display: block;
    font-size: 14px;
  }

  .prices .container .infos {
    margin-top: 20px;
  }

  .prices .container .infos .info-box {
    width: 100%;
  }

  .prices .container .infos .info-box .row {
    margin-bottom: 15px;
  }

  .prices .container .infos .info-box .row img {
    width: 15px;
    height: auto;
  }

  .prices .container .infos .info-box .row p {
    font-size: 14px;
  }
}

/* -------------------------------- delivery -------------------------------- */

.delivery {
  margin-top: 30px;
  height: 700px;
  background-image: url("./img/delivery-bg.svg");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.delivery .container h2 {
  font-family: "Didot-Bold";
  font-size: 35px;
  color: var(--primary);
}

.delivery .container h3 {
  font-family: "Didot-Regular";
  font-weight: 400;
  font-size: 16px;
  width: 33%;
  text-align: left;
  color: var(--black);
  margin-top: 10px;
}

.delivery .container .row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 120px;
}

.delivery .container .row .box {
  background-color: var(--black);
  width: 25%;
  padding: 30px;
  position: relative;
}

.delivery .container .row .box .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.delivery .container .row .box .wrapper img.decor-1 {
  transform: rotate(-90deg);
  position: absolute;
  bottom: -15px;
  left: -5px;
}

.delivery .container .row .box .wrapper img.decor-1 {
  transform: rotate(-90deg);
  position: absolute;
  bottom: -15px;
  left: -5px;
}

.delivery .container .row .box .wrapper img.decor-2 {
  position: absolute;
  top: -10px;
  left: -10px;
}

.delivery .container .row .box .wrapper img.decor-3 {
  transform: rotate(-180deg);
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.delivery .container .row .box h3 {
  font-family: "Didot-Bold";
  font-size: 30px;
  color: var(--white);
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.delivery .container .row .box p {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.delivery-responsive {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.delivery-responsive h2 {
  font-family: "Didot-Bold";
  font-size: 20px;
  color: var(--primary);
}

.delivery-responsive h3 {
  font-family: "Didot-Regular";
  font-weight: 400;
  font-size: 13px;
  width: 80%;
  text-align: center;
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 20px;
}

.delivery-responsive {
  display: none;
}

.delivery-responsive .background {
  background-image: url(./img/delivery-bg-responsive.svg);
  width: 100%;
  height: 160px;
  background-position: center;
  background-size: auto;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-responsive .background .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-responsive .background .container .box {
  background-color: var(--black);
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-evenly;
  width: 100%;
  padding: 20px 10px;
}

.delivery-responsive .background .container .box .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.delivery-responsive .background .container .box .wrapper img {
  transform: scale(0.7) rotate(180deg);
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.delivery-responsive .background .container .box .place h3 {
  font-size: 16px;
  color: var(--white);
  font-family: "Didot-Bold";
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.delivery-responsive .background .container .box .place p {
  font-family: "Satoshi-Regular";
  font-size: 14px;
  color: var(--white);
  text-align: center;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1100px) {
  .delivery {
    display: none;
  }
  .delivery-responsive {
    display: flex;
  }
}

/* -------------------------------- about-us -------------------------------- */

.about-us {
  margin-bottom: 100px;
}

.about-us .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 70px;
}

.about-us .container h2 {
  font-family: "Didot-Bold";
  font-size: 35px;
  color: var(--primary);
}

.about-us .container h3 {
  font-family: "Didot-Regular";
  font-weight: 400;
  font-size: 16px;
  width: 40%;
  text-align: center;
  color: var(--black);
  margin-top: 10px;
}

.about-us .container .row {
  display: flex;
  align-items: stretch;
  margin-top: 50px;
  gap: 60px;
}

.about-us .container .row .left {
  width: 50%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.about-us .container .row .left p {
  margin-bottom: 10px;
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--black);
}

.about-us .container .row .right {
  width: 50%;
}

.about-us .container .row .right .box {
  background-color: var(--black);
  padding: 40px;
}

.about-us .container .row .right .box .band {
  background-color: var(--primary);
  display: inline-flex;
  gap: 10px;
  padding: 10px 10px 10px 60px;
  margin-left: -60px;
  margin-bottom: 10px;
}

.about-us .container .row .right .box .band p {
  margin-bottom: 0;
  font-family: "Satoshi-Bold";
  color: white;
  text-decoration: none;
}

.about-us .container .row .right .box .band p a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.about-us .container .row .right .box h3 {
  color: var(--white);
  margin: 0;
  padding: 0;
  width: auto;
  text-align: left;
  font-family: "Didot-Bold";
  font-size: 25px;
  margin-bottom: 20px;
}

.about-us .container .row .right .box p {
  color: var(--white);
  font-family: "Satoshi-Regular";
  font-size: 16px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1100px) {
  .about-us {
    margin-bottom: 40px;
  }
  .about-us .container h2 {
    font-size: 20px;
  }

  .about-us .container h3 {
    font-size: 13px;
    width: 100%;
  }

  .about-us .container .row {
    flex-direction: column;
    margin-top: 30px;
  }

  .about-us .container .row {
    gap: 20px;
  }

  .about-us .container .row .left {
    width: 100%;
  }

  .about-us .container .row .left p {
    font-size: 14px;
  }

  .about-us .container .row .right {
    width: 100%;
  }

  .about-us .container .row .right .box {
    padding: 20px;
  }

  .about-us .container .row .right .box h3 {
    font-size: 20px;
  }

  .about-us .container .row .right .box p {
    font-size: 14px;
  }

  .about-us .container .row .right .box .band {
    margin-left: -35px;
    padding-left: 40px;
    align-items: center;
  }

  .about-us .container .row .right .box .band img {
    height: 15px;
    width: auto;
  }

  .about-us .container .row .right .box .band p {
    font-size: 15px;
  }
}
/* --------------------------------- footer --------------------------------- */

footer .top {
  background-color: var(--accent);
}

footer .top .container {
  display: flex;
  padding: 50px 30px;
}

footer .top .container .left {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 40px;
}

footer .top .container .left img {
  width: 306px;
}

footer .top .container .left p {
  color: var(--white);
  font-size: 16px;
  font-family: "Satoshi-Regular";
  width: 60%;
}

footer .top .container .right {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

footer .top .container .right {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
}

footer .top .container .right div {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
}

footer .top .container .right h4 {
  font-size: 17px;
  font-weight: 500;
  font-family: "Satoshi-Medium";
  color: var(--white);
  margin-bottom: 15px;
}

footer .top .container .right h4 {
  margin-top: 30px;
}

footer .top .container .right a {
  font-size: 17px;
  font-weight: 500;
  font-family: "Satoshi-Regular";
  text-decoration: none;
  color: var(--white);
  margin-bottom: 6px;
}

footer .bottom {
  background-color: var(--black);
}

footer .bottom p {
  color: var(--white);
  width: 100%;
  text-align: center;
  font-family: "Satoshi-Regular";
  font-size: 15px;
  padding: 5px;
}

@media only screen and (max-width: 1100px) {
  footer .top .container {
    flex-direction: column;
    padding: 50px 30px 30px 30px;
  }

  footer .top .container .left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  footer .top .container .left p {
    text-align: center;
    font-size: 14px;
    width: 100%;
  }

  footer .top .container .left img {
    width: 190px;
  }

  footer .top .container .right {
    width: 100%;
    gap: 0px;
  }

  footer .top .container .right h4 {
    font-size: 15px;
  }

  footer .top .container .right a {
    font-size: 14px;
  }

  footer .bottom p {
    font-size: 13px;
  }
}

/* ----------------------------- cookie-banner ----------------------------- */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--black);
  z-index: 2000;
  padding: 20px 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner .cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner .cookie-text {
  font-family: "Satoshi-Regular";
  font-size: 16px;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}

.cookie-banner .cookie-text a {
  font-family: "Satoshi-Medium";
  color: var(--white);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner .cookie-accept-btn {
  font-family: "Satoshi-Medium";
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary);
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner .cookie-accept-btn:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 1100px) {
  .cookie-banner {
    padding: 15px 0;
  }

  .cookie-banner .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .cookie-banner .cookie-text {
    font-size: 14px;
    text-align: center;
  }

  .cookie-banner .cookie-accept-btn {
    font-size: 14px;
    text-align: center;
  }
}
