@charset "UTF-8";
:root {
  --white: #fff;
  --black: #111111;
  --orange: #f27e00;
  --gray: #7d7d7d;
}

/*font-face*/

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat Alternates.woff") format("woff"),
    url("../fonts/Montserrat Alternates.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nasalization";
  src: url("../fonts/nasalization-rg.woff") format("woff"),
    url("../fonts/nasalization-rg.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff") format("woff"),
    url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff"),
    url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

/*font-face*/
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body {
  font-family: "Montserrat";
  background: #f8f8f8;
  color: var(--black);
  counter-reset: my-sec-counter;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2 !important;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  opacity: 0.8;
  transition: opacity 0.25s ease-in;
  text-decoration: none !important;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 20px);
}

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: fit-content;
  background: var(--orange);
  border-radius: 12px;
  padding: 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--white);
  height: 100%;
  min-height: 44px;
  max-height: 44px;
  border: none;
  white-space: nowrap;
}

.main-btn:hover,
.main-btn:focus {
  opacity: 0.8;
  transition: opacity 0.25s ease-in;
  text-decoration: none !important;
  color: var(--white) !important;
}

.section-btn {
  position: absolute;
  top: 0;
  right: clamp(14px, 3vw, 20px);
}

@media (max-width: 768px) {
  .section-btn {
    position: static;
    margin-top: 12px;
  }
}

.section {
  padding: clamp(30px, 3vw, 60px) 0;
}

.header-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.header-section-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-section-wrapper img {
  max-width: 52px;
  max-height: 52px;
}

.base-title {
  font-family: "Nasalization";
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
}

.section-title {
  font-weight: 700;
  font-size: 14px;
}

.section-desc {
  font-weight: 500;
  font-size: 14px;
}

.cards-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

.cards-desc {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

/* header-top */

.header-top {
  background: var(--orange);
  position: sticky;
  top: 0;
  z-index: 9;
  padding: 12px 0;
}

@media(max-width: 996px) {
	.header-top {
		display: none;
	}
}

@media(max-width: 768px) {
	.header-top {
		padding: 22px 0;
	}
}

.header-top .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-right: 120px;
  row-gap: 10px;
}

@media (max-width: 768px) {
  .header-top .container {
    padding-right: 82px;
  }
}

.header-top__phones {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  margin-right: auto;
}

@media (max-width: 996px) {
	.header-top__phones {
		display: none;
	}
}

@media (max-width: 996px) {
	.header-top__phones-mobile {
		display: flex;
		flex-direction: column;
		margin-right: 0;
		margin: 8px auto 20px auto;
	}
	.header-top__phones-mobile .header-top__phones-link a {
		color: var(--black);
	}
}

.header-top__phones-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top__phones-item-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 2px;
}

.header-top__phones-item img {
  max-width: 20px;
  max-height: 14px;
}

.header-top__phones-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-top__phones-link a {
  font-weight: 600;
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
  line-height: 1;
}

.header-top__phones-link img {
  max-width: 14px;
  max-height: 14px;
  opacity: 0.5;
}

@media (max-width: 996px) {
  .header-top__menu {
    display: none;
  }
}

.header-top__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .header-top__nav-list {
    display: none;
  }
}

.header-top__nav-list li a {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: var(--white);
  opacity: 0.8;
  padding: 10px;
}

.lw-mobile-selects {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.lw-mobile-selects__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 60px;
}

.lw-mobile-selects__wrapper--alt {
	padding-right: 0;
}

.lw-mobile-selects__label {
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	color: #7D7D7D;
}

.language-select-box {
  position: absolute;
  top: 2px;
/*   right: 70px; */
	  right: 44px;
  display: inline-block;
  background: transparent;
  padding: 0 clamp(14px, 3vw, 20px) 0 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: var(--white);
}

.lw-mobile-selects .language-select-box {
	top: 0;
	right: 0;
	color: var(--black);
	  padding: 0 10px 0 10px;
}

@media (max-width: 768px) {
.language-select-box {
    right: 0;
  }
}

.selected-language {
  display: flex;
  align-items: center;
  gap: 3px;
}

.selected-language-img {
  width: 20px;
  height: 14px;
}

.selected-language .fa-caret-right {
  transform: rotate(90deg);
  margin-left: 2px;
  margin-bottom: 2px;
}

.language-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  color: #000;
  display: none;
  z-index: 100;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.language-options div {
  padding: 5px 10px;
  cursor: pointer;
}

.language-options div:hover {
  background: #eee;
}

.header-top__nav-list li a:hover {
  opacity: 0.6;
}

.language-options-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.language-options-lin img {
  max-width: 20px;
  max-height: 14px;
}

.currency-select-box {
  position: absolute;
  top: 3px;
  right: 0px;
  display: inline-block;
  background: transparent;
  padding: 0 20px 0 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: var(--white);
}

.lw-mobile-selects .currency-select-box {
	position: static;
		color: var(--black);
	  padding: 0 10px 0 10px;
}

