/*----------------------------------------------------
@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: #ffffff; }
    .canvus_menu .toggle_icon span {
      height: 2px;
      width: 30px;
      display: block;
      background: #f3c48f;
      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: #f8dca8;
        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: #f3d4a6;
        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: #1a2e35; /* 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;
    }






    /* ===== BASE STYLES ===== */
:root {
  --navy: #0a2342;
  --gold: #c8a97e;
  --cream: #f8f5f0;
  --text: #333333;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  color: var(--text);
  line-height: 1.7;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BANNER ===== */
.tanzania-banner {
  position: relative;
  height: 90vh;
  max-height: 800px;
  overflow: hidden;
}

.banner-image {
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 35, 66, 0.2) 0%, rgba(10, 35, 66, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: white;
}

.banner-overlay h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.banner-overlay p {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.section-light {
  background-color: var(--cream);
}

/* ===== INTRO SECTION ===== */
.tanzania-intro {
  text-align: center;
}

.tanzania-intro p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.history-box {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
  max-width: 700px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow);
}

/* ===== DESTINATIONS ===== */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.destination-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-content {
  padding: 1.5rem;
}

.destination-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}



/* ===== TRAVEL INFO ===== */
.travel-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.option {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* ===== BEST TIME ===== */
.season-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.season {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* ===== SEO LINKS ===== */
.seo-links {
  background-color: var(--navy);
  color: white;
}

.seo-links .section-title {
  color: white;
}

.seo-links .section-title:after {
  background: var(--gold);
}

.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(--gold);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.seo-links a:hover {
  color: white;
}

/* ===== CTA ===== */
.tanzania-cta {
  text-align: center;
  background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)), url('img/price-bg.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
}

.tanzania-cta .section-title {
  color: white;
}

.tanzania-cta .section-title:after {
  background: var(--gold);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 2rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: white;
  color: var(--navy);
}

/* ===== ICONS ===== */
/* Using subtle Material Icons */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .seo-links ul {
    columns: 1;
  }
  
  .destination-grid,
  .activity-list,
  .travel-options,
  .season-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .banner-overlay h1 {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}





/* Destinations Section */
.destinations-guide {
    padding: 5rem 0;
    background-color: var(--cream);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.destination-content h3 a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.destination-content h3 a:hover {
    color: var(--gold);
}

.destination-content p {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1rem;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--navy);
}

.meta-item i {
    font-size: 1.1rem;
    color: var(--gold);
}

.discover-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.discover-btn:hover {
    background-color: transparent;
    color: var(--gold);
}

@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card img {
        height: 200px;
    }
}




/* ===== Activities Section ===== */
.activities-section {
    padding: 5rem 0;
    background-color: #f9f7f4;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.activity-icon {
    background-color: #f0e6d6;
    color: #c8a97e;
    font-size: 2rem;
    padding: 1.5rem;
    text-align: center;
}

.activity-content {
    padding: 1.5rem;
}

.activity-content h3 {
    color: #1a3e6f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-features {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.activity-features li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: none;
    padding-left: 1.5rem;
}

.activity-features li:before {
    content: "•";
    color: #c8a97e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== Travel Info Section ===== */
.travel-info-section {
    padding: 5rem 0;
    background: white;
}

.travel-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #c8a97e;
}

.info-icon {
    font-size: 1.8rem;
    color: #c8a97e;
    margin-bottom: 1rem;
}

.info-content ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.info-content li {
    margin-bottom: 0.5rem;
}

.airline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.airline {
    display: grid;
    grid-template-columns: 100px 1fr;
}

.region {
    font-weight: 600;
    color: #1a3e6f;
}

.note {
    font-style: italic;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}



/* ===== Section Header Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    color: #1a3e6f;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8a97e;
    margin: 1rem auto 0;
}

.section-subtitle {
    display: block;
    color: #c8a97e;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .activities-grid,
    .travel-info-grid,
    .season-grid {
        grid-template-columns: 1fr;
    }
}


/* Best Time to Visit - Redesigned */
.best-time-section {
    padding: 5rem 0;
    background-color: #f9f7f4;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    color: #c8a97e;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.2rem;
    color: #1a3e6f;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8a97e;
    margin: 1rem auto 0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

.season-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.season-period {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.season-period:last-child {
    margin-bottom: 0;
}

.season-badge {
    width: 180px;
    flex-shrink: 0;
    text-align: center;
    padding-right: 2rem;
    position: relative;
}

.season-badge:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(200, 169, 126, 0.3);
}

.badge-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background-color: #c8a97e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.badge-months {
    display: block;
    font-weight: 600;
    color: #1a3e6f;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.badge-label {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: rgba(200, 169, 126, 0.2);
    color: #c8a97e;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.season-details {
    flex-grow: 1;
    padding-left: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.weather-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.weather-temp {
    font-weight: 600;
    color: #1a3e6f;
    font-size: 1.1rem;
}

.weather-desc {
    color: #666;
    font-size: 0.9rem;
}

.season-title {
    color: #1a3e6f;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.season-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 14px;
    height: 14px;
    fill: #c8a97e;
}

.season-recommendation {
    background-color: rgba(200, 169, 126, 0.1);
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recommendation-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1a3e6f;
    font-size: 0.9rem;
}

.recommendation-badge svg {
    width: 16px;
    height: 16px;
    fill: #c8a97e;
}

.season-footnote {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin-left: 180px;
}

.footnote-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footnote-icon svg {
    width: 14px;
    height: 14px;
    fill: #c8a97e;
}

.season-footnote p {
    font-size: 0.95rem;
    color: #555;
}

.season-footnote strong {
    color: #1a3e6f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .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, 0.1);
    }
    
    .season-badge:after {
        display: none;
    }
    
    .season-details {
        padding-left: 0;
        padding-bottom: 1.5rem;
    }
    
    .season-footnote {
        margin-left: 0;
    }
}


