body {
  background-color: rgb(191, 159, 118);
  background-image: url('../images/dust.png');
  background-position: center center;
  background-position: center center;
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  font-family: 'Unna', serif;
  letter-spacing: 1px;
}

/* INFO TRACK */
.info--track {
  color: white;
  background-color: rgb(61, 12, 2);
  padding: 5px 0;
}

.info--track a {
  color: white;
}

.info--track a:hover {
  color: rgb(191, 159, 118);
}

/* NAVBAR */
.navbar--main {
  background-color: rgb(191, 159, 118);
  box-shadow: 0 0px 10px 0 rgb(61, 12, 2);
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
  color: rgb(61, 12, 2);
}

.navbar-light .navbar-nav .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid rgb(61, 12, 2);
  color: rgb(61, 12, 2);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-nav .nav-link:hover {
  color: white;
}

.navbar-light .navbar-nav .nav-link.active:hover {
  border-bottom: 2px solid rgb(61, 12, 2);
}

/* dropdown menu */
.dropdown-item {
  color: rgb(61, 12, 2);
}
.dropdown-item:hover {
  background-color: rgba(191, 159, 118, 0.75);
}

.dropdown-item:active,
.dropdown-item.active {
  background-color: rgb(191, 159, 118);
}

#logo-most {
  height: 80px;
  position: absolute;
  top: 0px;
}

/* COVER */
.cover-section {
  position: relative;
  background-image: url('../images/empty-room.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 610px;
  padding-top: 15%;
}

.cover-section h1 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  color: rgb(61, 12, 2);
  text-shadow: 2px 2px 10px burlywood;
}

.content {
  position: relative;
  padding: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: white;
  box-shadow: 0 0 5px 0 rgb(61, 12, 2);
  border-radius: 3px;
}

.content h2 {
  color: rgb(61, 12, 2);
  text-align: center;
  margin-bottom: 30px;
}

/* ABOUT */
.about--us {
  padding: 0 30px;
}

.about--us h5 {
  text-align: left;
  text-indent: 30px;
  color: rgb(61, 12, 2);
}

/* SERVICES */
.service--card {
  border: none;
}

.service--card .fa--icon {
  font-size: 50px;
  margin: 0% auto;
  padding: 15px 10px;
  background-color: burlywood;
  color: #3d0c02;
  color: white;
  border-radius: 5px;
}

.service--card .fa--img {
  margin: 0% auto;
  padding: 15px 10px;
  background-color: #deb887;
  border-radius: 5px;
  height: 80px;
  width: 80px;
}

.service--card h5 {
  color: rgb(61, 12, 2);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.service--card p {
  color: rgb(61, 12, 2);
}

/* CONTACT */
.contact--div {
  padding: 0 50px;
  text-align: justify;
  color: rgb(61, 12, 2);
}

.contact--div h5 {
  text-indent: 30px;
}

.contact--social-network {
  text-align: left;
}

.fa--contact-icon {
  padding: 10px;
  color: rgb(61, 12, 2);
  font-size: 28px;
}

.fa--contact-icon:hover {
  color: rgb(191, 159, 118);
}

/* BUTTON TO TOP */
a#btn--to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 25px;
  color: white;
}

a#btn--to-top:hover {
  color: rgb(61, 12, 2);
}

/* FOOTER */
footer {
  background-color: rgb(61, 12, 2);
  color: white;
}

.footer--content {
  padding: 10px 0;
  color: rgb(191, 159, 118);
}

@media only screen and (max-width: 1024px) {
  .about--us {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .navbar--collapse {
    margin-top: 30px;
  }

  /* COVER */
  .cover-section {
    padding-top: 25%;
  }

  .content {
    padding: 15px;
  }

  /* ABOUT */
  .about--us h5 {
    font-size: 16px;
  }

  /* SERVICES */
  .service--card {
    padding: 0px 30px;
  }

  /* CONTACT */
  .contact--div {
    padding: 0 30px;
  }

  /* BUTTON TO TOP */
  a#btn--to-top {
    bottom: 15px;
    right: 15px;
    color: #bf9f76;
  }
}

@media only screen and (max-width: 425px) {
  /* COVER */
  .cover-section {
    min-height: 400px;
    padding-top: 35%;
  }

  .cover-section h1 {
    font-size: 35px;
  }

  /* ABOUT */
  .about--us {
    padding: 0 15px 25px;
  }

  /* SERVICES */
  .service--card {
    padding: 0px 60px;
  }

  /* CONTACT */
  .contact--div {
    padding: 0 30px;
  }

  .contact--info {
    max-width: 250px;
    margin: auto;
  }

  .contact--social-network {
    text-align: center;
  }

  /* FOOTER */
  .footer--content h6 {
    font-size: 13px;
  }
}

@media only screen and (max-width: 375px) {
  /* INFO TRACK */
  .info--track {
    font-size: 14px;
  }

  /* COVER */
  .cover-section {
    min-height: 300px;
  }

  .cover-section h1 {
    font-size: 30px;
  }

  .content h2 {
    color: rgb(61, 12, 2);
    text-align: center;
    margin-bottom: 15px;
  }

  /* SERVICES */
  .service--card {
    padding: 0px 30px;
  }

  /* FOOTER */
  .footer--content h6 {
    font-size: 10px;
  }
}

@media only screen and (max-width: 320px) {
  .navbar--collapse {
    margin-top: 20px;
  }

  /* INFO TRACK */
  .info--track {
    font-size: 11px;
  }

  #logo-most {
    height: 65px;
    top: 10px;
  }

  /* SERVICES */
  .service--card {
    padding: 0px 10px;
  }
}

@media only screen and (max-width: 320px) {
  .modal--dialog {
    top: 0;
  }

  #modal--image {
    max-height: 80vh;
    width: auto;
  }
}
