/* Text Styles ///////////////////////////////////////////////////
*
*
*
*
*/
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 40px;
  margin: 6px 0 16px;
}

h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 30px;
  margin-top: 0;
}

h4 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 20px;
  margin: 10px 0;
}

h5 {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 24px;
}

p {
  line-height: 28px;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
}

a {
  color: black;
  transition: 200ms;
  letter-spacing: 1px;
}
a:hover {
  color: rgb(94, 94, 94);
  transition: 200ms;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
}

ol {
  list-style-type: circle;
  padding: 0;
  margin: 0 auto;
  margin-top: 10px;
  line-height: 28px;
  text-align: left;
  width: 60%;
}

/* Page ///////////////////////////////////////////////////
*
*
*
*
*/
body {
  background-color: #eae8e4;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  height: 100vh;
  margin: 0;
  min-width: 300px;
}

/* Elements ///////////////////////////////////////////////////
*
*
*
*
*/
hr {
  border-top: 1px dashed #5e5e5e;
  width: 100%;
}

.scroll-to-top {
  bottom: 60px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
}

/* Header ///////////////////////////////////////////////////
*
*
*
*
*/
header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px;
}
header .logo {
  display: flex;
  justify-self: center;
}
header .logo img {
  height: 44px;
}

/* Navigation ///////////////////////////////////////////////////
*
*
*
*
*/
nav {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  position: relative;
}

nav a {
  align-items: center;
  border-right: 1px solid #000000;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}

nav a:nth-child(6) {
  border: 0;
}

/* Sub-Navigation ///////////////////////////////////////////////////
*
*
*
*
*/
.sub-navigation-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.sub-navigation {
  margin: 20px 0;
  width: 80%;
  display: flex;
  justify-content: center;
}
.sub-navigation a {
  padding: 6px 20px;
  margin: 0 10px;
}
.sub-navigation a::before {
  content: "";
  border: 1px solid black;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

/* Shared Navigation ///////////////////////////////////////////////////
*
*
*
*
*/
nav a,
.sub-navigation a,
footer {
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 11px;
  transition: 200ms;
}

nav a.active,
nav a.active-class,
.sub-navigation a.active,
.sub-navigation a.active-class {
  background: black;
  color: white;
}
nav a.active:hover,
nav a.active-class:hover,
.sub-navigation a.active:hover,
.sub-navigation a.active-class:hover {
  color: white;
}

nav a:hover,
.sub-navigation a:hover {
  color: black;
}

nav a:hover::after,
.sub-navigation a:hover::after,
nav a.active::after,
nav a.active-class::after,
.sub-navigation a.active::after,
.sub-navigation a.active-class::after {
  content: "";
  border-bottom: 1px solid black;
  position: absolute;
  width: 100%;
  display: block;
  bottom: -6px;
  left: 0;
  box-sizing: border-box;
}

/* Footer ///////////////////////////////////////////////////
*
*
*
*
*/
footer {
  align-items: center;
  border-top: 1px solid #000000;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 0 10px 10px;
  justify-items: center;
}
footer > div {
  align-items: center;
  display: flex;
}
footer > div:first-child {
  justify-self: flex-start;
}
footer > div:last-child {
  justify-self: flex-end;
}
footer .icon-social {
  margin-left: 8px;
}
footer .icon-social:hover {
  fill: #5e5e5e;
  transform: scale(1.2);
  transition: 200ms;
}

/* Spacing ///////////////////////////////////////////////////
*
*
*
*
*/
.space-above {
  margin-top: 50px;
}

/* Text Layouts ///////////////////////////////////////////////////
*
*
*
*
*/
.paragraph-center-reading {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  height: 100%;
}

/* Page Layouts ///////////////////////////////////////////////////
*
*
*
*
*/
.layout-spacing {
  padding: 0 30px;
}

.layout-full .title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.layout-full .gallery {
  margin: 10px 0 50px;
}

.layout-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
}
.layout-half .map {
  width: 100%;
  height: 100%;
  border: 0;
}

.layout-3-to-1 .description {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 20px;
  grid-column-gap: 20px;
}
.layout-3-to-1 .gallery {
  margin: 30px 0 50px;
}
.layout-3-to-1 .image {
  max-width: 100%;
  margin: 0 auto;
}

.layout-thirds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 50px 0;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  grid-column-gap: 40px;
}
.layout-thirds .layout-thirds-first {
  align-items: center;
  display: flex;
}
.layout-thirds .layout-thirds-third {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.link-container {
  display: flex;
}

.left-indent {
  margin-left: 30px;
}

.logo {
  height: 60px;
}

/* Icon Instagram ///////////////////////////////////////////////////
*/
.icon-social {
  display: flex;
  width: 20px;
  margin-right: 8px;
  transition: 200ms;
}

/* Icon External ///////////////////////////////////////////////////
*/
.icon-external {
  display: inline-block;
  fill: #000000;
  height: 12px;
  margin-left: 4px;
}

nav .icon-external {
  position: absolute;
  right: 10px;
  width: 12px;
}

/* Icon Arrow Down in Sub Navigation ///////////////////////////////////////////////////
*/
.sub-navigation-container .icon-arrow-down {
  width: 10px;
}

.homepage .header-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 153px);
}
.homepage .header-image-1 {
  background-image: url("../../images/misc/header-1.jpg");
}
.homepage .header-image-2 {
  background-image: url("../../images/misc/header-2.jpg");
}
.homepage .header-image-3 {
  background-image: url("../../images/misc/header-3.JPG");
}
.homepage .header-image-4 {
  background-image: url("../../images/misc/header-4.JPG");
}
.homepage .header-image-5 {
  background-image: url("../../images/misc/header-5.JPG");
}
.homepage .header-image-6 {
  background-image: url("../../images/misc/header-6.jpg");
}
.homepage .header-image-7 {
  background-image: url("../../images/misc/header-7.jpg");
}
.homepage .header-image-8 {
  background-image: url("../../images/misc/header-8.jpg");
}
.homepage .header-image-9 {
  background-image: url("../../images/misc/header-9.jpg");
}
.homepage .header-image-10 {
  background-image: url("../../images/misc/header-10.JPG");
}
.homepage .header-image-11 {
  background-image: url("../../images/misc/header-11.jpg");
}
.homepage .header-image-12 {
  background-image: url("../../images/misc/header-12.jpg");
}
.homepage .header-image-13 {
  background-image: url("../../images/misc/header-13.jpg");
}
.homepage .header-image-14 {
  background-image: url("../../images/misc/header-14.JPG");
}
.homepage .header-image-15 {
  background-image: url("../../images/misc/header-15.JPG");
}

