/*----------------------------------------------------
@File: Default Styles
@Author: Rocky Ahmed
@URL: http://wethemez.com
@Developed By: Rocky Ahmed
Author E-mail: rockybd1995@gmail.com

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.
---------------------------------------------------- */
/*=====================================================================
@Default Styles

Table of Content:
01/ Variables
02/ predefin
03/ header
04/ button
05/ banner
06/ breadcrumb
07/ about
08/ team
09/ project 
10/ price 
11/ team 
12/ blog 
13/ video  
14/ features  
15/ career  
16/ contact 
17/ footer

=====================================================================*/
/*----------------------------------------------------*/
/*font Variables*/
/*Color Variables*/
/*=================== fonts ====================*/
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:700|Roboto:400,400i,500");
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
body {
  line-height: 27px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #777777; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #beb7b7; }

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

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  a:hover, a:focus {
    text-decoration: none;
    outline: none; }

.row.m0 {
  margin: 0px; }

button:focus {
  outline: none;
  box-shadow: none; }

/*---------------------------------------------------- */
/*----------------------------------------------------*/
.section_gap {
  padding: 120px 0; }
  @media (max-width: 991px) {
    .section_gap {
      padding: 80px 0; } }

.section_gap_top {
  padding-top: 120px; }
  @media (max-width: 991px) {
    .section_gap_top {
      padding-top: 80px; } }

.section_gap_bottom {
  padding-bottom: 120px; }
  @media (max-width: 991px) {
    .section_gap_bottom {
      padding-bottom: 80px; } }

.mt-25 {
  margin-top: 25px; }

.p0 {
  padding-left: 0px;
  padding-right: 0px; }

.overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px; }

@media (min-width: 992px) {
  .header_area.home_menu {
    display: none; }
    .header_area.home_menu + section, .header_area.home_menu + row, .header_area.home_menu + div {
      margin-top: 0px; } }
/* Main Title Area css
============================================================================================ */
.main_title {
  margin-bottom: 70px; }
  @media (max-width: 991px) {
    .main_title {
      margin-bottom: 40px; } }
  @media (max-width: 480px) {
    .main_title {
      margin-bottom: 30px; } }
  .main_title h1 {
    font-size: 48px;
    text-transform: capitalize;
    margin-bottom: 30px; }
    @media (max-width: 991px) {
      .main_title h1 {
        font-size: 36px; } }
  .main_title p {
    margin-bottom: 0; }

