*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #55a7b4;
}

.logodiv{
    margin: 10px auto 0px;
    width: fit-content;
    color: white;
}
.logodiv img{
    display: block;
    margin: auto;
    width: 300px;
}
.logodiv h2{
    font-weight: 100;
}

#contact-form {
    position: relative;
    text-align: center;
    background: #55a7b4;
    padding: 68px 0 84px;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    flex-wrap: wrap-reverse;
    min-height: 100vh;
    gap: 50px
}

.mainImg{
    max-width: 80%;
    max-height: 600px;
}

.mainheading{
    max-width: 900px;
    display: block;
}

#contact-form h3 span, #contact-form h3 {
    font-size: 39px;
    font-family: futura-pt,sans-serif;
    color: white;
}
@media (max-width: 1220px){
#contact-form h3 span {
    font-size: 43px;
    line-height: 62px;
}}

#contact-form hr {
    border-bottom: 4px solid #fff;
    margin: 20px auto 25px auto;
    max-width: 80px;
}

#contact-form p {
    max-width: 700px;
    margin: 20px auto 28px auto;
    color: #fff;
    font-size: 25px;
    position: relative;
    line-height: 36px;
    font-weight: 300;
    font-family: montserrat,sans-serif;
}

#contact-form strong {
    display: block;
    font-size: 51px;
    padding-top: 29px;
    font-weight: 500;
}

#contact-form-holder {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

#contact-form-holder p {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    line-height: 33px;
    justify-content: left;
}

.wpcf7-form-control-wrap {
    position: relative;
}

#contact-form-holder input {
    border: 0;
    padding: 10px 20px;
    width: 100%;
    margin: 0 0 15px;
    font-size: 17px;
    font-weight: 500;
    line-height: 36px;
}

#contact-form-holder textarea {
    border: 0;
    padding: 10px 20px;
    width: 100%;
    margin: 0 0 15px;
    font-size: 17px;
    height: 300px;
    font-weight: 500;
    line-height:36px;
}

#contact-form-holder .gdpr-check {
    /* float: right; */
    display: block;
    clear: both;
    color: #fff;
    margin: 33px auto 0;
}

#contact-form-holder .gdpr-check a {
    color: #fff;
    text-decoration: none;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
}

#contact-form-holder input.wpcf7-form-control.wpcf7-submit {
    max-width: 235px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    color: #2b7e8e;
    background: #fff;
    clear: both;
    margin-top: 28px;
    border-radius: 50px;
    padding: 12px 20px;
    transition: all .3s ease-in-out;
}

#contact-form-holder input.wpcf7-form-control.wpcf7-submit:hover {
    background: #baae62;
    color: #fff;
}

.gdpr-check > p{
    display:flex;
}

.checkboxspan{
    width: 30px;
}
.checkboxspan + span{
    text-align: start;
}

.container{
    max-width: 90%;
    /* border: 5px solid black; */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 0 10px 10px #6cb4c9;
}

@media only screen and (max-width :500px) {
    .container{
        padding: 23px;
    }
    
    .mainheading{
        line-height: 30px !important;
        font-size: 22px !important;
    }

    #contact-form-holder input{
        padding: 5px 12px;
        display: flex;
        margin-top: 2px;
    }

    #contact-form-holder .gdpr-check{
        margin: 12px auto 0;
    }
    .checkboxspan{
        margin: 0 20px;
    }
    .checkboxspan + span{
        font-size: 15px;
        line-height: 19px;
    }
    #contact-form-holder input.wpcf7-form-control.wpcf7-submit{
        padding: 3px 11px;
        max-width: 171px;
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

}