html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

body {
  padding: 0;
  font-family: var(--font-primary);
  width: 100%;
  background-color: white;
  color: #212529b5;
  font-size: 16px;
  line-height: 1.875;
}

select,
input:not([type="range"]),
textarea {
  border: 0;
  outline: none;
  width: 100%;
  background-color: transparent;
}
select {
  background-color: transparent !important;
}
main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
svg{
  display: inline-block;
  width: .8em;
  height: .8em;
  vertical-align: middle;
  font-size: 24px;
  flex-shrink: 0;
}

a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  font-size: 16px;
  color: #212529b5;
}

.contact-form select,
.contact-form input:not([type="range"]),
.contact-form textarea {
  border-radius: 4px;
  padding: 17px 20px;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form select:focus,
.contact-form input:not([type="range"]):focus,
.contact-form textarea:focus {
  outline: none;
}

.contact-form ::-moz-placeholder {
  font-weight: 400;
}

.contact-form :-ms-input-placeholder {
  font-weight: 400;
}

.contact-form ::placeholder {
  font-weight: 400;
}

input.text-white::-moz-placeholder {
  color: white;
}

input.text-white:-ms-input-placeholder {
  color: white;
}

input.text-white::placeholder {
  color: white;
}

.form-checkbox {
  cursor: pointer;
  position: relative;
  display: flex;
}

.form-checkbox label {
  margin: 0;
  margin-left: 9px;
  font-size: 14px;
}

.form-checkbox__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid var(--color-dark-4);
  border-radius: 4px;
}

.form-checkbox__icon {
  display: flex;
  position: absolute;
  font-size: 12px;
  color: white;
}

.form-checkbox input {
  cursor: pointer;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.form-checkbox input:checked ~ .form-checkbox__mark {
  background-color: var(--color-green-1);
  border: 2px solid var(--color-green-1);
}

.form-checkbox input:checked ~ .form-checkbox__mark .form-checkbox__icon {
  display: block;
}

.form-checkbox:hover input ~ .form-checkbox__mark {
  background-color: var(--color-green-1);
}

.form-checkbox:hover input:checked ~ .form-checkbox__mark {
  background-color: var(--color-green-1);
}

.form-radio {
  display: flex;
  align-items: center;
}

.form-radio .radio {
  cursor: pointer;
  position: relative;
  display: block;
}

.form-radio .radio__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  border: 1px solid var(--color-dark-1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio__icon {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-white);
  transform-origin: center;
  opacity: 1;
  transform: scale(0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio input {
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.form-radio .radio input:checked ~ .radio__mark {
  border-color: var(--color-green-1);
  background-color: var(--color-green-1);
}

.form-radio .radio input:checked ~ .radio__mark .radio__icon {
  opacity: 1;
  transform: scale(1);
}

.form-switch .switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.form-switch .switch__slider {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0px 10px 50px rgba(13, 38, 59, 0.1);
  background-color: rgba(255, 255, 255, 0.2);
  transition: .3s;
  border-radius: 30px;
  border: 1px solid var(--color-green-1);
}

.form-switch .switch__slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 5px;
  bottom: 4px;
  background-color: var(--color-green-1);
  border-radius: 50%;
  transition: .3s;
}

.form-switch .switch input {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-switch .switch input:checked + .switch__slider {
  background-color: var(--color-green-1);
}

.form-switch .switch input:checked + .switch__slider::before {
  transform: translateX(29px);
  background-color: white;
}

.single-field input {
  border-radius: 4px;
  padding: 17px 20px;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single-field.-w-410 input {
  width: 410px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  margin: 0;
  line-height: 1.1;
  font-weight: 600;
}


.sectionTitle.-md .sectionTitle__title {
  font-size: var(--text-30);
}

.sectionTitle.-lg .sectionTitle__title {
  font-size: var(--text-40);
}

.masthead.-type-1 {
  position: relative;
  padding-top: 330px;
  padding-bottom: 210px;
}

.masthead.-type-1 .masthead__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.masthead.-type-1 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-1 .masthead__bg::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(5, 16, 54, 0.5) 0%, #051036 72.43%);
  opacity: 0.85;
}

.masthead.-type-2 {
  position: relative;
}

.masthead.-type-2 .mainSearch {
  position: absolute;
  bottom: 30px;
}

.masthead.-type-2 .masthead__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
}
.masthead.-type-2 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-2 .masthead__tabs {
  padding-top: 90px;
}

.masthead.-type-2 .masthead__content {
  padding-top: 120px;
}

.masthead.-type-2 .masthead__images {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}

.masthead.-type-2 .masthead__images img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-2 .masthead__images > *:nth-child(1) {
  grid-row: span 2;
}

.masthead.-type-3 {
  position: relative;
  padding-top: 360px;
  padding-bottom: 100px;
}

.masthead.-type-3 .masthead__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.masthead.-type-3 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-3 .masthead__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-3 .masthead__tabs {
  margin-top: 110px;
}

.masthead.-type-3 .masthead__tabs .tabs__controls {
  bottom: -5px;
}

.masthead.-type-3 .masthead__tabs .tabs__button {
  height: 64px;
}

.masthead.-type-4 {
  position: relative;
  margin: 20px 20px 0 20px;
}

.masthead.-type-4 .masthead__content {
  position: relative;
  z-index: 1;
  padding-top: 360px;
  padding-bottom: 140px;
}

.masthead.-type-4 .masthead__scroll {
  position: absolute;
  z-index: 5;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.masthead.-type-4 .masthead__scroll .-line {
  width: 1px;
  height: 48px;
  background-color: white;
  margin-top: 3px;
}

.masthead.-type-4 .masthead-slider {
  position: relative;
  z-index: 0;
}

.masthead.-type-4 .masthead-slider .masthead__image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.masthead.-type-4 .masthead-slider .masthead__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-4 .masthead-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-4 .masthead-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}

.masthead.-type-4 .masthead-slider__nav.-prev {
  left: 40px;
}

.masthead.-type-4 .masthead-slider__nav.-next {
  right: 40px;
}

.masthead.-type-4 .mainSearch {
  margin-top: 90px;
}

.masthead.-home-2 {
  position: relative;
  padding-top: 200px;
  padding-bottom: 150px;
}

.masthead.-home-2 .masthead__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  z-index: -1;
  background: #eff5fb;
}

.masthead.-home-2 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
}

.masthead.-home-2 .masthead__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
  z-index: -2;
}
.masthead.-home-2 .masthead__image::before{
  content:"";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: radial-gradient(#d7dbe600 0%, #eff5fb 70%);
  background: linear-gradient(274deg, #d7dbe600 0%, #eff5fb 70%);
}
.masthead.-home-2 .masthead__image img, .masthead.-home-2 .masthead__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

.masthead.-home-2 .-line {
  position: absolute;
  bottom: -30%;
  left: auto;
  right: 0;
  width: 30%;
}

.masthead.-home-2 .-line img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-home-2 {
  position: relative;
  padding-top: 200px;
  padding-bottom: 150px;
}

.masthead.-home-2 .masthead__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  z-index: 0;
  background: #eff5fb;
}

.masthead.-home-2 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
}

.masthead.-home-2 .masthead__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: -2;
}
.masthead.-home-2 .masthead__image::before{
  content:"";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 0;
  z-index: 0;
  background: radial-gradient(#d7dbe600 0%, #eff5fb 70%);
  background: linear-gradient(274deg, #d7dbe600 0%, #eff5fb 70%);
}
.masthead.-home-2 .masthead__image img, .masthead.-home-2 .masthead__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

.masthead.-home-2 .-line {
  position: absolute;
  bottom: -30%;
  left: auto;
  right: 0;
  width: 30%;
}

.masthead.-home-2 .-line img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


.masthead.-type-5 {
  position: relative;
  padding-top: 200px;
  padding-bottom: 150px;
}

.masthead.-type-5 .masthead__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  z-index: -1;
  background: #e6f9f3;
}

.masthead.-type-5 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
}

.masthead.-type-5 .masthead__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
  z-index: -2;
}
.masthead.-type-5 .masthead__image::before{
  content:"";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: radial-gradient(#d7dbe600 0%, #e6f9f3 70%);
  background: linear-gradient(274deg, #d7dbe600 0%, #e6f9f3 70%);
}
.masthead.-type-5 .masthead__image img, .masthead.-type-5 .masthead__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

.masthead.-type-5 .-line {
  position: absolute;
  bottom: -30%;
  left: auto;
  right: 0;
  width: 30%;
}

.masthead.-type-5 .-line img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-6 {
  position: relative;
  padding-top: 360px;
  padding-bottom: 300px;
}

.masthead.-type-6 .masthead__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.masthead.-type-6 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-6 .masthead__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-7 {
  position: relative;
  padding-top: 90px;
}

.masthead.-type-7 .masthead__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.masthead.-type-7 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-7 .masthead__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-7 .masthead__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 650px;
}

.masthead.-type-7 .masthead-slider {
  overflow: hidden;
  position: relative;
  width: 1720px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 4px;
}
 
.masthead.-type-7 .masthead-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.masthead.-type-7 .masthead-slider__nav.-prev {
  left: 40px;
}

.masthead.-type-7 .masthead-slider__nav.-next {
  right: 40px;
}

.masthead.-type-7 .mainSearch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  z-index: 1;
}
.masthead.-type-8 {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px !important;
}
.js-home3-slider .swiper-slide::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 120px;
  z-index: 1;
  top: 0;
  background: linear-gradient(180deg, #111714b3, #00000000);
}

.masthead.-type-8 .masthead__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  z-index: -1;
}

.masthead.-type-8 .masthead-bottom {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.masthead.-type-8 .mainSearch {
  margin-top: -250px !important;
  position: relative;
  margin: auto;
  border-radius: 50px !important;
  background: #ffffff;
}
.masthead.-type-8 .mainSearch .select__button {
  background-color: transparent;
}
.masthead.-type-8 .masthead-slider {
  position: relative;
  border-radius: 16px;
  margin: 0 24px;
}

.masthead.-type-8 .masthead-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.masthead.-type-8 .masthead-slider__nav.-prev {
  left: 20px;
}

.masthead.-type-8 .masthead-slider__nav.-next {
  right: 20px;
}

/**.masthead.-type-8 .masthead-slider__panjs-home3-pag {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 10;
}**/
.masthead.-type-8 .pagination.-dots .pagination__item {
  background-color: var(--color-white);
  opacity: 0.5;
  width: 20px;
  height: 8px;
  border-radius: 6px;
  margin: 0 2px;
}
.masthead.-type-8 .pagination.-dots .pagination__item.is-active {
  background-color: var(--color-white);
  transform: scale(1);
  opacity: 1;
  width: 30px;
}

.masthead.-type-9 {
  position: relative;
  z-index: 0;
}

.masthead.-type-9 .masthead__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.masthead.-type-9 .masthead__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.masthead.-type-9 .masthead__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 6, 20, 0.3);
}

.masthead.-type-9 .masthead__scroll {
  position: absolute;
  bottom: 30px;
  right: 50px;
}

.masthead.-type-9 .masthead__scroll .-icon {
  position: relative;
}

.masthead.-type-9 .masthead__scroll .-icon > *:nth-child(1) {
  width: 28px;
  height: 40px;
  border: 2px solid white;
  border-radius: 200px;
}

.masthead.-type-9 .masthead__scroll .-icon > *:nth-child(2) {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 100%;
  transition: all 0.5s ease;
}

