/* Camping HTML Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. Banner Section

**********************************************/

/* 
	font-family: 'Barlow', sans-serif;
	font-family: 'Exo 2', sans-serif;
*

/*** 

====================================================================
	Root Code Variables
====================================================================

 ***/

/* Theme Color */

:root {
  /* #c4082f in decimal RGB */
  --main-color: rgb(196, 8, 47);

  /* #c4082f in decimal RGBA */
  --main-color-opacity: rgb(196, 8, 47, 0.8);

  /* #b0072a in decimal RGB */
  --main-color-two: rgb(176, 7, 42);

  /* #f5f4f4 in decimal RGB */
  --secondary-color: rgb(245, 244, 244);

  /* #e9e8e8 in decimal RGB */
  --secondary-color-two: rgb(233, 232, 232);

  /* #000000 in decimal RGB */
  --black-color: rgb(0, 0, 0);

  /* #000000 in decimal RGBA Two */
  --black-color-opicity: rgba(0, 0, 0, 0.8);

  /* #000000 in decimal RGBA Two */
  --black-color-opicity-two: rgba(0, 0, 0, 0.2);

  /* #ffffff in decimal RGB */
  --white-color: rgb(255, 255, 255);

  /* #ffffff in decimal RGBA */
  --white-color-opicity: rgba(255, 255, 255, 0.8);

  /* #ffffff in decimal RGBA Two */
  --white-color-opicity-two: rgba(255, 255, 255, 0.5);

  /* #ffffff in decimal RGBA Three */
  --white-color-opicity-three: rgba(255, 255, 255, 0.2);

  /* #666666 in decimal RGB */
  --text-color: rgb(102, 102, 102);

  /* #222222 in decimal RGB */
  --dark-text-color: rgb(34, 34, 34);

  /* #222222 in decimal RGB */
  --dark-color: rgb(34, 34, 34);

  /* #333333 in decimal RGB */
  --dark-text-color-two: rgb(51, 51, 51);

  /* #e0e0e0 Light Border RGB */
  --light-border-color: rgb(244, 244, 244);

  --font-family-barlow: "Barlow", sans-serif;
  --font-family-exo: "Exo 2", sans-serif;

  /* Heading Fonts */

  --font-12: 12px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-22: 22px;
  --font-24: 24px;
  --font-26: 26px;
  --font-28: 28px;
  --font-30: 30px;
  --font-33: 33px;
  --font-34: 34px;
  --font-36: 36px;
  --font-40: 40px;
  --font-44: 44px;
  --font-46: 46px;
  --font-48: 48px;
  --font-50: 50px;
  --font-60: 60px;
  --font-64: 64px;
  --font-68: 68px;
  --font-70: 70px;
  --font-72: 72px;
  --margin-zero: 0px;

  /* Margin Left Variables */
  --margin-left-5: 5px;
  --margin-left-10: 10px;
  --margin-left-15: 15px;
  --margin-left-20: 20px;
  --margin-left-30: 30px;
  --margin-left-40: 40px;
  --margin-left-50: 50px;
  --margin-left-60: 60px;
  --margin-left-70: 70px;
  --margin-left-80: 80px;
  --margin-left-90: 90px;
  --margin-left-100: 100px;

  /* Margin Top Variables */
  --margin-top-5: 5px;
  --margin-top-10: 10px;
  --margin-top-15: 15px;
  --margin-top-20: 20px;
  --margin-top-25: 25px;
  --margin-top-30: 30px;
  --margin-top-35: 35px;
  --margin-top-40: 40px;
  --margin-top-50: 50px;
  --margin-top-60: 60px;
  --margin-top-70: 70px;
  --margin-top-80: 80px;
  --margin-top-90: 90px;
  --margin-top-100: 100px;

  /* Margin Right Variables */
  --margin-right-5: 5px;
  --margin-right-10: 10px;
  --margin-right-20: 20px;
  --margin-right-30: 30px;
  --margin-right-40: 40px;
  --margin-right-50: 50px;
  --margin-right-60: 60px;
  --margin-right-70: 70px;
  --margin-right-80: 80px;
  --margin-right-90: 90px;
  --margin-right-100: 100px;

  /* Margin Bottom Variables */
  --margin-bottom-5: 5px;
  --margin-bottom-10: 10px;
  --margin-bottom-15: 15px;
  --margin-bottom-20: 20px;
  --margin-bottom-25: 25px;
  --margin-bottom-30: 30px;
  --margin-bottom-35: 35px;
  --margin-bottom-40: 40px;
  --margin-bottom-45: 45px;
  --margin-bottom-50: 50px;
  --margin-bottom-60: 60px;
  --margin-bottom-70: 70px;
  --margin-bottom-80: 80px;
  --margin-bottom-90: 90px;
  --margin-bottom-100: 100px;
}

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
  font-family: var(--font-family-exo);
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6em;
  font-weight: 400;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

