/* about section styling */
.about {
    background-color: rgb(227, 159, 246);
}

.about .title::after {
    content: "who are we";
    background-color: rgb(227, 159, 246);
}

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 550px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #630436;
}

.about .about-content .right .text span {
    color: crimson;
}

.about .about-content .right p {
    text-align: justify;
    font-family: cursive;
}

.about .about-content .right a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
    font-family: cursive;
}

.about .about-content .right a:hover {
    color: crimson;
    background: none;
}

.secondheading {
    position: relative;
    font-size: 70px;
    top: 25px;
    font-family: 'Times New Roman', Times, serif;
    color: #630436;
}