@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* common css */
:root {
  --white: #fff;
  --black: #000;

  --primary-color: #df2121;
  --secondary-color: #044338;
  --third-color: #cbd503;
  --fourth-color: #f5a30b;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

figure,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}
a,
small {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  text-decoration: none;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
.main-wrp {
  flex: 1 0 auto;
  padding-top: 143px;
}
.footer {
  flex-shrink: 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background-color 0.3s ease-in-out;
}

#backToTopBtn:hover {
  opacity: 0.5 !important;
  border: 1px solid var(--primary);
}

#backToTopBtn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#backToTopBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  stroke-width: 2;
}
/* End Back Button */

/* btn */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 24px;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.btn-header {
  background: #f4f4f4;
  color: var(--black);
  padding: 7px 16px;
}
.btn-header.active:not(#scopeBtn, #scopeBtnMobile) {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-header.active:not(#scopeBtn, #scopeBtnMobile) img {
  filter: brightness(0) invert(1);
}
.btn-header.active:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-header:hover:not(#scopeBtn, #scopeBtnMobile),
.btn-header:active:not(#scopeBtn, #scopeBtnMobile),
.btn-header:focus-visible:not(#scopeBtn, #scopeBtnMobile) {
  background: #e0e0e0;
  color: var(--black);
  transform: translateY(-2px);
}
.btn-header:hover:is(#scopeBtn, #scopeBtnMobile),
.btn-header:active:is(#scopeBtn, #scopeBtnMobile),
.btn-header:focus-visible:is(#scopeBtn, #scopeBtnMobile) {
  background: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-red {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white);
  padding: 10px 16px;
}
.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red:focus-visible {
  background-color: #b81c1c;
  border-color: #b81c1c;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-yellow {
  background-color: var(--third-color);
  border: 1px solid var(--third-color);
  color: var(--secondary-color);
  padding: 10px 16px;
}
.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active,
.btn-yellow:focus-visible {
  background-color: #9da500;
  border-color: #9da500;
  transform: translateY(-2px);
}

.btn-transparent-green {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 12px 30px;
}
.btn-transparent-green svg path {
  transition: all 0.3s ease-in-out;
}
.btn-transparent-green:hover,
.btn-transparent-green:focus,
.btn-transparent-green:active,
.btn-transparent-green:focus-visible {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-transparent-green:hover svg path,
.btn-transparent-green:focus svg path,
.btn-transparent-green:active svg path,
.btn-transparent-green:focus-visible svg path {
  stroke: var(--white);
}

.btn-transparent-red {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
}
.btn-transparent-red svg path {
  transition: all 0.3s ease-in-out;
}
.btn-transparent-red:hover,
.btn-transparent-red:focus,
.btn-transparent-red:active,
.btn-transparent-red:focus-visible {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-transparent-red:hover svg path,
.btn-transparent-red:focus svg path,
.btn-transparent-red:active svg path,
.btn-transparent-red:focus-visible svg path {
  stroke: var(--white);
}

.btn-transparent-yellow {
  background-color: transparent;
  border: 1px solid var(--third-color);
  color: var(--third-color);
  padding: 12px 30px;
}
.btn-transparent-yellow:hover,
.btn-transparent-yellow:focus,
.btn-transparent-yellow:active,
.btn-transparent-yellow:focus-visible {
  background-color: var(--third-color);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-transparent-white {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
}
.btn-transparent-white:hover,
.btn-transparent-white:focus,
.btn-transparent-white:active,
.btn-transparent-white:focus-visible {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white);
  padding: 12px 30px;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green:focus-visible {
  background-color: #03362d;
  border-color: #03362d;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-status-nearly-close {
  background: #fcba03;
  border-color: #fcba03;
  color: #fff;
  padding: 10px 16px;
}
.btn-status-open {
  background: #cbd503;
  border-color: #cbd503;
  color: #004739;
  padding: 10px 16px;
}
.btn-status-close {
  background: #4f4f4f;
  border-color: #4f4f4f;
  color: #fff;
  padding: 10px 16px;
}

.btn-white {
  background-color: var(--white);
  color: var(--fourth-color);
  border: 1px solid var(--white);
  padding: 12px 30px;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  background-color: var(--fourth-color);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
/* END btn */

/* text */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
small {
  margin: 0;
  color: var(----black);
}
h1 {
  font-size: 3.5625rem;
  font-style: normal;
  font-weight: 800;
  line-height: 58px;
}
h2 {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0.16px;
}
h4 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
p {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* END text */

/* header */
.mobile-menu,
.hamburger-toggler {
  display: none;
}
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
}
.header .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.upper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upper-header-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo {
  width: 228px;
  height: 53px;
}
.lower-header {
  display: flex;
  gap: 10px;
}
.lower-header-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  padding: 4px;
  background: #f4f4f4;
  flex: 1 0;
}
.lower-header-search {
  display: flex;
  gap: 10px;
}
.lower-header-search .btn-green {
  padding: 10px 16px;
}
.drop-down-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: transparent;
  border: 1px solid transparent;
}
.nav-item {
  background: #f4f4f4;
  border: #f4f4f4 1px solid;
  color: #4f4f4f;
}
.nav-item-red {
  background-color: var(--primary-color);
  color: var(--white);
}
.nav-item:hover,
.drop-down-item:hover,
.drop-down:hover,
.drop-down.show,
.drop-down.active,
.nav-item.active {
  background: var(--white);
  color: var(--black);
  border: var(--white) 1px solid;
}
.drop-down {
  cursor: pointer;
  color: #4f4f4f;
  position: relative;
}
.drop-down.show .drop-down-menu,
.drop-down:hover .drop-down-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: #4f4f4f;
}
.drop-down-menu {
  position: absolute;
  display: flex;
  top: calc(100% + 10px);
  left: 0;
  border-radius: 24px;
  padding: 20px 20px 20px 10px;
  background: #f4f4f4;
  box-shadow:
    0px 323px 90px 0px rgba(0, 0, 0, 0),
    0px 207px 83px 0px rgba(0, 0, 0, 0.01),
    0px 116px 70px 0px rgba(0, 0, 0, 0.05),
    0px 52px 52px 0px rgba(0, 0, 0, 0.09),
    0px 13px 28px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  gap: 20px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  text-align: start;
  color: #4f4f4f;
  cursor: default;
  z-index: 9999;
}
.left-menu,
.right-menu {
  display: flex;
  flex-direction: column;
}
.left-menu {
  gap: 1rem;
  padding: 10px 16px;
}
.left-menu small {
  max-width: 170px;
}
.left-menu-wrp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#scopeBtnInputMobile,
#scopeBtnInput {
  display: none;
  background-color: transparent;
  border-color: transparent;
}
.socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.socials img {
  transition: all 0.3s ease-in-out;
}
.socials img:hover {
  transform: translateY(-2px);
}
/* END header */

/* hero */
.hero {
  padding: 24px 0 30px;
}
.hero-card {
  display: flex;
  align-items: end;
  border-radius: 24px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.hero-card .hero-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.hero-card-content .btn {
  z-index: 10;
}
.hero-card .hero-card-content span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-card-1 {
  background-color: var(--third-color);
  color: var(--secondary-color);
  height: 100%;
}
.hero-card-1 img {
  position: absolute;
  bottom: -1rem;
  right: -10rem;
  max-height: 520px;
}
.hero-card-1 .hero-card-content {
  width: 60%;
}
.hero-card-2 {
  background-color: var(--secondary-color);
  color: var(--white);
  height: 100%;
}
.hero-card-2 .hero-card-content span {
  color: var(--third-color);
}
.hero-card-2 img {
  position: absolute;
  bottom: -1rem;
  right: -15rem;
  max-height: 465px;
}
.hero-card-2 .hero-card-content {
  width: 60%;
}
.hero-card-3 {
  background-color: var(--primary-color);
  color: var(--white);
  height: 100%;
}
.hero-card-3 .hero-card-content {
  width: 60%;
}
.hero-card-3 img {
  position: absolute;
  bottom: -6rem;
  right: -8rem;
  max-height: 436px;
}
.hero-card-5 figure,
.hero-card-3 figure {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.hero-card-5 figure img,
.hero-card-3 figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
}
.hero-card-4 {
  background-color: var(--third-color);
  color: var(--white);
  height: 100%;
}
.hero-card-4::before {
  content: "CBACBA výrobky CBA výr CBA výrobky CBA výro Cvýrobky CBA výrobky CBA CBA výrobky CBA V";
  position: absolute;
  top: 0;
  left: -6rem;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  text-transform: uppercase;
  width: 700px;
}
.hero-card-4 img {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  max-height: 378px;
  z-index: 2;
}
.hero-card-5 {
  background-color: #f5a30b;
  color: var(--white);
  height: 100%;
}
.hero-card-1,
.hero-card-2 {
  min-height: 430px;
}
.hero-card-3,
.hero-card-4,
.hero-card-5 {
  min-height: 272px;
}
/* END hero */

/* section header */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
  color: var(--secondary-color);
}
.section-header span {
  display: flex;
  gap: 20px;
  justify-content: center;
}
/* END section header */

/* flag */
/* .flag{
    padding: 30px 0;
}
.flag .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.flag-info{
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
}
.flag-content{
    position: relative;
}
.flag-content-img{
    aspect-ratio: 16/8;
    position: relative;
}
.flag-content img{
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: top;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    75% { transform: rotate(0.5deg); }
}
.flag-card {
    border-radius: 24px;
    position: absolute;
    background: var(--white);
    max-width: 228px;
    box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.05),
                0px 4px 8px rgba(0, 0, 0, 0.04),
                0px 4px 6px rgba(0, 0, 0, 0.03);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}
.flag-card:hover,
.flag-card:focus-visible {
    animation-play-state: paused;
    transform: scale(1.03);
}
.flag-card:hover .flag-card-wrp span:last-child p:last-child {
  color: var(--primary-color);
}
.flag-card:hover .flag-card-img img {
  scale: 1.05;
  animation: shake 0.3s ease-in-out;
}
.flag-card-1{
    left: -2rem;
    top: 3rem;
}
.flag-card-img{
    max-width: 100%;
    max-height: 224px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.flag-card-img img{
    width: 194px;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}
.flag-badge{
    padding: 4px 12px;
    background: var(--primary-color);
    border-radius: 0px 8px 8px 0px;
    top: 1rem;
    left: 0;
    position: relative;
    z-index: 2;
    width: fit-content;
}
.flag-badge p{
    color: var(--white);
    font-weight: 800;
}
.flag-card-wrp span:first-child{
    padding: 0px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: var(--secondary-color);
}
.flag-card-wrp span:first-child small{
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.16px;
}
.flag-card-wrp span:last-child{
    padding: 8px 0px;
    border-radius: 0px 0px 24px 24px;
    border-top: 1px solid #ECECEC;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flag-card-wrp span:last-child p{
    padding: 6px 16px;
}
.flag-card-wrp span:last-child p:first-child{
    color: #A1A1A1;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
}
.flag-card-wrp span:last-child p:last-child{
    color: #004739;
    font-size: 14px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.16px;
    transition: all 0.3s ease-in-out;
}
.flag-card-2{
    right: -2rem;
    bottom: 3rem;
}
.flag-search{
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background-color: var(--white);
    border-radius: 24px;
    transition: all .3s ease-in-out;
}
.flag-search:hover{
    bottom: 2.25rem;
}
.flag-search p{
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
} */
/* END  flag */

/* cards */
.cards {
  padding: 30px 0;
}
.cards-1 {
  background: var(--third-color);
  color: var(--secondary-color);
  height: 100%;
}
.cards-1 .hero-card-content {
  width: 60%;
}
.cards-1 img {
  position: absolute;
  right: -3.5rem;
  bottom: -6rem;
  max-height: 486px;
}
.cards-2 {
  background: var(--primary-color);
  color: var(--white);
  height: 382px;
}
.cards-2 .hero-card-content {
  width: 60%;
}
.cards-2 img {
  position: absolute;
  right: -12rem;
  bottom: -5rem;
}
.cards-4 {
  background-color: #f5a30b;
  color: var(--white);
  height: 100%;
}
.cards-5 {
  background-color: var(--secondary-color);
  color: var(--white);
  height: 100%;
}
.cards-4 figure,
.cards-5 figure {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.cards-4 figure img,
.cards-5 figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
}
/* END  cards */

/* news */
.news {
  padding: 30px 0;
  overflow-x: clip;
}
.news .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-shadow:
    0px 16px 16px rgba(0, 0, 0, 0.05),
    0px 4px 8px rgba(0, 0, 0, 0.04),
    0px 4px 6px rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: inherit;
}
.news-card-img {
  aspect-ratio: 6/4;
  overflow: hidden;
  border-radius: 24px 24px 0px 0px;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0px 0px;
  transition: transform 0.4s ease;
}
.news-card-content {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0;
  gap: 1rem;
}
.news-card-content span:first-child {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 10px 0px;
}
.news-card-content span:first-child h4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0.16px;
  transition: color 0.3s ease;
}
.news-card-content span:first-child p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
.news-card-content span:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ececec;
  padding: 8px 0;
}

.news-card-content span:last-child p {
  color: #a1a1a1;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  padding: 6px 0;
}
.news-card-content figure {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  transition: all 0.3s ease;
}
.news-card-content figure svg {
  transition: transform 0.3s ease;
}
.news-card-content span:last-child figure p {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16px;
  padding: 0;
}
.news-card:hover {
  transform: translateY(-4px);
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card:hover h4 {
  color: var(--secondary-color);
}

.news-card:hover figure svg {
  transform: translateX(5px);
}
#newsSlider .splide__track {
  clip-path: inset(-100vw -100vw -100vw -100vw);
  overflow: visible;
}
#newsSlider .splide__slide {
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out;
}
#newsSlider .splide__slide.is-visible {
  opacity: 1;
}
#newsSlider .splide__arrow svg {
  fill: transparent;
  stroke: var(--white);
  width: 1.5rem;
  height: 1.5rem;
}
#newsSlider .splide__arrow {
  background: var(--primary-color);
  opacity: 1;
  width: 2.5rem;
  height: 2.5rem;
}
#newsSlider .splide__arrow--prev svg {
  transform: scaleX(1);
}
#newsSlider .splide__arrow--next {
  right: -.5rem;
}
#newsSlider .splide__arrow--prev {
  left: -.5rem;
}
/* END news */

