/* CSS Document */

:root {
    --colour1: #000000;
    --colour2: rgb(255, 255, 255);
}

body {
    font-family: 'Montserrat', sans-serif;
}


h1,
h2,
h3,
h4 {
    font-family: "ofelia-display", sans-serif;
    font-weight: 700;
    font-style: normal;

}

p,
li {
    font-weight: 300;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: .5px;
    color: #444;
}

b,
strong {
    color: var(--colour1);
}

a {
    text-decoration: none;
    color: var(--colour1);
}

.heading {
    font-weight: 400;
    width: 100%;
    border-bottom: 1px solid var(--colour1);
    padding-bottom: 16px;
}

#page-content {
    display: grid;
    width: 100%;
    grid-gap: 32px;
    padding: 64px 0 64px;
    background-color: #fff;
    z-index: 4;
}

.workspace {
    grid-gap: 32px;
}

.secondColour {
    color: var(--colour2);
}

/* - */

#header {
    display: grid;
    background-color: #fff;
    z-index: 4;
}

.header-inner {
    display: grid;
    width: 100%;
    grid-gap: 16px;
    padding-bottom: 32px;
}

@media(min-width:768px) {
    #header {}
}

@media(min-width:992px) {
    #header {
        grid-template-columns: auto 950px auto;
    }

    .header-inner {
        grid-column: 2;
        grid-template-columns: repeat(3, 33%);
        padding: 32px 0;
        grid-gap: 0;
    }
}

@media(min-width:1200px) {
    #header {
        grid-template-columns: auto 1200px auto;
    }
}

/* - */

.social-container {
    display: grid;
    justify-self: center;
    align-self: center;

    grid-gap: 16px;
    margin-top: 16px;
}

@media(min-width: 992px) {
    .social-container {
        justify-self: start;
        margin: 0;
    }
}

.social-container a {
    grid-row: 1;
}

.social-icon {
    font-size: 40px;
}

#logo-container {
    display: grid;
    align-self: center;
    justify-self: center;
}

#logo {
    max-height: 92px;
    justify-self: center;
}

@media(max-width: 600px) {
    #logo {
        justify-self: center;
        max-width: 320px;
    }

}

.contact-details {
    display: grid;
    justify-content: center;
    grid-gap: 16px;
    align-self: center;
}

.contact-details h4,
.contact-details a {
    overflow-wrap: anywhere;
}

@media(min-width: 992px) {
    .contact-details {
        justify-self: end;
    }
}

/* - */

.contact-details a {
    display: flex;
    /* grid-row: 1; */
    justify-self: center;
    align-content: center;
    grid-gap: 8px;
}

.contact-details-icon {
    grid-row: 1;
    align-self: center;
}

.contact-details h4 {
    grid-row: 1;
    align-self: center;
}

/* - */



























@media(min-width: 768px) {

hr {
    width: 100%;
    height: 1px;
    /*background-color: var(--colour1);*/
    border: none;
    
}
}

hr {
    width: 80%;
    height: 1px;
    background-color: var(--colour1);
    border: none;
    
}

@media(min-width: 768px) {
    hr {
        width: 100%;
    }
}

@media(min-width: 992px) {
    hr {
        width: 950px;
    }
}

@media(min-width: 1200px) {
    hr {
        width: 1200px;
    }
}

/* - */

.btn {
    display: grid;
    justify-self: start;

    background-color: var(--colour1);
}

.btn h4 {
    grid-row: 1;
    grid-column: 1;
    z-index: 2;

    border: none;
    color: #fff;
    padding: 16px 32px;
    text-align: center;
    font-size: 16px;
    transition: ease .25s;
}

.btn::before {
    content: "";

    grid-row: 1;
    grid-column: 1;
    z-index: 1;
    background-color: #111;

    width: 0;
    height: 100%;

    transition: ease .25s;

    color: #fff;

    overflow: hidden;

    justify-self: end;
    align-self: center;
}

.btn:hover {
    cursor: pointer;
}

.btn:hover h4 {
    color: #fff;
}

.btn:hover::before {
    height: 100%;
    width: 100%;
}

/* - */

.banner {
    display: grid;
}

#banner-image {
    display: grid;
    grid-row: 1;
    grid-column: 1;
    z-index: 1;

    width: 100%;
    height: 128px;
    background-size: cover;
    background-image: url('../img/banner-bg.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

#banner-overlay {
    display: grid;
    grid-row: 1;
    grid-column: 1;
    z-index: 2;

    width: 100%;
    height: 128px;
    background-size: cover;
    opacity: 0.65;

    background-color: #000;
}

#banner-container {
    display: grid;
    grid-row: 1;
    grid-column: 1;
    z-index: 3;

    width: 100%;
    height: 128px;
    align-content: center;
    justify-content: center;
}

