/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
h1,
h2,
h3,
h4 {
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2B403C;
  padding: 0;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.1rem;
  color: #2B403C;
  padding: 0;
  margin: 0 0 1rem 0;
  line-height: 1.7rem;
}

a {
  font-size: 1.1rem;
  color: #2B403C;
  text-decoration-color: transparent;
  transition: 0.3s;
}
a:hover, a:focus {
  color: #2B403C;
}

ul,
li {
  color: #2B403C;
  font-size: 1.1rem;
}

.wp-block-media-text {
  margin: 0 0 4rem 0;
}
.wp-block-media-text .wp-block-media-text__content {
  margin: 2rem 0 0 0;
  padding: 0;
}
@media (min-width: 800px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 4rem 0 4rem 1rem;
    margin: 0;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
  border-radius: 10px;
}
@media (min-width: 800px) {
  .wp-block-media-text .wp-block-media-text__media {
    margin: 0 1rem 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 800px) {
  .wp-block-media-text .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (min-width: 800px) {
  .has-media-on-the-right .wp-block-media-text__content {
    padding: 4rem 1rem 4rem 0;
  }
}
.has-media-on-the-right .wp-block-media-text__media {
  position: relative;
  border-radius: 10px;
}
@media (min-width: 800px) {
  .has-media-on-the-right .wp-block-media-text__media {
    margin: 0 0 0 1rem;
  }
}
.has-media-on-the-right .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 800px) {
  .has-media-on-the-right .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (max-width: 800px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
}
@media (max-width: 800px) {
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-columns {
  gap: 0;
  margin: 0;
}
@media (min-width: 800px) {
  .wp-block-columns {
    gap: 2rem;
  }
}
.wp-block-columns .wp-block-column ul {
  margin: 0;
}
@media (min-width: 800px) {
  .wp-block-columns .wp-block-column ul {
    margin: 1rem 0;
  }
}

.introduction {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
  width: 100%;
}
@media (min-width: 500px) {
  .introduction {
    padding-top: 0;
    padding-bottom: 3rem;
    width: 80%;
  }
}
@media (min-width: 500px) {
  .introduction:after {
    content: "";
    width: 100%;
    height: 3rem;
    border-radius: 20px 20px 0 0;
    position: absolute;
    background: #fff;
    top: -3rem;
    left: 0;
  }
}
.introduction h1 {
  margin: 0 0 2rem 0;
}

.contact-bar-wrap {
  background: #14A3F9;
}
.contact-bar-wrap .contact-bar {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  padding: 2rem 1rem;
}
.contact-bar-wrap .contact-bar h2 {
  margin: 0;
  text-align: center;
}
.contact-bar-wrap .contact-bar a {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
}
.contact-bar-wrap .contact-bar a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B403C;
  transition: width 0.3s ease;
}
.contact-bar-wrap .contact-bar a:hover {
  color: #2B403C;
}
.contact-bar-wrap .contact-bar a:hover::before {
  width: 100%;
}

.standard-section-wrap {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media (min-width: 800px) and (min-height: 600px) {
  .standard-section-wrap {
    padding-top: 16rem;
    margin-top: -12rem;
  }
}
.standard-section-wrap .standard-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}
@media (min-width: 800px) {
  .standard-section-wrap .standard-section {
    flex-direction: row;
    background: #F2F2F2;
    border-radius: 2rem;
    justify-content: flex-end;
  }
}
.standard-section-wrap .standard-section .content-wrap {
  padding: 2rem;
  background: #F2F2F2;
  border-radius: 2rem;
}
@media (min-width: 800px) {
  .standard-section-wrap .standard-section .content-wrap {
    width: 60%;
    flex-direction: row;
    background: #F2F2F2;
    border-radius: 0;
    position: absolute;
    height: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 20rem;
    padding: 2rem 8rem 2rem 2rem;
  }
}
.standard-section-wrap .standard-section .content-wrap ul {
  list-style-type: none;
  padding: 0;
}
.standard-section-wrap .standard-section .content-wrap ul li {
  list-style-type: none;
}
.standard-section-wrap .standard-section .content-wrap ul li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("https://jura.xthost.co.uk/ves/wp-content/uploads/2024/11/blue-circle.png");
  background-size: cover;
  margin-right: 10px;
}
.standard-section-wrap .standard-section .content-wrap ul li:nth-of-type(even)::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("https://jura.xthost.co.uk/ves/wp-content/uploads/2024/11/yellow-circle.png");
  background-size: cover;
  margin-right: 10px;
}
.standard-section-wrap .standard-section .image-wrap {
  display: flex;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 800px) {
  .standard-section-wrap .standard-section .image-wrap {
    width: 70%;
    height: 500px;
  }
}
.standard-section-wrap .standard-section .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width-section {
  background-image: url("https://jura.xthost.co.uk/ves/wp-content/uploads/2024/10/eeeex.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}
@media (hover: none) {
  .full-width-section {
    background-attachment: static;
  }
}
.full-width-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.full-width-section .hiring-intro {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.full-width-section .hiring-intro h2 {
  color: #fff;
  text-align: center;
}
.full-width-section .hiring-intro p {
  color: #fff;
  text-align: center;
}
.full-width-section .hiring-grid {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  gap: 2rem;
  z-index: 2;
}
@media (min-width: 800px) {
  .full-width-section .hiring-grid {
    flex-direction: row;
  }
}
.full-width-section .hiring-grid .hiring-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}
.full-width-section .hiring-grid .hiring-card:nth-of-type(even)::before {
  content: url("https://jura.xthost.co.uk/ves/wp-content/uploads/2024/11/blue-circle.png");
  display: inline-block;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  opacity: 0.3;
}
.full-width-section .hiring-grid .hiring-card::before {
  content: url("https://jura.xthost.co.uk/ves/wp-content/uploads/2024/11/yellow-circle.png");
  display: inline-block;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  opacity: 0.3;
}
.full-width-section .hiring-grid .hiring-card .content,
.full-width-section .hiring-grid .hiring-card .btn {
  z-index: 50;
}

.contact {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media (min-width: 800px) and (min-height: 600px) {
  .contact {
    padding-top: 16rem;
    margin-top: -12rem;
  }
}
.contact h2 {
  text-align: center;
}
.contact p {
  text-align: center;
}
.contact p a {
  position: relative;
}
.contact p a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B403C;
  transition: width 0.3s ease;
}
.contact p a:hover {
  color: #2B403C;
}
.contact p a:hover::before {
  width: 100%;
}
.contact .contact-form {
  max-width: 50rem;
  margin: 0 auto;
}
.contact .contact-form .gform_wrapper {
  margin: 2rem 0 0 0;
}
.contact .contact-form .gform_required_legend {
  display: none;
}
.contact .contact-form .gform-field-label {
  font-size: 1.1rem;
}
.contact .contact-form .gform_wrapper.gravity-theme input[type=color],
.contact .contact-form .gform_wrapper.gravity-theme input[type=date],
.contact .contact-form .gform_wrapper.gravity-theme input[type=datetime-local],
.contact .contact-form .gform_wrapper.gravity-theme input[type=datetime],
.contact .contact-form .gform_wrapper.gravity-theme input[type=email],
.contact .contact-form .gform_wrapper.gravity-theme input[type=month],
.contact .contact-form .gform_wrapper.gravity-theme input[type=number],
.contact .contact-form .gform_wrapper.gravity-theme input[type=password],
.contact .contact-form .gform_wrapper.gravity-theme input[type=search],
.contact .contact-form .gform_wrapper.gravity-theme input[type=tel],
.contact .contact-form .gform_wrapper.gravity-theme input[type=text],
.contact .contact-form .gform_wrapper.gravity-theme input[type=time],
.contact .contact-form .gform_wrapper.gravity-theme input[type=url],
.contact .contact-form .gform_wrapper.gravity-theme input[type=week],
.contact .contact-form .gform_wrapper.gravity-theme select,
.contact .contact-form .gform_wrapper.gravity-theme textarea {
  background: #eee;
  border: none;
  border-radius: 10px;
  margin: 0.2rem 0 0 0;
}

.grecaptcha-badge {
  z-index: 100;
}

@media (min-width: 800px) and (min-height: 600px) {
  #excavator-types {
    padding-top: 16rem;
    margin-top: -16rem;
  }
}

.error {
  width: 100%;
  background-repeat: no-repeat;
  background-image: url("/wp-content/uploads/2024/11/exx-3.png");
  background-position: center center;
  background-size: cover;
}
.error .overlay {
  width: 100%;
  height: 70vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.error .content {
  text-align: center;
}
.error .content h1, .error .content h2, .error .content p {
  color: #fff;
}
.error .content .btn {
  margin: 1rem 0;
}

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center;
}
.blog-header h2 {
  color: #fff;
}

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 500px) {
  .blog-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media (min-width: 500px) {
  .blog-post {
    width: 48%;
    margin: 0 1%;
  }
  @supports (display: grid) {
    .blog-post {
      width: 100%;
      margin: 0;
    }
  }
}
.blog-post .image {
  width: 100%;
  height: 300px;
  background-size: cover !important;
  background-position: center center !important;
}
.blog-post .meta {
  color: #2B403C;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.blog-post .title {
  color: #2B403C;
  font-size: 1.2rem;
}
.blog-post p {
  color: #2B403C;
}

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto;
}
.post-single .attachment-post-thumbnail {
  width: 100%;
  height: auto;
}

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start;
}
.share-buttons li {
  height: auto;
  flex: 0 1 auto;
  width: calc(33.3333333% - 1px);
  margin-right: 0.063rem;
}
.share-buttons li:last-child {
  width: 33.3333333%;
  margin-right: 0;
}
.share-buttons li:last-child a {
  border-radius: 0 0.188rem 0.188rem 0;
}
.share-buttons li:first-child a {
  border-radius: 0.188rem 0 0 0.188rem;
}
.share-buttons svg {
  fill: #fff;
  margin-right: 0.313rem;
  width: 1rem;
  height: 1rem;
}
.share-buttons a {
  display: block;
  padding: 0.75rem 0.75rem 0.563rem;
  text-align: center;
  color: White;
}

