/* Color Scheme https://coolors.co/87bcde-805e73-4e4d5c-2d4654-243b4a */
/* GLOBAL */
html {
  margin: 0;
  /*font-family: volkhov, serif;*/
  scroll-behavior: smooth;
}
body {
  background: #243b4a;
  margin: 0;
}
@font-face {
  font-family: 'Engravers_Gothic_BT';
  src: url('fonts/Engravers_Gothic_BT.ttf');
  src:
    local('Engravers_Gothic_BT'),
    local('Engravers_Gothic_BT'),
    url('fonts/Engravers_Gothic_BT.ttf')
    format('truetype');
}
@font-face {
  font-family: 'Felixti';
  src: url('fonts/Felixti.ttf');
  src:
    local('Felixti'),
    local('Felixti'),
    url('fonts/Felixti.ttf')
    format('truetype');
}
.center {
    margin: auto;
    width: 100%;
/*    padding: 10px;
*/}
.banner {
  float: none;
  width: 100%;
}

a {
  color: #EEEFE4;
}
/*BACK TO TOP*/
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 19px;
    top: 14px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}



/* HEADER */
h1 {
  display: inline; 
  font-size: 1em; 
  margin-top: 0.67em; 
  margin-bottom: 0.67em; 
  margin-left: 0; 
  margin-right: 0; 
  font-weight: normal;
}
header {
  background: #243b4a;
}
.logo { 
  width: 30%;
  padding: 15px;
  padding-top: 15px;
}
h3 {
  font-family: 'Engravers_Gothic_BT';
  font-weight: none;
}
/* NAVIGATION */
nav {
  float: right;
  padding-right: 10px;
  font-family: 'Engravers_Gothic_BT';
  font-size: 1.9em;
}
#burger {
  padding-right: 15px;
  padding-top: 8px;
}
li {
 display: block;
 transition-duration: 0.5s;
 padding-top: 2px;
}

li:hover {
  cursor: pointer;
}

ul li ul {
  visibility: hidden;
  opacity: 0;
  /*position: absolute;*/
  transition: all 0.5s ease;
  /*margin-top: 1rem;*/
  left: 0;
  display: none;
}

ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul li {
  clear: both;
  width: 100%;
}
.dropdown{
  float: left;
  padding-right: 10px;
  font-family: 'Engravers_Gothic_BT';
  font-size: .7em;

}
#navlist {
  margin: 15px;
  padding-left: 0;
}
/* BODY */
#portrait{
  padding-top: 2em;
  padding-left: 4em;
  padding-bottom: 4em;

  
}
.div-cont {
  background: #e2d5ae;
  margin: 40px;
  padding: 10px;
}
.div-bod {
  font-size: 1em;
  width: 75%;
  margin: auto;
}
.div-bod b {
  font-family: 'Felixti';
}
#about .div-bod {
  width: 60%;
  float: right;
}
#services h3 {
  font-size: 1.5em;
}
#services .div-bod {
  padding-bottom: 3em;
}
#about h3{
  font-size: 1.5em;
  padding-top: 1em;
  padding-bottom: 1.5em;
}
#about-cont {
  float: right;
}
#about-text {
  padding-top: 1.2em;
  padding-right: 3em;
}
#services{

}
#contact {
  background: #243b4a;
  display: grid;
}
#contact-cont {
  background: #243b4a;
  padding: 10px 100px 10px 100px;
  color: #EEEFE4;
}
#contact-cont img {
  float: left;
  }
  #contact-cont a {
  float: right;
  }
#photos {
  background: #e2d5ae;
  padding: 40px;
}
/* FOOTER */
footer {
  text-align: center;
  background-color: #243B4A;
  color: #EEEFE4;
}
#broadsword {
  font-size: .7em;
}

