.btn {
  padding: 22px 30px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
}

.btn-primary {
  color: #FFFFFF;
  border: 2px solid #FF820A;
  background-color: #FF820A;
}

.btn-primary:hover {
  color: #FF820A;
  border: 2px solid #FF820A;
  background-color: #FFFFFF;
}

.btn-secundary {
  color: #FF820A;
  border: solid 2px #FF820A;
  background-color: transparent;
  font-size: 13px;
}

.btn-secundary:hover {
  color: #FFFFFF;
  background-color: #FF820A;
}

.socials a {
  margin-right: 10px;
  color: #242221;
  font-size: 32px;
}

.socials a:hover {
  color: #FF820A;
  text-decoration: none;
}

body {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  color: #FFFFFF;
  font-size: 70px;
  font-weight: 600;
  line-height: 60px;
}

h2 {
  color: #242221;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 1px;
}

h2 b {
  font-weight: 700;
}

h3 {
  color: #242221;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

h4 {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: 7px;
}

h5 {
  color: #ACACAC;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

p {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
}

p a {
  color: #FF820A;
}

p a:hover {
  color: #FF820A;
}

header {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/foto-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

header .overlay {
  width: 100%;
  height: 100%;
  padding: 150px 0 100px;
  background-color: rgba(36, 34, 33, 0.6);
}

header .overlay .container {
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}

header .overlay p {
  max-width: 60%;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  header {
    height: fit-content;
  }

  header .overlay {
    padding-top: 50px;
  }

  header .overlay img {
    margin-bottom: 50px;
  }

  header .overlay p {
    max-width: 80%;
  }
}

.blok-1 {
  padding: 135px 0;
  border-top: 9px solid #FF820A;
}

.blok-1 .blok-1-rechts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}

.blok-1 .blok-1-rechts p {
  color: #767676;
}

.blok-2 {
  padding: 100px 0 50px 0;
  background-color: #FAFAFA;
}

.blok-2 .checkmark {
  color: #FF820A;
  font-size: 44px;
}

.blok-2 .btn-read-more {
  display: flex;
  color: #5C371A;
  text-transform: uppercase;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.blok-2 .btn-read-more i,
.blok-2 .btn-read-more svg {
  margin-left: 10px;
}

.blok-3 {
  padding: 90px 0 130px 0;
}

.gallery {
  display: flex;
  width: 100vw;
  align-items: center;
  flex-flow: wrap;
  justify-content: flex-start;
}

.gallery .image {
  width: 25vw;
  height: 25vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: box-shadow .3s ease, transform .3s ease;
  cursor: pointer;
}

.gallery .image .overlay {
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 130, 10, 0.8);
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.gallery .image .overlay .icon {
  color: #FFFFFF;
  font-size: 32px;
}

.gallery .image:hover {
  z-index: 9999;
  box-shadow: 3px 6px 20px 0 rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.gallery .image:hover .overlay {
  opacity: 1;
}

footer .socials a {
  color: #767676;
}

@media (min-width: 1199.98px) {
  .container {
    max-width: 1280px;
  }
}

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