﻿@charset "utf-8";
body::before {
    background-image: url(/images/home-page-bg.jpg);
}
/*------------------------------------------------------------------------- SECTION: HEADER
*/
section.header {
    margin-top: -60px;
    padding: 0 0 60px;
}
section.header > .container {
    background: url(/images/about-c3-software.png) 80% bottom no-repeat;
    background-size: auto 90%;
    padding: 120px 40px 0
}
section.header .strapline {
    aspect-ratio: 2.9;
    width: 100%;
    max-width: 440px;
    background: url(/images/sell-lines.svg) left top / 100% no-repeat;
    font-size: 0;
    margin-top: 10px;
}
section.header .intro {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 767px)
{
    section.header > .container {
        background: transparent;
    }
}

/*------------------------------------------------------------------------- SECTION: KEY POINTS
*/
section.key-points {
    background-color :rgba(6,9,24,0.5); 
    padding: 10px 0;
}
section.key-points::before,
section.key-points::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.key-points::before {
    bottom: auto;
    top: 0;
}
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: ABOUT US
*/
section.about-us::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.about-us .container {
    background: url(/images/c3-software-boxes.png) right bottom no-repeat;
    background-size: auto 400px;
}
section.about-us .image-wrapper {
    display: none;
}

@media (max-width: 1120px) {
    section.about-us .container {
        background-position: calc(100% + 100px) bottom;
    }
}

@media (max-width: 767px) {
    section.about-us .container {
        background: none;
    }
    section.about-us .image-wrapper {
        display: block;
        transform: translateX(-10%) scale(120%);
        margin: 80px auto 20px;
    }
}