@media (max-width: 768px) {
  .currency-select-box {
    top: 18px;
    right: 0;
    padding: 0 clamp(14px, 3vw, 20px) 0 10px;
  }
}

.selected-currency {
  display: flex;
  align-items: center;
  gap: 3px;
}

.selected-currency .fa-caret-right {
  transform: rotate(90deg);
  margin-left: 2px;
  margin-bottom: 2px;
}

.currency-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  color: #000;
  display: none;
  z-index: 100;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.lw-mobile-selects .currency-options {
	left: auto;
	right: 0;
}


.currency-options div {
  padding: 5px 10px;
  cursor: pointer;
}

.currency-options div:hover {
  background: #eee;
}

.header-top__nav-list li a:hover {
  opacity: 0.6;
}

.currency-options-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* header-top */

/*page-header */

.header__nav-list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 996px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-list.active {
  flex-direction: column;
  width: 100%;
}
.header__nav-list li {
  position: relative;
}

.header__nav-list > .current-menu-item.active,
.header__nav-list > .menu-item-has-children.active {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px 8px 12px;
  width: 100%;
  max-width: fit-content;
  height: 100%;
  min-height: 36px;
  max-height: 36px;
  border-radius: 12px;
  background-color: var(--white);
}
/* .header__nav-list > li:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px 8px 12px;
  width: 100%;
  max-width: fit-content;
  height: 100%;
  min-height: 36px;
  max-height: 36px;
  border-radius: 12px;
  background-color: var(--white);
} */

@media (max-width: 996px) {
  .header__nav-list > .current-menu-item.active,
  .header__nav-list > .menu-item-has-children.active {
/*     background-color: var(--orange); */
	    min-height: fit-content;
  max-height: fit-content;
  }
}

.header__nav-list > .current-menu-item.active > a,
.header__nav-list > .menu-item-has-children.active > a {
  position: relative;
  /* padding-right: 0; */
  color: var(--black);
}

@media (max-width: 996px) {
.header__nav-list > .current-menu-item.active > a,
.header__nav-list > .menu-item-has-children.active > a {
 background-color: var(--orange);
	    padding: 10px;
    border-radius: 12px;
	 color: var(--white);
}
}

.header__nav-list > .current-menu-item.active > a:hover,
.header__nav-list > .current-menu-item.active > a:focus {
  color: var(--black);
}

@media (max-width: 996px) {
  .header__nav-list > .current-menu-item.active > a {
    color: var(--white);
    /* padding-left: 16px; */
  }
}

.header__nav-list > .current-menu-item.active > a:hover,
.header__nav-list > .current-menu-item.active > a:focus {
  color: var(--black);
}

@media (max-width: 996px) {
.header__nav-list > .current-menu-item.active > a:hover,
.header__nav-list > .current-menu-item.active > a:focus {
	 color: var(--white);
}
}

/* .header__nav-list > .current-menu-item.active > a::before,
.header__nav-list > .menu-item-has-children.active > a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url("../image/header_link_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

/* @media (max-width: 996px) {
  .header__nav-list > .current-menu-item.active > a::before,
  .header__nav-list > .menu-item-has-children.active > a::before {
    background-image: url("../image/header_link_icon_white.svg");
    margin-right: 2px;
  }
} */

.header__nav-list li li:hover > a .fa:before {
  transform: rotate(180deg) !important;
}

.fa-caret-down {
  margin-left: 5px;
}

@media (max-width: 996px) {
  .header__nav-list li {
    width: 100%;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 0;
  }

  .header__nav-list li .fa.fa-caret-down {
    padding-left: 10px;
  }

  .header__nav-list li .fa.fa-caret-down.active,
.header__nav-list li .fa.fa-caret-right.active {
    padding-right: 10px;
    padding-left: 0;
    margin: 0;
    transform: rotate(-180deg);
/*     color: var(--orange); */
  }
  .header__nav-list li .fa:before {
    font-size: 16px;
  }
  .header__nav-list li:hover > a .fa:before {
    transform: rotate(0deg) !important;
  }
}
.header__nav-list li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: var(--white);
  padding: 14px;
  white-space: nowrap;
}
@media (max-width: 996px) {
	.header__nav-list li a {
		display: flex;
		height: -moz-fit-content;
		height: fit-content;
		width: -moz-fit-content;
		width: fit-content;
		color: var(--black);
		padding: 0;
		width: 100%;
		justify-content: center;
	}
}
.header__nav-list > li.active > a:not(:first-child),
.header__nav-list > li > a:focus,
.header__nav-list > li > a:hover {
  color: var(--white);
  text-decoration: none !important;
}
@media (max-width: 996px) {
  .header__nav-list > li.active > a,
  .header__nav-list > li > a:focus,
  .header__nav-list > li > a:hover {
    color: var(--black);
  }
}
.header__nav-list li > ul {
  position: absolute;
  width: 261px;
  padding: 0;
  left: 10px;
  top: 100%;
  background-color: var(--white);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: none;
  visibility: hidden;
  z-index: 9;
  list-style: none;
}