/* faq */
.faq {
  padding: 30px 0;
}
.faq-container {
  border-radius: 24px;
  background: #f4f4f4;
}
.faq-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
  width: 100%;
}
.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.faq-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 40px;
  padding: 1.875rem 1.5rem 1.875rem 0;
}
.faq-content-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--secondary-color);
}
.faq-content-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-wrp .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-wrp .accordion-item {
  box-shadow:
    0px 66px 18px 0px rgba(0, 0, 0, 0),
    0px 42px 17px 0px rgba(0, 0, 0, 0.01),
    0px 24px 14px 0px rgba(0, 0, 0, 0.02),
    0px 11px 11px 0px rgba(0, 0, 0, 0.03),
    0px 3px 6px 0px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}
.faq-wrp .accordion-item:hover {
  transform: translateY(-2px);
}
.faq-wrp .accordion-item,
.faq-wrp .accordion-button {
  border-radius: 16px !important;
  border: 1px solid white;
}
.faq-wrp .accordion-button {
  gap: 6px;
  align-items: center;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
  background-color: var(--white);
  line-height: normal;
}
.faq-wrp .accordion-button figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-wrp .accordion-body {
  font-size: 0.875rem;
}
/* END  faq */

/* banner */
.banner {
  padding: 30px 0;
}
.banner-content {
  background: var(--fourth-color);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.banner-content-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 2rem;
  justify-content: center;
  height: 100%;
  width: 39%;
}
.banner-content-wrp span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.banner-content-wrp h1 {
  color: var(--white);
}
.banner-content-wrp span {
  color: var(--white);
}
.banner-content-img img {
  position: absolute;
  right: -15rem;
  bottom: -5rem;
  transform: rotate(-20deg);
}
/* END banner */

