@font-face {
  font-family: "Gilroy-GO";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/gilroy-400.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-GO";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/gilroy-500.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-GO";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/gilroy-600.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-GO";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/gilroy-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-GO";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/gilroy-800.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-GO";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/gilroy-900.woff2") format("woff2");
  font-display: swap;
}
:root {
  --color-primary: #263d91;
  --color-primary-rgb: 38, 61, 145;
  --color-primary-dark: #1a2e59;
  --color-primary-darken: #10193c;
  --color-primary-darken-rgb: 16, 25, 60;
  --color-primary-light: #a8b1d3;
  --color-primary-lighten: #e9ebf4;
  --color-secondary: #a4d6b5;
  --color-secondary-dark: #93c0a2;
  --color-secondary-light: #daeee1;
  --color-secondary-lighten: #f5faf7;
  --color-tertiary: #d6b485;
  --color-tertiary-rgb: 214, 180, 133;
  --color-tertiary-dark: #c0a277;
  --color-tertiary-light: #ede5d5;
  --color-tertiary-lighten: #f6f0e6;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --dark: #212529;
  --font-main: "Gilroy-GO", sans-serif;
  --font-accent: "Gilroy-GO", sans-serif;
  --font-secondary: "Gilroy-GO", sans-serif;
  --placeholder: var(--bs-gray-600);
  --selection-bg: var(--color-primary);
  --selection-color: var(--color-primary-lighten);
  --scrollbar-width: 10px;
  --scrollbar-track-bg: var(--color-primary-lighten);
  --scrollbar-thumb-bg: var(--color-primary-dark);
  --scrollbar-thumb-hover-bg: var(--color-primary-dark);
  --body-font-size: 16px;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-bg: #ffffff;
  --body-color: var(--color-primary-darken);
  --outline: 2px dashed currentColor;
  --outline-offset: 3px;
  --transition: color 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease;
  --box-shadow: 0 8px 16px 0 rgba(15, 41, 77, 0.06);
  --swiper-theme-color: var(--color-primary);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body {
  background-color: var(--body-bg);
  min-width: 360px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: var(--body-color);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-family: var(--font-main) !important;
}
body.no-scroll {
  overflow: hidden;
}
::-moz-placeholder {
  color: var(--placeholder);
}
::placeholder {
  color: var(--placeholder);
}
::-moz-selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}
::selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}
::-webkit-scrollbar {
  width: var(--scrollbar-width);
}
::-webkit-scrollbar-track {
  background-color: var(--scrollbar-track-bg);
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--scrollbar-thumb-bg);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover-bg);
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease-in;
}
a:hover {
  color: var(--color-primary-dark);
}
section {
  position: relative;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.swiper-slide {
  height: auto;
}
.swiper-shadow {
  margin: -15px;
  padding: 15px;
}
.swiper-nav2 .swiper-button-next,
.swiper-nav2 .swiper-button-prev {
  --swiper-navigation-size: 18px;
  width: 40px;
  height: 40px;
  box-shadow: 0px 20px 40px 0px rgba(5, 16, 54, 0.0705882353);
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0.8;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.swiper-nav2 .swiper-button-next:hover,
.swiper-nav2 .swiper-button-prev:hover {
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
  background-color: var(--color-primary);
  color: var(--white);
}
.swiper-nav2 .swiper-button-next.swiper-button-disabled,
.swiper-nav2 .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: auto;
  color: var(--bs-gray-500);
  pointer-events: none;
}
.upload,
.upload * {
  box-sizing: border-box;
}
.upload {
  margin: 16px 0;
  border: 2px dotted var(--bs-gray-500);
  background-color: var(--bs-gray-100);
  padding: 20px 20px;
  border-radius: 6px;
}
.upload.dz-clickable {
  cursor: pointer;
}
.upload.dz-clickable * {
  cursor: default;
}
.upload.dz-clickable .dz-message,
.upload.dz-clickable .dz-message * {
  cursor: pointer;
}
.upload.dz-started .dz-message {
  display: none;
}
.upload.dz-drag-hover {
  border-style: solid;
}
.upload.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.upload .dz-message {
  text-align: center;
  margin: 0;
}
.upload .dz-message-btn {
  background-color: var(--bs-gray-200);
  border-radius: 4px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--color-primary);
  transition: background-color 0.2s ease-in;
}
.upload .dz-message-btn:hover {
  background-color: var(--bs-gray-300);
}
.upload .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 8px;
  min-height: 100px;
}
.upload .dz-preview:hover {
  z-index: 1000;
}
.upload .dz-preview:hover .dz-details {
  opacity: 1;
}
.upload .dz-preview.dz-file-preview .dz-image {
  border-radius: 8px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.upload .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.upload .dz-preview.dz-image-preview {
  background: #fff;
  border-radius: 8px;
}
.upload .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.upload .dz-preview .dz-remove {
  font-size: 16px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.upload .dz-preview .dz-remove * {
  cursor: pointer;
}
.upload .dz-preview .dz-remove:hover {
  text-decoration: underline;
  color: var(--bs-red);
}
.upload .dz-preview:hover .dz-details {
  opacity: 1;
}
.upload .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.upload .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.upload .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.upload .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.upload .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid rgba(0, 0, 0, 0);
}
.upload .dz-preview .dz-details .dz-filename span,
.upload .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.upload .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.upload .dz-preview .dz-image {
  border-radius: 8px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.upload .dz-preview .dz-image img {
  display: block;
}
.upload .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.upload .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.upload .dz-preview .dz-success-mark,
.upload .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.upload .dz-preview .dz-success-mark svg,
.upload .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.upload .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.upload .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.upload .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}

.upload .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.upload .dz-preview.dz-error .dz-error-message {
  display: block;
}
.upload .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.upload .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 150px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: #fff;
}
.upload .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid rgba(0, 0, 0, 0);
  border-right: 6px solid rgba(0, 0, 0, 0);
  border-bottom: 6px solid #be2626;
}
.gallery-images li {
  margin: 6px;
  float: left;
  position: relative;
  border: 5px solid #fff;
  border-right-width: 20px;
}
.gallery-image-removing {
  opacity: 0.3;
  pointer-events: none;
}
.gallery-images-thumb-del {
  position: absolute;
  right: -20px;
  bottom: 0;
  color: #e53935;
  cursor: pointer;
  font-weight: 600;
  line-height: 20px;
  font-size: 20px;
}
.gallery-images img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
}
.ui-state-highlight {
  height: 130px;
  width: 130px;
}
.rangeSlider__inner {
  padding: 10px 10px 0;
}
.rangeSlider__slider {
  cursor: pointer;
  border: none;
  background-color: var(--bs-gray-200);
  height: 4px;
}
.rangeSlider__slider .noUi-connects {
  overflow: visible;
}
.rangeSlider__slider .noUi-connects::before,
.rangeSlider__slider .noUi-connects::after {
  content: "";
  border-radius: 100%;
  position: absolute;
  background-color: var(--bs-gray-200);
  width: 10px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
}
.rangeSlider__slider .noUi-connects::before {
  left: 0;
  margin-left: -5px;
}
.rangeSlider__slider .noUi-connects::after {
  right: 0;
  margin-right: -5px;
}
.rangeSlider__slider .noUi-connect {
  background-color: var(--color-primary);
}
.rangeSlider__slider .noUi-handle {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  cursor: pointer;
  margin-top: 1px;
  box-shadow: 0 !important;
  border: 2px solid var(--color-primary);
  border-radius: 100%;
  width: 20px;
  height: 20px;
}
.rangeSlider__slider .noUi-handle::after,
.rangeSlider__slider .noUi-handle::before {
  display: none;
}
.inputSpiner-1 {
  width: auto;
}
.inputSpiner-1 .btn {
  border-radius: var(--bs-border-radius) !important;
  background-color: #fff;
}
.inputSpiner-1 .form-control {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: var(--bs-border-radius) !important;
  border-width: 0;
  max-width: 60px;
  background-color: rgba(0, 0, 0, 0);
  font-size: 18px;
  font-weight: 500;
}
.inputSpiner-1 .form-control:focus {
  box-shadow: none;
}
[data-readmore] {
  position: relative;
  transition: height 200ms;
  overflow: hidden;
}
[data-readmore]:before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(255, 255, 255));
  transition: height 0.5s;
}
[data-readmore][aria-expanded="false"]:before,
[data-readmore][aria-expanded="true"].transitioning:before {
  height: 80px;
}
[data-readmore-toggle] {
  font-weight: 500;
}
.icomoon-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.icomoon-list li {
  display: flex;
  position: relative;
  align-items: center;
  gap: 16px;
  counter-increment: whyus-counter;
}
.icomoon-list li::before {
  display: grid;
  top: 0;
  left: 0;
  align-items: center;
  border-radius: 20px;
  background-color: var(--color-tertiary);
  width: 24px;
  height: 24px;
  content: counter(whyus-counter);
  color: var(--color-primary-darken);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.icomoon-list .icon {
  font-size: 32px;
}
.icomoon-list h6 {
  margin-top: 2px;
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .icomoon-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991.98px) {
  .icomoon-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .icomoon-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}
.visually-hidden {
  position: fixed;
  transform: scale(0);
}
.bg-tertiary-light {
  background-color: #F7F7F7;
}
.bg-tertiary-lighten {
  background-color: var(--color-tertiary-lighten) !important;
}
.bg-primary-dark {
  background-color: var(--color-primary-dark) !important;
}
.text-bg-tertiary-light {
  color: var(--color-primary-darken);
  background-color: var(--color-tertiary-light) !important;
}
.box-shadow {
  box-shadow: var(--box-shadow);
}
.py-25 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-20 {
  font-size: 20px !important;
}
.fs-22 {
  font-size: 22px !important;
}
.fs-24 {
  font-size: 24px !important;
}
.fs-26 {
  font-size: 26px !important;
}
.fs-28 {
  font-size: 28px !important;
}
.fs-32 {
  font-size: 32px !important;
}
.fs-38 {
  font-size: 38px !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
.badge {
  font-weight: 600;
  line-height: 1;
}
.badge-pill {
  border-radius: 50px;
}
.badge-md {
  font-size: 14px;
}
.badge-lg {
  font-size: 16px;
}
svg.icon {
  fill: currentColor;
  flex-shrink: 0;
  vertical-align: -0.15em;
  width: 1em;
  height: 1em;
  overflow: hidden;
}
div.icon {
  display: inline-flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.8em;
  width: 2.7em;
  height: 1px;
  height: 2.7em;
  color: var(--body-color);
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
div.icon--style-2 {
  border: 2px solid var(--color-primary-dark);
  background: rgba(0, 0, 0, 0);
}
.dropdown-menu.show {
  animation: fadeIn 0.3s alternate;
}
@keyframes dropdown-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.list {
  margin: 0;
  padding: 0;
}
.list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  line-height: 1.4;
  list-style-type: none;
}
.list li::after {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
}
.list .icon {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--color-primary-dark);
}
.list-arrow li::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a2e59"><path d="M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z"></path></svg>');
  width: 18px;
  height: 18px;
}
.list-check li::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(25,135,84,1)"><path d="M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z"></path></svg>');
  width: 18px;
  height: 18px;
}
.list-close li::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(220,53,69,1)"><path d="M11.9997 10.5865L16.9495 5.63672L18.3637 7.05093L13.4139 12.0007L18.3637 16.9504L16.9495 18.3646L11.9997 13.4149L7.04996 18.3646L5.63574 16.9504L10.5855 12.0007L5.63574 7.05093L7.04996 5.63672L11.9997 10.5865Z"></path></svg>');
  width: 18px;
  height: 18px;
}
.btn {
  --bs-btn-font-weight: 500;
}
.btn-lg,
.btn-group-lg > .btn {
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-font-size: 1.125rem;
}

