@import url("https://fonts.googleapis.com/css?family=Merriweather:300,400,700|Open+Sans:300,600&display=swap&subset=latin-ext");
.cookies {
  background: linear-gradient(164deg, #b6a088, #7c6d5c);
  width: 30%;
  display: block;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 10px;
  left: 10px;
  padding: 15px 10px;
  z-index: 88;
  -webkit-animation: 750ms linear fadeIn;
  animation: 750ms linear fadeIn;
}

.cookies p {
  font-size: 11px;
  color: #fff;
}

.cookies .cookies__btn {
  background: #fff;
  border-radius: 2rem;
  padding: 0.3rem 1.3rem;
  border: none;
}

@media (max-width: 768px) {
  .cookies {
    width: 90%;
  }
}

* {
  animation-delay: 250ms linear !important;
}

header,
section,
footer {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.scrollUp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  background: #7c6d5c;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: Center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 50%;
  animation: fadeIn 250ms linear;
}

.scrollUp:hover {
  background: #7c6d5c;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  color: #111111;
  font-weight: 400;
}

.btn-primary, .btn-dark {
  color: white;
  background: #b6a088;
  border: #b6a088;
  border-radius: 3rem;
  padding: 0.4rem 1.6rem;
  transition: all 250ms linear;
}

.btn-primary:hover, .btn-dark:hover {
  color: #f3f3f3;
  background: #7c6d5c;
  border: #7c6d5c;
  border-radius: 3rem;
  padding: 0.4rem 1.6rem;
}

.display-4 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}

body {
  font-family: "Open Sans", sans-serif;
  color: #3d3832;
  font-weight: 300;
}

.toper {
  padding: 10px 15px;
  font-size: 14px;
}

.toper .row {
  align-items: center;
  justify-content: space-between;
}

.toper p {
  margin: 0;
  padding: 0;
}

.toper p .uil {
  color: #b6a088;
}

.toper .uil {
  font-size: 1.2rem;
}

.toper .btn {
  display: flex;
  align-items: center;
}

.nav {
  position: sticky;
  top: 0;
  background: #f7f7f7;
  padding: 30px 15px;
  border-bottom: solid rgba(221, 221, 221, 0.3) 1px;
  z-index: 90;
}

.nav .uil {
  margin: 0;
  padding: 0;
  color: rgba(108, 117, 125, 0.6);
}

.nav__logo {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  color: #373737;
  font-weight: 400;
  transition: all 250ms linear;
  letter-spacing: 1px;
}

.nav__logo span {
  font-weight: 700;
  color: #b6a088;
}

.nav__logo:hover {
  color: #373737;
  text-decoration: none;
  opacity: 0.8;
}

.nav__logo:hover span {
  color: #b6a088;
}

.nav .row {
  align-items: center;
  justify-content: space-between;
}

.nav__menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  margin-top: 5px;
  position: relative;
}

.nav__menu ul {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  background: #fff;
  position: absolute;
  width: 200px;
  border-bottom: solid #b6a088 3px;
}

.nav__menu ul li {
  font-size: 14px;
  margin-left: -2px;
}

.nav__menu li {
  margin-left: 15px;
  font-weight: bold;
  font-size: 15px;
}

.nav__menu li a {
  color: #373737;
  padding-bottom: 5px;
  transition: all 250ms linear;
}

.nav__menu li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #b6a088;
  transition: all 250ms linear;
  margin-top: 5px;
}

.nav__menu li a:hover {
  color: #b6a088;
  text-decoration: none;
}

.nav__menu li a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #b6a088;
}

@media (max-width: 768px) {
  .nav__menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 5px 0;
  }
  .nav__menu li {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
  .nav__menu ul {
    position: relative;
    width: 100%;
  }
}

.slider {
  position: relative;
  height: 80vh;
  width: 100%;
  background: #f6f6f6;
}

.slider h1::after,
.slider h2::after,
.slider h4::after,
.slider h5::after,
.slider h3::after {
  content: "";
  width: 10%;
  height: 3px;
  background: #b6a088;
  display: block;
  margin-top: 15px;
}

.slider__dot {
  position: absolute;
  top: 45%;
  right: 0;
  width: 60px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  left: auto;
  z-index: 88;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: all 250ms linear;
}

.slider__dot:hover {
  background: #fff;
}

.slider__dot li {
  width: 30px;
  height: 2px;
  margin: 6px 0;
  background: #373737;
  display: block;
  transition: all 250ms linear;
  border: solid 3px transparent;
  border-radius: 5px;
  cursor: pointer;
}

.slider__dot li.active {
  width: 50px !important;
  height: 2px;
  background: #b6a088 !important;
}

.slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.slider__item--active {
  display: block;
}

.slider__item__content {
  position: relative;
  z-index: 9;
}

.slider__item__fog {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(243, 243, 243, 0.8) 70%, rgba(243, 243, 243, 0.4));
  width: 100%;
  height: 100%;
  z-index: 2;
}

.slider__item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
  opacity: 1;
  z-index: 1;
}