.masthead.-type-9 .masthead__scroll:hover .-icon > *:nth-child(2) {
  transform: translateY(16px);
}

.masthead.-type-9 .masthead-slider {
  position: relative;
  z-index: -1;
}

.masthead.-type-9 .masthead-slider .swiper-slide {
  padding-top: 385px;
  padding-bottom: 285px;
}

.masthead.-type-9 .masthead-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.masthead.-type-9 .masthead-slider__nav.-prev {
  left: 40px;
}

.masthead.-type-9 .masthead-slider__nav.-next {
  right: 40px;
}

.masthead.-type-9 .mainSearch-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 55vw;
}

.masthead.-type-10 {
  position: relative;
  padding-top: 360px;
  padding-bottom: 205px;
  background: linear-gradient(180deg, rgba(53, 84, 209, 0.1) 0%, rgba(196, 196, 196, 0) 100%);
}

.masthead.-type-10 .masthead__content {
  position: relative;
  z-index: 1;
}

.masthead.-type-10 .masthead__image {
  position: absolute;
  z-index: 0;
  display: flex;
  top: 160px;
  right: 0;
}

.masthead.-type-10 .container-1500 {
  margin: 0 auto;
  max-width: 1530px;
  padding: 0 15px;
}

.js-home3-slider .swiper-slide {
  height: 750px !important;
}
.js-home3-slider .swiper-slide img,
.js-home3-slider .swiper-slide video {
  height: 100% !important;
}
.js-home3-slider .swiper-slide::after,
.js-home3-slider .swiper-slide::after{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 26%);
}

.citiesCard.-type-1 {
  position: relative;
  z-index: 0;
  background: var(--color-light-3);
}

.citiesCard.-type-1 .citiesCard__image {
  border-radius: inherit;
}

.citiesCard.-type-1 .citiesCard__image img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.citiesCard.-type-1 .citiesCard__content {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.citiesCard.-type-1 .citiesCard__bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #000000, #00000000, #00000000);
  border-radius: inherit;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
}

.citiesCard.-type-1 .citiesCard__top {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.citiesCard.-type-1 .citiesCard__bottom {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(50px);
  text-shadow: 0 0px 15px #0000006e;
}

.citiesCard.-type-1:hover {
  cursor: pointer;
}

.citiesCard.-type-1:hover .citiesCard__top {
  opacity: 1;
}

.citiesCard.-type-1:hover .citiesCard__bottom {
  transform: translateY(0);
}

.citiesCard.-type-1:hover .citiesCard__bg {
  height: 100%;
  opacity: 0.7;
  background: linear-gradient(360deg, #000000, #e15f19);
}

.citiesCard.-type-2 {
  position: relative;
  z-index: 0;
}

.citiesCard.-type-2 .citiesCard__image {
  overflow: hidden;
}

.citiesCard.-type-2 .citiesCard__image img {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-2:hover {
  cursor: pointer;
}

.citiesCard.-type-2:hover .citiesCard__image img {
  transform: scale(1.15);
}

.citiesCard.-type-3 {
  position: relative;
  overflow: hidden;
  z-index: 0;
  max-height: 250px;
  height: 100%;
}

.citiesCard.-type-3 .citiesCard__image {
  overflow: hidden;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}

.citiesCard.-type-3 .citiesCard__image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-3 .citiesCard__content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
}

.citiesCard.-type-3 .citiesCard__content::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #697488 1%, #69748800 63.5%);
}

.citiesCard.-type-3:hover .citiesCard__image img {
  transform: scale(1.1);
}

.citiesCard.-type-4 .citiesCard__image {
  overflow: hidden;
}

.citiesCard.-type-4 .citiesCard__image img {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-4:hover .citiesCard__image img {
  transform: scale(1.1);
}

.citiesCard.-type-5 {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-5:hover {
  background-color: var(--color-green-1) !important;
}

.citiesCard.-type-5:hover * {
  color: white !important;
}

.ctaCard.-type-1 {
  position: relative;
  z-index: 0;
}

.ctaCard.-type-1 .ctaCard__image {
  border-radius: inherit;
}

.ctaCard.-type-1 .ctaCard__image img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.ctaCard.-type-1 .ctaCard__content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.ctaCard.-type-1 .ctaCard__content::before {
  content: "";
  border-radius: inherit;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 16, 54, 0.7) 0%, rgba(5, 16, 54, 0) 100%);
}

.ctaCard.-type-1.-no-overlay .ctaCard__content::before {
  display: none;
}
.citiesCard.-type-2 .carCard__image.--overlay::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgb(0 0 0 / 70%) 10%, rgba(5, 16, 54, 0) 100%);
}


.howtowork button{
    padding: 0 !important;
    border-radius: 0px !important;
    border: none !important;
    max-width: 600px;
}
.howtowork button,
.howtowork button h4,
.howtowork button p{
  text-align:left;
  color: var(--color-green-1);
  border: none !important;
  line-height: 1;
  font-size: 20px;
}
.howtowork button svg{
  color: var(--color-green-4);
  font-size: 24px;
  float: left;
  width: 28px;
  height: 28px;
  margin: 0 16px 0 0;
}
.howtowork button:hover,
.howtowork button:hover h4,
.howtowork button:hover p,
.howtowork button:hover svg,
.howtowork button:hover i{opacity: .8;}
.howtowork h4{
  line-height:1.1;
  margin: 0px 0;
  max-width: 100%;
}
.howtowork .services-item{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.nav-link:focus, .nav-link:hover {
  color: var(--color-green-1);
}
.howtowork .nav-tabs {
  border:none;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr;
  grid-template-areas:
    "button"
    "button"
    "button"
    "button";
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}
.howtowork .nav-tabs .nav-item.show .nav-link,
.howtowork .nav-tabs .nav-link.active{
  color: #000000;
  background-color: transparent;
  border-color: #000000;
  opacity:10;
}
.howtowork .nav-tabs .nav-item.show .nav-link,
.howtowork .nav-tabs .nav-link.active {
  color: var(--color-green-1);
  border-color: var(--color-green-1) !important;
}
.howtowork .nav-tabs .nav-item.show svg .nav-link,
.howtowork .nav-tabs .nav-link.active svg {
  color: var(--color-green-1);
}
.howtowork .nav-tabs .nav-item.show h4 .nav-link,
.howtowork .nav-tabs .nav-link.active h4 {
  color: var(--color-green-1);
}

.howtowork button p{
  color: var(--color-light-1);
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1.3;
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}
.howtowork button .serv-link{
  color: #d5d5d5 !important;
}
.howtowork .tab-pane{
    position: relative;
    z-index: 1;
}
.howtowork .tab-pane img{
    object-fit: contain;
    height: 450px !important;
}
.howtowork .tab-icon-1{
    position: absolute;
    width: 250px;
    left: -50px;
    bottom: 40px;
    font-size: 160px;
    z-index: 6;
    color: var(--color-green-1);
}
.howtowork .tab-icon-2{
    position: absolute;
    width: 100px;
    right: 120px;
    top: 50px;
    font-size: 200px;
    z-index: 2;
    color: var(--color-green-5);
}
.tab-icon-1 {
    position: relative;
    animation: tab_icon_1 5s infinite;
}
.tab-icon-2 {
    position: relative;
    animation: tab_icon_2 5s infinite;
}

@keyframes tab_icon_1{
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
}

@keyframes tab_icon_2{
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(20px);
    }
}

.tabs__content {
  position: relative;
}

.tabs__pane {
  position: absolute;
  top: 0;
  visibility: hidden;
  transition: none;
  opacity: 0;
}

.tabs__pane.is-tab-el-active {
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
  position: relative;
  opacity: 1;
  visibility: visible;
}

.tabs.-pills .tabs__controls .tabs__button {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--color-white);
}

.tabs.-pills .tabs__controls .tabs__button:hover {
  color: var(--color-green-3) !important;
}

.tabs.-pills .tabs__controls .tabs__button.is-tab-el-active {
  color: var(--color-green-3) !important;
  background-color: var(--color-light-3) !important;
}

.tabs.-pills-2 .tabs__controls .tabs__button {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-pills-2 .tabs__controls .tabs__button:hover {
  color: var(--color-green-1) !important;
}

.tabs.-pills-2 .tabs__controls .tabs__button.is-tab-el-active {
  color: var(--color-white) !important;
  background-color: var(--color-green-1) !important;
}

.tabs.-pills-3 .tabs__controls .tabs__button {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 50px !important;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 .05rem .75rem rgba(0,0,0,.09)!important;
}

.tabs.-pills-3 .tabs__controls .tabs__button:hover {
  color: var(--color-green-4) !important;
}

.tabs.-pills-3 .tabs__controls .tabs__button.is-tab-el-active {
  color: var(--color-white) !important;
  background-color: var(--color-dark-4) !important;
  box-shadow: 0 .05rem .75rem rgba(0,0,0,.2)!important;
}

.tabs__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #aaa rgba(0,0,0,0);
  scrollbar-width: thin;
  white-space: nowrap;
  scroll-snap-align: start;
}

.tabs__controls > div {
  scroll-snap-align: center;
  min-width: 100px;
}

