.warranty {
    background-color: #fff;
    padding: 50px 0;
    background-attachment: fixed;
    box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.1);
}
.warranty h1 {
    text-align: left;
    margin: 50px 0px;
}
.warranty p, .warranty li {
    text-align: justify;
    font-size: large;
}
.warranty .icons i {
    font-size: 100px;
    color: #e60012;
}
.warranty .icon {
    text-align: center;
}
.warranty .icon i {
    font-size: 100px;
    color: #e60012;
}
.content h4 {
    color: #e60012;
}
.card {
    margin-bottom: 10px;
}
.card:hover {
    box-shadow: 2px 2px 5px rgb(66, 66, 66);
}
/* acc */
a:hover, a:focus{
    text-decoration: none;
    outline: none;
}
#accordion .panel{
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 15px;
}
#accordion .panel-heading{
    padding: 0;
    border-radius:0;
    border: none;
}
#accordion .panel-title a{
    display: block;
    padding: 14px 30px 14px 70px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #e60012;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease 0s;
}
#accordion .panel-title a.collapsed{
    background: #f8f8f8;
    color: #000;
}
#accordion .panel-title a.collapsed:hover{
    color: #e60012;
}
#accordion .panel-title a:before{
    content: "";
    width: 55px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: -13px;
    transform: skewX(-25deg);
    transition: all 0.5s ease 0s;
}
#accordion .panel-title a.collapsed:hover:before{
    background: #e60012;
}
#accordion .panel-title a:after{
    content: "";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    background: url('../assets/stream-solid.svg');
    background-size: 10px 20px;
    display: inline-block;
    width: 10px; 
    height: 20px;
}
#accordion .panel-title a.collapsed:after{
    color: #9f9f9f;
}
#accordion .panel-title a.collapsed:hover:after{
    color: #fff;
}
#accordion .panel-body{
    font-size: 14px;
    color: #5a3245;
    line-height: 25px;
    padding: 20px 15px 20px 40px;
    position: relative;
    border: none;
    transition: all 0.5s ease 0s;
}
#accordion .panel-body:before{
    content: "";
    width: 5px;
    height: 40px;
    background: #ef6145;
    position: absolute;
    top: 30px;
    left: 0;
}
#accordion .panel-body p{
    margin-bottom: 0;
}
hr {
    border-color: #000;
}
.rtl h1, .rtl h3 {
    text-align: right;
}
.submit-btn {
    background: #fff;
    border: 2px solid #000;
    padding: 10px 24px;
    color: #000;
    transition: .4s;
    border-radius: 50px;
    margin-top: 5px;
}