.header__nav-list li > ul > li > ul {
  position: absolute;
  z-index: 9;
}
@media (max-width: 996px) {
  .header__nav-list li > ul {
    display: none;
  }
  .header__nav-list li > ul li .fa.fa-caret-right.active {
    transform: rotate(-90deg);
	margin-left: 10px;
	padding-right: 0;
  }
}
@media (max-width: 996px) {
  .header__nav-list li > ul > li.active > a,
  .header__nav-list li > ul > li > a:focus,
  .header__nav-list li > ul > li > a:hover {
    color: var(--black);
    font-weight: 400;
    text-transform: capitalize;
  }
}
.header__nav-list li:hover > ul {
  display: flex;
  flex-direction: column;
  visibility: visible;
  top: 100%;
  border-radius: 8px;
/*   overflow: hidden; */
}
@media (max-width: 996px) {
  .header__nav-list li:hover > ul {
    display: none;
  }
}
.header__nav-list li:hover > ul > li a {
  color: var(--black);
}
.header__nav-list li > ul > li:hover a {
  color: var(--white);
  background-color: var(--orange);
}

@media (max-width: 996px) {
  .header__nav-list li > ul.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    visibility: visible;
    position: static;
    box-shadow: none;
    width: 100%;
  }
	
.header__nav-list li > ul > li:hover a {
  color: var(--black);
  background-color: var(--white);
}
}
.header__nav-list li ul li:hover > ul {
  display: flex;
  flex-direction: column;
  visibility: visible;
  top: 0;
  list-style: none;
  left: 260px;
}

.header__nav-list li > ul > li:hover > ul > li a {
  color: var(--black);
  background-color: var(--white)
}

.header__nav-list li ul li a .fa-caret-right {
  margin-left: 130px;
}

@media (max-width: 996px) {
	.header__nav-list li ul li a .fa-caret-right {
		margin-left: 10px;
		transform: rotate(90deg);
	}
}
@media (max-width: 996px) {
  .header__nav-list li ul li:hover > ul {
    display: none;
  }
}
@media (max-width: 996px) {
  .header__nav-list li > ul li > ul.active {
    display: flex;
    visibility: visible;
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 15px;
  }
}

.header__nav-list li > ul > li > ul > li:hover a {
  color: var(--white);
  background-color: var(--orange);
}

.page-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 64px);
  padding: clamp(20px, 2vw, 32px) 0;
  margin-right: auto;
}

.page-header .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  min-height: inherit;
}

.page-header__wrapper-top {
  width: 100%;
  position: fixed;
  z-index: 3;
}

.page-header__wrapper-top.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

.page-header__top {
  display: flex;
  align-items: center;
  gap: 2px;
}

.page-header__wrapper-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 32px;
}

.page-header .container.active {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 996px) {
  .page-header .container.active .page-header__top {
    padding: 0 16px;
    background-color: var(--white);
    padding-bottom: 0;
    gap: 6px;
  }
}

.page-header__logo {
  width: 100%;
  max-width: 104px;
  height: 100%;
  max-height: 48px;
}

.page-header__logo.active {
  display: none;
}

.page-header__logo--mobile {
  display: none;
  width: 100%;
  max-width: 104px;
  height: 100%;
  max-height: 48px;
}

.page-header__logo--mobile.active {
  display: block;
}

.page-header__title {
  width: 100%;
  max-width: 800px;
  font-family: "Nasalization";
  font-style: normal;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 64px);
  color: var(--white);
}

.page-header__search {
  position: relative;
  height: 100%;
  min-height: 550px;
}

.page-header__search:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../image/image-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 996px) {
	.page-header__menu {
		display: none;
	}
}
/* .page-header__menu.mobile-active {
  display: none;
} */

.page-header__mobile-menu {
	display: none;
}

@media (max-width: 996px) {
  .page-header__mobile-menu.mobile-active {
    position: absolute;
    top: 98%;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-height: 20vh;

    display: flex;
    flex-direction: column;

    padding: 0 16px 24px 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);

/*     overflow: hidden;
    overflow-y: auto; */

    background-color: var(--white);

    margin: 0;

    z-index: 100;
    border-radius: 0 0 16px 16px;
  }
}

/* @media (max-width: 996px) {
  .page-header__menu.mobile-active {
    position: absolute;
    top: 98%;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-height: 20vh;

    display: flex;
    flex-direction: column;

    padding: 0 16px 24px 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);

    overflow: hidden;
    overflow-y: auto;

    background-color: var(--white);

    margin: 0;

    z-index: 100;
    border-radius: 0 0 16px 16px;
  }
} */

@media (max-width: 996px) {
	.page-header__menu .header__nav-list {
  display: none;
}
}
/* .page-header__menu.mobile-active .header__nav-list {
  display: none;
} */

