@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

.u-image-round {
  border-radius: 50%;
}

.u-el-center {
  display: block !important;
  margin: 0 auto !important;
}

.u-text-center {
  text-align: center !important;
}

.u-fade-in {
  -webkit-animation: fade-in 1.5s !important;
          animation: fade-in 1.5s !important;
}

.u-text-white {
  color: #fff !important;
}

.u-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}

.u-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes popup {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes popup {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes scale-up {
  from {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes scale-up {
  from {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

.heading--main {
  color: #fff;
  letter-spacing: 0.8rem;
  font-size: 3.2rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.heading--main span {
  font-size: 3.5rem;
  display: block;
  margin-top: 0.7rem;
}

.heading--secondary {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 200;
  margin-bottom: 1.5rem;
}

.heading--tertiary {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.btn, .btn:link, .btn:visited {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 3rem;
  padding: 1rem 1.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0.7rem 0;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 3rem;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.5;
}

.btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
}

.btn:hover::after {
  -webkit-transform: scale(1.3, 1.7);
          transform: scale(1.3, 1.7);
  opacity: 0;
}

.btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}

.btn--light {
  color: #5a5a5a;
  background-color: #fff;
}

.btn--light::after {
  background-color: #fff;
}

.btn--dark {
  color: #fff;
  background-color: #a83;
}

.btn--dark::after {
  background-color: #a83;
}

body {
  font-size: 1.2rem;
  font-family: "Karla", sans-serif;
  background-color: #f7f7f7;
}

section {
  padding: 5rem 0 7rem 0;
}

section:not(:last-child) {
  margin-bottom: 2rem;
}

.row {
  max-width: 1140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.row .col-1-of-2 {
  width: 50%;
  padding: 1rem;
}

.row .col-1-of-4 {
  width: 228px;
  position: relative;
}

.nav {
  padding: 3rem 5rem 2rem 5rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.nav__checkbox, .nav__toggle {
  display: none;
}

.nav__brand {
  display: inline-block;
  font-size: 1.5rem;
}

.nav__list {
  float: right;
}

.nav__item {
  list-style-type: none;
  float: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.nav__item:not(:last-child) {
  margin-right: 4rem;
}

.nav__link, .nav__link:link, .nav__link:visited {
  cursor: pointer;
  text-decoration: none;
  color: #5f3b12;
  padding: 0.8rem 1rem;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 0;
  height: 2px;
  background-color: #a83;
  width: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.nav__link:hover::after {
  width: 100%;
  opacity: 1;
}

.header {
  position: relative;
  margin-bottom: 2rem;
}

.header__image {
  width: 100%;
  height: 65vh;
  min-height: 22rem;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(170, 136, 51, 0.75)), to(rgba(170, 136, 51, 0.75))), url(../images/header.jpg);
  background-image: linear-gradient(to right, rgba(170, 136, 51, 0.75), rgba(170, 136, 51, 0.75)), url(../images/header.jpg);
  background-position: center;
  background-size: cover;
}

.header__text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.about__text {
  font-weight: 300;
}

.about__text:not(:last-child) {
  margin-bottom: 1.2rem;
}

.about__image {
  width: 15rem;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 1rem 3rem rgba(95, 59, 18, 0.3);
          box-shadow: 0 1rem 3rem rgba(95, 59, 18, 0.3);
}

.services {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(170, 136, 51, 0.75)), to(rgba(170, 136, 51, 0.75))), url(../images/services-bg.jpg);
  background-image: linear-gradient(to right, rgba(170, 136, 51, 0.75), rgba(170, 136, 51, 0.75)), url(../images/services-bg.jpg);
  background-position: center;
  background-size: cover;
}

.services__heading {
  margin-bottom: 3rem;
  color: #fff;
  font-weight: 300;
}

.services__card {
  height: auto;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.services__card:hover {
  -webkit-transform: translateY(-5px) scale(1.05);
          transform: translateY(-5px) scale(1.05);
  -webkit-box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.6);
          box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.6);
}

.services__image {
  display: block;
  height: 10rem;
  margin: 0 auto;
  border-radius: 5px 5px 0 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(170, 136, 51, 0.5)), to(rgba(170, 136, 51, 0.5))), url(../images/placeholder.jpg);
  background-image: linear-gradient(to right, rgba(170, 136, 51, 0.5), rgba(170, 136, 51, 0.5)), url(../images/placeholder.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}

.services__info {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  color: #5a5a5a;
  line-height: 1.7rem;
}

.services__title {
  margin-bottom: 4rem;
  font-weight: 300;
}

.services__item {
  list-style-type: none;
  border-bottom: 1px solid #d1d0d0;
}

.services__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.footer {
  min-height: 22rem;
  background-color: #333;
  padding-top: 5rem;
  padding-bottom: 2rem;
  text-align: center;
  color: #f7f7f7;
}

.footer__heading {
  color: #f7f7f7;
  margin-bottom: 3rem;
}

.footer__contact-info {
  list-style-type: none;
}

.footer__divider {
  display: block;
  width: 60%;
  margin: 0 auto;
  border-bottom: 1px solid #5a5a5a;
}

.footer__social-icons {
  padding-top: 2rem;
}

.footer__social-link {
  text-decoration: none;
}

.footer__social-link:not(:last-child) {
  margin-right: 2.5rem;
}

.footer__icon {
  width: 3.5rem;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.footer__icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer__icon:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: none;
}

.popup--show {
  visibility: visible;
  opacity: 1;
  display: block;
}

.popup__content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65%;
  height: auto;
  background-color: #f7f7f7;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 1rem;
  -webkit-transition: all 0.5s 0.25s;
  transition: all 0.5s 0.25s;
  max-height: 90vh;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-animation: scale-up 0.5s ease-in-out;
          animation: scale-up 0.5s ease-in-out;
}

.popup__close, .popup__close:link, .popup__close:visited {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  width: 2.2rem;
  height: 2.2rem;
  background-color: #f7f7f7;
  border-radius: 50%;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  text-decoration: none;
  color: #5f3b12;
  cursor: pointer;
}

.popup__image {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  border-radius: 5px;
}

.popup__text-box {
  width: 50%;
  float: left;
  padding-top: 0;
  padding-left: 1rem;
  padding-bottom: 1rem;
  overflow: scroll;
  overflow-x: hidden;
}

.popup__text {
  margin-bottom: 1rem;
}

.popup__btn-container {
  text-align: center;
}

@media only screen and (max-width: 1160px) {
  .nav {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }
  .nav__brand {
    display: none;
    text-align: center;
  }
  .nav__checkbox {
    display: none;
  }
  .nav__checkbox:checked ~ .nav__list {
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 9rem;
  }
  .nav__checkbox:checked + .nav__toggle .nav__icon::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  .nav__toggle {
    padding: 1.2rem 0;
    display: block;
    text-align: center;
    cursor: pointer;
    background-color: #f7f7f7;
    position: relative;
    z-index: 20;
  }
  .nav__icon {
    position: relative;
    -webkit-transform: translateY(0.8rem);
            transform: translateY(0.8rem);
    display: inline-block;
    width: 1rem;
    height: 2px;
    background-color: #5f3b12;
    border-radius: 2px;
  }
  .nav__icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5f3b12;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .nav__list, .nav__item {
    float: none;
  }
  .nav__list {
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    height: 0;
    position: relative;
    z-index: 10;
  }
  .nav__item {
    margin: 0;
    margin-bottom: 1.2rem;
  }
  .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
  .row {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row .col-1-of-2 {
    padding-left: 2rem;
  }
  .popup__content-box {
    width: 85%;
  }
}

@media only screen and (max-width: 1000px) {
  .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .row .col-1-of-4 {
    margin: 0 4rem;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 95%;
  }
  p {
    text-align: justify;
  }
  .nav {
    padding-left: 0;
    padding-right: 0;
  }
  .nav__list {
    width: 100%;
  }
  .heading--main {
    font-size: 2rem;
    font-weight: 400;
  }
  .heading--main span {
    font-size: 2.2rem;
  }
  .row .col-1-of-2 {
    width: 100%;
    padding-right: 2rem;
  }
  .about__responsive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .popup__content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .popup__close:link, .popup__close:visited {
    right: 2rem;
  }
  .popup__image {
    width: 70%;
    float: none;
    margin: 0.5rem auto 0;
  }
  .popup__text-box {
    width: 100%;
    float: none;
    padding: 0;
  }
  .popup__text-box .heading--secondary {
    width: 100%;
  }
  .popup__text {
    margin-bottom: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */