@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.about-hero {
    width: 100%;
    height: auto;
    background: url(../assets/img/about/about-bk.png);
    display: flex;
    justify-content: center;
}

.about-container {
    width: 80%;
    height: auto;
    padding-top: 100px;
    /* background-color: yellow; */
    display: flex;
    justify-content: space-between;
}

.about-left {
    width: 50%;
    /* height: 300px; */
    /* background-color: violet; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 10px;
    margin-top: 70px;
}

.about-badge {
    width: 130px;
    padding: 7px 20px;
    background-color: #804920;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge p {
    font-size: 17px;
    font-weight: 500;
    color: white;
}

.about-left h1 {
    color: #0c717a;
    line-height: 50px;
    font-size: 43px;
}

.about-left span {
    color: #979797;
}

.about-right {
    display: flex;
    /* background-color: #804920; */
}

.about-right img {
    width: 27rem;
}

@media (max-width:1010px) {
    .about-container {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-left {
        width: 70%;
        margin-top: 0px;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .about-left {
        width: 90%;
    }

    .about-right img {
        width: 25rem;
    }
}

@media (max-width:460px) {
    .about-left h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .about-left span {
        font-size: 15px;
    }

    .about-right img {
        width: 20rem;
    }

    .about-badge {
        width: 120px;
        padding: 5px 15px;
    }

    .about-badge p {
        font-size: 15px;
    }
}

.about-location{
    width: 100%;
    height: 500px;
    background-color: #46cdd9;
}