/* footer */
.footer {
  padding: 60px 0 0;
  background: var(--fourth-color);
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-upper {
  position: relative;
}
.footer-upper-img img {
  position: absolute;
  right: 0;
  bottom: -20px;
  height: 529px;
}
.footer-upper-content {
  display: flex;
  justify-content: space-between;
  width: 70%;
}
.footer-upper-content > span {
  display: flex;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 300px;
}
.footer-upper-content h3 {
  color: var(--white);
}
.footer-upper-content p,
.footer-left a {
  color: var(--white);
}
.footer-upper-content p strong {
  font-weight: 800;
}
.footer-upper-content p {
  font-weight: 400;
}
.footer-left-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-lower {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-lower span {
  display: flex;
  gap: 8px;
  color: var(--white);
}
.footer-lower img {
  filter: brightness(0) invert(1);
}
.footer a {
  transition: all 0.3s ease-in-out;
}
.footer a:hover:not(.btn) {
  color: var(--third-color);
}
/* END footer */

/* good offer*/
.good-offer {
  padding: 60px 0 30px;
}
.good-offer .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.good-offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.08),
    0px 5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.good-offer-card:hover {
  transform: translateY(-5px);
}
.good-offer-card:hover img {
  scale: 1.05;
}
.good-offer-card img {
  height: 100;
  transition: all 0.3s ease-in-out;
}
.good-offer-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 24px 24px 0px 0px;
  position: relative;
}
.good-offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.good-offer-card-img.contain img {
  object-fit: contain;
}
.good-offer-card-img figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-height: 200px;
  max-width: 200px;
}
.good-offer-right {
  width: 80%;
}
.good-offer-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 20px;
  color: #004739;
  border-radius: 0px 0px 24px 24px;
  flex: 1 0 auto;
  justify-content: space-between;
}
.good-offer-card-content h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0.16px;
  width: 80%;
}
.good-offer-card-content span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid #ececec;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.good-offer-card-content:hover span {
  gap: 10px;
}
/* END good offer*/

/* newsletter */
/* .newsletter{
    padding: 30px 0 60px;
}
.newsletter-container{
    border-radius: 24px;
    background: #004739;
    padding: 60px 32px;
    color: var(--white);
}
.newsletter-text{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.newsletter-text span{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.newsletter-form .form-group{
    padding: 13px 16px;
    border: 1px solid var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.newsletter-form .form-group:focus input,
.newsletter-form .form-group:focus-visible input,
.newsletter-form .form-group:focus-within input,
.newsletter-form .form-group:hover input{
    color: var(--black);
}
.newsletter-form .form-group:focus,
.newsletter-form .form-group:focus-visible,
.newsletter-form .form-group:focus-within,
.newsletter-form .form-group:hover{
    border-color: var(--secondary-color);
    background-color: var(--white);
    color: var(--black);
}

.newsletter-form .form-group input{
    border: none;
    outline: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    width: 100%;
}
.newsletter-form .form-group input::placeholder{
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.newsletter-form .form-group svg path{
    transition: all 0.3s ease-in-out;
}
.newsletter-form .form-group:focus svg path,
.newsletter-form .form-group:focus-visible svg path,
.newsletter-form .form-group:focus-within svg path,
.newsletter-form .form-group:hover svg path{
    stroke: var(--black);
}
.newsletter-form .form-group:focus input::placeholder,
.newsletter-form .form-group:focus-visible input::placeholder,
.newsletter-form .form-group:focus-within input::placeholder,
.newsletter-form .form-group:hover input::placeholder{
    color: var(--black);
}
.newsletter-form .form-check-input.is-invalid~.form-check-label, .newsletter-form .was-validated .form-check-input:invalid~.form-check-label{
    color: var(--white);
}
.newsletter-form .form-check label a{
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.newsletter-form .form-check label a:hover{
    color: var(--third-color);
}
.newsletter-form .form-check label{
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
.newsletter-form .form-check-input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    border-radius: 4px;
    border: 1px solid #FFF;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.2s ease;
}
.newsletter-form .form-check-input[type=checkbox]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.newsletter-form .form-check-input[type=checkbox]:focus,
.newsletter-form .form-check-input[type=checkbox]:checked{
    outline: none;
    box-shadow: none;
} */
/* END newsletter */

/* leaflet */
.leaflet {
  padding: 60px 0 30px;
}
.leaflet .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.leaflet-card {
  display: flex;
  border-radius: 24px;
  box-shadow:
    0px 16px 16px rgba(0, 0, 0, 0.05),
    0px 4px 8px rgba(0, 0, 0, 0.04),
    0px 4px 6px rgba(0, 0, 0, 0.03);
  height: 100%;
}
.leaflet-card-img {
  max-width: 282px;
  max-height: 376px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 24px;
  padding: 10px;
}
.leaflet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  border-radius: 24px;
}
.leaflet-card-img:hover img {
  scale: 1.05;
}
.leaflet-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  justify-content: end;
  color: var(--secondary-color);
}
.leaflet-card-btn-wrp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.leaflet-card-btn-wrp .btn {
  width: 100%;
}
.leaflet-card-wrp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.leaflet-card-wrp p {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16px;
}
/* END leaflet */