.tabs.-bookmark .tabs__controls {
  position: relative;
  overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.tabs.-bookmark .tabs__controls > div {
  scroll-snap-align: center;
}

.tabs.-bookmark .tabs__button {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-bookmark .tabs__button:hover {
  color: var(--color-green-1) !important;
}

.tabs.-bookmark .tabs__button.is-tab-el-active {
  color: var(--color-dark-1) !important;
  background-color: white;
}

.tabs.-bookmark-2 .tabs__controls {
  position: relative;
  overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.tabs.-bookmark-2 .tabs__controls > div {
  scroll-snap-align: center;
}

.tabs.-bookmark-2 .tabs__button {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-bookmark-2 .tabs__button:hover {
  color: var(--color-green-1) !important;
}

.tabs.-bookmark-2 .tabs__button.is-tab-el-active {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.tabs.-underline .tabs__controls .tabs__button {
  position: relative;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-underline .tabs__controls .tabs__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tabs.-underline .tabs__controls .tabs__button:hover {
  color: var(--color-green-1) !important;
}

.tabs.-underline .tabs__controls .tabs__button.is-tab-el-active::after {
  opacity: 1;
}

.tabs.-underline-2 .tabs__controls .tabs__button {
  scroll-snap-align: center;
  min-width: 100px;
  max-width: fit-content;
  position: relative;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  padding: 5px 20px;
}

.tabs.-underline-2 .tabs__controls .tabs__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-green-1);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tabs.-underline-2 .tabs__controls .tabs__button:hover {
  color: var(--color-green-1) !important;
}

.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active {
  color: var(--color-green-1) !important;
}

.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active::after {
  opacity: 1;
}

.accordion__icon {
  position: relative;
}

.accordion__icon .icon {
  transition: all 0.2s ease-out;
}

.accordion__icon .icon:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.accordion__icon .icon:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.accordion__button {
  cursor: pointer;
}

.accordion.-simple .accordion__button {
  cursor: pointer;
  transition: 0.4s;
}

.accordion.-simple .accordion__button button {
  color: var(--text-dark-1);
}

.accordion.-simple .accordion__icon {
  transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon > *:nth-child(1) {
  position: absolute;
  transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon > *:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__item.is-active .accordion__icon {
  background-color: var(--color-yellow-2) !important;
  color: white !important;
}

.accordion.-simple .accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion.-simple .accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.accordion.-map .accordion__icon {
  transition: all 0.2s ease-out;
}

.accordion.-map .accordion__item.is-active .accordion__icon {
  background-color: var(--color-green-1) !important;
  color: white !important;
}

.accordion.-map .accordion__item.is-active .accordion__icon > * {
  transform: none !important;
  opacity: 1 !important;
}

.accordion.-db-sidebar .accordion__button {
  cursor: pointer;
  transition: 0.4s;
}

.accordion.-db-sidebar .accordion__button button {
  color: var(--text-dark-1);
}

.accordion.-db-sidebar .accordion__icon {
  transition: all 0.2s ease-out;
}

.accordion.-db-sidebar .accordion__icon > *:nth-child(1) {
  position: absolute;
  transition: all 0.2s ease-out;
}

.accordion.-db-sidebar .accordion__icon > *:nth-child(2) {
  position: relative;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 0.2s ease-out;
}

.accordion.-db-sidebar .accordion__item.is-active .sidebar__button {
  background-color: rgba(53, 84, 209, 0.05) !important;
  color: var(--color-green-1) !important;
}

.accordion.-db-sidebar .accordion__item.is-active .accordion__icon {
  background-color: var(--color-dark-1) !important;
  color: white !important;
}

.accordion.-db-sidebar .accordion__item.is-active .accordion__icon > *:nth-child(1) {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion.-db-sidebar .accordion__item.is-active .accordion__icon > *:nth-child(2) {
  transform: none;
  opacity: 1;
}

.header-margin {
  margin-top: 90px;
}

.header {
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  background: var(--color-white);
  border-bottom: 1px solid #dddddd;
  box-shadow: 0px 0px 20px 0px #00000012;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.-fixed {
  position: absolute !important;
}

.header .is-menu-opened-hide {
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.is-menu-opened {
  background-color: white !important;
  border-bottom: 1px solid var(--color-border);
}

.header.is-menu-opened .is-menu-opened-hide {
  opacity: 0;
  pointer-events: none;
}

.header.is-sticky {
  margin: 0 !important;
}

.header .row {
  flex-wrap: nowrap;
}

.header__container {
  width: 100%;
}

.header__container-1500 {
  max-width: 1560px;
}

.header .header-logo {
  position: relative;
  display: block;
  width: 100px;
  margin-top: 35px;
  padding: 12px;
  background: var(--color-white);
  border-bottom: 1px solid #dddddd;
  box-shadow: 0px 20px 20px 0px #00000012;
}

.header .header-logo img {
  width: 110px;
}

.header .header-logo img:nth-child(1) {
  display: none;
}

.header .header-logo img:nth-child(2) {
  display: block;
}

.header.is-sticky .header-logo img:nth-child(1) {
  display: block;
}
.header.is-sticky .header-logo img:nth-child(2) {
  display: none;
}
.header.is-sticky .header-logo {
  width: 60px;
  margin-top: 10px;
  padding: 8px;
}

.header .icon-menu {
    color: var(--color-black) !important;
}
.header.is-sticky .icon-menu {
    color: var(--color-black) !important;
}
.header.-type-2 {
  margin-top: 20px;
  transition: background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), margin 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.-type-2.is-sticky {
  margin: 0;
}

.header.-type-5.-header-5-sticky {
  position: fixed;
  width: 100%;
  height: 60px;
  margin: 0 !important;
  transition: height 0.4s linear;
  background-color: white !important;
  box-shadow: 0px 10px 30px #0000001c;
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(1) {
  /* color: white !important; */
  /* background-color: var(--color-dark-1) !important; */
  /* border-color: var(--color-dark-1) !important; */
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(1):hover {
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(2) {
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(2):hover {
}

.header.-type-5 button.white-stickyblack,
.header.-type-5 .white-stickyblack button{
  color: var(--color-white);
}
.header.-type-5.is-sticky button.white-stickyblack,
.header.-type-5.is-sticky .white-stickyblack button{
  color: var(--color-dark-1) !important;
}
.header.-dashboard .header__container {
  display: flex;
  align-items: center;
}

.header.-dashboard .header__container > .row {
  width: 100%;
}

.header.-dashboard .-left-side {
  flex-shrink: 0;
  width: calc(var(--dashboard-width) - 30px);
}
.header .header-menu .menu li a {
  transform: translate(0px) !important;
}

.header .header-menu .menu li a:hover {
  color: var(--color-yellow-1);
}

.cardImage {
  position: relative;
  z-index: 0;
  border-radius: inherit;
}

.cardImage:hover .cardImage-slider__nav {
  opacity: 1 !important;
}

.cardImage:hover .pagination__item {
  opacity: 1 !important;
}

.cardImage__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: inherit;
}

.cardImage__content > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.cardImage__content .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.cardImage .cardImage-slider .swiper-wrapper {
  position: relative;
  z-index: 0;
}

.cardImage .cardImage-slider__pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  color: rgba(255, 255, 255, 0.7);
  background: #a0a0a036;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 5px 8px;
  border-radius: 20px;
}

.cardImage .cardImage-slider__pagination.-sm {
  bottom: 15px;
}

.cardImage .cardImage-slider__pagination > * + * {
  margin-left: 7px;
}

.cardImage .cardImage-slider__pagination .pagination__item {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0.75);
  opacity: .7;
}

.cardImage .cardImage-slider__pagination .pagination__item.is-active {
  transform: scale(1);
  background-color: var(--color-white);
  opacity: 10;
}

.cardImage .cardImage-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.cardImage .cardImage-slider__nav.-prev {
  left: 20px;
}

.cardImage .cardImage-slider__nav.-next {
  right: 20px;
}

.cardImage__wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
}

.cardImage__wishlist.-sm {
  top: 10px;
  right: 10px;
}

.cardImage__leftBadge {
  position: absolute;
  top: 20px;
  left: 0;
}

.footer.-dashboard {
  border-top: 1px solid var(--color-border);
}

.footer.-dashboard .footer__row {
  padding: 15px 0;
}

.mainSearch {
  position: relative;
  z-index: 991;
}

.mainSearch .button-grid {
  display: grid;
  grid-template-columns: 84% auto;
}

.mainSearch .button-grid > * + * {
  border-left: 1px solid var(--color-border);
}

.mainSearch .button-item {
  border: none !important;
}

.mainSearch.-col-2 .button-grid {
  grid-template-columns: 1fr 1fr -webkit-min-content;
  grid-template-columns: 1fr 1fr min-content;
}
.mainSearch.-col-4 .button-grid {
  grid-template-columns: auto auto 200px 200px -webkit-min-content;
  grid-template-columns: auto auto 200px 200px min-content;
}

.mainSearch.-col-3-big .button-grid {
  grid-template-columns: 1fr 0.6fr 0.6fr auto;
}

.mainSearch.-col-5 .button-grid {
  grid-template-columns: auto auto auto auto auto -webkit-min-content;
  grid-template-columns: auto auto auto auto auto min-content;
}

.mainSearch.-w-900 {
  width: 900px;
}

.mainSearch.-w-1070 {
  width: 1070px;
  max-width: 100%;
}

.searchMenu-marka {
  position: relative;
}

.searchMenu-marka__field {
  position: absolute;
  margin-top: 30px;
  top: 100%;
  left: 0;
  z-index: 20;
  width: 100%;
  max-width: 265px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.searchMenu-marka__field.-is-active {
  pointer-events: auto;
  opacity: 1;
}

.searchMenu-marka .-link:hover {
  background-color: rgba(53, 84, 209, 0.05) !important;
}


.searchMenu-kiratip {
  position: relative;
}

.searchMenu-kiratip__field {
  position: absolute;
  margin-top: 30px;
  top: 100%;
  left: 0;
  z-index: 20;
  width: 100%;
  max-width: 265px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.searchMenu-kiratip__field.-is-active {
  pointer-events: auto;
  opacity: 1;
}

.searchMenu-kiratip .-link:hover {
  background-color: rgba(53, 84, 209, 0.05) !important;
}

.searchMenu-date {
  position: relative;
}

.searchMenu-date.-left .searchMenu-date__field {
  transform: none !important;
}

.searchMenu-date.-right .searchMenu-date__field {
  left: unset;
  right: 0;
  transform: none !important;
}

.searchMenu-date__field {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 900px;
  max-width: 100vw;
  margin-top: 30px;
  box-shadow: 0px 10px 60px 0px #0510360D;
  transform: translateX(-31%);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.searchMenu-date__field.-is-active {
  pointer-events: auto;
  opacity: 1;
}

.searchMenu-guests {
  position: relative;
}

.searchMenu-guests__field {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 400px;
  max-width: 100vw;
  margin-top: 30px;
  box-shadow: 0px 10px 60px 0px #0510360D;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.searchMenu-guests__field.-is-active {
  pointer-events: auto;
  opacity: 1;
}

.featureIcon.-type-1.-hover-shadow {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featureIcon.-type-1.-hover-shadow:hover {
  box-shadow: 0px 20px 40px 0px #05103612;
}

.testimonials-slider-2 .swiper-slide {
  opacity: 0.8;
}

.testimonials-slider-2 .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.testimonials.-type-2 .testimonials__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.testimonials.-type-2 .testimonials__image > img:nth-child(2) {
  position: absolute;
  z-index: 1;
  width: 96px;
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination.-dots {
  display: flex;
}

.pagination.-dots > * {
  margin: 0 5px;
}

.pagination.-dots .pagination__item {
  background-color: currentColor;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0.75);
}

.bg-blue-1 .pagination.-dots .pagination__item.is-active {
  background-color: var(--color-blue-2);
}

.pagination.-dots .pagination__item.is-active {
  background-color: var(--color-green-3);
  transform: scale(1);
}

.arrow-left-hover {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.arrow-left-hover:hover {
  color: var(--color-green-1);
  transform: translateX(-5px) scale(1.25);
}

.arrow-right-hover {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.arrow-right-hover:hover {
  color: var(--color-green-3);
  transform: translateX(5px) scale(1.25);
}

.pagination.-buttons {
  display: flex;
  align-items: center;
}

.pagination.-buttons > * + * {
  margin-left: 40px;
}

.pagination.-buttons .pagination__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 100%;
  background-color: var(--color-light-7);
  color: var(--color-green-1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pagination.-buttons .pagination__button .icon {
  font-size: 12px;
}

.pagination.-buttons .pagination__button:hover {
  background-color: var(--color-green-1);
  color: white;
}

.pagination.-buttons .pagination__count > * {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-dark-1);
}

.pagination.-buttons .pagination__count > * + * {
  margin-left: 30px;
}

.pagination.-buttons .pagination__count a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--color-green-1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.pagination.-buttons .pagination__count a.-count-is-active {
  color: var(--color-green-1);
}

.pagination.-buttons .pagination__count a.-count-is-active::after {
  opacity: 1;
}

.pagination.-avatars {
  display: flex;
  align-items: center;
}

.pagination.-avatars .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination.-avatars .pagination__item::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 92px;
  height: 92px;
  border: 2px solid var(--color-dark-1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.pagination.-avatars .pagination__item.is-active::before {
  opacity: 1;
}

:root {
  --dashboard-width: 300px;
}

.dashboard {
  display: flex;
}

.dashboard__main {
  overflow: hidden;
  width: 100%;
  padding-left: var(--dashboard-width);
  will-change: padding-left;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dashboard__main::after {
  content: "";
  display: none;
  position: fixed;
  z-index: 50;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
  opacity: 0;
}

.dashboard__content {
  width: 100%;
  padding: 60px;
  padding-bottom: 0;
}

.dashboard__sidebar {
  overflow-y: scroll;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: var(--dashboard-width);
  height: calc(100% - 90px);
  padding: 30px;
  padding-top: 60px;
  padding-bottom: 40px;
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sidebar.-dashboard .sidebar__item {
  border: none;
}

.sidebar.-dashboard .sidebar__button {
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 15px;
  height: 55px;
}

.sidebar.-dashboard .sidebar__button.-is-active {
  background-color: rgba(53, 84, 209, 0.05);
  color: var(--color-green-1) !important;
}

.scroll-bar-1::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scroll-bar-1::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.dropdown {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.dropdown__button {
  height: 40px;
}

.dropdown .icon {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown.-is-dd-active .border-light {
  border: 2px solid var(--color-dark-1) !important;
}

.dropdown.-is-dd-active .icon {
  transform: rotate(180deg);
}

.dropdown__item {
  position: absolute;
  z-index: 500;
  pointer-events: none;
  top: 100%;
  left: 50%;
  padding: 26px;
  background-color: white;
  box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
  min-width: 180px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
  opacity: 0;
}

.dropdown:hover .dropdown__item {
  z-index: 20;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: auto;
}

.toggle-element {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
}

.toggle-element.-down {
  transform: translateY(20px);
}

.toggle-element.-is-el-visible {
  z-index: 25;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.toggle-element.-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  padding: 14px 20px;
  background-color: white;
  box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
  min-width: 160px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
}

.toggle-element.-dropdown-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 10px;
  background-color: white;
  box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
  min-width: 120px;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
}

.toggle-element.-dropdown-2 a {
  padding: 10px;
}

.toggle-element.-dropdown-2 a:hover {
  background-color: var(--color-light-2);
  color: var(--color-dark-1);
}

.blogCard.-type-1 .blogCard__image {
  overflow: hidden;
}

.blogCard.-type-1 .blogCard__image img {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1:hover .blogCard__image img {
  transform: scale(1.1);
}

.blogCard.-type-2 .blogCard__image {
  overflow: hidden;
}

.blogCard.-type-2 .blogCard__image img {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-2:hover .blogCard__image img {
  transform: scale(1.15);
}

.blogCard.-type-3 {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.blogCard.-type-3 .blogCard__image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.blogCard.-type-3 .blogCard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-3 .blogCard__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 16, 54, 0) 0%, rgba(5, 16, 54, 0.7) 100%);
  padding-left: 50px;
  padding-bottom: 30px;
  padding: 20px 20px;
}

.blogCard.-type-3:hover .blogCard__image img {
  transform: scale(1.1);
}

[data-slider] > div > [data-sign] {
  background-color: unset;
  width: unset;
  height: unset;
  border-radius: unset;
  display: inline-block;
  text-align: unset;
  margin-top: 22px;
  color: black;
}

[data-slider] > div > [data-sign]:last-child {
  float: right;
}

[data-slider] > div > [data-sign] span::before {
  content: 'Min Price: $';
  display: inline-block;
}

[data-slider] > div > [data-sign]:last-child span::before {
  content: 'Max Price: $';
  display: inline-block;
}

[data-slider] > div > [data-sign] > span {
  font-size: 14px;
  line-height: 16px;
}

[data-slider] {
  position: relative;
  border-radius: 10px;
  text-align: left;
}

[data-slider] > div {
  width: 100%;
}

[data-slider] > div > [data-inverse-left] {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
  background-color: var(--color-blue-2);
}

[data-slider] > div > [data-inverse-right] {
  position: absolute;
  right: 0;
  height: 5px;
  border-radius: 10px;
  background-color: var(--color-blue-2);
}

[data-slider] > div > [data-range] {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 14px;
  background-color: var(--color-green-1);
}

[data-slider] > div > [data-thumb] {
  position: absolute;
  top: -7px;
  z-index: 2;
  height: 17px;
  width: 17px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  background-color: #FFF;
  border-radius: 50%;
  outline: none;
  border: 2px solid var(--color-green-1);
}

div[data-slider] > input[type=range]::-ms-thumb {
  pointer-events: all;
  width: 17px;
  height: 17px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}

div[data-slider] > input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 17px;
  height: 17px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}

div[data-slider] > input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 17px;
  height: 17px;
  border-radius: 0px;
  border: 0 none;
  background: red;
  -webkit-appearance: none;
}

div[data-slider] > input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}

div[data-slider] > input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}

[data-slider] > input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
  height: 5px;
  top: -2px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

div[data-slider] > input[type=range]::-ms-track {
  -webkit-appearance: none;
  background: transparent;
  color: transparent;
}

div[data-slider] > input[type=range]::-moz-range-track {
  -moz-appearance: none;
  background: transparent;
  color: transparent;
}

div[data-slider] > input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}

div[data-slider] > input[type=range]:focus {
  outline: none;
}

div[data-slider] > input[type=range]::-ms-tooltip {
  display: none;
}

[data-slider] > div > [data-sign] {
  display: inline-block;
  text-align: center;
  padding: 4px 16px;
  border-radius: 8px;
  margin-top: 22px;
}

[data-slider] > div > [data-sign] > span {
  font-size: 12px;
  line-height: 28px;
}

[data-slider]:hover > div > [data-sign] {
  opacity: 1;
}

.select {
  position: relative;
}

.select__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  height: 70px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background-color: white;
  text-align: left;
}

.select__icon {
  width: 20px;
  height: 20px;
}

.select__dropdown,
.searchMenu-loc__field {
  position: absolute;
  top: calc(100% + -30px);
  left: 0%;
  transform: translateX(-0%);
  z-index: -1;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background: #ffffff;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  max-height: 200px;
  border-radius: 0 0 22px 22px !important;
  box-shadow: 0 40px 20px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  pointer-events: none;
  opacity: 0;
}

.select__dropdown.-is-visible,
.searchMenu-loc__field.-is-active {
  opacity: 1;
  pointer-events: auto;
}

.select__options {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: scroll;
}

.select__options::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.select__options::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.select__options__button {
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 6px 0;
  text-align: left;
  transition: all 0.15s ease;
}

.select__options__button:hover,
.select__options__button:hover .text-light-1{
  cursor: pointer;
  color: var(--color-green-1) !important;
}
.select__options__button:hover img{
  cursor: pointer;
  border:1px solid var(--color-green-1) !important;
  background: var(--color-light-3) !important;
  border-radius:25px;
  padding:1px;
}
.select__options__button:focus,
.select__options__button:focus .text-light-1 {
  color: var(--color-green-1) !important;
}
.select__options__button:focus img{
  cursor: pointer;
  border:1px solid var(--color-green-1) !important;
  background: var(--color-light-3) !important;
  border-radius:25px;
  padding:1px;
}

.select__search {
  flex-shrink: 0;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #ddd !important;
  background-color: #F5F5F5 !important;
  color: black;
  padding: 0 20px;
  margin-bottom: 12px;
}

.mapFilter {
  overflow: hidden;
  position: fixed;
  top: 30px;
  bottom: 70px;
  left: 30px;
  right: 30px;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.mapFilter.-is-active {
  pointer-events: auto;
  opacity: 1;
}

.mapFilter__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.mapFilter__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.mapFilter__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 515px 1fr;
  width: 100%;
  height: 100%;
  background-color: white;
  padding-left: 340px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mapFilter__grid.-filters-hidden {
  padding-left: 80px;
}

.mapFilter__grid.-filters-hidden .mapFilter-filter {
  transform: translateX(-255px);
}

.mapFilter-filter {
  overflow-y: scroll;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0px 10px 35px 0px #0510361A;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mapFilter-filter__item {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 20px;
}

.mapFilter-results {
  overflow-y: scroll;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mapFilter-results__item {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 20px;
}

.mapFilter-map {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mapFilter-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scroll-bar-1::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scroll-bar-1::-webkit-scrollbar-thumb {
  background-color: #e7e7e7;
  border-radius: 4px;
}

.hotelsCard.-type-1 .hotelsCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.hotelsCard.-type-1 .hotelsCard__image .cardImage__content .swiper-slide,
.hotelsCard.-type-1 .hotelsCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hotelsCard.-type-1 .hotelsCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.hotelsCard.-type-1 .hotelsCard__title span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.hotelsCard.-type-1:hover .hotelsCard__image .cardImage__content > img,
.hotelsCard.-type-1:hover .hotelsCard__image .swiper-slide {
  transform: scale(1.15);
}

.hotelsCard.-type-1:hover .hotelsCard__title span {
  background-size: 100% !important;
}

.tourCard.-type-1 .tourCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.tourCard.-type-1 .tourCard__image .cardImage__content .swiper-slide,
.tourCard.-type-1 .tourCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tourCard.-type-1 .tourCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.tourCard.-type-1 .tourCard__title span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.tourCard.-type-1:hover .tourCard__image .cardImage__content > img,
.tourCard.-type-1:hover .tourCard__image .swiper-slide {
  transform: scale(1.15);
}

.tourCard.-type-1:hover .tourCard__title span {
  background-size: 100% !important;
}

.activityCard.-type-1 .activityCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.activityCard.-type-1 .activityCard__image .cardImage__content .swiper-slide,
.activityCard.-type-1 .activityCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activityCard.-type-1 .activityCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.activityCard.-type-1 .activityCard__title span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.activityCard.-type-1:hover .activityCard__image .cardImage__content > img,
.activityCard.-type-1:hover .activityCard__image .swiper-slide {
  transform: scale(1.15);
}

.activityCard.-type-1:hover .activityCard__title span {
  background-size: 100% !important;
}

.rentalCard.-type-1 .rentalCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.rentalCard.-type-1 .rentalCard__image .cardImage__content .swiper-slide,
.rentalCard.-type-1 .rentalCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rentalCard.-type-1 .rentalCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.rentalCard.-type-1 .rentalCard__title span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.rentalCard.-type-1:hover .rentalCard__image .cardImage__content > img,
.rentalCard.-type-1:hover .rentalCard__image .swiper-slide {
  transform: scale(1.15);
}

.rentalCard.-type-1:hover .rentalCard__title span {
  background-size: 100% !important;
}

.rentalCard.-type-2 .rentalCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.rentalCard.-type-2 .rentalCard__image .cardImage__content .swiper-slide,
.rentalCard.-type-2 .rentalCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rentalCard.-type-2 .rentalCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.rentalCard.-type-2 .rentalCard__title span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.rentalCard.-type-2:hover .rentalCard__image .cardImage__content > img,
.rentalCard.-type-2:hover .rentalCard__image .swiper-slide {
  transform: scale(1.15);
}

.rentalCard.-type-2:hover .rentalCard__title span {
  background-size: 100% !important;
}

.carCard.-type-1 .carCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.carCard.-type-1 .carCard__image .cardImage__content .swiper-slide,
.carCard.-type-1 .carCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carCard.-type-1 .carCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.carCard.-type-1:hover .carCard__image .cardImage__content > img,
.carCard.-type-1:hover .carCard__image .swiper-slide {
  transform: scale(1.05);
}

.carCard{
}
.carCard .carCard__image{
}
.carCard .carCard__image .cardImage{
}
.carCard .carCard__image .cardImage .cardImage__content{
}
.carCard .carCard__image .cardImage .cardImage__wishlist{
}
.carCard .carCard__content{
}
.carCard .carCard__content .carCard__ozellikler{
}
.carCard .carCard__content .carCard__ozellikler .carCard__ozellikler_box{
}
.carCard .carCard__content .carCard__footer{
}
.carCard .carCard__content .carCard__footer .carCard__footer_puanbox{
}
.carCard .carCard__content .carCard__footer .carCard__footer_puantext{
}
.carCard .carCard__content .carCard__footer .carCard__footer_price{
}

.cruiseCard.-type-1 .cruiseCard__image {
  overflow: hidden;
  border-radius: 4px;
}

.cruiseCard.-type-1 .cruiseCard__image .cardImage__content .swiper-slide,
.cruiseCard.-type-1 .cruiseCard__image .cardImage__content > img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cruiseCard.-type-1 .cruiseCard__image .swiper-slide-active {
  position: relative;
  z-index: 2;
}

.cruiseCard.-type-1 .cruiseCard__title span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.cruiseCard.-type-1:hover .cruiseCard__image .cardImage__content > img,
.cruiseCard.-type-1:hover .cruiseCard__image .swiper-slide {
  transform: scale(1.15);
}

.cruiseCard.-type-1:hover .cruiseCard__title span {
  background-size: 100% !important;
}

.KasaTipiTypeCard.-type-1 {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.KasaTipiTypeCard.-type-1:hover {
  background-color: var(--color-green-1) !important;
  transform: translateY(-20px);
  min-height: 260px;
}


.KasaTipiTypeCard.-type-1{
  max-height: 220px;
  margin-bottom: 50px;
}
.KasaTipiTypeCard.-type-1 img{transform: translateY(-75px);-webkit-filter: drop-shadow(-5px 5px 10px #00000077);filter: drop-shadow(-5px 5px 10px #00000077);position: relative;left: 0;right: 0;bottom: 0;top: auto;height: 150px;object-fit: contain;transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);}
.KasaTipiTypeCard.-type-1:hover img{
  transform: translateY(-55px);
  z-index: 2;
  min-width: 120% !important;
  left: -20%;
  -webkit-filter: drop-shadow(-5px 5px 10px #000000a7);
  filter: drop-shadow(-5px 5px 10px #000000a7);
}

.KasaTipiTypeCard.-type-1:hover .KasaTipiTypeCard__content > * {
  color: white !important;
}

.destCard.-type-1 {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destCard.-type-1 .destCard__image {
  overflow: hidden;
}

.destCard.-type-1 .destCard__image img {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destCard.-type-1:hover .destCard__image img {
  transform: scale(1.15);
}

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.preloader__wrap {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background-image: linear-gradient(135deg, #17e695 0%, #17e695 2%, #17e594 3%, #17e494 5%, #17e494 6%, #17e393 8%, #17e393 9%, #17e292 11%, #16e192 13%, #16e192 14%, #16e091 16%, #16e091 17%, #16df90 19%, #16de90 20%, #16de90 22%, #16dd8f 23%, #16dd8f 25%, #16dc8e 27%, #16db8e 28%, #16db8e 30%, #16da8d 31%, #16da8d 33%, #16d98d 34%, #16d88c 36%, #16d88c 38%, #15d78b 39%, #15d68b 41%, #15d68b 42%, #15d58a 44%, #15d58a 45%, #15d489 47%, #15d389 48%, #15d288 50%, #15d288 52%, #15d288 53%, #15d187 55%, #15d087 56%, #15d087 58%, #15cf86 59%, #15cf86 61%, #15ce85 63%, #15cd85 64%, #14cd85 66%, #14cc84 67%, #14cb84 69%, #14cb84 70%, #14ca83 72%, #14ca83 73%, #14c982 75%, #14c882 77%, #14c882 78%, #14c781 80%, #14c781 81%, #14c680 83%, #14c580 84%, #14c580 86%, #14c47f 88%, #14c47f 89%, #14c37e 91%, #13c27e 92%, #13c27e 94%, #13c17d 95%, #13c17d 97%, #13c07d 98%, #13bf7c 100%);
  box-shadow: 0px 2px 24px 0px #00000014;
  -webkit-animation-name: preloaderWraper;
  animation-name: preloaderWraper;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

.preloader__icon {
  position: absolute;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.preloader__title {
  font-size: 47px;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: 0em;
  margin-top: 16px;
}

.preloader.-is-hidden {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: none;
  }
}

@keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: none;
  }
}

@-webkit-keyframes preloader {
  0% {
    transform: translateY(150%) scale(1);
  }
  50% {
    transform: translateY(0%) scale(1.1) rotate(2deg);
  }
  100% {
    transform: translateY(-150%) rotate(-2deg);
  }
}

@keyframes preloader {
  0% {
    transform: translateY(150%) scale(1);
  }
  50% {
    transform: translateY(0%) scale(1.1) rotate(2deg);
  }
  100% {
    transform: translateY(-150%) rotate(-2deg);
  }
}

.slider-scrollbar {
  width: 100%;
  border-radius: 4px;
  height: 3px;
}

.slider-scrollbar .swiper-scrollbar-drag {
  cursor: -webkit-grab;
  cursor: grab;
  background-color: var(--color-dark-1);
}

.slider-scrollbar .swiper-scrollbar-drag:active:hover {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.slider-scrollbar.-light .swiper-scrollbar-drag {
  background-color: var(--color-white);
}

.pointer {
  cursor: pointer;
}

.section-bg {
  position: relative;
  z-index: 0;
}

.section-bg__item {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}

.section-bg__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-bg__item.-w-1500 {
  width: 1500px;
  left: 50%;
  transform: translateX(-50%);
}

.section-bg__item.-w-1165 {
  width: 64vw;
}

.section-bg__item.-video-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40vw;
  height: unset;
}

.section-bg__item.-left {
  left: 0;
}

.section-bg__item.-right {
  right: 0;
}

.section-bg__item.-left-100 {
  left: 100px;
}

.section-bg__item.-right-100 {
  right: 100px;
}

.section-bg__item.-mx-20 {
  left: 20px;
  right: 20px;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.currencyMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.currencyMenu.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.currencyMenu__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.currencyMenu__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  height: auto;
  max-height: 320px;
  margin: auto;
  overflow: hidden;
}

.modalGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.modalGrid__item {
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #eee;
}

.modalGrid__item > * > *:nth-child(1) {
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modalGrid__item:hover {
  background-color: #00c28408;
}

.modalGrid__item:hover > * > *:nth-child(1) {
  color: var(--color-green-1);
}

.modalGrid__item.-is-active {
  background-color: #fbfbfb;
  border-color: var(--color-green-1);
}

.ModalAll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ModalAll.is-hidden {
  pointer-events: none;
  opacity: 0;
}
.ModalAll__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.ModalAll__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  height: auto;
  max-height: 750px;
  margin: auto;
  overflow: hidden;
}

.langMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.langMenu.is-hidden {
  pointer-events: none;
  opacity: 0;
}
.js-language-mainTitle img{flex-shrink: 0;width: 20px;height: 20px;display: flex;align-items: center;justify-content: center;}
.js-language-mainTitle .fw-500{font-weight:400 !important;}
.langMenu__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.langMenu__content {position: absolute;left: 0;right: 0;bottom: 0;top: 0;z-index: 1;width: 100%;max-width: 550px;height: auto;max-height: 450px;margin: auto;overflow: hidden;}

.relative {
  position: relative;
}

.ph-white::-moz-placeholder {
  color: var(--color-white);
}

.ph-white:-ms-input-placeholder {
  color: var(--color-white);
}

.ph-white::placeholder {
  color: var(--color-white);
}

.absolute {
  position: absolute;
}

.bottom-0 {
  bottom: 0;
}

.flightLine {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.flightLine > * {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border: 1px solid var(--color-border);
  border-radius: 100%;
}

.flightLine > *:nth-child(1) {
  left: 0;
  background-color: var(--color-white);
}

.flightLine > *:nth-child(2) {
  right: 0;
  background-color: var(--color-border);
}

.blog-grid-1 {
  display: grid;
  grid-template-columns: 0.66fr 0.33fr;
  grid-template-rows: 250px 250px;
  gap: 30px;
}


.blog-grid-1 > *:nth-child(1) {
  grid-row: span 2;
}

.border-center > *:nth-child(2n + 2) {
  border-left: 1px solid var(--color-light-2);
}

.border-center > *:nth-child(1n + 3) {
  border-top: 1px solid var(--color-light-2);
}

.header-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.section-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.section-slider-nav.-prev {
  left: -20px;
}

.section-slider-nav.-next {
  right: -20px;
}

.sidebar__item:not(.-no-border) {
  border-top: 1px solid var(--color-border);
}

.sidebar.-mobile-filter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-top: 70px;
}

.sidebar.-mobile-filter .-icon-close {position: relative;}

.sidebar.-mobile-filter:last-child > .sidebar__item {
  border-top:0px !important;
}
.sidebar.-mobile-filter > .sidebar__item:last-child{
  border-top:0px !important;
}
.filterPopup .header_filter{
  border-bottom:0px !important;
  height:55px !important;
}

.w-250 {
  width: 250px;
  max-width: 100%;
}

.w-1 {
  width: 1px;
  max-width: 100%;
}

.w-200 {
  width: 200px;
  max-width: 100%;
}

.w-180 {
  width: 180px;
  max-width: 100%;
}

.halfMap {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 90px);
  margin-top: 90px;
}

.halfMap__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.galleryGrid.-type-1 {
  display: grid;
  grid-template-columns: 0.52fr 0.24fr 0.24fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.galleryGrid.-type-1 > *:nth-child(1) {
  grid-row: 2 span;
}
.galleryGrid.-type-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.galleryGrid.-type-2 {
  display: grid;
  grid-template-columns: 0.6fr 0.2fr 0.2fr;
  grid-template-rows: 0.4fr 0.6fr;
  gap: 10px;
}

.galleryGrid.-type-2 > *:nth-child(1) {
  grid-row: 2 span;
}

.galleryGrid.-type-2 > *:nth-child(4) {
  grid-column: 2 span;
}

.galleryGrid.-type-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.min-h-250 {
  min-height: 250px;
}

.roomGrid {
  width: 100%;
}

.roomGrid__header {
  display: grid;
  grid-template-columns: 180px 1fr 60px 170px 140px 270px;
  gap: 30px;
  background-color: var(--color-dark-3);
  color: white;
  font-weight: 500;
  padding: 15px 0;
}

.roomGrid__header > *:first-child {
  padding-left: 30px;
}

.roomGrid__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 180px auto 270px;
}

.roomGrid__grid > * {
  padding-top: 20px;
}

.roomGrid__grid > *:nth-child(3) {
  background-color: rgba(53, 84, 209, 0.05);
  padding: 20px 30px;
}

.roomGrid__content {
  display: grid;
  grid-template-columns: 1fr 60px 170px 140px;
  gap: 30px;
}

.roomGrid__content:nth-child(1n + 2) {
  border-top: 1px solid var(--color-border);
}

.progressBar {
  position: relative;
}

.progressBar__bg {
  width: 100%;
  height: 4px;
  border-radius: 4px;
}

.progressBar__bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  height: 100%;
  border-radius: 4px;
}

.progressBar__bar span {
  position: absolute;
  right: 0;
  top: 100%;
}

.tooltip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 10;
}

.tooltip__content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 11px;
  font-size: 14px;
  line-height: 1.2;
  background-color: var(--color-light-1);
  color: white;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.tooltip__content::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--color-light-1);
  transform: rotate(45deg);
}

.tooltip.-top .tooltip__content {
  bottom: calc(100% + 6px);
  transform: translateY(8px);
}

.tooltip.-top .tooltip__content::after {
  bottom: -4px;
}

.tooltip.-bottom .tooltip__content {
  top: calc(100% + 6px);
  transform: translateY(-8px);
}

.tooltip.-bottom .tooltip__content::after {
  top: -4px;
}

.tooltip.-left .tooltip__content {
  right: calc(100% + 6px);
  transform: translateX(8px);
}

.tooltip.-left .tooltip__content::after {
  right: -4px;
}

.tooltip.-right .tooltip__content {
  left: calc(100% + 6px);
  transform: translateX(-8px);
}

.tooltip.-right .tooltip__content::after {
  left: -4px;
}

.tooltip:hover .tooltip__content {
  transform: none;
  opacity: 1;
}

.gallery__item {
  position: relative;
  display: block;
}

.gallery__item:hover .gallery__button {
  opacity: 1;
}

.gallery__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-color: black;
  border-radius: 100%;
  width: rem(52px);
  height: rem(52px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.gallery__button .icon {
  color: white;
  stroke-width: 1;
  width: rem(28px);
  height: rem(28px);
}

.gallery__button.-bottom-right {
  top: unset;
  left: unset;
  transform: unset;
  bottom: rem(30px);
  right: rem(30px);
}

.form-input {
  position: relative;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
}

.form-input label {
  position: absolute;
  top: 0;
  top: 18px;
  margin: 0 25px;
  pointer-events: none;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-input textarea,
.form-input input {
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 0px 25px;
  padding-top: 0px;
  min-height: 50px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-input textarea:focus,
.form-input input:focus {
  border: 1px solid #051036 !important;
}

.form-input textarea:focus ~ label, .form-input textarea:valid ~ label,
.form-input input:focus ~ label, .form-input input:valid ~ label {
  transform: translateY(-28px);
  background:#fff;
}

.sidebar.-blog > * + * {
  padding-top: 30px;
  margin-top: 30px;
}

.list-disc li {
  list-style-type: disc;
  list-style-position: inside;
}

.w-360 {
  width: 360px;
}

.w-140 {
  width: 140px;
  max-width: 100%;
}

.w-210 {
  width: 210px;
  max-width: 100%;
}

.w-230 {
  width: 230px;
  max-width: 100%;
}

.no-page__title {
  font-size: 200px;
  font-weight: 600;
  line-height: 1.2;
}

table.table th {
  padding: 25px 40px;
  line-height: 1;
  font-weight: 500;
}

table.table th:first-child {
  border-radius: 8px 0 0 8px;
}

table.table th:last-child {
  border-radius: 0 8px 8px 0;
}

table.table tbody > tr + tr {
  border-top: 1px solid var(--color-border);
}

table.table td {
  padding: 20px 40px;
  font-size: 15px;
  border-bottom: 1px solid var(--color-light-5);
}

table.table-2 th {
  font-weight: 500;
  padding: 15px 10px;
  line-height: 1.2;
}

table.table-2 th:first-child {
  border-radius: 8px 0 0 8px;
}

table.table-2 th:last-child {
  border-radius: 0 8px 8px 0;
}

table.table-2 th:nth-child(1) {
  padding-left: 0;
}

table.table-2 th:last-child {
  text-align: right;
  padding-right: 0;
}

table.table-2 tbody > tr {
  border-top: 1px dashed var(--color-border);
  vertical-align: top;
}

table.table-2 td {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.2;
}

table.table-2 td:nth-child(1) {
  padding-left: 0;
}

table.table-2 td:last-child {
  text-align: right;
  padding-right: 0;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

table.table-3 th {
  font-weight: 500;
  padding: 20px 30px;
  line-height: 1.2;
  min-width: 130px;
}

table.table-3 th:first-child {
  border-radius: 8px 0 0 8px;
}

table.table-3 th:last-child {
  border-radius: 0 8px 8px 0;
}

table.table-3 tbody tr {
  vertical-align: top;
}

table.table-3 tbody > tr + tr {
  border-top: 1px dashed var(--color-border);
}

table.table-3 td {
  padding: 15px 30px;
  font-size: 15px;
  line-height: 1.2;
  min-width: 130px;
}

table.table-3.-border-bottom tbody > tr {
  border-top: none;
  border-bottom: 1px dashed var(--color-border);
}

table.table-4 th {
  font-weight: 500;
  padding: 20px 30px;
  line-height: 1.2;
  min-width: 130px;
}

table.table-4 th:first-child {
  border-radius: 8px 0 0 8px;
}

table.table-4 th:last-child {
  border-radius: 0 8px 8px 0;
}

table.table-4 tbody tr {
  vertical-align: top;
}

table.table-4 tbody > tr + tr {
  border-top: 1px dashed var(--color-border);
}

table.table-4 td {
  padding: 20px 30px;
  font-size: 15px;
  line-height: 1.2;
  min-width: 130px;
}

table.table-4.-border-bottom tbody > tr {
  border-top: none;
  border-bottom: 1px dashed var(--color-border);
}

table.table-5 {
  width: 100%;
}

table.table-5 th {
  font-weight: 500;
  padding: 20px 15px;
  line-height: 1.2;
  min-width: 130px;
}

table.table-5 th:first-child {
  border-radius: 8px 0 0 8px;
}

table.table-5 th:last-child {
  border-radius: 0 8px 8px 0;
}

table.table-5 tbody tr {
  vertical-align: top;
}

table.table-5 tbody > tr {
  border-bottom: 1px solid var(--color-border);
}

table.table-5 td {
  padding: 20px 15px;
  font-size: 15px;
  line-height: 1.2;
  min-width: 130px;
}
.side-badge {
  position: absolute;
  top: -7px;
  left: -3px;
}

.side-badge > * {
  border: 3px solid white;
}

.map-500 {
  min-height: 500px;
  height: 500px;
}

.map-form {
  position: relative;
}

.h-400 {
  height: 400px;
  min-height: 400px;
}

.table-calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.table-calendar__header {
  font-size: 14px;
  font-weight: 600;
}

.table-calendar__grid {
  font-size: 15px;
}

.table-calendar__cell {
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.table-calendar__cell:hover {
  background-color: var(--color-dark-3);
  color: white;
}

.table-calendar__cell.-is-in-path {
  position: relative;
  z-index: 0;
  color: var(--color-dark-1) !important;
}

.table-calendar__cell.-is-in-path::before {
  content: "";
  background-color: var(--color-light-2);
  position: absolute;
  top: 0;
  left: -16px;
  right: -16px;
  z-index: -2;
  height: 100%;
}

.table-calendar__cell.-is-active {
  position: relative;
  z-index: 2;
  background-color: var(--color-dark-3);
  color: white;
}

.table-calendar__header, .table-calendar__grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 8px;
}

.table-calendar__header > *, .table-calendar__grid > * {
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.desktopMenu {
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100%;
  min-width: 300px;
  max-width: 400px!important;
  height: 100%;
  min-height: 100vh;
  max-height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: none;
  pointer-events: none;
}

.desktopMenu .mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  background-color: white;
}

.desktopMenu__content {
  display: flex;
  flex-direction: column;
}

.desktopMenu-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgb(0 0 0 / 48%);
  height: 100%;
  min-height: 100vh;
  max-height: 100%;
  width: 100%;
}

.desktopMenu.is-menu-active {
  display: block;
  pointer-events: auto;
}

.desktopMenu.is-menu-active .menu__nav.-is-active {
  pointer-events: auto !important;
  overflow-x: hidden;
  background: #ffffff !important;
  z-index: 9;
  height: 65vh !important;
  width: 100%;
  position: relative;
}

.desktopMenu.is-menu-active .-is-active {
  pointer-events: auto !important;
  overflow-x: hidden;
  background: #ffffff !important;
  z-index: 9;
  height: 100%;
  width: 100%;
  position: relative;
  opacity: 10 !important;
}

.desktopMenu .menu {
  overflow-y: hidden;
  overflow-x: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

.desktopMenu .menu ul {
  pointer-events: none;
}

.desktopMenu .menu li {
  overflow: hidden;
  height: auto;
  width: 100%;
  display: inline-table;
}

.desktopMenu .menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 500;
  color: var(--color-dark-1);
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.desktopMenu .menu a .icon {
  font-size: 8px;
  transform: rotate(-90deg);
}

.desktopMenu .menu a:hover {
  color: var(--color-yellow-2);
}

.desktopMenu .menu__nav {
  display: flex;
  flex-direction: column;
}

.desktopMenu .menu__nav > li > a {
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.desktopMenu .menu__nav > li > a:hover {
  background-color: var(--color-light-2);
}

.desktopMenu .menu .subnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-width: 450px;
  opacity: 0;
}

.desktopMenu .menu .subnav a {
  height: 50px;
  font-size: 18px;
  padding: 0 20px;
  transform: translateY(100%);
  font-weight: 400;
  background: white;
  border-bottom: 1px solid #eee;
}
.desktopMenu .menu .subnav a img{
  height: 32px;
  width: 32px;
  border: 1px solid #eee;
  border-radius: 32px;
  padding: 3px;
}

.desktopMenu .menu a i{
  font-size:14px;
}

.desktopMenu .menu .subnav__backBtn {
  margin-bottom: -1px;
}

.desktopMenu .menu .subnav__backBtn li {
  padding: 0;
}

.desktopMenu .menu .subnav__backBtn a {
  justify-content: flex-start;
  height: 50px;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-yellow-2);
  background-color: var(--color-light-2);
}

.desktopMenu .menu .subnav__backBtn a .icon {
  margin-right: 12px;
  transform: rotate(90deg);
}

.user-profil-menu-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 16px;
  color: var(--color-green-1);
  background-color: var(--color-light-3);
  padding: 30px 20px;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
}
.mobil_left_menu_footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 16px;
  color: var(--color-green-1);
  background-color: rgb(248 249 250) !important;
  padding: 20px 20px;
  height: auto;
  z-index: 2;
  bottom: 0;
  top: auto;
  position: absolute;
  width: 100%;
}

.searchMenu {
  position: relative;
}

.searchMenu__field {
  position: absolute;
  padding-top: 30px;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 500px;
  max-width: 100vw;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.searchMenu__field.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.searchMenu .-link:hover {
  background-color: rgba(53, 84, 209, 0.05) !important;
}

.h-34 {
  height: 34px;
}

.dropRating {
  position: absolute;
  top: calc(100% + 10px);
  z-index: 10;
  width: 340px;
  max-width: 100vw;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.dropRating.-is-active {
  pointer-events: auto;
  opacity: 1;
}

.quote {
  position: relative;
  padding: 20px 0;
  padding-left: 75px;
  width: 740px;
  max-width: 100%;
}

.quote__line {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.quote__icon {
  position: absolute;
  top: 12px;
  left: 22px;
  z-index: -1;
}

.hotelSingleGrid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 360px;
}

.border-test {
  position: absolute;
  top: 0;
  bottom: 40px;
  left: 19px;
  z-index: -1;
  border-left: 2px dashed #E5F0FD;
}

.border-line-2 {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 13px;
  z-index: -1;
  border-left: 1px solid var(--color-border);
}

.map {
  width: 100%;
  height: 100%;
  background-color: #a3a3a3;
}

.carsSlider {
  display: grid;
  gap: 10px;
  grid-template-columns: 120px calc(100% - 130px);
}
.carsSlider .js-carsdetail2-slider{  
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.carsSlider .carsSlider-slides {
  display: flex;
  flex-direction: column;
}

.carsSlider .carsSlider-slides > * + * {
  margin-top: 10px;
}

.carsSlider .carsSlider-slides__item {
  border: 1px solid #DDDDDD;
}

.carsSlider .carsSlider-slides__item.-is-active {
  border: 1px solid #051036;
}

.carsSlider .carsSlider-slider {
  width: 100%;
  z-index: 1;
}

.carsSlider .carsSlider-slider a {
  width: 100%;
  height: 450px;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1px solid #DDDDDD;
}
.carsSlider .carsSlider-slider img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.carsSlider .js-carsdetail1-slider  img {
  border: 1px solid #DDDDDD;
  width: 100%;
  height: 120px;
  max-height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 16px;
}

.cruiseSlider .cruiseSlider-slides__item {
  border: 1px solid #DDDDDD;
}

.cruiseSlider .cruiseSlider-slides__item.-is-active {
  border: 1px solid #051036;
}

.cruiseSlider .cruiseSlider-slider {
  overflow: hidden;
  width: 100%;
}

.cruiseSlider .cruiseSlider-slider img {
  border: 1px solid #DDDDDD;
  width: 100%;
  max-height: 510px;
}

.cruiseSlider__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}

.cruiseSlider__nav.-prev {
  left: 20px;
}

.cruiseSlider__nav.-next {
  right: 20px;
}

.w-max-120 {
  max-width: 120px;
}

.singleMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  top: 0;
  background-color: white;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  pointer-events: none;
}

.singleMenu.-is-active {
  opacity: 1;
  pointer-events: auto;
}

.singleMenu__content {
  width: 100%;
  padding: 15px 0;
  box-shadow: 0 0 10px 0px #00000012;
  background: #f0f5f4;
}

.singleMenu__links a {
  font-size: 15px;
  font-weight: 500;
}

.overflow-x-hidden {
  overflow-x: clip;
}

.-is-dd-wrap-active .-dd-button {
  border-color: var(--color-dark-1) !important;
  outline: 1px solid var(--color-dark-1) !important;
}

.-is-dd-wrap-active .-dd-button .icon {
  transform: rotate(180deg);
}

.noUi-target {
  height: 4px;
  border: none;
  outline: 1px solid rgba(0, 0, 0, 0.08);
}

.noUi-connect {
  background-color: var(--color-green-1) !important;
  box-shadow: 0 !important;
}

.noUi-handle {
  border-radius: 100%;
  width: 20px !important;
  height: 20px !important;
  top: 50% !important;
  transform: translateY(-50%);
  border: 2px solid var(--color-green-1);
  box-shadow: 0 !important;
}

.noUi-handle::before {
  display: none;
}

.noUi-handle::after {
  display: none;
}

.filterPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  overflow-y: scroll;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  pointer-events: none;
}

.filterPopup.-is-active {
  opacity: 1;
  pointer-events: auto;
}

.base-tr {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.date-input {
  display: flex;
  flex-flow: row-reverse;
  width: 100%;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background: none;
  z-index: 2;
  margin-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.calendar-icon {
  position: absolute;
  top: 28px;
}

.calendar-icon.-left {
  left: 40px;
}

.calendar-icon.-right {
  right: 40px;
}

.gm-style-iw-t {
  right: unset !important;
  left: 25px;
  bottom: 20px !important;
}

.mapMarker {
  position: relative;
  z-index: 100;
}

.mapMarker:hover {
  background-color: var(--color-dark-1) !important;
  border-color: var(--color-dark-1) !important;
  color: white !important;
}

.gm-style .gm-style-iw-c {
  border-radius: 4px;
}

.mapItem__img {
  width: 100px !important;
  height: 100px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.mapItem__content {
  height: 100px;
}

.map-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 700px;
}

.marquee-location{
   white-space: nowrap;
   animation: marquee-location 15s infinite linear;
   padding-left: 15px;
}
.marquee-location:after {
   content: attr(data-text);
   padding-left: 15px;
}
 @keyframes marquee-location {
   0% {
     transform: translateX(0);
  }
   100% {
     transform: translateX(-50%);
  }
}
 
.text-wrap-elips{
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
  overflow: hidden;
}
.text-space-normal{
  white-space: normal;
}
.istatistik_bg_icon{
  left: -10px;
  top: -10px;
  font-size: 150px;
  color: var(--color-green-4);
}

.show-more__content {
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
  max-height: 250px;
  transition: max-height 0.5s ease-out;
}
.show-more__content.is-active {
  max-height: 100% !important;
}
.js-show-more::after {
  content: "";
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(360deg, white 15%, transparent);
  transition: opacity 0.2s ease-out;
}
.js-show-more.is-active::after {
  height: 10px;
}
.js-show-more .show-more__button{display: flex;justify-content: center;align-items: center;gap:4px;height: 30px;width: fit-content;z-index: 9;position: absolute;bottom: 0;left: 0;cursor: pointer;margin: 0;text-align: center;}
.js-show-more .show-more__button .show_more_dfg{display: block;}
.js-show-more.is-active .show-more__button .show_more_dfg{display: none;}
.js-show-more .show-more__button .show_more_dag{display: none;}
.js-show-more.is-active .show-more__button .show_more_dag{display: inline-block;}
.list_box_min_1{
  position: relative;
}
.list_box_min_1:hover::after{
  content: "\F285";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-green-3);
  font-size: 16px;
  width: 30px;
  height: 30px;
  background: #00c28408;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: absolute;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 5%;
  left: auto;
  top: 27%;
}
.footer a:hover{opacity: .7;}


.footer .social-color .whatsapp{
  background: var(--color-green-2);
  background: linear-gradient(90deg, var(--color-green-2) 0%, var(--color-green-3) 100%);
}
.footer .social-color .instagram{
  background: #833ab4;
  background: linear-gradient(to right, #833ab4,#fd1d1d,#fcb045);
}
.footer .social-color .facebook{
  background: #00c6ff;
  background: linear-gradient(to right, #00c6ff,#0072ff);
}
.footer .social-color .youtube{
  background: #e52d27;
  background: linear-gradient(to right, #e52d27,#b31217);
}
.footer .social-color .tiktok{
  background: var(--color-white);
  color: var(--color-dark-1);
}
.footer .social-color .x,
.footer .social-color .twitter,
.footer .social-color .linkedin{
  background: var(--color-white);
  color: var(--color-dark-1);
}


.bg-whatsapp{
  background: var(--color-green-2);
  background: linear-gradient(90deg, var(--color-green-2) 0%, var(--color-green-3) 100%);
}
.bg-whatsapp:hover{
  background: linear-gradient(90deg, var(--color-green-3) 0%, var(--color-green-4) 100%);
}

.dropdown-item {
  color: var(--color-dark-1);
  border-radius: 12px !important;
  font-size: 14px;
}
.dropdown-item:focus,.dropdown-item:hover {
  color: var(--color-green-4);
  background-color: var(--color-light-2);
}

.dropdown-item.active,.dropdown-item:active {
  color: var(--color-green-4);
  background-color: var(--color-light-2);
}

.dropdown-item.disabled,.dropdown-item:disabled {
  pointer-events: none;
  color: var(--color-border);
  background: var(--color-light-3);
}

.right-icon-yes .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px !important;
  margin-top: 0px;
  font-size: 12px;
  border: 0 !important;
}
.dropdown-toggle::after {
  display: none;
}

.dropdown-menu-mobil-end {
  z-index: 99;
}

.header .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 20px;
  width: 10px;
  height: 10px;
  background-color: white;
  transform: rotate(45deg);
}
.header .dropdown-menu li a{border: 0 !important;}
.header .dropdown-menu li a:hover{
  border-bottom: 1px solid transparent;
  border-radius: 12px;
  color: var(--color-green-4);
}
.header .dropdown-menu li:last-child a{
  border-bottom: 1px solid transparent;
  margin-bottom: 0px;
}

/**** alt menu ****/
#alt-menu {
   position: fixed;
   z-index: 99;
   top: auto;
   bottom: 0;
   left: 0;
   right: 0;
}
#alt-menu .menu {
   background: #fff;
   width: 100%;
   height: 60px;
   margin: 0 auto;
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: space-around;
}
#alt-menu .menu-item {
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   flex-shrink: 0;
   border-radius: 12px;
   transition: 0.3s ease;
   color: var(--color-dark-2);
   background-color: transparent;
   position: static;
}
#alt-menu .menu-item.active ,
#alt-menu .menu-item.active i,
#alt-menu .menu-item.active svg, 
#alt-menu .menu-item.active span {
   color: var(--color-yellow-2);
}
#alt-menu .menu-item__icon {
   font-size: 20px;
   line-height: 1;
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: end;
   gap: 3px;
}
#alt-menu .menu-item__icon i{
   display: flex;
   align-items: center;
   justify-content: center;
   height: 24px;
   width: 24px;
}
#alt-menu .menu-item__icon svg {
   height: 26px;
   width: 26px;
}
#alt-menu .icon_center{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 6px solid #fff;
  top: 0px;
  position: relative;
  color: white;
  background: linear-gradient(90deg, var(--color-green-1) 0%, var(--color-green-2) 100%);
  box-shadow: 0 0 0px 10px #00df981c;
}
#alt-menu .icon_center .menu-item__icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  padding-top: 1px;
  font-weight: 800;
  animation: wiggle 2s linear infinite;
}
#alt-menu .dropdown-menu{
   width: 100%;
   border-bottom-right-radius: 0 !important;
   border-bottom-left-radius: 0 !important;
   margin-bottom: 6px !important;
   border-bottom: 1px solid var(--color-light-1) !important;
   z-index: 0;
   box-shadow: 0px -101vh 0vh 100vh #000000a5;
}
#alt-menu .dropup .dropdown-toggle::after {
  display: none;
}


.icon_center .menu-item__icon{
  animation: wiggle 2s linear infinite;
}
.icon_center .menu-item__icon2{
  animation: wiggle2 2s linear infinite;
}
@keyframes wiggle {
  0%,7% {
    transform: translateY(0px);
  }
  15% {
    transform: translateY(-5px)
  }
  20% {
    transform: translateY(5px)
  }
  25% {
    transform: translateY(-5px)
  }
  30% {
    transform: translateY(2px)
  }
  35% {
    transform: translateY(-3px)
  }
  40%,100% {
    transform: translateY(0)
  }
}
@keyframes wiggle2 {
  0%,7% {
    transform: translateX(0px);
  }
  15% {
    transform: translateX(-5px)
  }
  20% {
    transform: translateX(5px)
  }
  25% {
    transform: translateX(-5px)
  }
  30% {
    transform: translateX(2px)
  }
  35% {
    transform: translateX(-3px)
  }
  40%,100% {
    transform: translateX(0)
  }
}


/*** Ranger Pirce ***/
.price-range-slider {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0 auto;
  padding: 0px 0px 24px 0px;
}
.price-wrap {
  display: flex;
  padding: 1em 0;
  justify-content: space-between;
}
.price-range-slider .price-field {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.price-range-slider .price-field input[type=range] {
  position: absolute;
}
.price-range-slider .price-field input[type=range] {
  width: 100%;
  height: 7px;
  outline: 0;
  box-sizing: border-box;
  pointer-events: none;
  -webkit-appearance: none;
}
.price-range-slider .price-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.price-range-slider .price-field input[type=range]:active,
.price-range-slider .price-field input[type=range]:focus {
  outline: 0;
}
.price-range-slider .price-field input[type=range]::-ms-track {
  width: 100%;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
}
.price-range-slider .price-field input[type=range]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  margin-top: -10px;
  background-color: #fff;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
  border: 3px solid #5551ff;
}
.price-range-slider .price-field input[type=range]::-moz-range-thumb {
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  margin-top: -10px;
  background-color: #fff;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
  border: 3px solid #5551ff;
}
.price-range-slider .price-field input[type=range]::-ms-thumb {
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  margin-top: -10px;
  background-color: #242424;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
  border: 3px solid #5551ff;
}
.price-range-slider .price-field input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #5551ff;
  border-radius: 100px;
}
.price-range-slider .price-field input[type=range]::-moz-range-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  background: #242424;
  border-radius: 100px;
}
.price-range-slider .price-field input[type=range]::-ms-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  background: #242424;
  border-radius: 100px;
}
.price-range-slider .price-wrap .price-min,
.price-range-slider .price-wrap .price-max {
  pointer-events: none;
}
.price-range-slider .price-wrap #price-min,
.price-range-slider .price-wrap #price-max {
  margin: 0;
  padding: 0;
  background: 0;
  border: 0;
  outline: 0;
  color: #999999;
  font-size: 14px;
  pointer-events: none;
  min-width: 45px;
  width: 100%;
  max-width: min-content;
  padding-left: 5px;
}
.price-range-slider .price-wrap-1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #22272c;
  font-size: 16px;
  text-align: left;
  height: 18px;
}
.price-range-slider .price-wrap-2 {
  display: flex;
  align-items: center;
  justify-content: end;
  color: #22272c;
  font-size: 16px;
  height: 18px;
}
.price-range-slider .price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #242424;
  transition-duration: 0.3s;
}
.price-range-slider .price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #242424;
  transition-duration: 0.3s;
}



button:focus,
input:focus{
  outline: none;
  box-shadow: none;
}
a,
a:hover{
  text-decoration: none;
}

/*--------------------------*/
.qty-container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  margin: 3px 0 0 0;
}
.qty-container .input-qty{
  text-align: center;
  padding: 5px 5px;
  border: 2px solid #d4d4d4;
  max-width: 70px;
  border-radius: 12px;
  height: 35px;
  margin: 0 5px;
}
.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus{
  display: flex;
  justify-content: center;
  align-items: center;
  border:2px solid var(--color-green-1);
  color:var(--color-green-1);
  padding: 10px 13px;
  font-size: 16px;
  line-height: 16px;
  height: 35px;
  width: 35px;
  transition: 0.3s;
  border-radius: 12px;
}
.qty-container .qty-btn-plus:hover,
.qty-container .qty-btn-minus:hover{
  background:var(--color-green-1);
  color:var(--color-white);
}


/*---------------------------*/
.btn-cornered,
.input-cornered{
  border-radius: 4px;
}
.btn-rounded{
  border-radius: 50%;
}
.input-rounded{
  border-radius: 50px;
}

.qty-container input::-webkit-outer-spin-button,
.qty-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-container input[type=number] {
  -moz-appearance: textfield;
}


/*---------------------------*/
.rating {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  flex-direction: row-reverse;
  overflow: hidden;
  height: 65px;
  position: relative;
  margin-top: -20px;
}
.rating-0 {
  filter: grayscale(100%);
}
.rating > input {
  display: none;
}
.rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: auto 0 0 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}
.rating > input:checked ~ label, .rating > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
.rating > input:not(:checked) ~ label:hover, .rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
.emoji-wrapper {
  width: 65px;
  text-align: center;
  height: 65px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.emoji-wrapper:before, .emoji-wrapper:after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}
.emoji-wrapper:before {
  top: 0;
  background: linear-gradient(to bottom, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}
.emoji-wrapper:after {
  bottom: 0;
  background: linear-gradient(to top, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}
.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}
.emoji > svg {
  margin: 10px 0;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
#rating-1:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(0px);
}
#rating-2:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-70px);
}
#rating-3:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-140px);
}
#rating-4:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-210px);
}
#rating-5:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-280px);
}
.feedback {
  max-width: 100%;
  width: 100%;
  height: 75px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}