.diy-slideshow{
  position: relative;
  display: block;
  overflow: hidden;
}
figure{
  position: absolute;
  opacity: 0;
  transition: 1s opacity;
}
figcaption{
  position: absolute;
  font-family: sans-serif;
  font-size: .8em;
  bottom: .75em;
  right: .35em;
  padding: .25em;
  color: #fff;
  background: rgba(0,0,0, .25);
  border-radius: 2px;
}
figcaption a{
  color: #fff;
}
figure.show{
  opacity: 1;
  position: static;
  transition: 1s opacity;
}
.next, .prev{
  color: #fff;
  position: absolute;
  background: rgba(0,0,0, .6);
  top: 50%;
  z-index: 1;
  font-size: 2em;
  margin-top: -.75em;
  opacity: .3;
  user-select: none;
}
.next:hover, .prev:hover{
  cursor: pointer;
  opacity: 1;
}
.next{
  right: 10px;
  padding: 10px 5px 15px 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.prev{
  left: 10px;
  padding: 10px 10px 15px 5px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/*EMAIL BUTTON*/
.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px;
    border: 1px solid #000000;
    border-radius: 8px;
    background: #adadad;
    background: -webkit-gradient(linear, left top, left bottom, from(#adadad), to(#474747));
    background: -moz-linear-gradient(top, #adadad, #474747);
    background: linear-gradient(to bottom, #adadad, #474747);
    text-shadow: #591717 2px 1px 0px;
    font: normal normal bold 18px 
    font-family: 'Engravers_Gothic_BT';
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    background: #d0d0d0;
    background: -webkit-gradient(linear, left top, left bottom, from(#d0d0d0), to(#555555));
    background: -moz-linear-gradient(top, #d0d0d0, #555555);
    background: linear-gradient(to bottom, #d0d0d0, #555555);
    color: #ffffff;
    text-decoration: none;
}
.button:active {
    background: #686868;
    background: -webkit-gradient(linear, left top, left bottom, from(#686868), to(#474747));
    background: -moz-linear-gradient(top, #686868, #474747);
    background: linear-gradient(to bottom, #686868, #474747);
}
.button:before{
    content:  "\0000a0";
    display: inline-block;
    height: 24px;
    width: 24px;
    line-height: 24px;
    margin: 0 4px -6px -4px;
    position: relative;
    top: 0px;
    left: -5px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABJUlEQVRIie3WP05CQRDH8Q+EgspYGgsOYEVrYuUhqEiMJzDxGsbSCxiNBS2tofAENDZUFNbGSAwUgAXzkn2EPw/C65hkmtnffH/z9u0mC2d4xxTzA+UUvWB7PSB4Od8q+MGJcmIkcXtA/wBT94M1x7yauA1wiRfM9ph2hudgDLJidUn0hxvcYbwDfBw9t8HIcbNPG6CZ1K8wtH1LhqHNohmsbD0n/kU7EZ9bHLd18F5osmgHI9WsbHxCPZpqeJS/J9Oo1UJTj55VrLXTfaCRTNfCd2QrqTdCu46zcX+/cJ3ALiKzuA7NJsbWnzjBvfzJqEZtUqC/8AXq4DSyU7SvkrkUjM9kqwrFrgY7x/JNPhocDfYzGJXIH1XRLdGgy+Jp0VPSs+UfjsHmFdGJ8hoAAAAASUVORK5CYII=") no-repeat left center transparent;
    background-size: 100% 100%;
}
/* MEDIA QUERIES */
@media (max-width: 565px) {
  nav {
    display: none;
  }
}
@media (max-width: 785px) {
  #about .div-bod{
    float: none;
    padding: 1em;
    padding-bottom: 2.5em;
    margin: auto;
  }
  #about h3 {
    margin:0;
    padding: .5em; 
  }
  #portrait {
    width: 80%;
    padding-left: 1.3em;
    padding-bottom: 0;
    margin: auto;
  }
}
@media (max-width: 946px) {
  #contact-cont img {
    display: none;
  }
  #contact-cont a {
    float: none;
    margin: 0 auto;
  }
}