/* End Main Title Area css
============================================================================================ */
/* Start video button css
============================================================================================ */
.video-play-button {
  position: relative;
  box-sizing: content-box;
  display: inline-block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 30px 8px 18px 28px; }
  @media (max-width: 991px) {
    .video-play-button {
      padding: 40px 8px 18px 28px; } }
  .video-play-button:before, .video-play-button:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%; }
    @media (max-width: 991px) {
      .video-play-button:before, .video-play-button:after {
        width: 70px;
        height: 70px; } }
  .video-play-button:before {
    z-index: 0;
    -webkit-animation: pulse-border 2000ms ease-out infinite;
    -moz-animation: pulse-border 2000ms ease-out infinite;
    -o-animation: pulse-border 2000ms ease-out infinite;
    animation: pulse-border 2000ms ease-out infinite;
    background: #fff; }
  .video-play-button:after {
    z-index: 1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    box-shadow: 0px 10px 30px rgba(39, 0, 110, 0.3);
    background: #4681ff; }
  .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 20px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent; }
    @media (max-width: 991px) {
      .video-play-button span {
        border-left: 15px solid #ffffff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent; } }

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1; } }
@-moz-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1; } }
@-o-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1; } }
@keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1; } }
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* =================================== */
/*  Start Header Area CSS
/* =================================== */
.canvus_menu {
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10;
  min-height: 80px;
  width: 100%; }
  .canvus_menu .toggle_icon {
    cursor: pointer;
    position: relative;
    height: 20px;
    width: 30px;
    top: 30px;
    left: 0;
    z-index: 99;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: inline-block;
    background: #ffffff00; }
    .canvus_menu .toggle_icon span {
      height: 2px;
      width: 30px;
      display: block;
      background: #000000;
      cursor: pointer;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      .canvus_menu .toggle_icon span:before {
        content: "";
        height: 2px;
        width: 25px;
        display: block;
        background: #000000;
        left: 0px;
        top: 20px;
        position: absolute;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
      .canvus_menu .toggle_icon span:after {
        content: "";
        height: 2px;
        width: 20px;
        display: block;
        background: #000000;
        left: 0px;
        bottom: 8px;
        position: absolute;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }

.side_menu {
  position: fixed;
  left: -500px;
  top: 0px;
  width: 100%;
  background: #fff;
  max-width: 500px;
  padding: 130px 115px;
  z-index: 999;
  box-shadow: 0px 20px 50px rgba(70, 129, 255, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 575px) {
    .side_menu {
      max-width: 300px;
      padding: 20px 15px; } }
  .side_menu .logo {
    margin-bottom: 100px; }
    @media (max-width: 991px) {
      .side_menu .logo {
        margin-bottom: 30px; } }
  .side_menu .menu-left {
    max-height: 420px; }
    @media (max-width: 1440px) {
      .side_menu .menu-left {
        margin-top: 20px; } }
    .side_menu .menu-left li {
      margin-bottom: 25px; }
      @media (max-width: 1440px) {
        .side_menu .menu-left li {
          margin-bottom: 15px; } }
      .side_menu .menu-left li:last-child {
        margin-bottom: 0px; }
      .side_menu .menu-left li a,
      .side_menu .menu-left li .dropdown-toggle {
        cursor: pointer;
        font-size: 18px;
        font-weight: 500;
        color: #222222;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
        .side_menu .menu-left li a:hover,
        .side_menu .menu-left li .dropdown-toggle:hover {
          color: #614f34; }
      .side_menu .menu-left li .dropdown-toggle {
        background: transparent;
        border: 0;
        padding: 0; }
        .side_menu .menu-left li .dropdown-toggle:focus {
          outline: none; }
        .side_menu .menu-left li .dropdown-toggle:after {
          content: none; }
      .side_menu .menu-left li .dropdown-menu {
        top: -36px !important;
        left: 110px !important;
        border: 0;
        background: #614f34;
        border-radius: 0px; }
        .side_menu .menu-left li .dropdown-menu a {
          color: #fff;
          font-size: 14px; }
        .side_menu .menu-left li .dropdown-menu.show:after {
          content: "\f178";
          font: normal normal normal 14px/1 FontAwesome;
          position: absolute;
          top: 18px;
          left: -22%;
          color: #000;
          -webkit-transform: scaleX(3);
          -moz-transform: scaleX(3);
          -ms-transform: scaleX(3);
          -o-transform: scaleX(3);
          transform: scaleX(3); }
        .side_menu .menu-left li .dropdown-menu .dropdown-item {
          background: transparent; }
          .side_menu .menu-left li .dropdown-menu .dropdown-item:hover {
            opacity: 0.7; }

.open .side_menu {
  left: 0px; }
.open .canvus_menu {
  z-index: 999;
  position: fixed; }
  .open .canvus_menu .toggle_icon {
    left: 50px; }
    @media (max-width: 1440px) {
      .open .canvus_menu .toggle_icon {
        left: 240px; } }
    @media (max-width: 575px) {
      .open .canvus_menu .toggle_icon {
        left: 240px; } }
    .open .canvus_menu .toggle_icon span {
      background: transparent !important; }
      .open .canvus_menu .toggle_icon span:before {
        width: 25px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 9px;
        left: 3px;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
      .open .canvus_menu .toggle_icon span:after {
        width: 25px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        left: 3px;
        top: 9px;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }

/* =================================== */
/*   End Header Area CSS
/* =================================== */
.top-btn-area {
  padding: 25px 0;
  text-align: right; }
  @media (max-width: 575px) {
    .top-btn-area .main_btn {
      margin-right: 30px; } }

/* Home Banner Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Home Banner Area css
============================================================================================ */
.home-banner-area {
  background: #ffffff;
  position: relative; }
  .home-banner-area .owl-nav {
    right: 58%;
    position: absolute;
    bottom: 30px;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media (max-width: 991px) {
      .home-banner-area .owl-nav {
        display: none; } }
    .home-banner-area .owl-nav .owl-prev {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
      position: relative;
      top: 3px;
      margin-right: 40px; }
    .home-banner-area .owl-nav .owl-prev, .home-banner-area .owl-nav .owl-next {
      -webkit-filter: brightness(0) invert(1);
      -moz-filter: brightness(0) invert(1);
      -ms-filter: brightness(0) invert(1);
      -o-filter: brightness(0) invert(1);
      filter: brightness(0) invert(1);
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      opacity: .4; }
      .home-banner-area .owl-nav .owl-prev:hover, .home-banner-area .owl-nav .owl-next:hover {
        opacity: 1; }

@media (max-width: 767px) {
  .fullscreen {
    height: 100% !important; } }
.header-left {
  position: relative;
  padding-right: 0px; }
  @media (max-width: 767px) {
    .header-left {
      display: none; } }
  .header-left .video-popup {
    position: absolute;
    bottom: 110px;
    left: -15px; }
    @media (max-width: 991px) {
      .header-left .video-popup {
        bottom: 60px; } }
    .header-left .video-popup .watch {
      color: #fff;
      padding-left: 50px; }
      .header-left .video-popup .watch h5 {
        font-size: 18px;
        color: #fff; }
      .header-left .video-popup .watch p {
        text-transform: uppercase;
        font-size: 12px;
        margin: 0; }

.header-right {
  padding-left: 20%;
  padding-right: 9.5%; }
  .header-right h1 {
    margin-bottom: 30px; }
  @media (max-width: 1680px) {
    .header-right {
      padding-left: 17%;
      padding-right: 6%; } }
  @media (max-width: 1440px) {
    .header-right {
      padding-left: 12%;
      padding-right: 11%; } }
  @media (max-width: 1380px) {
    .header-right {
      padding-left: 10%; } }
  @media (max-width: 1199px) {
    .header-right {
      padding-left: 12%;
      padding-right: 6%; } }
  @media (max-width: 1024px) {
    .header-right {
      padding-left: 5%; } }
  @media (max-width: 991px) {
    .header-right {
      padding-left: 15%;
      padding-right: 0; } }
  @media (max-width: 767px) {
    .header-right {
      position: relative;
      background: url(../img/singita-furu-faru.webp) center no-repeat;
      background-size: cover;
      padding: 100px 120px;
      z-index: 1; }
      .header-right:after {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #000;
        content: "";
        opacity: .2;
        z-index: -1; }
      .header-right h1 {
        color: #fff;
        margin-bottom: 30px; }
      .header-right p {
        color: #fff; }
      .header-right .main_btn {
        color: #fff;
        margin-top: 20px; }
        .header-right .main_btn img {
          -webkit-filter: invert(1);
          -moz-filter: invert(1);
          -ms-filter: invert(1);
          -o-filter: invert(1);
          filter: invert(1); } }
  @media (max-width: 570px) {
    .header-right {
      padding: 80px 15px; } }
  .header-right h1 {
    font-size: 60px;
    line-height: 1;
    font-weight: 400; }
    @media (max-width: 1440px) {
      .header-right h1 {
        font-size: 45px; } }
    @media (max-width: 991px) {
      .header-right h1 {
        font-size: 35px; } }
    @media (max-width: 1440px) {
      .header-right h1 br {
        display: none; } }
  .header-right .main_btn {
    margin-top: 20px; }

/* common banner Area css
============================================================================================ */
.home-banner-area.common-banner {
  max-height: 450px; }
  @media (max-width: 1920px) {
    .home-banner-area.common-banner .header-right {
      padding-right: 7.5%; } }
  @media (max-width: 1024px) {
    .home-banner-area.common-banner .header-right {
      padding-right: 3%; } }
  @media (max-width: 991px) {
    .home-banner-area.common-banner .header-right {
      padding-right: 0; } }
  .home-banner-area.common-banner .header-right .page-link-wrap {
    position: relative;
    padding: 0px 25px;
    line-height: 48px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #f8b600;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 20px; }
    .home-banner-area.common-banner .header-right .page-link-wrap img {
      position: absolute;
      top: 50%;
      right: -30px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
      @media (max-width: 767px) {
        .home-banner-area.common-banner .header-right .page-link-wrap img {
          -webkit-filter: invert(1);
          -moz-filter: invert(1);
          -ms-filter: invert(1);
          -o-filter: invert(1);
          filter: invert(1); } }
    .home-banner-area.common-banner .header-right .page-link-wrap .page_link a {
      font-size: 14px;
      color: #222222;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      margin-right: 30px;
      position: relative;
      text-transform: capitalize; }
      @media (max-width: 767px) {
        .home-banner-area.common-banner .header-right .page-link-wrap .page_link a {
          color: #fff; } }
      .home-banner-area.common-banner .header-right .page-link-wrap .page_link a:before {
        content: "\f178";
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%); }
      .home-banner-area.common-banner .header-right .page-link-wrap .page_link a:last-child {
        margin-right: 0px; }
        .home-banner-area.common-banner .header-right .page-link-wrap .page_link a:last-child:before {
          display: none; }

/* Blog Area css
============================================================================================ */
.home_slider .swiper-slide {
  position: relative; }
  .home_slider .swiper-slide .slider_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
    opacity: 0;
    transition: all 4s ease;
    text-align: center; }
    .home_slider .swiper-slide .slider_text h1 {
      text-transform: capitalize;
      color: #ffffff;
      font-size: 80px;
      font-weight: 300;
      margin-bottom: 30px; }
    .home_slider .swiper-slide .slider_text p {
      color: #ffffff;
      max-width: 516px;
      margin: 0 auto;
      font-size: 14px;
      margin-bottom: 50px; }
  .home_slider .swiper-slide.swiper-slide-active .slider_text {
    opacity: 1; }

/* End Blog Area css
============================================================================================ */
/* Banner Area css
============================================================================================ */
.banner_area {
  position: relative;
  z-index: 1;
  min-height: 400px; }

/* End Banner Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*Popular area css
==========================================*/
.popular-place-area {
  margin-bottom: 20px; }
  @media (max-width: 1024px) {
    .popular-place-area {
      margin-bottom: 0; } }
  .popular-place-area .left-content {
    position: relative; }
    @media (max-width: 1024px) {
      .popular-place-area .left-content img {
        max-width: 80%; }
      .popular-place-area .left-content .img2 {
        max-width: 50%;
        top: 5% !important; }
      .popular-place-area .left-content .img3 {
        right: 70% !important;
        max-width: 50%; } }
    @media (max-width: 991px) {
      .popular-place-area .left-content {
        display: none; } }
    .popular-place-area .left-content .img2 {
      position: absolute;
      left: 50%;
      top: 2%; }
    .popular-place-area .left-content .img3 {
      position: absolute;
      right: 30%;
      bottom: -10%; }
  .popular-place-area .right-content .main_title {
    padding-right: 30px; }

@media (max-width: 615px) {
  .counter_area {
    text-align: center; } }
.counter_area .top-two {
  margin-bottom: 30px; }
  @media (max-width: 991px) {
    .counter_area .top-two {
      display: inline; } }
@media (max-width: 991px) {
  .counter_area .bottom-two {
    display: inline; } }
.counter_area .single_counter {
  text-align: center;
  padding: 30px;
  border: 1px solid #eeeeee;
  display: inline-block;
  height: 180px;
  width: 165px;
  margin-right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 1024px) {
    .counter_area .single_counter {
      width: 150px; } }
  @media (max-width: 991px) {
    .counter_area .single_counter {
      height: 150px;
      width: 138px;
      padding: 15px; }
      .counter_area .single_counter:last-child {
        margin-top: 30px; } }
  @media (max-width: 767px) {
    .counter_area .single_counter {
      margin-right: 25px; } }
  @media (max-width: 400px) {
    .counter_area .single_counter {
      width: 100%;
      margin-right: 0; }
      .counter_area .single_counter:nth-child(2) {
        margin-bottom: 30px; } }
  .counter_area .single_counter .thumb {
    margin-bottom: 20px; }
    .counter_area .single_counter .thumb img {
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
  .counter_area .single_counter .info-content h4 {
    font-size: 24px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 10px; }
  .counter_area .single_counter:hover {
    background: #614f34;
    color: #fff;
    border: 1px solid transparent; }
    .counter_area .single_counter:hover .thumb img {
      -webkit-filter: brightness(0) invert(1);
      -moz-filter: brightness(0) invert(1);
      -ms-filter: brightness(0) invert(1);
      -o-filter: brightness(0) invert(1);
      filter: brightness(0) invert(1); }
    .counter_area .single_counter:hover .info-content h4 {
      color: #fff; }

/* Start Packages Area css
============================================================================================ */
@media (max-width: 991px) {
  .package-area {
    margin-bottom: 50px; } }
@media (max-width: 767px) {
  .package-area {
    margin-bottom: 125px; } }
@media (max-width: 480px) {
  .package-area {
    margin-bottom: 80; } }
.package-area .main_title {
  margin-bottom: 0;
  padding-left: 50%; }
  @media (max-width: 1680px) {
    .package-area .main_title {
      padding-left: 40%; } }
  @media (max-width: 1440px) {
    .package-area .main_title {
      padding-left: 30%; } }
  @media (max-width: 1380px) {
    .package-area .main_title {
      padding-left: 24%; } }
  @media (max-width: 1024px) {
    .package-area .main_title {
      padding-left: 8%; } }
  @media (max-width: 991px) {
    .package-area .main_title {
      padding-left: 12%;
      padding-right: 12%;
      margin-bottom: 50px; } }
  @media (max-width: 570px) {
    .package-area .main_title {
      padding-left: 0;
      padding-right: 0; } }
  .package-area .main_title p {
    padding-bottom: 15px; }
  .package-area .main_title .main_btn {
    margin-top: 20px; }

.active-gallery-carousel {
  text-align: center; }
  .active-gallery-carousel .owl-nav {
    left: -52%;
    position: absolute;
    right: 56%;
    bottom: 10%;
    transform: rotate(-90deg); }
    @media (max-width: 991px) {
      .active-gallery-carousel .owl-nav {
        left: 0;
        bottom: -60px;
        transform: rotate(0deg); } }
    @media (max-width: 480px) {
      .active-gallery-carousel .owl-nav {
        display: none; } }
    .active-gallery-carousel .owl-nav .owl-prev, .active-gallery-carousel .owl-nav .owl-next {
      display: inline-block;
      margin: 20px;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      opacity: 1; }
      .active-gallery-carousel .owl-nav .owl-prev:hover, .active-gallery-carousel .owl-nav .owl-next:hover {
        opacity: .5; }

.single-gallery {
  position: relative;
  display: inline-block;
  text-align: left; }
  .single-gallery img {
    width: 100%; }
  .single-gallery:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .single-gallery .gallery-content {
    position: absolute;
    padding: 30px;
    left: -10%;
    bottom: -20%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .single-gallery .gallery-content h4 {
      color: #fff;
      font-size: 24px;
      margin-bottom: 20px; }
    .single-gallery .gallery-content .title {
      margin-bottom: 15px; }
      .single-gallery .gallery-content .title p {
        color: #f8b600;
        margin: 0; }
      .single-gallery .gallery-content .title h4 {
        font-size: 24px;
        margin: 15px; }
    .single-gallery .gallery-content .review-title p {
      color: #fff;
      margin: 0; }
    .single-gallery .gallery-content .review-title .review i.fa {
      color: #f9af11; }
  .single-gallery .light-box {
    position: absolute;
    top: 30px;
    right: -10px;
    background: #fff;
    z-index: 999;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .single-gallery:hover:after {
    opacity: .65;
    visibility: visible; }
  .single-gallery:hover .gallery-content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    left: 0; }
  .single-gallery:hover .light-box {
    right: 30px;
    top: 30px;
    opacity: 1;
    visibility: visible; }

/* Start Amenities Area css
============================================================================================ */
.amenities-area {
  position: relative; }
  .amenities-area:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 39.5%;
    background: #f9f9ff;
    content: ""; }
    @media (max-width: 1024px) {
      .amenities-area:before {
        height: 41.5%; } }
    @media (max-width: 991px) {
      .amenities-area:before {
        height: 54.5%; } }
    @media (max-width: 767px) {
      .amenities-area:before {
        height: 100%; } }

.single-amenities {
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 991px) {
    .single-amenities {
      margin-bottom: 30px; } }
  .single-amenities .amenities-thumb {
    position: relative;
    overflow: hidden; }
    @media (max-width: 575px) {
      .single-amenities .amenities-thumb img {
        width: 100%; } }
    .single-amenities .amenities-thumb:before {
      position: absolute;
      content: "";
      background: rgba(255, 255, 255, 0.4);
      z-index: 999;
      left: 110%;
      top: 0;
      height: 100%;
      width: 130%;
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
  .single-amenities .amenities-details {
    padding: 25px; }
    .single-amenities .amenities-details .amenities-meta {
      margin-top: 15px; }
      .single-amenities .amenities-details .amenities-meta span {
        padding-right: 15px;
        text-transform: uppercase; }
        .single-amenities .amenities-details .amenities-meta span i.fa {
          padding-right: 10px; }
    .single-amenities .amenities-details h5 {
      font-size: 18px;
      font-family: "Playfair Display", serif;
      margin: 15px 0px 15px; }
      .single-amenities .amenities-details h5 a {
        color: #222222;
        font-size: 18px;
        line-height: 27px; }
  .single-amenities:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent; }
    .single-amenities:hover .amenities-thumb:before {
      left: -130%; }

/* Start Package Search Area css
============================================================================================ */
.package-search-area .main_title p {
  margin-bottom: 15px; }

.contact-form-section {
  position: relative;
  background: url(../img/pac-search-bg.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
  padding: 70px 50px;
  z-index: 1; }
  @media (max-width: 400px) {
    .contact-form-section {
      padding: 70px 10px; } }
  .contact-form-section:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #000;
    opacity: .5;
    z-index: -1; }
  .contact-form-section h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff; }
  .contact-form-section .contact-form-area .form-group {
    position: relative; }
    .contact-form-section .contact-form-area .form-group .ui-datepicker-trigger {
      position: absolute;
      top: 15px;
      right: 30px;
      cursor: pointer; }
  .contact-form-section .contact-form-area .form-control {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 20px;
    font-size: 13px;
    background: transparent;
    border-radius: 0; }
    .contact-form-section .contact-form-area .form-control.placeholder {
      color: #fff !important; }
    .contact-form-section .contact-form-area .form-control:-moz-placeholder {
      color: #fff !important; }
    .contact-form-section .contact-form-area .form-control::-moz-placeholder {
      color: #fff !important; }
    .contact-form-section .contact-form-area .form-control::-webkit-input-placeholder {
      color: #fff !important; }
    .contact-form-section .contact-form-area .form-control:focus {
      outline: none;
      box-shadow: none; }
  .contact-form-section .primary-btn {
    margin-top: 20px; }
  .contact-form-section .form-select .nice-select {
    padding: 0px;
    background: transparent !important;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    height: 50px; }
    .contact-form-section .form-select .nice-select:after {
      border-color: #fff; }
    .contact-form-section .form-select .nice-select span {
      color: #fff; }
    .contact-form-section .form-select .nice-select .list {
      z-index: 999; }
      .contact-form-section .form-select .nice-select .list .option.selected {
        color: #f8b600; }
      .contact-form-section .form-select .nice-select .list .option:hover {
        color: #f8b600; }
  .contact-form-section .main_btn {
    border-color: #614f34;
    color: #fff;
    cursor: pointer;
    margin-top: 30px; }
    .contact-form-section .main_btn img {
      -webkit-filter: invert(1);
      -moz-filter: invert(1);
      -ms-filter: invert(1);
      -o-filter: invert(1);
      filter: invert(1); }
      @media (max-width: 400px) {
        .contact-form-section .main_btn img {
          display: none; } }
    .contact-form-section .main_btn:hover {
      background: #614f34;
      border-color: #614f34;
      color: #fff; }

/* Start Testimonial Area css
============================================================================================ */
.owl-carousel.active_testimonial img {
  width: auto; }
.owl-carousel.active_testimonial .owl-nav {
  position: absolute;
  left: 0;
  bottom: -40%; }
  @media (max-width: 1024px) {
    .owl-carousel.active_testimonial .owl-nav {
      left: 50%;
      bottom: 0; } }
  @media (max-width: 400px) {
    .owl-carousel.active_testimonial .owl-nav {
      display: none; } }
  .owl-carousel.active_testimonial .owl-nav .owl-prev, .owl-carousel.active_testimonial .owl-nav .owl-next {
    display: inline-block;
    margin: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 1; }
    .owl-carousel.active_testimonial .owl-nav .owl-prev:hover, .owl-carousel.active_testimonial .owl-nav .owl-next:hover {
      opacity: .5; }

.single_testi .quote {
  margin-bottom: 30px; }
.single_testi .testi_content h1 {
  font-size: 42px;
  line-height: 45px;
  margin-bottom: 30px; }
  @media (max-width: 480px) {
    .single_testi .testi_content h1 {
      font-size: 34px; } }
.single_testi .testi_content p {
  font-size: 24px;
  font-style: italic;
  line-height: 30px; }
.single_testi .testi_author {
  margin-top: 30px; }
  .single_testi .testi_author .a-desc {
    display: inline-block; }
    .single_testi .testi_author .a-desc h4 {
      margin-bottom: 5px;
      font-size: 24px; }

@media (max-width: 991px) {
  .testi_img {
    display: none; } }

/* Start Newsletter Area css
============================================================================================ */
.newsletter-area .main_title {
  padding-left: 50%;
  margin-bottom: 0; }
  @media (max-width: 1680px) {
    .newsletter-area .main_title {
      padding-left: 40%; } }
  @media (max-width: 1440px) {
    .newsletter-area .main_title {
      padding-left: 30%; } }
  @media (max-width: 1380px) {
    .newsletter-area .main_title {
      padding-left: 24%; } }
  @media (max-width: 1024px) {
    .newsletter-area .main_title {
      padding-left: 8%; } }
  @media (max-width: 991px) {
    .newsletter-area .main_title {
      padding-left: 12%;
      padding-right: 12%; } }
  @media (max-width: 570px) {
    .newsletter-area .main_title {
      padding-left: 0;
      padding-right: 0; } }
  .newsletter-area .main_title p {
    margin-bottom: 15px; }
  .newsletter-area .main_title .input-group {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-top: 50px; }
    .newsletter-area .main_title .input-group input {
      height: 40px;
      background: #fff;
      border-radius: 0px;
      width: 65%;
      border: none;
      padding: 25px;
      font-size: 14px;
      font-family: "Roboto", sans-serif;
      color: #cccccc;
      outline: none;
      box-shadow: none; }
      .newsletter-area .main_title .input-group input.placeholder {
        font-size: 14px;
        font-family: "Roboto", sans-serif;
        font-weight: normal;
        color: #cccccc; }
      .newsletter-area .main_title .input-group input:-moz-placeholder {
        font-size: 14px;
        font-family: "Roboto", sans-serif;
        font-weight: normal;
        color: #cccccc; }
      .newsletter-area .main_title .input-group input::-moz-placeholder {
        font-size: 14px;
        font-family: "Roboto", sans-serif;
        font-weight: normal;
        color: #cccccc; }
      .newsletter-area .main_title .input-group input::-webkit-input-placeholder {
        font-size: 14px;
        font-family: "Roboto", sans-serif;
        font-weight: normal;
        color: #cccccc; }
      @media (max-width: 420px) {
        .newsletter-area .main_title .input-group input {
          width: 50%; } }
    @media (max-width: 420px) {
      .newsletter-area .main_title .input-group .main_btn img {
        display: none; } }
@media (max-width: 991px) {
  .newsletter-area .nw-img {
    display: none; } }

/* Start Blog Area css
============================================================================================ */
.blog-area {
  position: relative; }
  .blog-area:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60.6%;
    background: #f9f9ff;
    content: ""; }
    @media (max-width: 1024px) {
      .blog-area:before {
        height: 58.6%; } }
    @media (max-width: 991px) {
      .blog-area:before {
        height: 100%; } }

.single-blog {
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 991px) {
    .single-blog {
      margin-bottom: 30px; } }
  .single-blog .blog-thumb {
    position: relative;
    overflow: hidden; }
    @media (max-width: 575px) {
      .single-blog .blog-thumb img {
        width: 100%; } }
    .single-blog .blog-thumb:before {
      position: absolute;
      content: "";
      background: rgba(255, 255, 255, 0.4);
      z-index: 999;
      left: 110%;
      top: 0;
      height: 100%;
      width: 130%;
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
  .single-blog .blog-details {
    padding: 25px; }
    .single-blog .blog-details .blog-meta {
      margin-top: 15px; }
      .single-blog .blog-details .blog-meta .m-gap {
        padding-right: 20px;
        color: #777777; }
        .single-blog .blog-details .blog-meta .m-gap span {
          padding-right: 10px;
          text-transform: uppercase; }
          .single-blog .blog-details .blog-meta .m-gap span i.fa {
            padding-right: 10px; }
    .single-blog .blog-details h5 {
      font-size: 18px;
      margin: 15px 0px 15px; }
      .single-blog .blog-details h5 a {
        color: #222222;
        font-size: 18px;
        line-height: 27px; }
  .single-blog:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent; }
    .single-blog:hover .blog-thumb:before {
      left: -130%; }

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Latest Blog Area css
============================================================================================ */
.l_blog_item .l_blog_text .date {
  margin-top: 24px;
  margin-bottom: 15px; }
  .l_blog_item .l_blog_text .date a {
    color: #777777;
    font-size: 12px;
    font-family: "Roboto", sans-serif; }
.l_blog_item .l_blog_text h4 {
  font-size: 20px;
  color: #222222;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  max-width: 300px; }
  .l_blog_item .l_blog_text h4:hover {
    color: #f8b600; }
.l_blog_item .l_blog_text p {
  margin-bottom: 0px;
  font-size: 14px;
  font-family: "Roboto", sans-serif; }

/* End Latest Blog Area css
============================================================================================ */
/* Causes Area css
============================================================================================ */
.causes_slider .owl-dots {
  text-align: center;
  margin-top: 80px; }
  .causes_slider .owl-dots .owl-dot {
    height: 14px;
    width: 14px;
    background: #eeeeee;
    display: inline-block;
    margin-right: 7px; }
    .causes_slider .owl-dots .owl-dot:last-child {
      margin-right: 0px; }
    .causes_slider .owl-dots .owl-dot.active {
      background: #f8b600; }

.causes_item {
  background: #fff; }
  .causes_item .causes_img {
    position: relative; }
    .causes_item .causes_img .c_parcent {
      position: absolute;
      bottom: 0px;
      width: 100%;
      left: 0px;
      height: 3px;
      background: rgba(255, 255, 255, 0.5); }
      .causes_item .causes_img .c_parcent span {
        width: 70%;
        height: 3px;
        background: #f8b600;
        position: absolute;
        left: 0px;
        bottom: 0px; }
        .causes_item .causes_img .c_parcent span:before {
          content: "75%";
          position: absolute;
          right: -10px;
          bottom: 0px;
          background: #f8b600;
          color: #fff;
          padding: 0px 5px; }
  .causes_item .causes_text {
    padding: 30px 35px 40px 30px; }
    .causes_item .causes_text h4 {
      color: #222222;
      font-family: "Roboto", sans-serif;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      cursor: pointer; }
      .causes_item .causes_text h4:hover {
        color: #f8b600; }
    .causes_item .causes_text p {
      font-size: 14px;
      line-height: 24px;
      color: #777777;
      font-weight: 300;
      margin-bottom: 0px; }
  .causes_item .causes_bottom a {
    width: 50%;
    border: 1px solid #f8b600;
    text-align: center;
    float: left;
    line-height: 50px;
    background: #f8b600;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500; }
    .causes_item .causes_bottom a + a {
      border-color: #eeeeee;
      background: #fff;
      font-size: 14px;
      color: #222222; }

/* End Causes Area css
============================================================================================ */
/*================= latest_blog_area css =============*/
.latest_blog_area {
  background: #f9f9ff; }

.single-recent-blog-post {
  margin-bottom: 30px; }
  .single-recent-blog-post .thumb {
    overflow: hidden; }
    .single-recent-blog-post .thumb img {
      transition: all 0.7s linear; }
  .single-recent-blog-post .details {
    padding-top: 30px; }
    .single-recent-blog-post .details .sec_h4 {
      line-height: 24px;
      padding: 10px 0px 13px;
      transition: all 0.3s linear; }
      .single-recent-blog-post .details .sec_h4:hover {
        color: #777777; }
  .single-recent-blog-post .date {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400; }
  .single-recent-blog-post:hover img {
    transform: scale(1.23) rotate(10deg); }

.tags .tag_btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid #eeeeee;
  display: inline-block;
  padding: 1px 18px;
  text-align: center;
  color: #222222; }
  .tags .tag_btn:before {
    background: #f8b600; }
  .tags .tag_btn + .tag_btn {
    margin-left: 2px; }

/*========= blog_categorie_area css ===========*/
.blog_categorie_area {
  padding-top: 80px;
  padding-bottom: 80px; }

.categories_post {
  position: relative;
  text-align: center;
  cursor: pointer; }
  .categories_post img {
    max-width: 100%; }
  .categories_post .categories_details {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(34, 34, 34, 0.8);
    color: #fff;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
    justify-content: center; }
    .categories_post .categories_details h5 {
      margin-bottom: 0px;
      font-size: 18px;
      line-height: 26px;
      text-transform: uppercase;
      color: #fff;
      position: relative; }
    .categories_post .categories_details p {
      font-weight: 300;
      font-size: 14px;
      line-height: 26px;
      margin-bottom: 0px; }
    .categories_post .categories_details .border_line {
      margin: 10px 0px;
      background: #fff;
      width: 100%;
      height: 1px; }
  .categories_post:hover .categories_details {
    background: rgba(250, 51, 63, 0.85); }

/*============ blog_left_sidebar css ==============*/
.blog_item {
  margin-bottom: 40px; }

.blog_info {
  padding-top: 30px; }
  .blog_info .post_tag {
    padding-bottom: 20px; }
    .blog_info .post_tag a {
      font: 300 14px/21px "Roboto", sans-serif;
      color: #222222; }
      .blog_info .post_tag a:hover {
        color: #777777; }
      .blog_info .post_tag a.active {
        color: #f8b600; }
  .blog_info .blog_meta li a {
    font: 300 14px/20px "Roboto", sans-serif;
    color: #777777;
    vertical-align: middle;
    padding-bottom: 12px;
    display: inline-block; }
    .blog_info .blog_meta li a i {
      color: #222222;
      font-size: 16px;
      font-weight: 600;
      padding-left: 15px;
      line-height: 20px;
      vertical-align: middle; }
    .blog_info .blog_meta li a:hover {
      color: #f8b600; }

.blog_post img {
  max-width: 100%; }

.blog_details {
  padding-top: 20px; }
  .blog_details h2 {
    font-size: 24px;
    line-height: 36px;
    color: #222222;
    font-weight: 600;
    transition: all 0.3s linear; }
    .blog_details h2:hover {
      color: #f8b600; }
  .blog_details p {
    margin-bottom: 26px; }

.view_btn {
  font-size: 14px;
  line-height: 36px;
  display: inline-block;
  color: #222222;
  font-weight: 500;
  padding: 0px 30px;
  background: #fff; }

.blog_right_sidebar {
  border: 1px solid #eeeeee;
  background: #fafaff;
  padding: 30px; }
  .blog_right_sidebar .widget_title {
    font-size: 18px;
    line-height: 25px;
    background: #f8b600;
    text-align: center;
    color: #fff;
    padding: 8px 0px;
    margin-bottom: 30px; }
  .blog_right_sidebar .search_widget .input-group .form-control {
    font-size: 14px;
    line-height: 29px;
    border: 0px;
    width: 100%;
    font-weight: 300;
    color: #fff;
    padding-left: 20px;
    border-radius: 45px;
    z-index: 0;
    background: #f8b600; }
    .blog_right_sidebar .search_widget .input-group .form-control.placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control:-moz-placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control::-moz-placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control::-webkit-input-placeholder {
      color: #fff; }
    .blog_right_sidebar .search_widget .input-group .form-control:focus {
      box-shadow: none; }
  .blog_right_sidebar .search_widget .input-group .btn-default {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0px;
    box-shadow: none;
    font-size: 14px;
    color: #fff;
    padding: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; }
  .blog_right_sidebar .author_widget {
    text-align: center; }
    .blog_right_sidebar .author_widget h4 {
      font-size: 18px;
      line-height: 20px;
      color: #222222;
      margin-bottom: 5px;
      margin-top: 30px; }
    .blog_right_sidebar .author_widget p {
      margin-bottom: 0px; }
    .blog_right_sidebar .author_widget .social_icon {
      padding: 7px 0px 15px; }
      .blog_right_sidebar .author_widget .social_icon a {
        font-size: 14px;
        color: #222222;
        transition: all 0.2s linear; }
        .blog_right_sidebar .author_widget .social_icon a + a {
          margin-left: 20px; }
        .blog_right_sidebar .author_widget .social_icon a:hover {
          color: #f8b600; }
  .blog_right_sidebar .popular_post_widget .post_item .media-body {
    justify-content: center;
    align-self: center;
    padding-left: 20px; }
    .blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
      font-size: 14px;
      line-height: 20px;
      color: #222222;
      margin-bottom: 4px;
      transition: all 0.3s linear; }
      .blog_right_sidebar .popular_post_widget .post_item .media-body h3:hover {
        color: #f8b600; }
    .blog_right_sidebar .popular_post_widget .post_item .media-body p {
      font-size: 12px;
      line-height: 21px;
      margin-bottom: 0px; }
  .blog_right_sidebar .popular_post_widget .post_item + .post_item {
    margin-top: 20px; }
  .blog_right_sidebar .post_category_widget .cat-list li {
    border-bottom: 2px dotted #eee;
    transition: all 0.3s ease 0s;
    padding-bottom: 12px; }
    .blog_right_sidebar .post_category_widget .cat-list li a {
      font-size: 14px;
      line-height: 20px;
      color: #777; }
      .blog_right_sidebar .post_category_widget .cat-list li a p {
        margin-bottom: 0px; }
    .blog_right_sidebar .post_category_widget .cat-list li + li {
      padding-top: 15px; }
    .blog_right_sidebar .post_category_widget .cat-list li:hover {
      border-color: #f8b600; }
      .blog_right_sidebar .post_category_widget .cat-list li:hover a {
        color: #f8b600; }
  .blog_right_sidebar .newsletter_widget {
    text-align: center; }
    .blog_right_sidebar .newsletter_widget .form-group {
      margin-bottom: 8px; }
    .blog_right_sidebar .newsletter_widget .input-group-prepend {
      margin-right: -1px; }
    .blog_right_sidebar .newsletter_widget .input-group-text {
      background: #fff;
      border-radius: 0px;
      vertical-align: top;
      font-size: 12px;
      line-height: 36px;
      padding: 0px 0px 0px 15px;
      border: 1px solid #eeeeee;
      border-right: 0px; }
    .blog_right_sidebar .newsletter_widget .form-control {
      font-size: 12px;
      line-height: 24px;
      color: #cccccc;
      border: 1px solid #eeeeee;
      border-left: 0px;
      border-radius: 0px; }
      .blog_right_sidebar .newsletter_widget .form-control.placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control:-moz-placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control::-moz-placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control::-webkit-input-placeholder {
        color: #cccccc; }
      .blog_right_sidebar .newsletter_widget .form-control:focus {
        outline: none;
        box-shadow: none; }
    .blog_right_sidebar .newsletter_widget .bbtns {
      background: #f8b600;
      color: #fff;
      font-size: 12px;
      line-height: 38px;
      display: inline-block;
      font-weight: 500;
      padding: 0px 24px 0px 24px;
      border-radius: 0; }
    .blog_right_sidebar .newsletter_widget .text-bottom {
      font-size: 12px; }
  .blog_right_sidebar .tag_cloud_widget ul li {
    display: inline-block; }
    .blog_right_sidebar .tag_cloud_widget ul li a {
      display: inline-block;
      border: 1px solid #eee;
      background: #fff;
      padding: 0px 13px;
      margin-bottom: 8px;
      transition: all 0.3s ease 0s;
      color: #222222;
      font-size: 12px; }
      .blog_right_sidebar .tag_cloud_widget ul li a:hover {
        background: #f8b600;
        color: #fff; }
  .blog_right_sidebar .br {
    width: 100%;
    height: 1px;
    background: #eeeeee;
    margin: 30px 0px; }

.blog-pagination {
  padding-top: 25px; }
  .blog-pagination .page-link {
    border-radius: 0; }
  .blog-pagination .page-item {
    border: none; }

.page-link {
  background: transparent;
  font-weight: 400; }

.blog-pagination .page-item.active .page-link {
  background-color: #f8b600;
  border-color: transparent;
  color: #fff; }

.blog-pagination .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #8a8a8a;
  border: none; }

.blog-pagination .page-link .lnr {
  font-weight: 600; }

.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
  border-radius: 0; }

.blog-pagination .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #f8b600;
  border-color: #eee; }

/*============ Start Blog Single Styles  =============*/
.single-post-area .social-links {
  padding-top: 10px; }
  .single-post-area .social-links li {
    display: inline-block;
    margin-bottom: 10px; }
    .single-post-area .social-links li a {
      color: #cccccc;
      padding: 7px;
      font-size: 14px;
      transition: all 0.2s linear; }
      .single-post-area .social-links li a:hover {
        color: #222222; }
.single-post-area .blog_details {
  padding-top: 26px; }
  .single-post-area .blog_details p {
    margin-bottom: 10px; }
.single-post-area .quotes {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 24px 35px 24px 30px;
  background-color: white;
  box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
  font-size: 14px;
  line-height: 24px;
  color: #777;
  font-style: italic; }
.single-post-area .arrow {
  position: absolute; }
  .single-post-area .arrow .lnr {
    font-size: 20px;
    font-weight: 600; }
.single-post-area .thumb .overlay-bg {
  background: rgba(0, 0, 0, 0.8); }
.single-post-area .navigation-area {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 60px; }
  .single-post-area .navigation-area p {
    margin-bottom: 0px; }
  .single-post-area .navigation-area h4 {
    font-size: 18px;
    line-height: 25px;
    color: #222222; }
  .single-post-area .navigation-area .nav-left {
    text-align: left; }
    .single-post-area .navigation-area .nav-left .thumb {
      margin-right: 20px;
      background: #000; }
      .single-post-area .navigation-area .nav-left .thumb img {
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-left .lnr {
      margin-left: 20px;
      opacity: 0;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-left:hover .lnr {
      opacity: 1; }
    .single-post-area .navigation-area .nav-left:hover .thumb img {
      opacity: .5; }
    @media (max-width: 767px) {
      .single-post-area .navigation-area .nav-left {
        margin-bottom: 30px; } }
  .single-post-area .navigation-area .nav-right {
    text-align: right; }
    .single-post-area .navigation-area .nav-right .thumb {
      margin-left: 20px;
      background: #000; }
      .single-post-area .navigation-area .nav-right .thumb img {
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-right .lnr {
      margin-right: 20px;
      opacity: 0;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .single-post-area .navigation-area .nav-right:hover .lnr {
      opacity: 1; }
    .single-post-area .navigation-area .nav-right:hover .thumb img {
      opacity: .5; }
@media (max-width: 991px) {
  .single-post-area .sidebar-widgets {
    padding-bottom: 0px; } }

.comments-area {
  background: #fafaff;
  border: 1px solid #eee;
  padding: 50px 30px;
  margin-top: 50px; }
  @media (max-width: 414px) {
    .comments-area {
      padding: 50px 8px; } }
  .comments-area h4 {
    text-align: center;
    margin-bottom: 50px;
    color: #222222;
    font-size: 18px; }
  .comments-area h5 {
    font-size: 16px;
    margin-bottom: 0px; }
  .comments-area a {
    color: #222222; }
  .comments-area .comment-list {
    padding-bottom: 48px; }
    .comments-area .comment-list:last-child {
      padding-bottom: 0px; }
    .comments-area .comment-list.left-padding {
      padding-left: 25px; }
    @media (max-width: 413px) {
      .comments-area .comment-list .single-comment h5 {
        font-size: 12px; }
      .comments-area .comment-list .single-comment .date {
        font-size: 11px; }
      .comments-area .comment-list .single-comment .comment {
        font-size: 10px; } }
  .comments-area .thumb {
    margin-right: 20px; }
  .comments-area .date {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 13px; }
  .comments-area .comment {
    color: #777777;
    margin-bottom: 0px; }
  .comments-area .btn-reply {
    background-color: #fff;
    color: #222222;
    border: 1px solid #eee;
    padding: 2px 18px;
    font-size: 12px;
    display: block;
    font-weight: 600;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .comments-area .btn-reply:hover {
      background-color: #f8b600;
      color: #fff; }

.comment-form {
  background: #fafaff;
  text-align: center;
  border: 1px solid #eee;
  padding: 47px 30px 43px;
  margin-top: 50px;
  margin-bottom: 40px; }
  .comment-form h4 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 22px;
    color: #222222; }
  .comment-form .name {
    padding-left: 0px; }
    @media (max-width: 767px) {
      .comment-form .name {
        padding-right: 0px;
        margin-bottom: 1rem; } }
  .comment-form .email {
    padding-right: 0px; }
    @media (max-width: 991px) {
      .comment-form .email {
        padding-left: 0px; } }
  .comment-form .form-control {
    padding: 8px 20px;
    background: #fff;
    border: none;
    border-radius: 0px;
    width: 100%;
    font-size: 14px;
    color: #777777;
    border: 1px solid transparent; }
    .comment-form .form-control:focus {
      box-shadow: none;
      border: 1px solid #eee; }
  .comment-form textarea.form-control {
    height: 140px;
    resize: none; }
  .comment-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
    color: #777; }
  .comment-form ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #777; }
  .comment-form :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
    color: #777; }
  .comment-form :-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
    color: #777; }

/*============ End Blog Single Styles  =============*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*============== contact_area css ================*/
.contact_area .main_btn {
  margin-top: 20px; }
  @media (max-width: 767px) {
    .contact_area .main_btn img {
      display: none; } }

.mapBox {
  height: 420px;
  margin-bottom: 80px; }

.contact_info .info_item {
  position: relative;
  padding-left: 45px; }
  .contact_info .info_item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 24px;
    color: #f8b600;
    font-weight: 600; }
  .contact_info .info_item h6 {
    font-size: 16px;
    line-height: 24px;
    color: "Roboto", sans-serif;
    font-weight: bold;
    margin-bottom: 0px;
    color: #222222; }
    .contact_info .info_item h6 a {
      color: #222222; }
  .contact_info .info_item p {
    font-size: 14px;
    line-height: 24px;
    padding: 2px 0px; }

.contact_form .form-group {
  margin-bottom: 10px; }
  .contact_form .form-group .form-control {
    font-size: 13px;
    line-height: 26px;
    color: #999;
    border: 1px solid #eeeeee;
    font-family: "Roboto", sans-serif;
    border-radius: 0px;
    padding-left: 20px; }
    .contact_form .form-group .form-control:focus {
      box-shadow: none;
      outline: none; }
    .contact_form .form-group .form-control.placeholder {
      color: #999; }
    .contact_form .form-group .form-control:-moz-placeholder {
      color: #999; }
    .contact_form .form-group .form-control::-moz-placeholder {
      color: #999; }
    .contact_form .form-group .form-control::-webkit-input-placeholder {
      color: #999; }
  .contact_form .form-group textarea {
    resize: none; }
    .contact_form .form-group textarea.form-control {
      height: 140px; }
.contact_form .submit_btn {
  margin-top: 20px;
  cursor: pointer; }

/* Contact Success and error Area css
============================================================================================ */
.modal-message .modal-dialog {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
  margin: 0px;
  max-width: 500px;
  width: 100%; }
  .modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px; }
    .modal-message .modal-dialog .modal-content .modal-header .close {
      position: absolute;
      right: -15px;
      top: -15px;
      padding: 0px;
      color: #fff;
      opacity: 1;
      cursor: pointer; }
    .modal-message .modal-dialog .modal-content .modal-header h2 {
      display: block;
      text-align: center;
      color: #f8b600;
      padding-bottom: 10px;
      font-family: "Roboto", sans-serif; }
    .modal-message .modal-dialog .modal-content .modal-header p {
      display: block; }

/* End Contact Success and error Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*============== Elements Area css ================*/
.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.sample-text-area {
  padding: 100px 0px; }
  .sample-text-area .title_color {
    margin-bottom: 30px; }
  .sample-text-area p {
    line-height: 26px; }
    .sample-text-area p b {
      font-weight: bold;
      color: #f8b600; }
    .sample-text-area p i {
      color: #f8b600;
      font-style: italic; }
    .sample-text-area p sup {
      color: #f8b600;
      font-style: italic; }
    .sample-text-area p sub {
      color: #f8b600;
      font-style: italic; }
    .sample-text-area p del {
      color: #f8b600; }
    .sample-text-area p u {
      color: #f8b600; }

/*============== End Elements Area css ================*/
/*==============Elements Button Area css ================*/
.elements_button .title_color {
  margin-bottom: 30px;
  color: #222222; }

.title_color {
  color: #222222; }

.button-group-area {
  margin-top: 15px; }
  .button-group-area:nth-child(odd) {
    margin-top: 40px; }
  .button-group-area:first-child {
    margin-top: 0px; }
  .button-group-area .theme_btn {
    margin-right: 10px; }
  .button-group-area .white_btn {
    margin-right: 10px; }
  .button-group-area .link {
    text-decoration: underline;
    color: #222222;
    background: transparent; }
    .button-group-area .link:hover {
      color: #fff; }
  .button-group-area .disable {
    background: transparent;
    color: #614f34;
    cursor: not-allowed; }
    .button-group-area .disable:before {
      display: none; }

.primary {
  background: #52c5fd; }
  .primary:before {
    background: #2faae6; }

.success {
  background: #4cd3e3; }
  .success:before {
    background: #2ebccd; }

.info {
  color: #614f34; }
  .info:before {
    background: #614f34; }

.warning {
  background: #f4e700; }
  .warning:before {
    background: #e1d608; }

.danger {
  background: #f54940; }
  .danger:before {
    background: #e13b33; }

.primary-border {
  background: transparent;
  border: 1px solid #52c5fd;
  color: #52c5fd; }
  .primary-border:before {
    background: #52c5fd; }

.success-border {
  background: transparent;
  border: 1px solid #4cd3e3;
  color: #4cd3e3; }
  .success-border:before {
    background: #4cd3e3; }

.info-border {
  background: transparent;
  border: 1px solid #38a4ff;
  color: #38a4ff; }
  .info-border:before {
    background: #38a4ff; }

.warning-border {
  background: #fff;
  border: 1px solid #f4e700;
  color: #f4e700; }
  .warning-border:before {
    background: #f4e700; }

.danger-border {
  background: transparent;
  border: 1px solid #f54940;
  color: #f54940; }
  .danger-border:before {
    background: #f54940; }

.link-border {
  background: transparent;
  border: 1px solid #f8b600;
  color: #f8b600; }
  .link-border:before {
    background: #f8b600; }

.radius {
  border-radius: 3px; }

.circle {
  border-radius: 20px; }

.arrow span {
  padding-left: 5px; }

.e-large {
  line-height: 50px;
  padding-top: 0px;
  padding-bottom: 0px; }

.large {
  line-height: 45px;
  padding-top: 0px;
  padding-bottom: 0px; }

.medium {
  line-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px; }

.small {
  line-height: 25px;
  padding-top: 0px;
  padding-bottom: 0px; }

.general {
  line-height: 38px;
  padding-top: 0px;
  padding-bottom: 0px; }

/*==============End Elements Button Area css ================*/
/* =================================== */
/*  Elements Page Styles
/* =================================== */
/*---------- Start Elements Page -------------*/
.generic-banner {
  margin-top: 60px;
  text-align: center; }

.generic-banner .height {
  height: 600px; }

@media (max-width: 767.98px) {
  .generic-banner .height {
    height: 400px; } }
.generic-banner .generic-banner-content h2 {
  line-height: 1.2em;
  margin-bottom: 20px; }

@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content h2 br {
    display: none; } }
.generic-banner .generic-banner-content p {
  text-align: center;
  font-size: 16px; }

@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content p br {
    display: none; } }
.generic-content h1 {
  font-weight: 600; }

.about-generic-area {
  background: #fff; }

.about-generic-area p {
  margin-bottom: 20px; }

.white-bg {
  background: #fff; }

.section-top-border {
  padding: 50px 0;
  border-top: 1px dotted #eee; }

.switch-wrap {
  margin-bottom: 10px; }

.switch-wrap p {
  margin: 0; }

/*---------- End Elements Page -------------*/
.sample-text-area {
  padding: 100px 0 70px 0; }

.sample-text {
  margin-bottom: 0; }

.text-heading {
  margin-bottom: 30px;
  font-size: 24px; }

.typo-list {
  margin-bottom: 10px; }

@media (max-width: 767px) {
  .typo-sec {
    margin-bottom: 30px; } }
@media (max-width: 767px) {
  .element-wrap {
    margin-top: 30px; } }
b, sup, sub, u, del {
  color: #f8b600; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6 {
  color: #777777; }

.button-area .border-top-generic {
  padding: 70px 15px;
  border-top: 1px dotted #eee; }

.button-group-area .genric-btn {
  margin-right: 10px;
  margin-top: 10px; }

.button-group-area .genric-btn:last-child {
  margin-right: 0; }

.circle {
  border-radius: 20px; }

.genric-btn {
  display: inline-block;
  outline: none;
  line-height: 40px;
  padding: 0 30px;
  font-size: .8em;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.genric-btn:focus {
  outline: none; }

.genric-btn.e-large {
  padding: 0 40px;
  line-height: 50px; }

.genric-btn.large {
  line-height: 45px; }

.genric-btn.medium {
  line-height: 30px; }

.genric-btn.small {
  line-height: 25px; }

.genric-btn.radius {
  border-radius: 3px; }

.genric-btn.circle {
  border-radius: 20px; }

.genric-btn.arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.genric-btn.arrow span {
  margin-left: 10px; }

.genric-btn.default {
  color: #222222;
  background: #f9f9ff;
  border: 1px solid transparent; }

.genric-btn.default:hover {
  border: 1px solid #f9f9ff;
  background: #fff; }

.genric-btn.default-border {
  border: 1px solid #f9f9ff;
  background: #fff; }

.genric-btn.default-border:hover {
  color: #222222;
  background: #f9f9ff;
  border: 1px solid transparent; }

.genric-btn.primary {
  color: #fff;
  background: #f8b600;
  border: 1px solid transparent; }

.genric-btn.primary:hover {
  color: #f8b600;
  border: 1px solid #f8b600;
  background: #fff; }

.genric-btn.primary-border {
  color: #f8b600;
  border: 1px solid #f8b600;
  background: #fff; }

.genric-btn.primary-border:hover {
  color: #fff;
  background: #f8b600;
  border: 1px solid transparent; }

.genric-btn.success {
  color: #fff;
  background: #4cd3e3;
  border: 1px solid transparent; }

.genric-btn.success:hover {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff; }

.genric-btn.success-border {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff; }

.genric-btn.success-border:hover {
  color: #fff;
  background: #4cd3e3;
  border: 1px solid transparent; }

.genric-btn.info {
  color: #fff;
  background: #614f34;
  border: 1px solid transparent; }

.genric-btn.info:hover {
  color: #614f34;
  border: 1px solid #614f34;
  background: #fff; }

.genric-btn.info-border {
  color: #38a4ff;
  border: 1px solid #614f34;
  background: #fff; }

.genric-btn.info-border:hover {
  color: #fff;
  background: #614f34;
  border: 1px solid transparent; }

.genric-btn.warning {
  color: #fff;
  background: #f4e700;
  border: 1px solid transparent; }

.genric-btn.warning:hover {
  color: #f4e700;
  border: 1px solid #f4e700;
  background: #fff; }

.genric-btn.warning-border {
  color: #f4e700;
  border: 1px solid #f4e700;
  background: #fff; }

.genric-btn.warning-border:hover {
  color: #fff;
  background: #f4e700;
  border: 1px solid transparent; }

.genric-btn.danger {
  color: #fff;
  background: #f44a40;
  border: 1px solid transparent; }

.genric-btn.danger:hover {
  color: #f44a40;
  border: 1px solid #f44a40;
  background: #fff; }

.genric-btn.danger-border {
  color: #f44a40;
  border: 1px solid #f44a40;
  background: #fff; }

.genric-btn.danger-border:hover {
  color: #fff;
  background: #f44a40;
  border: 1px solid transparent; }

.genric-btn.link {
  color: #222222;
  background: #f9f9ff;
  text-decoration: underline;
  border: 1px solid transparent; }

.genric-btn.link:hover {
  color: #222222;
  border: 1px solid #f9f9ff;
  background: #fff; }

.genric-btn.link-border {
  color: #222222;
  border: 1px solid #f9f9ff;
  background: #fff;
  text-decoration: underline; }

.genric-btn.link-border:hover {
  color: #222222;
  background: #f9f9ff;
  border: 1px solid transparent; }

.genric-btn.disable {
  color: #222222, 0.3;
  background: #f9f9ff;
  border: 1px solid transparent;
  cursor: not-allowed; }

.generic-blockquote {
  padding: 30px 50px 30px 30px;
  background: #fff;
  border-left: 2px solid #f8b600; }

@media (max-width: 991px) {
  .progress-table-wrap {
    overflow-x: scroll; } }
.progress-table {
  background: #fff;
  padding: 15px 0px 30px 0px;
  min-width: 800px; }

.progress-table .serial {
  width: 11.83%;
  padding-left: 30px; }

.progress-table .country {
  width: 28.07%; }

.progress-table .visit {
  width: 19.74%; }

.progress-table .percentage {
  width: 40.36%;
  padding-right: 50px; }

.progress-table .table-head {
  display: flex; }

.progress-table .table-head .serial, .progress-table .table-head .country, .progress-table .table-head .visit, .progress-table .table-head .percentage {
  color: #222222;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 500; }

.progress-table .table-row {
  padding: 15px 0;
  border-top: 1px solid #edf3fd;
  display: flex; }

.progress-table .table-row .serial, .progress-table .table-row .country, .progress-table .table-row .visit, .progress-table .table-row .percentage {
  display: flex;
  align-items: center; }

.progress-table .table-row .country img {
  margin-right: 15px; }

.progress-table .table-row .percentage .progress {
  width: 80%;
  border-radius: 0px;
  background: transparent; }

.progress-table .table-row .percentage .progress .progress-bar {
  height: 5px;
  line-height: 5px; }

.progress-table .table-row .percentage .progress .progress-bar.color-1 {
  background-color: #6382e6; }

.progress-table .table-row .percentage .progress .progress-bar.color-2 {
  background-color: #e66686; }

.progress-table .table-row .percentage .progress .progress-bar.color-3 {
  background-color: #f09359; }

.progress-table .table-row .percentage .progress .progress-bar.color-4 {
  background-color: #73fbaf; }

.progress-table .table-row .percentage .progress .progress-bar.color-5 {
  background-color: #73fbaf; }

.progress-table .table-row .percentage .progress .progress-bar.color-6 {
  background-color: #6382e6; }

.progress-table .table-row .percentage .progress .progress-bar.color-7 {
  background-color: #a367e7; }

.progress-table .table-row .percentage .progress .progress-bar.color-8 {
  background-color: #e66686; }

.single-gallery-image {
  margin-top: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  height: 200px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.single-gallery-image:hover {
  opacity: .8; }

.list-style {
  width: 14px;
  height: 14px; }

.unordered-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.82em !important; }

.unordered-list li:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #f8b600;
  background: #fff;
  top: 4px;
  left: 0;
  border-radius: 50%; }

.ordered-list {
  margin-left: 30px; }

.ordered-list li {
  list-style-type: decimal-leading-zero;
  color: #f8b600;
  font-weight: 500;
  line-height: 1.82em !important; }

.ordered-list li span {
  font-weight: 300;
  color: #777777; }

.ordered-list-alpha li {
  margin-left: 30px;
  list-style-type: lower-alpha;
  color: #f8b600;
  font-weight: 500;
  line-height: 1.82em !important; }

.ordered-list-alpha li span {
  font-weight: 300;
  color: #777777; }

.ordered-list-roman li {
  margin-left: 30px;
  list-style-type: lower-roman;
  color: #f8b600;
  font-weight: 500;
  line-height: 1.82em !important; }

.ordered-list-roman li span {
  font-weight: 300;
  color: #777777; }

.single-input {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px; }

.single-input:focus {
  outline: none; }

.input-group-icon {
  position: relative; }

.input-group-icon .icon {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 40px;
  z-index: 3; }

.input-group-icon .icon i {
  color: #797979; }

.input-group-icon .single-input {
  padding-left: 45px; }

.single-textarea {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
  height: 100px;
  resize: none; }

.single-textarea:focus {
  outline: none; }

.single-input-primary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px; }

.single-input-primary:focus {
  outline: none;
  border: 1px solid #f8b600; }

.single-input-accent {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px; }

.single-input-accent:focus {
  outline: none;
  border: 1px solid #eb6b55; }

.single-input-secondary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px; }

.single-input-secondary:focus {
  outline: none;
  border: 1px solid #f09359; }

.default-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.default-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer; }

.default-switch input + label {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f8b600;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer; }

.default-switch input:checked + label {
  left: 19px; }

.single-element-widget {
  margin-bottom: 30px; }

.primary-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.primary-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.primary-switch input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; }

.primary-switch input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }

.primary-switch input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer; }

.primary-switch input:checked + label:after {
  left: 19px; }

.primary-switch input:checked + label:before {
  background: #f8b600; }

.confirm-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.confirm-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.confirm-switch input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; }

.confirm-switch input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer; }

.confirm-switch input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer; }

.confirm-switch input:checked + label:after {
  left: 19px; }

.confirm-switch input:checked + label:before {
  background: #4cd3e3; }

.primary-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.primary-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.primary-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1; }

.single-defination h4 {
  color: #222222; }

.primary-checkbox input:checked + label {
  background: url(../img/elements/primary-check.png) no-repeat center center/cover;
  border: none; }

.confirm-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.confirm-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.confirm-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1; }

.confirm-checkbox input:checked + label {
  background: url(../img/elements/success-check.png) no-repeat center center/cover;
  border: none; }

.disabled-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.disabled-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.disabled-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1; }

.disabled-checkbox input:disabled {
  cursor: not-allowed;
  z-index: 3; }

.disabled-checkbox input:checked + label {
  background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
  border: none; }

.primary-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.primary-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.primary-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1; }

.primary-radio input:checked + label {
  background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
  border: none; }

.confirm-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.confirm-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.confirm-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1; }

.confirm-radio input:checked + label {
  background: url(../img/elements/success-radio.png) no-repeat center center/cover;
  border: none; }

.disabled-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer; }

.disabled-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.disabled-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1; }

.disabled-radio input:disabled {
  cursor: not-allowed;
  z-index: 3; }

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

.ordered-list {
  list-style: none;
  padding: 0px; }

.disabled-radio input:checked + label {
  background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
  border: none; }

.default-select {
  height: 40px; }

.default-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #fff;
  padding-left: 20px;
  padding-right: 40px; }

.default-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px; }

.default-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 20px; }

.default-select .nice-select .list .option.selected {
  color: #f8b600;
  background: transparent; }

.default-select .nice-select .list .option:hover {
  color: #f8b600;
  background: transparent; }

.default-select .current {
  margin-right: 50px;
  font-weight: 300; }

.default-select .nice-select::after {
  right: 20px; }

@media (max-width: 991px) {
  .left-align-p p {
    margin-top: 20px; } }
.form-select {
  height: 40px;
  width: 100%; }

.form-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #f9f9ff !important;
  padding-left: 45px;
  padding-right: 40px;
  width: 100%; }

.form-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px; }

.mt-10 {
  margin-top: 10px; }

.form-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 45px; }

.form-select .nice-select .list .option.selected {
  color: #f8b600;
  background: transparent; }

.form-select .nice-select .list .option:hover {
  color: #f8b600;
  background: transparent; }

.form-select .current {
  margin-right: 50px;
  font-weight: 300; }

.form-select .nice-select::after {
  right: 20px; }

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Main Button Area css
============================================================================================ */
.main_btn {
  padding: 0px 25px;
  background: transparent;
  z-index: 222;
  display: inline-block;
  text-align: center;
  color: #222222;
  font-size: 12px;
  font-weight: 500;
  line-height: 48px;
  border: 1px solid #f8b600;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer; }
  .main_btn img {
    position: absolute;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .main_btn:hover {
    background: #f8b600;
    color: #222222;
    border: 1px solid #f8b600; }
    .main_btn:hover img {
      right: -38px; }

.main_btn2 {
  display: inline-block;
  background: #f9f9ff;
  padding: 0px 45px;
  color: #222222;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 48px;
  border-radius: 5px;
  outline: none !important;
  box-shadow: none !important;
  text-align: center;
  border: 1px solid #dddddd;
  cursor: pointer;
  transition: color 0ms linear; }
  .main_btn2:hover {
    background-image: -moz-linear-gradient(0deg, #bc2bff 0%, #7249fb 100%);
    background-image: -webkit-linear-gradient(0deg, #bc2bff 0%, #7249fb 100%);
    background-image: -ms-linear-gradient(0deg, #bc2bff 0%, #7249fb 100%);
    box-shadow: 0px 10px 30px 0px rgba(115, 73, 251, 0.3);
    color: #fff; }

.submit_btn {
  width: auto;
  display: inline-block;
  background: #f8b600;
  padding: 0px 30px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  outline: none !important;
  border: 1px solid #f8b600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  box-shadow: -14px 14px 60px rgba(244, 47, 44, 0.32); }
  .submit_btn:hover {
    color: #f8b600;
    background: transparent;
    box-shadow: none; }

.white_btn {
  display: inline-block;
  background: #f9f9ff;
  padding: 0px 50px;
  color: #222222;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 50px;
  border-radius: 0px;
  outline: none !important;
  box-shadow: none !important;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .white_btn:hover {
    background: #f8b600;
    color: #fff; }

.banner_btn {
  padding: 0px 40px;
  line-height: 48px;
  background: #f8b600;
  color: #fff;
  display: inline-block;
  border: 1px solid #f8b600;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .banner_btn:hover {
    color: #f8b600;
    background: transparent; }

.banner_btn2 {
  padding: 0px 35px;
  line-height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-block;
  border: 1px solid #bebfc4;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .banner_btn2:hover {
    color: #f8b600;
    background: transparent; }

.white_bg_btn {
  background: #fff;
  display: inline-block;
  color: #222222;
  line-height: 40px;
  padding: 0px 28px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: none; }
  .white_bg_btn:hover {
    background: #f8b600;
    color: #fff; }

.blog_btn {
  border: 1px solid #eeeeee;
  background: #f9f9ff;
  padding: 0px 32px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  color: #222222;
  line-height: 34px;
  display: inline-block; }
  .blog_btn:hover {
    background: #f8b600;
    border-color: #f8b600;
    color: #fff; }

/* End Main Button Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* =================================== */
/*  Start Footer Area CSS
/* =================================== */
.footer-area {
  min-height: 100%;
  background: #013033; }
  .footer-area h6 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600; }
  @media (max-width: 991px) {
    .footer-area .col-lg-3:nth-child(3) .single-footer-widget, .footer-area .col-lg-3:nth-child(4) .single-footer-widget {
      margin-bottom: 0; } }
  @media (max-width: 570px) {
    .footer-area .col-lg-3:nth-child(3) .single-footer-widget {
      margin-bottom: 40px; } }

.copy-right-text i,
.copy-right-text a {
  color: #f8b600; }

.instafeed {
  margin: 0px -24px;
  padding: 0 15px; }
  @media (max-width: 767px) {
    .instafeed {
      margin: -16px; } }
  @media (max-width: 575px) {
    .instafeed {
      margin: 0px;
      padding: 0; } }
  .instafeed li {
    overflow: hidden;
    width: 25%; }
    .instafeed li img {
      margin: 5px; }

@media (max-width: 575px) {
  .footer-social {
    margin-top: 15px; } }
.footer-social a {
  padding-left: 25px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 575px) {
    .footer-social a:first-child {
      padding-left: 0; } }
  .footer-social a:hover i {
    color: #f8b600; }
.footer-social i {
  color: #cccccc;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
@media (max-width: 991px) {
  .footer-social {
    text-align: left; } }

.footer-top {
  padding: 120px 0px; }
  @media (max-width: 991px) {
    .footer-top {
      padding: 80px 0px; } }

@media (max-width: 991px) {
  .single-footer-widget {
    margin-bottom: 40px; } }
.single-footer-widget .footer-nav li {
  list-style: none;
  margin-bottom: 12px; }
  @media (max-width: 991px) {
    .single-footer-widget .footer-nav li {
      margin-bottom: 3px; } }
  .single-footer-widget .footer-nav li a {
    color: #ceb0b0; }
    .single-footer-widget .footer-nav li a:hover {
      color: #ffffff; }
.single-footer-widget input {
  border: 1px solid #333333;
  width: 80% !important;
  font-weight: 300;
  background: transparent;
  color: #ffffff;
  padding-left: 20px;
  border-radius: 0;
  font-size: 14px;
  border-right: 0px; }
  .single-footer-widget input:focus {
    box-shadow: none;
    color: #ffffff;
    background: #222222; }
.single-footer-widget .info {
  position: absolute;
  margin-top: 20%;
  color: #fff;
  font-size: 12px;
  background: transparent; }
  .single-footer-widget .info.valid {
    color: green; }
  .single-footer-widget .info.error {
    color: red; }
.single-footer-widget .click-btn {
  background: #f8b600;
  border-radius: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 6px 12px;
  border: 0; }
  .single-footer-widget .click-btn:focus {
    box-shadow: none; }
  .single-footer-widget .click-btn i {
    color: #fff; }
.single-footer-widget ::-moz-selection {
  /* Code for Firefox */
  background-color: #191919 !important;
  color: #999999; }
.single-footer-widget ::selection {
  background-color: #191919 !important;
  color: #999999; }
.single-footer-widget ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999999;
  font-weight: 300; }
.single-footer-widget :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999999;
  opacity: 1;
  font-weight: 300; }
.single-footer-widget ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999999;
  opacity: 1;
  font-weight: 300; }
.single-footer-widget :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
  font-weight: 300; }
.single-footer-widget ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999999;
  font-weight: 300; }

.footer-bottom {
  padding: 26px 0px;
  border-top: 1px solid #333333; }
  @media (max-width: 570px) {
    .footer-bottom {
      padding: 26px 15px; } }
  @media (max-width: 380px) {
    .footer-bottom {
      text-align: left !important; } }

.footer-text a,
.footer-text i {
  color: #f8b600; }

/* =================================== */
/*  End Footer Area CSS
/* =================================== */
/*---------------------------------------------------- */

/*# sourceMappingURL=style.css.map */



/*================ Why Choose Us Section Styles =================*/
.why-choose-us-area {
  background: #f9f9f9;
  padding: 100px 0;
  position: relative;
}

.why-choose-us-area .main_title {
  margin-bottom: 60px;
}

.why-choose-us-area .main_title h1 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-choose-us-area .main_title p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Box Styles */
.single-feature {
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.single-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.single-feature .icon {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: rgba(193, 155, 118, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.single-feature:hover .icon {
  background: #84b3be;
  color: #fff;
}

.single-feature .icon i {
  font-size: 40px;
  position: relative;
  z-index: 1;
}

.single-feature h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.single-feature p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .why-choose-us-area {
    padding: 80px 0;
  }
  
  .single-feature {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-area .main_title h1 {
    font-size: 32px;
  }
  
  .single-feature h4 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .why-choose-us-area {
    padding: 60px 0;
  }
  
  .why-choose-us-area .main_title h1 {
    font-size: 28px;
  }
  
  .single-feature {
    margin-bottom: 30px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .single-feature .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  
  .single-feature .icon i {
    font-size: 35px;
  }
}

/* Font Awesome Icons Specific Styles */
.fas {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* Individual Icon Adjustments (if needed) */
.fa-award { /* Expertise icon */
  font-size: 42px !important;
  position: relative;
  top: 2px;
}

.fa-map-marked-alt { /* Access icon */
  font-size: 44px !important;
}

.fa-hand-holding-heart { /* Bespoke icon */
  font-size: 40px !important;
  position: relative;
  top: 4px;
}

.fa-user-shield { /* Safety icon */
  font-size: 42px !important;
}

.fa-leaf { /* Sustainability icon */
  font-size: 44px !important;
}

.fa-concierge-bell { /* Luxury icon */
  font-size: 40px !important;
  position: relative;
  top: 2px;
}










/*================ Popular Destinations Section =================*/
.popular-place-area {
  position: relative;
  background-color: #f9f9f9 !important;
  overflow: hidden;
}

.popular-place-area .container {
  position: relative;
  z-index: 1;
}

.popular-place-area h2 {
  position: relative;
  margin-bottom: 20px;
  line-height: 1.3;
}

.popular-place-area h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #c19b76;
  margin: 20px auto 0;
}

.popular-place-area p {
  max-width: 700px;
  margin: 0 auto;
}

/* Main Image Styles */
.popular-place-area .row.mb-5 img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  object-fit: cover;
  height: 400px;
  width: 100%;
}

.popular-place-area .row.mb-5:hover img {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Destination Cards */
.popular-place-area .shadow-sm {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.popular-place-area .shadow-sm:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  border-color: rgba(193, 155, 118, 0.2);
}

.popular-place-area .shadow-sm h4 {
  position: relative;
  padding-bottom: 15px;
  transition: color 0.3s ease;
}

.popular-place-area .shadow-sm:hover h4 {
  color: #c19b76 !important;
}

.popular-place-area .shadow-sm h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #c19b76;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popular-place-area .shadow-sm:hover h4::after {
  opacity: 1;
}

.popular-place-area .shadow-sm p {
  transition: color 0.3s ease;
}

.popular-place-area .shadow-sm:hover p {
  color: #555 !important;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .popular-place-area {
    padding: 70px 0 !important;
  }
  
  .popular-place-area .row.mb-5 img {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .popular-place-area h2 {
    font-size: 32px !important;
  }
  
  .popular-place-area .row.mb-5 img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .popular-place-area {
    padding: 60px 0 !important;
  }
  
  .popular-place-area h2 {
    font-size: 28px !important;
  }
  
  .popular-place-area .row.mb-5 img {
    height: 250px;
  }
  
  .popular-place-area .col-md-6,
  .popular-place-area .col-md-4 {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 575px) {
  .popular-place-area .row.mb-5 img {
    height: 200px;
  }
}

/*================ Global Styles =================*/
:root {
  --gold: #c19b76;
  --dark: #222222;
  --gray: #555555;
  --light-gray: #f9f9f9;
  --green: #27ae60;
  --white: #ffffff;
}

/*================ About Us Section =================*/
.about-area {
  position: relative;
  overflow: hidden;
}

.about-area h2 {
  position: relative;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-area h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

.about-area p {
  line-height: 1.8;
}

.about-area ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.about-area ul li i {
  position: absolute;
  left: 0;
  top: 4px;
}

.about-area img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-area img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.btn-dark {
  background: var(--dark);
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/*================ Why Choose Us Section =================*/
.why-choose-us-area {
  position: relative;
  background: var(--light-gray) !important;
}

.why-choose-us-area .main_title h1 {
  position: relative;
  margin-bottom: 20px;
}

.why-choose-us-area .main_title h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
}

.single-feature {
  background: var(--white);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.single-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  border-color: rgba(193, 155, 118, 0.2);
}

.single-feature .icon {
  transition: all 0.3s;
}

.single-feature:hover .icon {
  color: var(--white) !important;
  background: var(--gold) !important;
}

.single-feature h4 {
  transition: color 0.3s ease;
}

.single-feature:hover h4 {
  color: var(--gold) !important;
}

/*================ Popular Destinations Section =================*/
.popular-place-area {
  position: relative;
  background: var(--light-gray) !important;
}

.popular-place-area h2 {
  position: relative;
  margin-bottom: 20px;
}

.popular-place-area h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
}

.popular-place-area img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  object-fit: cover;
  height: 400px;
}

.popular-place-area img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.popular-place-area .shadow-sm {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.popular-place-area .shadow-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  border-color: var(--gold);
}

.popular-place-area .shadow-sm h4 {
  transition: color 0.3s ease;
}

.popular-place-area .shadow-sm:hover h4 {
  color: var(--gold) !important;
}

/*================ Packages Section =================*/
.package-area {
  position: relative;
  overflow: hidden;
}

.package-area .main_title h1 {
  position: relative;
  margin-bottom: 25px;
  line-height: 1.3;
}

.package-area .main_title h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

.package-area .main_title p {
  line-height: 1.8;
}

.main_btn {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.main_btn:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.single-gallery {
  transition: all 0.3s ease;
}

.single-gallery:hover {
  transform: translateY(-5px);
}

.single-gallery h4 {
  transition: color 0.3s ease;
}

.single-gallery:hover h4 {
  color: var(--gold) !important;
}

/*================ Amenities Section =================*/
.amenities-area .main_title h1 {
  position: relative;
  margin-bottom: 25px;
}

.amenities-area .main_title h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

.single-amenities {
  transition: all 0.3s ease;
}

.single-amenities:hover {
  transform: translateY(-10px);
}

.single-amenities img {
  transition: transform 0.5s ease;
}

.single-amenities:hover img {
  transform: scale(1.05);
}

/*================ Testimonial Section =================*/
.testimonial_area {
  position: relative;
}

.testi_img img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.testi_img:hover img {
  transform: scale(1.02);
}

.single_testi {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.single_testi:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/*================ Newsletter Section =================*/
.newsletter-area {
  position: relative;
  overflow: hidden;
}

.newsletter-area .main_title h1 {
  position: relative;
  margin-bottom: 25px;
}

.newsletter-area .main_title h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

.nw-img {
  transition: transform 0.5s ease;
}

.nw-img:hover {
  transform: scale(1.05);
}

/*================ Blog Section =================*/
.blog-area .main_title h1 {
  position: relative;
  margin-bottom: 25px;
}

.blog-area .main_title h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

.single-blog {
  transition: all 0.3s ease;
}

.single-blog:hover {
  transform: translateY(-10px);
}

.blog-thumb img {
  transition: transform 0.5s ease;
}

.single-blog:hover .blog-thumb img {
  transform: scale(1.05);
}

/*================ Responsive Adjustments =================*/
@media (max-width: 1199px) {
  .about-area, 
  .why-choose-us-area,
  .popular-place-area,
  .package-area {
    padding: 70px 0 !important;
  }
  
  .popular-place-area img {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .about-area h2,
  .why-choose-us-area .main_title h1,
  .popular-place-area h2,
  .package-area .main_title h1,
  .amenities-area .main_title h1,
  .newsletter-area .main_title h1,
  .blog-area .main_title h1 {
    font-size: 32px !important;
  }
  
  .popular-place-area img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .about-area, 
  .why-choose-us-area,
  .popular-place-area,
  .package-area {
    padding: 60px 0 !important;
  }
  
  .about-area h2,
  .why-choose-us-area .main_title h1,
  .popular-place-area h2,
  .package-area .main_title h1,
  .amenities-area .main_title h1,
  .newsletter-area .main_title h1,
  .blog-area .main_title h1 {
    font-size: 28px !important;
  }
  
  .popular-place-area img {
    height: 250px;
  }
  
  .about-content,
  .main_title {
    text-align: center;
  }
  
  .about-area h2::after,
  .why-choose-us-area .main_title h1::after,
  .popular-place-area h2::after,
  .package-area .main_title h1::after,
  .amenities-area .main_title h1::after,
  .newsletter-area .main_title h1::after,
  .blog-area .main_title h1::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .popular-place-area img {
    height: 200px;
  }
}


.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-link:hover {
  color: #a07d5c !important;
}

.view-all-btn:hover {
  background: #a07d5c !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193,155,118,0.4) !important;
}


/* Base Styles */
:root {
  --primary: #2a7f62; /* Safari green */
  --secondary: #e67e22; /* Sunset orange */
  --dark: #35301a; /* Dark teal */
  --light: #f8f9fa;
  --accent: #d35400; /* Darker orange */
  --text: #333;
  --text-light: #6c757d;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
}

.font_14 {
  font-size: 0.95rem;
}

/* Section Styling */
section {
  padding: 4rem 0;
  position: relative;
}

.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #f9fafb;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(248,249,250,0.95)), url('img/price-bg.png');
}

/* Header Styles */
.text-center h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.text-center h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Card Styles */
.card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.03);
}

.card-title {
  color: var(--dark);
  font-size: 1.2rem;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--primary);
}

/* Icon Styles */
.fa, .fas, .far {
  margin-right: 8px;
  color: var(--primary);
}

/* Button Styles */
.btn-success {
  background-color: var(--primary);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-success:hover {
  background-color: var(--dark);
  transform: translateY(-2px);
}

.button.whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.button.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Form Styles */
.sticky-sidebar {
  position: sticky;
  top: 20px;
  border: 1px solid rgba(0,0,0,0.1);
}

.form-control, .form-select {
  padding: 10px 15px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(42, 127, 98, 0.25);
}

/* Image Styles */
.img-fluid.rounded.shadow {
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  transition: all 0.3s;
}

.img-fluid.rounded.shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .text-center h3 {
    font-size: 1.8rem;
  }
  
  .card {
    margin-bottom: 20px;
  }
}

/* Safari-themed decorations */
.bg-light:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Price Styling */
.text-success {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Popup Enhancements */
#classic-safari-popup .safari-popup {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
h5 {
  transition: color 0.3s;
  cursor: pointer;
}

h5:hover {
  color: var(--primary);
}



/* Blog Area Styles */
.blog-area {
  padding: 100px 0;
  background: #f9f9ff;
}

.main_title h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.main_title p {
  font-size: 16px;
  line-height: 24px;
  color: #777;
  margin-bottom: 0;
}

/* Single Blog Styles */
.single-blog {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.single-blog:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-thumb {
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  transition: all 0.3s ease;
}

.single-blog:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-details {
  padding: 30px;
}

.blog-meta {
  margin-bottom: 15px;
}

.blog-meta .m-gap {
  margin-right: 20px;
  color: #777;
  font-size: 14px;
}

.blog-meta .m-gap:last-child {
  margin-right: 0;
}

.blog-meta .lnr {
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.blog-details h3 {
  margin-bottom: 15px;
}

.blog-details h3 a {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
  transition: all 0.3s ease;
}

.blog-details h3 a:hover {
  color: #faba00;
}

.blog-details p {
  margin-bottom: 20px;
  color: #777;
  font-size: 15px;
  line-height: 24px;
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more .lnr {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #faba00;
}

.read-more:hover .lnr {
  transform: translateX(3px);
}

/* View All Button */
.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #faba00;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-btn:hover {
  background: #222;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .blog-area {
    padding: 80px 0;
  }
  
  .main_title h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .blog-area {
    padding: 60px 0;
  }
  
  .main_title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .blog-details {
    padding: 20px;
  }
  
  .blog-details h3 a {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .main_title h1 {
    font-size: 26px;
  }
  
  .blog-meta .m-gap {
    margin-right: 15px;
  }
}


/* Hero Section Styles */
.center_dest_dt {
  position: relative;
  overflow: hidden;
}

.center_om {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.center_om::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.center_o1 h1 {
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.review-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-link:hover {
  opacity: 0.9;
}

#reviewBadge {
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#stars {
  color: #FFD700;
  letter-spacing: 2px;
}

.col_green a {
  transition: all 0.3s ease;
}

.col_green a:hover {
  color: #28a745 !important;
}

/* Main Content Styles */
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-light {
  background-color: #f8f9fa !important;
}

/* Itinerary Section */
h2 {
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #28a745;
}

h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-top: 1.5rem;
}

.font_14 {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Accommodation Images */
.img-fluid {
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.img-fluid:hover {
  transform: scale(1.02);
}

/* Tabs Navigation */
.nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
  font-weight: 600;
  color: #6c757d;
  border: none;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: #28a745;
  background-color: transparent;
  border-bottom: 3px solid #28a745;
}

.nav-tabs .nav-link:hover {
  color: #28a745;
  border-color: transparent;
}

.tab-content {
  border-radius: 0 0 8px 8px;
}

/* Sidebar Styles */
.position-sticky {
  position: -webkit-sticky;
  position: sticky;
}

.bg-white {
  background-color: #fff !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 8px !important;
}

/* Form Styles */
.form-label {
  font-weight: 500;
  color: #495057;
}

.form-control, .form-select {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.btn-success {
  background-color: #28a745;
  border: none;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Price Calculator Styles */
#calcPricePerPerson, #calcTotalPrice {
  font-size: 18px;
  font-weight: 700;
  color: #28a745;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .center_om {
    padding: 80px 0;
  }
  
  .center_o1 h1 {
    font-size: 36px !important;
  }
}

@media (max-width: 767.98px) {
  .center_om {
    padding: 60px 0;
  }
  
  #reviewBadge {
    font-size: 14px;
  }
  
  .col-lg-4 {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .center_o1 h1 {
    font-size: 28px !important;
  }
  
  .nav-tabs .nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }
}


.inquiry-form {
    padding: 2rem 0;
    background: #f8f8f8;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .full-width {
    grid-column: span 2;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
  }
  
  .char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
  }
  
  .submit-btn {
    background: #e8b143;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #d49e38;
  }


  /* Fixes for width and underline issues */
    .home-banner-area {
        padding: 100px 0;
    }
    .container {
        max-width: 1340px;
    }
    a {
        text-decoration: none !important;
    }
    .form-control {
        border: 1px solid #e0e0e0;
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    .primary-btn {
        background: #c19b76;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 4px;
        font-weight: 600;
    }


    .why-choose {
        background-color: #fafafa;
    }
    
    .image-composition {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .image-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(193, 155, 118, 0.9);
        color: white;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        z-index: 2;
    }
    
    .badge-content .counter {
        font-size: 28px;
        font-weight: 700;
        display: block;
        line-height: 1;
    }
    
    .testimonial-quote {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 20px;
        z-index: 2;
    }
    
    .quote-content p {
        font-style: italic;
        margin-bottom: 5px;
    }
    
    .client-info {
        font-size: 14px;
    }
    
    .client-name {
        font-weight: 600;
    }
    
    .client-trip {
        display: block;
        color: #c19b76;
    }
    
    .subtitle {
        display: block;
        color: #c19b76;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
    }
    
    .title-description {
        color: #666;
        margin-bottom: 30px;
    }
    
    .feature-item {
        display: flex;
        margin-bottom: 25px;
        padding: 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        transition: transform 0.3s;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        font-size: 24px;
        color: #c19b76;
        margin-right: 20px;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: rgba(193, 155, 118, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #222;
    }
    
    .feature-content p {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .certifications h5 {
        font-size: 16px;
        color: #666;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cert-logos {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .cert-logos img {
        margin: 0 10px 10px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
    }
    
    .cert-logos img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    @media (max-width: 991px) {
        .image-composition {
            margin-bottom: 30px;
        }
        
        .feature-item {
            padding: 10px;
        }
    }

/* Main Styles */
    body {
        font-family: 'Open Sans', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .section-gap {
        padding: 80px 0;
    }
    
    .bg-gray {
        background-color: #f9f9f9;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #222;
    }
    
    .section-title p {
        font-size: 18px;
        color: #666;
    }
    
    /* Banner Styles */
    .home-banner-area {
        padding: 100px 0;
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/img/banner/tanzania-bg.jpg') no-repeat center/cover;
        color: #fff;
    }
    
    .home-banner-area h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    /* Package Cards */
    .package-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .package-thumb {
        position: relative;
    }
    
    .package-thumb img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .package-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #c19b76;
        color: #fff;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .package-details {
        padding: 25px;
    }
    
    .package-details h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .package-details h3 a {
        color: #222;
        text-decoration: none;
    }
    
    .package-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 14px;
        color: #666;
    }
    
    .package-highlights ul {
        list-style: none;
        padding-left: 0;
    }
    
    .package-highlights li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
    }
    
    .package-highlights li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #c19b76;
    }
    
    .package-price {
        font-size: 18px;
        margin: 20px 0;
        color: #333;
    }
    
    .package-price span {
        color: #c19b76;
        font-weight: 700;
        font-size: 22px;
    }
    
    .package-cta {
        display: flex;
        justify-content: space-between;
    }
    
    .details-btn, .enquire-btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .details-btn {
        background: #f5f5f5;
        color: #333;
        border: 1px solid #ddd;
    }
    
    .details-btn:hover {
        background: #e9e9e9;
    }
    
    .enquire-btn {
        background: #c19b76;
        color: #fff;
    }
    
    .enquire-btn:hover {
        background: #a88762;
        color: #fff;
    }
    
    /* Destination Cards */
    .destination-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    
    .destination-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .destination-content {
        padding: 20px;
    }
    
    .destination-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .destination-content h3 a {
        color: #222;
        text-decoration: none;
    }
    
    /* Why Choose Us */
    .feature-item {
        display: flex;
        margin-bottom: 30px;
    }
    
    .feature-icon {
        font-size: 24px;
        color: #c19b76;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .feature-content h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    /* FAQ */
    .accordion .card {
        margin-bottom: 15px;
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .accordion .card-header {
        background: #fff;
        border-bottom: none;
        padding: 0;
    }
    
    .accordion .btn-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        color: #222;
        font-weight: 600;
        text-decoration: none;
    }
    
    /* Inquiry Form */
    .inquiry-form .form-control {
        height: 50px;
        border-radius: 4px;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
    
    .inquiry-form textarea.form-control {
        height: auto;
    }
    
    .primary-btn {
        display: inline-block;
        background: #c19b76;
        color: #fff;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        border: none;
    }
    
    .primary-btn:hover {
        background: #a88762;
        color: #fff;
    }
    
    /* Responsive */
    @media (max-width: 767px) {
        .home-banner-area {
            padding: 60px 0;
        }
        
        .home-banner-area h1 {
            font-size: 36px;
        }
        
        .section-gap {
            padding: 50px 0;
        }
        
        .package-cta {
            flex-direction: column;
        }
        
        .details-btn, .enquire-btn {
            width: 100%;
            margin-bottom: 10px;
        }
    }



    
    /* Tanzania Destination Specific Styles */
    .home-banner-area h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 20px;
        background: rgba(193, 155, 118, 0.1);
        border-radius: 8px;
    }
    
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #c19b76;
        line-height: 1;
    }
    
    .park-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        height: 100%;
    }
    
    .park-thumb img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .park-content {
        padding: 25px;
    }
    
    .park-meta {
        display: flex;
        justify-content: space-between;
        margin: 15px 0;
        font-size: 14px;
        color: #666;
    }
    
    .park-btn {
        display: inline-block;
        background: #c19b76;
        color: #fff;
        padding: 10px 20px;
        border-radius: 4px;
        text-decoration: none;
        margin-top: 15px;
    }
    
    .wildlife-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .wildlife-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .wildlife-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .wildlife-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.7);
        color: #fff;
        padding: 15px;
    }
    
    .season-calendar {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .season-month {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
    }




/* =========================================================
   Tour Booking / The Luxury Africa
   Clean consolidated layout stylesheet
   - duplicates removed
   - invalid rgba values fixed
   - over-broad global overrides removed
   - mobile overflow reduced
   - readable text and consistent component system
========================================================= */

:root{
  --tla-navy:#0a2342;
  --tla-navy-2:#1a3e6f;
  --tla-gold:#c8a97e;
  --tla-gold-2:#d4af37;
  --tla-cream:#f8f5f0;
  --tla-bg:#ffffff;
  --tla-bg-soft:#f8f9fa;
  --tla-bg-warm:#f9f7f4;
  --tla-text:#333333;
  --tla-text-soft:#555555;
  --tla-text-muted:#666666;
  --tla-border:#e5e7eb;
  --tla-border-soft:#eeeeee;
  --tla-success:#27ae60;
  --tla-link:#235870;
  --tla-shadow-sm:0 4px 12px rgba(0,0,0,.08);
  --tla-shadow-md:0 8px 22px rgba(0,0,0,.08);
  --tla-shadow-lg:0 12px 30px rgba(0,0,0,.10);
  --tla-radius:0;
  --tla-container:1200px;
  --tla-space-1:.5rem;
  --tla-space-2:1rem;
  --tla-space-3:1.5rem;
  --tla-space-4:2rem;
  --tla-space-5:3rem;
  --tla-space-6:4rem;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
html,body{max-width:100%;overflow-x:hidden;}
body{
  margin:0;
  font-family:'Lora',serif;
  color:var(--tla-text);
  background:var(--tla-bg);
  line-height:1.7;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto;}
a{color:inherit;text-decoration:none;transition:all .3s ease;}
p,li{color:var(--tla-text-soft);overflow-wrap:break-word;}
ul,ol{padding-left:1.25rem;}
h1,h2,h3,h4,h5,h6{margin:0 0 .75rem;color:var(--tla-navy);line-height:1.25;}
h2,h3,.section-title,.package-title,.card-content h3,.lai-day h3{font-family:'Playfair Display',serif;font-weight:700;}
.container{width:min(90%,var(--tla-container));margin-inline:auto;}
.section,.destinations-guide,.activities-section,.travel-info-section,.best-time-section,.luxury-activities,.luxury-safari-packages,.package-grid-area{padding:5rem 0;}
.section-light{background:var(--tla-cream);}
.line{margin-inline:auto;}
.center_left{text-align:left!important;}
.center_sm{text-align:center!important;}
.font_60{font-size:clamp(2.4rem,5vw,3.75rem);}
.font_50{font-size:clamp(2rem,4vw,3.125rem);}
.px_4{padding-inline:0;}
.rounded_1,
.history-box,
.option,
.season,
.info-card,
.destination-card,
.activity-card,
.package-card,
.safari-card,
.sidebar,
.tab-content,
.blog_area.single-post-area .feature-card,
.blog_area.single-post-area .blog_info,
.blog_area.single-post-area .navigation-area,
.lai-rates,.lai-included,.lai-excluded,.lai-form-container,
.compare-inner,
#homePackagesSlider .tlaSliderFrame,
#homePackagesSlider .tlaSlide,
#homePackagesSlider .tlaSlideBtn,
#homePackagesSlider .tlaSlideCta,
.button,
.cta-button,
.discover-btn,
.view-all-btn,
.package-content a[href*="luxuryinafrica.com"],
.place-img,
.gallery-grid img,
.package img,
.safari-popup,
#reviewBadge,
#booking-form input,
#booking-form textarea,
#booking-form select,
.blog_area.single-post-area .form-control,
.lai-form-group input,
.lai-form-group select,
.lai-form-group textarea,
.lai-submit-btn{border-radius:var(--tla-radius)!important;}

/* Typography / readability */
.section-intro,.section-description,.banner-overlay p,.tanzania-intro p,.destination-content p,.activity-content p,
.activity-details p,.tab-content p,.card-content p,.package-excerpt,.lai-day p,.note,
.blog_area.single-post-area .blog_details .excert.lead,.text-overlay p{color:var(--tla-text-soft);}

/* Banner */
.tanzania-banner{position:relative;min-height:60vh;height:min(90vh,800px);overflow:hidden;}
.banner-image,.banner-image img{height:100%;}
.banner-image img{width:100%;object-fit:cover;object-position:center 30%;}
.banner-overlay{
  position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:center;
  text-align:center;padding:2rem;color:#fff;
  background:linear-gradient(to bottom,rgba(10,35,66,.25) 0%,rgba(10,35,66,.68) 100%);
}
.banner-overlay h1{
  font-size:clamp(2.35rem,5vw,4.5rem);
  color:#fff;
  text-shadow:1px 1px 6px rgba(0,0,0,.35);
  font-weight:700;
  letter-spacing:.5px;
}
.banner-overlay p{font-size:clamp(1.05rem,2vw,1.45rem);max-width:720px;color:#fff;}
.home-banner-area{
  background:linear-gradient(rgba(0,0,0,.32),rgba(0,0,0,.32)), url('../img/price-bg.png') center/cover no-repeat;
  padding:120px 0;
}
.center_dest_dt .center_om{position:relative;z-index:1;padding:100px 0;}
.center_dest_dt .center_om::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.58);z-index:-1;}
.center_dest_dt h1{color:#fff;font-weight:700;text-shadow:1px 1px 3px rgba(0,0,0,.35);}
.center_dest_dt h6{font-size:16px;color:#fff;}
/* removed bad global selector: section h1 */

/* Section header system */
.section-header,.section-title{position:relative;}
.section-header{text-align:center;margin-bottom:3rem;}
.section-subtitle,
.section-header .subtitle{
  display:block;
  color:var(--tla-gold);
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:.9rem;
  margin-bottom:.6rem;
}
.section-title,
.section-header h2{
  display:inline-block;
  font-size:clamp(2rem,4vw,2.7rem);
  color:var(--tla-navy-2);
  margin-bottom:.5rem;
}
.section-title::after,
.section-header h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:var(--tla-gold);
  margin:1rem auto 0;
}
.section-description,.section-intro,.section-header .lead{max-width:720px;margin-inline:auto;font-size:1.05rem;color:var(--tla-text-muted);line-height:1.7;}
.section-title span,.section-header h2 span{color:var(--tla-gold);}

/* Intro / cards */
.tanzania-intro{text-align:center;}
.tanzania-intro p{max-width:820px;margin:0 auto 2rem;font-size:1.08rem;}
.history-box,
.option,
.season,
.info-card,
.activity-card,
.destination-card,
.package-card,
.safari-card,
.sidebar,
.tab-content,
.lai-rates,.lai-included,.lai-excluded,.lai-form-container,
.blog_area.single-post-area .feature-card,
.blog_area.single-post-area .blog_info,
.blog_area.single-post-area .navigation-area,
.compare-inner{
  background:#fff;
  border:1px solid var(--tla-border);
  box-shadow:var(--tla-shadow-sm);
}
.history-box{padding:2.5rem;max-width:700px;margin:2rem auto 0;}

/* Common grids */
.destination-grid,
.travel-options,
.season-info,
.travel-info-grid,
.activities-grid,
.packages-grid,
.safari-packages{
  display:grid;
  gap:2rem;
}
.destination-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin-top:2rem;}
.travel-options{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin-top:2rem;}
.season-info{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin-top:2rem;}
.travel-info-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-top:3rem;}
.activities-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-top:3rem;}
.packages-grid{grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:30px;}
.safari-packages{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:25px;padding:0 15px;}

/* Destinations */
.destinations-guide{background:var(--tla-cream);}
.destination-card{overflow:hidden;transition:transform .3s ease, box-shadow .3s ease;}
.destination-card:hover{transform:translateY(-6px);box-shadow:var(--tla-shadow-lg);}
.destination-card img{width:100%;height:240px;object-fit:cover;transition:transform .45s ease;}
.destination-card:hover img{transform:scale(1.04);}
.destination-content{padding:1.5rem;}
.destination-content h3,.destination-content h3 a{font-size:1.4rem;color:var(--tla-navy);}
.destination-content h3 a:hover{color:var(--tla-gold);}
.destination-meta{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.25rem;font-size:.92rem;}
.meta-item{display:flex;align-items:center;gap:.35rem;color:var(--tla-navy);}
.meta-item i{color:var(--tla-gold);}
.discover-btn{
  display:inline-flex;align-items:center;justify-content:center;padding:.7rem 1.2rem;
  background:var(--tla-gold);color:#fff;font-size:.9rem;border:1px solid var(--tla-gold);
}
.discover-btn:hover{background:transparent;color:var(--tla-gold);}
.destination-overlay{position:absolute;left:0;right:0;bottom:0;padding:20px;color:#fff;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,transparent 100%);}
.destination-overlay h4,.destination-overlay h4 a,.destination-overlay p{color:#fff;}
.destination-overlay p{opacity:.9;}

/* Activities */
.activities-section,.best-time-section,.luxury-activities{background:var(--tla-bg-warm);}
.activity-card{overflow:hidden;transition:transform .3s ease, box-shadow .3s ease;}
.activity-card:hover,.luxury-activity:hover{transform:translateY(-5px);box-shadow:var(--tla-shadow-lg);}
.activity-icon{
  background:#f0e6d6;color:var(--tla-gold);font-size:2rem;padding:1.5rem;text-align:center;
}
.activity-content{padding:1.5rem;}
.activity-content h3,.activity-details h3{color:var(--tla-navy-2);font-size:1.3rem;}
.activity-features,.luxury-features{margin-top:1rem;padding-left:0;list-style:none;}
.activity-features li,.luxury-features li{position:relative;padding-left:1.5rem;margin-bottom:.65rem;color:#444;}
.activity-features li::before,.luxury-features li::before{
  content:"";position:absolute;left:0;top:.75rem;width:6px;height:6px;background:var(--tla-gold);
}
.luxury-activities .activities-grid{grid-template-columns:repeat(auto-fit,minmax(420px,1fr));gap:2.5rem;max-width:1200px;margin-inline:auto;}
.luxury-activity{display:flex;background:#fff;border:1px solid var(--tla-border);box-shadow:var(--tla-shadow-md);}
.activity-media{position:relative;width:40%;min-width:260px;}
.activity-media .activity-icon{
  position:absolute;left:1.5rem;top:1.5rem;z-index:2;width:50px;height:50px;padding:0;
  display:flex;align-items:center;justify-content:center;background:rgba(200,169,126,.92);color:#fff;
}
.activity-image{min-height:280px;height:100%;background-position:center;background-size:cover;}
.activity-details{width:60%;padding:2rem;display:flex;flex-direction:column;}
.discover-more{margin-top:auto;display:inline-flex;align-items:center;gap:.5rem;color:var(--tla-gold);font-weight:600;}
.discover-more:hover{color:var(--tla-navy-2);}

/* Travel info */
.travel-info-section{background:#fff;}
.info-card{padding:1.5rem;transition:border-color .3s ease, box-shadow .3s ease;}
.info-card:hover{border-color:var(--tla-gold);box-shadow:var(--tla-shadow-md);}
.info-icon{font-size:1.8rem;color:var(--tla-gold);margin-bottom:1rem;}
.info-content ul{margin-top:.5rem;}
.airline-grid{display:grid;grid-template-columns:1fr;gap:.5rem;}
.airline{display:grid;grid-template-columns:100px 1fr;gap:.5rem;}
.region{font-weight:600;color:var(--tla-navy-2);}
.note{font-style:italic;font-size:.95rem;}

/* Seasons / timeline */
.season{padding:2rem;text-align:center;}
.season-timeline{max-width:900px;margin-inline:auto;}
.season-period{display:flex;gap:0;margin-bottom:2rem;position:relative;}
.season-period:last-child{margin-bottom:0;}
.season-badge{width:180px;flex:0 0 180px;text-align:center;padding-right:2rem;position:relative;}
.season-badge::after{content:"";position:absolute;top:0;bottom:0;right:0;width:1px;background:rgba(200,169,126,.3);}
.badge-icon,.highlight-icon,.footnote-icon{
  display:flex;align-items:center;justify-content:center;background:rgba(200,169,126,.12);
}
.badge-icon{width:50px;height:50px;margin:0 auto 1rem;background:var(--tla-gold);}
.badge-icon svg{fill:#fff;}
.badge-months,.weather-temp,.season-title,.recommendation-badge,.season-footnote strong{color:var(--tla-navy-2);font-weight:600;}
.badge-months{display:block;font-size:1.1rem;margin-bottom:.3rem;}
.badge-label{display:inline-block;padding:.3rem 1rem;background:rgba(200,169,126,.2);color:var(--tla-gold);font-size:.8rem;font-weight:600;}
.season-details{flex:1;padding-left:2rem;padding-bottom:2rem;border-bottom:1px dashed rgba(0,0,0,.1);}
.weather-indicator{display:flex;align-items:center;gap:1rem;margin-bottom:1rem;}
.weather-desc{font-size:.9rem;color:var(--tla-text-muted);}
.highlight-item{display:flex;gap:1rem;margin-bottom:1rem;}
.highlight-icon,.footnote-icon{width:24px;height:24px;flex:0 0 24px;}
.highlight-icon svg,.footnote-icon svg{width:14px;height:14px;fill:var(--tla-gold);}
.season-recommendation{display:flex;align-items:center;gap:1rem;padding:1rem;background:rgba(200,169,126,.12);}
.season-footnote{
  margin:3rem 0 0 180px;max-width:800px;padding:1.5rem;display:flex;gap:1rem;
  background:#fff;border:1px solid var(--tla-border);box-shadow:var(--tla-shadow-sm);
}
.season-footnote p{margin:0;color:var(--tla-text-soft);}

/* SEO / CTA */
.seo-links{background:var(--tla-navy);color:#fff;}
.seo-links .section-title,.seo-links .section-intro,.seo-links .section-description{color:#fff;}
.seo-links ul{columns:2;column-gap:3rem;max-width:800px;margin:0 auto;padding:0;list-style:none;}
.seo-links li{margin-bottom:1rem;break-inside:avoid;}
.seo-links a{color:var(--tla-gold);display:inline-block;padding:.25rem 0;}
.seo-links a:hover{color:#fff;}
.tanzania-cta{
  text-align:center;color:#fff;padding:6rem 0;
  background:linear-gradient(rgba(10,35,66,.85),rgba(10,35,66,.85)), url('img/price-bg.png') center/cover no-repeat;
}
.tanzania-cta .section-title,.tanzania-cta .section-intro,.tanzania-cta .section-description{color:#fff;}
.cta-button,.button,.view-all-btn,.lai-submit-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:1rem 2rem;background:var(--tla-gold);color:#fff;border:1px solid var(--tla-gold);
  font-weight:600;letter-spacing:.4px;transition:all .3s ease;
}
.button{background:#085340;border-color:#085340;padding:.7rem 1.35rem;color:#fff!important;}
.button:hover{background:#528e89;border-color:#528e89;color:#fff!important;}
.button.whatsapp:hover{background:#1ebc59;border-color:#1ebc59;}
.cta-button:hover,.view-all-btn:hover,.lai-submit-btn:hover{background:#fff;color:var(--tla-navy);}

/* Tabs / pricing / sidebar */
.tabs-container{display:flex;flex-direction:column;gap:20px;}
.tabs{display:flex;overflow-x:auto;border-bottom:1px solid #ddd;margin-bottom:20px;scrollbar-width:thin;}
.tab-button{
  padding:12px 20px;background:transparent;border:0;border-bottom:3px solid transparent;white-space:nowrap;
  font-weight:600;font-size:16px;color:var(--tla-text-muted);cursor:pointer;
}
.tab-button.active{color:#3a86ff;border-bottom-color:#3a86ff;}
.tab-content{padding:20px;margin-bottom:30px;}
.tab-content h2{color:var(--tla-text);font-size:28px;}
.tab-content h3{color:#444;font-size:22px;margin:25px 0 15px;}
.tab-content h4{margin-top:10px;color:#444;}
.tab-content > div{display:flex;flex-direction:column;gap:15px;}
.tab-content > div > div{padding:20px;border:1px solid #e0e0e0;background:#f5f5f5;}
.sidebar{padding:20px;}
.sidebar-section{margin-bottom:30px;}
.sidebar-section h3{font-size:20px;color:var(--tla-text);margin-bottom:15px;padding-bottom:10px;border-bottom:1px solid var(--tla-border-soft);}
.sidebar-section li{margin-bottom:8px;line-height:1.5;}
#booking-form label{display:block;margin-bottom:5px;color:var(--tla-text-soft);font-weight:500;}
#booking-form input,#booking-form textarea,#booking-form select,
.lai-form-group input,.lai-form-group select,.lai-form-group textarea,
.blog_area.single-post-area .form-control{
  width:100%;padding:10px 12px;border:1px solid #ddd;font-size:14px;background:#fff;color:var(--tla-text);
}
#booking-form textarea,.lai-form-group textarea{min-height:100px;resize:vertical;}
#booking-form button{
  width:100%;padding:12px 20px;background:#3a86ff;color:#fff;border:1px solid #3a86ff;font-weight:600;cursor:pointer;
}
#booking-form button:hover{background:#2667cc;border-color:#2667cc;}

/* Review badge */
.review-link{text-decoration:none;}
#reviewBadge{
  display:inline-flex;align-items:center;gap:8px;padding:8px 12px;
  font-size:16px;font-weight:500;color:var(--tla-text);background:#fff;border:1px solid var(--tla-border);
}
#stars{color:#ffd700;font-size:16px;}
#ratingValue{color:var(--tla-text);}
#reviewCount{color:var(--tla-text-muted);}

/* Blog area */
.blog_area.single-post-area .feature-img{margin-bottom:30px;position:relative;}
.blog_area.single-post-area .feature-img img{width:100%;box-shadow:0 5px 15px rgba(0,0,0,.1);}
.blog_area.single-post-area .image-caption small{font-size:.85rem;color:#6c757d;}
.blog_area.single-post-area .post_tag .badge{margin-bottom:5px;font-weight:500;font-size:.75rem;}
.blog_area.single-post-area .post_tag .badge-secondary{background:#6c757d;color:#fff;}
.blog_area.single-post-area .post_tag .badge-gold{background:#d4af37;color:#fff;}
.blog_area.single-post-area .post_tag .badge-dark{background:#343a40;color:#fff;}
.blog_area.single-post-area .post_tag .badge-success{background:#28a745;color:#fff;}
.blog_area.single-post-area .blog_meta{color:#495057;font-size:.9rem;}
.blog_area.single-post-area .blog_meta i,.blog_area.single-post-area .text-gold{color:#d4af37;}
.blog_area.single-post-area .social-links .btn-circle{
  width:32px;height:32px;display:inline-flex;align-items:center;justify-content:center;padding:0;border-radius:50%;
}
.blog_area.single-post-area .social-links .btn-facebook{background:#3b5998;color:#fff;}
.blog_area.single-post-area .social-links .btn-twitter{background:#1da1f2;color:#fff;}
.blog_area.single-post-area .social-links .btn-instagram{background:linear-gradient(45deg,#405de6,#5851db,#833ab4,#c13584,#e1306c,#fd1d1d);color:#fff;}
.blog_area.single-post-area .divider{border-top:1px solid #e9ecef;}
.blog_area.single-post-area .custom-list{list-style:none;padding-left:0;}
.blog_area.single-post-area .custom-list li{position:relative;padding:8px 0 8px 30px;}
.blog_area.single-post-area .custom-list i{position:absolute;left:0;top:10px;}
.blog_area.single-post-area .card,
.blog_area.single-post-area .feature-card{transition:all .3s ease;border:1px solid #e9ecef;}
.blog_area.single-post-area .card:hover,
.blog_area.single-post-area .feature-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,.1);}
.blog_area.single-post-area .destination-card{background:#f8f9fa;padding:20px;border-left:4px solid #d4af37;}
.blog_area.single-post-area .blockquote-gold{border-left:4px solid #d4af37;background:#f8f9fa;padding:20px;font-style:italic;color:#495057;}
.blog_area.single-post-area .blockquote-footer{font-size:.9rem;color:#6c757d;}
.blog_area.single-post-area .navigation-area .thumb img,
.blog_area.single-post-area .popular_post_widget .media img{max-width:80px;}
.blog_area.single-post-area .author_widget{text-align:center;}
.blog_area.single-post-area .author_img{width:150px;height:150px;object-fit:cover;border:3px solid #d4af37;margin:0 auto 15px;}
.blog_area.single-post-area .btn-outline-gold{color:#d4af37;border-color:#d4af37;background:transparent;}
.blog_area.single-post-area .btn-outline-gold:hover,
.blog_area.single-post-area .btn-gold{background:#d4af37;color:#fff;}
.blog_area.single-post-area .btn-gold:hover{background:#c19b2e;color:#fff;}

/* Package blocks */
.package-grid-area{background:linear-gradient(135deg,#f9f5f0 0%,#f0e8df 100%);position:relative;overflow:hidden;padding:120px 0;}
.package-grid-area::before{content:"";position:absolute;inset:0;background:rgba(193,155,118,.03);pointer-events:none;}
.package-card,.safari-card,.package{overflow:hidden;transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;}
.package-card:hover,.safari-card:hover,.package:hover{transform:translateY(-8px);box-shadow:var(--tla-shadow-lg);}
.package-image,.card-image,.package-image img,.card-image img{width:100%;}
.package-image,.card-image{height:240px;position:relative;overflow:hidden;}
.package-image img,.card-image img{height:100%;object-fit:cover;transition:transform .6s ease;}
.package-card:hover .package-image img,.safari-card:hover .card-image img,.package:hover img{transform:scale(1.06);}
.package-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.08),rgba(0,0,0,.35));}
.package-content,.card-content{padding:25px;position:relative;}
.package-meta,.price-duration,.package-footer,.package-details{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap;}
.package-type,.card-badge{
  background:rgba(193,155,118,.1);color:var(--tla-gold);padding:6px 12px;font-size:12px;font-weight:700;
  letter-spacing:.7px;text-transform:uppercase;
}
.card-badge{position:absolute;left:20px;top:20px;background:rgba(255,255,255,.95);}
.package-price,.price{color:var(--tla-success);font-weight:800;font-size:18px;}
.package-title,.card-content h3{font-size:22px;color:var(--tla-text);line-height:1.4;}
.package-excerpt,.card-content p,.package-content p{font-size:15px;line-height:1.65;color:var(--tla-text-muted);}
.package-footer{padding-top:15px;border-top:1px solid rgba(0,0,0,.05);}
.package-duration,.duration{color:#888;font-size:14px;font-weight:500;}
.package-duration i,.duration i,.package-details a{color:var(--tla-gold);}
.package-link,.explore-btn,.package-content a[href*="luxuryinafrica.com"]{
  display:inline-flex;align-items:center;gap:.45rem;font-weight:700;font-size:14px;
}
.package-link,.explore-btn{color:var(--tla-gold);}
.package-link:hover,.explore-btn:hover{color:#a5825e;}
.package-content a[href*="luxuryinafrica.com"]{padding:10px 18px;background:#112125;color:#fff!important;}
.package-content a[href*="luxuryinafrica.com"]:hover{background:#1a3137;}

/* Top category + overlay content */
.top-category-widget-area{position:relative;padding:90px 0;background-position:center;background-size:cover;color:#000;}
.top-category-widget-area .container{display:flex;flex-direction:column;align-items:center;justify-content:center;}
.top-category-widget-area .section-header{margin-bottom:2rem;text-align:center;}
.top-category-widget-area .section-title,
.top-category-widget-area .section-subtitle,
.top-category-widget-area p,
.top-category-widget-area h2{color:#000;}
.content{position:relative;width:100%;height:auto;overflow:hidden;}
.content-image{width:100%;height:auto;object-fit:cover;}
.overlay-bg{position:absolute;inset:0;background:rgba(0,0,0,.3);z-index:1;}
.text-overlay{
  position:absolute;inset:auto 0 0 0;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;
  min-height:100%;padding:20px;text-align:center;color:#fff;background:linear-gradient(to top,rgba(0,0,0,.62),transparent 60%);
}
.text-overlay h4,.text-overlay p,.text-overlay .section-subtitle{color:#fff;}
.text-overlay p{font-size:1rem;line-height:1.5;}

/* Luxury Africa itinerary */
.luxury-africa-itinerary{max-width:1200px;margin:0 auto;padding:20px;font-family:'Roboto',sans-serif;color:var(--tla-text);line-height:1.6;}
.lai-container{width:100%;margin:0 auto;}
.lai-description,.lai-content-wrapper{display:flex;flex-wrap:wrap;gap:30px;}
.lai-description{margin-bottom:40px;}
.lai-description-text,.lai-description-image,.lai-itinerary-details,.lai-sidebar{min-width:300px;}
.lai-description-text,.lai-itinerary-details{flex:1 1 0;}
.lai-itinerary-details{flex:2 1 0;}
.lai-description-image,.lai-sidebar{flex:1 1 0;}
.lai-description-text h1{color:var(--tla-navy-2);font-size:28px;font-weight:700;margin-bottom:20px;}
.lai-description-image img{width:100%;max-height:400px;object-fit:cover;}
.lai-day{margin-bottom:30px;}
.lai-day h3{font-size:20px;color:var(--tla-navy-2);font-weight:600;margin-bottom:15px;}
.lai-day a{color:#d4a762;font-weight:500;}
.lai-day a:hover{text-decoration:underline;}
.lai-sidebar{display:flex;flex-direction:column;gap:25px;}
.lai-rates,.lai-included,.lai-excluded,.lai-form-container{padding:20px;background:#f8f8f8;}
.lai-rates h3,.lai-included h3,.lai-excluded h3,.lai-form-container h3{font-size:18px;font-weight:600;color:var(--tla-navy-2);margin-bottom:15px;}
.lai-rates table{width:100%;border-collapse:collapse;margin-bottom:10px;}
.lai-rates th,.lai-rates td{padding:10px;text-align:left;border-bottom:1px solid #ddd;}
.lai-rates th{background:var(--tla-navy-2);color:#fff;}
.lai-rates tr:nth-child(even){background:#f2f2f2;}
.lai-note{font-size:14px;color:#666;font-style:italic;}
.lai-included ul,.lai-excluded ul{padding-left:20px;}
.lai-included li,.lai-excluded li{margin-bottom:8px;}
.lai-inquiry-form{display:flex;flex-direction:column;gap:15px;}
.lai-form-group{display:flex;flex-direction:column;}
.lai-form-group label{margin-bottom:5px;font-weight:500;color:#444;}

/* Compare widget */
.compare-widget{max-width:980px;margin:18px auto 0;display:flex;justify-content:center;flex-wrap:wrap;gap:10px;}
.compare-inner{padding:10px 14px;display:flex;align-items:center;gap:8px;}
.compare-label{font-size:13px;color:#0f2125;opacity:.75;}
.compare-btn{font-size:13px;border:1px solid #235870;padding:6px 12px;color:#235870;}
.compare-btn.active{font-weight:700;color:#fff;background:#235870;cursor:default;}
#compare-switcher.is-sticky{position:sticky;top:0;z-index:1000;background:#fff;padding:8px 0;}

/* Slider */
#homePackagesSlider{position:relative;}
#homePackagesSlider .tlaSlideBtn{
  min-width:44px;height:44px;padding:0 14px;border:1px solid rgba(0,0,0,.12);background:rgba(255,255,255,.92);
  color:rgba(15,33,37,.88);font-weight:950;box-shadow:0 10px 22px rgba(6,10,8,.05);cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#homePackagesSlider .tlaSlideBtn:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(6,10,8,.10);border-color:rgba(212,175,55,.30);}
#homePackagesSlider .tlaSlideBtn:focus{outline:3px solid rgba(212,175,55,.25);outline-offset:2px;border-color:rgba(212,175,55,.55);}
#homePackagesSlider .tlaSliderFrame{margin-top:14px;border:1px solid rgba(0,0,0,.08);background:#fff;box-shadow:0 10px 30px rgba(6,10,8,.06);overflow:hidden;}
#homePackagesSlider .tlaSliderTrack{
  display:flex;gap:14px;padding:14px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;overscroll-behavior-x:contain;scroll-padding-inline:14px;
}
#homePackagesSlider .tlaSliderTrack::-webkit-scrollbar{height:10px;}
#homePackagesSlider .tlaSliderTrack::-webkit-scrollbar-thumb{background:rgba(0,0,0,.10);}
#homePackagesSlider .tlaSliderTrack::-webkit-scrollbar-track{background:rgba(0,0,0,.04);}
#homePackagesSlider .tlaSlide{
  flex:0 0 calc((100% - 28px)/3);min-width:0;display:flex;flex-direction:column;height:100%;
  scroll-snap-align:start;border:1px solid rgba(0,0,0,.08);background:#fff;box-shadow:0 10px 24px rgba(6,10,8,.05);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
#homePackagesSlider .tlaSlide:hover{transform:translateY(-2px);box-shadow:0 16px 40px rgba(6,10,8,.10);border-color:rgba(212,175,55,.22);}
#homePackagesSlider .tlaSlideImg{width:100%;height:190px;object-fit:cover;background:#e9efed;flex:0 0 auto;}
#homePackagesSlider .tlaSlideBody{padding:12px;display:flex;flex-direction:column;flex:1 1 auto;min-height:0;}
#homePackagesSlider .tlaSlideTitle{margin:0 0 6px;font-size:15px;line-height:1.25;font-weight:950;letter-spacing:-.01em;}
#homePackagesSlider .tlaSlideTitle a{color:#0f2125;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;}
#homePackagesSlider .tlaSlideTitle a:hover{text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:3px;}
#homePackagesSlider .tlaSlideMeta{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 10px;}
#homePackagesSlider .tlaPill{
  display:inline-flex;align-items:center;gap:8px;padding:7px 10px;border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.92);color:rgba(15,33,37,.82);font-size:13px;font-weight:850;max-width:100%;
}
#homePackagesSlider .tlaPill i{color:var(--tla-gold);}
#homePackagesSlider .tlaSlideDesc{
  margin:0 0 12px;color:rgba(15,33,37,.80);line-height:1.6;font-size:14px;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;
}
#homePackagesSlider .tlaSlideRow{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:10px;padding-top:10px;border-top:1px solid rgba(0,0,0,.06);}
#homePackagesSlider .tlaSlidePrice{font-weight:950;color:#0f2125;font-size:14px;line-height:1.2;}
#homePackagesSlider .tlaSlidePrice small{display:block;font-size:12px;font-weight:800;color:rgba(15,33,37,.62);margin-top:2px;}
#homePackagesSlider .tlaSlideReviews{
  display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border:1px dashed rgba(212,175,55,.40);
  background:rgba(212,175,55,.08);color:rgba(15,33,37,.78);font-size:13px;font-weight:900;white-space:nowrap;
}
#homePackagesSlider .tlaSlideCta{
  display:inline-flex;align-items:center;justify-content:center;width:100%;margin-top:10px;padding:11px 12px;
  border:1px solid rgba(212,175,55,.38);background:linear-gradient(180deg, rgba(212,175,55,.16), rgba(212,175,55,.10));
  color:rgba(15,33,37,.92);font-weight:950;letter-spacing:.02em;text-decoration:none;box-shadow:0 12px 26px rgba(6,10,8,.06);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#homePackagesSlider .tlaSlideCta:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(6,10,8,.10);border-color:rgba(212,175,55,.55);}
#homePackagesSlider .tlaSliderDots{display:flex;justify-content:center;gap:8px;padding-top:10px;}
#homePackagesSlider .tlaDot{width:8px;height:8px;background:rgba(0,0,0,.18);border:0;border-radius:50%;cursor:pointer;}
#homePackagesSlider .tlaDot.active{background:rgba(212,175,55,.85);box-shadow:0 0 0 6px rgba(212,175,55,.14);}

/* Misc */
.gallery-section{padding:60px 20px;background:var(--tla-bg-soft);}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.gallery-grid img{width:100%;height:250px;object-fit:cover;box-shadow:0 4px 10px rgba(0,0,0,.1);transition:transform .3s ease, box-shadow .3s ease;cursor:zoom-in;}
.gallery-grid img:hover{transform:scale(1.03);box-shadow:0 6px 18px rgba(0,0,0,.2);}
.logo-slider{overflow:hidden;position:relative;background:#413b2e;}
.logo-track-wrapper{width:100%;overflow:hidden;position:relative;}
.logo-track{display:flex;gap:3rem;width:max-content;animation:scroll 35s linear infinite;will-change:transform;}
.logo-img{height:40px;width:190px;object-fit:contain;filter:brightness(0) invert(1);transition:filter .3s ease, transform .3s ease;}
.logo-img:hover{filter:none;transform:scale(1.05);}
@keyframes scroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.compare-widget,.tabs{scrollbar-width:thin;}

/* Responsive */
@media (min-width:768px){
  .tabs-container{flex-direction:row;}
  .sidebar{margin-left:20px;}
  .tab-content > div{flex-direction:row;}
}
@media (max-width:1200px){
  .packages-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));}
}
@media (max-width:1100px){
  #homePackagesSlider .tlaSlide{flex:0 0 calc((100% - 14px)/2);}
}
@media (max-width:1024px){
  .luxury-activities .activities-grid{grid-template-columns:1fr;}
  .luxury-activity{flex-direction:column;}
  .activity-media,.activity-details{width:100%;}
  .activity-image{min-height:200px;}
}
@media (max-width:991px){
  .destination-grid{grid-template-columns:1fr;}
  .destination-card img,.destination-card{height:200px;}
  .blog_area.single-post-area .author_img{width:120px;height:120px;}
  .package-image,.card-image{height:200px;}
}
@media (max-width:768px){
  .section,.destinations-guide,.activities-section,.travel-info-section,.best-time-section,.luxury-activities,.luxury-safari-packages,.package-grid-area{padding:4rem 0;}
  .seo-links ul{columns:1;}
  .destination-grid,.travel-options,.season-info,.travel-info-grid,.activities-grid,.safari-packages,.packages-grid{grid-template-columns:1fr;}
  .section-title,.section-header h2{font-size:2rem;}
  .season-period{flex-direction:column;}
  .season-badge{width:100%;padding-right:0;padding-bottom:1.5rem;margin-bottom:1.5rem;border-bottom:1px dashed rgba(0,0,0,.1);}
  .season-badge::after{display:none;}
  .season-details{padding-left:0;padding-bottom:1.5rem;}
  .season-footnote{margin-left:0;}
  .center_dest_dt .center_om{padding:70px 0;}
  .center_dest_dt h1{font-size:32px;}
  .tab-button{padding:10px 15px;font-size:14px;}
  .luxury-safari-packages{padding:60px 0;}
  .top-category-widget-area div[style*="height: 155px"]{height:80px!important;}
  .top-category-widget-area .section-title{font-size:2rem;}
  .top-category-widget-area .section-subtitle{font-size:1rem;}
  .blog_area.single-post-area .author_img{width:100px;height:100px;}
  .blog_area.single-post-area .blog_info{text-align:left;}
  .blog_area.single-post-area .feature-card{margin-bottom:20px;}
}
@media (max-width:676px){
  .logo-img{height:28px;width:120px;}
}
@media (max-width:560px){
  #homePackagesSlider .tlaSliderTrack{padding:12px;gap:12px;scroll-padding-inline:12px;}
  #homePackagesSlider .tlaSlide{flex:0 0 100%;}
  #homePackagesSlider .tlaSlideImg{height:180px;}
}
@media (max-width:576px){
  .section-title,.section-header h2{font-size:1.9rem;}
  .packages-grid,.safari-packages{grid-template-columns:1fr;}
  .package-content,.card-content{padding:20px 18px;}
  .safari-popup{max-width:90%!important;font-size:14px!important;}
  .safari-popup h3{font-size:18px!important;}
  .safari-popup span,.safari-popup button,.safari-popup div{font-size:13px!important;}
  .safari-popup button{padding:10px!important;}
  .safari-popup .popup-image{height:140px!important;}
}
@media (max-width:480px){
  .banner-overlay h1{font-size:2.25rem;}
  .section,.destinations-guide,.activities-section,.travel-info-section,.best-time-section,.luxury-activities,.luxury-safari-packages,.package-grid-area{padding:3rem 0;}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation:none!important;transition:none!important;}
  #homePackagesSlider .tlaSliderTrack{scroll-behavior:auto!important;}
}


/* ======================================================
   GLOBAL PATCH: PREVENT RIGHT-SIDE LAYOUT BLOWOUT
   ====================================================== */

/* 1. The Core Fix: Force the main track to allow shrinking */
.zk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px !important; /* CRUCIAL: minmax(0, 1fr) overrides implicit min-content calculation */
  gap: 60px;
  align-items: start;
}

/* 2. Prevent flex/grid item expansion past parent bounds */
.zk-content, 
.zk-content-block, 
.zk-sidebar {
  min-width: 0 !important;
}

/* 3. Safeguard rigid text strings from breaking container widths */
.zk-content h1,
.zk-content h2,
.zk-content h3,
.zk-timeline-title,
.zk-timeline-desc,
.zk-includes li {
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  word-break: break-word;
}

/* 4. Desktop-to-Tablet Boundary Adjustment */
@media (max-width: 1140px) {
  .zk-layout {
    grid-template-columns: 1fr !important; /* Drops sidebar below before text gets squashed */
    gap: 40px;
  }
  .zk-sidebar {
    position: static !important;
  }
}