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

.aboutWrapper::before {
    content: "";
    display: block;
    height: 60px;
    width: 100%;
}

.aboutWrapper{
    width: 100%;
    height: 395px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}

.aboutWrapper img {
    height: 300px;
    width: 119%;
    position: absolute;
    z-index: 1;
    object-fit: cover;
    filter: brightness(0.8);
}

.aboutContent {
    z-index: 2;
    max-width: 500px;
    margin-bottom: 50px;
}

.aboutContent h3{
    font-size: 18px;
    color: white;
    font-weight: 600;
}

.aboutContent p{
    font-size: 14px;
    color: white;
    font-weight: 200;
}

.aboutContent button {
    font-size: 16px;
    color: white;
    font-weight: 200;
    background-color: #be937e;
    padding: 3px 20px;
    border: 0;
    margin: 15px 0;
    border-radius: 40px;
}

.imgWrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 27px 0;
}

.imgWrapper img {
    width: 270px;
}

.mainContentWrapper {
    padding: 2rem 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mainContentWrapper h3 {
    font-weight: 700;
    width: 80%;
    margin: 20px 0;
    font-size: 26px;
}

.mainContentWrapper img {
    width: 80%;
}

.linksWrapper {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    text-decoration: underline;
    color: #be937e;
    width: 80%;
}

h3::before {
    content: "";
    display: block;
    width: 89px;
    height: 3px;
    background-color: #be937e;
    position: absolute !important;
    margin: 36px 0;
}

.mainContent {
    width: 80%;
}

@media screen and (min-width: 768px) and (max-width: 991px)  {
    .aboutWrapper {
    
    width: 100%;
    height: 360px;
    }
    .aboutWrapper img {
            width: 119%;
    }
}

















