
/*  */
/* Media Queries */
/*--------------------------------------------------------------
    Google Fonts
--------------------------------------------------------------*/
/*  */
/* Media Queries */
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #e7191f;
  --main-color-one-rgb: 30, 132, 254;
  --secondary-color: #000088;
  --secondary-color-rgb: 255, 140, 50;
  --gradient-circle: radial-gradient(circle, rgba(var(--main-color-one-rgb), 0.8) 0%, var(--main-color-one) 100%);
  --section-bg-1: #F6F7F8;
  --section-bg-2: #F2F4F7;
  --footer-bg-1: #cce5ff;
  --copyright-bg-1: #323336;
  --heading-color: #1D2635;
  --body-color: #333;
  --gray-color: #f8f8f8;
  --input-color: #EAECF0;
  --paragraph-color: #333;
  --light-color: #999;
  --manrope-font: "Manrope", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--body-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 42px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.0833333333;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

p {
  color: #333;
  margin: 10px 0;
  font-size: 16px;
  line-height: 26px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

.list-style-none {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

span {
  display: inline-block;
}

.desktop-center {
  text-align: center;
}

.form--control {
  width: 100%;
}

/* Common Style */
.margin-0 {
  margin: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.radius-parcent-50 {
  border-radius: 50%;
}

.radius-50 {
  border-radius: 50px;
}

.radius-40 {
  border-radius: 40px;
}

.radius-35 {
  border-radius: 35px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-0 {
  border-radius: 0px !important;
}

.no-shadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.single-border-top {
  border-top: 1px solid rgba(221, 221, 221, 0.3);
}

.single-border {
  border: 1px solid rgba(221, 221, 221, 0.3);
}

.color-light {
  color: var(--light-color) !important;
}

.color-extra-light {
  color: var(--extra-light-color) !important;
}

.color-heading {
  color: var(--heading-color);
}

.bg-gray {
  background-color: var(--gray-color);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.footer-bg-1 {
  background-color: #232423;
}

.footer-bg-2 {
  background-color: var(--footer-bg-2);
}

.copyright-bg-1 {
  background-color: var(--copyright-bg-1);
}

.color-one {
  color: var(--main-color-one);
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

.center-text {
  text-align: center;
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

@-webkit-keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.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;
}

.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-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-65 {
  font-size: 65px !important;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn-wrapper {
  display: block;
}
.btn-wrapper .cmn-btn {
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  line-height: 34px;
  padding: 7px 35px;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 575.98px) {
  .btn-wrapper .cmn-btn {
    padding: 10px 25px;
    font-size: 15px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn.btn-bg-1 {
  background: var(--main-color-one);
  color: #fff;
  border: 2px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-bg-1:hover {
  background: none;
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-border {
  border: 1px solid #f1f1f1;
}
.btn-wrapper .cmn-btn.btn-border:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-1 {
  padding: 7px 35px;
  border: 2px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-1.color-one {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-1:hover {
  background: var(--main-color-one);
  color: #fff;
}
@media only screen and (max-width: 575.98px) {
  .btn-wrapper .cmn-btn.btn-outline-1 {
    padding: 8px 23px;
    font-size: 15px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn.btn-outline-1 {
    padding: 4px 13px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn.btn-bg-white {
  background-color: #fff;
  color: var(--heading-color);
  border: 2px solid #fff;
}
.btn-wrapper .cmn-btn.btn-bg-white:hover {
  background-color: var(--main-color-one);
  border-color: #fff;
  color: #fff;
  border-radius: 30px;
}
.btn-wrapper .cmn-btn.btn-medium {
  padding: 7px 20px;
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn.btn-medium {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn.btn-small {
  padding: 5px 15px;
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn.btn-small {
    padding: 5px 12px;
    font-size: 14px;
  }
}

.center-text .flex-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}

.btn-see-more {
  font-weight: 600;
  color: var(--heading-colors);
  font-size: 16px;
}
.btn-see-more::after {
  content: "\f067";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 18px;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}
@media only screen and (max-width: 575.98px) {
  .back-to-top {
    height: 40px;
    width: 40px;
    font-size: 22px;
    line-height: 40px;
    bottom: 20px;
    right: 20px;
  }
}
.back-to-top.bg-color-two {
  background: var(--secondary-color);
}
.back-to-top.bg-color-three {
  background: var(--main-color-three);
}
.back-to-top.bg-color-four {
  background: var(--main-color-four);
}
.back-to-top.bg-color-five {
  background: var(--main-color-five);
}

/*-------------------------
    Section Title
-------------------------*/
.section-title.text-left {
  text-align: left;
}
.section-title.white-color {
  color: #fff;
}
.section-title.white-color .title {
  color: #fff;
}
.section-title.center-text {
  text-align: center;
  max-width: 850px;
  margin: auto;
}
.section-title.section-border-bottom {
  border-bottom: 1px solid rgba(221, 221, 221, 0.4);
  padding-bottom: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title.section-border-bottom {
    padding-bottom: 20px;
  }
}
.section-title-shapes {
  position: relative;
  height: 20px;
}
.section-title-shapes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-image: url(../img/section-shapes1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 18px;
  width: auto;
}
.section-title-line {
  position: relative;
  height: 20px;
}
.section-title-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-image: url(../img/section-shapes2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 18px;
  width: auto;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
  margin: -6px 0 0;
}

.section-title h1 {
  font-size: 42px;
}

.section-title h2 {
  font-size: 34px;
}


@media (min-width: 1400px) and (max-width: 1599.98px) {
  .section-title h1 {
    font-size: 45px;
  }
  .section-title h2 {
    font-size: 41px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title h1 {
    font-size: 42px;
  }
  .section-title h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title h1 {
    font-size: 36px;
  }
  .section-title h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 575.98px) {
  .section-title h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .section-title h2 {
    font-size: 24px;
  }
}


.section-title .section-para {
  font-size: 18px;
  line-height: 28px;
  margin-top: 20px;
}
@media only screen and (max-width: 480px) {
  .section-title .btn-wrapper .view-all {
    font-size: 15px;
  }
}

.section-title-three .title {
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title-three .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title-three .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title-three .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-title-three .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title-three .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title-three .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.section-title-three .title:hover::before {
  background-color: var(--main-color-one);
}
.section-title-three .title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -25px;
  height: 50px;
  width: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title-three .title::before {
    left: -10px;
    top: -10px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title-three .title::before {
    left: 5px;
    top: 0;
  }
}
.section-title-three .title::after {
  content: "";
  position: absolute;
  left: -45px;
  top: -25px;
  height: 30px;
  width: 30px;
  background-image: url(../img/section-shapes4.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title-three .title::after {
    left: -25px;
    top: -25px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title-three .title::after {
    left: -10px;
    top: -10px;
  }
}
.section-title-three .section-para {
  margin-top: 20px;
}

.section-title-btn .view-all {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.section-title-btn .view-all:hover {
  background-color: var(--light-color);
  color: #fff;
}


input[type="text"].form-control {
  height: auto;
  line-height: inherit;
  padding: 10px 20px 10px 40px;
  font-size: 15px;
  color: #192024;
  border-color: rgba(128, 137, 150, 0.2);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f0f3f5;
  border-bottom: 2px solid #e6e6e6;
}


/* Slider Custom Css */
.nav-style-one {
  position: relative;
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
}
.nav-style-one.nav-color-two .prev-icon,
.nav-style-one.nav-color-two .next-icon {
  background: var(--gray-color);
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  left: -70px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  z-index: 9;
  background: var(--gray-color);
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  visibility: visible;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: 0px;
  }
}
.nav-style-one .next-icon {
  left: auto;
  right: -70px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .next-icon {
    right: 0px;
  }
}

.append-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 5px;
}

.append-attraction,
.append-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.append-attraction.append-color-two .prev-icon:hover,
.append-attraction.append-color-two .next-icon:hover,
.append-history.append-color-two .prev-icon:hover,
.append-history.append-color-two .next-icon:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}
.append-attraction .prev-icon,
.append-attraction .next-icon,
.append-history .prev-icon,
.append-history .next-icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid var(--gray-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 22px;
  z-index: 9;
  color: var(--heading-color);
  background-color: var(--gray-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-attraction .prev-icon:hover,
.append-attraction .next-icon:hover,
.append-history .prev-icon:hover,
.append-history .next-icon:hover {
  border-color: var(--main-color-one);
  color: #fff;
  background-color: var(--main-color-one);
}
.append-attraction .prev-icon,
.append-history .prev-icon {
  right: 55px;
}

/* Dot Style */
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  right: 0px;
}
@media only screen and (max-width: 480px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 10px;
  }
}
.dot-style-one.dot-color-two .slick-dots li {
  background-color: #DDD;
}
.dot-style-one.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  padding: 10px 0 0;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 30px;
  border-radius: 10px;
}
.dot-style-one .slick-dots li button {
  border: 0;
  outline: none;
}

.slider-inner-margin .slick-slide {
  margin: 12px;
}
.slider-inner-margin .slick-list {
  margin: -12px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.slider-inner-padding .slick-slide {
  padding: 12px;
}
.slider-inner-padding .slick-list {
  padding: -12px;
}

/*---------------------------------------
    11. Faq
---------------------------------------*/
.faq-contents .faq-item {
  padding: 0;
  border: 1px solid var(--input-color);
  border-radius: 10px;
}
.faq-contents .faq-item.open {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  padding: 0px;
}
.faq-contents .faq-item.open .faq-title {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
}
.faq-contents .faq-item.open .faq-title::after {
  /* IE 9 */
  -webkit-transform: translateY(-50%) rotate(90deg);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%) rotate(90deg);
}
.faq-contents .faq-item.open .faq-panel .faq-para {
  color: #333;
}
.faq-contents .faq-item.active .faq-panel {
  display: block;
}
.faq-contents .faq-item:not(:first-child) {
  margin-top: 24px;
}
.faq-contents .faq-item .faq-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  padding: 20px;
  background: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: 300ms;
  transition: 300ms;
  background-color: #fff;
}
.faq-contents .faq-item .faq-title::after {
  content: "\f063";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 575.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .faq-contents .faq-item .faq-title {
    font-size: 18px;
  }
}
.faq-contents .faq-item .faq-panel {
  padding: 20px;
  display: none;
  border-top: 1px solid var(--input-color);
  background-color: #fff;
}
.faq-contents .faq-item .faq-panel .faq-para {
  font-size: 16px;
  line-height: 30px;
  color: var(--light-color);
}
@media only screen and (max-width: 767.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 14px;
  }
}

.faq-question-border {
  border: 1px solid var(--input-color);
  padding: 20px;
}
.faq-question-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--input-color);
}

.faq-question-form .single-input:not(:first-child) {
  margin-top: 20px;
}

/* Custom Form */
.single-flex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media only screen and (max-width: 480px) {
  .single-flex-input {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

input.datepicker {
  background-image: url(../img/calendar.gif);
  background-repeat: no-repeat;
  background-position: right;
}

.custom-form .single-input,
.custom-form .form-group {
  width: 100%;
}
.custom-form .single-input label,
.custom-form .form-group .label-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 14px;
  }
}
.custom-form .single-input .input-icon,
.custom-form .form-group .input-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.custom-form .single-input .iti,
.custom-form .form-group .iti {
  width: 100%;
}
.custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group select,
.custom-form .form-group .form-control {
  -moz-appearance: textfield;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 2px solid #e6e6e6 !important;
  background-color: unset;
  outline: none;
  color: var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.custom-form .single-input .form--control.input-padding-left,
.custom-form .single-input .form-control.input-padding-left,
.custom-form .form-group .form--control.input-padding-left,
.custom-form .form-group .form-control.input-padding-left {
  padding-left: 45px;
}
.custom-form .single-input .form--control#phone,
.custom-form .single-input .form-control#phone,
.custom-form .form-group .form--control#phone,
.custom-form .form-group .form-control#phone {
  width: 100%;
  padding-left: 50px;
}
.custom-form .single-input .form--control::-webkit-outer-spin-button, .custom-form .single-input .form--control::-webkit-inner-spin-button,
.custom-form .single-input .form-control::-webkit-outer-spin-button,
.custom-form .single-input .form-control::-webkit-inner-spin-button,
.custom-form .form-group .form--control::-webkit-outer-spin-button,
.custom-form .form-group .form--control::-webkit-inner-spin-button,
.custom-form .form-group .form-control::-webkit-outer-spin-button,
.custom-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.custom-form .single-input .form--control:focus,
.custom-form .single-input .form-control:focus,
.custom-form .form-group .form--control:focus,
.custom-form .form-group .form-control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 14px;
  }
}
.custom-form .single-input .form-message,
.custom-form .form-group .form-message {
  height: 100px;
  line-height: 28px;
  padding: 15px;
}
.custom-form .submit-btn {
  margin-top: 25px;
}

.submit-btn {
  background-color: #e7191f;
  border: 1px solid #e7191f !important;
  font-size: 17px;
    color: #fff;
    line-height: 40px;
    padding: 3px 12px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 3px;
    font-weight: 500;
}
.submit-btn:hover {
  background-color: unset;
  color: #244c84;
}

.checkbox-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}
.checkbox-inline .check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  margin-top: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox-inline .check-input::after {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.6) rotate(90deg);
  transform: scale(1.6) rotate(90deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.checkbox-inline .check-input:checked {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  background: var(--main-color-one);
}
.checkbox-inline .check-input:checked::after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.2) rotate(0deg);
  transform: scale(1.2) rotate(0deg);
}
.checkbox-inline .checkbox-label {
  cursor: pointer;
  text-align: left;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .checkbox-inline .checkbox-label {
    font-size: 15px;
  }
}
.checkbox-inline .checkbox-label a {
  color: var(--main-color-one);
  font-weight: 500;
}

/* Breadcrumb area */
.breadcrumb-area {
  position: relative;
  border-bottom: 1px solid var(--input-color);
  border-top: 1px solid var(--input-color);
  padding: 10px 0;
}


.breadcrumb-border {
  border-top: 2px solid rgba(221, 221, 221, 0.4);
}

.breadcrumb-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  border-radius: 8px;
}
.breadcrumb-contents-title {
  font-size: 24px;
  line-height: 32px;
  color: var(--heading-color);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .breadcrumb-contents-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.breadcrumb-contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -5px;
}
.breadcrumb-contents-list-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--paragraph-color);
  position: relative;
  -webkit-transition: 200ms;
  transition: 200ms;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .breadcrumb-contents-list-item {
    font-size: 14px;
  }
}
.breadcrumb-contents-list-item:hover {
  color: var(--main-color-one);
}
.breadcrumb-contents-list-item:not(:last-child) {
  padding-right: 20px;
}
@media only screen and (max-width: 480px) {
  .breadcrumb-contents-list-item:not(:last-child) {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .breadcrumb-contents-list-item:not(:last-child) {
    padding-right: 10px;
  }
}
.breadcrumb-contents-list-item:not(:last-child)::after {
  position: absolute;
  right: -8px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}
.breadcrumb-contents-list-item:not(:first-child) {
  padding-left: 20px;
}
@media only screen and (max-width: 480px) {
  .breadcrumb-contents-list-item:not(:first-child) {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .breadcrumb-contents-list-item:not(:first-child) {
    padding-left: 10px;
  }
}
/* Ui Range Slider */
.price-range-slider {
  padding: 0 10px;
}
.price-range-slider .ui-range-slider.noUi-target {
  position: relative;
  border-radius: 3px;
  height: 3px;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle {
  top: -11px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: var(--main-color-one);
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle.noUi-handle-upper::before {
  background-color: var(--main-color-one);
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect {
  background: var(--main-color-one);
}
.price-range-slider .ui-range-slider-footer {
  display: table;
  width: 100%;
  padding-top: 20px;
}
.price-range-slider .ui-range-slider-footer .ui-range-values {
  display: inline-block;
  color: var(--heading-color);
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-price-title {
  font-size: 18px;
  font-weight: 400;
  margin-right: 10px;
  color: var(--light-color);
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-min,
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-max {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--main-color-one);
}
.noUi-background {
  background: #DDDDDD;
}

[dir=rtl] .price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-origin {
  right: auto;
  left: 0;
}

[dir=rtl] .price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect {
  background: var(--main-color-one);
}

/* Pagination style */
.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.pagination-list-item-button {
  display: inline-block;
  font-size: 16px;
  color: var(--paragraph-color);
  border: 1px solid var(--input-color);
  background-color: var(--input-color);
  line-height: 1;
  padding: 9px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination-list-item-button:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.pagination-list-item:hover .pagination-list-item-link {
  background-color: var(--main-color-one);
  color: #fff;
}
.pagination-list-item.active .pagination-list-item-link {
  background-color: var(--main-color-one);
  color: #fff;
}
.pagination-list-item-link {
  display: inline-block;
  font-size: 16px;
  color: var(--paragraph-color);
  border: 1px solid #fff;
  background-color: #fff;
  line-height: 1;
  padding: 9px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Global Ratings */
@media only screen and (max-width: 375px) {
  .center-text .rating-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rating-wrap .ratings {
  position: relative;
  z-index: 0;
  width: 80px;
  height: 16px;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .rating-wrap .ratings {
    width: 75px;
  }
}
@media only screen and (max-width: 375px) {
  .rating-wrap .ratings {
    width: 70px;
  }
}
.rating-wrap .ratings span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 16px;
}
.rating-wrap .ratings span.hide-rating:after {
  color: var(--light-color);
}
.rating-wrap .ratings span.show-rating:after {
  color: #FABE50;
}
.rating-wrap .ratings span.show-rating {
  width: 88% !important;
}
.rating-wrap .ratings span:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  width: 100%;
  font-family: "Line Awesome Free";
  font-weight: 900;
}
.rating-wrap .total-ratings {
  margin-left: 5px;
}

/* Tabs Design */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs li {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  line-height: 28px;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}

/* Custom Radio Css */
.custom-radio-single {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.custom-radio-single.active label {
  font-weight: 600;
  color: var(--heading-color);
}
.custom-radio-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom-radio label {
  font-size: 16px;
  color: var(--paragraph-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 14px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.custom-radio input[type=radio] {
  border: 2px solid #DDD;
  background: #fff;
  clear: none;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 50%;
  position: relative;
  margin-right: 3px;
}
.custom-radio input[type=radio]:checked {
  border-color: var(--main-color-one);
}
.custom-radio input[type=radio]:checked::before {
  width: calc(100% - 9px);
  height: calc(100% - 9px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  border-radius: 50%;
  background-color: var(--main-color-one);
  margin: 0px 0px 0;
  padding: 0px;
  line-height: 1;
}

/* Popup Modal */
.popup-fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.6);
          transform: translate(-50%, -50%) scale(0.6);
  z-index: 9992;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.popup-fixed.popup-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.popup-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9991;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.popup-overlay.popup-active {
  visibility: visible;
  opacity: 1;
}

.popup-contents {
  max-width: 500px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 30px;
  margin: auto;
  border-radius: 10px;
}
.popup-contents-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--heading-color);
  margin: -4px 0 0;
}
.popup-contents-select {
  display: flow-root;
  margin-top: 25px;
}
.popup-contents-select-label {
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-weight: 500;
}
.popup-contents-btn {
  margin-top: 25px;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.mobile-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: block;
  }

  .desktop-logo {
    display: none !important;
  }
}
.navbar-padding {
  padding: 20px 0;
}

.navbar-area {
  position: relative;
  z-index: 95;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area {
    padding: 0;
  }
}
.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 99;
}
.navbar-area.navbar-border {
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .track-icon-list .single-icon .icon {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .track-icon-list .single-icon.hover-color-two:hover .icon:hover {
  color: var(--main-color-two);
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .login-account .accounts {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .login-account .accounts.hover-color-two:hover {
  color: var(--main-color-two);
}
.navbar-area.navbar-two {
  padding: 0;
}
.navbar-area.navbar-two .nav-container {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 0 0 20px 20px;
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--secondary-color);
  background: none;
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-bottom: 5px solid var(--secondary-color);
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.navbar-area .nav-container {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px 15px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container {
    padding: 20px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container {
    padding: 15px 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .logo-wrapper {
    height: 15px;
  }
}
.navbar-area .nav-container .logo-wrapper .logo img {
  max-width: 200px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 160px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 170px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.nav-margin-top {
  margin-top: 15px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.desktop-center {
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-family: var(--body-font);
  text-transform: capitalize;
  color: var(--heading-color);
  font-weight: 400;
  line-height: 32px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 14px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  padding: 10px 30px 10px 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 18px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 7px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 5px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  padding-right: 0;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
  padding: 10px 30px 10px 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 10px;
  }
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 992;
  border-bottom: 5px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 50px;
  -webkit-column-rule-style: solid;
     -moz-column-rule-style: solid;
          column-rule-style: solid;
  -webkit-column-rule-color: rgba(221, 221, 221, 0.3);
     -moz-column-rule-color: rgba(221, 221, 221, 0.3);
          column-rule-color: rgba(221, 221, 221, 0.3);
  -webkit-column-rule-width: 2px;
     -moz-column-rule-width: 2px;
          column-rule-width: 2px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two li {
  margin-bottom: -1px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: -1px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: -1px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
  border-top: 1px solid #e2e2e2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 30px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area.white-nav .navbar-right-btn a {
  color: #fff;
}
.navbar-area.navbar-two .navbar-right-btn a:hover {
  color: var(--secondary-color);
}
.navbar-area.navbar-two .btn-wrapper .cmn-btn.btn-bg-1 {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.navbar-area.navbar-two .btn-wrapper .cmn-btn.btn-bg-1:hover {
  background-color: unset;
  color: var(--secondary-color);
}

/* Navbar right Content */
.click-nav-right-icon {
  display: none;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .click-nav-right-icon {
    position: absolute;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 30px;
    color: rgba(0, 0, 0, 0.7);
    display: block;
  }
  .click-nav-right-icon:hover {
    color: var(--heading-color);
  }
  .click-nav-right-icon.white-color {
    color: #fff;
  }
  .click-nav-right-icon.white-color:hover {
    color: #fff;
  }
}

@media (min-width: 300px) and (max-width: 991.98px) {
  .show-nav-content {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 300ms;
    transition: 300ms;
    margin-top: -50px;
    margin-left: auto;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .show-nav-content.show {
    visibility: visible;
    opacity: 1;
    margin-top: 30px;
  }
}

.single-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.navbar-right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
}

.navbar-right-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.navbar-right-btn a:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}

.navbar-author {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar-author:hover .navbar-author-wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
}
.navbar-author-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  cursor: pointer;
}
.navbar-author-thumb {
  max-width: 100px;
}
.navbar-author-thumb img {
  border-radius: 50%;
}
.navbar-author-name {
  position: relative;
}
.navbar-author-name-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}
.navbar-author-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9998;
  max-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 10px #f3f3f3;
  box-shadow: 0 0 10px #f3f3f3;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transform: matrix(1, 0, -1, 1, 0, 0);
          transform: matrix(1, 0, -1, 1, 0, 0);
}
.navbar-author-wrapper-list-item {
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  color: var(--heading-color);
  border-bottom: 1px solid #f3f3f3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar-author-wrapper-list-item:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav {
    background-color: var(--heading-color);
  }
  .navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    background-color: #202020 !important;
  }
  .navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    border-color: rgba(255, 255, 255, 0.05) !important;
  }
  .navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: transparent;
    color: #fff;
  }
  .navbar-area.white-nav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  .navbar-area.white-nav .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area.white-nav .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.7);
  }
  .navbar-area.white-nav .navbar-toggler .navbar-toggler-icon {
    background: rgba(255, 255, 255, 0.7);
  }
  .navbar-area.white-nav .navbar-toggler .navbar-toggler-icon::before, .navbar-area.white-nav .navbar-toggler .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.7);
  }
  .navbar-area.white-nav .click-nav-right-icon {
    color: rgba(255, 255, 255, 0.7);
  }
  .navbar-area .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-box-shadow: none;
            box-shadow: none;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    border: 1px solid rgba(0, 0, 0, 0.7);
    outline: none;
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon {
    background: none;
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon {
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    width: 25px;
    height: 2px;
    margin: 10px -4px 10px;
    position: relative;
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon::before, .navbar-area .navbar-toggler .navbar-toggler-icon::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    background: rgba(0, 0, 0, 0.7);
    top: -7px;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon::after {
    top: auto;
    bottom: -7px;
  }
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 50px;
    padding: 20px 20px 30px !important;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 30px;
    background: var(--gray-color);
    -webkit-box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
    box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
    border-radius: 10px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 15px 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
    padding-top: 10px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 15px 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "\f107";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
}
@media only screen and (max-width: 575px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 160px;
  }
}
/*--------------------------------------------------------------
	04. Footer Style
--------------------------------------------------------------*/
.footer-wrapper {
  padding: 100px 0;
}

.footer-wrapper h5 {
  font-size: 26px;
  margin-bottom: 20px;
}

.footer-area {
  position: relative;
  z-index: 1;
}

.footer-area-one {
  padding-top: 150px;
}

.footer-padding {
  padding: 25px 0;
}

.footer-border-round {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-border-round::before {
  content: "";
  position: absolute;
  top: 200px;
  height: 100%;
  width: 130%;
  background-color: transparent;
  border-top: 2px solid rgba(221, 221, 221, 0.1);
  z-index: -1;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .footer-border-round::before {
    width: 150%;
  }
}
@media only screen and (max-width: 575.98px) {
  .footer-border-round::before {
    width: 180%;
  }
}
@media only screen and (max-width: 480px) {
  .footer-border-round::before {
    width: 220%;
  }
}
@media only screen and (max-width: 375px) {
  .footer-border-round::before {
    width: 240%;
  }
}
.footer-border-round.white-color {
  border-color: #DDD;
}

.footer-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
}
@media only screen and (max-width: 767.98px) {
  .footer-contents-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-contents-logo {
  max-width: 600px;
  margin: auto;
}
.footer-contents-logo-img {
  max-width: 200px;
  display: inline-block;
}
.footer-contents-logo-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin: 7px 0 0;
}

.footer-widget-title {
  font-size: 28px;
  line-height: 32px;
}
@media only screen and (max-width: 767.98px) {
  .footer-widget-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.footer-widget-nav-list {
  text-align: center;
}

.footer-widget-nav-list li {
  display: inline-block;
  margin-right: 10px;
}


.footer-widget-nav a {
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-widget-nav a:hover {
  text-decoration: underline;
}
.footer-widget-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-widget-social-list {
    gap: 12px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-widget-social-list {
    gap: 10px;
  }
}
.footer-widget-social-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media only screen and (max-width: 575.98px) {
  .footer-widget-social-list-link {
    font-size: 16px;
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-widget-social-list-link {
    height: 30px;
    width: 30px;
  }
}
.footer-widget-social-list-link:hover {
  color: #fff;
  background: var(--main-color-one);
}

.footer-navbar {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #244c84;
}

.copyright-area.copyright-border {
  border-top: 1px solid rgba(221, 221, 221, 0.2);
}
.copyright-area.copyright-border.white-color {
  border-color: rgba(221, 221, 221, 0.7);
}



.copyright-contents-single:hover .copyright-contents-single-icon {
  color: var(--main-color-one);
}

.copyright-contents-single-icon {
  font-size: 40px;
  color: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.copyright-contents-single-details-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  display: block;
  
}

footer .copyright-contents-single-details-title {
  color: #fff;
}

.copyright-contents-single-details-link {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

footer .copyright-contents-single-details-link {
  color: #fff;
}

.copyright-contents-single-details-link:hover {
  color: var(--main-color-one);
}
.copyright-contents-main {
  font-size: 16px;
  color: #fff;
  text-align: center;
}



@media only screen and (max-width: 767.98px) {
  .copyright-contents-main {
    text-align: center;
    margin-top: 10px;
  }
}
.copyright-contents-main a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.footer-area-two .footer-widget-contents-para {
  color: #fff;
  margin-top: 20px;
}
.footer-area-two .footer-widget-form-control {
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.001);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.001);
  padding-right: 130px;
}
.footer-area-two .footer-widget-form-control:focus {
  border: 1px solid rgba(var(--secondary-color-rgb), 0.8);
}
.footer-area-two .footer-widget-form button {
  background-color: var(--secondary-color);
}
.footer-area-two .footer-widget-form button:hover {
  background-color: rgba(var(--secondary-color-rgb), 0.7);
  color: #333;
}
.footer-area-two .footer-widget-para {
  color: #333;
}
.footer-area-two .footer-widget-nav-list-link {
  color: #fff;
}
.footer-area-two .footer-widget-nav-list-link:hover {
  color: var(--secondary-color);
}
.footer-area-two .footer-widget-social-list-link:hover {
  background-color: var(--secondary-color);
}
.footer-area-two .copyright-contents-single:hover .copyright-contents-single-icon {
  color: #fff;
  background-color: var(--secondary-color);
}

.copyright-contents-single-details {
  margin-bottom: 20px;
}

.copyright-contents-single-icon {
  float: left;
  margin-right: 20px;
  height: 50px;
  width: 50px;
  font-size: 30px;
  
  border-radius: 50%;
  position: relative;
}


.fi_kontaktbereich .copyright-contents-single-icon {
  background-color: #fff;
  color: #fff;
}

.copyright-contents-single-icon i {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
}

.footer-area-two .copyright-contents-single-details-link:hover {
  color: var(--secondary-color);
}



/* Banner  */

.banner-area {
  position: relative;
  z-index: 1;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-area .banner-label {
  position: absolute;
  width: 140px; 
  margin: 0px auto 0px auto; 
  border-radius: 50%;
  background-color: #bf0013;
  top: 5%;
  left: 10%;
} 

.banner-area .banner-label p {
  color: #fff;
  font-size: 14px;
  text-align: center; 
  font-weight: bold; 
  margin: auto; 
  padding: 30px 15px; 
}

.banner-buchungsanfrage-wrapper {
  position: relative;
}

.banner-area .banner-label-bf {
  position: absolute;
  width: 100px; 
  height: 100px; 
  margin: 0px auto 0px auto; 
  border-radius: 50px;
  background-color: var(--main-color-one);
  top: -35px;
  left: -15px;
  z-index: 999;
}

.banner-area .banner-label-bf p {
  color: #fff;
  font-size: 14px;
  text-align: center; 
  font-weight: bold; 
  margin: auto; 
  padding: 10px 10px; 
}

.banner-area:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  background-color: #244c84;
}

@media (max-width: 992px) {
  .banner-area .banner-label-bf {
    top: -50px;
    right: 0px;
  }
}

@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-area {
    padding-top: 80px;
  }
}
.banner-area-one {
  padding-top: 50px;
}

.banner-single {
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-single {
    padding-right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-single {
    padding-right: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-single {
    padding-right: 30px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-single {
    padding-right: 0px;
  }
}
.banner-single-one.percent-padding {
  padding-left: 33%;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-single-one.percent-padding {
    padding-left: 13%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-single-one.percent-padding {
    padding-left: 10%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-single-one.percent-padding {
    padding-left: 5%;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-single-one.percent-padding {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-single-one.percent-padding {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-single-one.percent-padding {
    padding-left: 10px;
  }
}
.banner-single-content {
  padding: 0px 0 100px 0;
  position: relative;
  z-index: 5;
}


.banner-single-content.text-white .banner-single-content-para {
  color: #fff;
}
.banner-single-content.text-white .banner-single-content-reviews-para {
  color: #fff;
}
.banner-single-content.text-white .banner-single-content-reviews-para span {
  color: #fff;
}
.banner-single-content-reviews {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.banner-single-content-reviews-icon {
  color: var(--secondary-color);
}
.banner-single-content-reviews-para {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: var(--paragraph-color);
}
.banner-single-content-reviews-para span {
  display: inline-block;
}

.banner-single-content-title h1,
.banner-single-content-title h2,
.banner-single-content-title h3 {
  font-size: 54px;
  line-height: 64px;
  margin: 0 0 30px 0;
  position: relative;
  color: #fff;
  font-weight: bold;
}

.banner-single-content-title p {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}


@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-single-content-title h1,
  .banner-single-content-title h2,
  .banner-single-content-title h3 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-single-content-title {
    font-size: 48px;
    line-height: 65px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-single-content-title {
    font-size: 42px;
    line-height: 55px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-single-content-title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-single-content-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-single-content-title {
    font-size: 26px;
  }
}
.banner-single-content-title:hover {
  color: var(--main-color-one);
}
.banner-single-content-title-shape {
  position: relative;
  z-index: 1;
}
.banner-single-content-title-shape::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/section-shapes2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-single-content-title-shape::before {
    top: 30px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-single-content-title-shape::before {
    top: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-single-content-title-shape::before {
    top: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-single-content-title-shape::before {
    top: 15px;
  }
}
.banner-single-content-title-shape.star-shape {
  position: relative;
  z-index: 2;
}
.banner-single-content-title-shape.star-shape::before {
  background-image: url(../img/banner/star-shape.svg);
  top: 20px;
  left: auto;
  right: -40%;
}
.banner-single-content-para {
  font-size: 16px;
  color: var(--light-color);
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 480px) {
  .banner-single-content-para {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-single-content-para {
    font-size: 15px;
  }
}

.banner-right-bg {
  height: 670px;
  width: 47%;
  text-align: right;
  margin-left: auto;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-right-bg {
    width: 100%;
    height: 500px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-right-bg {
    height: 400px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-right-bg {
    height: 300px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-right-bg {
    height: 260px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-right-bg {
    height: 220px;
  }
}

.banner-right-new {
  height: 670px;
  width: 180%;
}

/* Banner Two Css */
.banner-area-two {
  padding: 120px 0;
}


.banner-bg {
  background: var(--gradient-circle);
  background-size: cover;
}


.banner-area-flex .banner-single-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.banner-thumb-wrap {
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-area-thumb {
    max-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-area-thumb {
    max-width: 400px;
  }
}

.banner-thumb-shape img {
  position: absolute;
}
.banner-thumb-shape img:nth-child(1) {
  right: 0;
  top: 0;
}
.banner-thumb-shape img:nth-child(2) {
  right: -100px;
  bottom: 130px;
}
.banner-thumb-shape img:nth-child(3) {
  left: -50px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

/* Banner Three Css */
.banner-area-three {
  padding-top: 140px;
}
.banner-area-three .banner-area-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.banner-area-three .banner-single-content {
  text-align: center;
  padding: 0;
  max-width: 850px;
  margin: auto;
}

/* Custom scroll bar */
.dfddfdd {
  max-height: 400px;
  overflow-y: auto;
}

.dfddfdd {
  overflow-y: scroll;
  scrollbar-color: #244c84 transparent;
  scrollbar-width: 5px;
  -ms-overflow-style: none;
  -moz-appearance: none !important;
  scrollbar-width: thin;
}

.dfddfdd::-moz-scrollbar {
  width: 5px;
  border: none;
}

.dfddfdd::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border: none;
}

.dfddfdd::-webkit-scrollbar-track-piece {
  background-color: #C2D2E4;
}

.dfddfdd::-webkit-scrollbar-thumb:vertical {
  height: 30px;
  background-color: var(--main-color-one);
}

/* Location area Css */
.location-area {
  margin-top: -61px;
  z-index: 9;
  position: relative;
  
}

.location-area .location-area-header {
    background: #244c84;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.location-area .location-area-header h3 { 
  color: #fff;
}


.location-area .location-area-header h3 i { 
  font-size: 24px !important;
    margin-left: 5px;
    color: #fff;
}

.banner-location {
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  padding: 40px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.banner-location label {
  color: #333;
  margin-bottom: 10px;
}

.banner-location-one {
  width: 1140px;
  position: relative;
  z-index: 990;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-location-one {
    width: 900px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-location-one {
    width: 100%;
  }
}
.banner-location-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-location-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-location-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.banner-location-single {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-location-single {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-location-single {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-location-single {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-location-single {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-location-single:nth-last-of-type(1), .banner-location-single:nth-last-of-type(2) {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.banner-location-single-search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 28px;
  background-color: var(--main-color-one);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}
.banner-location-single-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.banner-location-single-icon {
  font-size: 28px;
}
.banner-location-single-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.banner-location-single-contents-dropdown {
  font-family: var(--heading-font);
  font-weight: 500;
}
.banner-location-single-contents-dropdown .js-select {
  font-weight: 500;
}
.banner-location-single-contents-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: -4px 0 0;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

/* Search Suggestions */
.search-suggestions-wrapper {
  position: relative;
  z-index: 98;
}
.search-suggestions-wrapper .search-click-icon {
  cursor: pointer;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
  width: 55px;
  color: #fff;
  background-color: var(--main-color-one);
  font-weight: 500;
  -webkit-transition: 300ms;
  transition: 300ms;
  border-radius: 5px;
}
.search-suggestions-wrapper .search-click-icon:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.8);
  color: #fff;
}

.search-show {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 400ms;
  transition: 400ms;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .search-show {
    right: 0px;
    max-width: 500px;
  }
}
@media only screen and (max-width: 767.98px) {
  .search-show {
    width: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .search-show {
    max-width: 450px;
  }
}
@media only screen and (max-width: 480px) {
  .search-show {
    max-width: 340px;
  }
}
@media only screen and (max-width: 375px) {
  .search-show {
    max-width: 270px;
  }
}
.search-show.open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.search-show-inner {
  position: relative;
}
.search-show-form {
  position: relative;
  z-index: 1;
}
.search-show-form .suggestions-icon-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0%;
  top: 0;
  font-size: 24px;
  background-color: rgba(221, 221, 221, 0.3);
  height: 100%;
  padding: 0 15px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.search-show-form .suggestions-icon-close:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.search-show-form .form--control {
  padding: 0 15px;
  padding-left: 50px;
  padding-right: 70px;
  font-size: 15px;
  height: 55px;
  width: 700px;
  color: var(--extra-light-color);
  border: 1px solid rgba(221, 221, 221, 0.5);
  -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.01);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.01);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.search-show-form .form--control:focus {
  -webkit-box-shadow: 0 0 30px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 30px rgba(var(--main-color-one-rgb), 0.1);
  border-color: rgba(var(--main-color-one-rgb), 0.3);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .search-show-form .form--control {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 767.98px) {
  .search-show-form .form--control {
    width: 100%;
  }
}
.search-show-form button {
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 20px;
  background: none;
  border: 0;
  outline: none;
  color: var(--light-color);
  bottom: 0;
}

.search-product {
  position: absolute;
  top: 100%;
  right: 0;
  width: 700px;
  background: #fff;
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.4);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.4);
  visibility: hidden;
  opacity: 0;
  height: 550px;
  overflow-y: hidden;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .search-product {
    height: 475px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .search-product {
    height: 475px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .search-product {
    height: 475px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product {
    height: 475px;
    padding: 30px 10px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .search-product {
    height: 485px;
  }
}
@media only screen and (max-width: 767.98px) {
  .search-product {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .search-product {
    padding: 30px 10px;
  }
}
.search-product.show {
  visibility: visible;
  opacity: 1;
}
.search-product .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-two) !important;
}
.search-product-title {
  font-size: 18px;
  width: 100%;
  background-color: rgba(221, 221, 221, 0.2);
  padding: 5px 10px;
}
.search-product-list {
  height: calc(100vh - 210px);
  overflow-y: scroll;
  padding: 0 10px;
}
.search-product-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.search-product-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 480px) {
  .search-product-list-link {
    display: block;
  }
}
.search-product-list-image {
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 5px;
  height: 100px;
  width: 100px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product-list-image {
    width: 80px;
    height: 100px;
    padding: 10px 0px;
  }
}
.search-product-list-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 480px) {
  .search-product-list-info-top {
    margin-top: 10px;
  }
}
.search-product-list-info-title {
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product-list-info-title {
    font-size: 17px;
  }
}
.search-product-list-info-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product-list-info-price {
    gap: 7px;
  }
}
.search-product-list-info-price-through {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.search-product-list-info-price-through .flash-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product-list-info-price-through .flash-price {
    font-size: 16px;
  }
}
.search-product-list-info-price-through .old-price {
  font-size: 14px;
  text-decoration: line-through;
}
.search-product-list-info-price .main-price {
  font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product-list-info-price .main-price {
    font-size: 17px;
  }
}
.search-product-list-info .stock-out {
  font-size: 16px;
  background: #ff0000;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search-product-list-info .stock-out {
    font-size: 15px;
    padding: 5px 5px;
  }
}

.search-suggestion-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 92;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 500ms;
  transition: 500ms;
}
.search-suggestion-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* Provide css */
.single-why {
  padding: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-why {
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-why {
    padding: 20px;
  }
}
.single-why:hover {
  border-color: var(--main-color-one);
}
.single-why-border {
  border: 2px solid var(--gray-color);
}
.single-why-icon img {
  max-width: 60px;
}
.single-why-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.single-why-contents-title {
  font-size: 20px;
  line-height: 28px;
  margin: -4px 0 0;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-why-contents-title:hover {
  color: var(--main-color-one);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-why-contents-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-why-contents-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .single-why-contents-title {
    font-size: 24px;
  }
}
.single-why-contents-para {
  font-size: 16px;
  line-height: 26px;
  color: var(--paragraph-color);
}

/* Why Two Css */
.single-why-two {
  padding: 20px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.single-why-two::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  height: 0%;
  width: 0%;
  z-index: -1;
  background-color: var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-why-two:hover {
  background-color: var(--main-color-one);
  border-color: var(--main-color-one);
  color: #fff;
}
.single-why-two:hover::before {
  background-color: var(--main-color-one);
  visibility: visible;
  opacity: 1;
  height: 100%;
  width: 100%;
}
.single-why-two:hover .single-why-two-icon {
  background-color: #fff;
  color: var(--main-color-one);
}
.single-why-two:hover .single-why-two-contents-title {
  color: #fff;
}
.single-why-two:hover .single-why-two-contents-para {
  color: #fff;
}
.single-why-two-border {
  border: 2px solid var(--gray-color);
}
.single-why-two-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
@media only screen and (max-width: 375px) {
  .single-why-two-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.single-why-two-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 24px;
  background-color: rgba(var(--main-color-one-rgb), 0.2);
  color: var(--main-color-one);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-why-two-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-why-two-contents-title {
  font-size: 16px;
  line-height: 28px;
  margin: -4px 0 0;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-why-two-contents-title:hover {
  color: var(--main-color-one);
}
.single-why-two-contents-para {
  font-size: 15px;
  line-height: 24px;
  color: var(--paragraph-color);
}

div[class*=col]:nth-child(4n+3) .single-why-two-icon {
  background-color: rgba(var(--secondary-color-rgb), 0.2);
  color: var(--secondary-color);
}
div[class*=col]:nth-child(4n+3) .single-why-two:hover {
  border-color: var(--secondary-color);
}
div[class*=col]:nth-child(4n+3) .single-why-two:hover::before {
  background-color: var(--secondary-color);
}
div[class*=col]:nth-child(4n+3) .single-why-two:hover .single-why-two-icon {
  background-color: #fff;
  color: var(--secondary-color);
}
div[class*=col]:nth-child(4n+3) .single-why-two:hover .single-why-two-contents-title {
  color: #fff;
}
div[class*=col]:nth-child(4n+3) .single-why-two:hover .single-why-two-contents-para {
  color: #fff;
}

div[class*=col]:nth-child(4n+4) .single-why-two::before {
  background-color: #019267;
}
div[class*=col]:nth-child(4n+4) .single-why-two-icon {
  background-color: rgba(1, 146, 103, 0.2);
  color: #019267;
}
div[class*=col]:nth-child(4n+4) .single-why-two:hover {
  border-color: #019267;
}
div[class*=col]:nth-child(4n+4) .single-why-two:hover .single-why-two-icon {
  background-color: #fff;
  color: #019267;
}
div[class*=col]:nth-child(4n+4) .single-why-two:hover .single-why-two-contents-title {
  color: #fff;
}
div[class*=col]:nth-child(4n+4) .single-why-two:hover .single-why-two-contents-para {
  color: #fff;
}

/* Attraction css */
.single-attraction-border {
  border: 2px solid rgba(221, 221, 221, 0.7);
}
.single-attraction:hover .single-attraction-thumb img {
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Chrome, Safari, Opera */
  transform: scale(1.1);
}
.single-attraction-thumb {
  overflow: hidden;
}
.single-attraction-thumb img {
  border-radius: 20px 20px 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-attraction-thumb img {
    width: 100%;
  }
}
.single-attraction-contents {
  border: 1px solid rgba(221, 221, 221, 0.7);
  padding: 20px;
  border-radius: 0 0 20px 20px;
}
.single-attraction-contents-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: -4px 0 0;
}
.single-attraction-contents-para {
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
  margin-top: 12px;
}

.single-attraction-two {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-attraction-two:hover .single-attraction-two-contents {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  bottom: 0;
}
.single-attraction-two-thumb img {
  border-radius: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-attraction-two-thumb img {
    width: 100%;
  }
}
.single-attraction-two-contents {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-color: var(--secondary-color) transparent;
  -ms-overflow-style: none;
  -moz-appearance: none !important;
  scrollbar-width: thin;
}
.single-attraction-two-contents::-webkit-scrollbar {
  width: 5px !important;
  height: 5px;
  border: none;
  border-radius: 10px;
}
.single-attraction-two-contents::-webkit-scrollbar-track {
  background-color: #C2D2E4;
  border-radius: 10px;
}
.single-attraction-two-contents::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}
.single-attraction-two-contents-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: -4px 0 0;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.single-attraction-two-contents-title:hover {
  color: var(--secondary-color);
}
.single-attraction-two-contents-para {
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Guest Css */
.guest-wrapper {
  position: relative;
  z-index: 2;
}
.guest-wrapper-shapes img {
  position: absolute;
  top: 0%;
  left: 0;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .guest-wrapper-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .guest-wrapper-images {
    gap: 10px;
  }
}
.guest-wrapper-images-single {
  position: absolute;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 50%;
  max-width: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .guest-wrapper-images-single {
    position: unset;
  }
}
.guest-wrapper-images-single.active {
  opacity: 1;
  -webkit-box-shadow: 0 0 30px rgba(var(--main-color-one-rgb), 0.3);
  box-shadow: 0 0 30px rgba(var(--main-color-one-rgb), 0.3);
  border: 4px solid #fff;
}
.guest-wrapper-images-single:nth-child(1) {
  left: 0;
  top: 0;
}
.guest-wrapper-images-single:nth-child(2) {
  right: 0;
  top: 0;
  max-width: 85px;
}
.guest-wrapper-images-single:nth-child(3) {
  left: 150px;
  top: 45%;
  max-width: 75px;
}
.guest-wrapper-images-single:nth-child(4) {
  right: 150px;
  top: 45%;
  max-width: 75px;
}
.guest-wrapper-images-single:nth-child(5) {
  left: 0;
  bottom: 0;
  max-width: 65px;
}
.guest-wrapper-images-single:nth-child(6) {
  right: 0;
  bottom: 0;
  max-width: 65px;
}
.guest-wrapper-images-single img {
  border-radius: 50%;
}

.tab-item {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-100%) scale(0);
          transform: translateY(-100%) scale(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 0;
}

.tab-area .tab-item.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%) scale(1);
          transform: translateY(0%) scale(1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
}

@-webkit-keyframes slideAnimation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideAnimation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.single-guest.center-text .single-guest-thumb {
  margin: auto;
}
.single-guest-thumb {
  max-width: 100px;
}
.single-guest-thumb img {
  border-radius: 50%;
}

.single-guest-two {
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-guest-two-border {
  border: 2px solid var(--gray-color);
}
.single-guest-two:hover {
  border-color: var(--secondary-color);
}
.single-guest-two-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.single-guest-two-thumb {
  max-width: 60px;
}
.single-guest-two-thumb img {
  border-radius: 50%;
}
.single-guest-two-contents-title {
  font-size: 18px;
  font-weight: 600;
}
.single-guest-two-contents-country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-top: 7px;
}
.single-guest-two-contents-country-name {
  font-size: 16px;
  line-height: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-guest-two-para {
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
}

/* Shots Gallery Css */
.grid-item:nth-child(1) .single-shots {
  height: 190px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(1) .single-shots {
    height: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(1) .single-shots {
    height: 135px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(1) .single-shots {
    height: 210px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(1) .single-shots {
    height: 235px;
  }
}
.grid-item:nth-child(2) .single-shots {
  height: 190px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(2) .single-shots {
    height: 163px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(2) .single-shots {
    height: 135px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(2) .single-shots {
    height: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(2) .single-shots {
    height: 113px;
  }
}
.grid-item:nth-child(3) .single-shots {
  height: 404px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(3) .single-shots {
    height: 345px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(3) .single-shots {
    height: 286px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(3) .single-shots {
    height: 210px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(3) .single-shots {
    height: 237px;
  }
}
.grid-item:nth-child(4) .single-shots {
  height: 230px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(4) .single-shots {
    height: 195px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(4) .single-shots {
    height: 160px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(4) .single-shots {
    height: 250px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(4) .single-shots {
    height: 286px;
  }
}
.grid-item:nth-child(5) .single-shots {
  height: 424px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(5) .single-shots {
    height: 360px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(5) .single-shots {
    height: 300px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(5) .single-shots {
    height: 220px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(5) .single-shots {
    height: 250px;
  }
}
.grid-item:nth-child(6) .single-shots {
  height: 424px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(6) .single-shots {
    height: 355px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(6) .single-shots {
    height: 295px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(6) .single-shots {
    height: 465px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(6) .single-shots {
    height: 530px;
  }
}
.grid-item:nth-child(7) .single-shots {
  height: 210px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(7) .single-shots {
    height: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(7) .single-shots {
    height: 150px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(7) .single-shots {
    height: 110px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(7) .single-shots {
    height: 124px;
  }
}
.grid-item:nth-child(8) .single-shots {
  height: 384px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .grid-item:nth-child(8) .single-shots {
    height: 325px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .grid-item:nth-child(8) .single-shots {
    height: 286px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .grid-item:nth-child(8) .single-shots {
    height: 420px;
  }
}
@media only screen and (max-width: 767.98px) {
  .grid-item:nth-child(8) .single-shots {
    height: 480px;
  }
}
.grid-item .single-shots {
  height: 190px;
  border-radius: 10px;
}
.grid-item .single-shots.bg-image {
  background-size: contain;
}
@media only screen and (max-width: 575.98px) {
  .grid-item .single-shots.bg-image {
    background-size: contain;
  }
}
.grid-item .single-shots img {
  border-radius: 10px;
}

.single-shots {
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.single-shots::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 0;
}
.single-shots:hover::before {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.single-shots:hover .single-shots-icon {
  visibility: visible;
  opacity: 1;
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%) rotateX(180deg);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%) rotateX(180deg);
}
.single-shots:hover .single-shots-contents {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  bottom: 0;
}
.single-shots-icon {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: var(--main-color-one);
  position: absolute;
  top: 50%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 91;
}
.single-shots-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.single-shots-contents {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-color: var(--main-color-one) transparent;
  -ms-overflow-style: none;
  -moz-appearance: none !important;
  scrollbar-width: thin;
}
.single-shots-contents::-webkit-scrollbar {
  width: 5px !important;
  height: 5px;
  border: none;
  border-radius: 10px;
}
.single-shots-contents::-webkit-scrollbar-track {
  background-color: #C2D2E4;
  border-radius: 10px;
}
.single-shots-contents::-webkit-scrollbar-thumb {
  background-color: var(--main-color-one);
  border-radius: 10px;
}
.single-shots-contents-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: -4px 0 0;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.single-shots-contents-title:hover {
  color: var(--main-color-one);
}
.single-shots-contents-para {
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Brand Logo Css */
.single-brand-thumb img {
  margin: auto;
}

/* Newsletter Css */
.newsletter-area {
  margin-bottom: -150px;
}

.newsletter-area .container.container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.newsletter-area .container.container-fluid .newsletter-wrapper {
  border-radius: 0;
}

.newsletter-area .container {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.newsletter-wrapper {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.newsletter-wrapper-padding {
  padding: 50px;
}
@media only screen and (max-width: 480px) {
  .newsletter-wrapper-padding {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .newsletter-wrapper-padding {
    padding: 30px 20px;
  }
}
.newsletter-wrapper-shapes img {
  position: absolute;
  z-index: -1;
}
.newsletter-wrapper-shapes img:nth-child(1) {
  left: 0;
  top: 0;
}
.newsletter-wrapper-shapes img:nth-child(2) {
  right: 0;
  top: 0;
}

.newsletter-bg {
  background-color: var(--main-color-one);
}

.newsletter-contents {
  max-width: 600px;
  margin: auto;
}
.newsletter-contents-title {
  font-size: 36px;
  line-height: 42px;
  color: #fff;
  font-weight: 500;
  margin: -7px 0 0;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-contents-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .newsletter-contents-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .newsletter-contents-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .newsletter-contents-title {
    font-size: 24px;
  }
}
.newsletter-contents-para {
  color: #fff;
}
.newsletter-contents-form .single-input {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.newsletter-contents-form .single-input .form--control {
  height: 55px;
  border: 1px solid rgba(221, 221, 221, 0.7);
  background-color: #fff;
  color: var(--light-color);
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px;
  width: 100%;
  padding-right: 100px;
  color: #333;
}
.newsletter-contents-form .single-input .form--control::-webkit-input-placeholder {
  color: var(--light-color);
}
.newsletter-contents-form .single-input .form--control::-moz-placeholder {
  color: var(--light-color);
}
.newsletter-contents-form .single-input .form--control:-ms-input-placeholder {
  color: var(--light-color);
}
.newsletter-contents-form .single-input .form--control::-ms-input-placeholder {
  color: var(--light-color);
}
.newsletter-contents-form .single-input .form--control::placeholder {
  color: var(--light-color);
}
.newsletter-contents-form .single-input .form--control:focus {
  -webkit-box-shadow: 0 0 10px rgba(var(--secondary-color-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--secondary-color-rgb), 0.1);
  border: rgba(var(--secondary-color-rgb), 0.3);
}
.newsletter-contents-form .single-input button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  border: 0;
  outline: none;
  padding: 5px 20px;
  background-color: var(--secondary-color);
  color: #fff;
}

/* Sign In Sign Up */
.login-padding {
  padding: 30px;
}
@media only screen and (max-width: 480px) {
  .login-padding {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .login-padding {
    padding: 20px 10px;
  }
}

.single-title {
  font-size: 28px;
  line-height: 36px;
  margin: -6px 0 0;
}

.single-para {
  font-size: 16px;
  line-height: 24px;
  margin: 5px 0 0;
  color: var(--paragraph-color);
}

.login-shadow {
  -webkit-box-shadow: 0 0 10px var(--input-color);
  box-shadow: 0 0 10px var(--input-color);
}

.login-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .login-wrapper-flex {
    gap: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .login-wrapper-flex {
    gap: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.login-wrapper-thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .login-wrapper-thumb {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.login-wrapper-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 550px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .login-wrapper-contents {
    max-width: 480px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .login-wrapper-contents {
    max-width: 480px;
  }
}
.input-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 480px) {
  .input-flex-item {
    display: block;
  }
}
.input-flex-item .single-input {
  width: 100%;
}
.input-flex-item .single-input:not(:first-child) {
  margin-left: 24px;
}
@media only screen and (max-width: 480px) {
  .input-flex-item .single-input:not(:first-child) {
    margin-left: 0;
  }
}
.input-flex-item .single-input .form--control {
  border: 1px solid rgba(221, 221, 221, 0.4);
}

.single-input {
  display: inline-block;
  width: 100%;
}
.single-input .form--control {
  border: 1px solid rgba(221, 221, 221, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 10px transparent;
          box-shadow: 0 0 10px transparent;
}
.single-input .form--control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
          box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
.single-input .form--message {
  padding: 15px 0 0 15px;
}

.label-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .label-title {
    font-size: 15px;
  }
}

.single-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.or-contents {
  text-align: center;
  position: relative;
  z-index: 2;
}
.or-contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: rgba(221, 221, 221, 0.4);
  width: 100%;
  height: 1px;
  z-index: -1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.or-contents-para {
  background: #fff;
  padding: 10px 30px;
  color: var(--light-color);
}

.login-others-single:not(:last-child) {
  margin-bottom: 20px;
}
.login-others-single-btn {
  padding: 13px 10px;
  display: inline-block;
  border: 1px solid rgba(221, 221, 221, 0.4);
  color: var(--heading-color);
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.login-others-single-btn:hover {
  border-color: var(--main-color-one);
  color: var(--heading-color);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.login-others-single-btn img {
  margin-right: 5px;
}

/* Toggle Password hide Show */
.single-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  bottom: 13px;
  right: 20px;
  cursor: pointer;
}

.hide-icon {
  display: none;
}

.toggle-password.show-pass .hide-icon {
  display: block;
}

.toggle-password.show-pass .show-icon {
  display: none;
}

/* History Css */
.history-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-history-year {
  position: relative;
  z-index: 2;
}
.single-history-year::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 15px;
  border-top: 2px dotted var(--light-color);
  z-index: -1;
}
.single-history-year-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  margin: -4px 0 20px;
  background-color: #fff;
  padding: 0 10px;
}
.single-history-thumb img {
  margin: auto;
}
.single-history-contents {
  margin-top: 15px;
}
.single-history-contents-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-history-contents-title:hover {
  color: var(--main-color-one);
}
.single-history-contents-para {
  font-size: 14px;
  line-height: 24px;
  color: var(--paragraph-color);
  margin-top: 5px;
}

/* Team Css */
.single-team-thumb {
  position: relative;
}
.single-team-thumb img {
  height: 100%;
  width: 100%;
  mask-image: url(../img/single-page/team-mask.png);
  -webkit-mask-image: url(../img/single-page/team-mask.png);
  mask-mode: alpha;
  -webkit-mask-mode: alpha;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.single-team-contents {
  margin-top: 20px;
}
.single-team-contents-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
/* Theme One Blog */
.single-blog {
  border-radius: 10px;
  overflow: hidden;
}
.single-blog:hover .single-blog-thumbs img {
  /* IE 9 */
  -webkit-transform: scaleY(1.2) rotate(5deg);
  /* Chrome, Safari, Opera */
  transform: scaleY(1.2) rotate(5deg);
}
.single-blog.blog-two .single-blog-thumbs-date {
  background-color: var(--secondary-color);
}
.single-blog.blog-two .single-blog-contents-tags-item i {
  color: var(--secondary-color);
}
.single-blog.blog-two .single-blog-contents-tags-item a:hover {
  color: var(--secondary-color);
}
.single-blog.blog-two .single-blog-contents-tags-item:not(:first-child)::before {
  background-color: var(--secondary-color);
}
.single-blog-thumbs {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-blog-thumbs img {
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-blog-thumbs-date {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 15px;
  border-radius: 5px;
}
.single-blog-thumbs-date a {
  display: block;
  text-align: center;
}
.single-blog-thumbs-date .date {
  border-bottom: 1px solid #fff;
  display: block;
}
.single-blog-contents-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-blog-contents-title {
    font-size: 22px;
    line-height: 28px;
  }
}
.single-blog-contents-title:hover {
  opacity: 0.8;
}
.single-blog-contents-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-blog-contents-tags-item {
  font-size: 16px;
  color: var(--light-color);
  position: relative;
}
.single-blog-contents-tags-item i {
  color: var(--main-color-one);
}
.single-blog-contents-tags-item a:hover {
  color: var(--main-color-one);
}
.single-blog-contents-tags-item:not(:last-child) {
  padding-right: 20px;
}
.single-blog-contents-tags-item:not(:first-child) {
  padding-left: 20px;
}
.single-blog-contents-tags-item:not(:first-child)::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: var(--main-color-one);
  border-radius: 50%;
  top: 50%;
  left: -5px;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.flex-blog-height {
  width: 580px;
  height: 420px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flex-blog-height {
    width: 400px;
    height: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flex-blog-height {
    width: 320px;
    height: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flex-blog-height {
    width: 250px;
    height: 290px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .flex-blog-height {
    width: 250px;
    height: 290px;
  }
}
@media only screen and (max-width: 375px) {
  .flex-blog-height {
    width: 100%;
  }
}

.flex-blog-height-two {
  width: 400px;
  height: 350px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flex-blog-height-two {
    width: 220px;
    height: 320px;
  }
}
@media only screen and (max-width: 480px) {
  .flex-blog-height-two {
    width: 100%;
  }
}

.single-flex-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flex-blog {
    gap: 15px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-flex-blog {
    gap: 15px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-flex-blog {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: block !important;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flex-blog.style-02 {
    gap: 20px;
  }
}
.single-flex-blog.style-02 .single-flex-blog-contents-title {
  font-size: 26px;
  line-height: 36px;
}
@media only screen and (max-width: 480px) {
  .single-flex-blog.style-02 .single-flex-blog-contents-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flex-blog.style-02 {
    display: block;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flex-blog.style-02 .single-flex-blog-thumbs {
    margin-bottom: 20px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flex-blog.style-02 .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-flex-blog-thumbs {
    margin-bottom: 20px;
    margin: 0 0 30px;
  }
}
.single-flex-blog-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-flex-blog-contents-dates {
  font-size: 16px;
  color: var(--extra-light-color);
  line-height: 28px;
}
.single-flex-blog-contents-title {
  font-size: 36px;
  line-height: 42px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flex-blog-contents-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-flex-blog-contents-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flex-blog-contents-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-flex-blog-contents-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flex-blog-contents-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 480px) {
  .single-flex-blog-contents-title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}

/* Blog Details area */
.single-blog-details-thumb img {
  width: 100%;
}
.single-blog-details-content {
  padding: 30px 0 55px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
.single-blog-details-content-title {
  font-size: 36px;
  line-height: 42px;
  font-weight: 400;
  margin: -6px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details-content-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details-content-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-blog-details-content-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-blog-details-content-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details-content-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog-details-content-title {
    font-size: 24px;
  }
}
.single-blog-details-content-para {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
}
.single-blog-details-content-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-blog-details-content-tags-item {
  font-size: 16px;
  color: var(--extra-light-color);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-blog-details-content-tags-item:not(:last-child) {
  padding-right: 20px;
}
.single-blog-details-content-tags-item:not(:first-child) {
  padding-left: 20px;
}
.single-blog-details-content-tags-item:not(:first-child)::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: -5px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color-one);
  border-radius: 50%;
}
.single-blog-details-content-tags-item a {
  position: relative;
  font-weight: 500;
  color: var(--light-color);
  -webkit-transition: 200ms;
  transition: 200ms;
}
.single-blog-details-content-tags-item a:hover {
  color: var(--main-color-one);
}
.single-blog-details-content-tags-item a:not(:last-child)::after {
  content: ",";
  margin: 0 5px;
}

blockquote {
  padding: 50px;
  position: relative;
  border-left: 5px solid var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  blockquote {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  blockquote {
    padding: 15px;
  }
}
blockquote .blockquote-contents-title {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin: -10px 0 0;
  color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  blockquote .blockquote-contents-title {
    font-size: 32px;
    line-height: 45px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  blockquote .blockquote-contents-title {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  blockquote .blockquote-contents-title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767.98px) {
  blockquote .blockquote-contents-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575.98px) {
  blockquote .blockquote-contents-title {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 480px) {
  blockquote .blockquote-contents-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  blockquote .blockquote-contents-title {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Blog Details Tag */
.blog-details-share-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .blog-details-share-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-details-share-content.right-align {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .blog-details-share-content.right-align {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-details-share-content-title {
  font-size: 24px;
  line-height: 28px;
  color: var(--heading-color);
  font-weight: 400;
  margin-top: 2px;
}
.blog-details-share-content .blog-details-share-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-details-share-content .blog-details-share-social-list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  height: 40px;
  width: 40px;
  font-size: 20px;
  background-color: #f2f2f2;
  color: var(--heading-color);
  -webkit-transition: 200ms;
  transition: 200ms;
}
.blog-details-share-content .blog-details-share-social-list-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.blog-details-share-content .blog-details-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-details-share-content .blog-details-tag-list-item {
  font-size: 16px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 10px 20px;
  color: var(--heading-color);
  border-radius: 3px;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.blog-details-share-content .blog-details-tag-list-item:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

/* Blog Details Comment area */
/* Comment Output */
.details-section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 50px;
  margin: -10px 0 0;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}
.details-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 70px;
  background-color: var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .details-section-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .details-section-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .details-section-title {
    font-size: 26px;
  }
}

.details-comment-content .single-commetns {
  width: 100%;
  margin-top: 30px;
}
.details-comment-content .single-commetns .comment-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--heading-color);
  display: block;
  margin-bottom: 15px;
}
.details-comment-content .single-commetns .form--control {
  height: 60px;
  border: 1px solid rgba(221, 221, 221, 0.4);
  outline: none;
  -webkit-box-shadow: 0 0 10px #fff;
  box-shadow: 0 0 10px #fff;
  font-size: 14px;
  line-height: 22px;
  color: var(--light-color);
  padding: 0 20px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.details-comment-content .single-commetns .form--control:focus {
  -webkit-box-shadow: 0 0 18px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 18px rgba(var(--main-color-one-rgb), 0.1);
  border-color: rgba(var(--main-color-one-rgb), 0.3);
}
.details-comment-content .single-commetns .form--message {
  padding: 20px 20px;
  height: 160px;
}

.comments-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 575.98px) {
  .comments-flex-item {
    display: block;
  }
}

.comment-list .comment-list {
  margin-left: 120px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .comment-list .comment-list {
    margin-left: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .comment-list .comment-list {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .comment-list {
    margin-left: 30px;
  }
}
.comment-list .blog-details-flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 0;
  gap: 30px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content {
    gap: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content {
    gap: 10px;
    padding: 30px 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .comment-list .blog-details-flex-content {
    display: block;
  }
}
.comment-list .blog-details-flex-content .blog-details-thumb {
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .comment-list .blog-details-flex-content .blog-details-thumb {
    width: 80px;
    margin-bottom: 15px;
  }
}
.comment-list .blog-details-flex-content .blog-details-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.comment-list .blog-details-flex-content .blog-details-content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.comment-list .blog-details-flex-content .blog-details-content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
@media only screen and (max-width: 375px) {
  .comment-list .blog-details-flex-content .blog-details-content-title {
    font-size: 18px;
  }
}
.comment-list .blog-details-flex-content .blog-details-content-para {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-color);
  margin-top: 10px;
  line-height: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 14px;
  }
}
.comment-list .blog-details-flex-content .blog-details-content-date {
  color: var(--extra-light-color);
  margin-top: 5px;
  display: block;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  background-color: var(--main-color-one);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid var(--main-color-one);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-one);
  background-color: unset;
}

/* Recent Post */
.blog-details-side-item:not(:first-child) {
  margin-top: 50px;
}
.blog-details-side-inner {
  margin-top: 25px;
}
.blog-details-side-title.open .title::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.blog-details-side-title .title {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  background: rgba(var(--main-color-one-rgb), 0.05);
  color: var(--heading-color);
  padding: 12px 20px;
  border-radius: 7px;
}
.blog-details-side-title .title.open::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.blog-details-side-title .title::after {
  content: "\f106";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  right: 20px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.recent-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .recent-list-item {
    gap: 15px;
  }
}
.recent-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.recent-list-thumb {
  height: auto;
  max-width: 120px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .recent-list-thumb {
    max-width: 110px;
  }
}
.recent-list-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recent-list-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.tag-list-item.active .tag-list-link {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.tag-list-link {
  border: 1px solid #eeeeee;
  font-size: 16px;
  color: var(--light-color);
  padding: 7px 20px;
  display: inline-block;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  white-space: nowrap;
  border-radius: 5px;
}
.tag-list-link:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

/* Contact Css */
.contact-thumb img {
  border-radius: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}

.contact-padding {
  padding: 30px;
}

.contact-wrapper {
  -webkit-box-shadow: 0 0 10px var(--input-color);
  box-shadow: 0 0 10px var(--input-color);
}

/* Shop Area */
.shop-area {
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-area .global-card.book-filter-padding {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .shop-area .global-card.book-filter-padding {
    padding: 10px;
  }
}

.shop-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-right {
    gap: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .shop-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 20px;
  }
}

.shop-contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-contents-wrapper {
    display: block;
  }
}
.shop-contents-wrapper .shop-sidebar-content {
  width: 330px;
  margin-right: 30px;
  position: sticky;
  top: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-contents-wrapper .shop-sidebar-content {
    width: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-contents-wrapper .shop-sidebar-content {
    width: 250px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-contents-wrapper .shop-sidebar-content {
    width: 375px;
    position: unset;
  }
}
.shop-contents-wrapper .shop-grid-contents {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-contents-wrapper .shop-grid-contents {
    max-height: 1410px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-contents-wrapper .shop-grid-contents {
    max-height: 1410px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

.single-shop-left {
  padding: 25px 25px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-shop-left {
    padding: 22px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
.single-shop-left-title.open .title::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.single-shop-left-title .title {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  line-height: 36px;
  margin: -4px 0 0;
}
.single-shop-left-title .title::after {
  content: "\f106";
  content: "\f106";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-shop-left-list .item-search {
  position: relative;
  margin: 15px 0;
}
.single-shop-left-list .item-search .form--control {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--input-color);
  background-color: unset;
  outline: none;
  color: var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  padding-right: 40px;
}
.single-shop-left-list .item-search .form--control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .single-shop-left-list .item-search .form--control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-left-list .item-search .form--control {
    font-size: 14px;
  }
}
.single-shop-left-list .item-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
}
.single-shop-left-list .more-amenities {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color-one);
  text-decoration: underline;
  margin-top: 15px;
  font-family: var(--heading-font);
}
.single-shop-left-list .item {
  font-size: 16px;
  line-height: 30px;
  position: relative;
  text-align: left;
  z-index: 2;
  padding-left: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-shop-left-list .item::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  border: 1px solid rgba(221, 221, 221, 0.4);
  left: 0;
  top: 11px;
  background: none;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-shop-left-list .item::before {
    top: 9px;
  }
}
.single-shop-left-list .item a {
  display: block;
  padding: 7px 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-shop-left-list .item a {
    padding: 5px 0;
  }
}
.single-shop-left-list .item.show > .submenu {
  display: block;
}
.single-shop-left-list .item.active::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f00c";
  background: var(--main-color-one);
  border-color: var(--main-color-one);
}
.single-shop-left-list .item.active > a {
  color: var(--light-color);
  font-weight: 500;
}
.single-shop-left-list .item:hover > a {
  color: var(--main-color-one);
}
.single-shop-left-list .item:hover::before {
  border-color: var(--main-color-one);
}
.single-shop-left-list .item.menu-item-has-children {
  padding-left: 0;
}
.single-shop-left-list .item.menu-item-has-children:hover::after {
  color: var(--main-color-one);
}
.single-shop-left-list .item.menu-item-has-children::before {
  display: none !important;
  border: 0;
}
.single-shop-left-list .item.menu-item-has-children > .submenu {
  padding-left: 20px;
}
.single-shop-left-list .item .submenu {
  display: none;
}
.single-shop-left-list .item .submenu .list {
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}
.single-shop-left-list .item .submenu .list::before {
  top: 6px;
  height: 18px;
  width: 18px;
  font-size: 12px;
}
.single-shop-left-list .item .submenu .list a {
  padding: 5px 0;
}
.single-shop-left-list .item.menu-item-has-children::after {
  content: "\f067";
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
  z-index: -1;
}
.single-shop-left-list .item.menu-item-has-children.open::after {
  content: "\f068";
}
.single-shop-left-list .item:last-child a {
  padding-bottom: 0;
}
.single-shop-left-filter-list {
  padding: 0;
}
.single-shop-left-filter-list .item {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 30px;
  margin-top: 10px;
  line-height: 30px;
}
.single-shop-left-filter-list .item.active::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f00c";
  background: var(--main-color-one);
  border-color: var(--main-color-one);
}
.single-shop-left-filter-list .item a {
  font-size: 16px;
  line-height: 26px;
  color: var(--secondary-color);
}
.single-shop-left-filter-list .item::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border: 1px solid rgba(221, 221, 221, 0.4);
  left: 0;
  top: 4px;
  background: none;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.shop-icon {
  display: none;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-icon {
    display: block;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-icon-sidebar {
    font-size: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    z-index: 95;
    color: #fff;
    margin-bottom: 20px;
  }
}

@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-close-content {
    z-index: 1;
    position: absolute;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99;
    background: #fff;
    max-width: 375px;
    display: block;
    padding: 20px;
    transition: all 0.5s;
  }
  .shop-close-content.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
}
@media only screen and (min-width: 300px) and (max-width: 991.98px) and (max-width: 480px) {
  .shop-close-content {
    max-width: 320px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 991.98px) and (max-width: 375px) {
  .shop-close-content {
    max-width: 270px;
  }
}
.shop-close-content-icon {
  display: none;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-close-content-icon {
    display: block;
    position: absolute;
    right: -40px;
    top: 0;
    font-size: 24px;
    color: #fff;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}


@media (min-width: 300px) and (max-width: 991.98px) {
  .responsive-overlay {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .responsive-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 99;
    left: 0;
  }
}

/* Hotel List View Css */
.grid-list-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.grid-list-contents-para {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}

.grid-list-view {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.grid-list-view-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
.grid-list-view-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 24px !important;
  background-color: #fff;
  color: var(--light-color);
}
.grid-list-view-icons.active {
  background-color: rgba(var(--main-color-one-rgb), 0.2);
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}

.hotel-view {
  overflow: hidden;
}
.hotel-view:hover .hotel-view-list-thumb::before, .hotel-view:hover .hotel-view-list-thumb::after {
  visibility: visible;
  opacity: 1;
  left: 100%;
}
.hotel-view:hover .hotel-view-list-thumb::after {
  left: auto;
  right: 100%;
}
.hotel-view-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  .hotel-view-flex {
    display: -ms-grid;
    display: grid;
  }
}
.hotel-view-list-thumb {
  height: 326px;
  width: 300px;
  background-size: contain;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hotel-view-list-thumb {
    background-size: cover;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hotel-view-list-thumb {
    width: 250px;
    height: 435px;
    background-size: cover;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .hotel-view-list-thumb {
    width: 250px;
    height: 360px;
    background-size: cover;
  }
}
@media only screen and (max-width: 767.98px) {
  .hotel-view-list-thumb {
    background-size: contain;
    margin: 0px auto 0;
    width: 100%;
    height: 561px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hotel-view-list-thumb {
    height: 497px;
  }
}
@media only screen and (max-width: 480px) {
  .hotel-view-list-thumb {
    min-height: 250px;
    height: 382px;
  }
}
@media only screen and (max-width: 375px) {
  .hotel-view-list-thumb {
    min-height: 250px;
    height: 322px;
  }
}
.hotel-view-list-thumb:hover {
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Chrome, Safari, Opera */
  transform: scale(1.2);
}
.hotel-view-list-thumb::before, .hotel-view-list-thumb::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50px;
  left: -100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.hotel-view-list-thumb::after {
  left: auto;
  right: -100%;
}
.hotel-view-grid-thumb {
  height: 215px;
  width: 100%;
  background-size: contain;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hotel-view-grid-thumb {
    height: 213px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hotel-view-grid-thumb {
    height: 178px;
    background-size: cover;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hotel-view-grid-thumb {
    height: 148px;
    background-size: cover;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .hotel-view-grid-thumb {
    height: 157px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hotel-view-grid-thumb {
    height: 240px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hotel-view-grid-thumb {
    height: 257px;
    background-size: cover;
  }
}
@media only screen and (max-width: 480px) {
  .hotel-view-grid-thumb {
    height: 200px;
    background-size: cover;
  }
}
@media only screen and (max-width: 375px) {
  .hotel-view-grid-thumb {
    height: 170px;
    background-size: cover;
  }
}
.hotel-view-thumb {
  overflow: hidden;
}
.hotel-view-thumb:hover img {
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Chrome, Safari, Opera */
  transform: scale(1.1);
}
.hotel-view-thumb img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.hotel-view-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hotel-view-contents-header {
  padding: 25px 20px 20px;
}
.hotel-view-contents-review {
  background-color: rgba(var(--secondary-color-rgb), 0.1);
  padding: 5px 15px;
  border-radius: 5px;
  color: var(--secondary-color);
}
.hotel-view-contents-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 10px;
}
.hotel-view-contents-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
}
.hotel-view-contents-location-icon {
  font-size: 20px;
  display: inline-block;
}
.hotel-view-contents-location-para {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hotel-view-contents-middle {
  padding: 10px 20px;
  border-top: 1px solid var(--input-color);
  border-bottom: 1px solid var(--input-color);
}
.hotel-view-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hotel-view-contents-flex {
    gap: 5px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .hotel-view-contents-flex {
    gap: 5px 15px;
  }
}
.hotel-view-contents-icon {
  font-size: 20px;
  color: var(--light-color);
}
.hotel-view-contents-icon-title {
  font-size: 15px;
  line-height: 28px;
}
.hotel-view-contents-icon-more {
  color: var(--main-color-one);
  color: var(--main-color-one);
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hotel-view-contents-icon-more:hover {
  color: var(--main-color-one);
}
.hotel-view-contents-bottom {
  padding: 15px 20px 25px;
}
.hotel-view-contents-bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hotel-view-contents-bottom-title {
  color: var(--main-color-one);
  font-size: 24px;
  font-weight: 600;
}
.hotel-view-contents-bottom-title sub {
  font-size: 20px;
  font-weight: 500;
}
.hotel-view-contents-bottom-para {
  font-size: 16px;
  margin-top: 10px;
}

/* Hotel Details Css */
.details-contents {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.details-contents-main-thumb {
  height: 356px;
  background-size: contain;
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .details-contents-main-thumb {
    height: 305px;
    background-size: cover;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .details-contents-main-thumb {
    height: 217px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .details-contents-main-thumb {
    height: 286px;
    background-size: cover;
  }
}
@media only screen and (max-width: 575.98px) {
  .details-contents-main-thumb {
    height: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .details-contents-main-thumb {
    height: 200px;
  }
}
@media only screen and (max-width: 375px) {
  .details-contents-main-thumb {
    height: 170px;
  }
}
.details-contents-header {
  padding: 20px 20px 0;
}
.details-contents-header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}
.details-contents-header-thumb {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.details-contents-header-thumb:hover img {
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Chrome, Safari, Opera */
  transform: scale(1.1);
}
.details-contents-header-thumb:hover .more-photos {
  visibility: visible;
  opacity: 1;
  bottom: 10px;
  right: 10px;
}
.details-contents-header-thumb img {
  border-radius: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.details-contents-header-thumb .more-photos {
  position: absolute;
  bottom: -100px;
  right: -100px;
  background-color: var(--main-color-one);
  color: #fff;
  padding: 7px 20px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* details tab */
.details-contents-tab .tab-content-item {
  padding: 20px;
}

.details-tab-border {
  border-bottom: 1px solid var(--input-color);
}
.details-tab li {
  position: relative;
  margin-left: 20px;
  padding-bottom: 15px;
  font-weight: 600;
  color: var(--paragraph-color);
}
.details-tab li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--main-color-one);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.details-tab li.active::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.details-tab li + li {
  margin-left: 0;
}
.details-tab li:not(:last-child) {
  margin-right: 20px;
}

.review-tab-contents-author-name {
  font-size: 20px;
  font-weight: 600;
}
.review-tab-contents-author-para {
  font-size: 16px;
  line-height: 24px;
}
.review-tab-contents-single:not(:first-child) {
  padding-top: 20px;
}
.review-tab-contents-single:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--input-color);
}

/* hotel Details Sidebar Css */
.hotel-details-widget {
  border-radius: 10px;
  overflow: hidden;
}


.hotel-details-widget-padding {
  padding: 30px;
}
.hotel-details-widget-padding button {
  margin-top: 20px;
  width: 100%;
}
.hotel-details-widget:not(:last-child) {
  margin-bottom: 25px;
}
.hotel-details-widget .hotel-view-grid-thumb {
  height: 195px;
}

.hotel-details-widget-padding .preis_wrapper,
.hotel-details-widget-padding .dauer_wrapper {
  margin-top: 20px;
}


.details-sidebar-offer {
  background-color: #42C2FF;
  padding: 50px 30px;
  position: relative;
}
.details-sidebar-offer-shapes {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: -1;
}




/* Error Css */
.error-wrapper-thumb img {
  max-width: 700px;
  margin-inline: auto;
}

.error-contents-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  margin: -4px 0 0;
}

.btn.btn-success {
  background: var(--main-color-one);
    color: #fff;
    border: 2px solid var(--main-color-one);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--body-font);
    display: inline-block;
    border-radius: 5px!important;
    text-align: center;
    cursor: pointer;
    line-height: 34px;
    padding: 5px 15px;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

