@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    color: #000;
    font-family: Roboto;
}
body {
    margin: 0;
}
p span {
    font-weight: 700;
}
a {
    text-decoration: none;
}
input:focus, textarea:focus {
    outline: none;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 99;
    transition: all ease 0.7s;
}
#header img, #header nav {
    vertical-align: middle;
}
#header .logo {
    width: 35%;
}
#header #toggle-icon {
    display: none;
}
#header nav {
    display: inline-block;
}
#header nav a {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 1.2em;
    font-weight: 300;
    cursor: pointer;
    transition: all ease 0.7s;
}

.section {
    padding: 40px 0;
}
.section h1 {
    font-size: 2.4em;
    font-weight: 700;
}
.section .sub-heading {
    font-size: 1em;
    line-height: 2em;
}

#home-section {
    position: relative;
    background-image: url("images/home.jpg");
    background-size: cover;
    background-repeat: no-repeat
}
#home-section h1, #home-section p {
    color: #fff;
    font-family: Roboto;
    text-align: center;
}
#home-section h1 {
    font-size: 3em;
    font-weight: 500;
}
#home-section p {
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.6em;
}
#home-section-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#home-section-heading-container {
    position: relative;
    text-align: center;
}
#home-section-text-container h1 {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: 1s;
}

#services-section {
    /* padding: 0; */
    clear: both;
}
#services-section #services-image, #services-section #services-text-container, #services-section #services-text-container .service-container {
    display: inline-block;
    vertical-align: top;
}
#services-section #services-image {
    width: 30%;
    margin-left: 40px;
    /* background-image: url("images/services_2.jpg"); */
    background-image: url("images/handing_over_keys.jpg");
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
#services-section #services-text-container {
    width: calc(70% - 100px);
}
#services-section #services-text-container h1 {
    margin: 0 0 0 3%;
}
#services-section #services-text-container .service-container {
    width: 43%;
    margin: 2% 0;
    padding: 1% 3%;
}
#services-section #services-text-container .service-container h2 {
    margin-top: 0;
    padding-bottom: 10px;
    color: #777777;
    font-size: 1.2em;
    font-weight: 500;
    border-bottom: 1px solid #c9c9c9;
}
#services-section #services-text-container p {
    font-size: 1em;
    line-height: 1.6em;
}
#services-text-container > p {
    padding: 0 3%;
}

#fees-section, #contact-section {
    padding-right: 5%;
    padding-left: 5%;
}
#fees-section {
    background-color: #990033;
    text-align: center;
}
#fees-section h1, #fees-section .sub-heading {
    color: #fff;
}
#fees-section h1 {
    margin-top: 0;
}
#fees-section .fee-container {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 29%;
    margin: 1%;
    background-color: #fff;
}
#fees-section .fee-container:hover {
    box-shadow: 0 0 20px #000;
    transition: 0.4s;
}
#fees-section .fee-container .fee-text-container {
    padding: 0 5% 5% 5%;
}
#fees-section .fee-container h2 {
    font-size: 1.4em;
}
#fees-section .fee-container p {
    font-size: 1em;
}
#fees-section .fee-container p {
    margin: 0;
    padding: 20px 0;
}

#contact-section h1 {
    margin-top: 0;
}
#contact-section .sub-heading {
    /* margin-bottom: 40px; */
    color: #a8a8a8;
}
#contact-section .contact-container {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    padding: 2%;
}
#contact-section .contact-container:first-of-type {
    padding-left: 0;
}
#contact-section .contact-container h2 {
    margin: 20px 0;
    font-size: 1.4em;
}
#contact-section .contact-container p {
    font-size: 1em;
    line-height: 2em;
}
#contact-section .contact-container a:hover {
    text-decoration: underline;
}
#contact-section .contact-container form {
    margin-top: 10px;
}
#contact-section .contact-container form .field {
    width: 100%;
    margin-bottom: 20px;
}
#contact-section .contact-container form .field h3 {
    margin-left: 6px;
    color: #a8a8a8;
    font-size: 0.9em;
    font-weight: 500;
}
#contact-section .contact-container form .field h3 span {
    color: #990033;
}
#contact-section .contact-container form .field input, #contact-section .contact-container form .field textarea {
    padding: 8px 0 8px 6px;
    font-size: 1em;
}
#contact-section .contact-container form .field input {
    width: calc(100% - 6px);
    border: none;
    border-bottom: 1px solid #c9c9c9;
}
#contact-section .contact-container form .field textarea {
    width: calc(100% - 22px);
    padding: 10px;
    line-height: 1.6em;
    border: 1px solid #c9c9c9;
    resize: none;
}
#contact-section .contact-container form input[type=submit] {
    display: block;
    padding: 14px 30px;
    background-color: #990033;
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
#contact-section #enquiries-form-container h2 {
    margin-bottom: 40px;
}
#phone-label {
    font-size: 1.2em;
}
.social-option {
    display: block;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
}
.social-option * {
    display: inline-block;
    vertical-align: middle;
}
.social-option img {
    width: 8%;
    margin-right: 10px !important;
}

#footer {
    padding: 30px 20px;
    border-top: 1px solid #c9c9c9;
}
#footer div {
    display: inline-block;
    vertical-align: middle;
}
#footer h3 {
    color: #a8a8a8;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.6em;
}
#footer #footer-details {
    width: 40%;
    margin-right: 29%;
}
#footer #footer-copyright {
    width: 30%;
    text-align: right;
}

@media screen and (min-width: 1500px) {
    .header nav a {
        font-size: 1.6em;
    }

    .section h1 {
        font-size: 3em;
    }
    .section .sub-heading {
        font-size: 1.4em;
    }

    #home-section h1 {
        font-size: 4em;
    }
    #home-section p {
        font-size: 1.4em;
    }

    #services-section #services-text-container .service-container h2 {
        font-size: 1.4em;
    }
    #services-section #services-text-container p {
        font-size: 1.2em;
    }

    #fees-section .fee-container h2 {
        font-size: 2em;
    }
    #fees-section .fee-container p {
        padding: 30px 0;
        font-size: 1.2em;
    }

    #contact-section .contact-container h2 {
        margin: 20px 0;
        font-size: 1.6em;
    }
    #contact-section .contact-container p {
        font-size: 1.2em;
        line-height: 2em;
    }
    #contact-section .contact-container form .field h3 {
        font-size: 1.2em;
    }
    #contact-section .contact-container form .field input, #contact-section .contact-container form .field textarea {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 1000px) {
    #header {
        background-color: #fff;
        padding: 10px 0;
    }
    #header .logo {
        width: 70%;
    }
    #header #toggle-icon {
        display: inline-block;
        cursor: pointer;
    }
    #header nav {
        display: none;
    }
    #header nav a {
        display: block;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }

    #services-section #services-text-container h1 {
        margin: 0 0 0 5%;
    }
    #services-section #services-text-container {
        width: 100%;
    }
    #services-section #services-text-container .service-container {
        width: 90%;
        padding: 5% 2%;
    }
    #services-section #services-text-container .service-container:first-of-type {
        padding: 5%;
    }
    #services-section #services-text-container .service-container:last-of-type {
        padding: 0 5%;
    }

    #fees-section .fee-container {
        width: 100%;
        margin: 0 0 20px 0;
    }
    #fees-section .fee-container:last-of-type {
        margin-bottom: 0;
    }
    #fees-section .fee-container h2 {
        font-size: 1.6em;
    }

    #contact-section .contact-container {
        width: 100%;
        padding: 0;
    }
    #contact-section .contact-container form input[type=submit] {
        width: 100%;
        padding: 14px 0;
    }
}