@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Template Name: Turie – Travel & Tour Booking HTML Template
    Author: Theme_Pure
    Support: https://help.themepure.net/support/
    Description: Turie – Travel & Tour Booking HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classe
		1.3 Default Spacing

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Animations
		2.2 Background
		2.3 Back to top
		2.4 Breadcrumb
		2.5 Buttons
		2.6 Nice Select
		2.7 Pagination
		2.8 Preloader
		2.9 Search css start
		2.10 Section Title


	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style
		3.2 Header Style


    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 dropdown menu css
		4.2 Main menu css
		4.3 Main menu css
		4.4 offcanvas
	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 blog css
		5.2 Postbox css
		5.3 Recent Post css
		5.4 Sidebar css

	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style


	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 about
		7.2 booking-sidebar css start
		7.3 Booking css start
		7.4 brands
		7.5 carrer
		7.6 Cart css
		7.7 category
		7.8 Checkout css
		7.9 chose
		7.10 contact
		7.11 counter
		7.12 cta css
		7.13 Datepicker css start
		7.14 destination
		7.15 faq css
		7.16 feature
		7.17 filter Style
		7.18 gallery
		7.19 Hero css start
		7.20 Instagram Style
		7.21 Login Css
		7.22 offer
		7.23 policy
		7.24 pricing
		7.25 process css
		7.26 product css start
		7.27 review css
		7.28 service
		7.29 team css start
		7.30 testimonial
		7.31 tour details css start
		7.32 tour css start
		7.33 video


**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/

/* =========================================================
        GENERAL
     ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #080808;
  color: #d8d8d8;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.gold {
  color: #079A9B;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  height: 72px;
  background: #079A9B;
  /*background: #050505;*/
  display: flex;
  align-items: center;
  border-bottom: 1px solid #171717;
  position: relative;
  z-index: 20;
}

.header-inner {
  width: 100%;
  max-width: 1380px;
  padding: 0 35px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
  background-color: #ffffff;
}

.header-right {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  height: 410px;
  position: relative;

  background-image:
          linear-gradient(
                  to bottom,
                  rgba(0,0,0,.05) 20%,
                  rgba(0,0,0,.25) 55%,
                  rgba(8,8,8,.98) 100%
          ),
          url("images/wildebeest.jpg");

  background-size: cover;
  background-position: center;
}

.hero-content {
  width: 100%;
  max-width: 1220px;

  position: absolute;
  left: 50%;
  bottom: 55px;

  transform: translateX(-50%);

  padding: 0 30px;
}

.hero-category {
  color: #079A9B;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.hero h1 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
}

.hero-subtitle {
  color: #079A9B;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  margin-top: 8px;
}

/* =========================================================
   MAIN
========================================================= */

main {
  max-width: 1220px;
  margin: auto;
  padding: 0 30px 70px;
}

/* =========================================================
   TRIP SUMMARY
========================================================= */

.trip-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;

  padding: 18px 0;
  margin-bottom: 38px;
}

.summary-item {
  padding: 0 20px;
  border-right: 1px solid #202020;
}

.summary-item:first-child {
  padding-left: 0;
}

.summary-item:last-child {
  border-right: 0;
}

