/*#region Global */

*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    --body-hover-background-color: #f79f1c;
    --body-hover-text-color: black;
    --body-normal-text-color: white;
    --returnToTop--background-color: #0008b0;
    --returnToTop--text-color: white;
    --footer-background-color: #00056e;
    box-sizing: border-box;
}

.global__element--hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.global__image--roundedImage {
    vertical-align: middle;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 5px;
}

.global__image--squareImage {
    vertical-align: middle;
    width: 36px;
    height: 36px;
    margin-right: 5px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0px;
    width: 98%;
    z-index: 2000;
}

    /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
    .sticky + .content {
        padding-top: 100px;
    }

.input-validation-error {
    color: red;
}

    .input-validation-error ~ span {
        color: black;
        /*        font-weight: bolder;*/
    }

.validation-summary-errors, .field-validation-error {
    display: block;
    /*background-color: #ffdddd;
	  border-left: 6px solid #f44336;*/
    padding: 5px;
    margin-top: -10px;
    margin-bottom: 0px;
    color: red;
    max-width: 245px;
    font-size: 16px;
}

    .field-validation-error.multiple_errors {
        margin-bottom: 5px;
    }

        .field-validation-error.multiple_errors::before {
            content: '\00bb';
            margin-right: 5px;
        }


/*#endregion Global*/

/* 2XL - Hi-res laptops and desktops */
/* width > 1400 px and up */
/*#region Par defaut */

/*#region Wrapper */

.wrapper {
    padding: 10px;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "header"
        "content "
        "footer ";
    column-gap: 10px;
    height: 125%;
}

/*#endregion Page */

/*#region Header */

.header {
    grid-area: header;
    background-color: #FFFFFF;
    height: 75px;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto;
    grid-template-areas: "logo menu extra";
    column-gap: 10px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    margin-bottom: 20px;
}

.header__logo {
    grid-area: logo;
    height: 55px;
    margin-top: 5px;
    margin-left: 0px;
    display: flex;
}

.header__label {
    margin-left: 5px;
    margin-top: 9px;
}

.header__companyName {
    color: #030d4e;
    font-weight: bolder;
    font-size: 24px;
    margin-top: -1px;
    padding: 0px;
}

.header__slogan {
    color: orangered;
    padding: 0px;
    margin: -10px 0px 0px 0px;
    font-weight: bolder;
}

.header__menuBox {
    grid-area: menu;
    display: flex;
}

.header__menu {
    list-style-type: none;
    margin: 15px 0px 0px 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.header__menuItem {
    margin: 10px;
    padding: 10px;
}

    .header__menuItem a:link, .header__menuItem a:visited, .header__menuItem a:active {
        text-decoration: none;
        color: #030d4e;
        font-weight: bolder;
        font-size: 20px;
    }

    .header__menuItem a:hover {
        color: orangered;
        text-decoration: none;
    }

#showMenu:not(:checked) ~ .header__menu {
    height: 75px;
    overflow: hidden;
    background: transparent;
}

#showMenu:checked ~ .header__menu {
    height: auto;
    overflow: auto;
    background: white;
    border: 2px solid #030d4e;
}

#showMenu:not(:checked) ~ .header__menuIndicator i {
    display: flex;
    justify-content: flex-start;
    margin-left: 5px;
    margin-right: 20px;
    margin-top: 40px;
}

#showMenu:checked ~ .header__menuIndicator i {
    display: flex;
    justify-content: flex-start;
    margin-top: 0px;
    margin-left: 5px;
    margin-top: 40px;
    transform: rotate(180deg);
    margin-right: 20px;
}

.header__menuIndicator:hover {
    cursor: pointer;
}

.header__menuItem.header__menuItem--active a:link
, .header__menuItem.header__menuItem--active a:visited
, .header__menuItem.header__menuItem--active a:active {
    color: red;
}

.header__languages {
    display: block;
    grid-area: extra;
    margin-top: 15px;
    margin-left: 0px;
}

.header__menuMobile {
    display: none;
    grid-area: extra;
    margin-top: 15px;
    margin-left: 0px;
}

a.header__menuMobileLink:link, a.header__menuMobileLink:visited, a.header__menuMobileLink:active, span.header__menuMobileLink {
    text-decoration: none;
    font-weight: bolder;
    font-size: 20px;
}

