/*------------------------------------------------------------------

version 1.2

[Table of contents]
1. Global CSS
        1.1 Global Header Logo/Menu CSS	
2. Blog Page CSS
3. General Page CSS
4. About Page CSS
5. Single Post CSS
6. Archive Page CSS
7. Search Page CSS
8. Portfolio (Home) Page CSS
        8.1 Portfolio Single Post CSS
9. Gallery Page CSS
        9.1 Gallery Single Post CSS
10. Contact Page CSS
11. Footer CSS
12. Responsive CSS
-------------------------------------------------------------------*/

/* ===================================
    1. Global CSS
====================================== */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 35px;
  color: #000;
  background-color: #fff;
}

body a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s linear;
  font-family: "Poppins", sans-serif;
}

body a:hover {
  color: unset;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 0 16px;
  color: #484848;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 14px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 735px) {
  h2 {
    font-size: 21px;
  }

  h3 {
    font-size: 18px;
  }
}

::selection {
  background-color: #fae3b5;
}

.body-wrapper {
  margin: 30px;
  background-color: #fff;
  position: relative;
}

.doc-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #fff;
}

.animate {
  opacity: 0;
  transition: 0.3s ease-in;
  -ms-transform: translate(0px, 70px);
  -webkit-transform: translate(0px, 70px);
  transform: translate(0px, 70px);
}

.animate.show-it {
  opacity: 1;
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.wait-03s {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.content-1140 {
  width: 1140px;
}

.content-970 {
  width: 970px;
}

.content-945 {
  width: 945px;
}

.content-750 {
  width: 750px;
}

.content-1140 img,
.content-970 img,
.content-945 img,
.content-750 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

ul li,
p {
  font-family: "Poppins", sans-serif;
}

/* ===================================
    1.1 Global Header Logo/Menu CSS
====================================== */

.header-holder {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* Ensures it's above the video */
  background: unset;
  /* Optional: Adds a semi-transparent background */
  padding: 20px 0;
  /* Adjust spacing */
  /* width: 1140px;     
    transition: margin-top 0.7s ease; */
}

.header-holder.down {
  margin-top: 70px;
}

/* header for other than homepage */
.header-holder-other {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* Ensures it's above the video */
  background: unset;
  /* Optional: Adds a semi-transparent background */
  padding: 20px 0;
  /* Adjust spacing */
  /* width: 1140px;     
    transition: margin-top 0.7s ease; */
}

.header-holder-other.down {
  margin-top: 70px;
}

.site-logo {
  padding: 0;
}

.header-logo {
  padding: 0 0;
}

.header-logo img {
  width: 15%;
  /*max-width: 150px;  Adjust logo size as needed */
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.header-logo img:hover {
  opacity: 0.8;
}

.toggle-holder {
  width: 20px;
  height: 21px;
  top: 50%;
  left: 60px;
  z-index: 1;
}

#toggle:hover {
  cursor: pointer;
}

#toggle div {
  height: 3px;
  margin-bottom: 6px;
  background-color: #000;
}

#toggle .second-menu-line {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

#toggle:hover .second-menu-line {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#toggle .third-menu-line {
  margin-bottom: 0;
}

.menu-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: transparent;
  /* Keeps it overlaying */
  padding: 20px 0;

  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #777d71;
  top: 0;
  left: 0;
  z-index: 99;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.7s ease;
  cursor: url(../images/close.png), auto;
}

.menu-wraper.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.menu-wraper.center-relative::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.menu-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #fff;
  position: relative;
  width: 1270px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  margin-top: 140px;
  transition: opacity 0.7s ease, margin-top 0.7s ease;
}

.menu-holder.show {
  opacity: 1;
  margin-top: 70px;
  transition-delay: 0.3s;
}

.menu-left-part {
  float: left;
  cursor: auto;
  width: 50%;
}

.menu-left-part:after {
  content: "";
  position: absolute;
  display: block;
  border-right: 1px solid #fff;
  height: 110%;
  left: 50%;
  left: calc(50% - 1px);
  top: 0;
}

.menu-left-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: right;
  padding-right: 100px;
  font-size: 25px;
  line-height: 60px;
  padding-top: 50px;
}

.menu-left-text a {
  color: #fff;
  border-bottom: 2px solid;
  display: inline-block;
}

.menu-right-part {
  float: right;
  width: 50%;
}

#header-main-menu {
  font-weight: 300;
  text-align: left;
  padding-left: 100px;
  margin-top: 60px;
  display: inline-block;
  cursor: auto;
}

.main-menu.sm-clean {
  background-color: transparent;
}

.main-menu.sm-clean a {
  font-size: 24px;
  line-height: 24px;
  color: #fff;
}

.main-menu.sm-clean .sub-menu a,
.main-menu.sm-clean .children a {
  font-size: 18px;
  line-height: 18px;
  border-left: 0;
}

.sm-clean li a.current,
.sm-clean .current_page_item a {
  color: #d7b065;
}

.main-menu.sm-clean a:hover {
  color: #d7b065;
}

#header-main-menu .search-form {
  max-width: 350px;
}

.widget_search .search-field,
#header-main-menu .search-field {
  font-family: "Roboto", serif;
  max-width: 350px;
  width: 90%;
  color: #fff;
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  text-align: left;
  padding-top: 8px;
  transition: border 0.4s ease;
  -webkit-appearance: none;
}

.widget_search .search-field {
  text-align: center;
}

.widget_search .search-field::-ms-clear,
#header-main-menu .search-field::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.widget_search .search-field::-ms-reveal,
#header-main-menu .search-field::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.widget_search .search-field::-webkit-search-decoration,
#header-main-menu .search-field::-webkit-search-decoration,
.widget_search .search-field::-webkit-search-cancel-button,
#header-main-menu .search-field::-webkit-search-cancel-button,
.widget_search .search-field::-webkit-search-results-button,
#header-main-menu .search-field::-webkit-search-results-button,
.widget_search .search-field::-webkit-search-results-decoration,
#header-main-menu .search-field::-webkit-search-results-decoration {
  display: none;
}

.widget_search .search-field:focus,
#header-main-menu .search-field:focus {
  border-bottom: 2px solid #fff;
}

.widget_search .search-field::-webkit-input-placeholder,
#header-main-menu .search-field::-webkit-input-placeholder {
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  opacity: 1;
  text-align: left;
}

.widget_search .search-field::-webkit-input-placeholder {
  text-align: center;
}

.widget_search .search-field::-moz-placeholder,
#header-main-menu .search-field::-moz-placeholder {
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  opacity: 1;
  text-align: left;
}

.widget_search .search-field::-moz-placeholder {
  text-align: center;
}

.widget_search .search-field:-ms-input-placeholder,
#header-main-menu .search-field:-ms-input-placeholder {
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  opacity: 1;
  text-align: left;
}

.widget_search .search-field:-ms-input-placeholder {
  text-align: center;
}

.widget_search .search-field:-moz-placeholder,
#header-main-menu .search-field:-moz-placeholder {
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  opacity: 1;
  text-align: left;
}

.widget_search .search-field:-moz-placeholder {
  text-align: center;
}

.menu-portfolio-category {
  padding-left: 100px;
  padding-top: 50px;
  cursor: auto;
  max-width: 100%;
}

.portfolio-category a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 10px;
  color: #fff;
  letter-spacing: 2px;
  padding-left: 2px;
  text-transform: uppercase;
  margin-right: 20px;
  display: inline-block;
}

.portfolio-category a:last-child {
  margin-right: 0;
}

.slick-dots li button:before {
  background-color: #d5d5d5;
  opacity: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.slick-dots li:hover button:before {
  background-color: #d7b065;
  opacity: 0.3;
}

.slick-dots li.slick-active button:before {
  background-color: #d7b065;
}

/* ===================================
    2. Blog Page CSS
====================================== */

.blog-item-holder {
  margin: 100px 0;
  text-align: center;
}

.blog-item-holder:first-of-type {
  margin-top: 0;
}

.blog-item-holder .post-thumbnail {
  width: 555px;
  max-width: 45%;
  overflow: hidden;
  line-height: 0;
}

.blog-item-holder .post-thumbnail img {
  transition: opacity 0.3s ease;
}

.blog-item-holder .post-thumbnail img:hover {
  opacity: 0.8;
}

.blog-item-holder.has-post-thumbnail:nth-of-type(2n + 1) .post-thumbnail {
  float: left;
  text-align: right;
  margin-right: 80px;
}

.blog-item-holder.has-post-thumbnail:nth-of-type(2n + 1) .entry-holder {
  float: left;
}

.blog-item-holder.has-post-thumbnail:nth-of-type(2n) .post-thumbnail {
  float: right;
  text-align: left;
  margin-left: 80px;
}

.blog-item-holder.has-post-thumbnail:nth-of-type(2n) .entry-holder {
  float: right;
}

.blog-item-holder.has-post-thumbnail .entry-holder {
  width: 440px;
  max-width: 45%;
  text-align: left;
}

.post-num {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 100%;
  margin-top: -30px;
}

.post-num span {
  letter-spacing: -25px;
}

.post-num .separator {
  color: #eaeaea;
  vertical-align: -20px;
}

.post-num .total-posts {
  color: #eaeaea;
  vertical-align: -40px;
  margin-left: -10px;
}

.entry-info {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 22px;
  text-transform: uppercase;
  padding-top: 40px;
  padding-bottom: 50px;
}

.entry-info ul {
  padding: 0;
  margin: 0;
}

.entry-info-left {
  display: inline-block;
  max-width: 180px;
  padding-right: 40px;
  text-align: left;
}

.entry-info-right {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

.entry-info .cat-links li {
  display: inline-block;
}

.entry-info .cat-links li:after {
  content: ",";
  padding-right: 5px;
}

.entry-info .cat-links li:last-child:after {
  display: none;
}

.blog-item-holder h2.entry-title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 44px;
}

.read-more-arrow img {
  padding-top: 20px;
  transition: transform 0.3s ease;
  width: 50px;
  height: 20px;
}

.blog-item-holder h2.entry-title:hover+.read-more-arrow img,
.read-more-arrow img:hover {
  transform: translate(10px);
}

.load-more-posts {
  margin-top: 50px;
  transition: margin 0.3s linear;
}

.more-posts-index {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-bottom: 2px solid;
  padding: 10px 30px;
  color: #000 !important;
}

.more-posts-index:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-left: 2px solid;
  border-right: 2px solid;
  -webkit-transition: all ease 0.3s 0.15s;
  transition: all ease 0.3s 0.15s;
}

.more-posts-index:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-top: 2px solid;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.more-posts-index:hover:before {
  height: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.more-posts-index:hover:after {
  left: 0;
  width: 100%;
  -webkit-transition: all ease 0.3s 0.15s;
  transition: all ease 0.3s 0.15s;
}

/* ===================================
    3. General Page CSS
====================================== */

.page .site-content {
  color: #4b4b4b;
}

.page h1.entry-title {
  font-family: "Poppins", sans-serif;
  font-size: 47px;
  line-height: 60px;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 35px;
  text-align: center;
}

.page h1.entry-title a {
  position: relative;
  display: inline-block;
  color: #d7b065;
}

.page h1.entry-title a:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: #d7b065;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}

.page h1.entry-title a:hover:after {
  width: 100%;
}

.page-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 1px;
}

