@font-face {
  font-family: 'BOSQUE';
  src: url('../../../fonts/BOSQUE.ttf');
}
@font-face {
  font-family: 'Gotham-Book';
  src: url('../../../fonts/Gotham-Book.otf');
}
@font-face {
  font-family: 'GothamLight';
  src: url('../../../fonts/GothamLight.ttf');
}
@font-face {
  font-family: 'Gotham-Medium';
  src: url('../../../fonts/Gotham-Medium.otf');
}

html {
  overflow-x: hidden;
}
body {
  font-family: 'Gotham-Book';
  background: #bbb8aa;
  color: #615043;
  overflow-x: hidden;
}
img {
  width: auto;
  max-width: 100%;
}

/* Home Slider */
.home-slider img {
  width: 100%;
}
.slick-dots {
  bottom: 25px !important;
}
.slick-dots li button:before {
  color: #757e68 !important;
  font-size: 14px !important;
}
.slick-dots li.slick-active button:before {
  color: #757e68 !important;
  opacity: 1 !important;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
h1 {
  font-family: 'BOSQUE';
  font-size: 2rem;
}

/* Menu */
#navbar-mobile ul.menu {
  display: none;;
}
#navbar-mobile {
  /* position: fixed; */
  z-index: 1000;
  width: 100%;
  background:  #615043;
  color: #fff;
  padding: 25px 100px;
}
#burger {
  cursor: pointer;
  font-family: 'Gotham-Medium';
  font-size: 20px;
  letter-spacing: 2px;
}
.logo {
  position: absolute;
  top: 0;
  z-index: 999;
  right: 100px;
}
ul {
  list-style: none;
  margin-top: 20px;
}
#accordion a {
  color: #fff;
  background: none;
  display: block;
  margin-bottom: 10px;
}

/* Home Contact */
#contact {
  padding: 50px 0;
}
#contact h1 {
  margin-bottom: 40px;
}
#contact p {
  text-transform: uppercase;
}
#contact input,
#contact select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #615043;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 15px;
  color: #615043 ;
}
#contact input::placeholder {
  color: #615043 ;

}
.submit-btn {
  margin-top: 30px;
  border: none;
  background: #615043;
  color: #fff;
  width: 80%;
  text-align: center;
  padding: 10px; 
  transition: .2s ease all
}
.submit-btn:hover {
  background: rgb(31, 28, 25)
}

/* Footer */
.footer {
  background: #fff;
  padding: 50px 0;
}
.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-content div {
  text-align: right;
}
.footer-content .footer-logo {
  border-left: 1px solid #615043;
  padding-left: 20px;
  margin-left: 20px;
  border-right: 1px solid #615043;
  padding-right: 20px;
  margin-right: 20px;
}
.footer-contact {
  text-align: left !important;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 767px) {
  .logo {
    text-align: right;
    right: 25px;
  }
  .logo img {
    max-width: 50%;
  }
  #navbar-mobile {
    padding: 25px;
  }
  .contact-form .form-group input {
    max-width: 100%;
  }
  

  h1 {
    font-size: 1.3rem;
  }
  body, .footer p {
    font-size: 12px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
  }
  .footer-content .footer-logo {
    border: none !important; 
    margin: 20px 0;
    padding: 0;
  }
  .footer-contact {
    text-align: center !important;
  }
}