/* Tablet Size ///////////////////////////////////////////////////
*
*
*
*
*/
@media (max-width: 850px) {
  nav {
    grid-template-columns: 1fr 1fr 1fr;
    border: 0;
    width: calc(100% + 2px);
  }
  nav a {
    border-right: 0;
    border: 1px solid #000000;
    margin-left: -1px;
    margin-top: -1px;
    padding: 20px;
  }
  nav a:nth-child(6) {
    border: 1px solid #000000;
  }
  .layout-half,
  .layout-3-to-1 .description,
  .layout-full .title {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  ol {
    width: auto;
  }
}
/* Mobile Size ///////////////////////////////////////////////////
*
*
*
*
*/
@media (max-width: 449px) {
  body {
    overflow-x: hidden;
  }
  nav {
    grid-template-columns: 1fr 1fr;
  }
  nav a.active-class::after,
  .sub-navigation a.active::after {
    bottom: 6px;
  }
  .sub-navigation {
    flex-direction: column;
  }
  .sub-navigation a {
    padding: 20px;
  }
  .sub-navigation a::before {
    border: 0;
  }
  h3 {
    margin-bottom: 10px;
  }
  .layout-full .gallery {
    margin-top: 30px;
  }
  .paragraph-center-reading {
    width: auto;
  }
  .layout-thirds {
    display: block;
    padding: 0;
  }
  .layout-thirds > div {
    margin-top: 20px;
  }
  footer {
    display: flex;
    flex-direction: column;
  }
  footer span {
    margin-bottom: 12px;
  }
  .scroll-to-top {
    bottom: 85px !important;
  }
}

/*# sourceMappingURL=style.css.map */
