.about{
    background-color: #F5F5F5;
    padding: 4rem 0;
}
.about h1{
    margin-top: 2rem;
    font-size: 65px;
}
.about h4{
    width: 80%;
    margin-left: 2rem;
    margin-top: 3rem;
    font-weight: normal;
}
.slogan{
    background-color: #fff;
    padding-bottom: 6rem;
}
.card1{
    background-color: #FF2222;
    border-radius: 40px;
    height: 70px;
    transition: .4s ease all;
    position: relative;
    z-index: 2222;
}
.affor,.affor1{
    width: 40px !important;
}
.card1 img{
    width: 50px;
    margin-right: 20px;
}
.card1 .safet, .safet1{
    width: 30px !important;
}
.safet1, .affor{
    display: none;
}
.fast{
    display: none;
}
.ptext{
    background-color: #EFEFEF;
    width: 80%;
    padding: 15px;
    transform: translateY(-100px);
    opacity: 0;
    transition: .4s ease all;
}
@keyframes swipe {
    0%{
        opacity: 0;
        transform: translateY(-100px);
    }
    50%{
        opacity: .5;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.card1:hover{
    cursor: pointer;
    background-color: #DB2323;
}
.card1:hover +.ptext{
    animation: swipe forwards  ;
}
.ptext h6{
    line-height: 30px;
    width: 90%;
}
@media screen and (max-width: 768px){
    .ptext{
        background-color: #EFEFEF;
        padding: 15px;
        opacity: 1;
        width: 100%;
        transform: translateY(-15px);
        z-index: 1;
    }
    .card1{
        z-index: 2;
        border-radius: 10px;
    }
    .card1 img{
        width: 30px;
    }
    .card1 .safet {
        width: 23px;
    }
    h3{
        font-size: 25px;
    }
    .ptext h6 {
        line-height: 19px;
        width: 90%;
        font-size: 10px;
    }
}
@media screen and (max-width: 575px){
    .about{
        padding: 1rem 0 ;
    }
    .about h1, .about h4{
        margin-top: 1rem;
    }
    .ptext h6{
        padding-top: 11px;
    }
    .about h4{
        margin-bottom: 20px;
    }
}