* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/*
  .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
  }
    */

.btn {
  background-color: #d4c3a0;
  color: #2b2b2b;
  padding: 8px 45px;
  border: 1px solid #d4c3a0;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
}

.btn:hover {
  background-color: #d4c3a0;
  color: #2b2b2b;
  border: 1px solid #d4c3a0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #f6f2ed;
}

a {
  color: #d4c3a0;
  text-decoration: none;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

p {
  font-weight: 200;
}

/* navigation */

.navbar {
  /*padding: 0 140px;*/
  background-color: #2b2b2b;
}

.nav-link,
.nav-link:hover {
  color: #d4c3a0;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #d4c3a0;
}

/* header */
header {
  position: relative;
}

.overlay {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.header-img {
  height: 100vh;
  overflow: hidden;
  background-image: url(../img/hero-image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*
.header-img img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  object-fit: cover;
}
*/
.intro {
  position: absolute;
  z-index: 999;
  bottom: 50px;
  display: block;
  width: 60%;
  color: #fdf8f2;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

h5,
.nav-link {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.intro h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 150px;
}

h1 i {
  font-style: italic;
}

/* main */
section {
  padding: 100px 0;
}

section#about-us {
  text-align: center;
  margin: 0 auto;
  width: 60%;
}

section h5 {
  color: #66aa19;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}

section p {
  margin: 30px 0 60px 0;
}
.value-row {
  width: 80%;
  margin: 0 auto 100px auto;
}
.inner-content {
  height: 400px;
  padding: 0 10px;
  border: 1px solid #d4c3a0;
  border-radius: 10px;
  position: relative;
}

.inner-content img {
  position: absolute;
  left: 50%;
  top: -5%;
}

.inner-content h3 {
  margin-top: 30px;
}

.inner-content ul li {
  font-weight: 200;
}
div.image img {
  width: 100%;
  margin-bottom: 10px;
}

section.with-background {
  background-color: #d4c3a0;
}

.accordion-button {
  background-color: #d4c3a0;
  color: #2b2b2b;
}

.accordion-button:not(.collapsed) {
  background-color: #d4c3a0;
  color: #2b2b2b;
}

.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus.svg);
  background-repeat: no-repeat;
}

.accordion-body {
  background-color: #d4c3a0;
  color: #2b2b2b;
}
.accordion-button {
  font-size: 24px;
  font-weight: 700;
}

.accordion-body ul li {
  font-weight: 200;
}
.accordion-body p {
  margin-bottom: 0;
}
section#clients {
  background-color: #fff;
  text-align: center;
}

section#clients .col-sm-3 img {
  height: 50px;
  width: auto;
}

section#contact .contact-info a,
section#contact .contact-info span {
  display: block;
  margin-bottom: 20px;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
}

section#contact .contact-info i {
  padding: 10px;
  background-color: #2b2b2b;
  color: #66aa19;
  border-radius: 10px;
  margin-right: 10px;
}

section.footer {
  background-color: #2b2b2b;
  color: #d4c3a0;
  padding: 20px 0;
}

section.footer img {
  width: 200px;
}

section.footer p {
  margin: 0;
}

/* mobile */
@media screen and (max-width: 768px) {
  .navbar-toggler,
  .navbar-toggler:focus {
    border: none;
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url(../img/menu-icon.svg);
    width: 24px;
  }

  .navbar-collapse {
    margin-top: 30px;
  }

  .mobile-divider {
    display: block;
    width: 80%;
    height: 1px;
    color: #b9a17d;
    margin-top: 25px;
  }

  .lang-list li {
    display: inline;
  }
  .header-img {
    height: 60vh;
    overflow: hidden;
  }
  .intro {
    width: 90%;
  }
  .intro h1 {
    font-size: 24px;
    margin-bottom: 50px;
  }
  section#about-us {
    width: 90%;
  }

  h1 {
    font-size: 26px;
  }
  .accordion-button {
    font-size: 18px;
  }

  section#clients .col-sm-3 img {
    width: 150px;
    height: auto;
    margin-top: 30px;
  }

  section.footer .col-sm-4 {
    margin-bottom: 10px;
  }
  section.footer p {
    text-align: center;
    font-size: 12px;
  }
  .footer .row .justify-content-end {
    justify-content: center !important;
  }
}

@media screen and (min-width: 1800px) {
  .container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .intro {
    width: 50%;
  }

  .intro h1 {
    font-size: 50px;
  }
}
