@import url('_scrollbar.css');

html {
  overflow-y: scroll !important;
  scroll-behavior: smooth;
  background: transparent;
  border: 0;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: baseline;
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Josefin Sans", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  background-color: #0b1315;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
}

a {
  color: #fff;
  list-style: none;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  cursor: pointer;
}

h1 {
  display: block;
  font-size: 1.4em;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  text-transform: uppercase;
  color: #c9ab81;
}

img {
  max-width: 100%;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.container {
  display: flex;
  justify-content: center;
 /*  width: 100vw; */
}

/* =============================  MODAL */
.btn_benito_close,
.btn_benito_close2 {
  float: right;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  color: #c9ab81;
  background-color: #6c757d;
  border: 1px solid #c9ab81;
  border-radius: 5px;
  padding: 8px 16px;
  margin-left: 40px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.7);
}

.btn_benito_close:hover,
.btn_benito_close2:hover {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  background-color: #5b606f;
}

.btn_benito_close:focus,
.btn_benito_close2:focus {
  color: #c9ab81;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}

.btn_benito_close:not(:disabled):not(.disabled),
.btn_benito_close2:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.modal_open {
  overflow: hidden;
}

.modal {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal_open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal_dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal_dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal_dialog_centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
  max-width: 75%;
  margin: 1.75rem auto;
}

@media screen and (max-width: 851px) {
  .modal_dialog_centered {
    max-width: 98%;
  }
}

.modal_content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #0f1d22;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  text-align: justify;
  box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.99);
}

.modal_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #c9ab81;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  text-align: left;
}

.modal_header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal_title {
  margin-bottom: 0;
  line-height: 1.5;
  font-family: "caviar_dreamsbold", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 6px;
  color: #c9ab81;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.modal_body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.5;
}

.modal_body img {
  width: 45%;
  padding-right: 2%;
  padding-bottom: 1%;
  float: left;
}

.modal_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #c9ab81;
}

.fade {
  opacity: 1;
  transition: opacity 0.15s linear;
}

.fade.show {
  opacity: 0;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.8;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.8;
  }

  to {
    opacity: 1;
  }
}

/* =======  Back to Top styles - start */
.back_to_top {
  position: fixed;
  right: 33px;
  bottom: 33px;
  margin: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
}

.go_top_on {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.back_to_top svg circle {
  stroke-width: 1.4;
}

.back_to_top svg circle.popout {
  stroke-dashoffset: 101;
  stroke-dasharray: 101;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-linecap: butt;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.back_to_top svg polyline {
  stroke-width: 1.4;
}

.back_to_top:hover .popout {
  stroke-dashoffset: 0;
  stroke-dasharray: 101;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

/* ===========  #Back to Top styles - end */

.side_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 25%;
  height: 100vh;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.7);
  background-color: #0f1d22;
  z-index: 9;
}

.benito_left_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 86%;
  height: 100%;
  margin-left: 7%;
  background-color: transparent;
  outline: none;
  border-left: 1px solid #c9ab81;
  border-right: 1px solid #c9ab81;
  z-index: 101;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.benito_left_menu::-webkit-scrollbar {
  display: none;
}

.gallery_button {
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  margin-top: 10%;
}

.logo_mobile {
  margin-top: 5%;
}

.logo img {
  width: 60px;
  box-shadow: 1px 1px 6px rgba(201, 171, 129, 0.4),
    14px 14px 14px rgba(0, 0, 0, 0.7);
}

.lanauge {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.lanauge button {
  min-width: 40px;
  width: 100%;
  justify-content: center;
  padding: 5px 32px;
}

/* Search Interface Styles */
.side_search {
  margin-top: 20px;
  padding: 0 10px;
}

.search_container {
  position: relative;
  width: 100%;
}

.search_input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  font-size: 0.9rem;
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
  background-color: #1a2830;
  border: 1px solid #c9ab81;
  border-radius: 25px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.search_input:focus {
  border-color: #c9ab81;
  box-shadow: 0 0 0 2px rgba(226, 171, 93, 0.2);
  background-color: #243039;
}

.search_input::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.search_btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #c9ab81;
  transition: color 0.3s ease;
}

.search_btn:hover {
  color: #c9ab81;
}

.search_btn:focus {
  outline: 2px solid #c9ab81;
  outline-offset: 2px;
}

.search_results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #1a2830;
  border: 1px solid #c9ab81;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.search_result_item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #2d3a42;
}

.search_result_item:last-child {
  border-bottom: none;
}

.search_result_item:hover,
.search_result_item.selected {
  background-color: #243039;
}

.search_result_item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.search_result_content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search_result_name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "Open Sans Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.search_result_category {
  color: #c9ab81;
  font-size: 0.8rem;
  font-weight: 300;
}

.search_no_results {
  padding: 15px;
  text-align: center;
  color: #9ca3af;
  font-style: italic;
}

