/*********************************
************ GENERAL *************
*********************************/

/* font-family: "Oxygen", sans-serif; */

:root{
    --black: #0e0e0e;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: "Oxygen", sans-serif;
    color: var(--black);
    margin: 0;
}

.nav-container, .hero-container, .intro-container, .solutions-container, .our-work-container, .contact-container, .footer-container {
    max-width: 90%;
    margin: auto;
}

.btn {
    border: solid #0e0e0e 2px;
    padding: 7px 25px;
    border-radius: 10px;
    position: relative;
    background: white;
    transition: 0.3s ease;
    z-index: 10;
}

.btn::after {
    position: absolute;
    content: '';
    right: -8px;
    bottom: -8px;
    left: 8px;
    top: 8px;
    border: solid 2px #0e0e0e;
    border-radius: 10px;
    transition: 0.3s ease;
    z-index: -10;
}

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

.btn:hover::after {
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
}

h1 span {
   background: white; 
   line-height: 56px;
    padding: 2px 10px;
}

h2 {
    font-size: 36px;
}

/*********************************
************** NAV ***************
*********************************/

nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 50px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    flex-basis: 20%;
}

nav .logo img {
    max-width: 100%;
    display: block;
}

.menu {
    flex-basis: 80%;
    text-align: right;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    display: inline-block;
    padding: 0 2%;
}

.menu ul .mobile {
    display: none;
}

.menu ul li a, #solution-menu {
    text-decoration: none;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.menu .regular-link:hover, #solution-menu:hover  {
    text-decoration: underline;
}

#dropdown {
    display: none;
    background: white;
    position: relative;
    margin: auto;
    z-index: 100;
    padding-bottom: 30px;
    width: 60%;
    animation-duration: 0.5s;
    animation-name: animate-fade;
    animation-fill-mode: backwards;
    border: solid 2px var(--black);
    border-radius: 20px;
    padding-top: 30px;
}

@keyframes animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.dropdwon-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
    padding: 0 30px;
}

.dropdown-item {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.dropdown-item .item-img {
    flex-basis: 20%;
}

.dropdown-item .item-img img {
    max-width: 60%;
    margin: auto;
    display: block;
}

.dropdown-item .item-copy {
    flex-basis: 70%;
}

.dropdown-item .item-copy a {
    color: var(--black);
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-item .item-copy h3 {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    margin-bottom: 7px;
    font-weight: 500;
    transition: 0.3s ease;
}

.dropdown-item .item-copy p {
    font-weight: 300;
    margin: 0;
    font-size: 14px;
    transition: 0.3s ease;
}

.dropdown-item .item-copy a:hover h3 {
    font-weight: 700;
    text-decoration: underline;
}

#mobile-menu {
    display: none;
}

/*********************************
************* HERO ***************
*********************************/

#hero {
    background-image: url('../img/hero-back.jpg');
    background-size: cover;
    margin-top: -22px;
    padding-bottom: 100px;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
}

.hero-container .hero-copy {
    flex-basis: 50%;
    padding-right: 5%;
}

.hero-container .hero-img {
    flex-basis: 40%;
}

.hero-container .hero-img img {
    max-width: 90%;
    margin-bottom: -175px;
    border: 2px solid white;
    border-radius: 20px;
}

#hero h2 {
    margin-bottom: 70px;
}

#hero a {
    color: var(--black);
    font-size: 28px;
    text-decoration: none;
    transition: 0.3s ease;
    text-transform: capitalize;
    font-weight: 300;
    padding: 7px 50px;
}

#hero a:hover {
    color: white;
}

/*********************************
************* INTRO **************
*********************************/

#intro {
    padding-bottom: 5%;
}

#intro p {
    font-size: 48px;
    font-weight: 300;
    padding: 5% 5% 0 5%;
}

#intro a {
    color: var(--black);
    font-size: 28px;
    text-decoration: none;
    transition: 0.3s ease;
    text-transform: capitalize;
    font-weight: 300;
    padding: 7px 50px;
    margin-left: 5%;
}

#intro a:hover {
    color: white;
}

/*********************************
*********** SOLUTIONS ************
*********************************/

#solutions h2 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5%;
}