@media (min-width: 768px) {
    #banner-image {
        height: 256px;
    }

    #banner-overlay {
        height: 256px;
    }

    #banner-container {
        height: 256px;
    }
}

#banner-container h1 {
    color: #fff;
}

/* - */



/* - */

.contact-items {
    grid-gap: 20px;
}

.contact-icon {
    grid-row: 1;
    color: #000000;
    align-self: center;
    justify-self: start;
    border-right: solid 1px;
    padding-right: 12px;
    font-size: 20px;
    width: 15px;
    max-width: 15px;
}

.contact-items h3 {
    color: var(--colour1);
    grid-row: 1;
    margin: 0;

    align-self: center;
    justify-self: start;
}

.contact-items p {
    grid-row: 1;
    margin: 0;

    align-self: center;
    justify-self: start;
}

.contact-items p,
.contact-items a {
    overflow-wrap: anywhere;
}

.contact-items .element {
    align-content: start;
    justify-content: start;
    grid-gap: 16px;
}







/* Testimonials */

.testimonial-container {
    display: grid;
    width: 100%;
    background-image: url('../img/testimonial-bg.jpg');

    background-position: center center;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 400px;
}

@media(min-width: 992px) {
    .testimonial-container {
        background-attachment: fixed;
    }
}

.testimonial {
    display: grid;
    align-self: center;
    justify-self: center;

    grid-row: 1;
    grid-column: 1;

    grid-gap: 16px;

    width: 512px;
    max-width: 80vw;

    opacity: 1;

    transition: opacity ease .5s;

    z-index: 3;
}

.opacity-0 {
    opacity: 0 !important;
}

.testimonial h3 {
    color: #fff;
    justify-self: center;
    font-size: 32px;
}

.testimonial p {
    color: #fff;
    justify-self: center;
    text-align: center;
}

.star-container {
    display: grid;
    align-content: center;
    justify-content: center;
}

.star {
    color: #fff;
    grid-row: 1;
}


.testimonial-controls {
    display: grid;
    z-index: 1;
    grid-row: 2;
    grid-column: 1;
    align-content: center;
    padding: 0 32px;
}

@media(min-width: 992px) {
    .testimonial-controls {
        grid-row: 1;
        grid-column: 1;
    }
}


.testimonial-arrow {
    color: #fff;
    font-size: 32px;
    grid-row: 1;
    grid-column: 1;

    transition: opacity .5s ease;
}

.testimonial-arrow:hover {
    cursor: pointer;
    opacity: 0.5;
}

.testimonial-left {
    justify-self: start;
}

.testimonial-right {
    justify-self: end;
}

.testimonial-dots {
    display: grid;
    grid-gap: 8px;
    justify-content: center;
    justify-self: center;
    align-self: center;
    z-index: 3;

    grid-row: 2;
    grid-column: 1;
}

.testimonial-dot {
    grid-row: 1;
    width: 8px;
    height: 8px;
    border-radius: 16px;
    background-color: #fff;
    align-self: center;
}

.testimonial-dot:hover {
    cursor: pointer;
    background-color: var(--colour1);
}

.active-testimonial-dot {
    background-color: var(--colour1);
    /*border: none;*/
}


/* - Table - */

.w100 {
    width: 100%;
}

.elem-table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

thead {
    background-color: var(--colour1);
    border-bottom: 2px solid #fff;
}

th {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    border-left: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: solid 1px;

    height: 20px;
}

th h1 {
    font-size: 14px;
}

tr:nth-child(2n) {
    background: rgba(222, 222, 222, 0.30);
}


/*** TABLE STYLING ***/

table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table td,
table th {
    border: 1px solid #fff;
    padding: 10px 10px;
}

table tbody td {
    font-size: 13px;
}

table thead th:first-child {
    border-left: none;
}

table tfoot td {
    font-size: 14px;
}

table tfoot .links {
    text-align: right;
}

/* Catch-all Centering Class */
.cent {
    justify-self: center;
    text-align: center;
}

.gatehouse {
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1,
.roof .workspace .element .element h3,
.roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}

@media(max-width: 768px) {
    .roof .workspace .element {
        align-self: left;
        justify-self: left;
    }

    .roof .workspace .element .element h1,
    .roof .workspace .element .element h3,
    .roof .workspace .element .element p {
        justify-self: left;
        text-align: left;
    }
}

/* Mobihide and Mobishow */

.mobishow {
    display: none !important;
}

.mobihide {
    display: grid !important;
}

@media (max-width: 768px) {
    .mobishow {
        display: grid !important
    }

    .mobihide {
        display: none !important;
    }
}