.summary-label {
  color: #EF7E29;
  /*color: #b59a58;*/
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.summary-value {
  color: #ddd;
  font-size: 20px;
}

/* =========================================================
   INTRO
========================================================= */

.intro {
  max-width: 730px;
  margin-bottom: 35px;
}

.intro p {
  color: #9d9d9d;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 12px;
}

.locations {
  color: #079A9B;
  /*color: #c6a04b;*/
  font-size: 20px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section {
  margin-top: 42px;
}

.section-title {
  color: #eee;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 20px;
}

/* =========================================================
   ITINERARY
========================================================= */

.day {
  display: grid;
  grid-template-columns: 90px 1fr;

  border-bottom: 1px solid #202020;

  padding: 15px 0;
}

.day-number {
  color: #079A9B;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 3px;
}

.day-content h3 {
  color: #dedede;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3px;
}

.day-content p {
  color: #888;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 3px;
}

.day-stay {
  color: #079A9B;
  font-size: 15px;
}

/* =========================================================
   CAMPS
========================================================= */

.camp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.camp {
  border: 1px solid #252525;
  background: #0d0d0d;

  color: #079A9B;

  padding: 7px 10px;

  font-size: 20px;
  letter-spacing: .5px;
}

/* =========================================================
   INCLUDED
========================================================= */

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.check-list {
  list-style: none;
}

.check-list li {
  color: #929292;
  font-size: 18px;
  line-height: 2.1;

  position: relative;
  padding-left: 13px;
}

.check-list li::before {
  /*content: " — ";*/

  color: #079A9B;

  position: absolute;
  left: 0;
  top: 0;
}

/* =========================================================
   TEXT SECTIONS
========================================================= */

.text-section p,
.text-section li {
  color: #8e8e8e;
  font-size: 20px;
  line-height: 2;
}

.text-section ul {
  list-style: none;
}

.text-section li {
  padding-left: 15px;
  position: relative;
}

.text-section li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #079A9B;
}

/* =========================================================
   CTA
========================================================= */

.cta {
  margin-top: 45px;

  min-height: 165px;

  border: 1px solid #27251e;

  background:
          linear-gradient(
                  110deg,
                  rgba(198,160,75,.08),
                  rgba(0,0,0,.2)
          );

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 30px;
}

.cta h2 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

.cta p {
  max-width: 500px;
  color: #888;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.buttons {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-block;

  padding: 10px 22px;

  border: 1px solid #079A9B;

  color: #079A9B;

  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  transition: all .3s ease;
}

.btn-primary {
  background: #079A9B;
  color: #111;
}

.btn:hover {
  background: #079A9B;
  color: #111;
}

/* =========================================================
   DEPARTURES
========================================================= */

.departures {
  margin-top: 45px;
}

.departure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #292929;
  border-left: 1px solid #292929;
}

.departure {
  min-height: 105px;

  padding: 14px;

  border-right: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.departure h4 {
  color: #d9d9d9;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;

  margin-bottom: 7px;
}

.departure p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   FOOTER
========================================================= */

/*footer {*/
/*  max-width: 1220px;*/
/*  margin: auto;*/

/*  padding: 30px;*/

/*  border-top: 1px solid #252525;*/

/*  text-align: center;*/

/*  color: #686868;*/

/*  font-size: 20px;*/
/*  letter-spacing: 2px;*/
/*  !*text-transform: uppercase;*!*/
/*}*/

/*footer span {*/
/*  color: #079A9B;*/
/*}*/



/* ================================
       FOOTER
    ================================= */

.taswira-footer {
  position: relative;
  background-color: #f7f5f0;
  color: #222;
  overflow: hidden;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 55px 40px 25px;
}

/* Zebra-style background */
.taswira-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
          repeating-linear-gradient(
                  125deg,
                  rgba(80, 75, 65, 0.055) 0px,
                  rgba(80, 75, 65, 0.055) 38px,
                  transparent 38px,
                  transparent 92px
          );
}

.taswira-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   TOP FOOTER COLUMNS
================================= */

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 35px;
}

.footer-column {
  padding: 0 70px;
  border-right: 1px solid rgba(130, 105, 60, 0.45);
}

.footer-column:first-child {
  padding-left: 0;
}

.footer-column:last-child {
  border-right: none;
  padding-right: 0;
}

/* ================================
   FOOTER ICON
================================= */

.footer-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;

  margin: 0 auto 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #c49a4a;

  font-size: 38px;

  color: #f8e9bb;

  box-shadow:
          inset 0 0 0 3px rgba(255,255,255,0.08),
          0 2px 8px rgba(0,0,0,0.15);
}

.footer-icon.green {
  background: #0d5654;
}

.footer-icon.red {
  background: #941d1b;
}

.footer-icon.gold {
  background: #b87308;
}

.footer-icon i {
  line-height: 1;
}

/* ================================
   FOOTER TITLES
================================= */

.footer-title {
  text-align: center;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 38px;
  font-weight: 500;

  line-height: 1.1;

  color: #151515;

  margin: 0 0 14px;
}

.footer-title::after {
  content: "";
  display: block;

  width: 68px;
  height: 5px;

  margin: 13px auto 22px;

  border-radius: 10px;
}

.footer-column:nth-child(1) .footer-title::after {
  background: #176664;
}

.footer-column:nth-child(2) .footer-title::after {
  background: #a3211f;
}

.footer-column:nth-child(3) .footer-title::after {
  background: #c97808;
}

/* ================================
   FOOTER LINKS
================================= */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #272727;
  text-decoration: none;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;

  line-height: 1.3;

  padding: 5px 0;

  transition: all 0.25s ease;
}

.footer-links a::after {
  content: "›";

  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;

  line-height: 1;

  margin-left: 15px;
}

