.main-header-img{
    margin-top: 110px;
    background-image: url("../img/distribuidorc_recortada.png");
    background-size: contain;
    padding-bottom: 500px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 10px;
    width: 95%;
}

#main-header-img-a{
    height: 10px;
}

#goDown{
    font-size: 8rem;
    width: 100%;
    display: flex;
    color: var(--light_blue);
    justify-content: center;
    position: relative;
}

#goDown i{
    position: relative;
    animation: upAndDown .7s infinite  alternate;
}

.div-whower{
    margin-top: 100px;
    width: 90%;
    padding: 10px 100px 5rem 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div-whower h2{
    text-align: center;
    margin: 0;
    padding-top: 20px;
    color: var(--main_blue);
}

.div-whower p{
    margin-top: 40px;
    text-align: justify;
}

.div-remote{
    background-image: url("../img/op1_des.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    margin-top: 150px;
    text-align: center;
}


.div-remote h1{
    width: -moz-max-content;
    width: fit-content;
    text-align: center;
    padding-right: 20px;
    color: var(--main_blue);
    animation: borderBlink 1s infinite;
}

.div-remote h4{
    padding-top: 50px;
    color: #333;
}

.div-remote p{
    text-align: center;
    color: #333;
    background-color: rgba(255,255,255,0.4);
    padding: 0 40px;
}
.btn-more-info{
    border: none;
    transition: color 0.7s;
    font-size: var(--fz-general);
}

.btn-more-info a{color: white;}
.btn-more-info:hover{color: rgba(28,117,187,1);}

/*TeamViewer image*/
.tv-img{
    width: 200px;
    height: 200px;
    border-radius: 150px;
}

.div-remote .btn-blue{
    background-color: rgba(255,255,255,0.5);
}

.div-remote h6{
    padding-top: 2rem;
}

.div-whower>#goDown{
    display: none;
    margin-top: 2rem;
}

@keyframes upAndDown{
    0%{
      transform: translateY(0);
    }
    100%{
      transform: translateY(-10px);
    }
}

@keyframes borderBlink{
    0%{
      border: none;
    }
  
    100%{
      border-right: 0.8px solid rgb(41, 189, 239);
    }
  }

@media (max-width: 1200px){
    .main-header-img{
        display: none;
    }

    .div-whower{
        margin-top: 90px;
    }

    .div-remote p,h2{
        padding: 0px 30px;
    }
    .div-whower>#goDown{
        display: flex;
    }
    #goDown:not(.div-whower>#goDown){
        display: none;
    }
}

@media(max-width: 700px){
    .div-whower h2{
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 600px){
    
    .div-whower h2, .div-whower p{
        width: 85vw;
    }

    .div-whower p{
        text-align: justify;
        padding: 0px 20px 0 20px;
    }
    
    .tv-img{
        width: 150px;
        height: 150px;
    }

    .div-remote h1{
        width: 100%;
        padding: 0;
    }

    .div-remote{
        margin-top: 40px;
    }

    .div-whower>#goDown{
       font-size: 3.5rem;
    }   
}