.solutions-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.solutions-item {
    flex-basis: 48%;
    border: solid 2px var(--black);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 1% 0;
    min-height: 275px;
}

.solutions-item .solutions-icon {
    flex-basis: 15%;
    min-height: 100%;
    border-radius: 17px 0 0 17px;
    border-right: 2px solid var(--black);
}

.solutions-item .solutions-icon img {
    max-width: 50%;
    display: block;
    margin: auto;
    margin-top: 20%;
}

.solutions-item .solutions-copy {
    flex-basis: 50%;
    padding-left: 3%;
    padding-right: 3%;
    transition: 0.3s ease;
}

.solutions-item .solutions-copy:hover {
    flex-basis: 60%;
}

.solutions-item .solutions-copy:hover h4 {
    font-size: 22px;
}

.solutions-item .solutions-copy a {
    color: var(--black);
    text-decoration: none;
}

.solutions-item .solutions-copy h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    transition: 0.3s ease;
}

.solutions-item .solutions-copy p {
    font-size: 16px;
    margin-top: 0;
    font-weight: 300;
}

.solutions-item .solutions-copy ul {
    list-style: none;
    padding-left: 0;
}

.solutions-item .solutions-copy ul li {
    font-size: 16px;
    margin-top: 0;
    font-weight: 300;
}

.solutions-item .solutions-img {
    flex-basis: 35%;
    border-radius: 0 17px 17px 0;
    background-position: center;
    border-left: 2px solid var(--black);
    background-size: cover;
}

.design-develop .solutions-icon {
    background: rgb(134,246,109);
    background: -webkit-linear-gradient(61deg, rgba(134,246,109,1) 0%, rgba(95,169,204,1) 100%);
    background: -o-linear-gradient(61deg, rgba(134,246,109,1) 0%, rgba(95,169,204,1) 100%);
    background: linear-gradient(151deg, rgba(134,246,109,1) 0%, rgba(95,169,204,1) 100%);
}

.migrate .solutions-icon {
    background: rgb(95,169,204);
    background: -webkit-linear-gradient(61deg, rgba(95,169,204,1) 0%, rgba(141,97,246,1) 100%);
    background: -o-linear-gradient(61deg, rgba(95,169,204,1) 0%, rgba(141,97,246,1) 100%);
    background: linear-gradient(151deg, rgba(95,169,204,1) 0%, rgba(141,97,246,1) 100%);
}

.automation .solutions-icon {
    background: rgb(141,97,246);
    background: -webkit-linear-gradient(61deg, rgba(141,97,246,1) 0%, rgba(239,118,223,1) 100%);
    background: -o-linear-gradient(61deg, rgba(141,97,246,1) 0%, rgba(239,118,223,1) 100%);
    background: linear-gradient(151deg, rgba(141,97,246,1) 0%, rgba(239,118,223,1) 100%);
}

.optimisation .solutions-icon {
    background: rgb(239,118,223);
    background: -webkit-linear-gradient(61deg, rgba(239,118,223,1) 0%, rgba(245,158,128,1) 100%);
    background: -o-linear-gradient(61deg, rgba(239,118,223,1) 0%, rgba(245,158,128,1) 100%);
    background: linear-gradient(151deg, rgba(239,118,223,1) 0%, rgba(245,158,128,1) 100%);
}

.support .solutions-icon {
    background: rgb(245,158,128);
    background: -webkit-linear-gradient(61deg, rgba(245,158,128,1) 0%, rgba(134,246,109,1) 100%);
    background: -o-linear-gradient(61deg, rgba(245,158,128,1) 0%, rgba(134,246,109,1) 100%);
    background: linear-gradient(151deg, rgba(245,158,128,1) 0%, rgba(134,246,109,1) 100%);
}

.marketing .solutions-icon {
    background: rgb(134,246,109);
    background: -webkit-linear-gradient(61deg, rgba(134,246,109,1) 0%, rgba(141,97,246,1) 100%);
    background: -o-linear-gradient(61deg, rgba(134,246,109,1) 0%, rgba(141,97,246,1) 100%);
    background: linear-gradient(151deg, rgba(134,246,109,1) 0%, rgba(141,97,246,1) 100%);
}

