a{
  text-decoration: none;
}

.languages--container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 12dvh;
  font-size: 10px;
  width: 80%;
  margin-top: 7%;

  @media (max-height: 600px) and (orientation: landscape) {
    font-size: 15px;
    height: 30dvh;
    width: 50%;
  }

  @media (min-width: 768px) and (min-height: 600px) {
    font-size: 14px;
    height: 12dvh;
    width: 50%;
  }

  @media (min-width: 1000px){
    font-size: 15px;
    height: 15dvh;
    width: 40%;
  }

  @media (min-width: 1200px){
    font-size: 18px;
    height: 25dvh;
    width: 40%;
  }
}

.languages-selector--container {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-flow: nowrap;
  padding: 2% 0% 0% 0%;
  gap: 5%;
  align-items: center;
  width: 100%;
  flex: 3;
  -ms-overflow-style: none; 
  scrollbar-width: none;

  @media (max-height: 600px) and (orientation: landscape) {
    padding: 1% 0% 0% 0%;
  }

  @media (min-width: 768px) and (min-height: 600px) {
    padding: 2% 0% 0% 0%;
  }

  @media (min-width: 1000px){
    padding: 2% 0% 0% 0%;
  }
}

.languages-selector--container::-webkit-scrollbar {
  display: none;
}

.language--container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.language-icon {
  width: 100%;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.493) 5px 5px 20px;
  transition: transform 0.5s;  
  
  @media (max-height: 600px) and (orientation: landscape) {
    width: 80%;
  }

  @media (min-width: 768px) and (min-height: 600px) {
    width: 90%;
  }

  @media (min-width: 1000px){
    width: 100%
  }
}

.language-icon:hover{
  cursor: pointer;
  transform: translateY(-7%) !important;
}

.language--title {
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  padding: 20% 1%;
  font-size: 1dvw;
  font-family: "Montserrat";
  font-weight: 600;
  color: #4b3d33;
  

  @media (max-height: 600px) and (orientation: landscape) {
    width: 100%;
  }

  @media (min-width: 768px) and (min-height: 600px) {
    width: 100%;
  }

  @media (min-width: 1000px){
    font-size: 1.1dvh;
    width: 100%;
  }

  @media (min-width: 1200px){
    width: 100%;
  }
}

.language--title:hover{
  cursor: pointer;
  text-decoration: underline;
}