@media (max-width: 770px) {
  .btn {
    display: inline-block !important;
  }
}
.btn-link {
  --bs-btn-font-weight: 400;
}
.btn-custom2 {
  --bs-btn-color: var(--color-primary-darken);
  --bs-btn-bg: var(--color-secondary);
  --bs-btn-border-color: var(--color-secondary);
  --bs-btn-hover-color: var(--color-primary-darken);
  --bs-btn-hover-bg: var(--color-secondary-dark);
  --bs-btn-hover-border-color: var(--color-secondary-dark);
  --bs-btn-focus-shadow-rgb: 57, 43, 99;
  --bs-btn-active-color: var(--color-primary-darken);
  --bs-btn-active-bg: var(--color-secondary-dark);
  --bs-btn-active-border-color: var(--color-secondary-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--color-primary-darken);
  --bs-btn-disabled-bg: var(--color-secondary);
  --bs-btn-disabled-border-color: var(--color-secondary);
}
.btn-custom3 {
  --bs-btn-color: var(--color-primary-darken);
  --bs-btn-bg: var(--color-tertiary);
  --bs-btn-border-color: var(--color-tertiary);
  --bs-btn-hover-color: var(--color-primary-darken);
  --bs-btn-hover-bg: var(--color-tertiary-dark);
  --bs-btn-hover-border-color: var(--color-tertiary-dark);
  --bs-btn-focus-shadow-rgb: 57, 43, 99;
  --bs-btn-active-color: var(--color-primary-darken);
  --bs-btn-active-bg: var(--color-tertiary-dark);
  --bs-btn-active-border-color: var(--color-tertiary-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--color-primary-darken);
  --bs-btn-disabled-bg: var(--color-tertiary);
  --bs-btn-disabled-border-color: var(--color-tertiary);
}
.btn-outline-gray {
  --bs-btn-color: var(--color-primary-darken);
  --bs-btn-border-color: var(--bs-gray-400);
  --bs-btn-hover-border-color: var(--color-primary);
}
.btn-outline-check {
  --bs-btn-color: var(--color-primary-darken);
  --bs-btn-border-color: var(--bs-gray-400);
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--color-primary);
  --bs-btn-active-border-color: var(--color-primary);
}
.btn-blick {
  position: relative;
  overflow: hidden;
}
.btn-blick::after {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -65%;
  transform: skewX(-22deg);
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: btnblick;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.6) 100%
  );
  width: 45px;
  content: "";
}
@keyframes btnblick {
  60% {
    left: 100%;
  }
  100% {
    left: 130%;
  }
}
/* .btn-pill {
  border-radius: 10rem;
} */
.btn-play {
  display: inline-flex;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--bs-white);
  width: 70px;
  height: 70px;
  font-size: 32px;
  line-height: 1;
}
.btn-play::before,
.btn-play::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.8;
  z-index: -1;
  animation: ripple-2 2s infinite ease-in-out;
  border-radius: 50%;
  background: var(--bs-white);
  content: "";
}
.btn-play::after {
  opacity: 0.6;
  animation: ripple-2 2s infinite ease-in-out;
  animation-delay: 0s;
  animation-delay: 0.5s;
}
.btn-play:hover {
  background-color: var(--bs-white);
}
.btn-play.btn-primary {
  background-color:#3C3D3F !important;
}
.btn-play.btn-primary::before,
.btn-play.btn-primary::after {
  background-color: var(--color-primary);
}
.btn-play.btn-primary:hover {
  background-color: var(--color-primary);
}
@keyframes ripple-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.tabs-round {
  gap: 6px;
}
.tabs-round .nav-link {
  border: 2px solid var(--bs-gray-400);
  font-weight: 500;
  border-radius: 50px;
}
.tabs-round .nav-link.active {
  border-color: var(--color-primary);
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.section-top {
  padding-top: 70px;
}
.section-bottom {
  padding-bottom: 70px;
}
.section-sm-top {
  padding-top: 40px;
}
.section-sm-bottom {
  padding-bottom: 40px;
}
@media (max-width: 991.98px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-top {
    padding-top: 40px;
  }
  .section-bottom {
    padding-bottom: 40px;
  }
  .section-sm-top {
    padding-top: 24px;
  }
  .section-sm-bottom {
    padding-bottom: 24px;
  }
}
.section-heading {
  margin-bottom: 40px;
}
.section-heading .title {
  font-size: clamp(2rem, 1.4336rem + 1.8957vw, 2.5rem);
  font-weight: 800;
}
.form-floating--icon svg {
  fill: var(--color-primary);
  position: absolute;
  top: 17px;
  left: 8px;
}
.form-floating--icon > .form-control,
.form-floating--icon > .form-control-plaintext {
  padding-left: 38px;
}
.form-floating--icon > label {
  left: 26px;
}
.form-light .form-control {
  border-color: rgba(var(--bs-white-rgb), 0.7);
  background-color: rgba(0, 0, 0, 0);
  color: var(--bs-white);
}
.form-light .form-control:focus {
  border-color: var(--color-tertiary);
}
.form-light .form-floating--icon svg {
  fill: rgba(var(--bs-white-rgb), 0.7);
}
.form-light
  .form-floating
  > .form-control:not(:-moz-placeholder-shown)
  ~ label {
  color: rgba(var(--bs-white-rgb), 0.7);
}
.form-light .form-floating > .form-control:focus ~ label,
.form-light .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: rgba(var(--bs-white-rgb), 0.7);
}
.form-light
  .form-floating
  > .form-control:not(:-moz-placeholder-shown)
  ~ label::after {
  background-color: rgba(0, 0, 0, 0);
}
.form-light .form-floating > .form-control:focus ~ label::after,
.form-light
  .form-floating
  > .form-control:not(:placeholder-shown)
  ~ label::after {
  background-color: rgba(0, 0, 0, 0);
}
.form-check-input,
.form-check-label {
  cursor: pointer;
}
.form-check-input {
  transition: all 0.3s ease;
}
.input-icon {
  position: relative;
}
.input-icon .icon {
  position: absolute;
  font-size: 20px;
  top: 15px;
  left: 9px;
}
.input-icon .form-control {
  padding-left: 33px;
}
.input-icon .form-control.py-25 + .icon {
  top: 15px;
}
img.shape-decor {
  position: absolute;
  opacity: 0.03;
}
img.shape-decor--topright {
  top: -400px;
  right: -400px;
}
img.shape-decor--topleft {
  top: -400px;
  left: -400px;
}
.text-link-1 {
  display: inline-block;
  position: relative;
  color: var(--color-primary);
}
.text-link-1::after,
.text-link-1::before {
  position: absolute;
  bottom: -2px;
  transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 1px;
  content: "";
}
.text-link-1::before {
  left: 0;
  background: var(--bs-gray-300);
  width: 100%;
}
.text-link-1::after {
  left: 0;
  background: var(--color-primary);
  width: 0;
}
.text-link-1:hover::after {
  width: 100%;
}
.text-link-2 {
  display: inline-block;
  position: relative;
  color: var(--color-primary);
}
.text-link-2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  background: var(--color-primary);
  height: 1px;
  animation: button-line-in 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.text-link-2::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  background: rgba(var(--color-primary-rgb), 0.1);
  height: 40%;
  animation: button-line-out 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.text-link-2:hover::before {
  animation: button-line-in 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.text-link-2:hover::after {
  animation: button-line-out 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
@keyframes button-line-out {
  0% {
    transform: scaleX(1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}
@keyframes button-line-in {
  0% {
    transform: scaleX(0);
    transform-origin: 0 50%;
  }
  100% {
    transform: scale(1);
    transform-origin: 0 50%;
  }
}
.rating {
  display: flex;
}
.rating span,
.rating label {
  margin-right: 2px;
  height: 16px;
  width: 16px;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23dee2e6' d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.rating label {
  cursor: pointer;
}
.rating input {
  display: none;
}
.rating input:nth-child(1):checked ~ label:nth-of-type(-n + 1),
.rating input:nth-child(2):checked ~ label:nth-of-type(-n + 2),
.rating input:nth-child(3):checked ~ label:nth-of-type(-n + 3),
.rating input:nth-child(4):checked ~ label:nth-of-type(-n + 4),
.rating input:nth-child(5):checked ~ label:nth-of-type(-n + 5),
.rating-1 span:nth-of-type(-n + 1),
.rating-2 span:nth-of-type(-n + 2),
.rating-3 span:nth-of-type(-n + 3),
.rating-4 span:nth-of-type(-n + 4),
.rating-5 span:nth-of-type(-n + 5) {
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fcc102' d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'%3E%3C/path%3E%3C/svg%3E");
}
.rating-lg span,
.rating-lg label {
  margin-right: 4px;
  height: 28px;
  width: 28px;
}
.lightbox-image,
.lightbox-media {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--bs-border-radius-lg);
}
.lightbox-image img,
.lightbox-media img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.3s ease-in;
}
.lightbox-image .icon,
.lightbox-media .icon {
  z-index: 1;
  position: absolute;
  top: 80%;
  left: 10%;
  transform: translate(-50%, -50%);
  background: #555;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* text-align: center; */
  color: rgba(var(--bs-white-rgb), 0.9);
  transition: ease-out 0.16s;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
   
}
.lightbox-image::after,
.lightbox-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: rgba(var(--color-overlay-rgb), 0.5);
  transition: 0.3s ease-in-out;
}
.lightbox-image:hover img,
.lightbox-media:hover img {
  transform: scale(1.15);
}
.lightbox-image:hover .icon,
.lightbox-media:hover .icon {
  transform: translate(-50%, -50%) scale(0.94);
}
.lightbox-image:hover::after,
.lightbox-media:hover::after {
  opacity: 1;
}
.lightbox-media .icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3e%3cpath d='M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z' fill='%23ffffff'/%3e%3c/svg%3e");
}
.lightbox-image .icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath d='M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7C401.8 87.79 326.8 13.32 235.2 1.723C99.01-15.51-15.51 99.01 1.724 235.2c11.6 91.64 86.08 166.7 177.6 178.9c53.8 7.189 104.3-6.236 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0C515.9 484.7 515.9 459.3 500.3 443.7zM79.1 208c0-70.58 57.42-128 128-128s128 57.42 128 128c0 70.58-57.42 128-128 128S79.1 278.6 79.1 208z' fill='%23ffffff'/%3e%3c/svg%3e");
}
.image-link {
  position: relative;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
  display: block;
}
.image-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--bs-black-rgb), 0.3);
  transition: 0.3s ease;
}
.image-link img {
  transform: scale(1);
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}
.image-link:hover img {
  transform: scale(1.04);
}
.image-link:hover::before {
  opacity: 1;
}
.img-left {
  float: left;
  margin: 12px 24px 12px 0;
}
.img-right {
  float: right;
  margin: 12px 0 12px 24px;
}
.img-center {
  display: block;
  margin: 12px auto;
}
img.img-left,
img.img-right,
img.img-center {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  img.img-left,
  img.img-right {
    display: block;
    float: none;
    margin: 12px auto;
  }
}
.contact-box {
  display: flex;
  gap: 10px;
}
.contact-box a {
  color: var(--color-primary-dark);
}
.contact-box__icon {
  flex-shrink: 0;
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 6px;
  font-size: 26px;
  color: var(--bs-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-box__info {
  align-self: center;
}
.pagination {
  --bs-pagination-color: var(--color-accent);
  justify-content: space-between;
  gap: 6px;
}
.page-link {
  border-radius: 50px !important;
  min-width: 38px;
  text-align: center;
}
.page-item:not(.paper) {
  display: none;
}
.page-paper .page-link {
  cursor: auto;
  pointer-events: none;
}
.page-link.active,
.active > .page-link {
  color: var(--color-tertiary);
  font-weight: 700;
}
@media (min-width: 576px) {
  .pagination {
    justify-content: center;
  }
  .page-item:not(.paper) {
    display: block;
  }
  .page-paper {
    display: none;
  }
}
.navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid var(--bs-gray-400);
}
.navigation__prev {
  width: 48%;
}
.navigation__next {
  width: 48%;
  text-align: right;
}
.navigation__link {
  font-size: 16px;
}
.navigation__subtitle {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
}
.navigation__title {
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .navigation__title {
    display: none;
  }
}
.page-header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-tertiary-light);
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .page-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.page-header .container,
.page-header .container-fluid {
  position: relative;
}
.page-header__breadcrumb {
  justify-content: center;
  margin-bottom: 2px;
  font-size: 14px;
}
.page-header__title {
  margin-bottom: 0;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .page-header__title {
    font-size: 40px;
  }
}
.page-header--bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-header--light {
  position: relative;
}
.page-header--light::before {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.8;
  background-color: var(--color-tertiary-light);
  width: 100%;
  height: 100%;
  content: "";
}
.page-header--dark {
  position: relative;
}
.page-header--dark::before {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.65;
  background-color: var(--color-primary-darken);
  width: 100%;
  height: 100%;
  content: "";
}
.page-header--dark .page-header__breadcrumb {
  --bs-breadcrumb-divider-color: rgba(var(--bs-white-rgb), 0.5);
  --bs-breadcrumb-item-active-color: rgba(var(--bs-white-rgb), 0.5);
}
.page-header--dark .page-header__breadcrumb a {
  color: var(--white);
}
.page-header--dark .page-header__breadcrumb a:hover {
  color: var(--color-tertiary);
}
.page-header--dark .page-header__title {
  color: var(--white);
}
.page-header--lg {
  padding-top: 100px;
  padding-bottom: 100px;
}
.page-header--xl {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (min-width: 992px) {
  .page-header--mh {
    min-height: 480px;
  }
}
.page-header--banner {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .page-header--banner {
    min-height: 480px;
  }
}
.page-header--banner::before {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.65;
  background-color: var(--color-primary-darken);
  width: 100%;
  height: 100%;
  content: "";
}
.page-header--banner .page-header__breadcrumb {
  --bs-breadcrumb-divider-color: rgba(var(--bs-white-rgb), 0.5);
  --bs-breadcrumb-item-active-color: rgba(var(--bs-white-rgb), 0.5);
}
.page-header--banner .page-header__breadcrumb a {
  color: var(--white);
}
.page-header--banner .page-header__breadcrumb a:hover {
  color: var(--color-tertiary);
}
.page-header--banner .page-header__title {
  color: var(--white);
}
@media (min-width: 992px) {
  .page-header--banner .page-header__title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .page-header--banner .page-header__title {
    font-size: 48px;
  }
}
.filters__toggler {
  position: relative;
}
.filters__toggler .badge {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
.filters__item + .filters__item {
  border-top: 1px solid var(--bs-gray-300);
  margin-top: 20px;
  padding-top: 20px;
}
.filters__title {
  font-size: 18px;
  font-weight: 600;
}
.filters__footer {
  border-top: 1px solid var(--bs-gray-300);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  gap: 6px;
}
@media (min-width: 1200px) {
  .filters {
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: var(--bs-border-radius-lg);
  }
}
.banner {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
}
.banner__img {
  display: block;
  position: relative;
  transition: opacity 0.35s;
  margin: 0;
  border: none;
  padding: 0;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  background-color: var(--color-primary-darken);
  width: 100%;
  height: 100%;
}
.banner__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.banner__title {
  font-weight: 700;
}
.banner__button {
  margin-top: 15px;
}
.banner__button .btn {
  padding-top: 8px;
  padding-bottom: 8px;
}
.banner--style-1 {
  text-align: center;
}
.banner--style-1 .banner__img {
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
  transform: translate3d(-10px, 0, 0);
  transition: transform 0.35s;
}
.banner--style-1 .banner__text {
  font-weight: 500;
  margin-top: auto;
}
.banner--style-1:hover .banner__img {
  transform: translate3d(0, 0, 0);
}
.header-fixed {
  height: 40px;
 
}
.header-fixed--scrolled .header-nav {
  /* position: fixed; */
  top: 0;
  padding-top: 40px;
  right: 0;
  left: 0;
  z-index: -1;
    
}
.header-top {
  --height: 46px;
  --icon-size: 1.25rem;
  --font-size: 0.938rem;
  background-color: var(--color-primary-dark);
  color: var(--white);
  font-size: var(--font-size);
}
.header-top .icon {
  fill: var(--white);
  transition: fill 0.3s ease;
  width: calc(var(--font-size) + 4px);
  height: calc(var(--font-size) + 4px);
}
.header-top__container {
  display: flex;
  align-items: center;
  height: var(--height);
}
.header-top__list {
  display: flex;
  margin: 0;
  padding: 0;
  height: var(--height);
  list-style: none;
}
.header-top__list > li,
.header-top__list > li > a {
  display: inline-flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
  color: var(--white);
}
.header-top__list > li {
  padding: 0 20px;
}
.header-top__list > li:not(:last-child) {
  border-right: 1px solid rgba(var(--white-rgb), 0.1);
}
.header-top__list > li > a,
.header-top__list > li .btn-link {
  display: inline-flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
  padding: 6px 0;
  color: var(--white);
  font-size: var(--font-size);
  text-decoration: none;
}
.header-top__list > li > a:hover,
.header-top__list > li > a.show,
.header-top__list > li .btn-link:hover,
.header-top__list > li .btn-link.show {
  color: var(--color-tertiary);
}
.header-top__list > li > a:hover .icon,
.header-top__list > li > a.show .icon,
.header-top__list > li .btn-link:hover .icon,
.header-top__list > li .btn-link.show .icon {
  fill: var(--color-tertiary);
}





.header-top__currency .code {
  font-weight: 500;
}
.header-top__currency .label {
  color: var(--bs-gray-600);
  font-size: 0.875em;
}
.header-top__currency .dropdown-item.active .label,
.header-top__currency .dropdown-item:active .label {
  color: var(--bs-gray-400);
}
.header-top__language .dropdown-item {
  display: flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
}
.header-top__social {
  display: flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
  margin-left: 20px;
  border-left: 1px solid rgba(var(--white-rgb), 0.1);
  padding-left: 20px;
  min-height: var(--height);
  line-height: 1;
}
.header-top__social .icon {
  fill: var(--white);
}
.header-top__social a:hover .icon {
  fill: var(--color-tertiary);
}
@media (min-width: 768px) {
  .header-top__list > li > a:hover .vibrate {
    animation: vibrate 0.4s infinite;
  }
}
@keyframes vibrate {
  0% {
    transform: translateX(-2px) rotate(0);
  }
  25% {
    transform: translateX(2px) rotate(-2deg);
  }
  50% {
    transform: translateX(-2px) rotate(2deg);
  }
  75% {
    transform: translateX(2px) rotate(-2deg);
  }
  100% {
    transform: translateX(-2px) rotate(0);
  }
}
.header-nav {
  position: relative;
  height: 0px;
  padding: 0;
  z-index: 11;
  box-shadow: 0px 5px 12px rgba(1, 15, 28, 0.08); 
  /* background-color: var(--bs-white); */
  /* background-color: #333; */
  color: white;
}
.header-nav .navbar-brand img {
  width: 150px;
  height: 150px;
  z-index: 0;
}
.header-nav .dropdown-menu {
  box-shadow: 0px 5px 12px rgba(1, 15, 28, 0.08);
  border-width: 0;
  padding: 15px;
  z-index: 0;
}
.header-nav .navbar-nav {
  margin: 0 auto;
}
.header-nav .offcanvas-header img {
  width: 125px;
  height: 50px;
}
.header-nav .offcanvas-body {
  align-items: center;
  padding-top: 0;
}
.header-nav .nav-link {
  position: relative;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: white;
  

}
.header-nav .nav-link.active,
.header-nav .nav-link.show,
.header-nav .nav-link:hover {
  color: var(--color-primary);
}
.header-nav .navbar-nav-card {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  height: 90px;
  overflow: hidden;
  text-align: center;
}
.header-nav .navbar-nav-card::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: 2;
  transition: opacity 0.3s ease-in;
  background-color: #000;
  width: 100%;
  height: 100%;
  content: "";
}
.header-nav .navbar-nav-card img {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease-in;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.header-nav .navbar-nav-card h3 {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in;
  margin: 0;
  color: var(--white);
  font-size: 18px;
}
.header-nav .navbar-nav-card:hover::before {
  opacity: 0.65;
}
.header-nav .navbar-nav-card:hover img {
  transform: scale(1.15);
}
.header-nav .navbar-nav-card:hover h3 {
  color: var(--color-tertiary);
}
@media (min-width: 992px) {
  .header-nav .navbar-nav-card {
    height: 120px;
  }
}
.header-nav .navbar-search__toggle {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  color: var(--color-primary-darken);
  font-size: 22px;
}
.header-nav .navbar-search__toggle::after {
  display: none;
}
.header-nav .navbar-search__toggle .icon--search {
  transition: opacity 0.1s ease;
}
.header-nav .navbar-search__toggle .icon--close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.header-nav .navbar-search__toggle.show .icon--search {
  opacity: 0;
}
.header-nav .navbar-search__toggle.show .icon--close {
  opacity: 1;
}
.header-nav .navbar-search .dropdown-menu {
  right: -26px;
  box-shadow: 0px 5px 12px rgba(1, 15, 28, 0.08);
  min-width: 300px;
}
.header-nav .navbar-search .dropdown-menu form {
  position: relative;
}
.header-nav .navbar-search .dropdown-menu .form-control {
  padding-right: 36px;
  height: 42px;
}
.header-nav .navbar-search .dropdown-menu .btn {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0;
  width: 36px;
  height: 42px;
  color: var(--color-primary-darken);
  font-size: 22px;
}
@media (max-width: 991.98px) {
  .header-nav .dropdown-menu {
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-font-size: 18px;
    box-shadow: none;
    padding: 0 0 15px 0;
  }
  .header-nav .btn-custom2 {
    margin-top: 20px;
    padding-right: 1em;
    padding-left: 1em;
    width: 100%;
  }
  .header-nav .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 575.98px) {
  .header-nav .navbar-search .dropdown-menu {
    right: -72px;
  }


}
@media (min-width: 1200px) {
  .header-nav .nav-item + .nav-item {
    margin-left: 1.25rem;
  }
}
@media (min-width: 992px) {
  .header-nav .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 0.938rem;
  }
  .header-nav .dropdown-mega {
    position: static;
  }
  .header-nav .dropdown-mega .dropdown-menu {
    top: auto;
    left: 5%;
    width: 90%;
  }
  .header-nav .navbar-search__toggle {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  content: "";
}
@media (min-width: 992px) {
  .navbar-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    content: "";
  }
}
.hero {
  height: 660px;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.6;
  background-color: #00000080;
  width: 100%;
  height: 100%;
}
.hero__subtitle {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  margin-bottom: 0;
  font-weight: 800;
  font-size: 65px;
}
@supports (-webkit-text-stroke: 2px var(--white)) {
  .hero__subtitle {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
  }
}
.hero__title {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  font-weight: 800;
  font-size: 65px;
}
.hero__text {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  font-size: 22px;
}
.hero .swiper {
  width: 100%;
  height: 100%;
}
.hero .swiper-slide {
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.hero .swiper-slide-active .hero__subtitle {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 200ms;
}
.hero .swiper-slide-active .hero__title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 400ms;
}
.hero .swiper-slide-active .hero__text {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 600ms;
}
.hero .swiper-button-next,
.hero .swiper-button-prev {
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 20px;
  opacity: 0;
  transition: linear 0.3s;
  border: 2px solid #fff;
  border-radius: 45px;
  width: 45px;
  height: 45px;
}
.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.hero .swiper-button-next {
  right: -100px;
}
.hero .swiper-button-prev {
  left: -100px;
}
.hero .swiper-pagination {
  bottom: 60px;
}
.hero .swiper-pagination-bullet {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  border: 2px solid var(--white);
  background: rgba(0, 0, 0, 0);
  width: 16px;
  height: 16px;
}
.hero .swiper-pagination-bullet::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 50%;
  background-color: var(--white);
  width: 8px;
  height: 8px;
  content: "";
}
.hero .swiper-pagination-bullet-active {
  opacity: 1;
  border: 2px solid var(--white);
}
.hero .swiper-pagination-bullet-active::before {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.hero:hover .swiper-button-next {
  right: 15px;
  opacity: 1;
}
.hero:hover .swiper-button-prev {
  left: 15px;
  opacity: 1;
}
@media (max-width: 1399.98px) {
  .hero {
    height: 620px;
  }
  .hero__subtitle,
  .hero__title {
    font-size: 56px;
  }
}
@media (max-width: 1199.98px) {
  .hero {
    height: 560px;
  }
}
@media (max-width: 991.98px) {
  .hero {
    height: 460px;
  }
  .hero .swiper-slide {
    padding: 80px 0;
  }
  .hero__subtitle,
  .hero__title {
    font-size: 46px;
  }
  @supports (-webkit-text-stroke: 1px var(--white)) {
    .hero__subtitle {
      -webkit-text-fill-color: rgba(0, 0, 0, 0);
      -webkit-text-stroke: 1px var(--white);
    }
  }
  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero__subtitle,
  .hero__title {
    font-size: 36px;
  }
  .hero__text {
    font-size: 18px;
  }
}
.consult-form {
  position: relative;
  z-index: 1;
  margin-top: -53px;
}
.consult-form__form {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 6px;
  padding: 24px;
}
.consult-form .form-control,
.consult-form label {
  font-weight: 500;
}
.section-whyus {
  /* background-image: url("../../assets/img/img-decor.png"); */
  background-repeat: no-repeat;
  background-position: top -400px right -400px;
  margin: 50px 0;
}
.section-whyus__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.section-whyus__item {
  position: relative;
  counter-increment: whyus-counter;
  padding-left: 65px;
  min-height: 50px;
}
.section-whyus__item::before {
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  border-radius: 6px;
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  content: "0" counter(whyus-counter);
  color: var(--color-tertiary);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.section-whyus__item-title {
  font-weight: 600;
  font-size: 20px;
}
.section-whyus__item-text {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .section-whyus__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .section-whyus__list {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.section-cta {
  /* background-image: url("./../../assets/img/cta/cta-bg.png"); */
  background-color: #3C3D3F;
}
.section-rectour {
  background-color: #F7F7F7;
}
.section-rectour .nav-pills {
  --bs-nav-pills-link-active-bg: var(--color-tertiary);
  --bs-nav-pills-link-active-color: var(--color-primary-dark);
  font-weight: 600;
  gap: 8px;
}
.section-rectour .nav-link {
  border: 2px solid var(--color-tertiary);
  border-radius: 50px;
}
.section-about__image {
  position: relative;
  border-radius: 10px;
  padding-top: 140%;
  overflow: hidden;
}
.section-about__image:hover .section-about__img {
  transform: scale(1.1);
}
.section-about__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}
.section-about__btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
}
.section-contact {
  overflow: hidden;
}
.section-contact-info {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
  background-color: var(--color-tertiary-light);
  height: 100%;
}
.section-contact-info__img {
  position: absolute;
  top: 0;
  right: -71px;
}
.section-contact-info__inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .section-contact-info {
    overflow: hidden;
  }
}
@media (max-width: 991.98px) {
  .section-contact-info__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .section-contact-info__img {
    opacity: 0.06;
    height: 100%;
    right: -52px;
  }
}
@media (min-width: 1200px) {
  .section-contact-info__inner {
    margin: 0;
    padding-right: 220px;
    max-width: 660px;
  }
}
.section-contact-form {
  background-color: var(--color-primary-dark);
  height: 100%;
  color: var(--bs-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-contact-form__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .section-contact-form__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .section-contact-form__inner {
    padding-left: 60px;
    margin: 0;
    max-width: 660px;
  }
}
.package-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow);
  border-radius: var(--bs-border-radius-lg);
  /* background-color: var(--white); */
  /* overflow: hidden; */
}
.package-card__image {
  position: relative;
  overflow: hidden;
}
.package-card__img {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.package-card__img-swap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  background: #fff;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.package-card__badge {
  display: flex;
  position: absolute;
  top: 10px;
  left: 0;
  row-gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}
