/*   Theme default css */
/* ======font family=========
*/

:root {
  --black-90: var(--black-black-90, #202020);
  --black-50: var(--black-black-50, #727272);
  --black-20: var(--black-black-20, #CCC);
  --black-10: var(--black-black-10, #F6F6F6);
  --white: var(--black-white, #FFF);
  --ivory: var(--main-ivory, #F1F2EC);
  --error: var(--functional-error, #FF2C1F);
  --acceptance: var(--functional-acceptance, #1FFF35);
  --acceptance: var(--functional-acceptance, #1FFF35);
  --opacity-30: var(--opacity-opacity-30, rgba(255, 255, 255, 0.30));

  --f12: 12px;
  --f14: 14px;
  --f16: 16px;
  --f18: 18px;
  --f20: 20px;
  --f22: 22px;
  --f24: 24px;
  --f28: 28px;
  --f30: 30px;
  --f32: 32px;
  --f36: 36px;
  --f40: 40px;
  --f48: 48px;
}
* {
  line-height: normal;
}
body {
  font-weight: 400;
  font-size: var(--f16);
  margin: 0;
  padding: 0;
  color: #000;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

a:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}
.btns {
  display: flex;
  align-items: center;
  justify-content: center;padding: 14px 20px;
  border-radius: 45px;
  border: 1px solid var(--black-90);

}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  font-weight: 400;
  line-height: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  line-height: normal;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

.pb_150 {
  padding-bottom: 150px;
}
.pb_100 {
  padding-bottom: 100px;
}
.pb_50 {
  padding-bottom: 50px;
}
.pt_150 {
  padding-top: 150px;
}
.pt_100 {
  padding-top: 100px;
}
.pt_50 {
  padding-top: 50px;
}

.mb_150 {
  margin-bottom: 150px;
}
.mb_100 {
  margin-bottom: 100px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 50px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mt_150 {
  margin-top: 150px;
}
.mt_100 {
  margin-top: 100px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_30 {
  margin-top: 30px;
}
.container {
  max-width: 1600px;
}
/* default-css END 
================================== */

/*===================== OFFCANVAS CSS AREA START =====================*/
.close__menu {
  position: absolute;
  top: 35px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 1px solid var(--black-10);
  color: #D59F54;
  display: grid;
  place-items: center;
  cursor: pointer;
  left: 30px;
}
.close__menu img {
  filter: brightness(80);
  width: 16px;
}
.menu-close:hover {
  background: #fff;
}

.offcanvas-area {
  position: fixed;
  left: -100%;
  height: 100%;
  width: 100%;
  z-index: 9999;
  padding-top: 35px;
  background: #0F0F0F;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  top: 0;
  overflow-y: scroll;
}

.offcanvas-area.active {
  left: 0;
  visibility: visible;
}

.offcanvas-area .main-menu ul li a {
  font-size: var(--f18);
  color: #fff;
  display: block;
  transition: 0.3s;
  padding: 16px 22px;
  text-decoration: none;
  text-align: center;
}

.offcanvas-area .main-menu ul li:hover {
  background: #313131;
}

li.active {
  background: #313131;
}

.offcanvas-area .main-menu ul li a:hover,
.offcanvas-area .main-menu ul li a[aria-expanded="true"] {
  color: #d5d5d5;
}

.offcanvas-menu .main-menu ul {
  display: block;
  padding-left: 0;
  margin-bottom: 35px;
  list-style: none;
}

.offcanvas-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 99;
}

.offcanvas-overlay.active {
  opacity: 0.4;
  visibility: visible;
}

.offcanvas-area {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.offcanvas-area::-webkit-scrollbar {
  display: none;
}
.offcanvas-menu {
  margin-top: 100px;
}
/*===================== OFFCANVAS CSS AREA END =====================*/

/*============ header Page Area Start =============*/
header.header__area {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 99;
}
.header__area.scroll-header {
  position: fixed !important;
  background: #fff !important;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  border-bottom: 1px solid var(--black-20);
}

.header__area.scroll-header .header__wrap::after {
  display: none;
}
.header__area.scroll-header .header__logo__nav .logo .logo-1 {
  display: none;
}
.logo-2 {
  display: none;
}
.header__area.scroll-header .header__logo__nav .logo .logo-2 {
  display: block;
}
.header__area.scroll-header .header__logo__nav .header__nav a {
  color: var(--black-90);
}
.header__nav ul li a {
  padding-bottom: 32px;
  position: relative;
  color: var(--black-10);
  transition: all .3s ease-in-out;

/* body-small-bold */
  font-size: var(--f14);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.28px;
  transition: .3s;
}

.header__wrap {
  padding: 32px 40px;
  position: relative;
}

.header__logo__nav {
  display: flex;
  align-items: end;
  gap: 48px;
}

.header__nav ul {
  display: flex;
  gap: 24px;
}

.header__wrap::after {
  content: '';
  position: absolute;
  bottom: 0px;
  height: 1px;
  width: 95.3%;
  background: var(--opacity-30);
  left: 50%;
  transform: translateX(-50%);
}

.header__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 3px;
  width: 0%;
  background: #F6F6F6;
}
.header__area.scroll-header .header__nav ul li a {
  padding-bottom: 34px;
}
.header__area.scroll-header .header__nav ul li a::after {
  background-color: var(--black-90);
}
.header__nav ul li a:hover::after {
  width: 100%;
  
  transition: all .3s ease-in-out;
}



.nice-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  height: auto;
  line-height: normal;
  padding-left: 4px;
  padding-right: 18px;
}

.nice-select:after {
  display: none;
}

.select__marker {
  position: absolute;
  top: -2px;
  right: 0px;
  width: 11px;
}

.select__marker img {
  width: 100%;
  filter: brightness(100);
}

.nice-select .list {
  background: #000;
  width: 100%;
}

.nice-select .option {
  min-height: auto !important;
  line-height: normal !important;
  padding-left: 6px;
  padding-right: 8px;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  color: #000;
}
.cart__select {
  display: flex;
  justify-content: end;
  position: relative;
}
.header__bars {
  align-items: center;
  justify-content: end;
  gap: 30px;
  height: 100%;
}
.form-select {
  display: block;
  width: auto !important;
  padding: 0rem 1rem 0rem 0.4rem !important;
  font-size: var(--f16) !important;
  font-weight: 700 !important;
  line-height: 1.5;
  color: var(--white) !important;
  vertical-align: middle;
  background-color: transparent !important;
  background-image: url("../img/all-icon/drop.svg");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  filter: brightness(100);
  background-size: 12px 20px;
  border: none !important;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.header__area.scroll-header .cart__select .nice-select {
  color: var(--black-90) !important;
}
.header__area.scroll-header .cart__select .select__marker img {
  filter: brightness(0);
}

.header__area .nice-select .list {
  background: #fff;
  color: #000;
}
.form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none !important;
}

.header__bar a {
  font-size: var(--f28);
  color: #fff;
}
.header__area.scroll-header .header__bar a {
  color: var(--black-90);
}
/*============ header Page Area End =============*/

/*============ hero Page Area Start =============*/
.hero {
  width: 100%;
  min-height: 800px;
  background: url('../img/hero-img-1.png') center/cover no-repeat;
  transition: opacity 1s ease-in-out;
  position: relative;
  /* height: clamp(50rem, -100vw + 150rem, 100rem); */
}

.hero__contents {
  position: absolute;
  width: 100%;
  padding: 40px;
  bottom: 0px;
  color: var(--white);
}

.hero__right {
  max-width: 480px;
  margin-left: auto;
}
/* .divs {
  width: 250px;
  height: 250px;
} */
.circle-background {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: end;
  justify-content: start;
  padding-bottom: 24px;
}
element.style {
  height: 100%;
  display: flex;
  align-items: center;
}
.image {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid var(--opacity-30);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.hero__circle a span {
  margin-top: 8px;
  display: inline-block;
}
section.hero__area {
  position: relative;
}
a.scroll__arrow {
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.image a {
  display: grid;
  place-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  color: var(--black-10);
font-size: var(--f14);
font-weight: 700;
line-height: 140%; /* 19.6px */
letter-spacing: 0.28px;
transition-delay: .3s;
}


.image a img {
  filter: brightness(1); /* Stan domyślny */
  transition: filter 0.3s ease; /* Czas trwania i timing dla przejścia */
  transition-delay: 0.3s; /* Opóźnienie dla obu kierunków */
}

.image:hover a img {
  filter: brightness(0);
  transition-delay: .3s;
}
.image:hover a {
  color: var(--black-90);
}
.hero__left {
  height: 100%;
  display: flex;
  align-items: end;
}
.hero__left h1 {
  font-size: 72px !important;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.72px;
}
.hero__right p {
  max-width: 385px;
  color: var(--black-10);
  font-size: var(--f16);
  font-weight: 500;
  line-height: 140%;
}
.image::before,.image::after {
  content: '';
  position: absolute;
  background: var(--white);
}

.image::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -4px;
  transition: all .2s ease-in-out;
}
.image:hover::before {
  top: 0px;
}
.image::after {
  background: var(--white);
  width: 0%;
  height: 0%;
  border-radius: 50%;
  top: 0px;
  transition: all .5s ease-in-out;
}

.image:hover::after {
  width: 100%;
  height: 100%;
}

/*============ hero Page Area End =============*/

/*============ kolekcje Page Area End =============*/
.kolekcje__wrap {
  background: var(--ivory);
  padding: 40px;
  border-radius: 5px;
}

.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.title h2 {
  color: var(--black-90);

/* header-2 */
  font-size: var(--f32);
  font-weight: 600;
  line-height: 130%; /* 41.6px */
}
.kolekcje__card h4:hover a {
  color: #fff;
}
.title a,.kolekcje_btns {
  border-color: var(--black-90);
  color: var(--black-90);
  font-size: var(--f14);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.28px;
  transition: .2s;
}

.kolekcje__card__img {
  margin-bottom: 24px;
  overflow: hidden;
}
.title a:hover,.kolekcje_btns:hover {
  background: var(--black-90);
  color: #fff;
}
.kolekcje__card p {
  color: var(--black-50);
  font-size: var(--f14);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  position: relative;
  z-index: 3;
}

.kolekcje__card {
  position: relative;
}

.kolekcje__card::after {
  /* animation: anim .3s ease-in; */
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: #fff;
  z-index: 2;
}
.kolekcje__card:hover::after {
  animation: anim .8s ease-in-out;
}
/* @keyframes anim {
  0%, 20% {
    opacity: .2;
  };
  100% {
    opacity: 0;
  }
  80%,99% {
    opacity:.2;
  }
} */
 .kolekcje_btn {
  position: absolute;
  inset: 0;
  z-index: 3;
 }
.kolekcje__card h4 {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--white);
  font-size: var(--f24);
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: 0.24px;
  transition: all .2s ease-in-out;
  z-index: 3;
}
a.kolekcje__card__btn {
  position: absolute;
  left: 24px;
  top: 64px;
  width: 15px;
  opacity: 0;
  transition: all .2s ease-out;
  z-index: 3;
}
.kolekcje__card:hover a.kolekcje__card__btn {
  opacity: 1;
  top: 62;
}
.kolekcje__card:hover h4 {
  top: 26px;
}
.kolekcje__card .kolekcje-img-2 {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-out;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 1;
  width: 100%;
}
.kolekcje__card:hover .kolekcje-img-2 {
  visibility: visible;
  opacity: 1;
  position: absolute;
}
/*============ kolekcje Page Area End =============*/


/*============ montaz Page Area Start =============*/
.montaz__wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.montaz__right {
  background: var(--ivory);
  padding: 70px 40px 70px 60px;
}

.montaz__card {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.montaz__card:last-child {
  margin-bottom: 0px;
}
.montaz__card__content h5 {
  color: var(--black-90);

/* header-4 */
  font-size: var(--f18);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.18px;
}

.montaz__card__content p {
  color: var(--black-50);

/* body-small-medium */
  font-size: var(--f14);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
.montaz__left {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.montaz__left img {
  height: 100%;
}

.montaz__content {background: var(--black-90);color: var(--white);padding: 40px;display: flex;flex-direction: column;align-items: start;gap: 24px;}

.montaz__content h2 {
  color: var(--black-10);

/* header-2 */
  font-size: var(--f32);
  font-weight: 600;
  line-height: 130%; /* 41.6px */
}

.montaz__content p {
  color: var(--black-20);

/* body-small-medium */
  font-size: var(--f14);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}

.montaz__content a.btns {
  border-color: var(--black-10) !important;
  color: var(--black-10);
  font-size: var(--f14);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.28px;
  transition: .2s;
}
.montaz__content a.btns:hover {
  background: #fff;
  color: var(--black-90);
}
/*============ montaz Page Area End =============*/

/*============ pobrania  Page Area Start =============*/
.pobrania__wrap {
  border: 1px solid var(--black-20);
  background: var(--ivory);
  border-radius: 5px;
  padding: 32px;
}

.pobrania__card {
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--black-20);
  background: #fff;
  transition: .2s;
  position: relative;
}
.pobrania__card:hover {
  background-color: var(--black-10);
}
.pobrania__card a {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.pobrania__card p {
  margin-bottom: 0px;
  color: var(--black-90);

/* body-small-medium */
  font-size: var(--f14);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
/*============ pobrania  Page Area End =============*/

/*============ newslettera  Page Area Start =============*/
.newslettera__wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px;border-radius: 5px;display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;gap: 30px;}

.newslettera__content {
    color: var(--white);
    max-width: 350px;
}

.newslettera__content p {
    color: var(--black-20);

/* body-small-medium */
    font-size: var(--f14);
    font-weight: 500;
    line-height: 140%; /* 19.6px */
}

.newslettera__content h2 {
font-size: var(--f32);
font-weight: 600;
line-height: 130%; /* 41.6px */
}

.newslettera__wrap form {
    color: var(--white);
    max-width: 524px;
    width: 100%;
}

.email__field {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.email__field input {
    padding: 14px 22px;
    border: 1px solid var(--white);
    background: transparent;
    border-radius: 45px;
    width: 100%;
    color: var(--white);

/* body-small-bold */
    font-size: var(--f14);
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.28px;
}
.email__field button:hover {
  background-color: var(--black-20);
}
.email__field button {
    
transition: .2s;
/* body-small-bold */
    font-size: var(--f14);
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.28px;
    flex-shrink: 0;
    padding: 14px 20px;
    color: var(--black-90);
    background: var(--white);
    border-radius: 45px;
}

.form__check {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 3px;
  flex-shrink: 0;
}
.form__check label {
  text-align: start;
  margin-bottom: 0px;
}
.checkbox input {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 5;
}
.checkbox img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  
  inset: 0;
  width: 100%;
  height: 100%;
}
.checkbox input:checked ~ img {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  background-color: #fff;
}
/*============ newslettera  Page Area End =============*/

/*============ footer  Page Area Start =============*/
.footer__wrap {
  background: var(--ivory);
  padding: 40px 24px;
  border-radius: 5px;
}

.footer__content {
  margin-top: 32px;
}

.footer__content p {
  color: var(--black-50);

/* caption */
  font-size: var(--f12);
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.24px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__list h6 {
  margin-bottom: 0px;
  color: var(--black-90);

/* custome */
  font-size: var(--f12);
  font-weight: 700;
  line-height: 110%; /* 13.2px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer__list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list ul li a {
  color: var(--black-50);
  position: relative;
/* body-small-medium */
  font-size: var(--f14);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  transition: .3s ease-in-out;
}
.footer__list ul li a:hover {
  color: var(--black-90);
}
.footer__list ul li a::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: var(--black-90);
  transition: .3s ease-in-out;
}
.footer__list ul li a:hover::after {
  width: 100%;
}
.footer__contact {
  display: flex;
  gap: 12px;
}
.footer__contact a:hover img {
  transform: scale(1.1);
  transition: .3s ease-in-out;
}
.niceCountryInputMenu {
  background: transparent !important;
  border: none !important;
  color: var(--black-50) !important;
}
.niceCountryInputMenuDropdown span {
  color: var(--black-50) !important;
}
.niceCountryInputSelector {
  width: 208px !important;
  position: relative;
}
.niceCountryInputMenuDropdownContent {
  position: absolute;
  background: #fff;
  padding: 10px 2px;
}
.niceCountryInputMenu a {
  position: relative;
}
.niceCountryInputMenu a::after {
  content: ' ';
  position: absolute;
  top: 6px;
  right: -23px;
  height: 14px;
  width: 14px;
  display: block;
  background-image: url('../img/all-icon/drop.svg');
  background-repeat: no-repeat;
  background-size: 15px 8px;
  background-position: center;
  opacity: .4;
  transition: .2s ease-in-out;
}
/* .niceCountryInputMenu a::after {
  transform: rotate(180deg);
} */
.niceCountryInputMenuDropdown {
  top: -28px;
  display: none;
}

span.niceCountryInputMenuDefaultText > a > a > span,span.niceCountryInputMenuDefaultText a span {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--black-50);
}

/*============ footer  Page Area End =============*/

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  }

  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.img1 {
  grid-column: 1 /2;
  grid-row: 1 /2;
}
.img2 {
  grid-column: 2/3;
  grid-row: 1 /2;
}
.img3 {
  grid-column: 1/3;
  grid-row: 2/3;
}
.img4 {
  grid-column: 3/-1;
  grid-row: 1/3;
}
.img5 {
  grid-row: 3/-1;
  grid-column: 1/2;
}
.img6 {
  grid-column: 2/-1;
  grid-row: 3/-1;
}



#lightgallery li {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lg-sub-html {
  bottom: 24px !important;
  background: transparent;
}


a#lg-download,button.lg-autoplay-button.lg-icon,.button.lg-fullscreen.lg-icon,button#lg-actual-size,button#lg-share,button.lg-flip-ver.lg-icon,button.lg-flip-hor.lg-icon,button.lg-rotate-left.lg-icon,button.lg-rotate-right.lg-icon,div#lg-counter,.lg-thumb-outer.lg-grab,button.lg-fullscreen.lg-icon {
  display: none;
}
#lightgallery li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 100%), rgba(211, 211, 211, 0) 0px -356.546px / 100% 198.75% no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: .1s;
}
#lightgallery li:hover::after {
  opacity: 1;
  visibility: visible;
}
img.lg-object.lg-image {
  height: 550px !important;
}
.lg-toolbar.lg-group {
  width: 120px;
  height: 40px;
  display: flex;
  flex-direction: row-reverse;
  background: var(--black-10);
  border-radius: 10px;
  position: absolute;
  top: 40px;
  left: auto;
  right: 100px;
}

.lg-toolbar.lg-group button {
  height: 100%;
  width: 100%;
  place-content: center;
  padding: 0px !important;
}

.lg-group:after {display: none;}

.lg-toolbar .lg-icon {
  color: var(--black-90);
}

.lg-actions {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 88px;
  z-index: 1111;
  background: var(--black-10) !important;
  width: 84px;
  height: 40px;
  border-radius: 10px;
  display: grid !important;
  grid-template-columns: repeat(2,1fr);
}

.lg-actions button {
  position: inherit !important;
  margin-top: 0px !important;
  top: 0px !important;
  padding: 0px !important;
  background: transparent !important;
  color: var(--black-90) !important;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: var(--black-90) !important;
}

.lg-actions .lg-next {
  top: 8px !important;
  right: 10px !important;
}

.lg-actions .lg-prev {
  top: 8px !important;
  left: 10px !important;
}

.lg-outer .lg-inner {
  background: #fff;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: var(--f14);
  font-weight: 700;
  color: var(--black-90);
  display: inline-block;
  padding: 12px 18px;
  background: #fff;
  border-radius: 10px;
}
.lg-toolbar .lg-icon:hover {
  color: var(--black-90);
}


.screen_caption {
  position: absolute;
  left: 24px;
  bottom: -150px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.screen_img img {
  width: 18px;
  height: auto;
}

#lightgallery li:hover .screen_caption{
  bottom: 24px;
}
.screen_img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
}

.screen_caption h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
  font-size: var(--f16);
}


.error {
  border: 1px solid red !important;
}

.custom-alert {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}


.header__nav ul li a {
  position: relative; 
  text-decoration: none; 
}

.header__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 3px;
  width: 0%;
  background: #F6F6F6;
  transition: all .3s ease-in-out; 
}


.header__nav ul li a:hover::after,
.header__nav ul li a.active::after {
  width: 100%;
}


.header__area.scroll-header .header__nav ul li a::after {
  background-color: var(--black-90);
}


.header__area.scroll-header .header__nav ul li a:hover::after,
.header__area.scroll-header .header__nav ul li a.active::after {
  width: 100%;
}