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


:root {
  --orange: #F56E1E;
  --grey: #404042;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey);
}

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: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}


h3{
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 50px;
  border-bottom: 8px solid var(--grey);
}
h3 span{
  display:inline-block;
  background-color: var(--orange);
  color:#FFF;
  padding: 10px 20px; 
}


h4{
  font-size: 1.2rem;
  font-weight: 600;
  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: 90%;
  max-width: 1200px;
  position:relative;
}
.container.narrow{
  max-width: 650px;
}

.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;
}

.flex .full{
  width: 100%;
}


.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: 30px;
}

.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-large{
  margin: 150px auto; 
}
.margined-small{
  margin: 20px auto;
}

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

.padded{
  padding: 50px;
}
.padded-small{
  padding: 15px; 
}


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

.relative{
  position:relative;
}

.button{
  display: inline-block;
  border-radius: 15px;
  background-color:var(--grey);
  color:#FFF;
  padding: 10px 25px;
  transition: box-shadow 0.25s ease, transform 0.5s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.button:hover{
  color:#FFF;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.button:active {
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.25);
  transform: translateY(1px);
}


.inline{
  display:inline;
}
.inlineblock{
  display:inline-block;
}
.block{
  display:block;
}
.block-img{
  display:block;
  width:100%;
}

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


.bg-orange{
  background-color:var(--orange);
}
.bg-grey{
  background-color:var(--grey);
}
.bg-light{
  background-color:#f1f1f1;
}
.text-white{ color:#FFF !important; } 


.header{
 padding: 0 50px;
}

.header .logo img{
  display:block;
  height: 50px;
}

.header .logo img.hansons{
  height: 100px;
  margin-left: 20px; 
} 

.header nav{
  flex:1;
  text-align:right;
}
.header nav a{
  color:#FFF; 
  margin-left: 25px;
}
.header nav a.current{
  border-bottom:1px solid #FFF; 
  padding-bottom:2px;
}


.dark-transparent{
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-color:rgba(0,0,0,.3);
}

.hero{
  height: 80vh; 
  max-height: 700px; 
}

.hero-text{
  font-size: 3rem;
  line-height: 1;
  color:#FFF; 
  text-align:center;
  padding: 200px 0 0 0;
  text-wrap: nowrap; 
}
.hero-text a{
  color:#FFF; 
}
.hero-text a:hover{
  color: var(--orange);
}

.hero-text .hero-extra{
  position:absolute;
  top:3rem;
  left:0;
  text-align:left;
}
.hero-text .hero-extra span{
  display:block;
}

.category{
  border: 2px solid #CCC;
  border-radius: 15px; 
  overflow:hidden;
  text-align:center;
}
.category img{
  display:block;
  object-fit: cover;
  object-position: center center;
  width:100%;
  aspect-ratio: 4/3;
}
.category span{
  display:block;
  background-color:var(--orange);
  color:#FFF;
  padding: 13px;
  font-size: 1.3rem;
  transition:.7s background-color;
}

.category:hover span{
  background-color: var(--grey);
  transition:.3s background-color;
} 

.footer{
  border-top: 10px solid var(--orange);
  padding: 50px 0;
  margin-top: 100px; 
  color:#FFF; 
}
.footer a{
  color:#FFF;
}
.footer a:hover{
  color:var(--orange);
}

.footer .social a{
  display:inline-block;
  margin-right: 15px; 
}
.footer .social img{
  height: 35px;
}

.footer .coredev{
  display:block;
  font-size: 0.8rem;
  opacity: .2;
  margin-top: 15px; 
}
.footer .coredev:hover{
  opacity: 1;
  transition:.3s opacity, .3s color; 
}

.heading-border{
  height: 8px; 
  background-color:var(--orange);
  margin-top: 10px; 
  margin-bottom: 40px; 
  width: 50%;
  animation-name: border; 
  animation-duration: 1s;
  animation-iteration-count: 1;
}
@keyframes border{
  from{
    width:0;
    opacity:0;
  }
  to{
    width: 50%;
    opacity:1;
  }
}

.restrict{
  width: 90%;
  max-width: 800px;
}


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


.specs span{
  display:inline-block;
  border: 1px solid #CCC;
  border-radius: 7px;
  margin-right: 10px;
  padding: 5px 10px; 
  font-size: 0.8rem;
  margin-bottom: 10px; 
}
.specs span img{
  height: 20px; 
  vertical-align: middle;
  margin-right: 5px; 
}

.gallery img{
  display:block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.booking-iframe iframe{
  width: 100%;
  height: 1500px; 
  border:0;
}

