:root {
  --heading: 'Raleway', sans-serif;
  /* --heading: 'Roboto', sans-serif; */
  --font: 'Roboto', sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font);
  font-size: 1.9rem;
  font-weight: 400;
}

h1, h2 {
  font-family: var(--heading);
  font-weight: 100;
  text-align: center;
}

h1 {
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h2 {
  font-size: 4.8rem;
  margin: 0 0 20px;
}

a {
  text-decoration: none !important;
  color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus {
  color: blue;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

p {
  margin: 0 0 20px;
}

p:last-of-type {
  margin: 0;
}

.footer {
  background-color: #000;
  padding: 50px 30px;
}

.footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li:not(.socials ul li) {
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  position: relative;
  line-height: 1;
}

.footer ul li:not(.socials ul li):after {
  content: '';
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 0;
  background-color: #CCC;
  height: 100%;
  width: 1px;
}

.footer ul li:not(.socials ul li):last-of-type {
  margin: 0;
  padding: 0;
}

.footer ul li:not(.socials ul li):last-of-type:after {
  content: none;
}

.footer ul li a {
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
}

.copyright {
  margin: 40px 0 0;
  text-align: center;
  font-size: 14px;
  color: #FFF;
}

.copyright a {
  color: #FFF;
}

.sr-only {
  background-color: #000 !important;
  color: #fff !important;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.socials li a i {
  display: inline-block;
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.icon-facebook {
  background-image: url(../images/icons/icon-fb.svg);
}

.icon-twitter {
  background-image: url(../images/icons/icon-tw.svg);
}

.icon-linkedin {
  background-image: url(../images/icons/icon-li.svg);
}

.icon-instagram {
  background-image: url(../images/icons/icon-in.svg);
}

.socials {
  margin: 25px 0 0;
}

.socials li {
  margin: 0 15px 0 0;
}

.socials li:last-of-type {
  margin: 0;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials a:hover,
.socials a:focus {
  opacity: 0.75;
}

.main-content {
  padding: 197px 0 100px;
}

.main-content .h100 {
  height: 100% !important;
}

.main-content.home h1, .main-content.about h1, .main-content.contact h1, .main-content h2+p {
  margin: 0 0 80px;
  height: max-content;
}

.main-content h2+p {
  font-size: 2rem;
  text-align: center;
}

#lightgallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
}

#lightgallery a {
  grid-column: span 1;
}

#lightgallery a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.disclaimer {
  font-size: 80%;
  text-align: center;
  margin: 30px 0 0;
}

.contact .contact-map,
.contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contact-info {
  padding: 0 0 0 40px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0s
}

.contact-info ul li {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
  position: relative;
}

.contact-info ul li:last-of-type {
  margin: 0;
}

.contact-info ul li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}

.contact-info ul li:nth-child(1):after {
  background-image: url(../images/icons/icon-map.svg);
}

.contact-info ul li:nth-child(2):after {
  background-image: url(../images/icons/icon-phone.svg);
}

.contact-info ul li:nth-child(3):after {
  background-image: url(../images/icons/icon-email.svg);
}

.content-img img {
  max-width: 100%;
}

.home-featured h2 {
  text-align: center;
}

.home-featured a {
  display: block;
  width: max-content;
  margin: 0 auto;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.home-featured a img {
  max-width: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.home-featured a:hover img,
.home-featured a:focus img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header {
  position: absolute;
  background-color: #FFF;
  top: 0;
  z-index: 9999;
  width: 100%;
  margin: 60px 0px;
}

.pg-title:not(.pg-title.no-text) h2 {
  margin: 0;
}

.lg-backdrop,
.lg-outer {
  z-index: 99999;
}

.lg-sub-html {
  display: none;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-featured h2 span,
.pg-title h2 span {
  font-size: 5.8rem;
  font-weight: 100;
}

.lg-toolbar.lg-group span:not(.lg-close, #lg-counter-current, #lg-counter-all),
#lg-download {
  display: none !important;
}

img.lg-object.lg-image {
  max-height: calc(100vh - 250px) !important;
}