@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

.header {
    position: relative;
    min-height: 30vh;
}

header .header-content p {
    font-family: "Nunito", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, hsla(0, 0%, 5.5%, .5), rgba(0, 0, 0, .8)), url("/img/header.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

.header-logo {
    margin-bottom: 10px;
}

section {
    height: 70vh;
    background-color: rgb(232, 136, 81);
}

.shadow-custom {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.button-custom-form {
    background-color: rgba(243, 146, 21, 1);
    color: #fff;
    border-radius: 50px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #92D609;
    padding: 6px 12px;
    font-size: clamp(18px, 24px, 28px);
}

.button-custom-form.desactive {
    background-color: #979797;
    border-color: #979797;
}

input[type=text], input[type=email] {
    border-color: rgba(243, 146, 21, 1);
}
input[type=text]::placeholder, input[type=email]::placeholder {
    color: #000 !important;

}
input[type=text]:focus::placeholder, input[type=email]:focus::placeholder {
    color: #979797 !important;
}

.mw-custom {
    max-width: 600px;
}