* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

body {
  background-color: rgb(255, 255, 255);
}

.container-phone {
  display: none;
}

.container-tablet {
  display: none;
}

.container-portable {
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.container-portable .img-portable {
  width: 100%;
}

.container-portable .container-options-portable {
  position: absolute;
  bottom: 10%;
  right: 8%;
  display: flex;
  align-items: center;
}

.container-portable .container-options-portable span {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.container-portable .container-options-portable img {
  margin-right: 0.2rem;
  transition: 0.5s;
  cursor: pointer;
}

.container-portable .container-options-portable img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1366px) {
  .container-portable .container-options-portable {
    position: absolute;
    bottom: 9%;
    right: 3%;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1280px) {
  .container-portable .container-options-portable {
    position: absolute;
    bottom: 25%;
    right: 3%;
    display: flex;
    align-items: center;
  }

  .container-portable .container-options-portable span {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .container-portable {
    display: none;
  }

  .container-tablet {
    display: block;
    max-width: 100%;
    height: auto;
    overflow: hidden;
  }

  .container-tablet .img-tablet {
    width: 100%;
  }

  .container-tablet .container-options-tablet {
    position: relative;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container-tablet .container-options-tablet span {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-right: 0.5rem;
  }

  .container-tablet .container-options-tablet a img {
    margin-right: 0.2rem;
    transition: 0.5s;
  }

  .container-tablet .container-options-tablet a img:hover {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 425px) {
  .container-tablet {
    display: none;
  }

  .container-phone,
  .img-phone,
  .container-phone .container-options-phone {
    display: block;
  }

  .container-phone .img-phone {
    width: 100%;
  }

  .container-phone .container-options-phone {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container-phone .container-options-phone span {
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .container-phone .container-options-phone span img {
    transition: 0.5s;
  }

  .container-phone .container-options-phone span img:hover {
    transform: scale(1.1);
  }
}
