@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Dosis&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');


@keyframes xfade{
    0%    { left:0; }
    11%   { left:0; }
    12.5% { left:-100%; }
    23.5% { left:-100%; }
    25%   { left:-200%; }
    36%   { left:-200%; }
    37.5% { left:-300%; }
    48.5% { left:-300%; }
    50%   { left:-400%; }
    61%   { left:-400%; }
    62.5% { left:-300%; }
    73.5% { left:-300%; }
    75%   { left:-200%; }
    86%   { left:-200%; }
    87.5% { left:-100%; }
    98.5% { left:-100%; }
    100%  { left:0; } }



	

html {
 font-family: sans-serif;
 -webkit-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
	   
 -moz-box-sizing: border-box;    /* Firefox, other Gecko */
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
box-sizing: border-box;  
}

*, *:before, *:after {
 -webkit-box-sizing: inherit;
 -moz-box-sizing: inherit;
 box-sizing: inherit;
}

#wrapper {width: 100%;
		margin-right: auto;
		margin-left: auto;
		overflow:hidden;}


body {margin:0;
		padding: 0;
		
		}
#logo {width: 100vw;
	height: auto;
	display:flex;
	justify-content: center;
	margin: 50px 0 10px 0; 
	padding: 0;
	
}

#logo img {width: 90vw;
		   
				}
		
header { 
	width: 100%;
	color: white;
	}	

nav {background-color:#316479;
width: 100%;
color: white;
    /*font-family: 'Dosis', sans-serif; */
	font-family: 'Montserrat', sans-serif;
    letter-spacing:0px; 
    /*font-weight:400*/;
}

nav ul ul {display: none;}

nav ul{display:flex;
	padding: 10px;
	justify-content: flex-end;}

nav a {text-decoration:none;
color: white;}







.header a:hover {color:#a7b56f;}

.header li {list-style-type: none;
		/*padding: 0 10px;*/}

main { margin-top: 0;}

.flexindex {display: flex;
			width: 90%;
			margin: 0 auto;
			margin-top: 5px;
			justify-content: space-between;
			/*font-family: 'Noto Serif', serif;*/
			font-family: 'Playfair Display', serif;
			/*font-family: 'Montserrat', sans-serif;*/
	font-weight: 400;
}	

.column2 {padding: 0 0 0 0;
			font-size: 20px;}
.column2 span {color: #a7b56f;
				font-family: 'Playfair Display', serif;
				font-style: italic;
				font-weight: 500;
				font-size: 30px;}
.quote {margin-right: 10px;}
.quote span {font-size: 4em;
	width: 100%;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
  content: "\201C";
text-align: right;
}
		
/*------------------------------------*\
    $CAROUSEL
\*------------------------------------*/
.carousel{margin-top: 0;
    overflow:hidden;
    width:120%;
	position:relative;
	margin-left:-35px;
	height: auto;

	
}
.panes{
	margin: 0;
    list-style:none;
    position:relative;
    width:600%; /* Number of panes * 100% */
    overflow:hidden; /* This is used solely to clear floats, it does not add functionality. */
        
    -moz-animation:xfade 150s infinite;
    -webkit-animation:xfade 150s infinite;
    animation:xfade 150s infinite;
}
.panes > li{

    position:relative;
    float:left;
    width:16.6666667%; /* 100 / number of panes */
}
.carousel img{
    /*display:block;*/
	margin-left: -5px;
    width:100%;
    max-width:100%;
}
.carousel h2{
	display:block;
    font-size:1em;
    padding:0.5em;
    position:absolute;
    right:-145px;
    bottom:-145px;
    left:-145px;
    text-align:right;
    color:#000;
}

/* header */
		
			

.header {
  background-color: #316479;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
	color: white;
 position: relative;
  width: 100%;
  /*z-index: 3;*/
	margin-bottom: -1px;
}

.header ul {
	width: 100%;
	color: white;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #316479;
}

.header li a {
  display: block;
  padding: 20px 10px;
  /*border-right: 1px solid #f4f4f4;*/
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header li a,
.header .menu-btn {
  color: #fff;
	font-family: 'Montserrat', sans-serif;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 1100px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
	
	#logo img {width: 33vw;}	


}



@media screen and (min-width: 600px){ 
	
	#wrapper {width: 100%;}
	
	.carousel{margin-top: 0;
    overflow:hidden;
    width:120%;
	margin-left:-40px;
		height: auto;}
	
	#logo img {width: 33vw;
			margin-left: 40px;
				}
	
	#logo {width: 100%;
	display:flex;
	justify-content: flex-start;}
	
	.column2 {width: 90%;
		font-size: 40px;
	 }
	

.column2 span {font-size: 45px;}
	


.quote span {font-size: 6em;}
			
				}  

@media screen and (min-width: 1000px){ 
	
	#wrapper {width: 80%;}

	header ul {display: flex;
	justify-content: flex-end;}
	
	.flexindex {display: flex;
		justify-content: flex-start;
		margin-top: 30px;
			}
	.column2 {width: 50%;
		font-size: 40px;
	 }
	

.column2 span {font-size: 45px;}
	


.quote span {font-size: 6em;}
			
}
	