.share-twitter {
  background: #1da1f2;
}

.share-facebook {
  background: #3b5998;
}

.share-pinterest {
  background: #b5071a;
}

.btn,
.gform_button {
  display: inline-block;
  color: #2B403C;
  padding: 0.5rem 1rem;
  border: 2px solid #14A3F9;
  border-radius: 2rem;
  background: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
.btn:hover, .btn:focus,
.gform_button:hover,
.gform_button:focus {
  border-radius: 0;
  color: #2B403C;
}

.main-footer {
  background: #333537;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 1rem 2rem;
}
.main-footer .logo img {
  max-width: 15rem;
  height: auto;
}
.main-footer .contact-details {
  margin: 0.5rem 0 0 0;
}
.main-footer .contact-details p {
  text-align: center;
  color: #fff;
  margin: 0.5rem 0 0 0;
}
.main-footer .contact-details .footer-no {
  font-size: 1.5rem;
  font-weight: 800;
}
.main-footer .contact-details a {
  font-size: 1.3rem;
  position: relative;
  color: #fff;
}
.main-footer .contact-details a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B403C;
  transition: width 0.3s ease;
}
.main-footer .contact-details a:hover {
  color: #2B403C;
}
.main-footer .contact-details a:hover::before {
  width: 100%;
}
.main-footer .contact-details a::before {
  background: #fff;
}
.main-footer .contact-details a:hover {
  color: #fff;
}
.main-footer .policies {
  margin: 1rem 0 0 0;
}
.main-footer .policies p {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}
.main-footer .policies p:last-of-type {
  margin: 0;
}
.main-footer .policies a {
  font-size: 0.8rem;
  color: #fff;
  position: relative;
}
.main-footer .policies a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B403C;
  transition: width 0.3s ease;
}
.main-footer .policies a:hover {
  color: #2B403C;
}
.main-footer .policies a:hover::before {
  width: 100%;
}
.main-footer .policies a::before {
  background: #fff;
}
.main-footer .policies a:hover {
  color: #fff;
}

