/* CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main body styling - universal */

html, body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  line-height: 1.3em;
  color: #333;
  
}

a {

  text-decoration: none;
  color: #111;
}

h1, h2, h3, h4 {
  padding-bottom: 1.2em;
}

p {

  margin: 10px 0px;
}

ul {
  font-size: 1.3em;
  line-height: 1.7em;
  padding-left: 50px;
}

.text-small {
  font-size: 0.8em;
}

.logo {
  font-size: 1.8rem;

}

.logo:hover {
  font-size: 2rem;
  transition: 500ms;
  
}


/* button styling */

.btn {
  background: #B71528;
  margin-top: 10px;
  padding: 15px 20px;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.12);
}


.btn:hover {
  background: #fff;
  color: #B71528;
  border: 1px solid #B71528;
  transition: 500ms;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);

}

/* Page scroll box */

#scroll-circle {
  position: fixed;
  background: #000;
  color: #fff;
  opacity: 0.4;
  top: 88%;
  right: 3%;
  z-index: 1;
}

.circle {
  box-sizing: border-box;
  border-radius: 30px;
  width: 60px;
  height: 60px;
  text-align: center;
  padding-top: 14px;

}


/* box styling */

.bg-light {
  background: #ffffff;
  color: #111;
  
}

.bg-dark {
  background: #ededed;
  color: #111;
  
}

.bg-primary {
  background: #B71528;

}

/* other text styling */

.text-primary {
  color: #B71528;
  font-weight: 800;

}

.bold {
  font-size: 1.2rem;
}

.lead {
  font-size: 2rem;
  line-height: 1.5em;
 
}

.italic-text {
  font-style: italic;
  font-size: 1.2em;
  font-weight: bold;
}

/* Icon styling */

.fa-icon {
  font-weight: 800;
  font-size: 3rem;
  padding-bottom: 50px;
}

.fa-icon-sml {
  font-size: 1.5rem;
  color: #B71528;
  padding-right: 10px;
  vertical-align: middle;

}

.fa-icon-arrow {
  color: rgb(232, 232, 232);
  font-size: 2em;
  
}

/* Float Clear */

.clear-float {
  clear: both;
}

/* Container styling */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0px 20px;
  overflow: auto;

}

/* navigation styling */

#navbar {
  background: #fff;
  color: #111;
  border-bottom: 3px solid #B71528;
  overflow: auto;
  position: fixed;
  width: 100%;;
  z-index: 1;

}

#navbar a {
  color:#111
}

#navbar ul {
  float: right;
  list-style: none;
}

#navbar .logo {
  float: left;
  padding: 20px 0px;
  cursor: pointer;
}

#navbar ul li {
  float: left;
}

#navbar ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 15px 20px;
  font-size: 1.2rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  
}

#navbar ul li a:hover {
  background: #B71528;
  color: #fff;
  transition: 500ms;

}

#navbar ul li a.current {
  background: #B71528;
  color:#fff;
}

/* Hero section styling */

#hero::before{
  content:'';
  background: url('../img/mount_fuji.jpg') no-repeat  center center/cover;
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index:-1;
  opacity:0.6;

}

.hero-content {
  text-align: center;
  color: #111;
  padding-top: 150px;
  height: 100vh;
}

#hero .hero-content h1 {
  font-size: 4em;
  line-height: 1.2em;
}

#hero .hero-content p {
  padding: 1.5rem;
  line-height: 2.2rem;
  text-align: center;
  
}

/* Hero Secondary Styling */
#hero-alternate::before{
  content:'';
  background: url('../img/mountain_landscape.jpg') no-repeat center top/cover;
  position:fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index:-1;
  opacity:0.7;

}


#hero-alternate {
  padding-top: 100px;
  height: 100px;
}

/* Home Info styling */

/* Home Info Styling - Universal */

.info-content h2 {
  font-size: 2rem;
}
/* Home info styling: row one */

#options-info-one {
  height: 350px;

}

#options-info-one .info-image {
  float: left;
  width: 34%;
  max-height: 100%;
  overflow: hidden;
}

