:root {
  --clrPrimary: rgb(187,81,21);
  --clrBgColor: rgb(255, 255, 255);
  --clrBgColorDark: rgb(35, 31, 32);
  --clrText: rgb(0, 0, 0);
  --clrBorder: rgb(220, 220, 220);
  --clrBgFooter: rgb(0, 0, 0);
}

html {
  scroll-behaviour: smooth;
}

body {
  font-size: 17px;
  font-family: "Work Sans";
  line-height: 27px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab";
  line-height: 37px;
}

.container {
  display: block;
  max-width: min(1160px, 100% - 40px);
  margin: 0 auto;
}

.langbar {
  border-bottom: 1px solid #ccc;
}

.langbar ul {
  display: flex;
  list-style: none;
}

.langbar li + li {
  margin-left: 10px;
}

a {
  color: var(--clrPrimary);
  text-decoration: none;
}

a:hover, a:active {
  text-decoration: underline;
}

a.btn {
  background-color: var(--clrPrimary);
  color: var(--clrBgColor);
  display: inline-block;
  font-size: 0.95em;
  padding: 1em 1.3em;
  border-radius: 2em;
  margin-top: 1.5rem;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 0.8rem 0;
}

a.btn.dark {
  background-color: var(--clrBgColorDark);
}

.nav-container {
  padding-top: 1em;
}

@media screen and (min-width: 800px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
  }
}
.logo {
  display: inline-block;
}

.logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 800px) {
  .logo-wrap {
    display: inline-block;
  }
}
nav {
  display: block;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s, height 0.5s;
}

nav.show {
  height: auto;
  opacity: 1;
}

nav a {
  color: var(--clrText);
  font-weight: bold;
}

nav ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}

nav li {
  padding-block: 0.5em;
  border-bottom: 1px solid var(--clrBorder);
}

@media screen and (min-width: 800px) {
  nav li {
    border-bottom: 0;
  }
}
@media screen and (min-width: 800px) {
  nav {
    opacity: 1;
    height: auto;
    overflow: visible;
    display: inline-block;
  }

  nav ul {
    display: flex;
    flex-direction: row;
  }

  nav ul li + li {
    margin-left: 30px;
  }
}
.nav-toggle {
  display: inline-block;
}

@media screen and (min-width: 800px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle.open span:nth-child(2) {
  width: 0;
}

.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-toggle button {
  border: none;
  padding: 0.6em;
  display: flex;
  flex-direction: column;
  background-color: var(--clrPrimary);
}

.nav-toggle span {
  width: 1.5em;
  height: 3px;
  display: block;
  background-color: var(--clrBgColor);
}

.nav-toggle span + span {
  margin-top: 4px;
}

.hero {
  min-height: 20rem;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("../imgs/AdobeStock_136849405.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding-block: 10rem;
}

.hero h1 {
  color: var(--clrBgColor);
  font-size: 1.9em;
  font-weight: 300;
}

.hero p {
  color: var(--clrBgColor);
  font-weight: 500;
}

.strip {
  background-color: var(--clrBgColorDark);
  padding-block: 2em;
  color: var(--clrBgColor);
  padding-block: 6rem;
}

.strip p {
  width: 80%;
  margin: auto;
}

.focal-points {
  padding-block: 3rem;
}

.focal-points h2 {
  font-weight: 300;
}

.focal-points ul {
  padding-left: 1rem;
}

.focal-points img {
  width: auto;
  height: auto;
  max-width: 670px;
  max-height: 375px;
}

@media screen and (min-width: 801px) and (max-width: 1000px) {
  .focal-points img {
    width: 100%;
    height: auto;
  }
}
.focal-points .container {
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 800px) {
  .focal-points .container {
    flex-direction: column;
  }
}
.documents {
  background-color: var(--clrPrimary);
  padding-block: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.documents h2 {
  font-weight: 300;
  color: var(--clrBgColor);
}

.contact {
  background-color: var(--clrBgColorDark);
  padding-block: 3rem;
  color: var(--clrBgColor);
}

.contact-split {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .contact-split {
    display: block;
  }
}
.contact svg {
  max-width: 32px;
  fill: var(--clrPrimary);
}

.contact h2 {
  font-weight: 300;
}

.contact svg + p {
  font-weight: 600;
  margin-bottom: 0;
}

.contact p + p {
  margin-top: 0.3em;
}

footer {
  background-color: var(--clrBgFooter);
  color: var(--clrBgColor);
  padding: 2rem;
  margin: 0;
}

footer p {
  margin: 0;
}