.maincontent {
padding:0;
position:relative;
max-width:100%;
border:0;
}.estimate-box {
background-color:#0b0e0a;

border-radius:8px;
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: 2px 2px 15px 5px rgba(0,0,0,0.15);
border-top:10px solid var(--accent-color);
}


.estimate-box h3 {
font-weight:700;
text-transform:uppercase;
}



input[type="radio"], input[type="checkbox"]{
display: none;
}

.btn{
    display:none;
}

label {
    display: block;    
    padding: 8px 22px;
    margin: 0 0 1px 0;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    border-bottom:1px solid black;
    color:var(--accent-color);
    transition: ease .5s;
    font-size:18px;
font-weight:600;
    position: relative; /* ADDING THIS IS REQUIRED */
}

label:hover {
    background: #f2f2f2;
}

label::after {
    content: '+';
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 2px;
}

input:checked + label::after {
    content: '-';
    right: 14px;
    top: 3px;
}

.content {
    background: white;
    padding: 10px 25px;
    margin: 0 0 1px 0;
    border-radius: 3px;
}

input + label + .content {
    display: none;
}

input:checked + label + .content {
    display: block;
}

@media only screen and (max-width: 768px) {
  .warranty-img {
    display: none;
  }
  .btn{
     display:block;
 
  }
}

.content ul {
list-style:inside;
}


/* -- Hero -- */

.hero-global {
    position: relative;
    padding: 80px 15px;
    background-color: #eee;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, .32) 15%, rgba(255, 255, 255, .82) 15%, rgba(255, 255, 255, .82) 85%, rgba(255, 255, 255, .32) 85%), url(/imageserver/UserMedia/kguard/faq-banner.jpg);
    background-size: cover;
    background-position: center 40%;
    text-align: center;
}
.hero-panel {
    position: relative;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    max-width: 1450px;
}
.hero-panel p:last-child {
    margin-bottom: 25px;
}

@keyframes fadeIn {
    0% {
        top: 25px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}