.u-centered {
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration-skip-ink: none;
}

* {
  font-family: "Poppins", sans-serif;
}

.headline {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .headline {
    font-size: 40px;
  }
}

.sub-headline {
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .sub-headline {
    font-size: 24px;
  }
}

.paragraph {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 32px;
}

.link:link,
.link:visited {
  display: inline-block;
  text-decoration: underline;
  color: #B63D32;
  font-weight: 400;
  font-size: 16px;
}

.link:hover,
.link:active {
  color: #b85f57;
}

.circled-number {
  position: relative;
  margin-left: 15px;
  margin-right: 30px;
}
@media (min-width: 1200px) {
  .circled-number {
    margin-left: 20px;
    margin-right: 40px;
  }
}

.circled-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 3px solid #B63D32;
  color: #000;
  text-align: center;
}
@media (min-width: 1200px) {
  .circled-number::after {
    width: 64px;
    height: 64px;
    padding: 10px;
  }
}

.cta {
  padding: 64px 0;
  background-color: #203644;
}
@media (min-width: 992px) {
  .cta {
    padding: 128px 0;
  }
}
.cta__headline {
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .cta__headline {
    text-align: left;
  }
}
.cta__paragraph {
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .cta__paragraph {
    text-align: left;
  }
}
.cta__social-icons {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  .cta__social-icons {
    text-align: left;
    margin-bottom: 0;
  }
}
.cta__social-link:first-child {
  margin-right: 36px;
}
.cta__social-icon {
  width: 64px;
}
.cta__button:link, .cta__button:visited {
  display: inline-block;
  margin-bottom: 32px;
  margin-right: 32px;
  border-radius: 5px;
  background-color: #B63D32;
  padding: 12px 32px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
@media (min-width: 992px) {
  .cta__button:link, .cta__button:visited {
    margin-bottom: 0px;
  }
}
.cta__button:hover, .cta__button:active {
  background-color: #b85f57;
}

.banner {
  position: relative;
  padding: 160px 0;
  margin-bottom: 96px;
}
@media (min-width: 1200px) {
  .banner {
    padding-top: 300px;
    padding-bottom: 100px;
    margin-bottom: 160px;
  }
}
@media (min-width: 2200px) {
  .banner {
    padding-top: 450px;
    padding-bottom: 180px;
  }
}
.banner__content {
  text-align: center;
  padding: 0 40px;
}
@media (min-width: 1200px) {
  .banner__content {
    text-align: left;
    padding: 0;
  }
}
.banner__headline {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
  color: #FFFFFF;
}
@media (min-width: 1200px) {
  .banner__headline {
    font-size: 64px;
    text-align: left;
    max-width: 700px;
  }
}
.banner__paragraph {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}
@media (min-width: 1200px) {
  .banner__paragraph {
    font-size: 20px;
    text-align: left;
    max-width: 700px;
  }
}
.banner__link:link, .banner__link:visited {
  display: inline-block;
  border-radius: 5px;
  background-color: #B63D32;
  padding: 12px 32px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
@media (min-width: 992px) {
  .banner__link:link, .banner__link:visited {
    margin-bottom: 0px;
  }
}
.banner__link:hover, .banner__link:active {
  background-color: #b85f57;
}
.banner__image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}
.banner__image--darker {
  filter: brightness(30%);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/assets/img/banners/home-banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 96px;
  padding: 96px 0;
}
@media (min-width: 1200px) {
  .hero {
    padding: 192px 0;
    margin-bottom: 160px;
  }
}
.hero__headline {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
  color: #FFFFFF;
  text-align: center;
}
@media (min-width: 992px) {
  .hero__headline {
    font-size: 64px;
    text-align: left;
  }
}
.hero__paragraph {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}
@media (min-width: 992px) {
  .hero__paragraph {
    font-size: 20px;
    text-align: left;
  }
}
.hero__button-container {
  text-align: center;
}
@media (min-width: 992px) {
  .hero__button-container {
    text-align: left;
  }
}

.img {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4941176471);
  width: 100%;
}

.portfolio-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: right bottom;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .portfolio-image {
    height: 300px;
  }
}
.portfolio-image:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4941176471);
}

