@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gabarito", sans-serif;
}

p {
    font-family: "Bitter", serif;
    text-align: justify;
}

.contact-banner-image{
    background-image: url(./asstes/img/banner-img-8.png);
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-banner-image-overlay{
    background-color: rgba(0, 0, 0, 0.603);
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.contact-icon-style {
    background-color: #efcc4e;
    color: #141622;
    height: 60px;
    width: 60px;
    font-size: 25px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: -28px;
}

.contact-card-style {
    box-shadow: 0px 0px 5px 2.5px #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.form-container {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px 2.5px #efcc4e;
}

/* .form-container:hover{
    transition: 0.5s;
    background-color: #efcc4e;
} */


label {
    display: block;
    margin-top: 15px;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #7c7d85;
}

textarea {
    resize: vertical;
}

.contact-from-button {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    background-color: #141622;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

.contact-from-button:hover {
    background-color: #efcc4e;
    color: #141622;
    transition: 0.5s;
}


