body {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    margin: 0px;
    color: rgb(88, 74, 59);
    max-width: 100%;
    overflow-x: hidden;
}

p, b {
    font-size: 12.7pt;
    font-weight: 600;
    line-height: 30px;
    margin: 30px 0px;
}

p:last-child { margin-bottom: 0px}
p:first-child { margin-top: 0px}

a {
    font-weight: 800
}

.content-holder {
    max-width: 1000px;
    margin: auto;
}

.header-main {
    background-image: url("images/camera-bg.jpg");
    background-size: 100%;
    background-position: center;
    color: white;
}
.header-logo {
    width: auto;
    padding: 80px 0px 80px 0px;
}
.header-title {
    font-size: 30pt;
    font-weight: 800;
    line-height: 50px;
    margin-top: 70px;
    margin-bottom: 170px;
}
.header-left {
    display: inline-block;
    width: 50%;
    height: 100%;
    margin: 0px 20px;
    font-size: 14pt;
}
.header-right {
    display: inline-block;
    width: 40%;
    height: 100%;
    padding: 0px 20px;
}

.content-main {
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 0%, rgba(250,249,245,1) 100%);
    padding: 20px 0px;
}
.subtitle {
    font-size: 13.5pt;
    font-weight: 800;
}
.image-right {
    float: right;
    margin: 10px;
}

.image-left {
    float: left;
    margin: 10px;
}

.content-left {
    display: inline-block;
    width: 45%;
    height: 100%;
    margin: 20px 20px 10px 20px;
    text-align: left;
}
.content-right {
    display: inline-block;
    width: 45%;
    height: 100%;
    margin: 20px 20px;
    vertical-align: top;
}

.form-content {
    padding: 40px;
    max-width: 400px;
    margin: auto;
    -webkit-box-shadow: 4px 20px 40px -20px rgba(0,0,0,0.3);
    -moz-box-shadow: 4px 20px 40px -20px rgba(0,0,0,0.3);
    box-shadow: 4px 20px 40px -20px rgba(0,0,0,0.3);
    
    background-color: #fcf300;
}

.input-label {
    margin: 20px 0px 4px 0px;
    color: rgb(44, 44, 44);
    font-weight: 800;
    text-align: left;
}
input, textarea {
    width: calc(100% - 24px);;
    background-color: #fffe;
    padding: 10px;
    font-size: 14pt;
    font-family: 'Manrope', sans-serif;
    border-radius: 0px;
    border: 2px solid #FFF;
    resize: none;
}
.contact-button {
    width: 100%;
    margin: 10px 0px;
    padding: 10px;
    font-size: 14pt;
    font-weight: 600;
    border: 0px solid white;
    border-radius: 4px;
    
    color: white;
    background-color: #000;
    font-family: 'Manrope', sans-serif;
}

.footer {
    min-height: 60px;
    width: 100%;
    background-color: #222;
    color: #ddd;
}
.footer-left {
    font-size: 14px;
    float: left;
    margin: 10px 0px 0px 30px !important;
}
.footer-right {
    font-size: 14px;
    float: right;
    margin: 10px 30px 0px 0px;
}

.honeypot { display: none }

@media screen and (max-width: 1100px) {
    .header-main { background-size: cover} 
} 

@media screen and (max-width: 940px) {
    .header-left { width: auto }
    .content-left { width: auto}
    .content-right { width: auto}
    .content-right-topper { margin-top: 0px }
    .footer-left, .footer-right { float: none; margin: 0px !important }
    .footer { min-height: 90px }
}

@media screen and (max-width: 600px) {
    p, b {
        font-size: 10pt;
    }

    .form-content {
        padding: 20px;
    }

    .header-title {
        font-size: 20pt;
        line-height: 40px;
        margin-top: 50px;
        margin-bottom: 100px;
    }
}