/* Luxury Activities Section */
.luxury-activities {
    padding: 6rem 0;
    background-color: #f9f7f4;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    color: #c8a97e;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1a3e6f;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.luxury-activity {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.activity-media {
    width: 40%;
    position: relative;
}

.activity-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    width: 50px;
    height: 50px;
    background-color: rgba(200, 169, 126, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.activity-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 280px;
}

.activity-details {
    width: 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.activity-details h3 {
    color: #1a3e6f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.activity-details p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.luxury-features {
    margin-bottom: 1.5rem;
}

.luxury-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.luxury-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: #c8a97e;
    border-radius: 50%;
}

.discover-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #c8a97e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.discover-more:hover {
    color: #1a3e6f;
}

.discover-more svg {
    width: 18px;
    height: 18px;
    margin-left: 0.5rem;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.discover-more:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .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: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .luxury-activity {
        flex-direction: column;
    }
}


.home-banner-area {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('../img/price-bg.png') repeat center center;
  background-size: cover;
  padding: 120px 0;
}



/* Safari Section Styling */
.center_dest_dt .center_om {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.center_dest_dt h1 {
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.review-link {
    text-decoration: none;
}

#reviewBadge {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
}

#stars {
    color: #FFD700;
    font-size: 16px;
}

.center_dest_dt h6 {
    font-size: 16px;
}

/* Tab Styling */
.tabs-container {
    flex-direction: column;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    overflow-x: auto;
}

.tab-button {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
}

.tab-button.active {
    color: #3a86ff;
    border-bottom-color: #3a86ff;
}

