.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: center;
    align-items: center;
}
.popup-content {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    padding-top: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    text-align: center;
}

.popup-content>p{
    font-weight: 300;
}

.close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.3rem;
}

.contacto{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-target{
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    margin: 10px; 
}

.contact-text{
    font-weight: 300;
    margin-bottom: 0px;
}

.contact-title{
    font-size: 1.3rem;
    margin-bottom: 0px;
}

.contact-img{
    border-radius: 5px;
    margin-left: 1rem;
}

.contact-blue{
    color: #3279BC !important;
}

.label{
    font-size: 0.9rem;
    color: #1b1b1b;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 5px;
}

.invalid-feedback {
    display: none;
    color: red;
}

.btn {
    background: #3279BC;
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.form-container{
    max-width: 900px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5vw;
    border-radius: 7px;
    background-color: #f8f8f8;
    margin-bottom: 100px;
}

.form-check-label{
    color: #676767;
    font-weight: 300;
    margin-bottom: 20px;
}

.form-group{
    padding: 10px 0px;
}

.contact-note{
    font-size: 0.8rem;
    color: #676767;
    font-weight: 300;
}

input {
    width: 260px;
    text-align: center;
    border-radius: 7px;
    margin: 0 auto;
    color: #1b1b1b;
    border: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 255, 255, 0.6);
    padding: .75rem .75rem;
}

textarea{
    border-radius: 7px;
    margin: 0 auto;
    color: #1b1b1b;
    border: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 255, 255, 0.6);
    padding: .75rem .75rem;
}

@media (max-width: 850px){
    .form-group, #answer{
        width: 80vw;
        min-width: auto;
    }
}

@media (max-width: 767px){

    .container-card{
        height: auto;
    }

    .subtitle{
        padding: 0% 2%;
    }  
}

@media (max-width: 1800px){
    .contact-img{
        height: 500px;
        margin-left: calc( 1rem + 10px );
    }
}


@media (max-width: 1500px) {
    .contact-target{
        margin: 20px 0px;
    }

    .contact-img {
        display: none;
    }

    .contact-card{
        margin-left: 0px !important;
    }

    .contact-text, .contact-title{
        text-align: center;
        padding-bottom: 10px;
    }
}