article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:700;}dfn{font-style:italic;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em;}pre{white-space:pre-wrap;word-wrap:break-word;}q{quotes:\201C \201D \2018 \2019;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-.5em;}sub{bottom:-.25em;}img{border:0;}svg:not(:root){overflow:hidden;}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,html input[type=button],/* 1 */
input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;}button[disabled],input[disabled]{cursor:default;}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}body,figure{margin:0;}legend,button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}

.clearfix:after {visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

:root {
    /* fonts */
    font-size:10px;
    --text: "Playfair Display", serif;
    --headers: "Poppins", sans-serif;
    --standard:400;
    --semibold:500;
    --bold:700;

    /* colours */
    --basic-text: #2f3640;
    --background: #f5f6fa;
    --accent: #c44569;
}

main {
    max-width:1240px;
    width:100%;
    background:var(--background);
    margin:0 auto;
    color:var(--basic-text);
}

.inner-wrapper {
    max-width:1100px;
    width:100%;
    padding:40px 20px 0 20px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    position:absolute;
    top:-400px;
}

.normal-list {
    list-style:none;
    margin: 0;
    padding: 0;
}

/* =====
Header 
=====*/

header {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family:var(--headers);
    font-weight:400;
    font-size:1.8rem;
    padding-top:60px;
    width:100%;
}

header h2 {
    font-size:5rem;
    font-weight:500;
    margin-bottom:10px;
}

header ul {
    color:var(--accent);
    display: flex;
    justify-content: space-between;
    align-items:center;
    max-width:600px;
    width:100%;
}

@media screen and (max-width: 460px) {

    header h2 {
        font-size:4rem;
        margin-bottom:20px;
    }

    header ul {
        flex-direction: column;
    }
}

.header__logo {
    width:300px;
}

/* =====
Description 
===== */

.description {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family:var(--text);
    font-weight:400;
    font-size:2.8rem;
    line-height: 4rem;
    width:100%;
}

.description p {
    margin:0 0 40px 0;
    padding:0 60px;
}

.description span {
    color:var(--accent);
}

@media screen and (max-width: 768px) {

    .description p {
        padding:0 40px;
    }
}

@media screen and (max-width: 460px) {

    .description p {
        font-size:2rem;
        line-height: 3.2rem;
        text-align:center;
        padding:0 10px;
    }
}

/* =====
About
===== */

.about {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family:var(--text);
    font-weight:400;
    font-size:2.8rem;
    line-height: 4rem;
    width:100%;
}

.about h3 {
    font-family:var(--headers);
    font-size:3rem;
    font-weight:var(--semibold);
    margin-top:0;
}

.about p {
    margin:10px 0;
    padding:0 60px;
    text-align:left;
}

.link-more, .link-home, .link-live {
    font-size:1.8rem;
    font-family: var(--headers);
    color:var(--accent);
    text-decoration:underline;
    opacity:0.7;
    transition:0.3s;
}

.link-more:hover, .link-home:hover {
    opacity:1;
}


@media screen and (max-width: 768px) {

    .about p {
        padding:0 40px;
    }
}

@media screen and (max-width: 460px) {

    .about p {
        font-size:2rem;
        line-height: 3.2rem;
        text-align:left;
        padding:0 10px;
    }
}

/* =====
Past Projects 
===== */

.projects {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.projects h3 {
    font-family:var(--headers);
    font-size:3rem;
    font-weight:var(--semibold);
    margin-top:0px;
}

.projects-list {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items:center;
    text-align:center;
    margin:0;
    padding:0 30px;
}

.projects-list li {
    width:32%;
    margin-bottom:40px;
}

.projects-list li img {
    width:100%;
    margin-bottom:20px;
}

@media screen and (max-width: 768px) {

    .projects-list {
        flex-direction: column;
    }

    .projects li {
        width:100%;
    }
}

@media screen and (max-width: 460px) {

    .projects h3 {
        margin-bottom:20px;
    }

    .projects .inner-wrapper {
        padding-left:5px;
        padding-right:5px;
    }

    .projects-list {
        padding:0 10px;
    }
}

@media screen and (max-width: 375px) {

    .projects-list {
        padding:0;
    }
}



/* =====
Steps 
===== */

.steps {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.steps h3 {
font-family:var(--headers);
font-size:3rem;
font-weight:var(--semibold);
 margin-bottom:0;
}

@media screen and (max-width: 460px) {
    .steps h3 {
        /* font-size:2rem; */
        margin-bottom:30px;
        width:96%;
       }
}

.steps-list li {
    padding:0 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}



@media screen and (max-width: 768px) {

    .steps-list li {
        padding:0 40px;
    }

}

@media screen and (max-width: 460px) {
    .steps-list li {
        padding:0 10px;
        flex-direction: column;
    }

    .steps-list li.step-2 {
        flex-direction:column;
    }
}

.steps-list li p { 
    font-family:var(--text);
    font-weight:400;
    font-size:2.8rem;
    line-height: 4rem;
    text-align: left;
    width:50%;
}

@media screen and (max-width: 460px) {
    .steps-list li p{
        font-size:2rem;
        line-height: 3.2rem;
        text-align: left;
        width:100%;
        padding:0 10px;
    }

}

.steps-list li img {
    max-width:200px;
    max-height:180px;
    width:100%;
}

/* =====
Form 
===== */

.form {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom:60px;
}

.form p {
    font-weight:400;
    font-size:2.8rem;
    line-height: 4rem;
    font-family:var(--text);
}

@media screen and (max-width: 768px) {

    .form p {
        padding:0 40px;
    }
}

@media screen and (max-width: 460px) {

    .form p {
        font-size:2rem;
        line-height: 3.2rem;
        padding:0 10px;
    }
}

form {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size:1.8rem;
    width:300px;
}

input, textarea {
    border:none;
    border-bottom:2px solid var(--accent);
    border-radius:0;
    margin-top:5px;
    background:none;
    width:100%;
    padding:4px 0;
} 

input:focus, textarea:focus {
    outline:none;
    border:2px solid var(--accent);
}

label {
    font-family: var(--headers);
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom:30px;
    width:100%;
    position:relative;
    display: inline-block;
    text-align:left;
}


span {
    color:var(--accent);
    display:inline;
}

button {
    margin-top:10px;
    opacity:0.9;
    transition:0.3s;
    border:none;
    border:2px solid var(--accent);
    border-color:var(--accent);
    color:var(--basic-text);
    padding:10px 20px;
    background:var(--background);
    
}

button:hover {
    opacity:1;
    background:var(--accent);
    color:var(--background);
}


/* =====
Footer 
===== */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background:var(--basic-text);
    padding-bottom:20px;
}

footer .inner-wrapper {
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    width:300px;
    display: flex;
    justify-content: flex-end;
    align-content: center;
}

.social-icons img {
    width:40px;
    height:40px;
    margin-left:30px;
}

@media screen and (max-width: 460px) {
    footer .inner-wrapper {
        flex-direction:column-reverse;
    }

    .social-icons {
        width:200px;
        justify-content: space-around;
    }

    .social-icons img {
        margin-left:0;
    }

}

footer p {
    color:var(--background);
    font-size:1rem;
    font-weight:var(--standard);
    display: inline-block;
}

/* =====
ABOUT PAGE 
===== */
.aboutpage .inner-wrapper{
    padding-bottom:0px;
}
.aboutpage-header {
    font-size:5rem;
    font-weight:500;
    margin-bottom:10px;
}

@media screen and (max-width: 460px) {

    .aboutpage-header {
        font-size:4rem;
        margin-bottom:20px;
    }

    .description-wrapper {
        padding-top:0;
    }

    .aboutpage img {
        margin-bottom:40px;
    }

    .description-wrapper p {
        font-size:2rem;
    }
}

.aboutpage-description {
    margin-top:0px;
}

.aboutpage-description .inner-wrapper p {
    text-align:left;
}

.link-home {
    margin:40px 0;
}

/* =====
Digital Signage Page
===== */

.display-gallery {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    margin-top:20px;
}

.display-gallery li {
    width:32%;
}

.display-gallery img {
    width:100%;
}

.display-gallery li.feature-image {
    width:100%;
}

@media screen and (max-width: 768px) {

    .display-gallery li {
        width:100%;
    }
}

@media screen and (max-width: 460px) {

    .aboutpage-header {
        font-size:4rem;
        margin:-20px 0 20px 0;
    }
}

/* =====
Standard Project Pages 
===== */

.projectpage .inner-wrapper{
    padding-bottom:0px;
}
.projectpage-header {
    font-size:5rem;
    font-weight:500;
    margin-bottom:10px;
}

@media screen and (max-width: 460px) {

    .projectpage-header {
        font-size:4rem;
        line-height:5rem;
        margin:-20px 0 20px 0;
    }

    .projectpage p {
        font-size:2rem;
    }
}

.projectpage-description {
    margin-top:0px;
}

.projectpage-description .inner-wrapper p {
    text-align:left;
    padding:0;
}

.intro-text {
    width:100%;
}

.full-project-image {
    max-width:1100px;
    width:100%;
    margin-top:40px;
}

.last-image {
    margin-bottom:60px;
}

.dataviz-image {
    margin:0 0 30px 0;
}