.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}


    

    
    /* -- Home - Estimate Box */
    
    .estimate-box {
        background:linear-gradient(60deg, #7d0f02, #811003);
        margin:auto;
        padding:25px;
        color:#ffffff;
        max-width:500px;
        text-align:center;
        position:relative;
        z-index:2;
        top:0px;
        -webkit-box-shadow: 2px 2px 15px 5px rgba(0,0,0,0.15); 
        box-shadow: 8px 7px 20px 3px rgba(0, 0, 0, 0.18);
        }
        
        
        .estimate-box .h3-heading {
        font-weight:700;
        text-transform:uppercase;
        }
        
    
    .estimate-heading {
        color: var(--accent-color);
        margin: 10px 0;
        font-weight: bold;
    }
    
    .estimate-box .form_field_wrapper {
        padding: 3px;
        margin-bottom: 8px;
    }
    .estimate-box .form_field_wrapper:hover {
        background: none;
    }
    
    .estimate-box .form_field_content {
        width: 100% !important;
    
    }
    .estimate-box .form_field_text,
    .form_field_select,
    .estimate-box .form_field_textarea {
        width: 100%;
        background: #ffffff;
    }
    .estimate-box .required_field_element {
        display: none;
    }
    .estimate-box .required_field {
        width: 100% !important;
    }
    
    
    .estimate-box .thank_you_content {
        background: var(--accent-color);
        color: #fff;
        padding: 15px;
        font-weight: 600;
    }
    
    .estimate-box .form_field_title {
    display:none;
    }
    
    
    .estimate-box .btn.btn-primary {
    border:3px solid #ffffff;
    color:#ffffff;
    background:transparent;
    text-transform:uppercase;
    font-weight:700;
    width:40%;
    padding:12px 0;
    }
    
    .estimate-box .btn.btn-primary:hover {
    background-color:var(--accent-color);
    border-color:var(--accent-color);
    color:#ffffff;
    }


/******Process Section ******/
    
    .process-section {
        text-align: center;
        padding-block: 30px;
            background-image: linear-gradient(180deg,rgba(255,255,255,.5) 0%,rgba(255,255,255,.5) 100%) , url(/imageserver/UserMedia/jfroofing/homepage-bg001.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            border: solid var(--cta-color);
            border-width: 0px 0px 3px;
    }
    
    .process-section h2 {
        color: #000;
        font-weight: 600;
    text-align: center;
    margin-inline: auto;
    }
    
    .process-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-block: 20px;
        position: relative;
        margin-inline: auto;
    }
    
    .process-item {
      padding: 15px;
      position: relative;
      z-index: 1;
      width: 100%;
      text-align: center;
      transition: all 0.35s ease-in-out;
    background: transparent;
    border-radius: 10px;
    }
    
    
    .process-item .process-icon span {
        background: #fff;
        border-radius: 50%;
        border: 7px solid #000;
        color: var(--accent-color);
        font-size: 75px;
        font-weight: 600;
        position: relative;
        text-align: center;
        transition: all 0.35s ease-in-out;
        margin: auto;
        padding: 8px;
    }
    
    
    .process-item .process-text h3 {
        margin: 5px auto;
        transition: all 0.35s ease-in-out;
        color: #ffffff;
    background: var(--accent-color);
    padding: 4px 7px;
    border-radius: `1px;
    border: 3px solid #aaaaaa;
    width: fit-content;
    margin-inline: auto;
    }
    
    .process-item .process-text span {
        font-size: 55px;
        font-weight: 600;
        color: #ffffff;
        transition: transform all 0.25s ease-in-out;
    line-height: inherit;
    }


    @media (max-width: 634px) {

.process-row {
            grid-template-columns: repeat(1, 1fr);
            }
}