﻿@charset "utf-8";

body::before {
    background-image: url(/images/home-page-bg.jpg);
}
/*------------------------------------------------------------------------- SECTION: HEADER
*/
section.header {
    margin-top: -60px;
    padding: 0 0;
}
section.header > .container {
    background: url(/images/our-services.png) 80% bottom no-repeat;
    background-size: auto 90%;
    padding: 120px 40px 20px;
}
section.header .strapline {
    aspect-ratio: 2.9;
    width: 100%;
    max-width: 440px;
    background: url(/images/sell-lines.svg) left top / 85% no-repeat;
    font-size: 0;
    margin-top: 10px;
}

@media (max-width: 767px)
{
    section.header > .container {
        background: transparent;
    }
}

/*------------------------------------------------------------------------- SECTION: KEY POINTS
*/
section.key-points::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
}
section.key-points ul.icon-list {
    flex-wrap: nowrap;
}
section.key-points ul.icon-list h4 {
    color: var(--c3Yellow);
}
section.key-points ul.icon-list .icon {
    border-color: transparent;
}
section.key-points ul.icon-list .icon::before {
    filter: invert(1);
    background-size: 100%;
}

@media (max-width: 767px)
{
    section.key-points ul.icon-list {
        flex-flow: column;
    }
}

/*------------------------------------------------------------------------- SECTION: WHAT AND WHY
*/
section.what-and-why {
    background: linear-gradient(90deg, rgba(25,120,252, 0.5)  50%, rgba(6,9,24,0.5) 50%);
}
section.what-and-why::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.3;
    filter: blur(2px);
    mask: linear-gradient(to right, transparent 0%, black 50%, transparent 100%);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask: linear-gradient(to right, transparent 0%, black 50%, transparent 100%);
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}
section.what-and-why::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
}
section.what-and-why .column:first-of-type {
    padding: 20px 40px 0 0;
}
section.what-and-why .column:last-of-type {
    padding: 20px 0 0 40px;
}
section.what-and-why h2 {
    display: flex;
    gap: 15px;
    align-items: center;
}
section.what-and-why h2 .icon {
    display: block;
    width: 50px;
    height: 50px;
}
section.what-and-why h2 .icon::before {
    filter: invert(1);
}
section.what-and-why .column:first-of-type .icon-list .icon {
    border-color: #fff
}
section.what-and-why .column:first-of-type .icon-list .icon::before {
    filter: invert(1);
}
section.what-and-why .icon-list .icon::before {
    filter: var(--filterYellow);
}
section.what-and-why ul.icon-list li h4 {
    color: var(--c3Yellow);
}

@media (max-width: 767px)
{
    section.what-and-why {
        background: transparent;
        padding: 0;
    }
    section.what-and-why .container {
        padding: 0;
    }
    section.what-and-why .column:first-of-type,
    section.what-and-why .column:last-of-type {
        padding: 40px;
    }
    section.what-and-why .column:first-of-type {
        background-color: rgba(25,120,252, 0.5);
    }
    section.what-and-why .column:last-of-type {
        background-color:rgba(6,9,24,0.5);
    }
}

/*------------------------------------------------------------------------- SECTION: GOT A PROJECT?
*/
.got-a-project {
    padding: 0;
    background: var(--c3BlackBlue);
  }
.got-a-project .container {
   background-size: 480px;
   padding: 80px 40px;
   z-index: 3;
}
.got-a-project::before,
.got-a-project::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-attachment: fixed;
}
.got-a-project::before {
    background: var(--c3Grey);
    mask: linear-gradient(to left, transparent 50%, black 100%);
    -webkit-mask: linear-gradient(to left, transparent 50%, black 100%);
    z-index: 2;
}
.got-a-project::after {
    background: url(/images/stars.png) center center / 240px;
    mask: linear-gradient(to right, transparent 50%, black 100%);
    -webkit-mask: linear-gradient(to right, transparent 50%, black 100%);
    z-index: 1;
}
.got-a-project .container::before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 480px;
    height: 100%;
    background: url(/images/rocket-sketch.svg) center 80% no-repeat;
    background-size: auto 90%;
    transition: all 0.25s ease;
}
.got-a-project .text-block {
    width: 100%;
    max-width: 640px;
}

@media (max-width: 960px)
{
    .got-a-project .container::before {
        opacity: 0.2;
        background-position: center center;
    }
}

/*------------------------------------------------------------------------- SECTION: EXPERIENCE
*/
section.experience {
    text-align: center;
    padding: 60px 0;
}
section.experience .snippets .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
section.experience .snippet {
    border-radius: 10px;
    padding: 20px;
    background-color: rgba(25,120,252, 0.5);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 0 auto;
}
section.experience .snippet::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px;
    right: 20px;
    aspect-ratio: 10;
    width: 160px;
    background: url(/images/shiny.png) center center / 100% no-repeat;
	mix-blend-mode: screen;
}
section.experience .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}
section.experience .icon::before {
    filter: invert(1);
}

@media (max-width: 1400px) and (min-width: 768px) {
    section.experience .snippets .container {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
    section.experience .snippet:nth-of-type(3n) {
        margin: 0 auto 0 0;
    }
    section.experience .snippet:nth-of-type(3n + 1) {
        margin: 0 0 0 auto;
    }
}

/*------------------------------------------------------------------------- SECTION: TIGHT DEADLINE
*/
section.tight-deadline {
    background: var(--c3BlackBlue);
    padding: 40px 0;
}
section.tight-deadline .column:first-of-type {
    display: flex;
    gap: 40px;
    padding: 0 40px 0 0;
    align-items: center;
}
section.tight-deadline .column:last-of-type {
    background: var(--c3DarkBlue);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 40px;
    align-items: center;
}
section.tight-deadline .column:last-of-type p {
    font-weight: bold;
}
section.tight-deadline .stopwatch {
    width: 120px;
}
section.tight-deadline .budget {
    width: 100%;
    max-width: 160px;
    display: block;
}

@media (max-width: 767px)
{
    section.tight-deadline .column:first-of-type {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    section.tight-deadline .column:last-of-type {
        margin: 40px auto 0;
    }
    ul.check-list li {
        width: 240px;
        text-align: left;
        margin: 0 auto;
    }
}
@media (max-width: 480px)
{
    section.tight-deadline .column:last-of-type {
        flex-direction: column;
        text-align: center;
    }
}

/*------------------------------------------------------------------------- SECTION: CALL TO ACTION
*/
section.call-to-action {
    background-color: rgba(6,9,24,0.5);
    padding: 40px 0;
}
section.call-to-action::before,
section.call-to-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
}
section.call-to-action::before {
    bottom: 100%;
}
section.call-to-action .container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
}
section.call-to-action h2 {
    font-size: 24px;
    letter-spacing: -1px;
    font-weight: bold;
    margin: 0 auto 10px;
}
section.call-to-action p {
    margin: 0 0 5px;
}
section.call-to-action .icon {
    width: 70px;
    flex: 0 0 70px;
}
section.call-to-action .icon::before {
    filter: var(--filterYellow);
}
section.call-to-action .button {
    margin: 0 0 0 auto;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    max-width: 240px;
    background-color: var(--c3DarkBlue);
    color: #fff;
}
section.call-to-action .button:hover {
    background-color: var(--c3Yellow);
    color: var(--c3BlackBlue);
    border-color: transparent;
}

@media (max-width: 767px)
{
    section.call-to-action .container {
        flex-direction: column;
        text-align: center;
        padding: 0 40px;
    }
    section.call-to-action .button {
        margin: 0 auto;
    }
}