a.header__menuMobileLink.header__menuItem--active:link, a.header__menuMobileLink.header__menuItem--active:visited, a.header__menuMobileLink.header__menuItem--active:active {
    color: red;
    background:white;
}

/*#endregion Header */

/*#region content Edit*/

.content {
    grid-area: content;
    flex-direction: column;
    justify-content: center;
    background: var(--body-normal-background-color);
    align-items: center;
}

.content.content--display-flex {
    display: flex;
    flex-direction: column;
}

.content.content--display-flex.content--direction {
        flex-direction: row;
    }

.content__desc h1 {
    font-size: 60px;   
    margin: 0px 0px 0px 0px; 
}

.content__desc h2 {
    font-size: 24px;    
}

.content__desc .contentLink__label
,.content__desc .contentLink__title
,.content__desc .contentLink__link:link
,.content__desc .contentLink__link:active
,.content__desc .contentLink__link:visited {
    color:blue;
}

.content .content__image {
    margin-left: 20px;
    width: 20%;
}

.content__image--order-before
{
    order: -1;
    margin-right:20px;
    margin-left:0px;
}

.content__image--order-after
{
    order: 1;
    margin-right:0px;
    margin-left:0px
}

  .content__image img {
      width: 100%;
  }

    .content__sloganBox {
        background-image: url("../images/cover700.jpg");
        height: auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

.content__sloganText {
    display: flex;
    flex-direction: column;
    color: Black;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 1000px;
    padding: 0px;
    margin: 0px auto;
}

.content__sloganText span{
    color: red;
}

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 60px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 30px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

.content__realisation h1 {
    background: #030d4e;
    color: White;
    padding: 10px 10px 10px 30px;
}

.cardBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    max-height: 400px;
    max-width: 310px;
    margin: 0px 25px 15px 15px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.25);
}

.card__header {
    padding: 16px 32px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    font-weight: 700;
    font-size: 1.125;
}

.card__body {
    padding: 24px 32px 51px;
    overflow-y: auto;
}

.card__appTitle {
    margin: 10px 0 0 0;
}

.card__appKeyWords {
    margin: 6px 0 0 0;
    font-size: 14px;
    font-weight: normal;
}

.card__footer {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #ddd;
    gap: 12px;
    position: relative;
}

.card__footer:after {
    content: "";
    display: block;
    position: absolute;
    top: -51px;
    left: 24px;
    right: 24px;
    height: 50px;
    flex-shrink: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.75), transparent);
    pointer-events: none;
}

a.button:link, a.button:link, a.button:link {
    text-decoration: none;
}

.button {
    padding: 12px 20px;
    border-radius: 8px;
    background-color: transparent;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s ease;
}

    .button.is-more:hover, .button.is-more:focus {
        color: orangered;
    }

    .button.is-primary {
        background-color: #750550;
        color: #fff;
    }

        .button.is-primary:hover, .button.is-primary:focus {
            background-color: #4a0433;
        }

.content__expertise h1 {
    background: #030d4e;
    color: White;
    padding: 10px 10px 10px 30px;
}

.content__contact h1 {
    background: #030d4e;
    color: White;
    padding: 10px 10px 10px 30px;
}

/*#endregion content */

/*#region Footer */

.footer {
    grid-area: footer;
    background-color: #FFF;
}

.footer__returnToTop {
    background-color:;
    text-align: center;
}

    .footer__returnToTop a {
        background-color: var(--returnToTop--background-color);
        width: 100%;
        display: block;
        padding: 5px;
        text-decoration: none;
        font-weight: bold;
    }

        .footer__returnToTop a:link, .footer__returnToTop a:active, .footer__returnToTop a:visited {
            color: var(--returnToTop--text-color);
        }

        .footer__returnToTop a:hover {
            background-color: var(--body-hover-background-color);
            color: var(--body-hover-text-color);
        }

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--footer-background-color);
    box-shadow: darkgray 0px 25px 20px -20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contentLink {
    margin: 13px 0px 7px 0px;
    max-width: 300px;
}

.contentLink__link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    margin-right: 10px;
}

    .contentLink__link:link, .contentLink__link:active, .contentLink__link:visited {
        color: #EEE;
    }

    .contentLink__link:hover {
        text-decoration: underline;
    }

.contentLink__label {
    display: flex;
    font-size: 16px;
    color: #EEE;
}

.contentLink__title {
    line-height: 20px;
    padding-top: 0px;
    padding-left: 10px;
    font-weight: bold;
}