.audits .solutions-icon {
    background: rgb(141,97,246);
    background: -webkit-linear-gradient(61deg, rgba(141,97,246,1) 0%, rgba(245,158,128,1) 100%);
    background: -o-linear-gradient(61deg, rgba(141,97,246,1) 0%, rgba(245,158,128,1) 100%);
    background: linear-gradient(151deg, rgba(141,97,246,1) 0%, rgba(245,158,128,1) 100%);
}



.design-develop .solutions-img {
    background-image: url('../img/woman-pointing-at-a-computer-with-code.jpg');
}

.migrate .solutions-img {
    background-image: url('../img/movement-in-a-highway.jpg');
}

.automation .solutions-img {
    background-image: url('../img/robotic-arm-ging-a-man-a-coffee.jpg');
}

.optimisation .solutions-img {
    background-image: url('../img/man-writing-on-a-transparent-board.jpg');
}

.support .solutions-img {
    background-image: url('../img/tech-support-man-solving-a-ticket.jpg');
}

.marketing .solutions-img {
    background-image: url('../img/two-people-going-over-a-marketing-strategy.jpg');
}

.audits .solutions-img {
    background-image: url('../img/two-man-performing-a-website-audit.jpg');
}

/*********************************
************ OUR WORK ************
*********************************/

#our-work h2 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5%;
    margin-top: 10%;
}

.work-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 7%;
}

.work-item .work-img {
    flex-basis: 40%;
    padding: 0 3%;
}

.work-item .work-img img {
    max-width: 100%;
    display: block;
}

.work-item .work-copy {
    flex-basis: 53%;
}

.work-item .work-copy h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
}

.work-item .work-copy .subtitle {
    font-size: 26px;
    font-weight: 300;
    margin-top: 1%;
}

.work-item .work-copy .description {
    margin-bottom: 35px;
}

.work-item .work-copy .quote {
    border: solid 2px var(--black);
    border-radius: 20px;
    padding: 0 5%;
}

.work-item .work-copy .quote span{
    font-family: 'Raleawy', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.work-item .work-copy .quote .author {
    font-style: italic;
}

.pampaloni .work-copy .quote {
    background: rgb(239,118,223);
    background: -webkit-linear-gradient(61deg, rgba(239,118,223,1) 0%, rgba(245,158,128,1) 100%);
    background: -o-linear-gradient(61deg, rgba(239,118,223,1) 0%, rgba(245,158,128,1) 100%);
    background: linear-gradient(151deg, rgba(239,118,223,1) 0%, rgba(245,158,128,1) 100%);
}

.novameat .work-copy .quote {
    background: rgb(134,246,109);
    background: -webkit-linear-gradient(61deg, rgba(134,246,109,1) 0%, rgba(95,169,204,1) 100%);
    background: -o-linear-gradient(61deg, rgba(134,246,109,1) 0%, rgba(95,169,204,1) 100%);
    background: linear-gradient(151deg, rgba(134,246,109,1) 0%, rgba(95,169,204,1) 100%);
}

/*********************************
************ CONTACT *************
*********************************/

#contact {
    margin: 10% 0;
}

.contact-copy {
    position: relative;
    background: rgb(141,97,246);
    background: -webkit-linear-gradient(61deg, rgba(141,97,246,1) 0%, rgba(95,169,204,1) 50%, rgba(134,246,109,1) 100%);
    background: -o-linear-gradient(61deg, rgba(141,97,246,1) 0%, rgba(95,169,204,1) 50%, rgba(134,246,109,1) 100%);
    background: linear-gradient(151deg, rgba(141,97,246,1) 0%, rgba(95,169,204,1) 50%, rgba(134,246,109,1) 100%);
    width: 70%;
    border: solid 2px var(--black);
    border-radius: 20px;
    margin: 5%;
    padding-left: 7%;
    padding-top: 5%;
    padding-bottom: 10%;
}

.contact-copy::after {
    position: absolute;
    content: '';
    right: 16px;
    bottom: 12px;
    left: -16px;
    top: -12px;
    border: solid 2px #0e0e0e;
    border-radius: 20px;
    transition: 0.3s ease;
    z-index: -10;
}