.header-signature {
  font-family: "Mr De Haviland", cursive;
  font-size: 420px;
  color: #f7f7f7;
  text-align: center;
  margin-top: -230px;
  position: relative;
  line-height: 100%;
  z-index: -1;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
    4. About Page CSS
====================================== */

.info-code {
  padding: 10px 0;
}

.info-code-title {
  font-size: 15px;
  line-height: 15px;
  font-style: italic;
  color: #b4b4b4;
  font-weight: 400;
}

.info-code-content {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 2px;
}

.testimonial-slider-holder {
  font-size: 24px;
  line-height: 43px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.testimonial-slider-holder .slick-prev {
  left: -65px;
}

.testimonial-slider-holder .slick-next {
  right: -65px;
}

.progress_bar {
  margin-bottom: 35px;
}

.progress_bar_field_holder {
  height: 2px;
  position: relative;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
  background-color: #d5d5d5;
  max-width: 500px;
}

.progress_bar_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 15px;
}

.progress_bar_field_perecent {
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}

/* ===================================
    5. Single Post CSS
====================================== */

.single .site-content {
  color: #4b4b4b;
}

.single h1.entry-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 40px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.single .entry-info {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #000;
}

.single-post .entry-content {
  font-weight: 300;
}

.single .post-num {
  text-align: center;
  margin-bottom: 100px;
}

.single .post-num .current-post {
  color: #000;
}

.tags-holder {
  font-family: "Montserrat", sans-serif;
  margin: 50px 0;
  display: inline-block;
}

.tags-holder a {
  color: #b1b1b1;
  border: 1px solid;
  text-decoration: none;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 13px;
}

.tags-holder a:last-of-type {
  margin-right: 0;
}

.single .wp-link-pages span {
  color: #191919;
}

.single .wp-link-pages {
  color: #d7b065;
}

.single .nav-links {
  margin-top: 70px;
  margin-bottom: 70px;
  position: relative;
}

.single .nav-links:before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  left: 50%;
  margin-left: -2px;
}

.single .nav-previous {
  display: inline-block;
  max-width: 290px;
  text-align: right;
  float: left;
}

.single .nav-next {
  display: inline-block;
  float: right;
  max-width: 290px;
  text-align: left;
}

.nav-links p {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
}

.nav-previous a,
.nav-next a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
}

.single-post .nav-previous a {
  float: right;
}

.single-post .nav-next a {
  float: left;
}

/* ===================================
    6. Archive Page CSS
====================================== */

.archive-title h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-bottom: 2px solid;
  display: inline-block;
}

.page-pagination-holder {
  margin: 70px 0;
}

.page-numbers.current {
  border: 1px solid #d7b065;
  color: #d7b065;
  padding: 7px 12px;
  border-radius: 90%;
}

.page-numbers {
  margin: 0 5px;
  font-size: 16px;
}

.page-numbers:hover {
  color: #d7b065;
}

/* ===================================
    7. Search Page CSS
====================================== */

.search .search-title h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-bottom: 2px solid;
  display: inline-block;
}

.search .blog-item-holder {
  padding: 0;
  margin: 0;
}

.search .blog-item-holder .entry-title a {
  font-size: 35px;
  line-height: 40px;
}

/* ===================================
    8. Portfolio (Home) Page CSS
====================================== */

.header-content {
  padding-bottom: 100px;
  text-align: center;
}

.grid-item.quote-item {
  font-family: "Poppins", sans-serif;
  width: 400px;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
}

.grid-item.quote-item:before {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  display: block;
  content: "\201C";
  font-size: 470px;
  line-height: 100%;
  color: #fae3b5;
  margin-bottom: -346px;
  margin-top: -50px;
}

.grid {
  width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  text-align: center;
  list-style: none;
  max-width: 100%;
  padding-left: 0;
}

.item-wrapper {
  display: inline-block;
  position: relative;
}

.grid-item {
  display: block;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  margin: 3%;
  max-width: 43%;
}

.grid-item.hidden {
  display: none;
}

.grid-item.loaded {
  display: inline-block !important;
}

.grid-item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}

.portfolio-text-holder {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  font-size: 20px;
  background-color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.portfolio-text-holder .portfolio-text {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  line-height: 100%;
}

.portfolio-text-holder .portfolio-text:hover+p+.portfolio-arrow a img {
  transform: translate(10px);
}

.portfolio-text-holder .portfolio-category {
  padding-top: 20px;
}

.portfolio-text-holder .portfolio-category a {
  font-weight: 700;
  color: #d7b065;
  margin-right: 0;
}

.portfolio-text-holder .portfolio-category a:after {
  content: "/";
  padding: 0 5px;
}

.portfolio-text-holder .portfolio-category a:last-child:after {
  display: none;
}

.grid-item:hover .portfolio-text-holder {
  opacity: 1;
}

.grid-item .portfolio-arrow img {
  margin-left: auto;
  margin-right: auto;
  width: 35px;
  height: 20px;
  margin-top: 30px;
  transition: transform 0.3s ease;
}

.grid-item .portfolio-arrow img:hover {
  transform: translate(10px);
}

.more-posts-portfolio {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #897650;
  padding: 10px 30px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #fff !important;
  border-radius: 15px;
}

.more-posts-portfolio:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-left: 2px solid;
  border-right: 2px solid;
  -webkit-transition: all ease 0.3s 0.15s;
  transition: all ease 0.3s 0.15s;
}

.more-posts-portfolio:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-top: 2px solid;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.more-posts-portfolio:hover:before {
  height: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.more-posts-portfolio:hover:after {
  left: 0;
  width: 100%;
  -webkit-transition: all ease 0.3s 0.15s;
  transition: all ease 0.3s 0.15s;
}

.load-more-portfolio {
  margin-top: 50px;
}

/* ===================================
    8.1 Portfolio Single Post CSS
====================================== */

.single-portfolio .top-content {
  text-align: center;
  padding-bottom: 40px;
}

.single-portfolio .top-content .slick-dotted.slick-slider {
  margin-bottom: 75px;
}

.single-portfolio .portfolio-item-info {
  width: 180px;
  float: left;
}

.single-portfolio .content-wrapper {
  width: 580px;
  float: right;
}

.portfolio-nav {
  padding-top: 30px;
}

.single-portfolio .nav-previous {
  float: left;
}

.single-portfolio .nav-previous a img {
  transition: transform 0.3s ease;
  width: 35px;
  height: 20px;
}

.single-portfolio .nav-previous a img:hover {
  transform: translate(-10px);
}

.single-portfolio .nav-next {
  float: left;
  margin-left: 30px;
}

.single-portfolio .nav-next a img {
  transition: transform 0.3s ease;
  width: 35px;
  height: 20px;
}

.single-portfolio .nav-next a img:hover {
  transform: translate(10px);
}

/* ===================================
    9. Gallery Page CSS
====================================== */

.thumb-header {
  margin-top: -120px;
}

.carousel-slider .slick-slide {
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.carousel-slider .slick-slide.slick-center {
  opacity: 1;
}

.carousel-slider .slick-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.carousel-slider .slick-slide .item-text {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  font-size: 20px;
  background-color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.carousel-slider .slick-slide.slick-center:hover .item-text {
  opacity: 1;
}

.carousel-slider .slick-slide .item-text a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 45px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  transition: opacity 0.4s ease, color 0.2s linear;
  display: block;
  pointer-events: none;
  cursor: default;
}

.carousel-slider .slick-slide.slick-center .item-text a {
  pointer-events: auto;
  cursor: auto;
}

/* ===================================
    9.1 Gallery Single Post CSS
====================================== */

.single-gallery h1.entry-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  max-width: 580px;
}

.single-gallery .entry-content {
  padding-top: 50px;
}

/* ===================================
    10. Contact Page CSS
====================================== */

.big-text {
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  line-height: 50px;
  color: #000;
  padding: 0;
  font-weight: 400;
}

.contact-form {
  max-width: 100%;
  width: 770px;
  margin: 0 auto;
  font-size: 22px;
  color: #4b4b4b;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  color: #4b4b4b;
  border: 0;
  border-bottom: 1px solid;
  height: 28px;
  font-size: 18px;
  line-height: 25px;
  font-family: "Roboto", serif;
  font-weight: 300;
  width: 100%;
  padding: 0;
  margin-bottom: 40px;
}

.contact-form input[type="text"]::-webkit-input-placeholder,
.contact-form input[type="email"]::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  font-family: "Roboto", serif;
  color: #4b4b4b;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
}

.contact-form input[type="text"]::-moz-placeholder,
.contact-form input[type="email"]::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  font-family: "Roboto", serif;
  color: #4b4b4b;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  opacity: 1;
}

.contact-form input[type="text"]:-ms-input-placeholder,
.contact-form input[type="email"]:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  font-family: "Roboto", serif;
  color: #4b4b4b;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
}

.contact-form input[type="text"]:-moz-placeholder,
.contact-form input[type="email"]:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
  font-family: "Roboto", serif;
  color: #4b4b4b;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  opacity: 1;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  padding-bottom: 5px;
}

.contact-form textarea {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding-top: 8px;
  overflow: hidden;
}

.contact-form textarea:focus {
  height: 150px;
  overflow: auto;
}

.contact-form input[name="your-name"] {
  margin-top: 0;
  padding-top: 0;
}

.contact-submit-holder {
  position: relative;
  margin-bottom: 25px;
}

.contact-form input[type="submit"] {
  text-align: center;
  padding: 10px 0px;
  cursor: pointer;
  background: transparent;
  font-family: "Roboto", serif;
  font-weight: 300;
  width: 100%;
  font-size: 18px;
  border: 0;
  border-bottom: 2px solid;
  position: relative;
  z-index: 3;
}

.contact-submit-holder:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-top: 2px solid;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.contact-submit-holder:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-left: 2px solid;
  border-right: 2px solid;
  -webkit-transition: all ease 0.3s 0.15s;
  transition: all ease 0.3s 0.15s;
}

.contact-submit-holder:hover:before {
  height: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.contact-submit-holder:hover:after {
  left: 0;
  width: 100%;
  -webkit-transition: all ease 0.3s 0.15s;
  transition: all ease 0.3s 0.15s;
}

/* ===================================
    11. Footer CSS
====================================== */

footer ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.footer {
  font-size: 16px;
  line-height: 36px;
  margin-top: 0;
  padding-bottom: 20px;
  clear: both;
  color: #fff;
  text-align: center;
  background: #777d71;
}

.footer a {
  color: #fff;
}

.footer-logo {
  padding-bottom: 20px;
  position: relative;
  width: 250px;
  height: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

.footer-logo:after {
  content: "";
  display: none;
  height: 77px;
  width: 2px;
  background: #1a1a1a;
  position: absolute;
  left: 50%;
  margin-left: -2px;
  margin-top: 20px;
}

.footer-text {
  padding-bottom: 50px;
}

.footer-first-line {
  font-family: "Poppins", sans-serif;
  font-size: 47px;
  line-height: 60px;
}

.footer-first-line a {
  border-bottom: 2px solid;
}

.footer-second-line {
  font-weight: 400;
  padding-top: 20px;
}

.footer-second-line a {
  border-bottom: 1px solid;
}

.our-position-holder {
  font-family: "Poppins", sans-serif;
  position: relative;
  font-size: 24px;
  padding: 35px 0;
}

.our-position-holder:before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background: #1a1a1a;
  position: absolute;
  left: 50%;
  margin-left: -2px;
  bottom: 0;
}

.our-position-holder:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  background: #1a1a1a;
  bottom: 0;
}

.our-position-left {
  display: inline-block;
  padding-right: 50px;
}

.our-position-right {
  display: inline-block;
}

ul#footer-sidebar li.widget {
  width: 30.6%;
  margin-right: 4%;
  float: left;
}

ul#footer-sidebar li.widget:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 50px;
}

ul#footer-sidebar:after {
  clear: both;
  content: "";
  display: block;
}

ul#footer-sidebar {
  padding: 30px 0;
  font-size: 14px;
  line-height: 28px;
  border-bottom: 2px solid #1a1a1a;
}

h4.widgettitle {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.tagcloud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  /* Adjust spacing between tags */
}

.tagcloud a,
.tagcloud span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #edebe6;
  text-decoration: none;
}

.tagcloud a:hover {
  text-decoration: underline;
}

.tagcloud span {
  color: #edebe6;
}

.tagcloud a {
  font-size: 14px !important;
  display: block;
}


.widget_recent_entries a {
  border-bottom: 1px solid;
}