@media (max-width: 996px) {
  .page-header__mobile-menu.mobile-active .header__nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}

.select-form,
.search-form {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 24px) clamp(20px, 3vw, 32px);
  gap: 16px;
  width: 100%;
  height: fit-content;
  background: var(--white);
  border-radius: 12px;
}
.select-form,
.search-form {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 24px) clamp(20px, 3vw, 32px);
  gap: 16px;
  width: 100%;
  height: fit-content;
  background: var(--white);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .select-form,
  .search-form {
    width: 100%;
  }
}

.select-form .main-btn,
.search-form .main-btn {
  max-height: 56px;
  min-height: 56px;
  min-width: 108px;
}

@media (max-width: 768px) {
  .select-form .main-btn {
    max-width: 100%;
    margin-top: 6px;
  }
}

@media (max-width: 543px) {
  .search-form .main-btn {
    min-width: 100%;
  }
}

.select-form__title,
.search-form__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
}

.select-form__wrapper {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.search-form__wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 543px) {
  .search-form__wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

.search-form__wrapper input {
  padding: 0px 24px;
  height: 56px;
  background: #f4f4f4;
  border-radius: 8px;
  flex-grow: 1;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  border: none;
  outline: none;
}

@media (max-width: 543px) {
  .search-form__wrapper input {
    width: 100%;
  }
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 768px) {
  .select-wrapper {
    width: 100%;
  }
}

.select-label {
  font-weight: 500;
  font-size: 13px;
  color: #7d7d7d;
}

/*page-header */

/*----------------------------------burger---------------------------------*/

.burger {
  display: none;
  border: none;
  width: 40px;
  z-index: 101;
  background-color: transparent;
}

@media (max-width: 996px) {
  .burger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.burger-line {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--white);
}

.burger-line--middle {
  display: block;
  margin: 6px 0;
}

.burger.active .burger-line {
  background-color: var(--orange);
}

/*----------------------------------burger-end---------------------------------*/

/*----------------------------------custom-select---------------------------------*/

.custom-select-container {
  position: relative;
  box-sizing: border-box;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: 0.333;
}
.custom-select-opener {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px clamp(16px, 3vw, 24px);
  gap: 10px;
  width: 100%;
  max-width: 326px;
  min-width: 326px;
  height: 100%;
  min-height: 56px;
  background: #f4f4f4;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

@media (max-width: 768px) {
  .custom-select-opener {
    max-width: 100%;
    min-width: 100%;
  }
}

.custom-select-opener::before {
  content: "";
  position: absolute;
  right: 24px;
  width: 10px;
  height: 5px;
  background-image: url(../image/header_link_icon_gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.select-wrapper input {
  display: flex;
  align-items: center;
  padding: 0px clamp(16px, 3vw, 24px);
  gap: 10px;
  width: 100%;
  max-width: 326px;
  min-width: 326px;
  height: 100%;
  min-height: 56px;
  background: #f4f4f4;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  border: none;
  outline: none;
}

@media (max-width: 768px) {
  .select-wrapper input {
    max-width: 100%;
    min-width: 100%;
  }
}

.input-decorator {
  position: relative;
}

.input-decorator::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 10px;
  height: 5px;
  background-image: url(../image/header_link_icon_gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  max-height: 0;
  overflow: hidden;
  background-color: #e9e9e9;
  position: absolute;
  top: calc(100% + 6px);
  z-index: 1;
  width: 100%;
  max-width: inherit;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
  border-radius: 8px;
}
.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto;
}
.custom-select-option {
  padding: 10px 24px;
}
.custom-select-option.has-focus {
  background-color: var(--orange);
}

/*----------------------------------custom-select---------------------------------*/

/*----------------------------------faq---------------------------------*/

.faq__item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq__item {
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 6px;
}

a.faq-btn.collapsed {
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  margin-right: auto;
}

a.faq-btn {
  font-weight: 600;
  font-size: 16px;
  color: var(--orange);
}

.faq-btn {
  position: relative;
  padding-right: 16px;
  display: block;
  width: 100%;
}

.collapsed.faq-btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 5px;
  background-image: url(../image/header_link_icon_gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}
.faq-btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 5px;
  background-image: url(../image/header_link_icon_yellow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.faq__item-body {
  /* padding-top: 12px; */
  font-weight: 500;
  font-size: 13px;
}

/*----------------------------------faq------------------------------------------------------------------------------*/
/*----------------------------------transfers------------------------------------------------------------------------------*/

.transfers-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.transfers-card__img {
  max-height: 160px;
  min-height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.transfers-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
}

/*----------------------------------Свернуть текст Общие стили для single------------------------------------------------------------------------------*/
.single-card {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
}

@media(max-width: 768px) {
	.single-card {
		padding: 20px 10px;
	}	
}

.single-card__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.single-card__header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media(max-width: 576px) {
	.single-card__header-wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 8px;
	}
	
	.single-card__header-wrapper .main-btn {
		max-width: 100%;
	}
} 



.single-card__header-title {
  font-family: "Nasalization";
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  margin: 0;
}

.single-card__header-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.single-card__header-price-content {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  white-space: nowrap;
}

.single-card__header-price-content span {
  color: var(--orange);
}

.single-card__header-price-btn {
  font-weight: 600;
  font-size: 11px;
  text-decoration-line: underline;
  color: var(--orange);
}
.single-card__header-price-btn:hover,
.single-card__header-price-btn:focus {
  color: var(--orange);
}

.single-card__form-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 0 0;
  margin: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.single-card__form-footer-item {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

@media (max-width: 996px) {
  .single-card__form-footer-item {
    flex-wrap: wrap;
  }
}

.single-card__form-footer-item .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  width: 100%;
}

.single-card__form-footer-item .form-group label {
  font-weight: 500;
  font-size: 13px;
  color: #7d7d7d;
  margin: 0;
}

.single-card__form-footer .form-group .whatsapp-btn {
  position: relative;
  background-color: #25d366;
  color: var(--white);
  padding-left: 40px;
}

.single-card__form-footer .form-group .whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  width: 20px;
  height: 20px;
  background-image: url(../image/whatsapp.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.single-card__form-footer .form-group .whatsapp-btn-desc {
  display: block;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 4px;
}

.single-card__form-footer-item .form-group input {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 44px;
  background: #f4f4f4;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  border: none;
  outline: none;
}

.single-card__form-footer-item .form-group::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 14px;
  width: 10px;
  height: 5px;
  background-image: url(../image/header_link_icon_gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.single-card__desc {
  font-weight: 500;
  font-size: 13px;
}

.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.slider-thumbs .thumb {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.slider-thumbs .thumb.active-thumb {
  opacity: 0.5;
}

@media (max-width: 996px) {
  .slider-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .slider-thumbs {
	  display: none;
/*     grid-template-columns: repeat(2, 1fr); */
  }
}

@media (max-width: 390px) {
  .slider-thumbs {
    display: none;
  }
}

@media (max-width: 768px) {
  .single-section .row {
    gap: 40px;
  }
}

.slider-thumbs .thumb {
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  max-height: 100px;
  min-height: 100px;
}

.slider-thumbs .thumb img {
  border-radius: 16px;
  overflow: hidden;
  object-fit: cover;
}

.slider-for {
  height: 100vw !important;
  max-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.slider-for .slick-slide {
  height: 100vw !important;
  max-height: 400px;
}

@media(max-width: 768px) {
	.slider-for .slick-slide {
		padding-right: 10px;
/* 		max-height: 220px; */
	}	
}

@media(max-width: 543px) {
	.slider-for {
		max-height: 220px;
	}
	.slider-for .slick-slide {
		max-height: 220px;
	}	
		.slider-for .slick-slide div {
		max-height: 220px;
	}	
			.slider-for .slick-slide div {
		max-height: 220px;
	}	
}

.slider-for .slick-slide img {
  max-height: 400px;
  min-height: 400px;
  object-fit: cover;
	border-radius: 16px;
}

@media(max-width: 543px) {
	.slider-for .slick-slide img {
  max-height: 220px;
  min-height: 220px;
		overflow: hidden;

}
}

.toggle-text-btn {
  font-weight: 600;
  font-size: 11px;
  text-decoration-line: underline;
  color: var(--orange);
  border: none;
  background-color: transparent;
  outline: none;
  padding: 8px 0 0 0;
}

.limited-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.expanded-text {
  -webkit-line-clamp: unset;
  max-height: none;
}

.single-card__item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 6px 8px;
  background: #f8f8f8;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
}

.programms__title {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #111111;
	margin-bottom: 16px;
}

.programms__info-wrapper {
	display: flex;
	flex-direction: column;
	padding: 16px 20px;
	gap: 6px;
	background: #F8F8F8;
	border-radius: 12px;
}

.single-card__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(16px, 3vw, 32px) 0 clamp(16px, 3vw, 24px) 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 543px) {
  .single-card__info-wrapper {
    padding-left: 0;
  }
}

.programms__info-title {
	font-weight: 700;
	font-size: 17px;
	line-height: 21px;
	color: #F27E00;
	margin-bottom: 6px;
}

.programms__info-item {
	display: flex;
	flex-direction: column;
	padding-bottom: 8px;
   border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* 8% непрозрачности */

}

.programms__info-item-subtitle {
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	color: #111111;	
	margin-bottom: 2px;
}

.programms__info-item-subtitle:hover {
		color: #111111;	
}

.programms__info-item-desc {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #7D7D7D;
}

.programms__info-item-desc p {
	margin-bottom: 0;
}

.single-card__info-title {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 17px;
}

@media (max-width: 543px) {
  .single-card__info-title {
    padding: 16px 0 16px 44px;
  }
}

.single-card__info-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 36px;
  height: 36px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

@media (max-width: 543px) {
  .single-card__info-title::before {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}

.single-card__info-desc {
  font-weight: 500;
  font-size: 13px;
}

.single-card__info-desc p {
  margin-bottom: 5px;
}

.single-card__info-desc ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  align-items: center;
  margin-bottom: 0;
}

@media (max-width: 996px) {
  .single-card__info-desc ul {
    grid-template-columns: 1fr;
  }
}

.single-card__info-desc ul li {
  position: relative;
  padding-left: 16px;
  /* отступ под маркер */
}

.single-card__info-desc ul li::before {
  content: "•";
  /* или замени на свой символ / иконку */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.tours-btn__wrapper {
	display: flex;
	align-items: center;
	gap: 6px;
}

.tours-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	background: #F8F8F8;
	border-radius: 8px;
    color: #111111;
}

.advantages__list-tours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0;
}

.advantages__list {
  margin-bottom: 8px;
}

.advantages__list-item {
  position: relative;
  max-width: 162px;
  padding-left: 40px;
}

@media (max-width: 996px) {
  .advantages__list-item {
    max-width: 100%;
  }
}

.advantages__list-item:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  width: 20px;
  height: 20px;
  background-image: url(../image/advantages_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.advantages__list-tours-item {
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
}

.card_characteristic__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	margin-bottom: 8px;
}

@media(max-width: 992px) {
	.card_characteristic__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 576px) {
	.card_characteristic__list {
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}
}

@media(max-width: 576px) {
	.card_characteristic__list {
		grid-template-columns: 1fr;
	}
}

.card_characteristic_wrapper {
	display: flex;
	flex-direction: column;	
	padding: 8px 16px;
	background: #F8F8F8;
	border-radius: 8px;
}

@media(max-width: 576px) {
	.card_characteristic_wrapper {
		flex-direction: row;
		justify-content: space-between;
		background: white;
		padding: 0;
	}
}


.card_characteristic__title {
	font-weight: 500;
	font-size: 11px;
	line-height: 13px;
	color: #7D7D7D;
	white-space: nowrap;
}

@media(max-width: 576px) {
	.card_characteristic__title {
		color: #111111;
		font-size: 13px;
	}
}

.card_characteristic__desc {
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	color: #111111;
}

.card_characteristic__desc a {
	color: #111111;
}

@media(max-width: 576px) {
	.card_characteristic__desc {
		text-align: end;
	}
}

.single-card__rating {
  font-weight: 600;
  font-size: 13px;
}

.single-card__rating-desc {
  font-weight: 500;
  font-size: 10px;
  color: #7d7d7d;
  margin: 1px 0 0 2px;
}

.single-card__rating .fa {
  margin-right: 2px;
  color: var(--orange);
  font-size: 16px;
}

.single-card__resort {
  font-weight: 600;
  font-size: 12px;
  text-decoration-line: underline;
  color: var(--orange);
}

.single-card__resort:hover,
.single-card__resort:focus {
  color: var(--orange);
}
.single-card__resort .fa {
  margin-right: 5px;
}

.single-card__flex-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.single-card__item-map {
  width: 100%;
  height: 160px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.single-card__location-header {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 13px;
  margin: 12px 0 20px 0;
}
.single-card__location-header p {
  margin: 0;
}

.single-card__location-header .fa {
  color: var(--orange);
}

.hotels-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.hotels-card__header {
  position: relative;
  height: 100%;
  max-height: 220px;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
	z-index: 1
}

.hotels-card__header:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background:#000;
	opacity:0.3;
	z-index: 2;
	transition: opacity 0.2s ease; /* ← плавность */
}

.hotels-card:hover {
	opacity: 1;
}

.hotels-card:hover .hotels-card__header:before {
	opacity:0.5;
}

.hotels-card__img {
  object-fit: cover;
  min-height: inherit;
}

.hotels-card__title {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--white);
		z-index: 3;
}

.hotels-card__footer {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 12px;
  background: var(--white);
}

.hotels-card__footer-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotels-card__price {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  white-space: nowrap;
  color: var(--black);
}

.hotels-card__price span {
  color: var(--orange);
}

.hotels-card__rating {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin-left: auto;
}

.hotels-card__rating .fa {
  padding-right: 4px;
  color: var(--orange);
  font-size: 20px;
}

.hotels-card__rating-desc {
  font-weight: 500;
  font-size: 10px;
  color: #7d7d7d;
  margin: 1px 0 0 2px;
}

.hotels-card__advantages-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotels-card__advantages-list-item {
  position: relative;
  padding-left: 16px;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
}

.hotels-card__advantages-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-56%);
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.hotels-card__desc {
  font-weight: 500;
  font-size: 12px;
  color: #7d7d7d;
}

.hotels-card__desc p {
  margin-bottom: 0;
}

.hotel_price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 996px) {
  .hotel_price {
    padding-left: 0;
  }
}

.hotel_price::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 36px;
  height: 36px;
  background-image: url("../image/money-bag.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hotel_price--additional:before {
	  background-image: url("https://kg-bw.ru/wp-content/uploads/2025/06/banknote.svg");
}

@media (max-width: 996px) {
  .hotel_price::before {
    top: 24px;
  }
}

@media (max-width: 768px) {
  .hotel_price::before {
    right: 0;
    left: auto;
  }
}

.hotel_price__title {
  font-weight: 600;
  font-size: 17px;
  color: var(--black);
  text-align: start;
}

.hotel_price__desc {
  font-weight: 500;
  font-size: 13px;
  color: #7d7d7d;
}

@media (max-width: 768px) {
  .hotel_price {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
}

@media (max-width: 996px) {
  .hotel_price__title {
    padding-left: 44px;
  }
}

@media (max-width: 768px) {
  .hotel_price__title {
    padding-left: 0;
    padding-right: 44px;
  }
}

.hotel_price table {
  border-radius: 16px;
  overflow: hidden;
}

.hotel_price table thead th {
  background-color: var(--orange);
  border: none;
  padding: 10px;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  border-right: 1px solid var(--white);
}
.hotel_price table thead th:last-child {
  border-right: none;
}
.hotel_price table tbody td {
  border: none;
  padding: 10px;
  font-weight: 600;
  font-size: 12px;
  background: #f8f8f8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hotel_price table tbody tr td {
  text-align: center;
}
.hotel_price table tbody tr td:last-child {
  border-right: none;
}

.tours-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.tours-card__header {
  position: relative;
  height: 100%;
  max-height: 220px;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.room-card__header {
  position: relative;
  height: 100%;
  max-height: 220px;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.tours-card__header:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background:#000;
	opacity:0.3;
	z-index: 2;
	transition: opacity 0.2s ease; /* ← плавность */
}

.tours-card:hover {
	opacity: 1;
}

.tours-card:hover .tours-card__header:before {
	opacity:0.5;
}

.tours-card__img {
  object-fit: cover;
  min-height: inherit;
}

.tours-card__title {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--white);
	z-index: 3;
}

.tours-card__footer {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 12px;
  background: var(--white);
}

.tours-card__footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tours-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  white-space: nowrap;
  color: var(--black);
}

.tours-card__price span {
  color: var(--orange);
}
.tours-card__price-count {
  font-weight: 500;
  font-size: 12px;
  color: #7d7d7d;
  margin-top: 4px;
}

.tours-card__footer-top-time {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

.tours-card__desc {
  font-weight: 500;
  font-size: 13px;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Ограничение в 3 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tours-card__desc p {
  margin-bottom: 0;
}

/*----------------------------------Свернуть текст------------------------------------------------------------------------------*/

/*----------------------------------transfers------------------------------------------------------------------------------*/
/*----------------------------------breadcrumbs------------------------------------------------------------------------------*/

.breadcrumbs a {
  font-weight: 600;
  font-size: clamp(13px, 3vw, 15px);
  color: var(--white);
}

.breadcrumb-current {
  font-weight: 600;
  font-size: clamp(13px, 3vw, 15px);
  color: var(--orange);
}

.breadcrumb-divider {
  color: var(--white);
}

/*----------------------------------breadcrumbs------------------------------------------------------------------------------*/

/* Catalog */

.filter-title {
  padding: 6px 0 6px 14px;
  border-left: 3px solid #111111;
  position: relative;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
}

.filter-tabs {
  position: relative;
  /* top: 15%; */
  background: #fff;
  z-index: 1;
  padding: 25px 0 0;
}

.filter-tabs .navigation {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 41px;
  padding-bottom: 10px;
  overflow: scroll;
  overflow-y: hidden;
  /* flex-wrap: wrap; */
}
.filter-tabs .navigation::-webkit-scrollbar {
  height: 4px !important; /* Adjust the width as needed */
}
.filter-tabs .navigation::-webkit-scrollbar-thumb {
  background-color: #f0f0f0; /* Customize the thumb color */
  border-radius: 4px; /* Customize the thumb border radius */
}

.filter-tabs .navigation::-webkit-scrollbar-track {
  background-color: #fff; /* Customize the track color */
}

.filter-tabs a {
  font-size: 14px;
  font-weight: 500;
  color: #969696;
  transition: 0.3s;
  margin-right: 35px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  min-width: fit-content;
}

.filter-tabs a.active {
  background: none;
  color: #000;
}

.filter-tabs a.active,
.filter-tabs a:hover {
  border-bottom: 2px solid #ff6f00;
}

.blog-post {
  padding: 40px 0;
}

.blog-post__content img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  margin-bottom: 30px;
}

.blog-post__content h3 {
  font-size: 36px;
  font-weight: 500;
  text-transform: unset;
  padding-bottom: 10px;
  margin: 0 auto;
  color: #000;
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 1.75rem auto;
    width: 90vw;
  }
}

.modal-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  position: relative;
  background: #ffffff;
  border-radius: 24px;
}