.home.active {
  height: 100%;
  overflow: hidden !important;
}

.site-header {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 800px) and (min-height: 600px) {
  .site-header {
    width: 100%;
    position: fixed;
    z-index: 100;
  }
}
.site-header .top-container-wrap {
  width: 100%;
  background: #333537;
}
.site-header .top-container-wrap .top-container {
  display: none;
}
@media (min-width: 500px) {
  .site-header .top-container-wrap .top-container {
    width: 100%;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 87.5rem;
    margin: 0 auto;
    gap: 1rem;
  }
}
.site-header .top-container-wrap .top-container .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.site-header .top-container-wrap .top-container .contact-item .iconify {
  color: #fff;
  margin: 0 0.25rem 0 0;
}
.site-header .top-container-wrap .top-container a {
  position: relative;
  color: #fff;
}
.site-header .top-container-wrap .top-container a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B403C;
  transition: width 0.3s ease;
}
.site-header .top-container-wrap .top-container a:hover {
  color: #2B403C;
}
.site-header .top-container-wrap .top-container a:hover::before {
  width: 100%;
}
.site-header .top-container-wrap .top-container a::before {
  background: #fff;
}
.site-header .top-container-wrap .top-container a:hover {
  color: #fff;
}
.site-header .top-container-wrap .top-container a:hover, .site-header .top-container-wrap .top-container a:focus {
  color: #fff;
}
.site-header .container {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}
.site-header .logo {
  margin-right: auto;
}
.site-header .logo img {
  max-width: 8rem;
  height: auto;
}
@media (min-width: 800px) {
  .site-header .logo img {
    max-width: 12.5rem;
  }
}
.site-header .logo a {
  display: flex;
}
.site-header .contact-icons {
  display: none;
}
@media (min-width: 800px) {
  .site-header .contact-icons {
    display: block;
  }
}
.site-header .contact-icons.mobile-icons {
  display: block;
}
.site-header .contact-icons a {
  position: relative;
}
.site-header .contact-icons a .iconify {
  color: #2B403C;
  font-size: 1.5rem;
  margin: 0 0.25rem 0 0.25rem;
  transition: 0.3s;
}
.site-header .contact-icons a .iconify:hover, .site-header .contact-icons a .iconify:focus {
  color: #14A3F9;
}
.site-header #mobile-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.site-header #mobile-button .iconify {
  color: #2B403C;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #mobile-button .iconify:hover, .site-header #mobile-button .iconify:focus {
  color: #14A3F9;
}
@media (min-width: 800px) {
  .site-header #mobile-button {
    display: none;
  }
}
.site-header #close-button {
  position: absolute;
  top: 50px;
  right: 1rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header #close-button .iconify {
  color: #2B403C;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #close-button .iconify:hover, .site-header #close-button .iconify:focus {
  color: #14A3F9;
}

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  padding: 1rem;
  margin: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