/* Card */
.card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: none;
   height:500px;
    border-radius: 15px;
    /*    padding: 1rem;*/
    width: 100%;
    text-align: center;
    color: whitesmoke;
    background-color: whitesmoke;
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.1),
        0 2px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px rgba(0, 0, 0, 0.1),
        0 8px 8px rgba(0, 0, 0, 0.1),
        0 16px 16px rgba(0, 0, 0, 0.1);
    transition: all ease .5s;
}

@media (min-width: 600px) {
    .card {
        height: 526px;
    }
}

/* Card background image */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;

    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
}

/* Gradient overlay */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom,
            hsla(0, 0%, 0%, 0) 0%,
            hsla(0, 0%, 0%, 0.009) 11.7%,
            hsla(0, 0%, 0%, 0.034) 22.1%,
            hsla(0, 0%, 0%, 0.072) 31.2%,
            hsla(0, 0%, 0%, 0.123) 39.4%,
            hsla(0, 0%, 0%, 0.182) 46.6%,
            hsla(0, 0%, 0%, 0.249) 53.1%,
            hsla(0, 0%, 0%, 0.320) 58.9%,
            hsla(0, 0%, 0%, 0.394) 64.3%,
            hsla(0, 0%, 0%, 0.468) 69.3%,
            hsla(0, 0%, 0%, 0.540) 74.1%,
            hsla(0, 0%, 0%, 0.607) 78.8%,
            hsla(0, 0%, 0%, 0.668) 83.6%,
            hsla(0, 0%, 0%, 0.721) 88.7%,
            hsla(0, 0%, 0%, 0.762) 94.1%,
            hsla(0, 0%, 0%, 0.790) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
}

/* Background images (expanded @each loop) */
.card:nth-child(1)::before {
    background-image: url('../img/plumbing.jpg');
}

.card:nth-child(2)::before {
    background-image: url('../img/bathroom.jpg');
}

.card:nth-child(3)::before {
    background-image: url('../img/heating.jpg');
}

.card:nth-child(4)::before {
    background-image: url("https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ");
}

/* Content */
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
}

.content > * + * {

    margin-top: 1rem;
}

.title {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
    color: white;
}

.copy {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.35;
}

/* Button */
.btn {
    cursor: pointer;
    border-radius: 15px;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: white;
    background-color: black;
    border: none;
}

.btn:hover {
    background-color: #0d0d0d;
}

.btn:focus {
    outline: 1px dashed yellow;
    outline-offset: 3px;
}

/* Hover interactions */
@media (hover: hover) and (min-width: 600px) {
    .card::after {
        transform: translateY(0);
    }

    .content {
        transition: 0.5s ease;

        transform: translateY(calc(100% - 4.5rem));
    }

    .content > *:not(.title) {
        opacity: 0;
        transform: translateY(1rem);
        transition:
            transform var(--d) var(--e),
            opacity var(--d) var(--e);
    }

    .card:hover,
    .card:focus-within {
        align-items: center;
    }

    .card:hover::before,
    .card:focus-within::before {
        transform: translateY(-4%);
    }

    .card:hover::after,
    .card:focus-within::after {
        transform: translateY(-50%);
    }

    .card:hover .content,
    .card:focus-within .content {
        transform: translateY(0);
    }

    .card:hover .content > *:not(.title),
    .card:focus-within .content > *:not(.title) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--d) / 8);
    }

    .card:focus-within::before,
    .card:focus-within::after,
    .card:focus-within .content,
    .card:focus-within .content > *:not(.title) {
        transition-duration: 0s;
    }
}


.cntr {
    text-align: center;
}

:root {
    --line-width: 95%;
    --line-colour: var(--colour2);
}

.line {
    width: 100%;
    display: grid;
    grid-gap: 32px;
    grid-template-columns: auto max-content auto;
    opacity: 0.5;
}

.line i,
.line svg {
    align-self: center;
    font-size: 24px;
    color: #444;
}

.line::before {
    content: "";
    height: 1px;
    align-self: center;
    justify-self: end;
    width: var(--line-width);
    background-color: var(--line-colour);
}

.line::after {
    content: "";
    height: 1px;
    align-self: center;
    justify-self: start;
    width: var(--line-width);
    background-color: var(--line-colour);
}

.alt .line i,
.alt .line svg {
    color: #fff;
}

.alt .line::before {
    background-color: #fff;
}

.alt .line::after {
    background-color: #fff;
}


@media(min-width: 992px) {
    .page-img {
        grid-row: 1;
        grid-column: 2;
    }

    .img-left {
        grid-column: 1;
    }

    .page-content {
        grid-row: 1;
    }
}

.center {
    text-align: center;
}