.modal-content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  font-size: 0;
}

.modal-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
  border: none;
}

.modal-title {
  font-family: "Nasalization";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  line-height: 1.2;
}

.modal-subtitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #7d7d7d;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #7d7d7d;
  margin: 0;
}

.modal-content input {
  padding: 0px 24px;
  width: 100%;
  height: 52px;
  background: #f4f4f4;
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.modal-content .main-btn {
  max-width: 100%;
  min-height: 52px;
  max-height: 52px;
}

.form-check {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #7d7d7d;
  padding: 0;
  margin-top: 4px;
}
.form-check a {
  color: var(--orange);
}

.lw-pagination {
  margin-top: 16px;
  width: 100%;
}

.lw-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lw-pagination ul .page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  border: none;
}

.lw-pagination ul .page-item .page-link {
  font-weight: 600;
  font-size: 16px;
  color: #7d7d7d;
  border: none;
  outline: none;
}

.lw-pagination ul .page-item .page-link:hover,
.lw-pagination ul .page-item .page-link:focus {
  border: none;
  outline: none;
  background-color: transparent;
  box-shadow: none;
}

.lw-pagination ul .page-item.active {
  background: var(--orange);
}

.lw-pagination ul .page-item.active .page-link {
  background: var(--orange);
  color: var(--white);
}