.lightbox {
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9490196078);
}
.lightbox__inner {
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.lightbox__image-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lightbox__arrow-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 567px) {
  .lightbox__arrow-button {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .lightbox__arrow-button {
    padding: 20px;
  }
}
.lightbox__arrow-button > img {
  width: 20px;
}
@media (min-width: 567px) {
  .lightbox__arrow-button > img {
    width: 30px;
  }
}
@media (min-width: 992px) {
  .lightbox__arrow-button > img {
    width: 40px;
  }
}
.lightbox__arrow-button--left {
  left: 0;
}
.lightbox__arrow-button--right {
  right: 0;
}
.lightbox__open-button {
  padding: 10px 20px;
  margin-bottom: 64px;
  background-color: #203644;
  color: #FFFFFF;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.lightbox__close-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 567px) {
  .lightbox__close-button {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .lightbox__close-button {
    padding: 20px;
  }
}
.lightbox__close-button > img {
  width: 20px;
}
@media (min-width: 567px) {
  .lightbox__close-button > img {
    width: 30px;
  }
}
@media (min-width: 992px) {
  .lightbox__close-button > img {
    width: 40px;
  }
}

.testimonial {
  margin-bottom: 64px;
}
@media (min-width: 1200px) {
  .testimonial {
    margin-bottom: 0;
  }
}
.testimonial--last {
  margin-bottom: 0;
}
.testimonial__headline {
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 1200px) {
  .testimonial__headline {
    margin-bottom: 128px;
  }
}
.testimonial__paragraph {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.testimonial__line {
  border-top: 1px solid #000;
  width: 160px;
  margin: 0 auto 20px auto;
}
.testimonial__author {
  font-size: 14px;
  font-weight: 500;
  color: #B63D32;
  text-align: center;
}

.footer {
  padding: 64px 0;
}
.footer__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__group {
    margin-bottom: 0;
    align-items: flex-start;
  }
}
.footer__group--last {
  margin-bottom: 0px;
}
.footer__logo {
  width: 160px;
}
.footer__headline {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer__line {
  border-top: 1px solid #000;
  width: 64px;
  margin-bottom: 16px;
}
.footer__paragraph {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer__contact-item:link, .footer__contact-item:visited {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #B63D32;
}
.footer__contact-item:hover, .footer__contact-item:active {
  color: #b85f57;
}
.footer__link:link, .footer__link:visited {
  text-decoration: none;
  color: #B63D32;
}
.footer__link:hover, .footer__link:active {
  color: #b85f57;
}
.footer__social-icons {
  display: flex;
  justify-content: center;
}
.footer__social-link:first-child {
  margin-right: 16px;
}
.footer__social-icon {
  width: 36px;
}

.section {
  margin-bottom: 96px;
}
@media (min-width: 992px) {
  .section {
    margin-bottom: 160px;
  }
}

.info-group {
  margin-bottom: 64px;
}
@media (min-width: 1200px) {
  .info-group {
    margin-bottom: 0px;
  }
}

.disable-scroll {
  height: 100%;
  overflow: hidden;
}

.side-bar {
  z-index: 20;
  height: 100vh;
  overflow-y: scroll;
  width: 320px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #3d3d3d;
  transform: translatex(100%);
  transition: transform 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .side-bar {
    display: none;
  }
}
.side-bar--open {
  transform: translatex(0);
}
.side-bar__close-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  cursor: pointer;
}

.mobile-navigation {
  padding-top: 100px;
  height: 100%;
  overflow-y: auto;
}
.mobile-navigation__list {
  list-style: none;
  text-align: center;
}
.mobile-navigation__item {
  margin-bottom: 32px;
}
.mobile-navigation__link:link, .mobile-navigation__link:visited {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
}
.mobile-navigation__link--active:link, .mobile-navigation__link--active:visited {
  text-decoration: underline;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 32px;
}
.top-bar__image-container {
  flex: 1 0 0;
}
.top-bar__image {
  width: 100%;
  max-width: 128px;
}
.top-bar__contact {
  display: none;
  flex: 1 0 0;
  text-align: right;
}
@media (min-width: 992px) {
  .top-bar__contact {
    display: block;
  }
}
.top-bar__phone-number:link, .top-bar__phone-number:visited {
  color: #B63D32;
}
.top-bar__phone-number:hover, .top-bar__phone-number:active {
  color: #b85f57;
}

.navigation {
  display: none;
}
@media (min-width: 992px) {
  .navigation {
    display: block;
  }
}
.navigation__list {
  list-style: none;
  display: flex;
}
.navigation__item {
  margin: 0 12px;
}
.navigation__link:link, .navigation__link:visited {
  text-decoration: none;
  color: #000000;
}
.navigation__link--active:link, .navigation__link--active:visited {
  color: #B63D32;
}
.navigation__link:hover, .navigation__link:active {
  color: #B63D32;
}
.navigation__caret {
  width: 16px;
}

.top-bar__menu-button {
  width: 32px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .top-bar__menu-button {
    display: none;
  }
}

.navigation__projects {
  position: relative;
  display: flex;
  align-items: center;
}
.navigation__projects > a {
  margin-right: 12px;
}

.navigation__projects:hover .dropdown {
  display: flex;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #FFFFFF;
  z-index: 10;
  padding: 12px;
}
.dropdown > a {
  margin-bottom: 12px;
}

.contact-info-container {
  text-align: center;
  margin-bottom: 96px;
}
@media (min-width: 992px) {
  .contact-info-container {
    text-align: left;
    margin-bottom: 0;
  }
}

.contact-section {
  margin-bottom: 64px;
}

.contact-paragraph {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}

.contact-item:link,
.contact-item:visited {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  color: #B63D32;
  margin-bottom: 10px;
}

.contact-item:hover,
.contact-item:active {
  color: #b85f57;
}

.map-container {
  display: flex;
  justify-content: center;
}

.portfolio-headline {
  text-align: center;
  margin-bottom: 48px;
}

.portfolio-credit {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .portfolio-credit {
    font-size: 20px;
  }
}

.portfolio-credit-link:link,
.portfolio-credit-link:visited {
  color: #B63D32;
}

.portfolio-credit-link:hover,
.portfolio-credit-link:active {
  color: #b85f57;
}

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