/* card-banner */
.card-banner {
  padding: 60px 0 30px;
}
.cards-3 {
  background: var(--third-color);
  color: var(--secondary-color);
  height: 450px;
  align-items: center;
}
.cards-3 .hero-card-content {
  width: 50%;
}
.cards-3 img {
  position: absolute;
  right: -5rem;
  bottom: -21rem;
  max-height: 850px;
}
.card-btn-wrp {
  display: flex;
  gap: 20px;
}
/* END card-banner */

/* advantages */
.advantages {
  padding: 30px 0;
}
.advantages .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantages-card h4 {
  color: #292d32;
}
/* END advantages */

/* points */
.points {
  padding: 30px 0;
}
.points-banner {
  background: var(--third-color);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 60px 32px;
  display: flex;
  justify-content: end;
}
.points-banner-img img {
  position: absolute;
  left: -12rem;
  bottom: -15rem;
  max-height: 700px;
  z-index: 1;
}
.points-banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--secondary-color);
  width: 50%;
  position: relative;
  z-index: 2;
}
.points-banner-content .btn {
  width: 100%;
}
.points-banner-content h4 {
  width: 70%;
}
.points-banner-content span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.points-wrp-input {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-radius: 24px;
  border: 1px solid var(--secondary-color);
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.points-wrp-input:focus input,
.points-wrp-input:focus-visible input,
.points-wrp-input:focus-within input,
.points-wrp-input:hover input {
  color: var(--white);
}
.points-wrp-input:focus,
.points-wrp-input:focus-visible,
.points-wrp-input:focus-within,
.points-wrp-input:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white);
}
.points-wrp-input input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--secondary-color);
  cursor: pointer;
}
.points-wrp-input input::placeholder {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.points-wrp-input svg path {
  transition: all 0.3s ease-in-out;
}
.points-wrp-input:focus svg path,
.points-wrp-input:focus-visible svg path,
.points-wrp-input:focus-within svg path,
.points-wrp-input:hover svg path {
  stroke: var(--white);
}
.points-wrp-input:focus input::placeholder,
.points-wrp-input:focus-visible input::placeholder,
.points-wrp-input:focus-within input::placeholder,
.points-wrp-input:hover input::placeholder {
  color: var(--white);
}
#cardNumberForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* END points */

/* rules */
.rules {
  padding: 30px 0;
}
.rules-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: center;
}
.rules-content ul {
  list-style: none;
  padding-left: 0;
  color: #4f4f4f;
}
.rules-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.rules-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.rules-img {
  aspect-ratio: 5/4;
}
.rules-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.rules-img:hover img {
  transform: scale(1.03);
}
/* END rules */

/* shops */
.shops {
  padding: 60px 0;
}
.shops .container,
.shops-title {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#shopsForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#shopsForm .form-group {
  padding: 8px 16px;
  border: 3px solid #f4f4f4;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#shopsForm .form-group:focus,
#shopsForm .form-group:focus-visible,
#shopsForm .form-group:focus-within,
#shopsForm .form-group:hover {
  border-color: var(--primary-color);
}
#shopsForm .form-group input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}
#shopsForm .form-group input::placeholder {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
#shopsForm .checkboxes {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#shopsForm .checkboxes span {
  display: flex;
  align-items: center;
  gap: 10px;
}
#shopsForm .form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}
#shopsForm .form-checkbox input[type="checkbox"] {
  display: none;
}
#shopsForm .custom-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #f4f4f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#shopsForm
  .form-checkbox
  input[type="checkbox"]:checked
  + .custom-checkbox::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 214px;
  background-image: url("../images/icons/ic-checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.shop-card {
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.shop-card-content {
  padding: 24px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0 0 24px 24px;
}
.shop-content-adress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop-content-adress span {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.shop-content-status {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-content-status figure {
  display: flex;
  align-items: center;
}
.shop-content-status p {
  font-weight: 700;
}
.shop-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 24px 24px 0px 0px;
  position: relative;
}
.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.shop-card:hover img {
  transform: scale(1.03);
}
.shop-card:hover {
  transform: translateY(-5px);
}
/* END shops */

/* detail shop */
.detail-shop {
  padding: 60px 0 30px;
}
.detail-shop .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detail-shop-title-right {
  justify-self: end;
}
.detail-shop-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
  width: 100%;
}
.detail-shop-img a{
    display: block;
}
.detail-shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  border-radius: 24px;
}
.detail-shop-img:hover img {
  scale: 1.05;
}
.detail-shop-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 30px;
  background-color: #004739;
  border-radius: 24px;
  color: var(--white);
}
.detail-shop-info .btn{
    width: 100%;
}
.detail-shop-info-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-shop-info-wrp span {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-shop-info-wrp span p {
  font-size: 20px;
  font-weight: 700;
}
.detail-shop-info > .detail-shop-info-wrp:last-child > span p:first-child {
  font-weight: 400;
}
/* END detail shop */

/* shop finds */
.shop-finds {
  padding: 30px 0;
}
.shop-finds-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shop-finds-title span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-finds-title > span figure {
  max-width: 55px;
  max-height: 55px;
}
.shop-finds-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shop-finds-info ul {
  list-style: none;
  padding-left: 0;
  color: #4f4f4f;
}
.shop-finds-info ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
}
.shop-finds-info ul li:last-child {
  margin-bottom: 10px;
}
.shop-finds-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-wrapper .custom-tooltip {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.tooltip-wrapper .custom-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip-wrapper:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}
/* shop finds */

/* shop gallery */
.shop-gallery {
  padding: 30px 0;
}
.shop-gallery-img {
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 24px;
}
.shop-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.shop-gallery-img:hover img {
  transform: scale(1.05);
}
/* END shop gallery */

/* other shops */
.other-shops {
  padding: 30px 0 60px;
}
.other-shops .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* END other shops */

/* about */
.our-story {
  padding: 60px 0 30px;
}
.our-story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 20px;
  padding: 0px 40px;
  color: var(--white);
  border-radius: 24px;
  background: var(--fourth-color);
}
.our-story-content-wrp {
  display: flex;
  align-items: center;
  gap: 20px;
}
.our-story-content-wrp span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 1rem;
  background-color: var(--secondary-color);
  color: var(--third-color);
  border-radius: 24px;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.08),
    0px 5px 10px rgba(0, 0, 0, 0.05);
}
.our-story-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 24px;
}
.our-story-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* END about */

/* our-mission */
.our-mission {
  padding: 30px 0;
}
.our-mission .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mission-card {
  padding: 30px;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.08),
    0px 5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  height: 100%;
  background: var(--secondary-color);

  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.mission-card:hover {
  transform: translateY(-5px);
}
.mission-card figure img {
  filter: brightness(0) invert(1);
}
.mission-card span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* END our-mission */