.package-card__open {
  border-radius: 0 6px 6px 0;
  background-color: var(--bs-yellow);
  padding: 0.326rem 0.55rem;
  color: var(--bs-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}
.package-card__hit {
  position: relative;
  background-color: var(--bs-green);
  padding: 0.326rem 0.55rem;
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}
.package-card__hit::after {
  position: absolute;
  top: 0;
  right: -26px;
  border: 13px solid rgba(0, 0, 0, 0);
  border-left: 13px solid var(--bs-green);
  content: "";
}
.package-card__discount {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 3;
  background-image: url("../img/icon/discount-bg.svg");
  background-repeat: no-repeat;
  width: 52px;
  height: 33px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  line-height: 33px;
  text-align: center;
}
.package-card__type {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  border-radius: 6px;
  background-color: var(--color-primary);
  padding: 4px 10px;
  color: var(--bs-yellow);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.package-card__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 20px;
}
.package-card__location {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.package-card__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
}
.package-card__title a:hover {
  color: var(--color-primary-dark);
}

.package-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.package-card__itinerary {
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
}
.package-card__itinerary span {
  white-space: nowrap;
}
.package-card__price {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  text-align: right;
}
.package-card__price span {
  white-space: nowrap;
}
.package-card__price del {
  color: var(--bs-gray-600);
  font-weight: 500;
  font-size: 16px;
}
.package-card:hover .package-card__img-swap {
  opacity: 1;
}
.package-image {
  height: 100%;
}
.package-image img {
  border-radius: var(--bs-border-radius);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.package-image-thumb-wrapp {
  position: relative;
  margin-top: 10px;
  padding: 0 40px;
}
.package-image-thumb-wrapp .swiper-button-prev,
.package-image-thumb-wrapp .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.package-image-thumb-wrapp .swiper-button-prev {
  left: 0;
}
.package-image-thumb-wrapp .swiper-button-next {
  right: 0;
}
.package-image-thumb {
  position: relative;
}
.package-image-thumb img {
  opacity: 0.6;
  cursor: pointer;
}
.package-image-thumb .swiper-slide-thumb-active img {
  opacity: 1;
  cursor: default;
}
.package-image-thumb .swiper-slide-thumb-active::before {
  position: absolute;
  border: 3px solid var(--color-primary);
  border-radius: var(--bs-border-radius);
  width: 100%;
  height: 100%;
  content: "";
}
@media (min-width: 768px) {
  .package-image {
    display: flex;
  }
  .package-image-single {
    flex-grow: 1;
    height: 100%;
    min-height: 540px;
  }
  .package-image-main {
    flex-grow: 1;
    order: 2;
    height: 100%;
    min-height: 540px;
  }
  .package-image-thumb-wrapp {
    margin-top: 0;
    margin-right: 10px;
    padding: 40px 0;
  }
  .package-image-thumb-wrapp .swiper-button-prev,
  .package-image-thumb-wrapp .swiper-button-next {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .package-image-thumb-wrapp .swiper-button-prev {
    top: 0;
  }
  .package-image-thumb-wrapp .swiper-button-next {
    top: auto;
    bottom: 0;
  }
  .package-image-thumb {
    flex-shrink: 0;
    order: 1;
    width: 100px;
    height: 460px;
  }
}
.package-itinerary .accordion-button {
  gap: 0.55rem;
  padding: 0.65rem;
  font-weight: 600;
}
.package-itinerary .accordion-body::after {
  display: block;
  clear: both;
  content: "";
}
.package-itinerary__day {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  border-radius: 6px;
  background-color: var(--color-primary-dark);
  padding: 4px 2px;
  min-width: 42px;
  color: var(--color-tertiary);
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.package-itinerary__day span {
  font-size: 20px;
}
.package-itinerary__image {
  position: relative;
  margin-bottom: 12px;
  padding-top: 65%;
}
.package-itinerary__image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.package-itinerary__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 992px) {
  .package-itinerary__image {
    float: right;
    margin: 12px 0 12px 24px;
    padding-top: 0;
    width: 300px;
    height: 225px;
  }
}
.package-banner {
  height: 100%;
  max-height: 620px;
}
@media (max-width: 991.98px) {
  .package-banner {
    height: 420px;
  }
}
@media (min-width: 992px) {
  .package-form {
    background-color: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    padding: 26px;
    box-shadow: var(--box-shadow);
    border-radius: var(--bs-border-radius-lg);
  }
}
.booking-form-box {
  position: sticky;
  top: 0;
  box-shadow: var(--shadow-md);
  border-radius: var(--bs-border-radius);
  background-color: var(--white);
  padding: 20px;
}
.hotel-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow);
  border-radius: var(--bs-border-radius-lg);
  background-color: var(--white);
  overflow: hidden;
}
.hotel-card__image {
  position: relative;
  overflow: hidden;
}
.hotel-card__img {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.hotel-card__img-swap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  background: #fff;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hotel-card__star {
  display: flex;
  position: absolute;
  top: 12px;
  left: 12px;
  row-gap: 6px;
  z-index: 3;
  border-radius: 50px;
  background: rgba(18, 18, 18, 0.6);
  padding: 4px 6px;
  color: var(--bs-yellow);
}
.hotel-card__price {
  position: absolute;
  bottom: 12px;
  left: 0;
  z-index: 3;
  border-radius: 0 4px 4px 0;
  background-color: red;
  padding: 8px 12px;
  min-width: 80px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}
.hotel-card__price del {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.hotel-card__discount {
  display: flex;
  position: absolute;
  top: 0;
  right: 12px;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
  background-image: url("../img/icon/discount-bg2.svg");
  background-repeat: no-repeat;
  padding-bottom: 9px;
  width: 52px;
  height: 44px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.hotel-card__discount span {
  font-weight: 500;
  font-size: 12px;
}
.hotel-card__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 20px;
}
.hotel-card__location {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 15px;
}
.hotel-card__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
}
.hotel-card__title a:hover {
  color: var(--color-primary-dark);
}

.hotel-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 20px;
}
.hotel-card__itinerary {
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
}
.hotel-card__itinerary span {
  white-space: nowrap;
}
.hotel-card:hover .hotel-card__img-swap {
  opacity: 1;
}
.hotel-card--style2 .hotel-card__image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42.2%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  content: "";
}
.hotel-card--style2 .hotel-card__content {
  position: absolute;
  top: 0;
  left: 0;
  justify-content: flex-end;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.hotel-card--style2 .hotel-card__title a {
  color: var(--white);
}
.hotel-card--style2 .hotel-card__title a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.hotel-image {
  height: 100%;
  max-height: 540px;
}
.hotel-image img {
  border-radius: var(--bs-border-radius);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  .hotel-image-single {
    flex-grow: 1;
    height: 100%;
    min-height: 540px;
  }
  .hotel-image-main {
    flex-grow: 1;
    order: 2;
    height: 100%;
    min-height: 540px;
  }
}
.hotel-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.hotel-services li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hotel-services .icon {
  font-size: 24px;
}
.hotel-services h6 {
  margin-top: 2px;
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .hotel-services {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991.98px) {
  .hotel-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .hotel-services {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hotel-room {
  border: 2px solid var(--bs-gray-300);
  border-radius: var(--bs-border-radius-lg);
  padding: 1rem;
}
.hotel-room__title {
  font-weight: 700;
  font-size: 18px;
}
.hotel-room__desc {
  margin-bottom: 1rem;
}
.hotel-room__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 20px;
}
.hotel-room__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 1rem;
}
.hotel-room__thumbs-link {
  border-radius: 6px;
  background: rgba(var(--bs-black-rgb), 1);
  overflow: hidden;
}
.hotel-room__thumbs-link:hover .hotel-room__thumbs-img {
  opacity: 0.8;
}
.hotel-room__thumbs-img {
  transition: opacity 0.2s ease;
  width: 68px;
  height: 68px;
  -o-object-fit: cover;
  object-fit: cover;
}
.hotel-room__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotel-room__price span {
  font-weight: 700;
  font-size: 20px;
}
.hotel-room__btn {
  padding: 0.75rem 1rem;
}
.hotel-room + .hotel-room {
  margin-top: 1rem;
}
.hotel-map-wrap {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  height: 100%;
}
.hotel-map {
  flex-grow: 1;
}
.hotel-left {
  display: flex;
  flex-direction: column;
}
.review-card {
  display: flex;
  position: relative;
  flex-direction: column;
  border: 2px solid var(--color-primary-lighten);
  border-radius: 10px;
  background-color: var(--white);
  padding: 24px;
}
.review-card__info {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.review-card__quotes {
  position: absolute;
  top: 0;
  right: 5px;
  color: var(--color-primary-lighten);
  font-size: 80px;
}
.review-card__autor {
  display: flex;
  position: relative;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.review-card__avatar {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
}
.review-card__avatar img {
  border-radius: 100px;
  max-width: 100%;
  height: auto;
}
.review-card__name {
  margin-bottom: 2px;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
}
.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  font-size: 15px;
}
.review-card__rating {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  width: 100%;
}
.review-card__desc {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  margin-bottom: auto;
}
.review-card__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 1rem;
}
.review-card__thumbs-link {
  background: rgba(var(--bs-black-rgb), 1);
  border-radius: 6px;
  overflow: hidden;
}
.review-card__thumbs-link:hover .review-card__thumbs-img {
  opacity: 0.8;
}
.review-card__thumbs-img {
  width: 68px;
  height: 68px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.review-card__answer {
  position: relative;
  margin-top: 2rem;
  border-top: 2px solid var(--color-primary-lighten);
  padding-top: 20px;
}
.review-card__answer-title {
  position: absolute;
  top: -10px;
  left: 0;
  border-radius: 3px;
  background-color: var(--color-primary-lighten);
  padding: 6px 8px 4px;
  color: var(--color-primary-darken);
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .review-card {
    padding: 16px;
  }
}
.form-review {
  position: relative;
  box-shadow: var(--shadow-md);
  border-radius: var(--bs-border-radius);
  background-color: #fff;
}
.avatar-upload {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  border-radius: var(--bs-border-radius);
  background: var(--color-primary-lighten);
  width: 132px;
  height: 132px;
  overflow: hidden;
}
.avatar-upload__input {
  display: none;
}
.avatar-upload__icon {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: auto;
}
.avatar-upload--image .avatar-upload__icon {
  display: none;
}
.avatar-upload__upload {
  z-index: 1;
  pointer-events: none;
  color: inherit;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
.avatar-upload--image .avatar-upload__upload {
  display: none;
}
.avatar-upload__delete {
  display: none;
  position: absolute;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  background: var(--lightgray);
  width: 32px;
  height: 32px;
  text-indent: -9999px;
}
.avatar-upload__delete::after,
.avatar-upload__delete::before {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ff231f;
  width: 3px;
  height: 14px;
  content: "";
}
.avatar-upload__delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.avatar-upload__delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.avatar-upload--image .avatar-upload__delete {
  display: block;
}
.avatar-upload--image {
  cursor: default;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.review-slider2 .review-card {
  position: relative;
  overflow: hidden;
}
.review-slider2 .review-card::before {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
  overflow: hidden;
  content: "";
  z-index: 3;
}

.post-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow);
  border-radius: var(--bs-border-radius-lg);
  background-color: var(--white);
  overflow: hidden;
}
.post-card__image {
  position: relative;
  overflow: hidden;
}
.post-card__img {
  transition: transform 0.3s ease-in-out;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.post-card__type {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  border-radius: 6px;
  background-color: var(--color-tertiary-light);
  padding: 4px 10px;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.post-card__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}
.post-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 15px;
}
.post-card__title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.post-card__title a:hover {
  color: var(--color-primary);
}

.post-card:hover .post-card__img {
  transform: scale(1.1);
}
.post-detail__image {
  height: 520px;
  margin-bottom: 16px;
}
.post-detail__meta {
  display: flex;
  font-size: 15px;
  gap: 16px;
  margin-bottom: 16px;
}
.post-detail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: var(--bs-border-radius-lg);
}
@media (max-width: 991.98px) {
  .post-detail__image {
    height: 460px;
  }
}
@media (max-width: 767.98px) {
  .post-detail__image {
    height: 380px;
  }
}
@media (max-width: 767.98px) {
  .post-detail__image {
    height: 300px;
  }
}
.destination-card {
  position: relative;
  border-radius: 8px;
  max-width: 800px;
  overflow: hidden;
  height: 280px;
}
.destination-card::before {
  position: absolute;
  top: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  width: 100%;
  height: 100%;
  overflow: hidden;
  content: "";
}
.destination-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.destination-card__content {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s ease-in;
  padding: 24px;
}
.destination-card__title {
  color: var(--bs-white);
  font-size: 24px;
  font-weight: 700;
}
.destination-card__info {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .destination-card {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .destination-card__content {
    transform: translateY(30px);
  }
  .destination-card__info {
    opacity: 0;
    transition: opacity 0.2s ease-in;
  }
  .destination-card:hover .destination-card__content {
    transform: translateY(0px);
  }
  .destination-card:hover .destination-card__info {
    opacity: 1;
    transition: opacity 0.2s ease-in;
  }
}
.city-attractions-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}
.city-attractions-list li {
  margin: 0;
}
@media (max-width: 991.98px) {
  .city-attractions-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .city-attractions-list {
    grid-template-columns: none;
  }
}
.contact-map {
  margin-bottom: -7px;
}
.create-package-form {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.create-package-form__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.6;
  background-color: var(--color-primary-darken);
  width: 100%;
  height: 100%;
}
.media-album {
  position: relative;
  box-shadow: var(--bs-box-shadow-sm);
  padding: 0.5rem;
  border-radius: var(--bs-border-radius-lg);
  background-color: var(--white);
  text-align: center;
  border: 1px solid var(--bs-gray-300);
}
.media-album__image {
  overflow: hidden;
  border-radius: var(--bs-border-radius);
}
.media-album__img {
  max-width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease-in;
}
.media-album__title {
  margin: 1rem 0 0.5rem;
  font-size: 18px;
  color: var(--color-primary-darken);
}
.media-album__title a {
  color: inherit;
}
.media-album__title span {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  background-color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-border-radius);
}
.media-album:hover .media-album__img {
  transform: scale(1.15);
}
.media-album:hover .icon {
  transform: translate(-50%, -50%) scale(0.94);
}
.media-album:hover::after {
  opacity: 1;
}
.footer {
  position: relative;
  background-image: url("../img/footer_img.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 30px;
}
.footer::before {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.94;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  content: "";
}
.footer__container {
  position: relative;
  z-index: 2;
  color: white;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
}
.footer__nav > li {
  margin-bottom: 8px;
  color: white;
}
.footer__nav a {
  position: relative;
  padding-left: 12px;
  left: 0;
  transition: all 0.1s ease-in-out;
  color: white;
}
.footer__nav a::before {
  position: absolute;
  top: 0px;
  left: -6px;
  opacity: 0.6;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,1)"><path d="M12.1717 12.0005L9.34326 9.17203L10.7575 7.75781L15.0001 12.0005L10.7575 16.2431L9.34326 14.8289L12.1717 12.0005Z"></path></svg>');
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  content: "";

}
.footer__nav a:hover {
  left: 3px;
  color:rgba(203, 199, 199, 0.827);
}
.footer__social {
  font-size: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.footer__social a {
  color: var(--bs-white);
 
}
.footer__social a:hover {
  color: var(--color-tertiary);
}
.footer-top {
  padding: 60px 0 40px;
}
@media (max-width: 991.98px) {
  .footer-top {
    padding: 30px 0 20px;
  }
}


.footer-top__list {
  /* display: flex; */
  margin: 0;
  padding: 0;
  height: var(--height);
  list-style: none;
}
.footer-top__list > li,
.footer-top__list > li > a {
  display: inline-flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
  color: var(--white);
}


.footer-top__list > li > a,
.footer-top__list > li .btn-link {
  display: inline-flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  align-items: center;
  padding: 6px 0;
  color: var(--white);
  font-size: var(--font-size);
  text-decoration: none;
}
.footer-top__list > li > a:hover,
.footer-top__list > li > a.show,
.footer-top__list > li .btn-link:hover,
.footer-top__list > li .btn-link.show {
  color: var(--color-tertiary);
}
.footer-top__list > li > a:hover .icon,
.footer-top__list > li > a.show .icon,
.footer-top__list > li .btn-link:hover .icon,
.footer-top__list > li .btn-link.show .icon {
  fill: var(--color-tertiary);
}
.footer-bottom {
  border-radius: 10px;
  background-color:#00000080;
  padding: 24px;
  color: rgba(var(--bs-white-rgb), 0.5);
  font-size: 14px;
}
.footer-bottom a {
  color: rgba(var(--bs-white-rgb), 0.5);
  
}
.footer-bottom a:hover {
  color: rgba(var(--bs-white-rgb), 0.6);
}

.footer-bottom .footer__social a{
  color: white;
}
.scrollup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color:#3C3D3F;
  z-index: 5;
  cursor: pointer;
  line-height: 42px;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.scrollup__icon {
  color: var(--color-primary-lighten);
  width: 28px;
  height: 28px;
}
.scrollup:hover {
  background-color: var(--color-tertiary-dark);
}
.scrollup:hover .scrollup__icon {
  color: var(--color-primary-darken);
}
@media (max-width: 575.98px) {
  .scrollup {
    bottom: 0px;
    right: 5px;
    height: 42px;
    border-radius: 4px 4px 0 0;
  }
}







/* new stil  */
  
.counter-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
}

.counter-box {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .counter {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .counter-text {
      font-size: 16px;
      line-height: 1.4;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

  



.header-nav {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: transparent;
  color: white;
  z-index: 1000;
  transition: all 0.3s ease;
}

@media(max-width:992px){

.header-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  color: white;
  z-index: 1000;
  transition: all 0.3s ease;
}

}


.header-nav a.nav-link,
.header-nav .navbar-brand,
.header-nav .icon use {
  color: white;
  transition: color 0.3s ease;
}

/* ⚪ Scroll qilinganda fon oq, matn qora */
.header-fixed--scrolled .header-nav {
  /* position: fixed; */
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: black;

}

.header-fixed--scrolled .header-nav a.nav-link,
.header-fixed--scrolled .header-nav .navbar-brand,
.header-fixed--scrolled .header-nav .icon use {
  color: black;
}




.header.header-fixed--scrolled .header-nav a {
  color: black;
}




    .section-engineering {
      position: relative;
      padding: 60px 20px;
      background-color: #fff;
      overflow: hidden;
    }

    .section-engineering::before,
    .section-engineering::after {
      content: '';
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
      width: 180px;
      height: 300px;
      opacity: 0.3;
      z-index: 0;
    }

    .section-engineering::before {
      background-image: url('./assets/img/index_1.png');
      top: 0;
      left: 0;
      width: 200px;
      height: 350px;
    }

    .section-engineering::after {
      background-image: url('./assets/img/index_3.png');
      bottom: 0;
      right: 0;
    }

   
/* card */

.custom-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* .custom-card .card-img-top {
  border-radius: 10px;
} */

.custom-card .card-body {
  padding: 1rem 0.5rem;
}

.custom-card .card-title{
  text-align: center;
}


/* why */

.why-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list i {
  color: #000;
  font-size: 18px;
}

/* Responsive sozlamalar */
@media (max-width: 768px) {
  .why-list li {
    font-size: 16px;
  }
}


 

.logo-img {
  display: block;
  height: 150px;
  margin: -45px 0 -20px 0; /* Past va tepadan siqadi */
  object-fit: contain;
}

/* swiper */


/* .post-slider .swiper-slide {
  display: flex;
  justify-content: center;
} */

.post-slider .swiper-wrapper {
  justify-content: center;
  display: flex;
}

.post-card {
  max-width: 100%;
  height: 100%;
}

.navbar-toggler{
  background-color: white;
  color: black;
}

.navbar-toggler .nav-item .nav-link{
  color: black;
  

}

#offcanvasNavbar {
    background-color: #3C3D3F;
    z-index: 9999 !important;
    
  }
  #offcanvasNavbar .nav-link,
  #offcanvasNavbar .offcanvas-title {
    color: #ffffff;
  }
  #offcanvasNavbar .nav-link:hover {
    color: #faf3f3
  }

    #offcanvasNavbar img {
      display: block;
      width: 100%;
      height: 150px;
      margin: -45px 0 -20px 0; /* Past va tepadan siqadi */
      object-fit: contain;  
  }

    /* Barcha linklar oq rangda */
  #offcanvasNavbar .nav-link {
    color: #ffffff;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  /* Hoverda ozgina yuqoriga ko'tarilsin */
  #offcanvasNavbar .nav-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
  }

  /* Tagidagi chiziq (underline) animatsiyasi */
  #offcanvasNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  /* Hoverda chiziq chiqsin */
  #offcanvasNavbar .nav-link:hover::after {
    transform: scaleX(1);
  }


  /* counter2 */
   .project-section {
      padding: 60px 0;
      background-color: #f5f5f5;
    }

    .project-box {
      height: 350px;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: #000;
    }

    .row.no-gap { --bs-gutter-x: 0; }

    .project-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(255,255,255,0.65);
      z-index: 1;
    }

    .counter-text {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .counter-text .percent {
      font-size: 54px;
      font-weight: 900;
    }

    .counter-text .label {
      font-size: 22px;
      font-weight: 700;
    }

  


    a {
        position: relative;
        z-index: 9999;
        pointer-events: auto;
      }


  .hover-card {
    transition: all 0.3s ease;
   }

   .hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color:3px solid #ed2626; /* optional: red border on hover */
  }







   




  

  


    /* contact section */



 .udg-contact-wrapper {
  background-color: #fff;
  padding: 100px 20px;
  font-family: Arial, sans-serif;
}