.nav {
  margin-top: 20px;
}

nav ul {
  list-style: none;
  padding-inline-start: 0px;
  line-height: 1.8;
}

.nav_side_box>li>a {
  font-family: "Open Sans Condensed", sans-serif;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.36em;
  padding: 2px 0px;
}

a {
  color: #fff;
  list-style: none;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  cursor: pointer;
}

/* menü elemek aláhúzása aktív és hover eseményre */
a .side_hover {
  position: relative;
}

/* border-top lesz az aláhúzás és balra 0-ra kicsinyitve*/
a .side_hover:before,
a .side_hover:after {
  content: "";
  display: block;
  position: absolute;
  left: -0.5%;
  bottom: -0.5em;
  width: 97%;
  height: 1px;
  border-top: 1px solid #c9ab81;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: -webkit-transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  -o-transition: transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81),
    -webkit-transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
}

/* hoverre a lekicsinyített aláhúzást vissza állítja 1-re */
a:hover .side_hover:before,
a:hover .side_hover:after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: -webkit-transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  -o-transition: transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81),
    -webkit-transform 0.8s cubic-bezier(0.28, 0.38, 0, 0.81);
}

/*  4px feltolja az aláhúzást és lgyorsabb mint az alsó */
.side_hover:after,
a:hover .side_hover:after {
  padding-bottom: 4px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: -webkit-transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  -o-transition: transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81),
    -webkit-transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
}

/*  aláhuzza a aktuális oldal linkjét kell hozzá a java */
.side_active {
  position: relative;
}

.side_active:before,
.side_active:after {
  content: "";
  display: block;
  position: absolute;
  left: -0.5%;
  bottom: -0.3em;
  width: 97%;
  height: 1px;
  border-top: 1px solid #c9ab81;
}

/*  4px feltolja az aláhúzást */
.side_active:after {
  padding-bottom: 4px;
}

/* ============== sub menühöz */
/*  4px feltolja az aláhúzást és lgyorsabb mint az alsó */
.side_hover:after,
a:hover .side_hover:after {
  padding-bottom: 4px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: -webkit-transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  -o-transition: transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81),
    -webkit-transform 0.4s cubic-bezier(0.28, 0.38, 0, 0.81);
}

/* Updated dropdown styles for new navigation structure */
#dropdown_handbags,
#dropdown_backpacks,
#dropdown_wallets,
#dropdown_dog_show,
#dropdown_special,
#dropdown_taskak,
#dropdown_penztarcak,
#dropdown_kutyakiallitas,
#dropdown_ovtaskak {
  position: relative;
}

/* Category styling */
.nav_category > a {
  font-weight: 600;
  color: #c9ab81;
  position: relative;
}

.nav_category > a:before {
  /*content: "";*/
  margin-right: 8px;
  font-size: 0.8em;
}

/* Subcategory styling */
.sub_category {
  padding: 8px 0 4px 0;
  border-bottom: 1px solid #3a474f;
  margin-bottom: 8px;
}

.sub_category_title {
  color: #c9ab81;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Open Sans Condensed", sans-serif;
}

.nav_sub_side_box {
  position: absolute;
  top: 0;
  padding: 5% 0% 5% 15%;
  margin-left: 101%;
  width: 350px;
  background: #0f1d22;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7), 10px 10px 25px rgba(0, 0, 0, 0.9),
    0px 0px 25px rgba(0, 0, 0, 0.9);
  z-index: 10;
  display: none;
  border: 1px solid #c9ab81;
  border-radius: 8px;
}

/* Adjust positioning for new navigation structure */
#sub_nav_side_box_handbags.nav_sub_side_box {
  top: -400%;
}

#sub_nav_side_box_backpacks.nav_sub_side_box {
  top: -250%;
}

#sub_nav_side_box_wallets.nav_sub_side_box {
  top: -150%;
}

#sub_nav_side_box_dog_show.nav_sub_side_box {
  top: -50%;
}

#sub_nav_side_box_special.nav_sub_side_box {
  top: 50%;
}

/* Legacy positioning for backward compatibility */
#sub_nav_side_box_taskak.nav_sub_side_box {
  top: -1200%;
}

.nav_sub_side_box>li {
  text-align: left;
  padding: 4px 0px;
}

.nav_sub_side_box>li a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.nav_sub_side_box>li a:hover {
  color: #c9ab81;
  padding-left: 10px;
}

/* Subcategory items styling */
.nav_sub_side_box > .sub_category {
  padding: 12px 0 8px 0;
  pointer-events: none;
}

.nav_sub_side_box > .sub_category:first-child {
  padding-top: 0;
}

.nav_sub_side_box > li:not(.sub_category) {
  padding-left: 15px;
  position: relative;
}

