

.main-contact {
    & .m-header {
        height: 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;

        & .title {
            color: black;

            h1 {
                font-size: 4rem;
            }
        }
    }

    & .map-wrap {
        iframe {
            width: 100%;
        }
    }

    & .info-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4rem;
        margin-top: -5rem;
        margin-bottom: 5rem;
        color: white;
        padding: 0 1rem;

        & .box {
            border-radius: 20px;
            text-align: center;
            width: 22rem;
            background-color: #002261;
            padding: 1rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;

            i {
                color: #002261;
                background-color: #f7f7f7;
                padding: .8rem;
                border-radius: 50%;
                font-size: 3rem;
            }

            h3 {
                font-size: 1.5rem;
            }
/* 
            p {
                color: white;
            } */
        }
    }

    & .form-content {
        margin-bottom: 8rem;

        h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 900;
        }

        & form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            margin: 0 auto;
            width: 50rem;

            & .input-group {
                display: flex;
                gap: 1.5rem;
            }

            textarea{
                padding-top: 10px;
                height: 80px !important;
            }

            input,
            textarea {
                background: #ffffff;
                width: 100%;
                height: 55px;
                border: 1px solid #c6c6c6;
                color: #808080;
                font-size: 15px;
                font-weight: 400;
                font-style: normal;
                padding-left: 25px;
                padding-right: 25px;
                border-radius: 27px;
                font-family: inherit;
                outline: none;
            }
        }
    }
}

.custom-link2 {
    text-decoration: none;
    border: 1px solid #002261;
    background-color: #002261;
    color: white;
    border-radius: 15px;
    padding: 12px;
    font-weight: 900;
    transition: all 0.1s;
    cursor: pointer;

    &:hover {
        background-color: white;
        color: #002261;
    }
}



.footer2 {
    margin-bottom: 0 !important;
    background-color: #f7f7f7 !important;
}

@media screen and (max-width:950px) {
    .main-contact {
        & .form-content {
            & form {
                width: 80%;
                & .input-group {
                    flex-direction: column;
                }
            }
        }
    }
}

@media screen and (max-width:500px) {
    .main-contact {
        & .info-content {
            & .box {
               width: 20rem;
            }
        }
    }
}