.udg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.udg-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.udg-contact-info {
  flex: 1;
  min-width: 300px;
}

.udg-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.udg-desc {
  font-size: 14px;
  margin-bottom: 20px;
}

.udg-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.udg-info-item i {
  font-size: 20px;
  margin-right: 12px;
  color: #000;
  margin-top: 5px;
}

.udg-info-item strong {
  font-size: 14px;
}

.udg-info-item p, .udg-info-item a {
  font-size: 14px;
  margin: 0;
  color: #000;
  text-decoration: none;
}

.udg-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.udg-socials i {
  font-size: 18px;
  color: #000;
  cursor: pointer;
  margin-right: 30px;
}

.udg-form-wrapper {
  flex: 2;
  min-width: 400px;
}

.udg-form-wrapper img{
  content: url();
}



.udg-form-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.udg-form {
  display: flex;
  flex-direction: column;
  gap: 15px;

}



  .udg-contact-info {
  position: relative;
}

.udg-contact-wrapper {
  position: relative;
  z-index: 1;
}

.udg-form-wrapper {
  position: relative;
  z-index: 1;
}

.udg-form-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 200px;
  background-image: url('./assets/img/contact/img_after.png'); /* O‘ngdagi forma orqasidagi rasm */
  background-repeat: no-repeat;
  z-index: -1;

}