.contact-copy h2 {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    color: white;
    max-width: 50%;
}

.contact-copy p {
    color: white;
    width: 50%;
    font-size: 20px;
    padding-bottom: 3%;
}

.contact-copy .btn {
    text-decoration: none;
    color: var(--black);
    font-size: 26px;
    font-weight: 300;
    padding: 1% 5%;
    text-transform: capitalize;
}

.contact-copy .btn:hover {
    color: white;
}

.contact-img {
    position: relative;
    display: block;
    width: 40%;
    margin-left: 50%;
    margin-top: -33%;
}

.contact-img img {
    max-width: 100%;
}

/*********************************
************* FOOTER *************
*********************************/

footer {
    background-image: url('../img/footer-back.jpg');
    background-size: cover;
}

footer .logo {
    display: block;
    width: 20%;
    margin-left: 75%;
    padding-top: 3%;
    padding-bottom: 1%;
}

footer .logo img {
    display: block;
    max-width: 100%;
}

footer .footer-container {
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    padding-top: 2%;
    padding-bottom: 10%;
}

footer .footer-container .subscription {
    flex-basis: 50%;
}

footer .footer-container .subscription h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    margin: 0;
}

footer .footer-container .subscription p {
    font-size: 20px;
    margin-top: 2%;
}

footer .footer-container .subscription .sub-email {
    padding: 2%;
    border: solid 2px var(--black);
    font-size: 22px;
    font-weight: 300;
    border-radius: 10px;
    width: 60%;
}

footer .footer-container .subscription .submit {
    border: solid #0e0e0e 2px;
    padding: 2% 8%;
    border-radius: 10px;
    position: relative;
    background: white;
    transition: 0.3s ease;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
}

footer .footer-container .subscription .submit:hover {
    background: var(--black);
    color: white;
}

footer .footer-container .links {
    flex-basis: 40%;
    display: flex;
    align-content: flex-start;
    justify-content: space-evenly;
    padding-left: 5%;
}

footer .footer-container .links .column-left {
    flex-basis: 50%;
}

footer .footer-container .links .column-right {
    flex-basis: 50%;
}

footer .footer-container .links h4 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
}

footer .footer-container .links ul {
    margin: 2% 0;
    list-style: none;
    padding: 0;
}

footer .footer-container .links ul li {
    margin: 2% 0;
}

footer .footer-container .links ul li a {
    color: var(--black);
    text-decoration: none;
    transition: 0.3s ease;
}

footer .footer-container .links ul li a:hover {
    text-decoration: underline;
}

footer .notes {
    text-align: center;
    margin: 0;
    padding-bottom: 2%;
    font-size: 12px;
}

#sub-result {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    margin-top: 25px;
}

/*********************************
************ COOKIES *************
*********************************/
#cookieNotice {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 20%;
    border: solid 2px var(--black);
    border-radius: 20px;
    padding: 10px 20px 20px 20px;
    background: white;
    z-index: 99999999;
}

#cookieNotice button {
    background: var(--black);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 5px 20px;
    border: 2px solid var(--black);
    transition: 0.3s ease;
}

#cookieNotice button:hover {
    background: white;
    color: var(--black);
    cursor: pointer;
}

#cookieNotice a {
    color: var(--black);
}