/* custom-select */

/* .country-code-group {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8f8f8;
  border-radius: 500px;
  padding-left: 20px;
}

@media (max-width: 400px) {
  .country-code-group {
    padding-left: 10px;
  }
}

.custom-select-container {
  position: relative;
  box-sizing: border-box;
}

.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: 0.333;
}

.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  max-height: 0;
  overflow: hidden;
  background: transparent;
  color: #ffffff;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
}
.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto;
}
.custom-select-option {
  padding: 0.5em;
}
.custom-select-option.has-focus {
  background-color: LightBlue;
}

.custom-select-option[data-value="KG"]::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 24px;
  height: 20px;
  background-image: url("https://trialkg.com/wp-content/uploads/2024/10/kg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-option[data-value="KZ"]::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 37px;
  width: 24px;
  height: 20px;
  background-image: url("https://trialkg.com/wp-content/uploads/2024/10/kz.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-option[data-value="RU"]::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 7px;
  width: 24px;
  height: 20px;
  background-image: url("https://trialkg.com/wp-content/uploads/2024/10/ru.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-optgroup > .custom-select-option {
  padding-left: 2em;
}
.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}

.custom-select-opener {
  position: relative;
  display: flex;
  align-items: center;
  width: 94px;
  height: 30px;
  text-align: left;
  padding: 4px 10px 3px 50px;
  border: 1px solid #dedede;
  border-radius: 20px;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: transparent;
  color: #222;
  cursor: pointer;
}

.custom-select-panel {
  width: fit-content;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.custom-select-opener.KG::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 24px;
  height: 20px;
  background-image: url("https://trialkg.com/wp-content/uploads/2024/10/kg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-opener.KG::before {
  content: "\2023"; 
  position: absolute;
  left: 35px;
  top: 1px;
  font-size: 24px; 
  transform: rotate(90deg); 
  display: inline-block; 
}

.custom-select-opener.KZ::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 24px;
  height: 20px;
  background-image: url("https://trialkg.com/wp-content/uploads/2024/10/kz.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-opener.KZ::before {
  content: "\2023";
  position: absolute;
  left: 35px;
  top: 1px;
  font-size: 24px;
  transform: rotate(90deg); 
  display: inline-block;
}

.custom-select-opener.RU::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 24px;
  height: 20px;
  background-image: url("https://trialkg.com/wp-content/uploads/2024/10/ru.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: 200ms ease;
}

.custom-select-opener.RU::before {
  content: "\2023"; 
  position: absolute;
  left: 35px;
  top: 1px;
  font-size: 24px; 
  transform: rotate(90deg);
  display: inline-block; 
}


.customSelect.is-open .custom-select-opener {
  border-radius: 20px 20px 0 0;
  border-bottom: none;
}

.custom-select-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 94px;
  height: 32px;
  text-align: left;
  padding: 7px 10px 3px 40px;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  text-overflow: ellipsis;
  color: #222;
  background: #fff;
  cursor: pointer;
  border: 1px solid #dedede;
}

.custom-select-option:last-child {
  border-radius: 0 0 10px 10px;
} */

	.collapsed.rooms__list-item-header::before {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 10px;
		height: 5px;
		background-image: url(../image/header_link_icon_gray.svg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		pointer-events: none;
		transition: 200ms ease;
	}
	
	.rooms__list-item-header::before {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 10px;
		height: 5px;
		background-image: url(../image/header_link_icon_yellow.svg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		pointer-events: none;
		transition: 200ms ease;
	}