.footer-column:nth-child(1) .footer-links a::after {
  color: #176664;
}

.footer-column:nth-child(2) .footer-links a::after {
  color: #a3211f;
}

.footer-column:nth-child(3) .footer-links a::after {
  color: #c97808;
}

.footer-links a:hover {
  padding-left: 5px;
}

/* ================================
   CONTACT BAR
================================= */

.footer-contact {
  border-top: 1px solid rgba(130, 105, 60, 0.55);

  padding: 28px 0 22px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr auto;

  align-items: center;
}

.contact-item {
  min-height: 55px;

  display: flex;
  align-items: center;

  padding: 0 25px;

  border-right: 1px solid rgba(130, 105, 60, 0.55);
}

.contact-item:first-child {
  padding-left: 0;
}

.contact-item:last-child {
  border-right: none;
  padding-right: 0;
}

.contact-icon {
  width: 42px;
  min-width: 42px;

  font-size: 32px;

  color: #9a6718;

  margin-right: 15px;

  text-align: center;
}

.contact-text strong {
  display: block;

  color: #252525;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 20px;
  font-weight: 600;

  line-height: 1.2;

  white-space: nowrap;
}

.contact-text span {
  display: block;

  color: #333;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 20px;

  line-height: 1.4;

  margin-top: 3px;
}

/* ================================
   SOCIAL ICONS
================================= */

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.footer-social a {
  width: 47px;
  height: 47px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #171717;

  color: #fff;

  text-decoration: none;

  font-size: 19px;

  border: 2px solid #b99454;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #a87828;
  transform: translateY(-3px);
}

/* ================================
   BOTTOM FOOTER
================================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 0;

  padding-top: 13px;

  color: #333;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 20px;
}

.footer-bottom-left {
  white-space: nowrap;
}

.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-bottom-center a {
  color: #333;
  text-decoration: none;
}

.footer-bottom-center span {
  color: #9a6718;
}

.footer-bottom-right {
  font-family: "Montserrat", Arial, sans-serif;

  font-size: 20px;

  letter-spacing: 3px;

  color: #8a641f;

  text-transform: uppercase;

  white-space: nowrap;
}

.footer-bottom-right span {
  color: #555;
  margin: 0 5px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .hero {
    height: 360px;
  }

  .trip-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .summary-item:nth-child(2) {
    border-right: 0;
  }

  .summary-item:nth-child(3) {
    padding-left: 0;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .departure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  body {
    font-size: 11px;
  }

  .container,
  main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .header-right {
    display: none;
  }

  .hero {
    height: 330px;
  }

  .hero-content {
    padding: 0 18px;
    bottom: 35px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .trip-summary {
    grid-template-columns: 1fr 1fr;
  }

  .summary-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .day {
    grid-template-columns: 65px 1fr;
  }

  .day-content h3 {
    font-size: 11px;
  }

  .day-content p {
    font-size: 8px;
  }

  .departure-grid {
    grid-template-columns: 1fr;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
    max-width: 230px;
  }

  .btn {
    width: 100%;
  }

}

@media (max-width: 1100px) {

  .footer-column {
    padding: 0 35px;
  }

  .footer-title {
    font-size: 32px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .contact-item:nth-child(2) {
    border-right: none;
  }

  .footer-social {
    justify-content: flex-start;
  }

}


@media (max-width: 768px) {

  .taswira-footer {
    padding: 45px 25px 25px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-column,
  .footer-column:first-child,
  .footer-column:last-child {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(130, 105, 60, 0.35);
    padding-bottom: 30px;
  }

  .footer-column:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-title {
    font-size: 34px;
  }

  .footer-links {
    max-width: 320px;
    margin: auto;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-item,
  .contact-item:first-child,
  .contact-item:last-child {
    padding: 15px 0;
    border-right: none;
    border-bottom: 1px solid rgba(130, 105, 60, 0.3);
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

}

@media (max-width: 480px) {

  .taswira-footer {
    padding: 40px 18px 20px;
  }

  .footer-icon {
    width: 78px;
    height: 78px;
    font-size: 30px;
  }

  .footer-title {
    font-size: 30px;
  }

  .footer-links a {
    font-size: 17px;
  }

  .contact-text strong {
    font-size: 17px;
  }

  .contact-text span {
    font-size: 12px;
  }

  .footer-bottom-right {
    letter-spacing: 2px;
    white-space: normal;
  }

}

/*# sourceMappingURL=main.css.map */