#mobile-menu .menu-primary-container {
  width: 100%;
}
#mobile-menu .menu {
  text-align: center;
  margin: 20px 0;
}
#mobile-menu .menu li a {
  display: inline-block;
  margin: 0.5rem 0;
}
#mobile-menu .sub-menu {
  list-style-type: none;
  padding: 0;
  border-top: 1px solid #2B403C;
  border-bottom: 1px solid #2B403C;
  display: none;
}
#mobile-menu .sub-menu.active {
  display: block;
}
@media (min-width: 800px) {
  #mobile-menu {
    display: none;
  }
}

#main-menu {
  display: none;
}
@media (min-width: 800px) {
  #main-menu {
    display: flex;
  }
}
#main-menu .menu {
  position: relative;
}
#main-menu .menu li {
  position: relative;
}
#main-menu .menu li:last-of-type {
  display: inline-block;
  color: #2B403C;
  padding: 0.5rem 1rem;
  border: 2px solid #14A3F9;
  border-radius: 2rem;
  background: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
#main-menu .menu li:last-of-type:hover, #main-menu .menu li:last-of-type:focus {
  border-radius: 0;
  color: #2B403C;
}
#main-menu .menu li:last-of-type a:before {
  display: none;
}
#main-menu .menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#main-menu .menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#main-menu .sub-menu {
  position: absolute;
  top: 35px;
  right: 0;
  padding-left: 0;
  max-width: 300px;
  min-width: 150px;
  background: #2B403C;
}
#main-menu .sub-menu a {
  display: block;
  padding: 0.5rem;
}

.menu {
  list-style-type: none;
  padding-left: 0;
}
.menu li {
  padding: 0.5rem 0;
}
@media (min-width: 800px) {
  .menu li {
    display: inline;
    padding: 0.5rem 1rem;
  }
}
.menu a {
  color: #2B403C;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.menu a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B403C;
  transition: width 0.3s ease;
}
.menu a:hover {
  color: #2B403C;
}
.menu a:hover::before {
  width: 100%;
}
.menu a:hover {
  color: #2B403C;
}

.page-header {
  width: 100%;
  height: 250px;
  position: relative;
}
.page-header .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.page-header .overlay h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards;
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slides {
  max-height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

.slide-img {
  width: 100%;
  height: 500px;
  position: relative;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slide-img .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 2rem;
}
.slide-img .container h1 {
  color: #fff;
  margin: 0;
}
.slide-img .container p {
  color: #fff;
}
html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 800px) and (min-height: 600px) {
  main {
    padding-top: 185px;
  }
}

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px;
}

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-layout {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.6s;
}/*# sourceMappingURL=style.css.map */