
.userArea{
    top:0;
}

.topnav{
    top: 50px;
}

.hero::before{
    display: block;
    content: "";
    height: 75px;
    margin-top: 0!important;
}

.hero{
    position: relative;
    min-height: 500px;
}

h1{
    position: absolute;
    top: 45%;
    left: 20%;
    right: 20%;
    transform: translateY(-45%);
    font-size: clamp(1rem, 4vw, 4.5rem);
    letter-spacing: .17rem;
    background-color: #a94803;
    color: white;
    padding: .9rem 3rem;
    text-align: center;
    margin: 0 auto;
}

.hero figure{
    font-size: 0;
}

.hero img{
    width:100%;
    height: auto;
}

@media only screen and (max-width: 800px) {
    .hero{
        min-height: fit-content;
    }
    h1{
        top:65%;
        transform: translateY(-65%);
    }
}


@media only screen and (max-width: 500px) {
    h1{
        top:75%;
        transform: translateY(-75%);
    }
}


/*
Cookie area
*/

.cookieSection{
    display: block;
    height: 150px;
    min-width: 50%;
    position:fixed;
    top: -150px;
    left: 46%;
    transform: translateX(-46%);
    margin: 0 auto;
    background-color: #ff8a37;
    padding: 2rem 0;
    border-radius: 5rem 5rem;
    opacity: 0;
    z-index: 2;
}

.cookieSection p {
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem); 
    word-wrap: break-word;
}

.accept{
    font-size: 1.1rem;
    border: none;
    min-width: 25%;
    text-decoration: none;
    padding: .5rem 1.5rem;
    background-color: #6700c7;
    color: white;
    letter-spacing: .1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}



.accept:hover{
    background-color: #888888;
    cursor: pointer;
}

.cookieClose{
    font-size: 2rem;
    border: 0;
    min-height: 50px;
    min-width: 50px;
    background-color: #dfdfdf;
    color:#cb7335;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-weight: bold;
    border-radius: 50% 50%;
    transform: translate(-20px, -40px);
    outline: 1px solid black;
}

.cookieClose:hover{
    color: #dfdfdf;
    background-color: #cb7335;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .cookieSection p {
        width: 70%;
        margin: 0 auto;
    }
    .cookieSection{
        height: 200px;
    }
}





.formHeader{
    padding: 3rem 0;
}

.formHeader h2{
    margin: 0;
    padding: 0;
    line-height: 2rem;
}

.formHeader p{
    font-size: 1.4rem;
    letter-spacing: .14rem;
    margin: 0;
    padding: 0;
}

.formArea{
    background-image: linear-gradient(to bottom, white 1%, #adc9d4 15%);
    padding-bottom: 5rem;
}


.formBody{
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 2rem 0;
    border-radius: 5rem 1rem 5rem 1rem;
}

.formContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    margin: 0 auto;
}

.formBtns{
    display: flex;
    justify-content: center;
    gap: 3rem;
}


.btn{
    border: none;
    padding: .7rem 2rem;
    background-color:#410000;
    color: white;
    margin-top: 2rem;
}

.btn:hover{
    background-color: #fccaca;
    color: black;
    outline: 1px solid black;
    cursor: pointer;
}

.labelArea{
    display: flex;
    gap: .5rem;
    width: 100%;
}

.labelArea label{
    width: 20%;
    text-align: right;
}

.labelArea input {
    width: 40%;
    height: 1.7rem;
}

.labelArea textarea{
    width: 40%;
}

.labelArea span{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    display: flex;
    align-items: center;
    letter-spacing: .03rem;
    width: 35%;
}

.labelArea .title{
    width: 30%;
}

.labelArea select{
    width: 15%;
    margin-left: 5rem;
}

.subjectSpan {
    padding-left: 4.7rem;
}

@media only screen and (max-width: 650px) {
    .formBody{
        width: 98%;
    }
    .formContent{
        width: 100%;
    }
}

/*contact page newsletter form*/


.mailingListCP{
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.mailingListFormCP{
    display: flex;
    flex-direction: column;
    max-width: 25%;
    margin: 0 auto;
}

.mailingListFormCP p{
 font-size: 1.4rem;
 letter-spacing: .15rem;
 padding-bottom: 1rem;
}

.mailingListFormCP label{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    font-weight: bold;
    letter-spacing: .2rem;
}

.mailingListFormCP input{
    height: 2rem;
    width: auto;
    margin: .5rem 0;
}


.joinBtn {
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15rem;
    padding: .5rem 2rem;
    margin-top: 1rem;
    background-color: #410000;
    color: white;
}

.joinBtn:hover {
    background-color: #fccaca;
    color: black;
    outline: 1px solid black;
    cursor: pointer;
}


.required{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #cd0404;
}

.success{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #59e959;
}

@media only screen and (max-width:1000px) {
    .mailingListFormCP{
        max-width: 50%;
    }
}

@media only screen and (max-width:650px) {
    .mailingListFormCP{
        max-width: 85%;
    }
}