/*
* Riverstone (2019) Styles
*/


/* Table of contents
末末末末末末末末末末末末末末末末末末末末末末末末末

- Base Styles
- Bootstrap Modifications
- Heading Styles
- Header
- Section Styles

*/


/* Base Styles
末末末末末末末末末末末末末末末末末末末末末末末末末 */
html {
	position: relative;
	min-height: 100%;
}
body {
	padding-top: 60px;
	font-family: 'Crimson Text', Georgia, serif;
	font-size: 24px;
	line-height: 29px;
	color: #a49383;
	letter-spacing: -0.02em;
	background-color: #221e1f;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a, a:visited {
	color: #a49383;
	text-decoration: none;
}
a:hover, a:focus, a:active {
	color: #fff;
	text-decoration: underline;
}
.mobile-show {
	display: block;
}
.tablet-show {
	display: none;
}
.desktop-show {
	display: none;
}
@media only screen and (min-width: 768px) {
	body {
	    padding-top: 100px;
		font-size: 41px;
		line-height: 51px;
	}
	.mobile-show {
		display: none;
	}
	.tablet-show {
		display: block;
	}
}
@media only screen and (min-width: 992px) {
	body {
		font-size: 41px;
		line-height: 51px;
	}
	.mobile-show {
		display: none;
	}
	.desktop-show {
		display: block;
	}
}


/* Bootstrap Modifications
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property:opacity;
  transition-property:opacity;
}

.carousel-fade .carousel-inner .active.carousel-item-left, .carousel-fade .carousel-inner .active.carousel-item-right, .carousel-fade .carousel-inner .carousel-item {
  opacity:0;
}

.carousel-fade .carousel-inner .active, .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left, .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity:1;
}

.carousel-fade .carousel-inner .active.carousel-item-left, .carousel-fade .carousel-inner .active.carousel-item-right, .carousel-fade .carousel-inner .carousel-item-next, .carousel-fade .carousel-inner .carousel-item-prev {
  left:0;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
	}
}


/* Heading Styles
末末末末末末末末末末末末末末末末末末末末末末末末末 */
h1 {
	margin-bottom: 10px;
	font-family: "Gotham A", "Gotham B", 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	letter-spacing: 0.15em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
p + h1 {
	margin-top: 50px;
}
ul + h1 {
	margin-top: 50px;
}
@media only screen and (min-width: 768px) {
	h1 {
		font-size: 18px;
		line-height: 70px;
	}
	p + h1 {
		margin-top: 70px;
	}
	ul + h1 {
		margin-top: 70px;
	}
}


/* List Styles
末末末末末末末末末末末末末末末末末末末末末末末末末 */
ul {
	margin-left: -25px;
	list-style-image: url('../imgs/riverstone-bullet-mobile.svg');
}
@media only screen and (min-width: 768px) {
	ul {
      margin-left: -20px;
	  list-style-image: url('../imgs/riverstone-bullet-desktop.svg');
	}
}


/* Header
末末末末末末末末末末末末末末末末末末末末末末末末末 */
header {
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 60px;
	background-color: #fff;
}
.header-logo {
	position: absolute;
	top: 0;
	left: 15px;
	height: 60px;
}
@media only screen and (min-width: 768px) {
	header {
		height: 100px;
	}
	.header-logo {
		height: 100px;
	}
}

/* Section Styles
末末末末末末末末末末末末末末末末末末末末末末末末末 */
#riverstone-hero .container-fluid {
	padding: 0;
}
#riverstone-carousel {
	width: 100%;
	text-align: center;
}
.carousel-item img {
	height: 100%;
	width: auto;
}
.carousel-caption {
	top: 46%;
}
#riverstone-content {
	padding-top: 30px;
	padding-bottom: 80px;
}
#riverstone-content .pb-portrait {
	margin-top: 40px;
}
#riverstone-content .riverstone-address {
	margin-top: 40px;
}
#riverstone-content .riverstone-address, #riverstone-content .riverstone-address p {
	font-family: "Gotham A", "Gotham B", 'Montserrat', sans-serif;
	font-style: normal;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.01em;
}
@media only screen and (min-width: 768px) {
	#riverstone-content {
		padding-bottom: 120px;
	}
	#riverstone-content .pb-portrait {
		margin-top: 70px;
	}
    #riverstone-content .riverstone-address {
		margin-top: 60px;
    }
    #riverstone-content .riverstone-address, #riverstone-content .riverstone-address p {
	    font-size: 16px;
	    line-height: 20px;
    }
}