/*********************************
**********************************
*********** RSPONSIVE ************
**********************************
*********************************/
@media only screen and (max-width: 1160px) {
    /* NAV */
    nav {
        padding-top: 0;
    }
    
    nav .logo {
        flex-basis: 50%;
    }

    .menu {
        flex-basis: 50%;
    }
    
    .menu ul .desktop {
        display: none;
    }

    .menu ul .mobile {
        display: inline-block;
    }
    
    #mobile-toggle {
        position: relative;
        z-index: 999999;
    }
    
    .menu-btn {
      background-color: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      padding: 0;
    }
    .line {
      fill: none;
      stroke: black;
      stroke-width: 6;
      transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .line1 {
      stroke-dasharray: 60 207;
      stroke-width: 6;
    }
    .line2 {
      stroke-dasharray: 60 60;
      stroke-width: 6;
    }
    .line3 {
      stroke-dasharray: 60 207;
      stroke-width: 6;
    }
    .opened .line1 {
      stroke-dasharray: 90 207;
      stroke-dashoffset: -134;
      stroke-width: 6;
    }
    .opened .line2 {
      stroke-dasharray: 1 60;
      stroke-dashoffset: -30;
      stroke-width: 6;
    }
    .opened .line3 {
      stroke-dasharray: 90 207;
      stroke-dashoffset: -134;
      stroke-width: 6;
    }
    
    #mobile-menu {
        display: none;
        background: white;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        animation-duration: 0.5s;
        animation-name: animate-fade;
        animation-fill-mode: backwards;
        padding: 5% 0;
        min-height: 100vh;
    }

    @keyframes animate-fade {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    #mobile-menu .mobile-wrapper {
        display: block;
        width: 80%;
        margin: auto;
        padding-top: 10%;
    }
    
    #mobile-menu ul {
        list-style: none;
        padding: 0;
    }
    
    #mobile-menu ul li {
        padding: 2% 0;
    }
    
    #mobile-menu ul li a {
        color: var(--black);
        text-decoration: none;
        font-size: 26px;
    }
    
    #mobile-menu ul #mobile-dropdown-hide {
        display: none;
    }

    .mobile-item {
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 15px;
    }

    .mobile-item .mobile-item-img {
        flex-basis: 7%;
    }

    .mobile-item .mobile-item-img img {
        max-width: 100%;
        margin: auto;
        display: block;
    }

    .mobile-item .mobile-item-copy {
        flex-basis: 60%;
        padding-left: 5%;
    }

    .mobile-item .mobile-item-copy a {
        color: var(--black);
        text-decoration: none;
        transition: 0.3s ease;
    }

    .mobile-item .mobile-item-copy h3 {
        font-family: 'Raleway', sans-serif;
        margin: 0;
        margin-bottom: 7px;
        font-weight: 500;
        font-size: 22px;
        transition: 0.3s ease;
    }

    .mobile-item .mobile-item-copy p {
        font-weight: 300;
        margin: 0;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .mobile-item .mobile-item-copy a:hover h3 {
        font-weight: 700;
        text-decoration: underline;
    }
    
    /* SOLUTIONS */
    #solutions h2 {
        margin-bottom: 10%;
    }

    .solutions-item {
        flex-basis: 100%;
        margin: 5% 0;
        min-height: 0;
        flex-wrap: wrap;
    }

    .solutions-item .solutions-icon {
        flex-basis: 100%;
        min-height: 0;
        border-radius: 17px 17px 0 0;
        border-right: none;
        border-bottom: 2px solid var(--black);
    }

    .solutions-item .solutions-icon img {
        max-width: 10%;
        margin: 3%;
    }

    .solutions-item .solutions-copy {
        flex-basis: 100%;
        padding-left: 2%;
        padding-right: 2%;
    }

    .solutions-item .solutions-copy:hover {
        flex-basis: 100%;
    }
    
    .solutions-item .solutions-copy h4 {
        font-size: 28px;
        margin-top: 5%;
    }
    
    .solutions-item .solutions-copy:hover h4 {
        font-size: 32px;
    }

    .solutions-item .solutions-img {
        flex-basis: 100%;
        min-height: 300px;
        border-radius: 0 0 17px 17px;
        border-left: none;
        border-top: 2px solid var(--black);
    }
    
    /* OUR WORK */
    #our-work h2 {
        margin-bottom: 15%;
        margin-top: 15%;
    }

    .work-item {
        margin-bottom: 15%;
        flex-wrap: wrap;
    }

    .work-item .work-img {
        flex-basis: 100%;
        padding: 0;
    }

    .work-item .work-copy {
        flex-basis: 100%;
        padding-top: 10%;
    }
    
    .novameat .work-copy {
        order: 2;
    }
    
    .novameat .work-img {
        order: 1;
    }
    
    /* FOOTER */
    footer {
        background-image: url('../img/footer-back-mobile.jpg');
    }

    footer .logo {
        display: block;
        width: 20%;
        margin-left: 75%;
        padding-top: 5%;
        padding-bottom: 2%;
    }

    footer .footer-container {
        flex-wrap: wrap;
    }

    footer .footer-container .subscription {
        flex-basis: 100%;
    }

    footer .footer-container .subscription .sub-email {
        padding: 1%;
        font-size: 26px;
        width: 60%;
        display: inline-block;
    }

    footer .footer-container .subscription .submit {
        padding: 1% 10%;
        font-size: 26px;
        display: inline-block;
    }

    footer .footer-container .links {
        flex-basis: 100%;
        flex-wrap: wrap;
        padding-left: 0;
        margin-top: 5%;
    }

    footer .footer-container .links .column-left {
        flex-basis: 50%;
    }

    footer .footer-container .links .column-right {
        flex-basis: 50%;
    }

    footer .footer-container .links h4 {
        margin-bottom: 3%;
        font-size: 26px;
    }

    footer .footer-container .links ul li {
        margin: 2% 0;
    }

    footer .footer-container .links ul li a {
        font-weight: 24px;
    }
    
    /* COOKIES */
    #cookieNotice {
        width: 90%;
    }
}

