@import url(styles.css);
@import url(mq.css);
article .margin {
    margin: 5vh 5vw;
}

article .buttons {
    display: flex;
    gap: 2rem;
    flex: 1;
    flex-wrap: wrap;
}

article .municiple2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3em;
    overflow-x: scroll;
    height: auto;
}

article .municiple2-child {
    background-color: var(--color-6);
    height: 80vh;
    border-radius: 100px;
    border: 15px solid white;
    position: relative;
    display: grid;
    align-items: end;
    width: 90vw;
    min-width: 300px;
    max-width: 1500px;
    max-height: 900px;
    margin: auto;
}

@media all and (max-width:620px) {
    article .municiple2-child {
        border-radius: 50px;
        height: 600px;
        border: none;
    }
}

article .municiple2-child-description {
    background-color: white;
    height: 60%;
    width: 60%;
    border-bottom-left-radius: 87px;
    border-top-right-radius: inherit;
    position: relative;
    transform: translate(-1px, 1px);
    display: grid;
}

@media all and (max-width:620px) {
    article .municiple2-child-description {
        /* height: 60%; */
        border-top-left-radius: inherit;
        width: 100%;
        transform: translate(0, 3px);
        height: 80%;
        border-bottom-left-radius: 0;
        overflow: hidden;
    }
}

article .miniciple-content {
    width: 80%;
    /* height: auto; */
    margin: auto;
    max-width: 500px;
}

article .muni_card {
    width: 300px;
    aspect-ratio: 1/1.15;
    background-color: var(--color-10);
    display: grid;
    /* align-content: center; */
    place-self: center;
    border-radius: 30px;
    text-transform: capitalize;
}

@media all and (max-width:620px) {
    article .muni_card {
        margin: auto;
    }
}

article .muni_card h3,
article .muni_card p,
article .muni_card img {
    width: 80%;
    margin: auto;
}

article .municiple3-2 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

article .municiple_name {
    font-size: 3.5em;
    font-weight: 400;
    line-height: 10px;
}

article .municiple_slogan {
    line-height: 10px;
    font-size: 1.5em;
    font-weight: 200;
}

article .heading {
    font-family: var(--family-8);
    font-weight: bold;
    font-size: 27.51px;
}

article .content {
    font-family: var(--family-5);
    font-weight: 100;
    font-size: 17px;
    text-indent: 5px;
}

article .button1 {
    font-size: 20px;
    text-shadow: 0 1px 0 darkgreen;
}