/* иконки  */

.footer-icons{
    position: relative;
   
}
.fab{
    
    color: white;
    background: #F53838;
    border-radius: 50%;
}
.fa-facebook{
    position: absolute;
    top: -130px;
    left: 5px;
}
.fa-twitter-square{
    position: absolute;
    top: -130px;
    left: 35px;
}
.fa-instagram{
    position: absolute;
    top: -130px;
    left: 65px;
}

/* модальное окно */
.modal-overlay{
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, .2);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.modal{
    max-width: 510px;
    background: white;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.close{
    font-size: 20px;
    cursor: pointer;
    position: absolute; 
    top: 10px;
    right: 20px;
    
    

}

.modal-text{
    font-weight: bold;
    font-size: 24px;
    line-height: 150%;
    color: #172342;
    padding-bottom: 10px;

}
.modal-text-little{
    font-weight: 500;
    font-size: 17px;
    line-height: 152%;
    color: #172342;
    padding-bottom: 50px;

}
.modal-content{
    max-width: 509px;
    margin: 0 auto;
    border-radius: 8px;
}
.input-holder{
    margin-bottom: 30px;
    position: relative;
}
.input, .input-holder{
    width: 100%;
}

.input {
    padding-top: 28px;
    padding-left: 25px;

    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 500;
    font-size: 17px;
    color: #080F2F;
       
}

.input::placeholder{
    color: black;
}
.label{
    position: absolute;
    top: 5px;
    left: 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 152%;
    color: #4E5679;
}

.modal-button{
    max-width: 420px;
    background: #FECF56;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    line-height: 152%;
    text-align: center;
    color: #172342;
    width: 100%;
    padding: 18pp;
}
.container-pic-modal{
    position: relative;
}
.pic-modal{
    position: absolute;
    top:-25px;
    left:70px;

}

/* стрелка вверх */
#up{
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: #F53838;
    padding: 20px;
    border-radius: 50%;
}
#up>i{
    color: white;
    position: absolute;
    right: 12px;
    bottom: 12px;
}

