:root {
  --screenvalue: calc((100vw * 100) / 192000);
}
@media screen and (max-width: 935px) {
  :root {
    --screenvalue: calc((100vw * 100) / 83400);
  }
}

body {
  margin: 0;
}


.background {
  height: 100vh !important;
  width: 100vw !important;
  --mt: calc(var(--screenvalue) * -120);
  background-size: cover !important;
  background-repeat:no-repeat !important;
  background-position: 0 var(--mt) !important;
  overflow: hidden !important;
}



a {
  text-decoration: none;
}

.logotipo {
  width: calc(var(--screenvalue) * 150);
  height: calc(var(--screenvalue) * 125);
  object-fit: cover;
  margin: 0 auto;
  padding-top: calc(var(--screenvalue) * 100);
  display: flex;
}
@media screen and (max-width: 620px) {
  .logotipo {
    width: calc(var(--screenvalue) * 150);
    height: calc(var(--screenvalue) * 125);
    object-fit: cover;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    padding-top: calc(var(--screenvalue) * 150);
    padding-bottom: calc(var(--screenvalue) * 40);
    display: flex;
  }
}

 h1 {
    position: absolute;
    color: rgb(172, 136, 80);
    font-size: calc(var(--screenvalue) * 35);
    text-align: center;
    left: 50%;
    right: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    top: calc(var(--screenvalue) * 20);
    letter-spacing: calc(var(--screenvalue) * 8);
  }

@media screen  and (max-width: 920px){
    .background {
  height: 100vh !important;
  width: 100vw !important;
  background-size: cover !important;
  background-size: 100% 100% !important;
  background-position: top !important;
  overflow: scroll !important;
}
 
}

@media screen and (max-width: 620px) {
  h1 {
    z-index: 1;
    position: absolute;
    color: rgb(172, 136, 80);
    font-size: calc(var(--screenvalue) * 35);
    text-align: center;
    left: 50%;
    right: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    top: calc(var(--screenvalue) * 40);
    letter-spacing: calc(var(--screenvalue) * 8);
  }
}

.paises {
  margin: 2rem auto;
  width: calc(var(--screenvalue) * 1680);
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2.5em;
  height: 70%;
  overflow-y:scroll;
  overflow-x: hidden;
}

@media screen and (max-width: 920px) {
   .paises {
        grid-template-columns: repeat(3, 1fr);
        width: calc(var(--screenvalue) * 700);
        row-gap: 2em;

   }
}

@media screen and (max-width: 620px) {
  .paises {
    width: 85%;
    margin-left: calc(var(--screenvalue) * 60);
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    height: 68vh;
    margin-top: 1rem;
    
  }
}
.paises img {
  width: 75%;    
}
@media screen and (max-width: 920px) {
    .paises img {
      margin-top:0;
        width: 70%;    

    }
}

@media screen and (max-width: 620px) {
  .paises img {
    position: relative;
    width: 90%;    
    
  }
}

.relative{
    position: relative;
}


.relative p{
    position: absolute;
    bottom: 0;
    color: white;
    font-weight: 700;
    font-size: calc(var(--screenvalue) * 26);
    top: 0;
    margin: auto;
    display: block;
    height: 16px;
    text-align: center;
    width: 100%;
    z-index:999;
}

.flex-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: auto;
    padding-top: calc(var(--screenvalue) * 110);
}

.flex-container > :nth-child(1) {
    width: 10%;
}
@media screen and (max-width: 920px) {
    .flex-container > :nth-child(1) {
        width: 17%;
    }
    .relative p{
        position: absolute;
        bottom: 0;
        color: white;
        font-weight: 700;
        font-size: calc(var(--screenvalue) * 22);
        top: 0;
        margin: auto;
        display: block;
        height: 16px;
        text-align: center;
        width: 100%;
    }
}