.widget_recent_entries span.post-date {
  display: block;
  font-size: 12px;
  line-height: 100%;
  margin-bottom: 20px;
}

ul.copyright-holder {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 10px;
}

ul.copyright-holder:after {
  content: "";
  display: block;
  clear: both;
}

li.copyright-footer {
  float: none;
  text-align: center;
  width: 100%;
  font-size: 16px;
}

li.social-footer {
  float: right;
  text-align: right;
  width: 50%;
}

li.social-footer a {
  padding-left: 20px;
}

li.social-footer a:first-child {
  padding-left: 0;
}

/* video-banner */
/* ========================================= */
/*          Banner  CSS        */
/* ======================================== */
.overflow-hidden {
  overflow: hidden !important;
}

.banner {
  padding: 0;
}

.banner .slider {
  height: 630px;
  position: relative;
}

.banner .slider .swiper-container {
  width: 100%;
  height: 100%;
}

.banner .slider .swiper-container .swiper-slide {
  overflow: hidden;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: top;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-link {
  display: block; /* Make the anchor fill the slide */
  width: 100%;
  height: 100%;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit text color */
}
.banner .slider .swiper-container .swiper-slide .slide-inner {
  position: relative; /* Important for absolute positioning of children */
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevent potential overflow */
}

.banner .slider .swiper-container .swiper-slide .slide-inner .slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain, based on your preference */
}

.banner .slider .swiper-container .swiper-slide .slide-inner .slide-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Or contain, based on your preference */
  display: block; /* Ensure the image fills the container */
}