.copyrightFooter {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 20px;
}

.copyright {
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 0;
    margin-right: 20px;
    max-width: 400px;
}

.copyright__image {
    margin-top: 10px;
    height: 80px;
}

.copyright__label {
    font-weight: 500;
    margin-left: 10px;
    margin-top: 13px;
    font-size: 14px;
}

    .copyright__label div {
        margin-bottom: 10px;
    }


/*#endregion Footer */

/*#endregion Standard */

/* XL - Extra large devices */
/* large desktops, 1200px and up */
/* 1200 <= width <= 1399 */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    /*#region Header */


    /*#endregion Header */

    /*#region content */

    .content .content__image {
        margin-right: 0px;
        width: 25%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: flex-start;
    }

    /*#endregion content */

    /*#region Footer */


    /*#endregion Footer */
}

/* L - Large devices */
/* desktops, 992px and up */
/* 992 <= width <= 1199 */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    /*#region Header */


    /*#endregion Header */

    /*#region content */

    .content .content__image {
        margin-right: 0px;
        width: 30%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: flex-start;
    }

    /*#endregion content */

    /*#region Footer */


    /*#endregion Footer */
}

/* M - Medium devices */
/* tablets, 768px and up */
/* 768 <= width <= 991 */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    /*#region Header */


    /*#endregion Header */

    /*#region content */

    .content__sloganText {
        display: flex;
        flex-direction: column;
        color: Black;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 500px;
        padding: 0px;
        margin: 0px auto;
    }

    .content__sloganText span {
        color: red;
    }

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 40px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 20px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

    .content .content__image {
        margin-right: 0px;
        width: 30%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: flex-start;
    }

    /*#endregion content */

    /*#region Footer */


    /*#endregion Footer */
}

/* S - Small devices */
/* landscape phones, 576px and up */
/* 576 <= width <= 767 */
@media only screen and (min-width: 576px) and (max-width: 767px) {

    /*#region Header */

    /*#endregion Header */

    /*#region content */
    .content__sloganText {
        display: flex;
        flex-direction: column;
        color: Black;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 500px;
        padding: 0px;
        margin: 0px auto;
    }

    .content__sloganText span {
        color: red;
    }

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 40px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 20px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

    .content .content__image {
        margin-right: 0px;
        width: 30%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: flex-start;
    }

    /*#endregion content */

    /*#region Footer */

    /*#endregion Footer */
}

/* XS - Extra small devices */
/* smartphones, iPhone, portrait phones */
/* 420 <= width <= 575 */
@media only screen and (min-width: 420px) and (max-width: 575px) {

    /*#region Header */


    /*#endregion Header */

    /*#region content */
    .content__sloganText {
        display: flex;
        flex-direction: column;
        color: Black;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 300px;
        padding: 0px;
        margin: 0px auto;
    }

    .content__sloganText span {
        color: red;
    }

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 30px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 12px;
    }

    .content .content__image {
        margin-right: 0px;
        width: 50%;
    }

    .content.content--display-flex.content--direction {
        flex-direction: column;
        text-align: center;
    }

    .content .content__image--order-after, .content__image--order-before {
        order: 1;
    }

    .content .content__image img {
        max-width: 100%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: center;
    }


    /*#endregion content */

    /*#region Footer */

    .footer {
        grid-area: footer;
        background-color: #fff;
    }

    .footer .imageLabel {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 10px 10px 10px;
    }

    .footer .imageLabel__label {
        margin-top: 10px;
        text-align: left;
    }

    .footer .contentLink {
        text-align: center;
        margin: 10px 10px;
        max-width: 100%;
    }

    .footer .contentLink__link {
        align-items: center;
    }

    .footer .copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /*#endregion Footer */
}

