/*
Código POP UP
*/
#fondo {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background-color: rgba(0,0,0,0.4);
    z-index: 1111111;
 
}
#pop-up {
    background-color: rgba(246,222,114);
    width: 100%;
    height: 100%;
    padding: 30px;
   justify-content : center;
   display: flex;
    align-items: center;
}

#cerrar-pop-up {
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 25px;
    font-weight: 600;
} 


.pop-up-info{
  width: 1100px;
  margin: 0 auto;
  font-family: 'Brother-1816-Bold';
}

.pop-up-info .welcome{
   width: 100%;
   /* height: 170px; */
   color: #F28530;
   overflow: hidden;
   padding-top: 10px;
}

.pop-up-info .link-wrapper{
	width: 59%;
	overflow: auto;
    margin-top: 40px;
}
.link-wrapper .title{
    width: 25%;
    float: left;
    margin-top: 40px;
    margin-right: 70px;
	margin-bottom: 15px;
    background: #F28530;
    color: #FFF;
    display: inline-block;
    padding: 0px 3px 3px 6px;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    display: inline-flex;
}

.text{
	font-family: 'Brother-1816-Regular';
	color: #10069F;
	font-size: 17px;
	line-height: 1.5;
}

#cerrar-pop-up {
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 25px;
    font-weight: 600;
}

.link{
padding-top: 60px;
font-weight: bold;
}
.link a{
color: #10069F;
}

@media (max-width: 800px){
    #pop-up {
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        bottom: 0;
        overflow-y: scroll;
    }
}

/*
Finaliza Código POP UP
*/
