@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #ECECEC;
}
.container{
    width: 960px;
margin: 30px auto;

}
.header{
    height: 116px;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    background-color: black;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.header img{
width: 300px;
height: 86px;
margin-top: 10px;

}
.content{
    padding: 20px;
    background-color: white;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.heading{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 36px;
}
.heading h1{
    width: 60%;
  font-size: 48px;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
font-weight: 600;
line-height: 1em;
}
.text{
padding: 0px 50px;

}
.text p{
    font-size: 21px;
    font-family:'Source Sans Pro', sans-serif;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.2em;
}
.text strong{
    font-style: italic;
}
.headline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px ;
    margin: 0px 10px ;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    margin-bottom: 10px;
}
.headline h2{
    font-size: 37px;
    font-family: 'Source Sans Pro', sans-serif;
    color: rgb(172 16 22);
    font-weight: 700;
    margin: 5px 0px ;
}

.img_sec{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 45px 36px;
}
.list{
    display: flex;
  flex-direction: column;
  padding: 0px 15px;
}
.list i{
    margin-top: 3px;
    width: 15.75px;
    height: 28px;
    font-weight: bold;
    color: black;
    margin-right: 10px;
}
.list span{
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #4A4A4A;
    margin: 10px 10px 8px 0px;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
}
.col_img{
    padding-right: 40px;
}
.col_img img{
    width: 278px;
    height:300px;
}
form{
    width: 658px;
    height: 405px;
    border: 3px solid #4A4A4A;
    background-color: #F2F2F2;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0px auto;
    margin-bottom: 50px;
    padding: 0px 27px 42px ;
}
.form_heading{
    padding: 0px 15px ;
}
.form_heading h3{
    font-size: 37px;
    font-family: 'Source Sans Pro', sans-serif;
    color: rgb(172 16 22);
    font-weight: 700;
    text-align: center;
    margin: 10px 0px ;

}
.af-form{

    padding: 0px 15px ;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.af-textWrap input{
    background-color: white;
    width: 100%;
    padding: 15px 18px ;
    outline: navajowhite;
    margin-bottom: 10px;
    border: 1px solid silver;
    border-radius: 5px;
}
.af-textWrap input::placeholder{
    font-size: 16px;
    font-family:'Source Sans Pro', sans-serif;
}
.af-textWrap input:focus{
    border-color: #42B0E2;
}
.buttonContainer button{
        width: 528px ;
        height: 117px;
        background-color: #E5C822;
        margin-top: 10px;
        padding: 13px 35px;
        width: 100%;
        border: none;
        border-radius: 5px;
        box-shadow: 0 1px 5px rgb(0 0 0 / 40%);
        cursor: pointer;
}
.buttonContainer button:hover{
    background-color: #c7ad17;
}
.buttonContainer button i{
    margin-right: 15px;
}
.buttonContainer button span{
    font-size: 27px;
    font-family:'Source Sans Pro', sans-serif;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 0px rgb(0 0 0 / 20%);
}
.buttonContainer button p{
    font-size: 18px;
    font-family:'Source Sans Pro', sans-serif;
    text-shadow: 1px 1px 0px rgb(0 0 0 / 20%);
    color: white;
}
.footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 15px;
    padding-bottom: 40px;
}
.policies {
    padding: 0px 15px;
}
.policies span a{
    text-decoration: none;
    font-size: 14px;
    font-family:'Source Sans Pro', sans-serif;
    color: rgb(35, 87, 146);
    padding-right: 30px;
}
.copyright span{
    font-size: 11px;
    font-family:'Source Sans Pro', sans-serif;
    color: #4A4A4A;
    
}


@media only screen and (max-width: 575px){
 .container{
    width: 100%;
 }
 .content{
    padding: 0px;
    padding-bottom: 20px;
 }
 .heading h1{
    width: 100%;
    line-height: 1em;
    font-size: 32px;
    padding: 20px 15px 0px 15px;
 }
 .headline h2 {
    text-align: center;
 }
 .text {
    padding: 0px 15px;
}
.text p{
    line-height: normal;
}
    .img_sec{
        flex-direction: column;
        padding: 0px;
    }
    .col_img {
        padding-right: 0px;
        width: 100%;   
        display: flex;
        justify-content: center;
    }

    form{
        width: 100%;
        height: 100%;
        padding:0px 0px 42px 0px ;
    }
    .buttonContainer button span{
        font-size: 21px;
    }
    .buttonContainer button{
        height: 100%;
    }

    .footer{
        flex-direction: column;
        padding-bottom: 30px;
    }
    .policies{
        width: 100%;
         display: flex;
         justify-content: space-around;
        padding: 0px;
        margin-bottom: 20px;
    }
    .policies span a{
        padding-right: 0px;
    }
    .copyright {
        width: 100%;
        text-align: right;
        padding: 0px 10px;
    }


}