/* job */
.jobs {
  padding: 30px 0;
}
.jobs .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.job-card {
  padding: 30px;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.08),
    0px 5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  background-color: white;
  height: 100%;

  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.job-card:hover {
  transform: translateY(-5px);
  background-color: #f9f9f9;
}
.job-card > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.job-card > span h4 {
  font-size: 18px;
  font-weight: 400;
}
.job-card h3 {
  width: 80%;
}
.job-card-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.job-card-wrp p {
  padding: 6px 12px;
  border-radius: 24px;
  background: #f4f4f4;
}
.btn-job-card {
  background: var(--primary-color);
  color: var(--white);
}
.job-card .btn {
  position: absolute;
  top: 30px;
  right: 30px;
}
/* END job */

/* rent */
.rent {
  padding: 30px 0;
}
.rent .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.rent-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 24px;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.08),
    0px 5px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.rent-card:hover {
  transform: translateY(-5px);
}
.rent-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 24px;
  max-height: 400px;
}
.rent-card-img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.rent-card:hover .rent-card-img img {
  scale: 1.05;
}
.rent-card-content {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 1rem;
}
.rent-card-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rent-card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rent-card-stat small {
  font-size: 14px;
}
/* END rent */

/* map */
#map {
  border-radius: 24px;
  height: 500px;
  width: 100%;
}
/* END map */

/* contact */
.contact {
  padding: 60px 0 30px;
}
.contact .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-content {
  padding: 30px;
  background: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--white);
  border-radius: 24px;
  height: 100%;
}
.contact-bannner-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-bannner-wrp > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 30px;
  border-radius: 24px;
  background-color: #f4f4f4;
  height: 100%;
}
.contact-banner-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.contact-banner-link span {
  transition: all 0.3s ease-in-out;
}
.contact-banner-link:hover span {
  color: var(--third-color);
}
.contact-banner-link:hover figure svg path {
  stroke: var(--third-color);
}
.contact-banner-link figure {
  width: 24px;
  height: 24px;
}
.contact-banner-link figure svg {
  width: 100%;
}
.contact-banner-link figure svg path {
  transition: all 0.3s ease-in-out;
}
.contact-map {
  border-radius: 24px;
  height: 100%;
}
.contact-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 24px;
}
.contact-form-wrp {
  padding: 40px;
  background: #cbd503;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 24px;
}
.form-check-input.is-invalid ~ .form-check-label {
  color: var(--secondary-color);
}
/* END contact */

/* contact form*/
#sendContact .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#sendContact .form-group label {
  color: #004739;
  font-size: 16px;
  font-weight: 800;
}
#sendContact .form-control {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 12px;
}
#sendContact .form-control:focus {
  background: transparent;
  border: 1px solid var(--secondary-color);
  outline: none;
  box-shadow: none;
}
#sendContact .form-check-input[type="checkbox"] {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
}
/* END contact form*/

/* shop detail */
.shop-detail {
  padding: 60px 0 30px;
}
.shop-detail-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 24px;
  background: #cbd503;
  color: var(--secondary-color);
  height: 100%;
  justify-content: center;
}
.shop-detail-content span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.shop-detail-btn-wrp {
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-detail-img {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
  width: 100%;
}
.shop-detail-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
/* END shop detail */

/* partner registration */
.partner-registration {
  padding: 30px 0;
}
.partner-registration-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partner-registration-content span {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-registration-content ul {
  list-style: none;
  padding-left: 0;
  color: #4f4f4f;
  margin-top: 5px;
}
.partner-registration-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.partner-registration-content ul li a {
  font-weight: 700;
  color: var(--secondary-color);
}
.partner-registration-content ul li:last-child {
  margin-bottom: 10px;
}
.partner-registration-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
/* END partner registration */

/* expedition */
.expedition {
  padding: 30px 0;
}
.expedition-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.expedition-content span {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expedition-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.expedition-content ul li a {
  font-weight: 700;
  color: var(--secondary-color);
}
.expedition-content ul li:last-child {
  margin-bottom: 10px;
}
.expedition-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.expedition-banner {
  padding: 30px;
  border-radius: 24px;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.expedition-banner-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.expedition-banner-wrp span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.expedition-banner-wrp span h4 {
  color: var(--secondary-color);
}
.expedition-banner .btn {
  width: 100%;
}
/* END expedition */

/* representatives */
.representatives {
  padding: 30px 0;
}
.representatives .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.representatives-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.representatives-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 30px;
  border-radius: 24px;
  color: var(--secondary-color);
  background: #f4f4f4;
}
.representatives-card span {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* END representatives */

/* recipe */
.recipe {
  padding: 60px 0 30px;
}
.recipe-breadcrumb {
  position: relative;
}
.recipe-breadcrumb-img {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}
.recipe-breadcrumb-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(
    190deg,
    rgba(255, 255, 255, 0) 44%,
    rgba(0, 0, 0, 1) 100%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 2;
  pointer-events: none;
  border-radius: 24px;
}
.recipe-breadcrumb-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.recipe-breadcrumb-content {
  position: absolute;
  bottom: 30px;
  left: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  z-index: 3;
  width: 80%;
}
.recipe-breadcrumb-content > span {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recipe-breadcrumb-content-wrp {
  display: flex;
  align-items: center;
  gap: 30px;
}
.recipe-breadcrumb-content-wrp span {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* END recipe */

/* recipes */
.recipes {
  padding: 60px 0 30px;
}
.recipes .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.shops-pagination .pagination,
.recipe-pagination .pagination {
  gap: 10px;
  justify-content: center;
}
.shops-pagination .pagination li,
.recipe-pagination .pagination li {
  font-size: 1rem;
  font-weight: 700;
}
.shops-pagination .pagination li:hover,
.shops-pagination .pagination li.active,
.recipe-pagination .pagination li.active,
.recipe-pagination .pagination li:hover {
  color: var(--third-color);
}
/* END recipes */

/* recipe-materials */
.recipe-materials {
  padding: 30px 0;
}
.recipe-materials .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.recipe-materials-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recipe-materials-content h4 {
  font-weight: 700;
  font-size: 1rem;
}
.recipe-steps-content,
.recipe-materials-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recipe-steps-content ul li,
.recipe-materials-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.recipe-steps-content ul li a,
.recipe-materials-content ul li a {
  font-weight: 700;
  color: var(--primary-color);
}
.recipe-steps-content ul li:last-child,
.recipe-materials-content ul li:last-child {
  margin-bottom: 10px;
}
.recipe-steps-content ul li::before,
.recipe-materials-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul-red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
/* END recipe-materials */

/* recipe-steps */
.recipe-steps {
  padding: 30px 0;
}
.recipe-steps .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.recipe-steps-content ol {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.recipe-steps-content ol li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
}

.recipe-steps-content ol li::before {
  content: counter(step) ".";
  font-size: 20px;
  font-weight: 700;
  line-height: 33px;
  color: var(--primary-color);
  flex-shrink: 0;
  width: 2rem;
  text-align: right;
}
/* END recipe-steps */

/* detail blog */
.blog-detail {
  padding: 30px 0;
}
.blog-detail .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.blog-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--black);
}
.blog-detail-content a {
  color: var(--primary-color);
  font-weight: 700;
}
.blog-detail-content ol {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.blog-detail-content ol li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 15px;
  line-height: 1.5;
}

.blog-detail-content ol li::before {
  content: counter(step) ".";
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #4f4f4f;
  flex-shrink: 0;
  width: 1rem;
  text-align: right;
}

.blog-detail-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blog-detail-content ul li a {
  font-weight: 700;
  color: var(--primary-color);
}
.blog-detail-content ul li:last-child {
  margin-bottom: 10px;
}
.blog-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul-list-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.blog-detail-content p {
  font-size: 1rem;
}
.blog-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 24px;
}
.blog-detail-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* END detail blog */

/* registration card */
.card-registration {
  padding: 60px 0 30px;
}
.card-registration-wrp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.registration-card {
  padding: 30px;
  background: var(--third-color);
  color: var(--secondary-color);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.registration-card-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
#cardRegistrationForm .btn {
  width: 100%;
}
#cardRegistrationForm .form-group {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-radius: 24px;
  border: 1px solid var(--secondary-color);
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#cardRegistrationForm .form-group:focus input,
#cardRegistrationForm .form-group:focus-visible input,
#cardRegistrationForm .form-group:focus-within input,
#cardRegistrationForm .form-group:hover input {
  color: var(--white);
}
#cardRegistrationForm .form-group:focus,
#cardRegistrationForm .form-group:focus-visible,
#cardRegistrationForm .form-group:focus-within,
#cardRegistrationForm .form-group:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white);
}
#cardRegistrationForm .form-group input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--secondary-color);
  cursor: pointer;
}
#cardRegistrationForm .form-group input::placeholder {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
#cardRegistrationForm .form-group svg {
  transition: all 0.3s ease-in-out;
}
#cardRegistrationForm .form-group:focus svg,
#cardRegistrationForm .form-group:focus-visible svg,
#cardRegistrationForm .form-group:focus-within svg,
#cardRegistrationForm .form-group:hover svg {
  stroke: var(--white);
}
#cardRegistrationForm .form-group:focus input::placeholder,
#cardRegistrationForm .form-group:focus-visible input::placeholder,
#cardRegistrationForm .form-group:focus-within input::placeholder,
#cardRegistrationForm .form-group:hover input::placeholder {
  color: var(--white);
}

