.image-box {
    margin-top: 57px;
    display: flex;
    justify-content: center;
    background: #000;
    padding: 20px 0;
}

.image-box img {
    height: 270px;
    transition: all 0.8s;
}

.heading {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(58, 130, 6);
    color: #fff;
    padding: 40px 0;
    border: 3px dashed white;
}

.user-inputs form {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.user-inputs form p.result {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.user-inputs form::selection {
    user-select: none;
}

.user-inputs form input,
textarea {
    background: #231f1f;
    color: #fff;
    width: 100%;
    font-size: 1rem;
    padding: 9px 10px;
    resize: none;
    outline: 0;
    border: 0;
    font-weight: bold;
    letter-spacing: 0.8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
}

.user-inputs form input::placeholder,
textarea::placeholder {
    font-size: 0.9rem;
    color: #fff;
}

.user-inputs form input:focus,
textarea:focus {
    font-size: 0.9rem;
    border: 1px solid #fff;
}

.user-inputs textarea::-webkit-scrollbar {
    width: 0;
}


button {
    outline: 0;
    border: 0;
    background: #ffffff;
    border-radius: 7px;
    padding: 13px 30px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    color: #000000;
    border: 2px solid transparent;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #006eff;
    color: #ffffff;
    border: 2px solid white;
}

.info-bottom {
    background-color: rgb(40, 36, 42);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0 10px 10px;
    border-bottom: 2px solid white;
}

p.p-top {
    margin-bottom: 10px;
    color: #fff;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.name p {
    font-size: 22px;
    color: white;
    font-weight: 600;
}

.links img {
    height: 50px;
    margin: 0 5px;
    cursor: pointer;
}

.maps {
    display: flex;
    flex-direction: column;
    padding-left: 12px;
    padding-bottom: 20px;
    background-color: bisque;
}

.maps a {
    font-size: 22px;
    margin: 5px 0;
    color: black;
}

@media (max-width:900px) {
    .image-box {
        margin-top: 42px;
    }

    .image-box img {
        height: 230px;
    }

    .info-bottom,
    .info-top p {
        font-size: 23px;
    }

    .name p {
        font-size: 18px;
    }

    .links img {
        height: 35px;
    }

    .maps iframe {
        height: 200px;
        width: 250px;
    }

    .social-media {
        padding: 2px;
    }
}

@media (max-width:400px) {

    .image-box img {
        height: 150px;
        margin: 10px 0;
    }

    .info-bottom {
        font-size: 17px;
        padding: 2px;
    }

    .info-top p {
        font-size: 15.5px;
    }

    .name p {
        font-size: 16px;
    }

    .links img {
        height: 22px;
        margin: 2px;
    }

    .maps {
        padding-left: 5px;
    }

    .maps a {
        font-size: 18px;
    }

    .maps iframe {
        height: 130px;
        width: 170px;
    }

    .mail,
    .mail a {
        font-size: 17px;
    }
}