.banner .slider .swiper-container .swiper-slide .slide-inner .dot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Add your dot overlay styles here */
  background-color: rgba(0, 0, 0, 0.3); /* Example overlay */
}
.banner .slider .swiper-container .swiper-slide .slide-inner .slide-ripples canvas {
  z-index: 1 !important;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content {
  top: 54%;
  transform: translateY(-51%);
  left: 9%;
  width: 55%;
  position: absolute;
  z-index: 999;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content>h1 {
  font-size: 58px;
  letter-spacing: 1px;
  font-weight: 700;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1 {
  top: 52%;
  transform: translateY(-52%);
  left: 0;
  width: 60%;
  right: 0;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  z-index: 3;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1>h1 {
  font-size: 58px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 {
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  width: 50%;
  right: 8%;
  text-align: right;
  position: absolute;
  z-index: 1;
}

.banner .slider .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 40px;
}

.banner .slider .swiper-pagination-custom .swiper-pagination-fraction {
  bottom: 40px;
}

.banner .slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}

.banner .slider .swiper-pagination-bullet-active {
  background: #f56961;
}

.banner .slider .swiper-container-vertical>.swiper-pagination-bullets {
  right: 50px;
}

.banner .slider .swiper-button-prev {
  left: 30px;
}

.banner .slider .swiper-button-next {
  right: 30px;
}

.banner .slider .swiper-button-next:after,
.banner .slider .swiper-button-prev:after {
  background: #ffab9d9c;
  font-size: 21px;
  padding: 10px 20px;
  color: #fff;
  transition: all ease-in-out 0.5s;
  border-radius: 10px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

.banner .slider .swiper-button-next:hover:after,
.banner .slider .swiper-button-prev:hover:after {
  background: #162241;
  color: #fff;
  transition: all ease-in-out 0.5s;
}

.banner .slider.slider2 {
  height: 400px !important;
}

.banner .video-slider {
  height: auto;
}

.banner .video-slider .swiper-content {
  top: 56%;
  transform: translateY(-50%);
  left: 0;
  width: 60%;
  right: 0;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  z-index: 3;
}

.banner .video-slider .swiper-content>h1 {
  font-size: 58px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.banner .video-slider .video-banner video {
  width: 100%;
  display: block;
}

.banner .banner-main {
  height: 630px;
  position: relative;
}

.banner .banner-main .banner-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
}

.banner .banner-main .banner-content {
  top: 54%;
  transform: translateY(-51%);
  right: 0;
  left: 0;
  width: 55%;
  position: absolute;
  z-index: 9;
  text-align: center;
  margin: 0 auto;
}

.banner .banner-main .banner-content>h1 {
  font-size: 58px;
  letter-spacing: 1px;
  font-weight: 700;
}

.banner .banner-main .banner-content p {
  font-size: 21px;
}

.banner .slider.slider3 .swiper-container .swiper-slide .slide-inner .swiper-content1 {
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  transition: all ease 0.5s;
}

.banner .slider.slider3 .swiper-container .swiper-slide .slide-inner .swiper-content1>h1 {
  font-size: 44px;
}

.banner .slider.slider3 .swiper-container .swiper-slide.swiper-slide-active .slide-inner .swiper-content1 {
  opacity: 1;
  transition: opacity 1s ease;
}

@media (max-width: 1100px) {

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 {
    width: 75% !important;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content h1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1 h1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 h1 {
    font-size: 48px;
  }

  .banner .video-slider .swiper-content {
    width: 85% !important;
  }

  .banner .video-slider .swiper-content h1 {
    font-size: 50px;
  }

  .banner .banner-main .banner-content {
    width: 90%;
  }

  .banner .slider.slider3 .swiper-container .swiper-slide .slide-inner .swiper-content1>h1 {
    font-size: 36px;
  }
}

@media (max-width: 811px) {
  .banner {
    padding: 0 !important;
  }
}
/* Media queries for mobile responsiveness (adjust breakpoints as needed) */
@media (max-width: 768px) {
  .banner .slider .swiper-container .swiper-slide .slide-inner .slide-video,
  .banner .slider .swiper-container .swiper-slide .slide-inner .slide-image-img {
      /* Adjust object-fit or other styles for mobile */
      object-fit: cover; /* Or contain, based on your preference */
  }
}
@media (max-width: 767px) {
  .banner .slider .swiper-container .swiper-slide .slide-inner::before {
    display: none;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 {
    width: 90% !important;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content span,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1 span,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 span {
    padding-left: 0;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content span:before,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1 span:before,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 span:before {
    display: none;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content>h1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1>h1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2>h1 {
    font-size: 45px;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1 {
    width: 100% !important;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 {
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2>h1 {
    font-size: 45px;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 .swi-image {
    display: none;
  }

  .banner .slider .swiper-button-prev,
  .banner .slider .swiper-button-next {
    display: none;
  }

  .banner .video-slider .swiper-content {
    width: 90% !important;
  }

  .banner .video-slider .swiper-content h1 {
    font-size: 45px;
  }

  .banner .banner-main .banner-content>h1 {
    font-size: 45px;
  }
}

@media (max-width: 639px) {

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1 {
    width: 96% !important;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content>h1,
  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content1>h1 {
    font-size: 32px;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2 {
    text-align: center;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .swiper-content2>h1 {
    font-size: 32px;
  }

  .banner .slider .swiper-container-vertical>.swiper-pagination-bullets {
    display: none;
  }

  .banner .video-slider .swiper-content {
    display: none;
  }

  .banner .banner-main .banner-content>h1 {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .banner .slider {
    height: auto;
  }

  .banner .slider .swiper-container .swiper-slide .slide-inner .slide-video,
  .banner .slider .swiper-container .swiper-slide .slide-inner .slide-image-img {
    object-fit: contain;
    height: auto;
  }
  .slide-link {
    height: auto;
  }
}
/* ========================================= */

/*         About Us CSS        */

/* ======================================== */
section {
  padding: 4.75rem 0 5rem;
  position: relative;
}

img {
  max-width: 100%;
}

/* ========================================= */

/*          Top Destinations  CSS        */

/* ======================================== */
.top-destination h2 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
}

.top-destination {
  &:before {
    content: "";
    background: $themecolor;
    position: absolute;
    top: 0;
    left: 0;
    height: 73%;
    width: 100%;
  }

  .desti-image {
    position: relative;
    overflow: hidden;
    border: 6px solid #ffffff1a;

    img {
      width: 100%;
    }

    .desti-content h4 {
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-style: normal;
      text-transform: capitalize;
    }

    .desti-content {
      position: relative;
      left: 0px;
      /* bottom: 10px; */
      /* transition: all ease-in-out 0.5s;
		    background: linear-gradient(to top, #171717, transparent); */
      width: 100%;
      padding: 0;

      .trend-price {
        p.price {
          display: inline-block;
          border: 1px dashed #fb7f6a;
          padding: 5px 10px;

          span {
            font-weight: 700;
            font-size: 18px;
            color: #fff !important;
          }
        }
      }
    }

    .hotel-content {
      right: 0;
      bottom: 10px;
      width: 94%;
      margin: 0 auto;
    }

    .desti-overlay {
      opacity: 0;
      background: #777d71ad;
      position: absolute;
      bottom: 100%;
      left: 0;
      transition: all ease-in-out 0.5s;
      z-index: 1;
      height: 100%;
      width: 100%;

      a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
      }
    }

    &:hover .desti-overlay {
      opacity: 1;
      bottom: 0;
      transition: all ease-in-out 0.5s;
    }

    &:hover .desti-content {
      /* opacity:0; 
            transition: all ease-in-out 0.5s; */
    }
  }
}

@media (max-width: 767px) {
  .top-destination {

    .col-lg-4,
    .col-lg-3 {
      padding: 0 15px !important;
      margin-bottom: 1rem;
    }
  }
}

/* ========================================= */
/*          Discount CSS        */
/* ======================================== */
.overlay,
.dot-overlay,
.color-overlay,
.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31.44, 31.44, 31.44, 0.73);
  transition: all ease-in-out 0.5s;
  opacity: 0.7;
}

.discount-action .call-banner {
  background: url(../images/IMG_7167.PNG) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: unset;
  position: relative;
  overflow: hidden;
  padding: 135px 0px 135px 0px;
  height: 600px;
}

@media (max-width: 320px) {
  .discount-action .call-banner {
    padding: 45px 0px 45px 0px;
  }
}

.discount-action .call-banner .call-banner-inner {
  padding: 100px 30px 100px;
  position: relative;
  z-index: 1;
}

.discount-action .call-banner h2 {
  font-size: 42px;
  /* font-weight: 700;  */
}

@media (max-width: 767px) {
  .discount-action .call-banner .col-lg-6 {
    padding: 0 15px !important;
  }

  .discount-action .call-banner h2 {
    font-size: 36px;
  }
}

@media (max-width: 639px) {
  .discount-action .call-banner h2 {
    font-size: 28px;
  }
}

/* ========================================= */
/*          Trending  CSS        */
/* ======================================== */
.trending h2 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
}

.trending .trend-item {
  position: relative;
  transition: all ease-in-out 0.5s;
}

.trending .trend-item:hover {
  transition: all ease-in-out 0.5s;
}

.trending .trend-item:hover .trend-image:before {
  height: 100%;
  transition: all ease-in-out 0.5s;
}

.trending .trend-item:hover img {
  /* transform: rotate(5deg) scale(1.2);
        transition: all ease-in-out 0.5s;  */
}

.trending .trend-item:hover img.d-author {
  transform: none;
  transition: all ease-in-out 0.5s;
}

.trending .trend-item .trend-image {
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
}

.trending .trend-item .trend-image:before {
  content: "";
  /* background: linear-gradient(to top, #bda68c, transparent); */
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all ease-in-out 0.5s;
}

.trending .trend-item .trend-image img {
  transition: all ease-in-out 0.5s;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.trending .trend-item .trend-image .trend-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.trending .trend-item .trend-image .trend-tags ul {
  display: inline-block;
}

.trending .trend-item .trend-image .trend-tags ul li {
  display: inline-block;
  padding: 7px 15px;
  background: #fff;
  margin: 0;
  font-weight: 700;
}

.trending .trend-item .trend-image .trend-tags [class^="flaticon-"]:before {
  color: #fff;
  font-size: 24px;
  float: right;
  height: 45px;
  width: 45px;
  background: #0a0a0a4a;
  border-radius: 50%;
  text-align: center;
  line-height: 2;
  transition: all 0.5s;
}

.trending .trend-item .trend-image .trend-tags [class^="flaticon-"]:hover:before {
  background: #f56961;
  transition: all 0.5s;
}

.trending .trend-item .trend-image .deal-item {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.trending .trend-item .trend-image .deal-item span {
  padding: 8px 10px;
  display: block;
}

.trending .trend-item .trend-content-main {
  position: relative;
  z-index: 1;
  /* box-shadow: 0 0 15px #cccccc57; */
  transition: all ease-in-out 0.3s;
  background: unset;
  z-index: 9;
}

.trending .trend-item .trend-content-main .trend-content {
  padding: 0;
}

.trend-content h5 {
  font-size: 14px;
  /* Adjust font size */
  color: #000;
  /* Adjust color */
  margin-bottom: -1em;
  /* Add space between subheading and heading */
  text-transform: uppercase;
  /* Optional: Make the subheading uppercase */
  letter-spacing: 0.4em;
}

.trend-content h4 a {}

.trending .trend-item .trend-content-main .trend-content .category_list h4 {
  word-wrap: break-word;
  text-align: left;
  margin-top: 1em;
  padding: 0;
}

.trending .trend-item .trend-content-main .trend-content .klub-title h4 {
  padding: 20px 0;
  font-size: 17px;
  text-align: center;
}

.trending .trend-item .trend-content-main .trend-content h4 {
  /* padding: 10px 25px 10px 25px; */
  padding: 0;
  font-size: 17px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0em;
  /* border: 1px dashed #f1f1f1;
          border-width: 1px 0 1px; */
  margin-bottom: 10px;
}

.trending .trend-item .trend-content-main .trend-content h4:before {
  display: none;
}

.trending .trend-item .trend-content-main .trend-content .cart-btn .nir-btn,
.trending .trend-item .trend-content-main .trend-content .cart-btn .nir-btn-black {
  padding: 10px 20px;
}

.trending .trend-item .trend-content-main .trend-last-main {
  z-index: 10;
  width: 100%;
  box-shadow: 0 10px 15px #cccccc57;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  -webkit-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  -o-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease 0s;
}

.trending .trend-item .trend-content-main .trend-last-main p.trend-para {
  padding: 0 20px 25px;
}

.trending .trend-item .trend-content-main .trend-last-main .trend-last {
  background: #f56961;
  padding: 10px 20px;
}

.trending .trend-item .trend-content-main .trend-last-main .trend-last .trend-price span {
  font-size: 20px;
  font-weight: 600;
}

.trending .trend-item .trend-content-main .trend-last-main .trend-last img.d-author {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

.trending .trend-item:hover .trend-last-main {
  transition: all ease-in-out 0.5s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  top: 99%;
  visibility: visible;
  z-index: 15;
}

.trending .trend-box1 .trend-content-main .trend-last-main {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: none;
  box-shadow: none;
}

.trending.destination {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.trending.destination .trend-box ul.nav.nav-tabs {
  border-radius: 0px;
  overflow: hidden;
  display: inline-flex;
  border: none;
}

.trending.destination .trend-box ul.nav.nav-tabs li {
  margin: 0;
  border: none;
}

.trending.destination .trend-box ul.nav.nav-tabs li a {
  font-family: "Poppins", sans-serif;
  border-radius: 25px;
  display: inline-block;
  margin-right: 0px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
  transition: all ease-in-out 0.5s;
  border: 3px solid #fbfbfb;
  color: #fff;
}

.trending.destination .trend-box ul.nav.nav-tabs li a.active {
  background: #897650;
  border: 3px solid #897650;
  color: #fff;
}

.trending.destination .trend-box ul.nav.nav-tabs li.active a {
  color: #000;
  border: 3px solid #fbfbfb;
  transition: allease-in-out 0.5s;
  opacity: 1;
}

.trending.destination .trend-box ul.nav.nav-tabs li i {
  font-size: 40px;
  display: block;
  color: #162241;
}

.trending.destination .trend-box ul.nav.nav-tabs li:focus a,
.trending.destination .trend-box ul.nav.nav-tabs li:hover a {
  color: #fff;
  background-color: #bda68c;
  transition: all ease-in-out 0.5s;
  border-color: #bda68c;
}

.trending.destination .trend-box ul.nav.nav-tabs li.active a {
  color: #fff;
  background-color: #897650;
  transition: all ease-in-out 0.5s;
  opacity: 1;
  border-color: #897650;
}

.trending.destination .trend-box .trend-item .trend-content-main .trend-last-main {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: none;
  box-shadow: none;
}

.destination-b .trend-item .trend-content-main .trend-last-main {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: none;
  box-shadow: none;
}

.destination-b h4 {
  font-weight: 500;
}

.destination-b .deal-price {
  border: 1px dashed #f1f1f1;
  border-width: 1px 0 0px;
  padding: 11px 0 0;
  color: #777;
}

.destination-b .deal-price span {
  font-size: 18px;
  font-weight: 500;
  color: #897650;
}

.destination-b .trend-tags {
  position: absolute;
  right: 15px;
  top: 0;
}

.destination-b .booking-box-title i {
  float: left;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #fff;
  color: #897650;
  font-size: 25px;
  line-height: 2;
}

.destination-b .nice-select {
  line-height: 1.9;
}

.destination-b .slick-initialized .slick-slide {
  margin-bottom: 2rem;
}

.destination-b .single-slider .slick-initialized .slick-slide {
  margin-bottom: 0;
}

.destination-b .single-slider .slick-initialized .slick-prev {
  left: 0;
}

.destination-b .single-slider .slick-initialized .slick-next {
  right: 0;
}

.destination-b .thumbnail-images .slick-initialized .slick-slide {
  margin-bottom: 0rem;
}

.sidebar-sticky {
  position: sticky;
  top: 0;
  transition: all ease-in-out 0.5s;
}

.sidebar-sticky .list-sidebar {
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px #cccccc37;
  padding: 20px;
  border-radius: 0px;
  background: #fff;
}

.sidebar-sticky .list-sidebar .sidebar-item {
  padding: 0 0px 30px;
  border-bottom: 2px dashed #f1f1f1;
  margin-bottom: 30px;
}

.sidebar-sticky .list-sidebar .sidebar-item:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.sidebar-sticky .list-sidebar .sidebar-item h4 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;
}

.sidebar-sticky .list-sidebar .sidebar-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 20%;
  height: 2px;
  background: #162241;
}

.sidebar-sticky .list-sidebar .sidebar-item .pretty {
  display: block;
  margin-bottom: 20px;
  margin-right: 0;
}

.sidebar-sticky .list-sidebar .sidebar-item .pretty .state label {
  text-indent: 1em;
  width: 100%;
  padding-left: 10px;
}

.sidebar-sticky .list-sidebar .sidebar-item .pretty .state label span.number {
  float: right;
}

.sidebar-sticky .list-sidebar .sidebar-item .pretty:last-child {
  margin: 0;
}

.sidebar-sticky .list-sidebar .sidebar-item .pretty.p-icon .state .icon {
  color: #fff;
}

.sidebar-sticky .list-sidebar .sidebar-item .pretty.p-icon input:checked~.state .icon {
  background: #f56961;
}

.sidebar-sticky .list-sidebar .sidebar-item .range-slider {
  margin-bottom: 0;
}

.sidebar-sticky .list-sidebar .sidebar-item .range-slider .ui-slider .ui-slider-range {
  background: #f56961;
}

.sidebar-sticky .list-sidebar .sidebar-item .star-rating span {
  color: #ffbc00;
  display: inline;
}

.sidebar-sticky .list-sidebar .sidebar-item .map-box {
  text-align: center;
  border: 1px solid #f1f1f1;
  padding: 30px 0;
  /* background: url(../images/streetmap.jpg); */
  background-size: cover;
}

.sidebar-sticky .list-sidebar .sidebar-item .map-box i {
  display: block;
  font-size: 44px;
  color: #ef2853;
}

.sidebar-sticky .form-content {
  box-shadow: 0px 0px 30px #cccccc57;
  background: #162241;
  padding: 30px;
}

.sidebar-sticky .form-content h4::before {
  display: none !important;
}

.sidebar-sticky .form-content .nice-select {
  padding: 13px 20px 10px 35px;
  font-weight: 400;
}

.sidebar-sticky .form-content .input-box {
  position: relative;
  display: inline-block;
  width: 100%;
}

.sidebar-sticky .form-content .input-box input {
  padding-left: 35px;
}

.sidebar-sticky .form-content .input-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.sidebar-sticky .form-content .input-box [class^="fa-"]:before {
  color: #ef2853;
  font-weight: 600;
}

.sidebar-sticky.sticky1 {
  top: 120px;
}

.sidebar-sticky.sticky1.tab-sticky {
  top: 30px;
}

.progress-item {
  margin-bottom: 0.5rem;
}

.progress-item p {
  font-size: 14px;
}

.progress-item .progress {
  height: 5px;
}

.progress-item .progress .progress-bar {
  background: #f56961;
}

span.location-box {
  color: #f56961;
  border: 1px solid #f56961;
  padding: 15px;
  text-align: center;
  margin-right: 15px;
}

.sidebar-contact {
  padding: 40px 20px;
}

.sidebar-contact i {
  font-size: 32px;
  margin-bottom: 20px;
}

.desc-box {
  background: #fbfbfb;
  padding: 10px 20px;
  border: 1px solid #f1f1f1;
}

.desc-box li {
  display: block;
  line-height: 2;
}

.description-images .slick-initialized .slick-slide {
  opacity: 0.6;
}

.description-images .slick-initialized .slick-slide.slick-current.slick-active.slick-center {
  opacity: 1;
}

.description-images .slick-initialized .slick-prev,
.description-images .slick-initialized .slick-next {
  background: #f56961;
}

.description-images .slick-initialized .slick-prev {
  left: 0;
}

.description-images .slick-initialized .slick-next {
  right: 0;
}

.tabs-navbar {
  border: 1px solid #f1f1f1;
}

.tabs-navbar ul li {
  display: block;
  width: 100%;
}

.tabs-navbar ul li a {
  padding: 10px 15px;
  transition: all ease-in-out 0.5s;
  display: block;
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
}

.tabs-navbar ul li a:hover {
  color: #fff;
  background: #f56961;
  transition: all ease-in-out 0.5s;
}

.tabs-navbar ul li.active a {
  color: #fff;
  background: #f56961;
  transition: all ease-in-out 0.5s;
}

.tabs-navbar1 {
  border: 1px solid #f1f1f1;
}

.tabs-navbar1 ul {
  display: inherit;
  text-align: center;
}

.tabs-navbar1 ul li a {
  padding: 10px 15px;
  transition: all ease-in-out 0.5s;
}

.tabs-navbar1 ul li a:hover {
  color: #fff;
  background: #f56961;
  transition: all ease-in-out 0.5s;
}

.tabs-navbar1 ul li.active a {
  color: #fff;
  background: #f56961;
  transition: all ease-in-out 0.5s;
}

.navbar-sticky {
  z-index: 99999;
  position: fixed !important;
  left: 0;
  top: 0;
  width: 100%;
  animation-name: slideInUp;
  transition: all ease-in-out 0.5s;
}

.tabs-navbar1.navbar-sticky {
  top: 86px;
  transition: all ease-in-out 0.5s;
}

.sticky1.tab-sticky {
  top: 0px;
  transition: all ease-in-out 0.5s;
  animation-name: slideInUp;
}

@media (max-width: 991px) {
  .explore-item {
    text-align: center;
  }

  .explore-item .section-title {
    margin: 0 auto;
  }

  .tabs-navbar1.navbar-sticky {
    top: 0;
    position: relative !important;
  }
}

@media (max-width: 767px) {
  .trending.destination .trend-box ul.nav.nav-tabs li a {
    padding: 10px 15px;
  }

  .destination-b .trend-tags,
  .tabs-navbar1 {
    display: none;
  }

  .destination-b .booking-box-title {
    text-align: center;
  }

  .destination-b .booking-box-title i {
    float: none;
  }

  .destination-b .booking-box-title .title-content {
    margin: 15px 0 0 !important;
  }
}

@media (max-width: 567px) {
  .trending.destination .trend-box ul.nav.nav-tabs li a {
    margin-bottom: 5px;
  }

  .trending .trend-item .trend-content-main .trend-last-main .trend-last {
    padding: 10px;
  }

  .trending .trend-item .trend-content-main .trend-last-main .trend-last .trend-price span {
    font-size: 16px;
  }
}

/* ========================================= */
/*          News section CSS        */
/* ======================================== */
.news {
  padding-bottom: 6rem;
  z-index: inherit;
}

.news .news-item {
  position: relative;
}

.news .news-item .news-image {
  position: relative;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
}

.news .news-item .news-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: -webkit-transform 1.8s;
  transition: -webkit-transform 1.8s;
  transition: transform 1.8s;
  transition: transform 1.8s, -webkit-transform 1.8s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  z-index: 1;
}

.news .news-item .news-image:hover:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

.news .news-item .news-image .news-date1 {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffffffe3;
  padding: 10px 15px;
  z-index: 2;
}

.news .news-item .news-image .news-date1 span {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.news .news-item .news-image .news-content1 {
  padding: 20px;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.news .news-item .news-image .news-content1 .news-list {
  border-top: 1px dashed #f1f1f1;
  padding-top: 15px;
}

.news .news-item .news-image .news-content1 .news-list li a {
  font-size: 14px;
  color: #999;
}

.news .news-item .news-image .news-content1 .news-list li a:hover {
  color: #162241;
}

.news .news-item .news-image .overlay {
  background: linear-gradient(to bottom, transparent 0%, #826d43 100%);
  top: inherit;
  height: 50%;
  bottom: 0;
}

.news .news-item .news-image img {
  transition: all ease-in-out 0.5s;
  width: 100%;
}

.news .news-item .news-image:hover img {
  transition: all ease-in-out 0.5s;
  transform: scale(1.2);
}

.news .news-item .news-content-over {
  position: absolute;
  left: 0;
  width: 90%;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 0 15px #cccccc37;
  bottom: -1.5rem;
  padding: 20px;
  z-index: 1;
  background: #fff;
}

.news .news-item .news-list li a {
  font-size: 14px;
  color: #999;
  font-style: italic;
}

.news .news-item .news-list li a:hover {
  color: #162241;
}

.news .news-item .news-content .news-list li a {
  font-size: 14px;
  color: #999;
}

.news .news-item .news-content .news-list li a:hover {
  color: #162241;
}

.news .news-item .news-content .author-img img {
  max-width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.news .news-item .news-content a.news-btn {
  font-size: 14px;
}

.news .news-item .news-cont {
  background: #fff;
  border-radius: 15px;
  padding: 20px 15px;
  position: relative;
  z-index: 1;
  width: 96%;
  margin-top: -24px;
}

.news .news-item .news-cont .news-list li a {
  font-size: 14px;
  color: #999;
  font-style: italic;
}

.news .news-item .news-cont .news-list li a:hover {
  color: #162241;
}

.news .news-item .blog-one__content {
  padding: 24px 24px 20px;
  background: #ffffff;
  margin-right: 30px;
  margin-top: -70px;
  position: relative;
  transition: all 700ms ease;
  z-index: 1;
}

.news .news-item .blog-one__content .blog-one__meta {
  margin: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.news .news-item .blog-one__content .blog-one__meta li a {
  font-size: 14px;
  color: #777;
  transition: all 500ms ease;
}

.news .news-item .blog-one__content .blog_one_text {
  width: 83%;
}

.news .news-item .blog-one__content .blog_one_date {
  height: 70px;
  width: 70px;
  background: #162241;
  padding-top: 15px;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1100px) and (min-width: 1024px) {
  .news .news-item .blog-one__content {
    margin-right: 0;
  }

  .news .news-item .blog-one__content .blog-one__meta li a {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .testi-news .section-title {
    text-align: center !important;
  }

  .news .news-item .blog-one__content .blog-one__meta li a {
    font-size: 13px;
  }
}

/*breadcrumb*/
.breadcrumb-main {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  /* background-attachment: fixed; */
  position: relative;
  height: 450px;
  width: 100%;
}

.breadcrumb-main .breadcrumb-outer {
  background: transparent;
  position: relative;
  height: 100%;
  z-index: 1;
}

.breadcrumb-main .breadcrumb-outer:before {
  display: none;
}

.breadcrumb-main .breadcrumb-outer .breadcrumb-content,
.breadcrumb-main .breadcrumb-outer .bread-content {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  text-align: left;
}

.breadcrumb-main .breadcrumb-outer .breadcrumb-content h2,
.breadcrumb-main .breadcrumb-outer .bread-content h2 {
  color: #fff;
  text-transform: uppercase;
  line-height: 0.7;
  font-size: 48px;
  /*text-shadow: 2px 3px 4px #fff;*/
}

.breadcrumb-main .breadcrumb-outer .breadcrumb-content nav,
.breadcrumb-main .breadcrumb-outer .bread-content nav {
  display: inline-block;
  position: absolute;
  bottom: 50%;
  left: 0;
}

.breadcrumb-main .breadcrumb-outer .bread-content nav {
  left: 0;
  right: 0;
}

@media (max-width: 479px) {
  .breadcrumb-main .breadcrumb-outer .breadcrumb-content h2 {
    display: block;
    font-size: 30px;
    text-shadow: 2px 3px 4px #fff;
  }
}

/*breadcrumb*/
/* ========================================= */
/*         About Us CSS        */
/* ======================================== */
.why-us-content p {
  font-size: 20px;
}

.why-us-content h2 {
  font-size: 40px;
}

.about-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.about-us {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: inherit;
}

.about-us .about-featured ul li {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  display: inline-block;
  width: 100%;
  position: relative;
  line-height: 2.4;
  font-weight: 400;
}

.about-us .about-featured ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.about-us .about-image-box .about-image-desti {
  border: 10px solid #ffffff52;
  box-shadow: 0 0 15px #cccccc37;
  margin-bottom: -3rem;
}

.about-us .form-content {
  position: relative;
  top: -2rem;
}

.about-us .form-content h3.form-title {
  top: 0;
}

.about-us .about-image-box1 .about-image {
  margin-top: -40px;
}

.about-us .about-image-box1 .about-content {
  right: inherit;
  left: -40px;
  top: 0;
}

.about-us .about-inner {
  position: relative;
  z-index: 1;
}

.about-us .about-inner h2 {
  font-size: 48px;
  margin-bottom: 10px !important;
}

.about-us .about-inner .about-image-box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.about-us .about-inner .about-image-box img {
  width: 100%;
}

.about-us .about-inner .about-image-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: -webkit-transform 1.8s;
  transition: -webkit-transform 1.8s;
  transition: transform 1.8s;
  transition: transform 1.8s, -webkit-transform 1.8s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  z-index: 1;
}

.about-us .about-inner .about-image-box:hover:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

.about-us .box-title i {
  font-size: 38px;
  color: #162241;
}

.about-us .about-left {
  position: absolute;
  top: 50%;
  right: -50px;
  background: #fff;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 15px;
  padding: 30px 30px 30px 0;
}

/* What We Do  */
.about-us-wedo-top {
  background-image: url("../images/bg/Parentop.png");
  /* Replace with actual path */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.about-us-wedo {
  background-image: url("../images/bg/Parent.png");
  /* Replace with actual path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.about-us-wedo {
  /*background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;*/
  width: 100%;

  display: flex;
  align-items: center;
  /* Centers content vertically */
  position: relative;
  z-index: inherit;
}

.about-us-wedo .about-featured ul li {
  display: inline-block;
  width: 109%;
  position: relative;
  line-height: 2.4;
  font-weight: 400;
}

.about-us-wedo .about-featured ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.about-us-wedo .about-image-box .about-image-desti {
  border: 10px solid #ffffff52;
  box-shadow: 0 0 15px #cccccc37;
  margin-bottom: -3rem;
}

.about-us-wedo .form-content {
  position: relative;
  top: -2rem;
}

.about-us-wedo .form-content h3.form-title {
  top: 0;
}

.about-us-wedo .about-image-box1 .about-image {
  margin-top: -40px;
}

.about-us-wedo .about-image-box1 .about-content {
  right: inherit;
  left: -40px;
  top: 0;
}

.about-us-wedo .about-inner {
  position: relative;
  z-index: 1;
}

.about-us-wedo .about-inner h2 {
  font-size: 48px;
  margin-bottom: 10px !important;
}

.about-us-wedo .about-inner .about-image-box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.about-us-wedo .about-inner .about-image-box img {
  width: 100%;
}

.about-us-wedo .about-inner .about-image-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: -webkit-transform 1.8s;
  transition: -webkit-transform 1.8s;
  transition: transform 1.8s;
  transition: transform 1.8s, -webkit-transform 1.8s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  z-index: 1;
}

.about-us-wedo .about-inner .about-image-box:hover:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

.about-us-wedo .box-title i {
  font-size: 38px;
  color: #162241;
}

.about-us-wedo .about-left {
  position: absolute;
  top: 50%;
  right: -50px;
  background: #fff;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 15px;
  padding: 30px 30px 30px 0;
}

/* What We Do  */
.overlay-section {
  position: relative;
  background-image: url("../images/new-deal/Rectangle_droplets.png");
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.overlay-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0%);
  /* White overlay with 0% opacity */
  z-index: -1;
  /* Places it behind the content */
}

.about-content h2 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
}

/* .about-us1:before {
    content: '';
    background: url(../images/new-deal/Rectangle_droplets.png) repeat-x;
    position: absolute;
    top: -20px;
    left: 0;
    height: 5%;
    width: 100%;
    z-index: 2;
    background-size: contain; 
  } */
/* .about-us1:after {
    content: '';
    background: url(../images/top-bg.png) repeat-x;
    position: absolute;
    bottom: -34px;
    left: 0;
    height: 5%;
    width: 100%;
    z-index: 2;
    background-size: contain; } */

@media (max-width: 991px) {
  .about-us .about-inner .about-image-box {
    margin-top: 2rem;
  }

  .about-us .about-image-box .about-image-desti {
    margin-bottom: 0;
  }

  .about-us .about-image-box .about-image-main {
    margin-top: 30px;
  }

  .about-us .about-image-box .about-image-main .col-lg-6 {
    margin-top: 0 !important;
  }

  .about-us .about-image-box .about-content {
    margin-bottom: 15px;
    width: 100% !important;
  }

  .about-us .form-content {
    top: 2rem;
    margin-bottom: 2rem;
  }

  .about-us .about-left {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    padding: 0;
  }

  .about-us1:before {
    top: -40px;
  }

  .about-us1:after {
    bottom: -48px;
  }
}

@media (max-width: 639px) {
  .about-us1:before {
    top: -40px;
  }

  .about-us1:after {
    bottom: -72px;
  }

  .about-us .about-featured ul li {
    display: block;
    width: 100%;
  }
}

/* arc design in banner */
.fabTrigger {
  display: inline-block;
}

.background {
  position: relative;
  /* Needed for absolute positioning of title */
  display: inline-block;
  /* allows the background div to take the size of its content */
}

.icon-title {
  position: absolute;
  /* Position the title absolutely within the background */
  top: 65%;
  /* Position it at the bottom of the background */
  left: 50%;
  /* Center it horizontally */
  transform: translate(-50%, -100%);
  /* Adjust for centering and positioning */
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  color: white;
  /* Or a color that contrasts with your background */
  white-space: nowrap;
  /* prevent text wrapping */
}

.pin-icon {
  display: none;
  /* to avoid extra space below the svg*/
}

.fabWidget {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  transition: all 0.3s;
}

.fabTrigger .background {
  background-color: #897650;
  border-radius: 50%;
  box-shadow: 0 2.1px 1.3px rgba(0, 0, 0, 0.044),
    0 5.9px 4.2px rgba(0, 0, 0, 0.054), 0 12.6px 9.5px rgba(0, 0, 0, 0.061),
    0 25px 20px rgba(0, 0, 0, 0.1);
  height: 60px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 60px;
}

.fabList {
  visibility: hidden;
  opacity: 1;
  position: absolute;
  bottom: 100%;
  left: 70%;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fabButton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 6px;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #bda68c;
  background: #bda68c;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;

  &:hover {
    cursor: pointer;
  }

  &.active {
    transform: translateY(0px);
    opacity: 1;
  }

  svg {
    width: 100%;
    height: 100%;
  }
}

.active .fabButton {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

.fabOverlay {
  width: 100%;
  height: 100%;
  background: rgba(#000, 0.1);
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;

  &.active {
    opacity: 1;
    visibility: visible;
  }
}

[data-tooltip] {
  position: relative;

  &::before {
    opacity: 0;
    visibility: hidden;
    cursor: default;
    pointer-events: none;
  }

  &::before {
    content: attr(data-tooltip);
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    padding: 7px;
    text-align: center;
    border-radius: 4px;
    background: #bda68c;
    color: #fff;
    font-size: 0.8em;
    white-space: nowrap;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }

  &:hover::before {
    opacity: 1;
    visibility: visible;
    right: 120%;
  }
}

.chat-bubble {
  cursor: pointer;
  position: relative;

  .bubble {
    transform-origin: 50%;
    transition: transform 500ms cubic-bezier(0.17, 0.61, 0.54, 0.9);
  }

  .line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.75;
    stroke-linecap: round;
    transition: stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .line1 {
    stroke-dasharray: 60 90;
    stroke-dashoffset: -20;
  }

  .line2 {
    stroke-dasharray: 67 87;
    stroke-dashoffset: -18;
  }

  .circle {
    fill: #ffffff;
    stroke: none;
    transform-origin: 50%;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.active {
  .bubble {
    transform: translateX(24px) translateY(4px) rotate(45deg);
  }

  .line1 {
    stroke-dashoffset: 21;
  }

  .line2 {
    stroke-dashoffset: 30;
  }

  .circle {
    transform: scale(0);
  }
}

.fabTrigger {
  /* position: fixed; */
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  /* background-color: #1e88e5; 
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* .fabTrigger:hover {
    background-color: #1565c0; 
} */

.pin-icon {
  width: 60px;
}

/* arc design in banner */

/* ========================================= */
/*          Listing CSS        */
/* ======================================== */
.listing-main.mt-map {
  margin-top: -80px;
  position: relative;
}

.list-results {
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}

.list-results label {
  margin: 0;
}

.list-results .nice-select {
  border: 1px solid #f1f1f1;
  background: #fff;
  width: 150px;
  padding-left: 20px;
  line-height: 1.5;
  height: 44px;
}

.list-results .change-grid,
.list-results .change-list {
  display: inline-block;
}

.list-results .change-grid i,
.list-results .change-list i {
  line-height: 2.5;
  text-align: center;
  display: inline-block;
  transition: all ease-in-out 0.5s;
  height: 40px;
  width: 40px;
  background: #fff;
}

.list-results .change-list.f-active i,
.list-results .change-grid.f-active i {
  background: #162241;
  color: #fff;
  transition: all ease-in-out 0.5s;
  border-color: #162241;
}

.blog-full {
  overflow: hidden;
  padding: 15px 0px;
  position: relative;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px #cccccc37;
}

.blog-full .blog-height {
  height: 100%;
}

.blog-full .blog-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 0px;
  transition: all ease-in-out 0.5s;
}

.blog-full .blog-image .h-date {
  text-align: center;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 15px;
  z-index: 1;
}

.blog-full .blog-image>a {
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
  display: inline-block;
  transition: all ease-in-out 0.5s;
}

.blog-content {
  padding: 20px 0px;
  display: inline-block;
  width: 100%;
}

.blog-content .date-cats a {
  color: #999;
  font-style: italic;
  font-size: 15px;
}

.blog-content .date-cats a i {
  color: #897650;
}

.blog-content>a:hover {
  color: #162241 !important;
  transition: all ease-in-out 0.5s;
}

.blog-content .listing-price {
  font-weight: 700;
  color: #162241;
  font-size: 18px;
  display: inline-block;
}

.blog-content .listing-price span.regular-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-style: italic;
}

.blog-content .listing-actions .add-to-links a {
  display: inline-block;
  transition: all ease-in-out 0.5s;
}

.blog-content .listing-actions .add-to-links .btn-cart {
  line-height: 42px;
  height: 40px;
  width: 40px;
  padding: 0;
  position: relative;
  text-align: center;
  display: inline-block;
  background: #fff;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
  border: 1px solid #f1f1f1;
}

.blog-content .listing-actions .add-to-links .btn-cart:hover,
.blog-content .listing-actions .add-to-links .btn-cart:focus {
  background: #162241;
  color: #fff;
  outline: none;
  border-color: #162241;
}

.blog-content .listing-actions .add-to-links .nir-btn,
.blog-content .listing-actions .add-to-links .nir-btn-black {
  padding: 10px 20px;
}

.blog-content .rating span {
  color: #ffbc00;
}

.add-listing .addlist-inner .addlist-title {
  margin-bottom: 1rem;
  padding: 15px;
  background: #fff;
  width: 100%;
}

.add-listing .addlist-inner .addlist-content {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 15px #cccccc57;
}

.add-listing .addlist-inner .addlist-content .niceSelect {
  padding: 10px 20px;
  line-height: 2;
}

.add-listing .addlist-inner .upload-file {
  width: 100%;
  background: #fbfbfb;
  border: 2px dashed #f1f1f1;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 50px 0;
}

.add-listing .addlist-inner .upload-file input {
  display: none;
}

.add-listing .addlist-inner .upload-file i {
  font-size: 3.6rem;
}

.add-listing .addlist-inner .listing-btn a {
  padding: 8px 15px 6px;
}

@media (max-width: 767px) {
  .add-listing .addlist-inner .addlist-content {
    overflow-x: scroll;
    width: 100%;
  }

  .add-listing .addlist-inner .addlist-content .listing-btn {
    text-align: center;
    margin-top: 1rem;
  }
}

.detail-title .detail-title-inner .listing-rating i {
  color: #fff;
}

.detail-title .detail-title-inner .list-single-contacts li {
  font-size: 13px;
  padding-right: 10px;
}

.detail-title .detail-title-inner .list-single-details .list-single-rating {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.detail-title .detail-title-inner .list-single-details .list-single-rating .rating-score span {
  background: #fff;
  color: #162241;
  float: left;
  font-weight: 700;
  border-radius: 0px;
  padding: 16px 18px;
  font-size: 24px;
}

.detail-listing-inner {
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px #cccccc37;
  padding: 20px;
  border-radius: 0px;
}

.detail-listing-inner>div {
  border-bottom: 1px dashed #f1f1f1;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}

.detail-listing-inner>div .detail-amenities li {
  width: 32.9%;
  margin-bottom: 0.5%;
  border: 1px dashed #f1f1f1;
  padding: 10px;
  color: #777;
  border-radius: 0px;
}

.detail-listing-inner>div .detail-amenities li i {
  margin-right: 5px;
}

.detail-listing-inner>div:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

.detail-listing-inner .detail-recentlist .blog-full {
  box-shadow: none;
}

.detail-comments .comment-box,
.single-comments .comment-box {
  display: flex;
  margin-bottom: 30px;
}

.detail-comments .comment-box:last-child,
.single-comments .comment-box:last-child {
  margin-bottom: 0;
}

.detail-comments .comment-box .comment-image,
.single-comments .comment-box .comment-image {
  text-align: center;
}

.detail-comments .comment-box .comment-image img,
.single-comments .comment-box .comment-image img {
  border-radius: 10px;
}

.detail-comments .comment-box .comment-content,
.single-comments .comment-box .comment-content {
  border-bottom: 1px dashed #f1f1f1;
  position: relative;
  background: #f1f1f1;
  padding: 20px;
  margin-left: 30px;
}

.detail-comments .comment-box .comment-content:before,
.single-comments .comment-box .comment-content:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #f1f1f1;
}

.detail-comments .comment-box .comment-content:last-child,
.single-comments .comment-box .comment-content:last-child {
  border: 0;
}

.detail-comments .comment-box .comment-content p.comment-date,
.single-comments .comment-box .comment-content p.comment-date {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 14px;
  margin: 0;
}

.detail-comments .comment-box .comment-content .comment-rate span.comment-title,
.single-comments .comment-box .comment-content .comment-rate span.comment-title {
  font-weight: 500;
  font-style: italic;
}

.detail-comments .comment-box .comment-content p.comment,
.single-comments .comment-box .comment-content p.comment {
  margin: 0.5rem 0;
}

.detail-comments .comment-box .comment-content .comment-like,
.single-comments .comment-box .comment-content .comment-like {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}

.detail-comments .comment-box .comment-content .comment-like a,
.single-comments .comment-box .comment-content .comment-like a {
  padding: 6px 12px;
}

.detail-comments .comment-box .comment-content .comment-like .like-title,
.single-comments .comment-box .comment-content .comment-like .like-title {
  display: inline-block;
}

.detail-comments .comment-box .comment-content .comment-like .like-btn a,
.single-comments .comment-box .comment-content .comment-like .like-btn a {
  margin-left: 10px;
}

.detail-comments .comment-box .comment-content .comment-like .like-btn a.like,
.single-comments .comment-box .comment-content .comment-like .like-btn a.like {
  color: #292e8c;
}

.detail-comments .comment-box .comment-content .comment-like .like-btn a.dislike,
.single-comments .comment-box .comment-content .comment-like .like-btn a.dislike {
  color: #a6aebb;
}

.detail-comments .comment-box .comment-content .comment-like .like-btn a.love,
.single-comments .comment-box .comment-content .comment-like .like-btn a.love {
  color: #ff6f7e;
}

@media (max-width: 991px) {
  .blog-full .blog-height {
    height: 250px;
  }

  .list-sidebar {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .detail-listing-inner>div .detail-amenities li {
    width: 49%;
  }

  .blog-content {
    text-align: center !important;
    padding-top: 20px !important;
  }

  .product-color {
    margin-top: 1.5rem;
  }
}

@media (max-width: 639px) {

  .detail-comments .comment-box,
  .single-comments .comment-box {
    display: block !important;
    text-align: center;
  }

  .detail-comments .comment-box .comment-image,
  .single-comments .comment-box .comment-image {
    display: inline-block;
  }

  .detail-comments .comment-box .comment-content,
  .single-comments .comment-box .comment-content {
    margin-top: 1rem;
    margin-left: 0 !important;
  }

  .detail-comments .comment-box .comment-content:before,
  .single-comments .comment-box .comment-content:before {
    display: none;
  }

  .detail-comments .comment-box .comment-content p.comment-date,
  .single-comments .comment-box .comment-content p.comment-date {
    position: relative !important;
    top: 0;
    right: 0;
  }

  .detail-comments .comment-box .comment-content .rating-comment,
  .single-comments .comment-box .comment-content .rating-comment {
    display: inline-block !important;
    width: 100%;
  }

  .detail-comments .comment-box p.comment-date,
  .single-comments .comment-box p.comment-date {
    display: inline-block !important;
    margin-top: 2rem;
  }

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

  .blog-imagelist img {
    margin-bottom: 1rem;
  }

  .review-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 567px) {
  .list-results {
    display: inherit !important;
    text-align: center;
  }

  .list-results .click-menu {
    justify-content: center !important;
    margin-top: 1rem;
  }

  .list-results .click-menu .sortby {
    display: inline-block !important;
  }

  .detail-listing-inner>div .detail-amenities li {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .blog-full .blog-height {
    height: 150px;
  }

  .detail-comments .comment-box .comment-content .comment-like,
  .single-comments .comment-box .comment-content .comment-like {
    display: block !important;
  }

  .detail-comments .comment-box .comment-content .comment-like .like-title,
  .single-comments .comment-box .comment-content .comment-like .like-title {
    float: none !important;
  }

  .detail-comments .comment-box .comment-content .comment-like .like-btn,
  .single-comments .comment-box .comment-content .comment-like .like-btn {
    float: none !important;
    margin-top: 0.5rem;
  }

  .detail-comments .comment-box .comment-content .comment-like .like-btn a,
  .single-comments .comment-box .comment-content .comment-like .like-btn a {
    padding: 0;
  }

  .detail-title .detail-title-inner .list-single-contacts li {
    padding-right: 0;
  }
}

/* ========================================= */
/*          Blog CSS        */
/* ======================================== */
.swiper-list li {
  display: inline-block;
  margin-bottom: 0;
  border: 1px solid #fff;
  padding: 5px 10px;
  text-align: center;
  border-radius: 0px;
}

section.blog .grid {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

section.blog .grid .gridblog-content {
  padding: 20px 0 0;
}

section.blog .grid .gridblog-content .date {
  border-bottom: 1px solid #f1f1f1;
  display: inline-block;
}

section.blog .grid .gridblog-content .date a {
  color: #999;
  font-size: 14px;
}

section.blog .grid .gridblog-content .date a:hover {
  color: #162241;
}

section.blog .grid .grid-image {
  position: relative;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
}

section.blog .grid .grid-image img {
  transition: all ease-in-out 0.5s;
  width: 100%;
}

section.blog .grid .grid-image:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 0.5s;
}

section.blog .grid .grid-image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: -webkit-transform 1.8s;
  transition: -webkit-transform 1.8s;
  transition: transform 1.8s;
  transition: transform 1.8s, -webkit-transform 1.8s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  z-index: 1;
}

section.blog .grid .grid-image:hover:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

section.blog .grid .grid-image .overlay {
  background: linear-gradient(to top, #0000007d, transparent);
}

section.blog .grid .grid-item1 .gridblog-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 20px;
}

section.blog .grid .grid-item1 .date {
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.author-news {
  position: relative;
  overflow: hidden;
  background: url(../images/bg/bg7.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: inline-block;
  width: 100%;
}

.author-news .author-news-content {
  position: relative;
  z-index: 1;
}

.author-news .author-news-content .author-thumb {
  width: 210px;
  height: 210px;
  margin: 30px auto 0px;
  position: relative;
  overflow: hidden;
}

.author-news .author-news-content .author-thumb img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
}

.author-news .author-news-content .author-thumb:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  border-radius: 50%;
  border: 2px dashed #fff;
}

.author-news .author-news-content .author-content {
  padding: 30px;
}

.author-news .author-news-content .author-content .title {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  padding-top: 12px;
}

.author-news .author-news-content .author-content p {
  font-size: 18px;
  color: #fff;
  padding-bottom: 18px;
}

.author-news .author-news-content .author-content span {
  color: #f56961;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.author-news .author-news-content .author-content span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background: #f56961;
}

.header-social ul li {
  display: inline-block;
  margin: 0;
}

.header-social ul li a i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #5e5eb7;
  color: #fff;
  margin-right: 2px;
}

.header-social ul li a i:hover {
  opacity: 0.8;
}

.header-social ul li a i:last-child {
  margin-right: 0;
}

.header-social ul li:nth-child(2) a i {
  background: #c72026;
}

.header-social ul li:nth-child(3) a i {
  background: #29a4dd;
}

ul.sidebar-category li {
  position: relative;
  margin: 0 0 12px;
  background: #fff;
  padding: 10px 20px;
  border: 1px solid #f1f1f1;
  display: block;
}

ul.sidebar-category li:last-child {
  margin: 0;
}

.sidebar-products .s-content {
  border-bottom: 1px dashed #f1f1f1;
}

.sidebar-products .s-content .products-price {
  color: #162241;
}

.sidebar-tabs .nav-tabs {
  border-bottom: none;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 15px #cccccc37;
}

.sidebar-tabs .nav-tabs>li {
  width: 50%;
}

.sidebar-tabs .nav-tabs>li>a {
  border-radius: 0px;
  padding: 15px;
  margin: 0;
  line-height: inherit;
  border: none;
  display: inline-block;
}

.sidebar-tabs .nav-tabs>li>a:hover {
  color: #fff;
}

.sidebar-tabs .nav-tabs>li:hover {
  color: #fff;
  background-color: #162241;
  border: none;
}

.sidebar-tabs .nav-tabs>li.active {
  color: #fff;
  background-color: #162241;
  border: none;
}

.sidebar-tabs .nav-tabs>li.active>a {
  color: #fff;
}

.sidebar-tabs .sidebar-image {
  overflow: hidden;
}

.sidebar-tabs .sidebar-image img {
  width: 100%;
}

.sidebar-tabs .s-content {
  padding: 8px 15px 10px;
  transition: all ease-in-out 0.5s;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px #cccccc37;
  background: #fff;
}

.sidebar-tabs .s-content .blog-no {
  font-size: 32px;
  color: #ccc;
  font-weight: 700;
}

.sidebar-tabs .s-content .date {
  font-size: 14px;
  font-style: italic;
  padding-bottom: 4px;
}

.sidebar-tabs .s-content h5 {
  text-transform: capitalize;
}

.sidebar-tabs .s-content:hover {
  box-shadow: 0 0 15px #cccccc37;
  transition: all ease-in-out 0.5s;
}

ul.sidebar-tags li {
  display: inline-block;
  margin-bottom: 0;
}

ul.sidebar-tags li a {
  padding: 10px 15px;
  background: #fff;
  display: inline-block;
  margin-bottom: 3px;
  color: #444;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px #cccccc37;
  transition: all ease-in-out 0.5s;
}

ul.sidebar-tags li a:hover {
  background: #162241;
  color: #fff;
  transition: all ease-in-out 0.5s;
}

.sidebar-videos article.post {
  padding: 15px;
  background: #fff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px #cccccc37;
}

.sidebar-videos button.slick-prev.slick-arrow,
.sidebar-videos button.slick-next.slick-arrow {
  display: none !important;
}

@media (max-width: 991px) {
  .sidebar-pomplet {
    text-align: center;
  }
}

.blog-single .para-content {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  border-top: 1px dashed #f1f1f1;
  padding-top: 15px;
}

.blog-single .para-content span a {
  font-size: 14px;
  font-style: italic;
}

.blog-single .blog-quote {
  position: relative;
  text-align: center;
  z-index: 10;
  padding: 60px 40px 30px;
  border-radius: 0px;
  overflow: hidden;
}

.blog-single .blog-quote:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #162241;
  z-index: -1;
}

.blog-single .blog-quote p {
  font-size: 28px;
  line-height: 1.3;
  margin-top: 50px;
}

.blog-single .blog-quote span {
  font-size: 18px;
  font-style: italic;
}

.blog-single .blog-quote i {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30px;
  height: 75px;
  width: 75px;
  text-align: center;
  line-height: 75px;
  background: #fff;
  color: #162241;
  border-radius: 50%;
  margin-bottom: 20px;
}

.blog-single .blog-quote i:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 1px dashed #fff;
}

.blog-single .blog-share {
  padding: 20px;
  background: #fff;
}

.blog-single .blog-share .blog-share-tag ul li {
  display: inline-block;
  margin-bottom: 0;
}

.blog-single .blog-next {
  display: inline-block;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.blog-single .blog-next a {
  width: 50%;
  padding: 20px;
}

.blog-single .blog-next a.float-left {
  background: #bda68c;
}

.blog-single .blog-next .prev,
.blog-single .blog-next .next {
  position: relative;
}

.blog-single .blog-next .prev i,
.blog-single .blog-next .next i {
  position: absolute;
  left: 0;
  top: 6px;
}

.blog-single .blog-next .next i {
  left: inherit;
  right: 0;
}

.blog-single .blog-author {
  padding: 20px;
  border-radius: 0px;
  background: #fff;
}

.blog-single .blog-author .blog-author-item .title span {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.blog-single .blog-author .blog-author-item .blog-thumb img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

.blog-single .blog-author .blog-author-item .blog-thumb:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 125px;
  width: 125px;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 2px dashed #fff;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 2rem;
    position: relative;
  }

  section.login {
    padding-bottom: 0 !important;
  }

  section.login .login-content {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .blog-single .blog-next a {
    width: 100%;
  }

  .blog-single .blog-share {
    display: block !important;
    text-align: center;
  }

  .blog-single .blog-share .header-social {
    margin-top: 1rem;
  }

  .blog-single .blog-author {
    text-align: center;
  }

  .blog-single .blog-author .blog-thumb {
    margin-bottom: 1rem;
  }

  .detail-comments h4,
  .single-comments h4 {
    text-align: center;
  }
}

@media (max-width: 359px) {
  .sidebar-tabs .nav-tabs>li>a {
    padding: 15px 13px;
  }
}

/* Arcticles List */

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/

.section-title__title {
  margin: 0;
  display: inline-block;
  /* Makes the line start from the text */
  line-height: 1.2;
  letter-spacing: 0em;
  text-transform: uppercase;
  font-weight: 500;
}

.title-container {
  display: flex;
  align-items: center;
}

.title-line {
  flex-grow: 1;
  /* Makes the line take up the remaining space */
  height: 2px;
  background-color: #aaa;
  margin-left: 15px;
  /* Adjust spacing */
}

.project-two {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.project-two__container {
  position: relative;
  display: block;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.project-two__carousel {
  position: relative;
  display: block;
}

.project-two__single {
  position: relative;
  display: block;
}

.project-two__img {
  position: relative;
  display: block;
  background-color: #000;
  border-radius: 8px;
}

.project-two__img img {
  width: 100%;
  mix-blend-mode: normal;
  border-radius: 8px;
  transition: transform 500ms ease, mix-blend-mode 500ms ease;
}

.project-two__single:hover .project-two__img img {
  mix-blend-mode: normal;
}

.project-two__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 31px 58px 30px;
  padding-right: 40px;
  transform: scaleY(1);
  /* Ensure it's always visible */
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1;
}

.project-two__single:hover .project-two__hover {
  transform: scaleY(1);
  /* Ensure it's always visible */
}

/* .project-two__hover:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #000;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: -1;
} */

.project-two__tagline {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 20px;
  font-weight: 500;
}

/* .project-two__tagline:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  width: -webkit-fill-available;
  background-color:#6222cc;
} */

.project-two__title {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 24px;
  text-align: right;
}

.project-two__title a {
  color: #897650;
  transition: all 500ms ease;
}

/* .project-two__title a:hover {
  color: yellow;
} */

.project-two__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: #000;
  margin: 0px 2.5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active {
  border: 2px solid #6222cc;
  background-color: #000;
}

.project-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/* Klubs Choice */
/* ========================================= */
/*          Gallery CSS        */
/* ======================================== */
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-item .gallery-image img {
  width: 100%;
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all ease-in-out 0.5s;
  z-index: 2;
}

.gallery .gallery-item .gallery-content ul {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.gallery .gallery-item .gallery-content ul li {
  border: 1px solid #ffffff26;
  color: #fff;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
  line-height: 2;
  display: inline-block;
  border-radius: 50%;
  margin: 0;
  transition: all ease-in-out 0.5s;
}

.gallery .gallery-item .gallery-content ul li a {
  color: #fff;
}

.gallery .gallery-item .gallery-content ul li:hover {
  background: #162241;
  transition: all ease-in-out 0.5s;
}

.gallery .gallery-item:hover .gallery-content {
  top: 0;
  transition: all ease-in-out 0.5s;
}

.gallery .overlay {
  background: transparent;
}

a.lb-close {
  position: absolute;
  top: -30px;
  right: 30px;
}

/* Course List ---------------------------------- */
.course-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  position: relative;
  padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
  border: 1px solid var(--border-color);
  box-shadow: 0px 9px 14px #fbfbfb;
  border-radius: 10px;
  margin-bottom: 30px;
}

.course-list .course-content {
  max-width: 730px;
}

.course-list .course-img {
  min-width: 530px;
}

.course-list .course-img .tag {
  right: unset;
  left: 20px;
}

.course-list .course-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.333;
}

.course-list .course-meta {
  max-width: 560px;
}

.course-list .course-author {
  max-width: 360px;
  margin-bottom: 17px;
}

.course-list .course-text {
  margin-bottom: 20px;
}

/* Large devices */
@media (max-width: 1199px) {
  .course-list .course-img {
    display: none;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .course-list .course-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .course-list .course-author {
    max-width: 360px;
    margin-bottom: 10px;
  }

  .course-list .course-text {
    margin-bottom: 15px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .course-list {
    --blog-space-x: 20px;
  }

  .course-list .course-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px 10px;
  }
}

/* Course Details ---------------------------------- */
.course-tags a {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 999px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.course-tags a:hover {
  background-color: var(--theme-color2);
}

.course-single-meta {
  padding: 0;
  margin: 0;
  /* Small devices */
}

.course-single-meta li {
  list-style: none;
  display: inline-block;
  /* Small devices */
  /* Extra small devices */
}

.course-single-meta li:not(:last-child) {
  margin-right: 50px;
  padding-right: 50px;
  position: relative;
  border-right: 1px solid #d0dbe9;
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .course-single-meta li:not(:last-child) {
    margin-right: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1299px) {
  .course-single-meta li:not(:last-child) {
    margin-right: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 1199px) {
  .course-single-meta li:not(:last-child) {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 375px) {
  .course-single-meta li:not(:last-child) {
    display: block;
  }
}

@media (max-width: 767px) {
  .course-single-meta li {
    width: 40%;
    margin-bottom: 20px;
  }
}

@media (max-width: 375px) {
  .course-single-meta li {
    width: auto;
  }
}

.course-single-meta li.course-single-meta-author {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.course-single-meta li.course-single-meta-author img {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  max-width: 40px;
  border-radius: 50%;
}

.course-single-meta li .meta-title {
  display: block;
  font-size: 14px;
  font-family: var(--body-font);
}

.course-single-meta li a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--title-color);
}

.course-single-meta li a:hover {
  color: var(--theme-color);
}

.course-single-meta li .course-rating {
  font-size: 16px;
}

@media (max-width: 767px) {
  .course-single-meta {
    margin-bottom: -20px;
  }
}

.course-tab {
  gap: 1px;
  position: relative;
}

.course-tab .nav-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--smoke-color);
  padding: 20px 20px;
  color: var(--body-color);
  width: 100%;
  text-align: center;
  border-top: 5px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.course-tab .nav-link:hover,
.course-tab .nav-link.active {
  color: var(--theme-color);
}

.course-tab .nav-link.active {
  background: transparent;
  border-top: 5px solid var(--theme-color);
}

.course-tab .nav-link i {
  margin-right: 8px;
}

.course-tab .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.course-tab .indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px !important;
  background-color: var(--theme-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.author-meta {
  margin-bottom: 18px;
}

.author-meta a,
.author-meta span {
  color: var(--title-color);
  margin-right: 20px;
  font-weight: 500;
}

.author-meta a i,
.author-meta span i {
  margin-right: 8px;
  color: var(--theme-color);
}

.author-meta a:hover,
.author-meta span:hover {
  color: var(--theme-color);
}

.author-meta a:last-child,
.author-meta span:last-child {
  margin-right: 0;
}

.course-description {
  padding: var(--blog-space-y, 35px) var(--blog-space-x, 40px);
}

.course-description>p:last-of-type {
  margin-bottom: 0;
}

.course-curriculam {
  padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
}

.course-instructor {
  padding: 0 var(--blog-space-x, 40px) 0 var(--blog-space-x, 40px);
  width: 100%;
}

.course-Reviews .th-comments-wrap {
  margin: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
}

.course-Reviews .th-comment-form {
  margin-top: 0;
  margin-bottom: 0;
  padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
  margin-left: -1px;
  margin-right: -1px;
}

.course-single-top {
  position: relative;
  margin-bottom: var(--blog-space-y, 40px);
  padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
  border: 1px solid var(--border-color);
  box-shadow: 0px 9px 14px #fbfbfb;
  border-radius: 10px;
}

.course-single .course-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.278;
  margin-bottom: 25px;
  margin-top: 15px;
  /* Medium Large devices */
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .course-single .course-title {
    font-size: 30px;
  }
}

@media (max-width: 1299px) {
  .course-single .course-title {
    font-size: 28px;
  }
}

.course-single .course-img {
  margin-bottom: var(--blog-space-y, 40px);
  border-radius: 10px;
}

.course-single .course-img .tag {
  top: 30px;
  left: 30px;
}

.course-single .course-tags {
  margin-bottom: 15px;
}

.course-single-bottom {
  position: relative;
  margin-bottom: var(--blog-space-y, 40px);
  border: 1px solid var(--border-color);
  box-shadow: 0px 9px 14px #fbfbfb;
  border-radius: 10px;
  padding-bottom: 10px;
  overflow: hidden;
}

/* Large devices */
@media (max-width: 1199px) {
  .course-single {
    --blog-space-x: 20px;
  }

  .course-single .course-title {
    font-size: 30px;
  }

  .course-single-meta .text-theme {
    display: none;
  }

  .course-single-meta>a,
  .course-single-meta>span,
  .course-single-meta>div {
    font-size: 14px;
    margin-right: 5px;
    padding-right: 10px;
  }

  .course-author-box .auhtor-img {
    min-height: 100%;
    max-width: 200px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .course-single {
    --blog-space-x: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .course-single {
    --blog-space-x: 20px;
  }

  .course-single .course-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .course-single .course-img {
    margin-bottom: 25px;
  }

  .course-single .course-img img {
    min-height: 230px;
    object-fit: cover;
  }

  .course-tab .nav-link i {
    margin-right: 0;
    display: block;
  }

  .course-single-meta>a,
  .course-single-meta>span,
  .course-single-meta>div {
    padding-right: 5px;
  }

  .course-single-meta>a i,
  .course-single-meta>span i,
  .course-single-meta>div i {
    margin-right: 5px;
  }

  .course-single-meta>a:after,
  .course-single-meta>span:after,
  .course-single-meta>div:after {
    display: none;
  }

  .course-author-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .course-author-box .auhtor-img {
    min-height: 100%;
    max-width: 100%;
  }

  .course-author-box .auhtor-img img {
    width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .course-tab .nav-link {
    padding: 12px;
  }

  .course-author-box .media-body {
    padding: 35px 20px 35px 20px;
  }
}

@media (max-width: 460px) {
  .course-tab .nav-item {
    -webkit-flex-basis: 49%;
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .course-single .course-title {
    font-size: 20px;
  }
}

/* Klubs Choice */

/* background color code */
.mb-n11 {
  margin-bottom: -11rem !important;
}

.post-content {
  font-family: "Poppins", sans-serif;
}

.bg-brown {
  background: #cec0b2;
}

.bg-darkgrey {
  background: #4f4f4f;
}

.white {
  color: #fff !important;
}

.bg-blue {
  background: #0791be !important;
}

.bg-green {
  background: #777d71;
}

.text-brown {
  color: #50493c;
}

.text-nude {
  color: #f1d5b7;
}

.text-grey {
  color: #777d71;
}

.text-light-brown {
  color: #bda68c;
}

.text-gold {
  color: #897650;
}

.text-light-green {
  color: #b2b5b0;
}

.bg-btn {
  background: #897650;
}

/*pagination*/
.pagination-main {
  line-height: 0.8;
}

.pagination-main .pagination {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

.pagination-main .pagination li {
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.pagination-main .pagination li:before,
.pagination-main .pagination li:after {
  display: none;
}

.pagination-main .pagination li a {
  padding: 0;
  height: 40px;
  line-height: 38px;
  margin-right: 9px;
  text-align: center;
  width: 40px;
  color: #3f3f3f;
  font-size: 12px;
  border: 1px solid #f1f1f1;
  display: inline-block;
  background: #fbfbfb;
  background: #fff;
}

.pagination-main .pagination li a:hover,
.pagination-main .pagination li a:focus {
  background-color: #162241;
  color: #fff !important;
  border-color: #162241;
}

.pagination-main .pagination li:last-child>a,
.pagination-main .pagination li:last-child>span {
  border-radius: none;
  margin: 0;
}

.pagination-main .pagination li.active a {
  background: #162241 !important;
  border-color: #162241 !important;
  color: #fff;
}

.pagination-main .pagination .prev a,
.pagination-main .pagination .next a {
  border-radius: 0px;
}

@media (max-width: 567px) {
  .pagination li a {
    height: 30px;
    width: 30px;
    line-height: 28px;
  }
}

@media (max-width: 359px) {
  .pagination li a {
    height: 28px;
    width: 28px;
    line-height: 28px;
  }
}

/* ========================================= */
/*          Contact Page CSS        */
/* ======================================== */
.contact-info h2 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
}

.contact-info p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.contact-main .contact-info .info-item {
  position: relative;
  padding: 20px;
}

.contact-main .contact-info .info-item .box-table li {
  font-size: 16px;
  font-weight: 500;
  list-style-type: none;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.contact-main .contact-info .info-item .box-table li span {
  color: #162241;
  float: right;
}

.contact-main .contact-info .info-item .box-table li::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 50px;
  border: 1px dashed #737373;
  top: 12px;
  left: 0;
  right: 0;
  margin: auto;
}

.contact-main .contact-info .info-item .box-table li:last-child {
  margin-bottom: 0;
}

.contact-main .contact-info .info-item .info-icon i {
  font-size: 32px;
  color: #fff;
  border-radius: 50%;
  background: #897650;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 2.2;
}

.contact-main .contact-map .map-main {
  border-radius: 15px;
  overflow: hidden;
}

.contact-main .contact-map .contact-form {
  background: #3f3f3f;
  padding: 30px;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .contact-main .contact-map .contact-form {
    margin-top: 2rem;
  }
}

/* Search button */
/*Fullpage search*/
.search-main {
  position: absolute;
  top: 45%;
  right: 60px;
  z-index: 1;
}


#search1 {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
}

#search1 input[type="search"] {
  position: absolute;
  top: 35%;
  width: 50%;
  color: #777;
  background: transparent;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  border-width: 0 0 1px;
  margin: 0px auto;
  padding: 20px 30px;
  outline: none;
  margin-bottom: 30px;
  height: 82px;
  left: 0;
  right: 0;
  border-radius: 0;
  border-bottom: 1px solid #f1f1f1;
}

#search1 .btn {
  position: absolute;
  top: 55%;
  left: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #cec0b2;
  padding: 10px 30px;
  border: none;
  border-radius: 0px;
  font-size: 18px;
}

#search1 .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  background-color: #ff1949;
  border-color: #ff1949;
  opacity: 1;
  padding: 6px 12px;
  border-radius: 0px;
  font-size: 27px;
}

#search1.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}
/*pagination*/
    .pagination-main>.active>a {
        background-color: #897650;
        border-color: #0c2149;
        position: relative;
        float: left;
        padding: 6px 12px;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #000;
        text-decoration: none;
        border: 1px solid #ddd;
    }

    .pagination-main>a:last-child>a,
    .pagination-main>a:last-child>span {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .pagination-main>a {
        position: relative;
        float: left;
        padding: 6px 12px;
        margin-left: -1px;
        line-height: 1.42857143;
        border: 1px solid #ddd;
        color: #897650;
    }

    .pagination-main>strong {
        position: relative;
        float: left;
        padding: 6px 12px;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #fff;
        text-decoration: none;
        background-color: #897650;
        border: 1px solid #ddd;
    }