/* END registration card */

/* partners-gallery */
.partners-gallery {
  padding: 60px 0 30px;
}
.partners-gallery .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.partner-gallery-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.partner-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.partner-gallery-img:hover img {
  scale: 1.05;
}
/* END partners-gallery */

/* flipbook */
.flipbook {
  padding: 60px 0 30px;
  overflow: hidden;
  position: relative;
}
.pager {
  font-weight: 700;
}
/* END flipbook */

/* terms-conditions */
.terms-conditions {
  padding: 60px 0 30px;
}
.terms-conditions .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.terms-conditions-img {
  aspect-ratio: 16/5;
  overflow: hidden;
  border-radius: 24px;
}
.terms-conditions-img img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.terms-conditions-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terms-conditions-wrp h1 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}
.terms-conditions-wrp h3 {
  color: var(--secondary-color);
  margin: 0.5rem 0;
}
.terms-conditions-wrp ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.terms-conditions-wrp ol li {
  counter-increment: item;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 14px;
  color: #333;
}
.terms-conditions-wrp ol li:last-child {
  margin-bottom: 0;
}
.terms-conditions-wrp ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 14px;
}

.terms-conditions-wrp ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.terms-conditions-wrp ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: #444;
}

.terms-conditions-wrp ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* END terms-conditions */

/* offer banner */
.offer-banner {
  padding: 30px 0;
}
.offer-banner-container {
  padding: 60px 32px;
  border-radius: 24px;
  background-color: var(--secondary-color);
  color: var(--white);
  justify-self: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.offer-banner img {
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 2;
  width: 400px;
  height: auto;
  filter: invert(1);
  opacity: 0.2;
  transform: translate(50%, -50%);
}
.offer-banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 70%;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.offer-banner-content > span {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-header {
  border-bottom: none;
}
.modal .form-control:focus-visible,
.modal .form-control:focus-within,
.modal .form-control:focus {
  outline: none;
  box-shadow: none;
}
.modal .form-control {
  border-radius: 24px;
  border: 1px solid var(--secondary-color);
  padding: 13px 16px;
}
.modal .form-check-input {
  border: 1px solid var(--secondary-color);
}
.modal .form-check-input:checked {
  background-color: var(--secondary-color);
}
.modal .form-check-input:focus-visible,
.modal .form-check-input:focus-within,
.modal .form-check-input:focus {
  outline: none;
  box-shadow: none;
}
.modal .form-check-label a {
  font-weight: 700;
  color: var(--secondary-color);
}
/* END offer banner */

/* terms */
.terms {
  padding: 30px 0;
}
.terms-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.terms-contentcontent ul {
  list-style: none;
  padding-left: 0;
  color: #4f4f4f;
}
.terms-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.terms-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.terms-content ol {
  counter-reset: list-counter;
  padding-left: 1.5rem;
}

.terms-content ol li {
  counter-increment: list-counter;
  margin-bottom: 0.5rem;
  position: relative;
  list-style: none;
}

.terms-content ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: -1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}
.terms-content h1,
.terms-content h2,
.terms-content h3,
.terms-content a,
.terms-content h4 {
  color: var(--secondary-color);
}
.terms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 24px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.terms-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f9fafc, #f1f5f9);
}
.terms-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s ease;
}
.terms-row:hover .terms-title {
  color: var(--secondary-color);
}
.btn-file-download {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--secondary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-file-download:hover {
  background: #03322a;
  color: var(--white);
}

.btn-text {
  position: relative;
  display: inline-block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.btn-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-150%);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.btn-icon svg {
  width: 22px;
  height: 22px;
}

.btn-file-download:hover .btn-text {
  transform: translateY(100%);
  opacity: 0;
}

.btn-file-download:hover .btn-icon {
  opacity: 1;
  transform: translateY(0);
}
.terms-row .btn {
  flex-shrink: 0;
}
/* END terms */
.error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.error-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.error-content h1 span {
  color: var(--secondary-color);
}

/* newsletter */
.newsletter-container {
  padding: 60px 32px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 24px;
}
.newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.newsletter-content-wrp {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.newsletter-content-wrp span {
  font-size: 20px;
  font-weight: 800;
}
.newsletter-content h2 {
  font-size: 57px;
  font-weight: 800;
  line-height: 58px;
}
#newsletterForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#newsletterForm .form-check-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
}
#newsletterForm .form-check-label.newsletter-form {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
#newsletterForm .form-text p {
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}
#newsletterForm .form-check-input[type="checkbox"] {
  background-color: var(--secondary-color);
  border: 1px solid var(--white);
  border-radius: 4px;
}
#newsletterForm .form-check-input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
#newsletterForm .form-check-input[type="checkbox"]:focus,
#newsletterForm .form-check-input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: none;
}
#newsletterForm .form-group input {
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
  position: relative;
  transition: all 0.3s ease;
}
#newsletterForm .email-wrapper,
#newsletterForm .phone-wrapper {
  position: relative;
}
#newsletterForm .email-wrapper input,
#newsletterForm .phone-wrapper input {
  padding-left: 48px;
}
#newsletterForm .email-wrapper::before,
#newsletterForm .phone-wrapper::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 1;
}
#newsletterForm .email-wrapper::before {
  background-image: url("../images/icons/mail.svg");
  filter: brightness(0) invert(1);
}
#newsletterForm .phone-wrapper::before {
  background-image: url("../images/icons/phone.svg");
  filter: brightness(0) invert(1);
}
#newsletterForm .form-group input::placeholder {
  color: var(--white);
  opacity: 1;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  transition: color 0.3s ease;
}
#newsletterForm .email-wrapper:hover input,
#newsletterForm .phone-wrapper:hover input {
  background-color: var(--white);
  color: var(--black);
}
#newsletterForm .email-wrapper:hover input::placeholder,
#newsletterForm .phone-wrapper:hover input::placeholder {
  color: var(--black);
}
#newsletterForm .email-wrapper:hover::before {
  filter: none;
}

