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

body{
  font-size: 18px;
  line-height: 30px;
  font-family: 'Roboto', sans-serif;
}

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;
  color: #8DACD1;
}

h1{
  font-size: 50px;
  line-height: 60px;
  text-shadow: 0 0 15px #000;
}

h2{
  font-size: 50px;
  line-height: 60px;
}


h3{
  font-size: 40px;
  line-height: 40px;
  margin-top: 40px;
  margin-bottom: 10px;
}


h4{
  font-size: 16px;
  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: 20px;
  line-height: 35px;
}
.small{
  font-size: 14px;
  line-height: 20px;
}

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

.clear{ clear: both; }

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

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


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

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

.padded{
  padding: 50px;
}

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


.button{
  display: inline-block;
  border-radius: 4px;
  background-color:#8DACD1;
  color:#FFF;
  padding: 10px 25px;
}
.button:hover{
  color:#FFF;
}

.inline{
  display:inline;
}
.inlineblock{
  display:inline-block;
}
.block{
  display:block;
}

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


.red{
  background-color:#8D2929;
}

.text-white{
  color:#FFF; 
}
.text-white a{
  color:#FFF; 
}

.head-logo{
  width: 500px; 
}

.foot-logo{
  width: 250px; 
}
.restrict{
  max-width: 700px; 
}

.carousel img{
  display:block;
  width:100%;
}

.flickity-button{
  display:none;
}