.udg-contact-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 300px;
  height: 300px;
  background-image: url('./assets/img/contact/img_before.png'); /* Chap tomondagi info qismidagi rasm */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}


/* @media(max-width:992px){
 .udg-contact-info::after {
    content: "";
    background-image: none;
  }

  
.udg-form-wrapper::before {
  content: "";
  background-image: none;

} */










.udg-form input,
.udg-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  resize: none;
}

.udg-form button {
  padding: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 120px;
}

.udg-separator {
  height: 30px;
}


@media(max-width:768px){
  .d-flex input,.btn{
    display: none;
  }

}


/* sena section */

    .section {
      padding: 40px 20px;
    }
    .object-box {
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      cursor: pointer;
      transition: 0.3s;
      height: 100%;
    }
    .object-box:hover,
    .object-box.active {
      border-color: #e60000;
      background-color: #fff1f1;
    }
    .object-box input[type="radio"] {
      display: none;
    }

    .range-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      font-size: 14px;
    }

    .range-wrapper {
      position: relative;
      padding-bottom: 30px;
    }

    .range-wrapper input[type=range] {
      width: 100%;
    }

    .range-ticks {
      display: flex;
      justify-content: space-between;
      position: absolute;
      width: 100%;
      top: 30px;
    
    }

    .range-ticks span {
      height: 10px;
      width: 1px;
      background-color: black;
      display: inline-block;
      font-weight: bold;
      
    }

    .result-box {
      background: #f5f5f5;
      padding: 20px;
      border-left: 5px solid #e60000;
    }


    /* new range */

