body {
    margin:0;
    padding: 0;
}

nav {
    height: 92px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav:after {
    position: absolute;
    content: ' ';
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: linear-gradient(90.08deg, #A8358C 0.6%, #0080B2 51.12%, #169FF2 98.68%);
    box-shadow: 0px 1px 1px rgba(188, 188, 188, 0.26);
}

header {
    height: 872px;
    background-image: url(rtl-cover.png);
    background-color: #3E3E3E;
    background-size: cover;
    overflow: hidden;    
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

header .bug {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

header .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

header .inner .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 100px 0;
}

header .inner .text h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 136px;
    color: #FFFFFF;
    margin: 0;
}

header .inner .text h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 75px;
    color: #FFFFFF;
    margin: 0;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section .inner {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
}

.section .inner h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    /* line-height: 68px; */
    color: #3E3E3E;
    margin-top: 0;
}

.section.intro {
    position: relative;
}

.section.intro .inner {    
    margin: 100px 0;
    gap: 100px;
}

.section.intro::after {
    position: absolute;
    content: ' ';
    bottom: 100px;
    right: 0;
    height: 12px;
    left: calc(50% + 100px);
    z-index: 2;
    background: linear-gradient(90deg, #365199 0%, #2D6BB0 16.75%, #40908E 31.98%, #97BD44 50.59%, #DFDC83 62.18%, #F9DC4D 79.35%, #D4402D 100%);
}

.section.intro .inner .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 0 0 35%;
}

.section.intro .inner .text h2 {
    margin: 0;
}

.section.intro .inner .text p {
    margin: 28px 0 0 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #3E3E3E;
}

.section.intro .inner .image {
    flex: 1 1 auto;
}

.section.intro .inner img {
    width: 100%;
}

.section.intro .inner .video {
    height: 0;
    padding-top: 56.25%;
    position: relative;
    background: #000000;
}

.section.intro .inner .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

.section.future-ready .inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
}

.section.future-ready .cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    max-width: 920px;
    flex-wrap:wrap;
}

.section.future-ready .card {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 32px 36px;
    position: relative;
}

.section.future-ready .card::after {
    position: absolute;
    content: ' ';
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: linear-gradient(90.08deg, #A8358C 0.6%, #0080B2 51.12%, #169FF2 98.68%);
    border-radius: 0px 0px 8px 8px;
}

.section.future-ready .card .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 80px;
}

.section.future-ready .card h3 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #3E3E3E;
    margin: 28px 0 20px 0;
    max-width: 80%;
}

.section.future-ready .card p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16.5px;
    line-height: 22px;
    text-align: center;
    color: #3E3E3E;
}

.section.quote {
    margin-top: 100px;
    background-color: #2E529E;
    position: relative;
}

.section.quote::after {
    position: absolute;
    content: ' ';
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, #365199 0%, #2D6BB0 16.75%, #40908E 31.98%, #97BD44 50.59%, #DFDC83 62.18%, #F9DC4D 79.35%, #D4402D 100%);
}

.section.quote .inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section.quote .inner img {
    position: relative;
    top: -96px;
}

.section.quote .inner h2 {
    position: relative;
    top: -60px;
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    text-align: center;
}

.section.quote .inner p {
    position: relative;
    top: -60px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
}

.section.quote .inner p span {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
}


.section.core {
    flex-direction: column;
}

.section.core h2 {
    margin: 120px 0 48px 0;
}

.section.core .inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section.core .inner .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    margin: 0 0 100px 0;
}

.section.core .inner .cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 24px;
    margin: 0 0 40px 0;
}


.section.core .inner .cards .card h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #3E3E3E;
    border-radius: 8px;
    border: 1px solid #169FF2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 48px 0 28px 0;
    padding: 12px;
    width: 100%;
}

.section.core .inner .cards .card.mandi h2 {
    border: 1px solid #A8358C;
}

.section.core .inner .cards .card.lawo h2 {
    border: 1px solid #0080B2;
}

.section.core .inner .cards .card p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16.5px;
    line-height: 22px;
    text-align: center;
    color: #3E3E3E;
    display: block;
    height: 300px;
    margin: 0 0 40px 0;
}

.section.core .inner .cards .card a {
    display: flex;
    background-color: #169FF2;
    width: 200px;
    height: 52px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
}

.section.core .inner .cards .card.mandi a {
    background-color: #A8358C;
}

.section.core .inner .cards .card.lawo a {
    background-color: #0080B2;
}

.section.core .inner .cards .card.lawo .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
}

.section.core .inner .cards .card.lawo .split .plus {
    display: none;
}

footer .companies {
    height: 672px;
    background: #F3F3F3;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer .companies .inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
}

footer .companies .inner h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    text-align: center;
    color: #3E3E3E;
    margin: 60px 0 40px 0;
}

footer .companies .inner .grid {
    display: flex;
    flex-direction: row;
}

footer .companies .inner .grid .column {
    flex: 0 1 33%;
    display: flex;
    flex-direction: column;
}

footer .companies .inner .grid .column .logo {
    height: 188px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 36px 0;
}


footer .companies .inner .grid .column.mandi svg {
    color:#B73C8F;
}

footer .companies .inner .grid .column.lawo svg {
    color:#0080B2;
}