@media only screen and (max-width: 768px) {
    /* NAV */
    #mobile-menu .mobile-wrapper {
        padding-top: 20%;
    }
    
    #mobile-menu ul li {
        padding: 5% 0;
    }
    
    .mobile-item {
        padding-bottom: 5%;
        padding-top: 5%;
    }

    .mobile-item .mobile-item-img {
        flex-basis: 15%;
    }

    .mobile-item .mobile-item-img img {
        max-width: 100%;
        margin: auto;
        display: block;
    }

    .mobile-item .mobile-item-copy {
        flex-basis: 85%;
        padding-left: 5%;
    }
    
    #mobile-menu ul #mobile-dropdown-hide {
        padding: 0;
    }
    
    #mobile-dropdown-hide ul li {
        padding: 0;
    }

    
    /* HERO */
    
    #hero {
        background-image: url('../img/hero-back-mobile.png');
    }
    .hero-container {
        padding-top: 150px;
        flex-wrap: wrap;
    }

    .hero-container .hero-copy {
        flex-basis: 100%;
        padding-bottom: 70px;
        padding-right: 0;
    }

    .hero-container .hero-img {
        flex-basis: 100%;
    }

    .hero-container .hero-img img {
        max-width: 100%;
    }

    #hero h1 {
        font-size: 30px;
    }
    
    #hero h2 {
        margin-bottom: 40px;
    }
    
    /* INTRO */
    #intro {
        padding-bottom: 15%;
        padding-top: 25%;
    }

    #intro p {
        font-size: 28px;
        padding: 0;
        margin-bottom: 50px;
    }

    #intro a {
        color: var(--black);
        font-size: 28px;
        margin-left: 0;
    }
    
    /* CONTACT */
    #contact {
        margin: 10% 0 25% 0;
    }

    .contact-copy {
        width: 95%;
        margin: 0;
        padding-top: 10%;
        padding-bottom: 25%;
    }

    .contact-copy h2 {
        max-width: 100%;
    }

    .contact-copy p {
        width: 100%;
        font-size: 20px;
        padding-bottom: 7%;
    }

    .contact-copy .btn {
        font-size: 32px;
        padding: 2% 10%;
    }

    .contact-img {
        display: none;
    }
    
    /* FOOTER */
    footer .logo {
        width: 50%;
        margin-left: 45%;
        padding-bottom: 5%;
    }
    
    footer .footer-container .subscription .sub-email {
        padding: 3%;
        width: 95%;
    }

    footer .footer-container .subscription .submit {
        padding: 2% 20%;
        margin-top: 2%;
    }

    footer .footer-container .links {
        margin-top: 10%;
    }

    footer .footer-container .links .column-left {
        flex-basis: 100%;
        margin-bottom: 5%;
    }

    footer .footer-container .links .column-right {
        flex-basis: 100%;
    }

    footer .footer-container .links ul li {
        margin: 3% 0;
    }
    
    /* COOKIES */
    #cookieNotice {
        width: 80%;
    }
    
}




/* TO DO:
- Polish Solutions images
- Edit hero image to fix Shopify logo
- Create pages and put correct links
*/




