.list {
    display: grid;
    align-content: center;
}

.list p {
    align-content: center;
    display: grid;
    grid-template-columns: max-content auto;
    margin-left: 32px;
}

.list p:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: var(--colour1);
    align-self: start;
    content: "\f054";
    margin-right: 8px;
    font-size: 16px;
    padding-right: 8px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.alt {
    background-color: var(--colour3);
    padding: 64px 0 !important;
}

.alt p {
    color: var(--colour4);
}

.alt b {
    color: #fff;
}

.alt :is(h1, h2, h3, h4, .header-block) {
    color: #fff;
}

.alt .list p:before {
    color: #fff;
}

.sub-heading {
    font-size: 28px;
}

.sub-heading {
    font-size: 28px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.btn-fancy {
    background-color: transparent;
    border: 2px solid var(--colour2);
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
    margin-top: 16px;

    justify-self: start;

}

.btn-fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: var(--colour2);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.btn-fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--colour2);
}

.btn-fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.btn-fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.btn-fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.alt .btn-fancy {
    border: 2px solid var(--colour4);
}

.alt .btn-fancy::before {
    background: var(--colour4);
}

.alt .btn-fancy .text {
    color: var(--colour4);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.alt .btn-fancy .top-key {
    background: var(--colour3);
}

.alt .btn-fancy .bottom-key-1 {
    background: var(--colour3);
}

.alt .btn-fancy .bottom-key-2 {
    background: var(--colour3);
}



.btn-fancy:hover {
    color: white;
    background: var(--colour2);
}


.alt .btn-fancy:hover {
    color: white;
    background: var(--colour2);
}

.alt .btn-fancy:hover {
    color: var(--colour4);
    background: var(--colour4);
}





.btn-fancy:hover::before {
    width: 0.9375rem;
    background: white;
}

.btn-fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}



.alt .btn-fancy:hover::before {
    background: var(--colour3);
}

.alt .btn-fancy:hover .text {
    color: var(--colour3);
}



.btn-fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.btn-fancy:hover .bottom-key-1,
.btn-fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.btn-chameleon {

    background-color: var(--colour2);
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    transition: 0.3s;

    justify-self: start;

    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05),
        0 2px 2px rgba(0, 0, 0, 0.05),
        0 4px 4px rgba(0, 0, 0, 0.05),
        0 8px 8px rgba(0, 0, 0, 0.05),
        0 16px 16px rgba(0, 0, 0, 0.05);

}

.btn-chameleon:hover {

    background-color: var(--colour1);
    color: var(--colour2);
    cursor: pointer;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.alt .btn-chameleon {
    background-color: var(--colour4);
    color: var(--colour3);
}

.alt .btn-chameleon:hover {
    background-color: var(--colour2);
    color: #fff;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.btn-thai {
    padding: 20px 60px;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    background: linear-gradient(to right, var(--colour1), var(--colour2));
    cursor: pointer;
    text-align: center;
    color: #fff;
    justify-self: start;
}

.btn-thai::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 4px;
    background-color: #111;
    z-index: -1;
    transition: 200ms
}

.btn-thai::after {
    content: attr(data);
    font-size: 16px;
    background: linear-gradient(to left, var(--colour1), var(--colour2));
    -webkit-background-clip: text;
    color: transparent;
    transition: 200ms
}

.btn-thai:hover::before {
    opacity: 50%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.btn-thai:hover::after {
    color: white;
}

.btn-speech {
    justify-self: start;
    padding: 12px 16px;
    border: 1px solid #ffffff;
    border-radius: 16px 16px 16px 0;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    transition: all ease .2s;
    z-index: 1;
    color: var(--colour1);

    border: solid 2px var(--colour1);

    background-color: #fff;
}

.alt .btn-speech {
    border: solid 2px var(--colour4);
    background-color: #fff0;
}

.btn-speech::before {
    content: '';
    width: 0;
    height: 350%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--colour1);
    transition: .2s ease;
    display: block;
    z-index: -1;
}

.alt .btn-speech::before {
    background: var(--colour4);
}

.btn-speech:hover::before {
    width: 110%;
}

.btn-speech:hover {
    transform: translate(0px, 2px) scale(0.99);
    border: solid 2px #fff;
}

.alt .btn-speech:hover {
    border: solid 2px var(--colour3);
}

.btn-speech h3 {
    color: var(--colour1);
    transition: all ease .2s;
}

.alt .btn-speech h3 {
    color: var(--colour4);
}

.btn-speech:hover h3 {
    color: var(--colour4);
}

.alt .btn-speech:hover h3 {
    color: var(--colour3);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.minus-32 {
    margin-bottom: -32px;
}

.minus-64 {
    margin-bottom: -64px;
}