.tab-content {
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.tab-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

.tab-content h3 {
    color: #444;
    margin: 25px 0 15px;
    font-size: 22px;
}

.tab-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Price Boxes */
.tab-content > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-content > div > div {
    padding: 20px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.tab-content h4 {
    margin-top: 10px;
    color: #444;
}

/* Sidebar Styling */
.sidebar {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-section ul {
    padding-left: 20px;
}

.sidebar-section li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

/* Form Styling */
#booking-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

#booking-form input,
#booking-form textarea,
#booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

#booking-form button {
    background-color: #3a86ff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

#booking-form button:hover {
    background-color: #2667cc;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .tabs-container {
        flex-direction: row;
    }
    
    .sidebar {
        margin-left: 20px;
    }
    
    .tab-content > div {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .center_dest_dt .center_om {
        padding: 70px 0;
    }
    
    .center_dest_dt h1 {
        font-size: 32px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}


/* Blog Area Specific Styles */
.blog_area.single-post-area .feature-img {
    margin-bottom: 30px;
    position: relative;
}

.blog_area.single-post-area .feature-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog_area.single-post-area .image-caption small {
    font-size: 0.85rem;
    color: #6c757d;
}

.blog_area.single-post-area .blog_info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog_area.single-post-area .post_tag .badge {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.75rem;
}

.blog_area.single-post-area .post_tag .badge-secondary {
    background-color: #6c757d;
}

.blog_area.single-post-area .post_tag .badge-gold {
    background-color: #d4af37;
    color: #fff;
}

.blog_area.single-post-area .post_tag .badge-dark {
    background-color: #343a40;
}

.blog_area.single-post-area .post_tag .badge-success {
    background-color: #28a745;
}

.blog_area.single-post-area .blog_meta {
    color: #495057;
    font-size: 0.9rem;
}

.blog_area.single-post-area .blog_meta i {
    margin-right: 5px;
    color: #d4af37;
}

.blog_area.single-post-area .social-links .btn-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.blog_area.single-post-area .social-links .btn-facebook {
    background-color: #3b5998;
    color: white;
}

.blog_area.single-post-area .social-links .btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.blog_area.single-post-area .social-links .btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.blog_area.single-post-area .blog_details .excert.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.blog_area.single-post-area .divider {
    border-top: 1px solid #e9ecef;
}

.blog_area.single-post-area .custom-list {
    list-style-type: none;
    padding-left: 0;
}

.blog_area.single-post-area .custom-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.blog_area.single-post-area .custom-list i {
    position: absolute;
    left: 0;
    top: 10px;
}

.blog_area.single-post-area .text-gold {
    color: #d4af37;
}

.blog_area.single-post-area .card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.blog_area.single-post-area .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog_area.single-post-area .destination-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.blog_area.single-post-area .blockquote-gold {
    border-left: 4px solid #d4af37;
    background-color: #f8f9fa;
    padding: 20px;
    font-style: italic;
    color: #495057;
}

.blog_area.single-post-area .blockquote-footer {
    font-size: 0.9rem;
    color: #6c757d;
}

.blog_area.single-post-area .feature-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.blog_area.single-post-area .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog_area.single-post-area .navigation-area {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.blog_area.single-post-area .navigation-area .thumb 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 .popular_post_widget .media {
    margin-bottom: 20px;
}

.blog_area.single-post-area .popular_post_widget .media img {
    max-width: 80px;
}

.blog_area.single-post-area .btn-outline-gold {
    color: #d4af37;
    border-color: #d4af37;
    background-color: transparent;
}

.blog_area.single-post-area .btn-outline-gold:hover {
    background-color: #d4af37;
    color: white;
}

.blog_area.single-post-area .btn-gold {
    background-color: #d4af37;
    color: white;
    border: none;
    padding: 10px 20px;
}

.blog_area.single-post-area .btn-gold:hover {
    background-color: #c19b2e;
    color: white;
}

.blog_area.single-post-area .form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.blog_area.single-post-area select.form-control {
    height: auto;
    padding: 10px 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog_area.single-post-area .author_img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .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;
    }
}





/* Force white color for h1 in banner only */
section h1 {
  color: #f09359 !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
}





/* Package Grid Area - New Design */
.package-grid-area {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9f5f0 0%, #f0e8df 100%);
  position: relative;
  overflow: hidden;
}

.package-grid-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(193,155,118,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
  background-size: cover;
  z-index: 0;
}

/* Section Header - New Design */
.section-subtitle {
  display: inline-block;
  color: #c19b76;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #c19b76;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.section-title span {
  color: #c19b76;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(193,155,118,0.2);
  z-index: -1;
}

.section-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Package Cards - New Design */
.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.03);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.package-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.package-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.package-content {
  padding: 30px;
  position: relative;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.package-type {
  background: rgba(193,155,118,0.1);
  color: #c19b76;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-price {
  color: #27ae60;
  font-weight: 800;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

.package-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.4;
}

.package-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.package-duration {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.package-duration i {
  margin-right: 8px;
  color: #c19b76;
}

.package-link {
  color: #c19b76;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.package-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* View All Button - New Design */
.view-all-btn {
  display: inline-block;
  background: linear-gradient(to right, #c19b76 0%, #d4b08c 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(193,155,118,0.2);
  margin-top: 30px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #d4b08c 0%, #c19b76 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

/* Hover Effects - New Design */
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-card:hover::before {
  opacity: 1;
}

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

.package-link:hover {
  color: #a5825e;
}

.package-link:hover i {
  transform: translateX(3px);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(193,155,118,0.3);
}

.view-all-btn:hover::before {
  left: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }
  
  .package-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .package-grid-area {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-description {
    font-size: 16px;
  }
}








/* Destinations Grid Styles */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px;
    color: white;
}

.destination-overlay h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.destination-overlay h4 a {
    color: white;
    text-decoration: none;
}

.destination-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        height: 200px;
    }
}








/* Luxury Safari Packages Section */
.luxury-safari-packages {
  padding: 100px 0;
  background: #f8f5f0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: block;
  color: #c19b76;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.section-header h2 span {
  color: #c19b76;
}

.section-header .lead {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Safari Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.safari-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.safari-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  color: #c19b76;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-content {
  padding: 25px;
}

.price-duration {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  color: #27ae60;
  font-weight: 700;
  font-size: 18px;
}

.duration {
  color: #888;
  font-size: 14px;
}

.duration i {
  margin-right: 5px;
  color: #c19b76;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.card-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  color: #c19b76;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.explore-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.explore-btn:hover {
  color: #a5825e;
}

.explore-btn:hover i {
  transform: translateX(5px);
}

/* View All Button */
.view-all-btn {
  display: inline-block;
  background: #c19b76;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(193,155,118,0.2);
}

.view-all-btn:hover {
  background: #a5825e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(193,155,118,0.3);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .luxury-safari-packages {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .card-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}



/* General text color override */
.top-category-widget-area,
.top-category-widget-area h2,
.top-category-widget-area p {
    color: #000; /* Force black text */
}

/* Section padding and layout */
.top-category-widget-area {
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
}

/* Overlay box spacing fix */
.top-category-widget-area .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Spacing adjustment */
.top-category-widget-area .section-header {
    margin-bottom: 2rem;
    text-align: center;
}

/* Title styles */
.top-category-widget-area .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Subtitle styles */
.top-category-widget-area .section-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

/* Optional: reduce the hard-coded spacer height on small screens */
@media (max-width: 768px) {
    .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;
    }
}






/* Safari Packages Grid - Responsive Layout */
.safari-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 15px;
}

/* Package Card Styling */
.package {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.package img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0 !important; /* Ensures square corners */
}

.package-content {
  padding: 20px;
  text-align: left;
}

.package-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.package-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

/* Package Details (Days/Price/Reviews) */
.package-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
  color: #555;
  flex-wrap: wrap;
  gap: 10px;
}

.package-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-details a {
  color: #ff6b6b;
  text-decoration: none;
}

/* "View Details" Button */
.package-content a[href*="luxuryinafrica.com"] {
  display: inline-block;
  padding: 8px 20px;
  background: #112125;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  transition: background 0.3s;
}

.package-content a[href*="luxuryinafrica.com"]:hover {
  background: #112125;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .safari-packages {
    grid-template-columns: 1fr; /* Single column on mobile */
    padding: 0 10px;
    gap: 20px;
  }
  
  .package-content {
    padding: 15px;
  }
}



/* Ensure the container takes full width and height */
.content {
    position: relative;
    width: 100%;
    height: auto; /* Adjust height as needed */
}

/* Overlay for text readability */
.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 50%; /* Centers the overlay vertically */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: translateY(-50%); /* Adjusts to center overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Center the section title and subtitle */
.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #141111;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #fff;
}