.range-wrapper {
  position: relative;
  width: 100%;
  margin: 30px 0;
}

.range-wrapper input[type="range"] {
  width: 100%;
  appearance: none;
  background: #e67e90;
  height: 2px;
  border-radius: 2px;
  outline: none;
}

/* Ticks va raqamlarni to'g'ri joylash */
.range-scale {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 18px;
  width: 100%;
  pointer-events: none;
 
}

.scale-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* tick va raqamni markazlashtiradi */
  text-align: center;
}

.tick {
  width: 2px;
  height: 10px;
  background-color: #000;
  margin-bottom: 6px;
}

.label {
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}

/* Tugma (thumb) deeppink rangda */
.range-wrapper input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 23px;
  height: 23px;
  background: deeppink;
  border-radius: 50%;
  border: 2px solid rgb(243, 113, 154);
  box-shadow: 0 0 5px rgba(231, 26, 169, 0.3);
  cursor: pointer;
}

.range-wrapper input[type="range"]::-moz-range-thumb {
  width: 23px;
  height: 23px;
  background: deeppink;
  border-radius: 50%;
  border: 2px solid rgb(211, 81, 183);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: deeppink;
  border-color: deeppink;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.25); /* deeppink effekti */
}



    /* contact */
  
.udg-socials i{
  font-size: 30px;
}