#newsletterForm .phone-wrapper:hover::before {
  filter: none;
}
#newsletterSuccessMessage .alert {
  text-align: center;
}
@media (max-width: 1200px) {
  .newsletter-content {
    align-items: center;
    gap: 0.625rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .newsletter-content h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .newsletter-content-wrp span {
    font-size: 1rem;
    font-weight: 800;
  }
}
/* END newsletter */

/* new-hero*/
.newhero-card {
  border-radius: 24px;

  padding: 1.875rem;
  color: var(--white);
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.newhero-card-wrp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  z-index: 2;
  position: relative;
  height: 100%;
  max-width: 80%;
}
.newhero-card-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.newhero-card-1 img,
.newhero-card-1 video {
  transition: all 0.3s ease-in-out;
}
.newhero-card-1:hover img,
.newhero-card-1:hover video {
  transform: scale(1.05);
}
.newhero-card img {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}
.newhero-card-4 img {
  bottom: -8rem;
  right: -8rem;
  max-width: 700px;
}
.newhero-card-2 img {
  bottom: 1rem;
  right: -5rem;
  max-width: 400px;
  rotate: -30deg;
}
.newhero-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 70%;
}
.newhero-card-content span {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
}
.newhero-card-2 {
  background-color: var(--fourth-color);
}
.newhero-card-3 {
  background-color: var(--secondary-color);
}
.newhero-card-4 {
  background-color: var(--primary-color);
  z-index: 1;
}
.newhero-card-4::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  right: -16rem;
  width: 800px;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
}
.newhero-card-svg {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.newhero-card-svg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  z-index: 1;
  opacity: 1;
}
.newhero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* END new-hero*/

