/* CONTENT: */

.content-wraper {
    width: 100%;
    position: relative;
}


/* INFO */
.home-info{
    position: relative;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #000;
    padding: 50px;
}
.home-info .chevron-red{
    color: rgb(199, 13, 13);
    font-size: 20px;
}
.home-info .label-detail{
    font-size: 20px;
}

.home-info p{
    width: 100%;
    text-align: center;
}
.home-info .contact-text{
    font-size: 22px;
}
.contact-text .red{
    font-size: 24px;
    color: rgb(199, 13, 13);
}

.home-info .contact-detail{
    color: rgb(100, 100, 100);
}

.home-info form{
    max-width: 800px;
    margin: auto;
}
.home-info fieldset{
    color: rgb(100, 100, 100);
    border-style: solid;
}
.home-info form input, .home-info form textarea{
    width: 49%;
    border-style: solid;
    border-width: thin;
    border-color: rgb(197, 197, 197);
    height: 40px;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16;
    background-color: #f9f9f9;
}
.home-info form textarea{
    height: unset !important;
}
.home-info .float-right{
    float: right;
}

.home-info .full{
    width: 100%;
}
.home-info .button{
    color: white;
    background-image: linear-gradient(to right, red , #790909);
    margin: 0 auto;
    display: block;
    cursor: pointer;
    border-radius: 5px;
}

input:required:invalid,
textarea:required:invalid {
  border-color: red;
}

/* For mobile phones: */
@media only screen and (max-width:1130px) {


}

@media only screen and (max-width:870px) {
    .home-info{
        padding: 20px;
    }
    .home-info form input, .home-info form textarea{
        width: 100%;
    }
 
    
}

@media only screen and (max-width:420px) {


}