footer .companies .inner .grid .column.pluxbox svg {
    color:#04A8F3;
}

footer .companies .inner .grid .column h3 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 136.4%;
    color: #3E3E3E;
}

footer .companies .inner .grid .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .companies .inner .grid .column ul li {
    padding: 0;
    margin: 0;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer .companies .inner .grid .column ul li i {
    flex: 0 0 28px;
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer .companies .inner .grid .column ul li label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #3E3E3E;
}


footer .terms {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 84px;
    background: linear-gradient(90.08deg, #A8358C 0.6%, #0080B2 51.12%, #169FF2 98.68%);
}

footer .terms .inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer .terms .inner a {
    flex: 0 1 33%;
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
    text-decoration: none;
}

@media only screen and (max-width: 480px) {
    nav {
        height: 76px;
    }

    nav svg {
        width: 248px;
    }

    header {
        height: 308px;
        position: relative;
    }

    header .inner .text {
        margin: 0 24px 40px 24px;
    }

    header .inner .text h1 {
        font-size: 30px;
        font-weight: 600;
        line-height: 34px;
        margin: 0 0 16px 0;
    }

    header .inner .text h2 {
        font-size: 28px;
        font-weight: 300;
        line-height: 38px;
    }

    header .bug {
        width: 44px;
        right: 20px;
        bottom: 20px;
    }    

    .section.intro {
        position: relative;
    }
    
    .section.intro .inner {
        flex-direction: column;
        box-sizing: border-box;
        margin: 60px 0;
        gap: 40px;
    }

    .section.intro .inner .text {
        box-sizing: border-box;
        padding: 0 24px;
    }
    

    .section.intro .inner .text h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        display: flex;
        align-items: center;
        text-align: center;
        color: #3E3E3E;
    }

    .section.intro .image {
        position: relative;
    }

    .section.intro .image::before {
        position: absolute;
        left:0;
        right: 80px;
        content: ' ';
        top: 0;
        height: 8px;
        background: linear-gradient(90deg, #365199 0%, #2D6BB0 16.75%, #40908E 31.98%, #97BD44 50.59%, #DFDC83 62.18%, #F9DC4D 79.35%, #D4402D 100%);
        z-index: 3;
    }

    .section.intro::after {
        left: 80px;
        bottom: 60px;
    }


    .section.future-ready .inner {
        margin-bottom: 80px;
    }

    .section.future-ready h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        display: flex;
        align-items: center;
        text-align: center;
        color: #3E3E3E;
        margin-bottom: 40px;
    }

    .section.future-ready .cards {
        flex-direction: column;
        box-sizing: border-box;
        padding: 0 24px;
    }

    .section.quote .inner {
        box-sizing: border-box;
        padding: 0 24px;
    }

    .section.quote .inner h2 {
        font-family: 'Open Sans';
        font-style: italic;
        font-weight: 400;
        font-size: 23px;
        line-height: 31px;
        text-align: center;
        color: #FFFFFF;
    }

    .section.quote .inner p {
        font-family: 'Open Sans';
        font-style: italic;
        font-weight: 300;
        font-size: 20px;
        line-height: 31px;
        text-align: center;
        color: #FFFFFF;
    }
    .section.quote .inner p span {
        font-size: 20px;
    }

    .section.core .inner .cards .card {
        position: relative;
        padding-bottom: 60px;
        margin: 60px 0 40px 0;
    }

    .section.core .inner .cards .card:after {
        position: absolute;
        content: ' ';
        bottom: 0;
        left: 24px;
        right: 24px;
        height: 1px; 
        background: #0000004D;
    }

    .section.core .inner .cards .card:last-child:after {
        height: 0; 
    }
    .section.core h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        color: #3E3E3E;
        margin: 60px 0 0 0;
    }

    .section.core .inner .cards .card p {
        height: auto;
    }

    .section.core .inner .cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section.core .inner .cards .card h2 {
        width: 268px;
    }

    
    .section.core .inner .cards .card a {
        width: 236px;
    }
    .section.core .inner .cards .card.lawo .split {
        grid-template-columns: 1fr;
    }

    .section.core .inner .cards .card.lawo .split .plus {
        display: flex;
    }


    .section.core .inner .cards .card.lawo .split > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .companies .inner {
        flex-direction: column;
        align-items: center;
    }

    footer .companies {
        height: auto;
    }

    footer .companies .inner .grid .column {
        position: relative;
        padding: 48px 0;
    }

    footer .companies .inner .grid .column:last-child {
        padding-bottom: 60px;
    }

    footer .companies .inner .grid .column:after {
        position: absolute;
        content: ' ';
        height: 1px;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #0000004D;
    }

    footer .companies .inner .grid .column .logo {
        height: auto;
    }

    footer .companies .inner h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        color: #3E3E3E;
        max-width: 236px;
    }

    footer .companies .inner .grid {
        display: flex;
        flex-direction: column;
    }

    footer .terms {
        padding: 0 24px;
    }

    footer .terms .inner {
        justify-content: space-between;
    }
 
    footer .terms .inner a {
        flex: 0 0 auto;
        font-family: 'Open Sans';
        font-style: italic;
        font-weight: 400;
        font-size: 11px;
        line-height: 15px;
        color: #FFFFFF;
    }
}