body{
    font-family: 'Poppins',  'Montserrat', sans-serif;
  }

a.btn.btn-primary {    padding: 16px 28px;    border-radius: 0;    background: #093d87;    border: none;   box-shadow: 0 4px 5px -3px #333;    transition: 0.5s;    font-weight: bold;transition: ease-out 0.4s; max-width:300px;}
a.btn.btn-primary:hover {    box-shadow: inset 0 0 0 50px #3a639f; }

input {
    display: none;
}

.mobile-logo{
    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: #D71920;
    transition: ease .5s;
    font-size:20px;
    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;
  }
  .mobile-logo{
     display:block;
 
  }
}