@font-face {
  font-family: "Albra Bold";
  src: url("../fonts/BumbumType-Albra-Bold.otf") format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway_regular.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Raleway Menu";
  src: url("../fonts/Raleway_500.woff2") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Raleway Bold";
  src: url("../fonts/Raleway_700.woff2") format("woff");
  font-weight: 700;
}
strong{font-family: "Raleway Bold";}
body,
html {
  margin: 0;
  box-sizing: border-box;
  width: 100vw;
  background-color: #f4ebe5;
  max-width: 100vw;
  overflow-x: hidden;
}

nav {
  height: 85px;
  max-width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav > img {
  width: auto;
  height: 50px;
}

nav > ul {
  display: flex;
  list-style: none;
  font-family: "Raleway Menu", sans-serif;
  font-size: 16px;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

li a:hover {
  color: #d34f23;
}

li svg {
  color: #d34f23;
}

.container-lang {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.left-content {
  flex: 1;
}

.right-content {
  flex: 1;
  box-sizing: border-box;
}

.left-content {
  margin: 20px 0;
}

.right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1 {
  font-family: "Albra Bold", sans-serif;
  color: #303031;
}

p {
  margin: 7px 0;
  font-family: "Raleway", sans-serif;
  color: #303031;
  line-height: 1.8em;
}

a {
  font-weight: bold;
  color: #303031;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.button {
  display: inline-block;
  background-color: #d34f23;
  color: white;
  padding: 25px 40px;
  text-decoration: none;
  line-height: 25px;
  font-size: 18px;
  margin-top: 15px;
  font-family: "Raleway", sans-serif !important;
  width: 90%;
  text-align: center;
}

a.button h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Raleway Bold";
}

a.button:hover {
  background-color: #303031;
}

footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-end;
  padding: 20px;
  width: 100%;
  font-family: "Raleway", sans-serif;
}

@media (max-width: 1080px) {
  a.button{width: 76%;}
  .container-lang {
    flex-direction: column;
    padding: 0 !important;
    width: 80%;;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background-color: black;
  margin: 6px 0;
  transition: 0.4s;
}

@media screen and (max-width: 1080px) {
  footer{display: block;
  width: 80%;margin: auto;text-align: center;}

  .hamburger {
    display: block;
  }

  nav {
    z-index: 100;
  }

  nav ul {
    position: absolute;
    right: 0;
    top: 85px;
    flex-direction: column;
    width: 100%;
    background-color: white;
    visibility: hidden;
    margin-top: 0;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
    position: relative;
  }

  nav ul li::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 80%;
    height: 1px;
    background-color: #d34f23;
  }

  nav ul li:last-child::after {
    display: none;
  }

  .nav-active {
    visibility: visible;
  }

  .toggle div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 7px);
  }

  .toggle div:nth-child(2) {
    opacity: 0;
  }

  .toggle div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -7px);
  }

  .right-content {
    padding: 0 20px;
  }
}
