* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --container-width: 1440px;
    --main-green-bg-color: #2cc67c;
    --main-transition: 0.3s;
    --main-font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}


.contact_title {
    padding: 60px 100px;
    font-family: var(--main-font-family);

    h2 {
        font-size: 1.1rem;
        color: rgb(66, 66, 66);

        a {
            color: black;
            text-decoration: underline;

            &:hover {
                color: #2cc67c;
            }
        }
    }
}



.contact {
    padding: 0px 100px;

    .contact_flex {
        display: flex;
        width: 100%;
        gap: 80px;

        .cont_info {
            font-family: var(--main-font-family);
            letter-spacing: .5px;

            h1 {
                font-size: 2.5rem;
                color: rgb(54, 54, 54);
                margin-bottom: 30px;
            }

            p {
                margin-bottom: 20px;
                color: rgb(75, 75, 75);
                font-size: 1.1rem;
                line-height: 140%;
            }

            a {
                text-decoration: underline;
                color: black;
                font-size: 20px;

                &:hover {
                    color: #2cc67c;
                }
            }

            .whats {
                background-color: #2cc67c;
                color: white;
                padding-top: 10px;
                padding-bottom: 5px;
                border-radius: 25px;
                height: 50px;
            }

            .cont_whats {
                display: block;
                width: 50px;
                text-align: center;
                margin-top: 20px;
            }

            .cont_whats:hover {
                scale: .93;
                color: rgb(91, 91, 91)
            }
        }

        .map {
            iframe {
                border-radius: 20px;
                height: 450px;
                width: 600px;

            }
        }
    }
}


.contact_adress {


    padding: 50px 100px;

    .cont_flex {
        display: flex;
        border-top: 2px solid gainsboro;
        border-bottom: 2px solid gainsboro;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        flex-wrap: wrap;

        div {
            width: 329px;
            font-family: var(--main-font-family);
            text-align: center;
            height: 100px;
            padding-top: 20px;

            h2 {
                font-size: 17px;
                color: rgb(75, 75, 75);
                font-weight: 400;
                margin-bottom: 10px;
            }

            a {
                font-size: 22px;

                &:hover {
                    color: #2cc67c;
                }
            }

            p {
                font-size: 22px;

            }
        }

    }
}