body{
    padding: 0;
    margin: 0;
}
.newsletter-heading {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 11px;
    font-family: Arial, Helvetica, sans-serif;
}

span.sub-heading {
    color: #6c7990;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.57;
    font-family: Arial, Helvetica, sans-serif;
}

.row::after {
    clear: both;
    content: "";
    display: block;
}
.container {
    display: block;
    position: relative;
    
}
.row.checkbox-list {
    margin: 16px 0 0 0;
}
label.select-newsletter {
    font-size: 14px;
    position: relative;
    bottom: 14px;
    left: 25px;
    font-family:Arial, Helvetica, sans-serif ;
}

.list-row {
    border: solid 1px #dfe1e6;
    width: 30%;
    height: 99px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    
}
.list-row:nth-child(n) {
    margin: 10px 30px 13px 0;
}
span.sub-text {
    color: #6c798f;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.13;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    top: 4px;
}

.news-heading {
    font-size: 16px;
    font-weight: 600;
    margin-left: 37px;
    font-family: Arial, Helvetica, sans-serif;
}

input.checkbox-list {
    position: relative;
    top: 14px;
    left: 11px;
}
input[type="checkbox"] {
    appearance: none;
    height: 16px;
    width: 16px;
    background-color: rgba(216, 216, 216, 0);
    border-radius: 3px;
    border: solid 1px #979797;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

input[type="checkbox"]::after{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 14px;
    color: white;
    display: none;
}
input[type="checkbox"]:checked{
    background-color: #3967d6;    
}
input[type="checkbox"]:checked::after{
    display: block;
}
input[type="checkbox"].checkbox {
    width: 14px;
    height: 14px;
}

.button1 {
    height: 40px;
    width: 188px;
    border: solid 1px #777777;
    border-radius: 10px;
    font-size: 14px;
    color: #777777;
    font-weight: 600;
    text-align: center;
    padding: 11px 0 11px 0;
    cursor: default;
    font-family: Arial, Helvetica, sans-serif;
}
.button2{
    height: 40px;
    width: 188px;
    border: solid 1px #777777;
    border-radius: 10px;
    font-size: 14px;
    color: #777777;
    font-weight: 600;
    text-align: center;
    padding: 11px 0 11px 0;
    cursor: default;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 20px;
}
.button1:hover,
.button2:hover{
    border-color: #3967d6;
    color: #3967d6;
}
.news-button {
    display: flex;
    align-items: center;
    margin-top: 35px;
    margin-left: 113px;
    padding-bottom: 20px;
}

@media (max-width: 767px ) {
    .newsletter-container {
        border: solid 1px #dfe1e6;
        border-radius: 10px;
        padding: 16px 11px 0 11px;
    }
    .newsletter-heading {        
        font-size: 15px;  
        line-height: 20px;
        margin-bottom: 5px;
    }
    
    span.sub-heading {    
        line-height: 18px;
    }   
    .list-row{
        width: 100%;
    }
    .news-heading {
        margin-left: 33px;
        font-size: 15px;
    }


    
}

