/* DESKTOP-VERSION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  padding: 10px;
  background-image: linear-gradient(88.73deg,
      #1e1e1e 40%,
      rgba(51, 51, 51, 0) 93.07%),
    url('https://res.cloudinary.com/dja5ahopr/image/upload/c_scale,q_10,w_1272/v1701881614/backgrounds/oxow6a2fkra5vjthcq7z.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.wrapper-left {
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 270px;
  align-items: center;
  flex-direction: column;
}

.container-client-logo {
  width: 270px;
  height: 150px;
}

.container-client-logo img {
  width: 270px;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.container-country-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 10px;
  font-weight: 700;
  font-family: "Montserrat";
  font-size: 20px;
  padding-top: 10px;
}

.wrapper-right {
  width: auto;
  height: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container-map {
  height: 100%;
  margin-left: 150px;
}

.container-map img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container-lines {
  height: 40%;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 7%;
  gap: 70px;
}

.line-1 img {
  width: 100%;
  margin-left: -65px;
}

.line-2 img {
  width: 100%;
  margin-left: -70px;
}

.container-branches {
  height: 40%;
  width: 40%;
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  padding-top: 5px;
}

.select-branch {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}

.select-branch h1 {
  font-size: 20px;
  text-align: center;
}

.container-buttons {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0 90px 0;
}

.container-buttons a {
  text-decoration: none;
  width: 150px;
  height: 50px;
  border-radius: 16px;
  background-color: #ff9b00;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  font-family: "Montserrat";
  border: none;
}

.container-buttons a:hover {
  background-color: #ffb84d;
}

/* MOBILE VERSION */

@media only screen and (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: flex-start;
  }

  .wrapper-left {
    height: auto;
    margin-top: 30%;
  }

  .container-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container-client-logo img {
    width: 200px;
    height: auto;
  }

  .container-country-logo {
    padding-top: 0;
  }

  .container-country-logo img {
    width: 20px;
  }

  .container-country-logo span {
    font-size: 16px;
  }

  .wrapper-right {
    height: auto;
    display: flex;
    justify-content: center;
    width: 80%;
  }

  .container-branches {
    width: 100%;
    height: auto;
  }

  .select-branch {
    display: flex;
    gap: 20px;
  }

  .container-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
  }

  .container-buttons a {
    width: 100%;
    padding: 0;
    height: 45px;
  }

  .container-map {
    display: none;
  }

  .container-lines {
    display: none;
  }
}

@media only screen and (max-height: 830px) {
  .container-branches {
    display: flex;
    height: 50%;
  }

  .container-buttons {
    padding: 0;
    padding-top: 12%;
    display: flex;
    justify-content: start;
    gap: 27%;
    width: 60%;

  }

  .container-buttons a {
    width: 100%;
    height: 50px;
  }

  .line-1 img {
    width: 100%;
    margin-left: -55px;
  }

  .line-2 img {
    width: 100%;
    margin-left: -55px;
  }
}

@media only screen and (max-height: 500px) {
  body {
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .wrapper-left {
    height: 100%;
    margin-top: 0%;

  }

  .wrapper-right {
    height: auto;
    display: flex;
    justify-content: center;

  }

  .container-buttons {
    padding: 0;
    padding-top: 5%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    width: 100%;

  }

  .container-buttons a {
    width: 300px;
    height: 45px;
  }
}