#options-info-one .info-content {
  float: right;
  width: 66%;
  height: 100%;
  padding: 50px 80px 40px 30px;
  border-left: 5px solid #B71528;
  overflow: hidden;
} 


/* Home info styling: row two */

#options-info-two {
  height: 350px;

}

#options-info-two .info-image {
  float: right;
  width: 34%;
  max-height: 100%;
  overflow: hidden;
}

#options-info-two .info-content {
  float: left;
  width: 66%;
  height: 100%;
  padding: 50px 80px 40px 30px;
  text-align: right;
  border-right: 5px solid #B71528;
  overflow: hidden;
} 

/* Home info styling: row three */

#options-info-three {
  height: 350px;

}

#options-info-three .info-image {
  float: left;
  width: 34%;
  max-height: 100%;
  overflow: hidden;
}

#options-info-three .info-content {
  float: right;
  width: 66%;
  height: 100%;
  padding: 50px 80px 40px 30px;
  border-left: 5px solid #B71528;
  overflow: hidden;
} 

/* site-wide footer styling */

#main-footer {

  background: #fff;
  margin: auto;
  padding: 20px;
  display: block;
  height: auto;
  
}

#main-footer p {
  text-align: center;
  color: #111;
}

#main-footer a {
  color: #000;
  cursor: pointer;
  font-weight: 600;
}

#main-footer a:hover {
  color:#B71528;
}


/* Tour page styling */
#table .container {
  background-color: #fff;
  border-radius: 5px;
  padding: 0px 50px 50px 50px;
}

table, td, th {
  border: 1px solid #B71528;
  text-align: center;
}

th, td {
  padding: 15px;
}

th {
  font-weight: 600;
  background-color: #fff;
  font-size: 1.2rem;
  border-bottom: 2px solid #B71528;

}

#table h1 {
  font-size: 2rem;
  padding-top: 50px;
}

tr:nth-child(even) {
  background-color: #d6d6d6;
}

td:nth-child(1) {
  font-weight: 600;
}


table {
  background: #ededed;
  border: 2px solid #B71528;
  border-collapse: collapse;
  padding: 50px 50px;
}

#table {
  padding: 50px;
  
}

/* Tour page list points styling */

#table .list-points {
  padding-top: 50px;
  padding-bottom: 30px;
}

#table .list-points ul li {
  list-style: none;

}

/* contact form styling */
#contact-form .container {
  background-color: #ffffff;
  width: 60%;
  border-radius: 5px;
  padding: 0px 50px 50px 50px;
  margin-bottom: 50px;
}


#contact-form {
  padding-top: 50px;
  margin: auto;
  width: 80%;
  
}

#contact-form h1 {
  font-size: 2rem;
  padding-top: 50px;
}

#contact-form p{
  font-size: 1.1rem;
  font-weight: 600;
}

#contact-form label {
  display: block;
  padding-top: 20px;
  font-weight: 600;
}

#contact-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border: 1px solid #B71528;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

#contact-form textarea:hover {
  border: 2px solid #B71528;
  border-radius: 3px;
}


#contact-form .btn {
  display: inline-block;
  width: auto;
  padding: 10px 30px;
  margin: 20px 5px 0px 0px;

}

#contact-form input {
  width: 100%;
  border: 1px solid #555;
  padding: 5px;
  border-radius: 3px;
}

#contact-form .select:hover {
  border: 2px solid #B71528;
  border-radius: 3px;
}


/* contact page icon footer styling */

#contact-footer {
  display: block;
  height: 250px;
  border-top: 3px solid #B71528;
  border-bottom: 3px solid #B71528;
  padding-top: 20px;

}

#contact-footer .box {
  float: left;
  width: 33%;
  text-align: center;
  padding: 40px;
  overflow: hidden;
}

#contact-footer h4 {
  font-size: 1.3rem;
  padding-bottom: 20px;
}

#contact-footer a {
  color: #000;
  cursor: pointer;
}

#contact-footer a:hover {
  color:#B71528;
}