.bg-login-img{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.bg-login-img:before{
  content: "";
  position: absolute;
  border-radius: inherit;
  /* z-index: 0; */
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(360deg, var(--color-light-1) 0%, var(--color-green-1) 100%);
}

.imgSingleUpload {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}
.imgSingleUpload input.readUrl {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 148px;
  height: 46px;
  cursor: pointer;
}

.imgSingleUpload input[type="file"] {
  position: absolute;
}

.aday_profil_hidden img{
  filter: blur(4px);
}
.aday_profil_hidden .aday_name_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px !important;
  z-index: -1;
  position: relative;
  margin: auto;
}
.aday_profil_hidden .aday_name_title::after {
  content: '******************';
  background: white;
  position: absolute;
  width: 200px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5px;
  padding: 15px 0 10px 0;
}

.wd-review-job.thumb1 .thumb {
  position: relative;
  padding-left: 24px;
}

.wd-review-job.thumb1 .trader-box {
  background: #ffffff0d;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 10px 35px 0 #0510361A;
  border-radius: 50px!important;
  align-items: center!important;
  padding: 10px 20px 10px 10px !important;
  z-index: 5!important;
  position: absolute!important;
  display: inline-flex!important;
  overflow: hidden!important;
}

.wd-review-job.thumb1 .trader-box.box1 {
  top: 12%;
  left: 7.5%;
}