.nav_sub_side_box > li:not(.sub_category):before {
  content: "•";
  position: absolute;
  left: 5px;
  color: #c9ab81;
  font-size: 0.8em;
}

.nav_sub_side_box>li a .sub_side_text {
  letter-spacing: 0.1em;
}

.nav_sub_side_box>li>a>span {
  position: relative;
}

.sub_nav_side_box_toggle {
  display: block;
  animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.side_social {
  margin-bottom: 20px;
}

.benito_left_menu>div:last-of-type {
  margin-top: auto;
}

/* mobile menu =================== HEADER */
.benito_container {
  display: flex;
  justify-content: center;
  flex-basis: 100%;
  margin-left: 22%;
  background-color: #0b1315;
}

.mobile {
  display: none;
}

/* ============================= BUTTON */
.side_gallery {
  padding-inline: 10px;
}

.benito_btn_outline {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5px 0px;
  color: #ffffff;
  vertical-align: middle;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0f1d22;
  border: 1px solid #c9ab81;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.7);
}

.benito_btn_outline:before,
.benito_btn_outline:after {
  content: "";
  display: flex;
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: -webkit-transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  -o-transition: transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81),
    -webkit-transform 0.5s linear-bezier(0.28, 0.38, 0, 0.81);
}

.benito_btn_outline:before {
  left: 50px;
  top: -1px;
  width: 53px;
  border-top: 1px solid #c9ab81;
  -webkit-transform: rotate(160deg) scale(0, 1);
  -ms-transform: rotate(160deg) scale(0, 1);
  transform: rotate(160) scale(0, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.benito_btn_outline:after {
  right: -3px;
  bottom: -1px;
  width: 53px;
  border-top: 1px solid #c9ab81;
  -webkit-transform: rotate(-20deg) scale(0, 1);
  -ms-transform: rotate(-20deg) scale(0, 1);
  transform: rotate(-20deg) scale(0, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.benito_btn_outline:hover:before,
.benito_btn_outline:hover:after {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: -webkit-transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  -o-transition: transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
  transition: transform 0.5s cubic-bezier(0.28, 0.38, 0, 0.81),
    -webkit-transform all 0.5s cubic-bezier(0.28, 0.38, 0, 0.81);
}

.benito_btn_outline:hover:before {
  -webkit-transform: rotate(160deg) scale(1, 1);
  -ms-transform: rotate(160deg) scale(1, 1);
  transform: rotate(160deg) scale(1, 1);
}

.benito_btn_outline:hover:after {
  -webkit-transform: rotate(-20deg) scale(1, 1);
  -ms-transform: rotate(-20deg) scale(1, 1);
  transform: rotate(-20deg) scale(1, 1);
}

/* BUTTON ============================== END */

.benito:silder {
  position: absolute;
}

/* =============================== CONTENTEK */
.content {
  padding: 0;
}

/* benitobag handmade vásárloi vélemények */
.benito_main_text_box {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-block: 10px 3rem;
}

.main_text {
  font-family: mrs saint delafield;
  font-size: 10rem;
  color: #c9ab81;
}

.benito_text {
  display: flex;
  justify-content: center;
  font-size: 9rem;
}

.main_text_h1 {
  display: flex;
  justify-content: center;
  letter-spacing: 2px;
  margin-top: -4.5rem;
  font-size: 1.2em;
  opacity: .7;
}

.main_text_box img {
  filter: drop-shadow(20px 20px 25px black);
  -webkit-filter: drop-shadow(20px 20px 25px black);
}

.content_comment_btn {
  font-weight: 300;
  display: flex;
  margin-top: 3%;
  margin-right: auto;
  margin-bottom: 9%;
  margin-left: auto;
  align-items: center;
  width: 300px;
}

.content_comment_btn a {
  margin-left: auto;
  margin-right: auto;
}

.index_content {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.index_content_inner {
  content-visibility: auto;
  display: flex;
  margin-bottom: 20px;
}

.index_con_left {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  font-size: 20px;
}

.index_hand_made {
  display: flex;
  justify-content: center;
  font-family: Miniver, sans-serif;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  color: #c9ab81;
  margin: 5% 0 0;
  font-size: 1.2rem;
}

.product_name {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product_name_text {
  font-family: "caviar_dreamsbold", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: #c9ab81;
  margin: 10px 25px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.product_show {
  display: flex;
  justify-content: center;
}

.product_text {
  display: flex;
  justify-content: center;
  font-family: Miniver, sans-serif;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  color: #c9ab81;
  font-size: 1.2rem;
  margin: -5px 0 25px;
}

.index_con_right {
  display: flex;
  flex-basis: 100%;
  position: relative;
}

.racs {
  position: absolute;
  margin-left: 24px;
  width: 260px;
  margin-top: -20px;
  z-index: 1;
  transform: scale(1.05);
}

.racs_inner {
  width: 100%;
}

.quad {
  position: absolute;
  top: 0;
  z-index: -1;
}

.quad_img {
  -webkit-filter: drop-shadow(15px 15px 6px #000);
  filter: drop-shadow(15px 15px 6px #000);
}

/* ============================= index SLIDER */
.content-slider {
  width: 100%;
  height: 250px;
}

.slider {
  height: 250px;
  width: 250px;
  margin: 30px 0px 0px 25px;
  overflow: visible;
  position: relative;
  transform: scale(1.2);
  z-index: 2;
}

.mask {
  overflow: hidden;
  height: 250px;
}

.slider ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.slider li {
  width: 250px;
  height: 250px;
  position: absolute;
  right: -250px;
  list-style: none;
}

.slider .anim1 {
  animation: cycle 15s linear infinite;
}

.slider li.anim2 {
  animation: cycle2 15s linear infinite;
}

.slider li.anim3 {
  animation: cycle3 15s linear infinite;
}

.slider li.anim4 {
  animation: cycle4 15s linear infinite;
}

.slider li.anim5 {
  animation: cycle5 15s linear infinite;
}

.slider:hover li {
  animation-play-state: paused;
}

@keyframes cycle {
  0% {
    right: 0px;
  }

  4% {
    right: 0px;
  }

  16% {
    right: 0px;
    opacity: 1;
    z-index: 0;
  }

  20% {
    right: 250px;
    opacity: 0;
    z-index: 0;
  }

  21% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }

  50% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }

  92% {
    right: -250px;
    opacity: 0;
    z-index: 0;
  }

  96% {
    right: -250px;
    opacity: 0;
  }

  100% {
    right: 0px;
    opacity: 1;
  }
}

@keyframes cycle2 {
  0% {
    right: -250px;
    opacity: 0;
  }

  16% {
    right: -250px;
    opacity: 0;
  }

  20% {
    right: 0px;
    opacity: 1;
  }

  24% {
    right: 0px;
    opacity: 1;
  }

  36% {
    right: 0px;
    opacity: 1;
    z-index: 0;
  }

  40% {
    right: 250px;
    opacity: 0;
    z-index: 0;
  }

  41% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }

  100% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle3 {
  0% {
    right: -250px;
    opacity: 0;
  }

  36% {
    right: -250px;
    opacity: 0;
  }

  40% {
    right: 0px;
    opacity: 1;
  }

  44% {
    right: 0px;
    opacity: 1;
  }

  56% {
    right: 0px;
    opacity: 1;
    z-index: 0;
  }

  60% {
    right: 250px;
    opacity: 0;
    z-index: 0;
  }

  61% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }

  100% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle4 {
  0% {
    right: -250px;
    opacity: 0;
  }

  56% {
    right: -250px;
    opacity: 0;
  }

  60% {
    right: 0px;
    opacity: 1;
  }

  64% {
    right: 0px;
    opacity: 1;
  }

  76% {
    right: 0px;
    opacity: 1;
    z-index: 0;
  }

  80% {
    right: 250px;
    opacity: 0;
    z-index: 0;
  }

  81% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }

  100% {
    right: -250px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle5 {
  0% {
    right: -250px;
    opacity: 0;
  }

  76% {
    right: -250px;
    opacity: 0;
  }

  80% {
    right: 0px;
    opacity: 1;
  }

  84% {
    right: 0px;
    opacity: 1;
  }

  96% {
    right: 0px;
    opacity: 1;
    z-index: 0;
  }

  100% {
    right: 250px;
    opacity: 0;
    z-index: 0;
  }
}

/* ================================= FOOTER */
footer {
  margin-top: 60px;
}

.kapcsolat,
.velem,
.telefon,
.footer_social,
.website,
.jog {
  display: flex;
  justify-content: center;
}

.kapcsolat,
.velem,
.telefon {
  font-family: Miniver, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  color: #c9ab81;
  margin-bottom: 2%;
}

.kapcsolat_span {
  font-size: 3rem;
  margin: 0 20px;
}

.telefon {
  font-size: 1.6rem;
  text-align: center;
}

.footer_social span {
  margin: 0 20px;
}

.website {
  flex-direction: row;
  font-size: 1.4rem;
}

.jog {
  flex-direction: column;
  font-family: Miniver, sans-serif;
  font-size: 1.2rem;
  color: #c9ab81;
  margin-top: 50px;
  text-align: center;
}

.side_social {
  display: flex;
  justify-content: space-evenly;
}

.side_social_face,
.side_social_insta {
  width: 40px;
  height: 40px;
}

.benito_footer_social {
  display: flex;
  justify-content: center;
}

.benito_footer_social .side_social_face,
.benito_footer_social .side_social_insta {
  margin: 0 10px;
}

@media screen and (min-width: 851px) {
  .benito_footer_social {
    display: none;
  }
}