/* Title styling */
.text-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold; /* Makes title stand out */
}

.text-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff; /* Makes the card text white */
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the container without stretching */
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay to enhance text visibility */
    z-index: 1; /* Ensure overlay is above the image */
}



/* Luxury Africa Itinerary CSS */
.luxury-africa-itinerary {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

.lai-container {
    width: 100%;
    margin: 0 auto;
}

.lai-description {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.lai-description-text {
    flex: 1;
    min-width: 300px;
}

.lai-description-text h1 {
    color: #1a3e6f;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lai-description-image {
    flex: 1;
    min-width: 300px;
}

.lai-description-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.lai-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.lai-itinerary-details {
    flex: 2;
    min-width: 300px;
}

.lai-day {
    margin-bottom: 30px;
}

.lai-day h3 {
    color: #1a3e6f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lai-day p {
    margin-bottom: 15px;
}

.lai-day a {
    color: #d4a762;
    text-decoration: none;
    font-weight: 500;
}

.lai-day a:hover {
    text-decoration: underline;
}

.lai-sidebar {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lai-rates {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

.lai-rates h3 {
    color: #1a3e6f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.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-color: #1a3e6f;
    color: white;
}

.lai-rates tr:nth-child(even) {
    background-color: #f2f2f2;
}

.lai-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.lai-included, .lai-excluded {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

.lai-included h3, .lai-excluded h3 {
    color: #1a3e6f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lai-included ul, .lai-excluded ul {
    padding-left: 20px;
}

.lai-included li, .lai-excluded li {
    margin-bottom: 8px;
}

.lai-form-container {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

.lai-form-container h3 {
    color: #1a3e6f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.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;
}

.lai-form-group input,
.lai-form-group select,
.lai-form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.lai-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.lai-submit-btn {
    background-color: #d4a762;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lai-submit-btn:hover {
    background-color: #c09555;
}

@media (max-width: 768px) {
    .lai-description {
        flex-direction: column;
    }
    
    .lai-content-wrapper {
        flex-direction: column;
    }
    
    .lai-description-text, .lai-description-image {
        flex: none;
        width: 100%;
    }
}




/* Compare widget default styles */
.compare-widget {
  max-width: 980px;
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.compare-inner {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.compare-label {
  font-size: 13px;
  color: #0f2125;
  opacity: 0.75;
}

.compare-btn {
  font-size: 13px;
  border: 1px solid #235870;
  border-radius: 20px;
  padding: 6px 12px;
  text-decoration: none;
  color: #235870;
}

.compare-btn.active {
  font-weight: 700;
  color: #fff;
  background: #235870;
  cursor: default;
}

/* Sticky state */
#compare-switcher.is-sticky {
  position: sticky;
  top: 0;  /* adjust if you have fixed nav */
  z-index: 1000;
  background: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
}
