button {
    background-color: #C41E3A;
    font-family: 'Cormorant Infant', serif;
    color: white;
    border-radius: 50px;
    padding: 8px 50px;
    cursor: pointer;
}

button:hover {
    background-color: #7F8487;
}

.contact {
    display: flex;
    position: relative;
}

.contact img {
    position: absolute;
    bottom: 3px;
    left: 130px;
}

.content-container {
    display: flex;
    margin-bottom: 5%;
}

.content-container div {
    width: 100%;
}

.content-container-mobile {
    display: none;
}

.contact-info {
    width: 100%;
    padding: 0% 2%;
    box-sizing: border-box;
}

.form-container {
    max-width: 100%;
}

.contact-info h1 {
    color: #C41E3A;
}

.form input,
.form textarea {
    width: 100%;
    padding: 2%;
    margin-bottom: 2%;
    background-color: #7F8487;
    border-radius: 5px;
    font-family: "Amiko", sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.form input::placeholder,
.form input::placeholder,
.form textarea::placeholder {
    color: white;
    opacity: 0.7;
}

.form textarea {
    height: 120px;
}

.form label {
    color: white;
    font-family: "Amiko", sans-serif;
    font-size: 16px;
}

.checkbox-container {
    display: flex;
    justify-content: flex-start;
    margin: 2% 0%;
}

.checkbox-container input {
    margin-right: 2%;
    width: auto;
}

.submit-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
}

.submit-form div {
    width: auto;
}

.social_media {
    display: flex;
    gap: 5%;
    justify-content: flex-end;
}

.social_media div:hover {
    transform: scale(1.2);
}

.social_media img {
    width: 35px;
    height: auto;
    border-radius: 50%;
}

.social_media img:hover {
    box-shadow: 0 0 10px #FFFFFF;
}

#send,
#send-mobile {
    display: none;
}

.next-page {
    display: none;
}

/*laptop*/
@media screen and (max-width:1110px) {
    .content-container {
        display: none;
    }

    .content-container-mobile {
        display: block;
        display: flex;
        flex-direction: column;
    }

    .banner {
        background-image: url(../image/contact\ mobile\ img.jpg);
        background-size: cover;
        background-position: center;
        min-height: 600px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-bottom: 2%;
    }

    .contact-info {
        width: 100%;
        padding: 0% 0%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 0% 10%;
        margin-bottom: 5%;
    }
}

/*tablet*/
@media screen and (max-width:600px) {
    .banner {
        min-height: 400px;
    }
}

/*mobile*/
@media screen and (max-width: 414px) {
    .banner {
        min-height: 200px;
    }

    .contact-info {
        margin-bottom: 10%;
    }

    .form-container {
        padding: 0% 5%;
    }

    .form input,
    .form textarea,
    .form label {
        font-size: 12px;
    }

    .social_media img {
        width: 24px;
        height: auto;
    }
}