.bordered-layout .page-wrapper {
  padding: 0px 50px 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--main-color);
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  font-family: var(--font-family-exo);
}

input,
button,
select,
textarea {
}

textarea {
  overflow: hidden;
}

p {
  position: relative;
  line-height: 1.8em;
  color: var(--text-color);
}

/* Typography */

h1 {
  line-height: 1.2em;
  font-size: var(--font-60);
}

h2 {
  line-height: 1.4em;
  font-size: var(--font-40);
}

h3 {
  line-height: 1.3em;
  font-size: var(--font-30);
}

h4 {
  line-height: 1.3em;
  font-size: var(--font-24);
}

h5 {
  line-height: 1.6em;
  font-size: var(--font-20);
}

h6 {
  line-height: 1.6em;
  font-size: var(--font-18);
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.medium-container {
  position: static;
  max-width: 1000px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
}

.theme-btn {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

.hm3-scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  color: #ef0061;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 38px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: var(--white-color);
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hm3-scroll-to-top:hover {
  color: var(--white-color);
  background: var(--main-color);
}

/* List Style One */

.hm3-list-style-one {
  position: relative;
}

.hm3-list-style-one li {
  position: relative;
  color: var(--white-color);
  font-size: var(--font-18);
  padding-left: 30px;
  font-weight: 400;
  line-height: 1.8em;
  font-family: var(--font-family-fira);
  margin-bottom: var(--margin-bottom-20);
}

.hm3-list-style-one li a {
  position: relative;
  color: var(--white-color);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: var(--font-family-fira);
}

.hm3-list-style-one li a:hover {
  color: var(--main-color);
}

.hm3-list-style-one li .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  color: var(--main-color);
  font-size: var(--font-18);
  line-height: 1em;
  font-weight: 300;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* Btn Style One */

.hm3-btn-style-one {
  position: relative;
  display: inline-block;
  font-size: var(--font-16);
  line-height: 30px;
  color: var(--white-color);
  font-weight: 700;
  overflow: hidden;
  background: none;
  border-radius: 0px;
  padding: 15px 44px;
  text-transform: uppercase;
  background-color: var(--main-color-two);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  font-family: var(--font-family-exo);
}

.hm3-btn-style-one:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  background-color: var(--dark-text-color);
}

.hm3-btn-style-one .txt {
  position: relative;
  z-index: 1;
}

.hm3-btn-style-one:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.hm3-btn-style-one:hover {
  color: var(--white-color);
}

/* Btn Style Two */

.hm3-btn-style-two {
  position: relative;
  display: inline-block;
  font-size: var(--font-16);
  line-height: 30px;
  color: var(--white-color);
  font-weight: 700;
  overflow: hidden;
  background: none;
  border-radius: 8px;
  padding: 16px 44px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: #c4082f;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  font-family: var(--font-family-exo);
}

.hm3-btn-style-two:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  background-color: var(--dark-text-color);
}

.hm3-btn-style-two .txt {
  position: relative;
  z-index: 1;
}

.hm3-btn-style-two:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.hm3-btn-style-two:hover {
  color: var(--white-color);
}

.theme_color {
  color: #0060ff;
}

.hm3-preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/preloader.svg);
  background-size: 100px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.hm3-sec-title {
  position: relative;
  margin-bottom: 50px;
}

.hm3-sec-title .style-title {
  position: absolute;
  left: 0px;
  top: -35px;
  line-height: 1em;
  font-size: 150px;
  color: #f6f6f6;
  font-family: "Fleur De Leah";
}

.hm3-sec-title .style-title.light {
  color: var(--white-color);
}

.hm3-sec-title h2 {
  color: var(--dark-text-color);
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hm3-sec-title .sub-title {
  position: relative;
  color: var(--main-color);
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.5px;
  font-size: var(--font-20);
  font-family: var(--font-family-barlow);
}

.hm3-sec-title.centered .style-title {
  left: 50%;
  transform: translateX(-50%);
}

.hm3-sec-title.light .sub-title,
.hm3-sec-title.light h2 {
  color: #ffffff;
}

.hm3-sec-title.centered {
  text-align: center !important;
}

.hm3-sec-title.centered .separator {
  margin: 0 auto;
}