@media (max-width: 768px) {
  .slider {
    height: 80vh;
  }
  .slider__dot {
    display: flex;
    bottom: 0;
    top: auto;
    left: auto;
    right: auto;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .slider__dot li {
    width: 60px;
    margin: 0 10px;
  }
  .slider__dot:hover {
    background: none;
  }
}

.about {
  position: relative;
  padding: 6rem 0;
  box-sizing: border-box;
}

.about__content, .about__img {
  opacity: 0;
  animation-fill-mode: forwards;
}

.about .lead {
  color: #7c6d5c;
}

@media (min-width: 768px) {
  .about {
    background: linear-gradient(to right, #f7f7f7 70vw, #ddd 30%);
  }
}

.about__titler {
  position: relative;
  bottom: 10px;
  right: -10%;
  font-size: 6rem;
  color: #b6a088;
  font-family: "Merriweather", serif;
  opacity: 0.2;
  transform: rotate(-90deg);
}

.about h1,
.about h2,
.about h3,
.about h4,
.about h5 {
  font-weight: 400;
  color: #111111;
}

.about h1::after,
.about h2::after,
.about h3::after,
.about h4::after,
.about h5::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: #b6a088;
}

.about p {
  margin: 20px 0;
  text-align: justify;
}

.about__img img {
  max-width: 70%;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 1px 20px #111;
}

.about__img__text {
  position: absolute;
  top: 42%;
  right: -24%;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
  .about__content, .about__img {
    margin: 15px 0;
  }
  .about__content img, .about__img img {
    box-shadow: 0 1px 10px rgba(221, 221, 221, 0.3);
  }
  .about__content__text, .about__img__text {
    transform: translate(0, 0);
    position: relative;
    text-align: center !important;
    top: 10px;
    bottom: 0;
    margin: 0 auto !important;
    left: auto;
    right: auto;
  }
}

.boxes {
  position: relative;
  padding: 120px 0;
  box-sizing: border-box;
  background: #f6f6f6;
  background-size: cover;
  background-position: center center;
}

.boxes__bg {
  position: absolute;
  top: 0%;
  right: 0;
  width: 100%;
  height: 100%;
}

.boxes__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.2;
  filter: grayscale(100%);
}

.boxes .container {
  position: relative;
  z-index: 2;
}

.boxes p {
  color: #6c757d;
}

.boxes hr {
  width: 40px;
  border-bottom: solid 4px #b6a088;
}

.boxes__item {
  background: #f3f3f3;
  padding-bottom: 20px;
  margin-top: 40px;
  border-bottom: solid 2px #b6a088 !important;
}

.boxes__item .uil {
  color: #b6a088;
  margin: 10px 0;
  font-size: 3rem;
}

.boxes__item h5 {
  padding: 12px 0;
  color: #7c6d5c;
}

.boxes__item p {
  color: #6c757d;
}

@media (max-width: 768px) {
  .boxes {
    padding: 40px 0;
  }
}

.whatweoffer {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  background: linear-gradient(to right, #ddd 36vw, #f7f7f7 30%);
  padding: 150px 0;
}

.whatweoffer h1::after,
.whatweoffer h2::after,
.whatweoffer h3::after,
.whatweoffer h4::after,
.whatweoffer h5::after,
.whatweoffer h6::after {
  content: "";
  width: 30px;
  border-radius: 5px;
  margin-top: 20px;
  height: 3px;
  background: #b6a088;
  display: block;
}

.whatweoffer .row {
  align-items: center;
}

.whatweoffer__content {
  opacity: 0;
  animation-fill-mode: forwards;
}

.whatweoffer__img {
  animation-delay: 500ms !important;
  transform: translate(10%, -30px) !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.whatweoffer__img__foto {
  max-width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 1rem 1rem rgba(17, 17, 17, 0.3) !important;
}

.whatweoffer__img__foto:nth-child(2) {
  transform: translate(-50%, 40px);
  box-shadow: 0 1rem 1rem rgba(17, 17, 17, 0.4) !important;
}

.whatweoffer__content p {
  padding: 10px 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .whatweoffer {
    background: #f7f7f7;
    padding: 40px 0;
  }
  .whatweoffer__img {
    transform: translate(0, 0) !important;
  }
  .whatweoffer__img__foto {
    transform: translate(0, 0) !important;
    height: 300px;
    margin-bottom: 40px;
  }
  .whatweoffer__img__foto:nth-child(2) {
    transform: translate(0, 0) !important;
    box-shadow: 0 1rem 1rem rgba(17, 17, 17, 0.4) !important;
  }
}

.contactwithus {
  position: relative;
  padding: 60px 0;
  background: #111111;
  width: 100%;
  display: block;
  margin: 0 auto;
  z-index: 9;
}

.contactwithus__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 10;
}

.contactwithus .btn-primary {
  color: white;
  background: #7c6d5c !important;
}

.contactwithus .btn-primary:hover {
  background: #b6a088 !important;
}

.contactwithus .container {
  color: #fff;
  position: relative;
  z-index: 11;
}

.contactwithus .container h1,
.contactwithus .container h2,
.contactwithus .container h3,
.contactwithus .container h4,
.contactwithus .container h5,
.contactwithus .container h6 {
  color: #f7f7f7;
}

.footer {
  padding: 50px;
  background: #111111;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #b6a088;
}

.footer h1:after,
.footer h2:after,
.footer h3:after,
.footer h4:after,
.footer h5:after,
.footer h6:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #b6a088;
  display: block;
  margin-top: 10px;
}

.footer p {
  color: #909599;
  text-align: justify;
  font-size: 14px;
}

.subfooter {
  background: #000;
  font-size: 13px;
  color: #6c757d;
  padding: 10px 0;
  text-align: center;
}

.subfooter p {
  margin: 0;
  padding: 0;
}

.subfooter a {
  color: #b6a088;
}

.title {
  position: relative;
  padding: 80px 0;
  background: #f3f3f3;
  border-bottom: solid 1px rgba(55, 55, 55, 0.2);
}

.title .container {
  position: relative;
  z-index: 2;
}

.title__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  opacity: 0.1;
  filter: grayscale(100%);
  z-index: 1;
}

.title h1 {
  font-size: 2.3rem;
  color: #7c6d5c;
}

article {
  padding: 70px 0;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  color: #b6a088;
}

article img {
  border-radius: 5px;
}
