@import url(base.css);

#header {
    margin-top: 20px;
    margin-bottom: 20px;
}

#header-text {
    width: 45%;
    padding: 20px;

    font-family: "PT Serif", serif;
    font-size: 1.1em;
    text-align: justify;
    line-height: 1.6;
}

/* TODO: Not sure about this... */
@media screen and (max-width: 1200px) {
    #header-text { width: 80%; }
}

#header-image {
    padding: 20px;
}

#why-choose-us {
    width: 100%;
    background-color: var(--mgw-grey);
    color: black;
    font-size: 1.1em;
    padding-top: 20px;
    padding-bottom: 60px;
}

ul.choose-us {
    list-style: none;
    text-align: center;
}

ul.choose-us li {
    padding-top: 25px;
    padding-left: 1.3em;
}

ul.choose-us li::before {
    color: var(--mgw-red);
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
}

#find-out-more {
    padding: 20px;
}

div.services-box {
    position: relative;
    padding: 25px;
}

div.services-box:hover {
    transform: scale(1.05, 1.05);
    transition-duration: 0.5s;
}

/* divs overlaid on div.services-box as labels */
div.services-box div {
    position: absolute;
    left: 0px;
    bottom: 20px;
    width: 65%;
    height: 15%;
    padding-left: 10px;
    padding-top: 20px;

    background-color: black;
    color: var(--mgw-gold);

    font-family: "Libre Baskerville", serif;
    font-variant: small-caps;
    font-size: 1.1em;
}

#contact-form {
    width: 100%;
    background-color: var(--mgw-red);
    color: white;
    font-size: 1.1em;
    padding-top: 20px;
    padding-bottom: 60px;
}

div.form-field {
    padding: 20px;
}

div.form-field label {
    font-family: "PT Serif", serif;
    font-size: 1.1em;
}

div.form-field input {
    font-family: "PT Serif", serif;
    font-size: 1em;
    padding: 12px;
    margin-left: 10px;
    border: 1px solid black;
    border-radius: 4px;
}

div.form-field input[type=checkbox] {
    -webkit-appearance: none;
    background-color: white;
    border: 1px solid black;
    border-radius: 4px;
    margin-bottom: -0.4em;
    margin-right: 10px;
    margin-top: 5px;
    display: inline-block;
    position: relative
}

div.form-field input[type=checkbox]:checked {
    color: var(--mgw-red);
}

div.form-field input[type=checkbox]:checked:after {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    top: 3px;
    left: 3px;
    color: var(--mgw-red);
}

div.form-field button {
    font-family: "Libre Baskerville", serif;
    font-size: 1em;
    font-variant: small-caps;
    border: none;
    padding: 12px;
    background-color: black;
    color: var(--mgw-gold);
    cursor: pointer;
}