.udg-socials {
  margin: 20px 0;
}

.udg-info-item i{
  font-size: 30px;
}

.udg-flex button{
  background-color: #3C3D3F;
}


/* keys */

.ceys li{
  margin: 20px 0px;
}

/* sena */


    .object-card {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 15px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      height: 100%;
    }
    .object-card img {
      height: 70px;
      margin-bottom: 10px;
    }
    .object-card input[type="radio"] {
      display: none;
    }
    .object-card.active {
      border: 2px solid #e30613;
      background-color: #fff0f1;
    }
    .object-label {
      font-size: 14px;
      color: #333;
    }
  

    /* search */
    

        .search-form {
      display: flex;
      align-items: center;
      gap: 5px;
      flex: 1;
      max-width: 220px;
    }
    .search-form input {
      flex: 1;
    }
   @media (max-width: 770px){
  .form-control {
     display: block !important;
  }
}


/* new */
 
  
.counter-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
}

.counter-box {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .counter {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .counter-text {
      font-size: 16px;
      line-height: 1.4;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

  


/* card */

.custom-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* .custom-card .card-img-top {
  border-radius: 10px;
} */

.custom-card .card-body {
  padding: 1rem 0.5rem;
}

.custom-card .card-title{
  text-align: center;
}


/* why */

.why-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list i {
  color: #000;
  font-size: 18px;
}

/* Responsive sozlamalar */
@media (max-width: 768px) {
  .why-list li {
    font-size: 16px;
  }
}


 

.logo-img {
  display: block;
  height: 150px;
  margin: -45px 0 -20px 0; /* Past va tepadan siqadi */
  object-fit: contain;
}

/* swiper */


/* .post-slider .swiper-slide {
  display: flex;
  justify-content: center;
} */

.post-slider .swiper-wrapper {
  justify-content: center;
  display: flex;
}

.post-card {
  max-width: 100%;
  height: 100%;
}

.navbar-toggler{
  background-color: white;
  color: black;
}

.navbar-toggler .nav-item .nav-link{
  color: black;
  

}

#offcanvasNavbar {
    background-color: #3C3D3F;
  }
  #offcanvasNavbar .nav-link,
  #offcanvasNavbar .offcanvas-title {
    color: #ffffff;
  }
  #offcanvasNavbar .nav-link:hover {
    color: #faf3f3
  }

    #offcanvasNavbar img {
      display: block;
      width: 100%;
      height: 150px;
      margin: -45px 0 -20px 0; /* Past va tepadan siqadi */
      object-fit: contain;  
  }

    /* Barcha linklar oq rangda */
  #offcanvasNavbar .nav-link {
    color: #ffffff;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  /* Hoverda ozgina yuqoriga ko'tarilsin */
  #offcanvasNavbar .nav-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
  }

  /* Tagidagi chiziq (underline) animatsiyasi */
  #offcanvasNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  /* Hoverda chiziq chiqsin */
  #offcanvasNavbar .nav-link:hover::after {
    transform: scaleX(1);
  }


  /* counter2 */
   .project-section {
      padding: 60px 0;
      background-color: #f5f5f5;
    }

    .project-box {
      height: 350px;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: #000;
    }

    .row.no-gap { --bs-gutter-x: 0; }

    .project-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(255,255,255,0.65);
      z-index: 1;
    }

    .counter-text {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .counter-text .percent {
      font-size: 54px;
      font-weight: 900;
    }

    .counter-text .label {
      font-size: 22px;
      font-weight: 700;
    }

  


  

   .hover-card {
    transition: all 0.3s ease;
   }

   .hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color:3px solid #ed2626; /* optional: red border on hover */
  }







  