.wd-review-job.thumb1 .trader-box.box2 {
  top: 45%;
  right: 14.2%;
}

.wd-review-job.thumb1 .trader-box.box3 {
  bottom: 7%;
  left: -2.5%;
}

.wd-review-job.thumb1 .trader-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-top: 0px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  color: white;
  background: var(--color-green-1);
}

.wd-review-job.thumb1 .trader-box .number {
  margin-bottom: 1px;
  font-size: 20px;
  color: var(--color-green-1);
  line-height: 1;
}

.wd-review-job.thumb1 .trader-box .des {
  font-size: 14px;
  line-height: 1;
  color: #000000a6;
}

.wd-review-job.thumb1 .user-tag {
  position: absolute;
  width: 53.39px;
  height: 53.39px;
  box-shadow: rgba(71, 92, 133, 0.1) 0px 10px 25px;
  cursor: pointer;
  z-index: 5;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-image: initial;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wd-review-job.thumb1 .user-tag::after {
  width: 12.66px;
  height: 12.66px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wd-review-job.thumb1 .user-tag.active {
  border-color: var(--color-green-1);
}

.wd-review-job.thumb1 .user-tag.active::after {
  background: var(--color-green-1);
}

.wd-review-job.thumb1 .user-tag img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.wd-review-job.thumb1 .user-tag.tag1 {
  top: 4.7%;
  left: 41%;
}

.wd-review-job.thumb1 .user-tag.tag2 {
  top: 28.4%;
  right: 31%;
}

.wd-review-job.thumb1 .user-tag.tag3 {
  left: 52.5%;
  bottom: 7%;
}

.wd-review-job.thumb1 .user-tag.tag4 {
  left: 3%;
  bottom: 29.8%;
}

.wd-review-job.thumb1 .user-tagg.tag5 {
  left: 2%;
  top: 27%;
  position: absolute;
}

.wd-review-job.contentbox1 {
  padding: 84px 0px 75px 0px;
}

.wd-review-job.contentbox1.pl1 {
  padding-left: 127px;
}

.wd-review-job.contentbox1 h3 {
  margin-bottom: 16px;
}

.wd-review-job.contentbox1 p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}

.content-page .header.-type-5{
  background: var(--color-white) !important;
  border-bottom: 1px solid var(--color-light-2) !important;
}
.content-page .header.-type-5 .header-logo img:nth-child(1) {
  display: block;
}
.content-page .header.-type-5 .header-logo img:nth-child(2) {
  display: none;
}
.content-page .header.-type-5 .icon-menu {
    color: var(--color-black) !important;
}
.content-page .header.-type-5 button.white-stickyblack,
.content-page .header.-type-5 .white-stickyblack button{
  color: var(--color-dark-1) !important;
}
.content-page .header.-type-5 .header-menu .menu__nav {
  color: var(--color-dark-1) !important;
}

/*  ===============================================
    Right Button Action
------------------------*/
.right-btn {
  background-color: #fff;
  border-radius: var(--border-radius-base);
  top: 32%;
  display: flex;
  height: 35px;
  padding-right: 0px;
  right: 0px;
  min-width: 45px;
  position: fixed;
  text-align: center;
  z-index: 999;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px #0000001c;
}
.right-btn i {
  font-size: 20px;
  color: #ffffff;
  background-color: var(--color-green-3);
  height: 45px;
  width: 45px;
  line-height: 45px;
  display: flex;
  padding: 0;
  border-radius: 45px 0 0 45px;
  justify-content: center;
  align-items: center;
  box-shadow: -4px 0 6px 2px #0000001c;
}
.right-btn.btn_right_new_1 {
  margin-top: 0px;
}
.right-btn.btn_right_new_2 {
  margin-top: 50px;
}
.right-btn.btn_right_new_3 {
  margin-top: 100px;
}
.right-btn.btn_right_new_4 {
  margin-top: 150px;
}
.right-btn.btn_right_new_5 {
  margin-top: 200px;
}
.right-btn.btn_right_new_6 {
  margin-top: 250px;
}
.right-btn.btn_right_new_7 {
  margin-top: 300px;
}
.right-btn.btn_right_new_8 {
  margin-top: 350px;
}
.right-btn.btn_right_new_9 {
  margin-top: 400px;
}
.right-btn.btn_right_new_1 i {
  background: var(--color-green-3);
}
.right-btn.btn_right_new_2 i{
  background: var(--color-green-4);
}
.right-btn.btn_right_new_3 i{
  background: var(--color-green-5);
}
.right-btn.whatsapp i{
  background: var(--color-green-2);
  background: linear-gradient(90deg, var(--color-green-2) 0%, var(--color-green-3) 100%);
}
.right-btn.instagram i{
  background: #833ab4;
  background: linear-gradient(to right, #833ab4,#fd1d1d,#fcb045);
}
.right-btn.facebook i{
  background: #00c6ff;
  background: linear-gradient(to right, #00c6ff,#0072ff);
}
.right-btn.youtube i{
  background: #e52d27;
  background: linear-gradient(to right, #e52d27,#b31217);
}
.right-btn.tiktok i{
  background: var(--color-white);
  color: var(--color-dark-1);
}
.right-btn.x i,
.right-btn.twitter i{
  background: var(--color-white);
  color: var(--color-dark-1);
}
.right-btn span {
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: -15px;
  opacity: 0;
  line-height: 50px;
  border-radius: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.right-btn:focus, .right-btn:active, .right-btn:hover {
  color: var(--color-dark-1);
  padding: 0 0px 0 20px;
  border-radius: 25px;
  display: flex;
  background: #fff;
}
.right-btn:focus i, .right-btn:active i, .right-btn:hover i {
  color: #fff;
  background-color: var(--color-green-2);
}
.right-btn:focus span, .right-btn:active span, .right-btn:hover span {
  opacity: 1;
  letter-spacing: 0px;
  padding-right: 20px;
  line-height: 1.2;
  text-wrap-mode: nowrap;
}