*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  background-color: #FAFAF4;
}

img{
  border: 0;
  max-width:100%;
}

a{
  text-decoration: none;
  cursor:pointer;
  transition:.7s color, .7s background-color;
  color:#000;
}
a:focus{
  outline: none;
}
a:hover{
  transition:.3s color, .3s background-color;
}

h2{
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 300; 
  margin-bottom: 25px; 
  color:#0E1452;
}


h3{
  font-size: 2rem;
  line-height: 1.2;
  font-weight:300; 
  margin-top: 40px;
  margin-bottom: 10px;
}


h4{
  font-size: 1.2rem;
  font-weight: 300;
  margin: 30px 0 5px 0;
}

h3:first-child, h4:first-child{
  margin-top:0;
}

p{
  margin-bottom: 15px;
}
p:last-child{
  margin-bottom:0;
}

ul, ol{
  margin: 0 0 15px 30px;
}

.large{
  font-size: 1.2rem;
}
.small{
  font-size: 0.8rem;
}

.light{
  font-weight:300;
}
.semi{
  font-weight: 600;
}

.clear{ clear: both; }

.container{
  margin: 0 auto;
  width: 96%;
  max-width: 1300px;
  position:relative;
}
.container.narrow{
  max-width: 700px;
}

.flex{
  display:flex;
}
.flex.wrap{
  flex-wrap:wrap;
}
.flex.end{
  align-items:flex-end;
}
.flex.vert{
  align-items:center;
}


.flex .half{
  width: 47%;
  margin-right: 6%;
}
.flex .half:nth-child(2n+2){
  margin-right:0;
}

.flex .third{
  width: 32%;
  margin-right: 2%;
}
.flex .third:nth-child(3n+3){
  margin-right:0;
}




.grid-5{
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px; 
}

.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}

.grid-center{
  justify-items: center;
}

.grid-gap{
  gap: 50px !important;
}
.grid-vert{
  align-items: center;
}

.grid-span-1 {
  grid-column: span 1;
}
.grid-span-2 {
  grid-column: span 2;
}
.grid-span-3 {
  grid-column: span 3;
}
.grid-span-4 {
  grid-column: span 4;
}
.grid-span-5 {
  grid-column: span 5;
}

.grid-swap div:nth-child(1){
  order:2;
}
.grid-swap div:nth-child(2){
  order:1;
}


.margined{
  margin: 75px auto;
}
.margined-small{
  margin: 20px auto;
}

.topmargin{
  margin-top: 75px;
}
.bottommargin{
  margin-bottom: 75px;
}

.padded{
  padding: 50px;
}
.vpadded{
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.relative{
  position:relative;
}

.button{
  display: inline-block;
  border-radius: 10px;
  background-color:#0E1452;
  color:#FFF;
  padding: 10px 25px;
  text-decoration: none !important;
}
.button:hover{
  background-color: #F1C33C !important;
  color:#FFF !important;
}

.button.large{
  font-size: 1.5rem;
  padding: 20px 40px;
  border-radius: 30px;
}

.inline{
  display:inline;
}
.inlineblock{
  display:inline-block;
}
.block{
  display:block;
}
.block-img{
  display:block;
  width:100%;
  border-radius: 0 15px 0 15px;
  transition: .7s border-radius;
}
a:hover .block-img{
  border-radius: 0 25px 0 25px;
  transition: .3s border-radius;
}

.bgcover{
  background-size:cover;
  background-position: center center;
}

.landing{
  padding: 30px;
}

.landing img{
  display: block;
  margin: 0 auto; 
  width: 80%;
  max-width: 600px; 
}


.hero{
  height: 90vh; 
  min-height: 350px;
  max-height: 800px;
  position:relative;
}
.hero.short{
  height: 40vh;
  max-height: 500px;
}

.hero .title{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  text-align:center;
}
.hero .title h2{
  display:inline-block;
  margin: 0 auto;
  background: rgba(14, 20, 82, 0.8);
  border-radius: 15px 15px 0 0;
  color:#fff;
  padding: 15px 20px; 
  min-width: 40%;
  font-size: 2rem;
}

.header{
  padding: 30px; 
  position:relative;
  text-align: right; 
  color:#FFF; 
}

.header h1{
  position:absolute;
  top:30px;
  left:30px;
  width: 225px; 
}

.header .social img{
  margin-left: 15px; 
  height: 30px; 
  vertical-align: middle;
}

.header .language{
  margin-left: 20px;
  vertical-align: middle;
}
.header .language a{
  margin-right: 10px;
  opacity: .3;
  transition:.7s opacity;
}
.header .language a img{
  height: 30px;
}
.header .language a:hover{
  opacity: .7;
  transition:.3s opacity;
}

.header .language a:last-child{
  margin-right:0;
}

.header .language .current{
  opacity: 1;
}

.header a{
  color: #FFF; 
}

.header nav{
  margin: 40px 0 0 0;
  font-size: 1.2rem;
}
.header nav a{
  margin-left: 25px;
  text-shadow: 0 0 5px #000;  
}
.header nav a:hover{
  text-decoration: underline;
}
.header nav a.current{
  font-weight: 700;
}

.bg{
  background-color:#FFF; 
  background-image:url('images/bg-transparent.svg');
  background-position: center bottom;
  background-size: 100% auto; 
  background-repeat: no-repeat;
}

.bg-blue{ 
  background-color: #0E1452; 
  color:#FFF;
}
.bg-blue .button{
  background-color:#FFF;
  color: #0E1452;
}

.bg-beige{ background-color: #FAFAF4; }
.bg-white{ background-color: #FFF; }

.square{
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;   
  display:block;
}


.footer{
  margin-top: 100px;
}

.footer-logo{
  width: 200px;
}

.footer .footer-social{
  height: 70px;
  margin: 20px 10px;
}



.footer a:hover{
  text-decoration: underline;
}

.video-embed iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border:0;
  border-radius: 15px 0 15px 0;
}

.bookinglink{
  background-color:#FFF;
  padding: 30px;
  border-radius: 0 15px 0 15px;
  transition:.7s box-shadow;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-width: 700px;
}
.bookinglink:hover{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition:.3s box-shadow;
}
.bookinglink:hover .button{
  background-color: #F1C33C !important;
  color:#FFF !important;
  transition:.3s background-color, .3s color;
}