.aboutus {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.heading-title {
    background-color: #4e9cf7;
    padding: 4rem;
    position: relative;
}
.left-cran img{
    width: 140px;
    position: absolute;
    top:40px;
    left: -60px;
    transform: rotate(135deg);
}
.right-cran img{
    width: 140px;
    position: absolute;
    top:40px;
    right: -60px;
    transform: rotate(135deg);
}

.heading-title h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.heading-title h1:after {
    border-top: 6px solid white;
    display: block;
    width: 100px;
    content: "";
    margin: 8px auto 0;
}

.about-text {
    margin-top: 3rem;
    position: relative;
}

.about-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.about-product-title{
    margin-top: 3rem;
}
.about-product-title h2{
    color: #1241cd;
    font-weight: 600;
}

.about-quality{
    position: relative;
}

.cran-black img{
    position: absolute;
    right: -100px;
    width: 150px; 
    transform: rotate(45deg);
    opacity: 0.8;
}

.about-quality-title{
    margin-top: 3rem;
}
.about-quality-title h2{
    color: #1241cd;
    font-weight: 600;
}
.about-text p i{
    padding-right: 0.5rem;
    font-size: 0.8rem;
}

.aboutus-text-title{
    padding: 2rem;
    background-color: #4e9df730;
    border-radius: 10px;
}
.aboutus-text-title h4{
    color: #1241cd;
    font-weight: 700;
    border-bottom: 2px dashed #1241cd;
}

@media only screen and (min-width:1200px) and (max-width:1400px){
    .cran-black img{
        position: absolute;
        right: -80px;
        width: 120px; 
        transform: rotate(45deg);
        opacity: 0.8;
        top: -70px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px){
    .cran-black img{
        position: absolute;
        right: -80px;
        width: 120px; 
        transform: rotate(45deg);
        opacity: 0.8;
        top: -70px;
    }
}

@media only screen and (min-width:769px) and (max-width:991px){
    .cran-black img{
        position: absolute;
        right: -80px;
        width: 120px; 
        transform: rotate(45deg);
        opacity: 0.8;
        top: -70px;
    }
}

@media only screen and (max-width:768px){
    .cran-black img{
        position: absolute;
        right: -80px;
        width: 120px; 
        transform: rotate(45deg);
        opacity: 0.8;
        top: -70px;
    }
}

@media only screen and (max-width:500px){
    .heading-title h1 {
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
    }
    .left-cran img{
        width: 120px;
        position: absolute;
        top:40px;
        left: -60px;
        transform: rotate(135deg);
    }
    .right-cran img{
        width: 120px;
        position: absolute;
        top:40px;
        right: -60px;
        transform: rotate(135deg);
    }
}

@media only screen and (max-width:320px){
    .heading-title h1 {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
    }
}

.contact-us{
    padding-top: 2rem;
}

.about-us-text a {
    
    border: 2px solid black;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    color: white;
    background-color: #1241cd;
    border: 2px solid #1241cd;
    font-weight: 600;
    text-transform: capitalize;
    transform: scale(0.9);
    transition: all 0.5s ease;
}
.about-us-text a:hover{
    transition: all 0.5s ease;
    background-color: transparent;
    color: #1241cd;
    border: 2px solid #1241cd;
    transform: scale(1.0);
}