/* 2XS - Extra extra small devices */
/* smartphones, iPhone, portrait phones */
/* 390 <= width <= 419 */
@media only screen and (min-width: 390px) and (max-width: 419px) {

    /*#region Header */

    .header__menu {
        display: none;
    }

    .header__menuIndicator {
        display: none;
    }

    .header__languages {
        display: none;
    }

    .header__menuMobile {
        display: block;
    }

    /*#endregion Header */

    /*#region content */
    .content__sloganText {
        display: flex;
        flex-direction: column;
        color: Black;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 300px;
        padding: 0px;
        margin: 0px auto;
    }

        .content__sloganText span {
            color: red;
        }

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 30px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 12px;
    }

    .content .content__image {
        margin-right: 0px;
        width: 70%;
    }

    .content.content--display-flex.content--direction {
        flex-direction: column;
        text-align: center;
    }

    .content .content__image--order-after, .content__image--order-before {
        order: 1;
    }

    .content .content__image img {
        max-width: 100%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: center;
    }

    /*#endregion content */

    /*#region Footer */

    .footer {
        grid-area: footer;
        background-color: #fff;
    }

    .footer .imageLabel {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 10px 10px 10px;
    }

    .footer .imageLabel__label {
        margin-top: 10px;
        text-align: left;
    }

    .footer .contentLink {
        text-align: center;
        margin: 10px;
        max-width: 100%;
    }

    .footer .contentLink__link {
        align-items: center;
    }

    .footer .copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /*#endregion Footer */
}

/* 3XS - Extra extra extra small devices */
/* smartphones, iPhone, portrait phones */
/* 360 <= width <= 389 */
@media only screen and (min-width: 360px) and (max-width: 389px) {

    /*#region Header */

    .header__menu {
        display: none;
    }

    .header__menuIndicator {
        display: none;
    }

    .header__languages {
        display: none;
    }

    .header__menuMobile {
        display: block;
    }

    /*#endregion Header */

    /*#region content */
    .content__sloganText {
        display: flex;
        flex-direction: column;
        color: Black;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 300px;
        padding: 0px;
        margin: 0px auto;
    }

    .content__sloganText span {
        color: red;
    }

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 30px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 12px;
    }

    .content .content__image {
        margin-right: 0px;
        width: 70%;
    }

    .content.content--display-flex.content--direction {
        flex-direction: column;
        text-align: center;
    }

    .content .content__image--order-after, .content__image--order-before {
        order: 1;
    }

    .content .content__image img {
        max-width: 100%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: center;
    }

    /*#endregion content */

    /*#region Footer */

    .footer {
        grid-area: footer;
        background-color: #fff;
    }

    .footer .imageLabel {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 10px 10px 10px;
    }

    .footer .imageLabel__label {
        margin-top: 10px;
        text-align: left;
    }

    .footer .contentLink {
        text-align: center;
        margin: 10px;
        max-width: 100%;
    }

    .footer .contentLink__link {
        align-items: center;
    }

    .footer .copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /*#endregion Footer */
}

/* 4XS - Extra extra extra extra small devices */
/* smartphones, iPhone, portrait phones */
/* 0 <= width <= 360 */
@media only screen and (max-width: 359px) {

    /*#region Header */

    .header__menu {
        display: none;
    }

    .header__menuIndicator {
        display: none;
    }

    .header__languages {
        display: none;
    }

    .header__menuMobile {
        display: block;
    }

    /*#endregion Header */

    /*#region content */

    .content {
        grid-area: content;
        background: var(--body-normal-background-color);
    }

    .content__sloganText {
        display: flex;
        flex-direction: column;
        color: Black;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 300px;
        padding: 0px;
        margin: 0px auto;
    }

    .content__sloganText span {
        color: red;
    }

    .content__sloganText h1 {
        margin: 0px;
        padding: 0px;
        width: auto;
        font-weight: bolder;
        font-size: 30px;
    }

    .content__sloganText h2 {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 15px;
    }

    .content__sloganText p {
        margin: 30px 0px 0px 0px;
        padding: 0px;
        width: auto;
        font-size: 12px;
    }

    .content__form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content .content--direction {
        flex-direction: column;
    }

    .content .content__image {
        margin-right: 0px;
        width: 70%;
    }

    .content.content--display-flex.content--direction {
        flex-direction: column;
        text-align: center;
    }

    .content .content__image--order-after, .content__image--order-before {
        order: 1;
    }

    .content .content__image img {
        max-width: 100%;
    }

    .content .contentLink {
        max-width: 100%;
    }

    .content .contentLink__link {
        align-items: center;
    }


    /*#endregion content */

    /*#region Footer */

    .footer {
        grid-area: footer;
        background-color: #fff;
    }

    .footer .imageLabel {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 10px 10px 10px;
    }

    .footer .imageLabel__label {
        margin-top: 10px;
        text-align: left;
    }

    .footer .contentLink {
        text-align: center;
        margin: 10px;
        max-width: 100%;
    }

    .footer .contentLink__link {
            align-items: center;
        }

    .footer .copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }



    /*#endregion Footer */
}




