@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+HU:wght@100..400&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");
.our-story {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
}

.text-part {
    width: 60%;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 14px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.img-part {
    width: 31%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.text-part h2 {
    font-weight: 700;
    width: 100%;
    font-size: 25px;
}

.img-part img {
    transition: transform 0.8s ease;
}

.img-part img:hover {
    transform: scale(1.1);
}

.img-part img::before {
    margin-left: 10vh;
    border: 2px solid grey;
}

@media (min-width: 1400px) {
    .our-story {
        height: 55vh;
        min-height: 50vh;
        max-height: 50vh;
    }
}

@media (max-width: 765px) {
    .our-story {
        flex-direction: column !important;
        min-height: 100vh;
    }

    .text-part {
        width: 100%;
    }

    .img-part {
        width: 100%;
        height: 70vh;
        /* overflow: visible; */
    }
}