/* flag */
.flag {
  padding: 30px 0;
}
.flag .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flag-content {
  position: relative;
  height: 100%;
}
.flag-content-img {
  aspect-ratio: 16/8;
  position: relative;
  height: 100%;
  width: 100%;
}
.flag-content img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(0.5deg);
  }
}
.flag-card {
  border-radius: 24px;
  position: absolute;
  background: var(--white);
  max-width: 180px;
  box-shadow:
    0px 198px 55px 0px rgba(0, 0, 0, 0),
    0px 127px 51px 0px rgba(0, 0, 0, 0.01),
    0px 71px 43px 0px rgba(0, 0, 0, 0.03),
    0px 32px 32px 0px rgba(0, 0, 0, 0.04),
    0px 8px 17px 0px rgba(0, 0, 0, 0.05);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.flag-card h4 {
  font-size: 1rem;
}
.flag-card:hover,
.flag-card:focus-visible {
  animation-play-state: paused;
  transform: scale(1.03);
}
.flag-card:hover .flag-card-wrp span:last-child p:last-child {
  color: var(--primary-color);
}
.flag-card:hover .flag-card-img img {
  scale: 1.05;
  animation: shake 0.3s ease-in-out;
}
.flag-card-1 {
  left: -1rem;
  top: 3rem;
}
.flag-card-img {
  max-width: 100%;
  max-height: 224px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.flag-card-img img {
  width: 120px;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.flag-badge {
  padding: 4px 12px;
  background: var(--primary-color);
  border-radius: 0px 8px 8px 0px;
  position: absolute;
  top: 1rem;
  left: 0;
  position: relative;
  z-index: 2;
  width: fit-content;
}
.flag-badge p {
  color: var(--white);
  font-weight: 800;
}
.flag-card-wrp span:first-child {
  padding: 0px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  color: var(--secondary-color);
}
.flag-card-wrp span:first-child small {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
}
.flag-card-wrp span:last-child {
  padding: 8px 0px;
  border-radius: 0px 0px 24px 24px;
  border-top: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flag-card-wrp span:last-child p {
  padding: 6px 16px;
}
.flag-card-wrp span:last-child p:first-child {
  color: #a1a1a1;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
.flag-card-wrp span:last-child p:last-child {
  color: #004739;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16px;
  transition: all 0.3s ease-in-out;
}
.flag-card-2 {
  right: -1rem;
  bottom: 3rem;
}
.flag-search {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background-color: var(--white);
  border-radius: 24px;
}
.flag-search figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flag-search figure img {
  width: 24px;
  height: 24px;
}
.flag-search input {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  opacity: 1;
  width: 252px;
  border: none;
  background: transparent;
}
input:focus-visible,
.flag-search input:focus {
  outline: none;
  border: none;
}
/* END  flag */

/* competitions */
.infoBanner {
  padding: 1rem;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
}
/* END competitions */

.new-cards-3 {
  background: var(--fourth-color);
  color: var(--white);
  height: 450px;
  align-items: center;
}
.new-cards-3 .hero-card-content {
  width: 50%;
  z-index: 2;
}
.new-cards-3 img {
  position: absolute;
  right: -5rem;
  bottom: -21rem;
  max-height: 850px;
}

/* fancybox */
.fancybox__container {
  --fancybox-bg: rgba(255, 255, 255, 0.85) !important;
}
.f-button {
  background-color: transparent;
}
.f-button svg {
  stroke: var(--black);
}
.fancybox__infobar {
  color: var(--black);
}
/* zoom flipbook*/
.flipbook-zoom-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: calc(100vh - 220px);
  text-align: center;
  cursor: grab;
}

.flipbook-zoom-wrapper.is-panning {
  cursor: grabbing;
}

.flipbook-zoom-inner {
  display: inline-block;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

/* tlačidlá zoomu – prepíšeme bootstrap */
.flipbook-zoom-controls .btn-zoom-in,
.flipbook-zoom-controls .btn-zoom-out {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: none !important;
  padding: 0;
}

.flipbook-zoom-controls .btn-zoom-in:hover,
.flipbook-zoom-controls .btn-zoom-in:active,
.flipbook-zoom-controls .btn-zoom-in:focus,
.flipbook-zoom-controls .btn-zoom-in:focus-visible,
.flipbook-zoom-controls .btn-zoom-out:hover,
.flipbook-zoom-controls .btn-zoom-out:active,
.flipbook-zoom-controls .btn-zoom-out:focus,
.flipbook-zoom-controls .btn-zoom-out:focus-visible {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: none !important;
  outline: none;
}

.flipbook-zoom-controls button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}

.flipbook-zoom-wrapper,
.flipbook-zoom-inner,
.flipbook-zoom-inner img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.zoom-range {
  width: 100%;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.zoom-range:focus,
.zoom-range:active,
.zoom-range:focus-visible {
  outline: none;
  box-shadow: none;
}

.zoom-range::-moz-focus-outer {
  border: 0;
}

.zoom-range::-webkit-slider-thumb {
  background-color: var(--primary-color);
  border: 2px solid #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  transform: translateY(-2px);
}

.zoom-range::-webkit-slider-thumb:hover,
.zoom-range::-webkit-slider-thumb:focus,
.zoom-range::-webkit-slider-thumb:focus-visible,
.zoom-range::-webkit-slider-thumb:focus-within,
.zoom-range::-webkit-slider-thumb:active,
.zoom-range:focus::-webkit-slider-thumb {
  background-color: var(--primary-color);
  border-color: #ffffff;
  opacity: 1;
  outline: none;
  box-shadow: none;
}

.zoom-range::-moz-range-thumb {
  background-color: var(--primary-color);
  border: 2px solid #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transform: translateY(-2px);
}

.zoom-range::-moz-range-thumb:hover,
.zoom-range::-moz-range-thumb:active,
.zoom-range::-moz-range-thumb:focus,
.zoom-range::-moz-range-thumb:focus-visible,
.zoom-range::-moz-range-thumb:focus-within,
.zoom-range:focus::-moz-range-thumb {
  background-color: var(--primary-color);
  border-color: #ffffff;
  opacity: 1;
  outline: none;
  box-shadow: none;
}

.zoom-range::-ms-thumb {
  background-color: var(--primary-color);
  border: 2px solid #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transform: translateY(-2px);
}

.zoom-range::-ms-thumb:hover,
.zoom-range::-ms-thumb:active,
.zoom-range::-ms-thumb:focus,
.zoom-range::-ms-thumb:focus-visible,
.zoom-range::-ms-thumb:focus-within,
.zoom-range:focus::-ms-thumb {
  background-color: var(--primary-color);
  border-color: #ffffff;
  opacity: 1;
  outline: none;
  box-shadow: none;
}

.zoom-range::-webkit-slider-runnable-track {
  background-color: rgba(0, 0, 0, 0.1);
  height: 4px;
  border-radius: 2px;
  box-shadow: none;
  border: none;
}

.zoom-range::-moz-range-track {
  background-color: rgba(0, 0, 0, 0.1);
  height: 2px;
  border-radius: 2px;
  box-shadow: none;
  border: none;
}

/* flipbook navigation arrows */
.responsive-flipbook {
  position: relative;
}

.flipbook-nav-left,
.flipbook-nav-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.flipbook-nav-left {
  left: -60px;
}

.flipbook-nav-right {
  right: -60px;
}

.flipbook-nav-left:hover,
.flipbook-nav-right:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .flipbook-nav-left {
    left: 10px;
  }

  .flipbook-nav-right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .flipbook-nav-left,
  .flipbook-nav-right {
    width: 40px;
    height: 40px;
  }

  .flipbook-nav-left {
    left: 5px;
  }

  .flipbook-nav-right {
    right: 5px;
  }
}
/* END flipbook navigation arrows */

/* flipbook navigation arrows */
.responsive-flipbook {
  position: relative;
}

.flipbook-nav-left,
.flipbook-nav-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.flipbook-nav-left {
  left: -60px;
}

.flipbook-nav-right {
  right: -60px;
}

.flipbook-nav-left:hover,
.flipbook-nav-right:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .flipbook-nav-left {
    left: 10px;
  }

  .flipbook-nav-right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .flipbook-nav-left,
  .flipbook-nav-right {
    width: 40px;
    height: 40px;
  }

  .flipbook-nav-left {
    left: 5px;
  }

  .flipbook-nav-right {
    right: 5px;
  }
}
/* END flipbook navigation arrows */

/* good-offer modal */
#offerModal .modal-dialog {
  max-width: 600px;
}

#offerModal .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#offerModal .modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #ececec;
}

#offerModal .modal-title {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
}

#offerModal .btn-close {
  opacity: 1;
  background-size: 16px;
}

#offerModal .btn-close:hover {
  opacity: 0.7;
}

#offerModal .modal-body {
  padding: 32px;
}

#offerModal .modal-body p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

#offerModal .modal-body ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

#offerModal .modal-body ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #4f4f4f;
}

#offerModal .modal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/ic-ul.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#offerModal .modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #ececec;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

#offerModal .modal-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.good-offer-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  #offerModal .modal-dialog {
    margin: 16px;
  }

  #offerModal .modal-header,
  #offerModal .modal-body,
  #offerModal .modal-footer {
    padding: 20px;
  }

  #offerModal .modal-title {
    font-size: 20px;
  }
}
/* END good-offer modal */

/* newsletter modal - full width */
#newsletterModal .modal-dialog {
  max-width: 1200px;
}

#newsletterModal .modal-content {
  border: none;
  background: transparent;
}

#newsletterModal .modal-header {
  border: none;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
}

#newsletterModal .modal-body {
  padding: 0;
}

#newsletterModal .btn-close {
  background: white;
  border-radius: 50%;
  opacity: 1;
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
}

#newsletterModal .newsletter {
  padding: 30px 0 30px;
  margin: 0;
}

@media (max-width: 1199px) {
  #newsletterModal .modal-dialog {
    margin: 1rem;
  }
}
/* END newsletter modal - full width */

/* recipe search */
.recipe-search-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.recipe-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recipe-search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 24px;
  font-size: 16px;
  color: var(--secondary-color);
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.recipe-search-input:focus {
  outline: none;
  border: 1px solid var(--primary-color);
}

.recipe-search-input::placeholder {
  color: #a1a1a1;
}

.recipe-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.recipe-search-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.05);
}

.recipe-search-btn:hover svg {
  stroke: var(--white);
}

.recipe-search-clear {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.recipe-search-clear:hover {
  background: #e0e0e0;
}

.recipe-search-clear svg {
  stroke: #666;
}

.recipe-search-results {
  margin-top: 16px;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
}

.recipe-search-results p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

.recipe-search-results strong {
  color: var(--primary-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .recipe-search-form {
    max-width: 100%;
  }

  .recipe-search-input {
    padding: 12px 50px 12px 16px;
    font-size: 14px;
  }

  .recipe-search-btn {
    width: 36px;
    height: 36px;
  }

  .recipe-search-clear {
    right: 50px;
    width: 28px;
    height: 28px;
  }
}
/* END recipe search */