/* dropdown services */
.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white; 
  margin-top: 3px;
}




.custom-dropdown {
  background-color: #3C3D3F;
  border: none;
  min-width: 370px;
}

.custom-dropdown .dropdown-item {
  color: #fff;
  
}

.custom-dropdown .dropdown-item:hover {
  background-color: #57585a;
  color: #fff;
  border-radius: 5px;
}

.custom-dropdown .dropdown-item:active{
  background-color: #3e4656;
  color: #fff;
  border-radius: 5px;

}


/* Dropdown-item uchun hover animatsiya */
.dropdown-item {
  transition: transform 0.2s ease, color 0.2s ease;
  
}

.dropdown-item:hover {
  transform: translateX(5px); /* o'ngga 5px siljiydi */
  color: #ff4d4d; /* istasangiz rang ham o'zgaradi */
  font-weight: bold;
}

/* Dropdown-item uchun hover animatsiya */
.dropdown-item1 {
  transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-item1:hover {
  transform: translateX(5px); /* o'ngga 5px siljiydi */
  color: #ff4d4d; /* istasangiz rang ham o'zgaradi */
}




.custom-dropdown .dropdown-item1 {
  color: #fff;
  margin: 10px 0;
}

.custom-dropdown .dropdown-item1:hover {
  background-color: #57585a;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}

.custom-dropdown .dropdown-item1:active{
  background-color: #3e4656;
  color: #fff;
  border-radius: 5px;

}
  
.dropdown-item1::before {
  content: "▶";  /* o'ng tomonga qaragan belgi */
  color: red;    /* belgining rangi qizil */
  font-weight: bold;
  margin-right: 8px;
}



/* O компании uchun arrow-left */
.arrow-left {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 3px solid white;
  border-left: 3px solid white;
  transform: rotate(-230deg);
  margin-right: 8px;
}





/* Faqat headerdagi linklar ustida bo'lishi kerak */


/* Modal har doim eng yuqorida turishi uchun */
.modal-backdrop {
    z-index: 99998 !important;
}

.modal {
    z-index: 99999 !important;
}

.modal-dialog {
    z-index: 100000 !important;
}

/* Telefon raqam (link) boshqa joylarda modalni bosmasin */
a {
    position: relative;
    z-index: 1;  /* default qiymat */
    pointer-events: auto;
}

.header a,
.navbar a {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

.footer a{
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}






    /* sena */

.consult-form input {
  height: 50px;
  font-size: 16px;
}
.consult-form button {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.consult-form p.small {
  font-size: 12px;
  line-height: 1.4;
}

/* about */
/* timeline */


    .timeline-section {
      padding: 40px 20px;
      background: #fff;
    }

    .timeline-wrapper {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      position: relative;
      flex-wrap: wrap;
      padding: 20px 10px;
    }

    /* Chiziq (line) */
    .timeline-wrapper::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 5%;
      width: 90%;
      height: 2px;
      background-color: #ccc;
      z-index: 1;
      transform: translateY(-50%);
    }

    .timeline-item {
      flex: 1;
      min-width: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      min-height: 120px;
      margin: 10px;
      z-index: 2;
    }

    .timeline-item .dot {
      width: 18px;
      height: 18px;
      background-color: #333;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      transition: background-color 0.3s, box-shadow 0.3s;
      z-index: 3;
    }

    .timeline-item .year {
      margin-bottom: 40px;
      font-weight: bold;
      font-size: 22px;
    }

    .timeline-item .desc {
      margin-top: 40px;
      font-size: 20px;
      color: #555;
      font-weight: bold;
    }

    /* Active holatda */
    .timeline-item.active .dot {
      width: 20px;
      height: 20px;
      background-color: deeppink;
      box-shadow: 2px 2px 5px rgba(227, 84, 129, 0.6);
    }

    /* Responsive: mobil ekranlarda vertical */
    @media (max-width: 768px) {
      .timeline-wrapper {
        flex-direction: column;
        align-items: flex-start;
      }

      .timeline-wrapper::before {
        left: 15px;
        top: 0;
        width: 2px;
        height: 100%;
        transform: none;
      }

      .timeline-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        min-height: auto;
        width: 100%;
        padding: 10px 0;
      }

      .timeline-item .dot {
        position: relative;
        top: auto;
        transform: none;
        margin-right: 10px;
      }

      .timeline-item .year {
        margin-bottom: 0;
        margin-right: 15px;
      }

      .timeline-item .desc {
        margin-top: 0;
      }
    }


/* o nas cifr */

 
    .section-stats {
      padding: 50px 0;
      background: #fff;
    }

    .progress {
      background-color: #eee;
      height: 10px;
      border-radius: 5px;
    }

    .progress-bar-custom {
      height: 5px;
      border-radius: 5px;
      width: 0;
    }

    .stat-number {
      font-size: 40px;
      font-weight: bold;
      color: #000 !important;
    }

    .stat-title {
      font-size: 18px;
      color: #555;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .icon-box {
      font-size: 30px;
      margin-bottom: 5px;
      color: #333 ;
    }

    .stat-item {
      background: #f5f5f5;
      padding: 20px;
      border-radius: 5px;
      text-align: center;
      margin-bottom: 20px;
      min-height: 120px;
    }

    .progress-label {
      font-size: 40px;
      font-weight: bold;
      margin-right: 10px;
      color: black !important;
    }


    /* aktualno */


    .fancybox img{
      width: 500px;
      height: 300px;
      object-fit: cover;
      border-radius: 30px;
    }
  

    /* sena  */



  .range-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 40px 0;
    position: relative;
  }




  #areaRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: deeppink;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
  }

  /* Ticklar */
  .range-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .scale-item {
    text-align: center;
    flex: 1;
    position: relative;
  }

  .tick {
    width: 2px;
    height: 10px;
    background: black;
    display: block;
    margin: 0 auto;
  }

  .label {
    font-size: 12px;
    margin-top: 2px;
    display: inline-block;
  }
.post-slider .swiper-slide {
  border-radius: 8px;
  min-height: 100%;
  padding: 10px;
}

.post-card__image img {
  width: 100%;
  height: auto;
  border-radius: 6px 6px 0 0;
}

/* Sarlavha va matnni kichikroq qilish */
.post-card__title {
  font-size: 18px;
  margin-top: 8px;
}

.post-card__desc {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 6px;
}

/* Meta ma'lumotlarni kichikroq qilish */
.post-card__meta span {
  font-size: 12px;
  margin-right: 10px;
}

/* Responsive uchun optimizatsiya */
@media (max-width: 991px) {
  .post-card__title {
    font-size: 16px;
  }
  .post-card__desc {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .post-card__title {
    font-size: 15px;
  }
  .post-card__desc {
    font-size: 12px;
  }
}



  .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.page-item .page-link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0d2c6c;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-item.active .page-link {
  background-color: black;
  border-color: white;
  color: white;
}

.page-item.paper.page-paper .page-link {
  border-radius: 20px;
  padding: 0 14px;
  width: auto;
}

.page-item .page-link:hover {
  background-color: #e6e6e6;
}

@media (max-width: 576px) {
  .pagination {
    gap: 5px;
  }

  .page-item .page-link {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .page-item.paper.page-paper .page-link {
    padding: 0 10px;
  }
}



/* services new style */
.custom-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.card-body-top {
  padding: 12px;
  text-align: center;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.card-image-wrapper {
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  display: block;
}






/* new uslug*/
.custom-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  min-height: 60px;  /* ✅ minimal balandlik */
  max-height: 60px;  /* ✅ bir xil balandlik */
  display: flex;
  align-items: center;
  justify-content: center;
}



/* section bg*/
.section-bg {
  
    padding: 20px 0;
    margin-top: 10px ; /* ✅ Pastroqqa tushirish */
   
  }

  .section-bg .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
  }


  /* new sites */


 .header-logo img {
      max-height: 100px;
      width: auto;
    }
    .contact-info {
      font-weight: bold;
    }
    .navbar-nav .nav-link {
      font-weight: 600;
    }
    .slider-text {
      background: rgba(255,255,255,0.85);
      padding: 10px 15px;
      border-radius: 10px;
      display: inline-block;
      font-size: 1rem;
    }


    @media (max-width: 768px) {
  .header-logo img {
    max-height: 70px;
  }
}

.navbar{
  background-color: rgb(230, 245, 19);
}

.eng-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eng-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.section-why .image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 750px; /* rasm kengligi kattaroq */
}

.section-why .custom-img {
  width: 100%;
  height: auto;
  max-height: 550px; /* rasm balandligi */
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.section-why .custom-img:hover {
  transform: scale(1.03); /* hover effekti bilan yanada chiroyli */
}


.section-fs{
  font-size: 30px;
}



.text-warning i {
  font-size: 1.2rem;
  vertical-align: middle;
}

.nav-link i {
  font-size: 0.6rem;
  vertical-align: middle;
}

.nav-link {
  display: inline-block; /* transform ishlashi uchun */
  transition: transform 0.3s ease, color 0.3s ease;
  color: black;
}

.nav-link:hover {
  transform: translateX(5px); /* butun link siljiydi */
  color: white; /* hover paytida matn oq bo‘ladi */
}

.nav-link i {
  transition: color 0.3s ease;
}

.nav-link:hover i {
  color: white; /* icon ham oq bo‘ladi */
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .carousel-item img {
      height: 300px;
    }
  }

