@charset "UTF-8";


/* ___________________________________________ COLOR PALETTE ___________________________________________*/

:root {
  --blue: #436896;
  --blue-hover: #26374d;
  --yellow: #d7a567;
  --yellow-hover: #a67f50;
  --grey: #E6E8E6;
  --white: #fff;
}

/*___________________________________________ FORMATTING ___________________________________________*/

* {
    box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
    /*_______ ADD NEW CLASS IF USING ELSEWHERE _______*/
    padding: 40px;
    max-width: 1180px;
    margin: auto;
}

body {
	vertical-align: middle;
	margin: auto;
    font-family: raleway, sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
}

header {
    text-align: center;
	padding: 15px;
    margin: 0px;
    background-color: #fff;
}

main {
    background-color: #fff;
}

h2 {
    font-weight: 300;
    font-size: 40px;
    padding-top: 10px;
    margin: 10px;
}

h3 {
    font-weight: 300;
}

.button {
	border: 0px;
	padding: 8px 10px;
	border-radius: 60px;
	background-color: #d7a567;
	text-decoration: none;
    margin-left: 30px;
    
}
.button:hover{
	background-color:  #a67f50;
}

button a{
	color: #000000;
	text-decoration: none;
}
button a:hover;{
	color: #000000;
	text-decoration: none;
}

h5 {
    font-weight: 300;
    font-size: 25px;
}

p {
    font-weight: 300;
    font-size: 18px; 
    padding-bottom: 10px;
    margin: 10px;
}

a {
    color: #26374d;
    cursor: pointer;
}

a:hover {
    color: #436896;
}

/*___________________________________________ MOBILE ___________________________________________*/

.hide {
    display: none;
}
    
.show {
    display: inline-block;
}

/*___________________________________________ NAVIGATION ___________________________________________*/

.fixed-top {
    background-color: #fff;
}

nav ul li {
	list-style: none;
	display: inline-block;
}

.active a {
    color: #436896;
}

nav a {
	text-decoration: none;
	font-family: raleway, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	color: #000;
}

nav a:hover {
    color: #436896;
}

/*___________________________________________ BACK TO TOP ___________________________________________*/

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #808080;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 25px;
    font-size: 18px;
}

#myBtn:hover {
    background-color: #555; 
}

/*___________________________________________ HEADER IMAGE ___________________________________________*/

.header img {
    width: 100%;
}

.bg-blue {
    background-image: url(https://www.samlongvaldesigns.com/images/mountain.png);
    margin: 0px;
    width: 100%;
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-blue img {
    padding-top: 30px;
}

.less-space {
    padding-top: 0px;
}

.light {
    color: #fff;
}

.light:hover {
    color: #fff;
}

.light ul {
    padding: 0px 40px;
}

/*___________________________________________ COLUMNS ___________________________________________*/

.row {
  	margin: 8px -16px;
}

.row,
.row > .column {
  	padding: 8px;
}

.row:after {
  	content: "";
  	display: table;
  	clear: both;
}

.col-one-half {
    width: 100%;
}

.col-one-half img {
    margin: 0px;
    padding: 0px;
    min-width: 300px;
}

/*_____________________ GALLERY _____________________*/

.content {
  	background-color: #fff;
  	padding: 10px;
}

.content img {
	/*border: 1px solid #436896;*/
	width: 100%;
    padding-bottom: 20px;
    min-width: 400px;
}

/*___________________________________________ IMAGE HOVER ___________________________________________*/

.containers {
    position: relative;
    margin: auto;
    width: 50%;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.containers:hover .image {
    opacity: 0.3;
}

.containers:hover .middle {
    opacity: 1;
}

.text {
    background-color: #d7a567;
    color: white;
    font-size: 18px;
    padding: 15px 15px;
    border-radius: 30px;
    cursor: pointer;
}

.text:hover {
    background-color: #a67f50;
    text-decoration: none;  
}

.text a {
    color: #fff;
    text-decoration: none;  
}

/*___________________________________________ BOOTSTRAP ___________________________________________*/

.list {
    margin: 0px;
    padding: 0px;
    padding-left: 70px;
    font-weight: 300;
    font-size: 18px; 
}

.last {
    padding-bottom: 50px;
}

/*___________________________________________ FOOTER ___________________________________________*/

.fab {
    font-size: 35px;
    padding-right: 18px;
}

footer {
     background-color: #d7a567;
}

footer p {
    margin: 0px 0px;
}

footer .card {
    color: #fff;
    background-color: #d7a567;
    border: 0px;
}

footer .card a {
    color: #fff;
}

footer .card a:hover {
    color: #f0f0f0;
}

.copyright {
    text-align: center;
    padding: 30px 10px;
    color: #fff;
}

.col-sm-3 {
    flex: 0 0 auto;
    width: 100%;
}


/*___________________________________________ DESKTOP - RESIZE ___________________________________________*/

@media screen and (min-width: 900px) {

h2 {
    font-size: 50px;
    padding-top: 20px;
    margin: 40px;
}
    
h5 {
    font-weight: 300;
    font-size: 25px;
}

p {
    font-size: 20px; 
    margin: 0px 40px;
}
    
.list {
    font-size: 20px; 
}
    
.light ul {
    padding: 0px 80px;
}
     
/*____________________ NAV _______________________*/
    
nav a {
	font-size: 24px;
}
    
/*____________________ HEADER IMG _______________________*/
    
.header img {
    margin: 0px;
    width: 30%;
}
    
.text {
    font-size: 25px;
    padding: 20px 30px;
}
    
/*____________________ COLUMNS _______________________*/
    
.hide {
    display: inline-block;
}
    
.show {
    display: none;
}
    
.col {
    max-width: 1400px;
    margin: auto;
}
    
.col-one-half {
    width: 50%;
    max-width: 600px;
    margin: auto;
}
    
.col-one-half img {
    width: 100%;
}

.col-one-third {
    width: 30%;
}
    
.col-sm-3 {
    flex: 0 0 auto;
    width: 25%
}

/*____________________ CAROUSEL _______________________*/
    
.jssor {
    width: 100%;
    height: 250px;
    overflow: hidden;
    visibility: hidden;
    padding-top: 30px;
    max-width: 1200px;
}
    
/*____________________ FOOTER _______________________*/
    
.fab {
    font-size: 35px;
    padding-right: 18px;
}
    
}