@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: "Roboto Serif", serif; 
    box-sizing: border-box;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.contact-section{
    width: 100%;
    margin: 0 auto;
    padding: 30px ;
    box-sizing: border-box;
}
.contact-section .heading h2{
    font-size: 30px;
    font-weight: 500;
}
.contact-section .sub-heading h4{
    font-size: 16px;
    font-weight: 400;
}

.contact-section .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.contact-section .form-group{
    margin-top: 30px;
}
.contact-section .form-group label{
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
}
.contact-section .form-group input{
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;

    
}
.contact-section .form-group input:focus{
  outline: none;
}
.contact-section span{
    color: red;
    font-size: 14px;
}
.contact-section .form-group select{
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
}
.contact-section .form-group select:focus{
    outline: none;
}
.contact-section .form-group input[type="submit"]{
    width: 120px;
    margin-top: 35px;
    text-align: center;
    font-size: 16px;
    background: #FF0000;
    border-radius: 5px;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    box-sizing: border-box;
}
.Angebot{
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
}
.Angebot .heading{
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}
.Angebot .heading h2{
  font-size: 30px;
  font-weight: 500;
}
.Angebot .form-group textarea{
    width: 100%;
    height: 160px;
    margin-top: 10px;
    margin-bottom: 30px;
    padding: 12px;
    box-sizing: border-box;
}
.Angebot .form-group textarea:focus{
    outline: none;
}
.Angebot .form-group input[type=file]{
    border: 1px solid #646464;
    margin-bottom: 8px;
}
.Angebot .form-group strong{
    font-weight: 300;
    font-size: 14px;
    color: #000;
}



@media screen and (max-width: 767px) {
    .container{
        max-width: 100%;
    }
    .contact-section{
        padding: 20px 15px;
        box-sizing: border-box;
    }
    .contact-section .row{
        display: block;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }
    .contact-section .form-group {
        margin-top: 15px;
    }
    .contact-section .form-group .item{
        margin-top: 15px;
    }
    .contact-section .form-group label{
        margin-bottom: 5px;
    }
    .contact-section .form-group input{
        
    }
   
    
    
    
}