* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Lato, Bebas Neue, Open Sans, Roboto; 
    font-size: 1em;
    color: #000;
    position: relative;
}

a {
    color: darkorange;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

input, textarea {
    padding: 0.5em;
    color: #333;
    border: none;
    font-size: 1em;
}

[error]:not([error=""])::after {
    display: block;
    content: attr(error);
    color: red;
}

.header {
    left: 0;
    top: 0;
    right: 0;
    padding: 0.5em;
    position: sticky;
    background-color: #2c313a;     
    z-index: 20;    
    color: White;    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: center;      
    gap: 1em;    
}

.content { 
    background-color: #fff;   
}

.intro {
    background-color: #555BCE;
    padding: 2em;
}

/*.intro h1, .intro p {
    color: #fff;
}*/

.article { 
    /*height: 100em;*/
}            

.footer { 
    height: 50px;
    background-color: #2c313a;           
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;  
    justify-content: space-between;
    align-items: stretch;
    align-content: center;      
    gap: 2em;    
}

.footer-left, .footer-right { 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;  
    justify-content: space-between;
    align-items: stretch;
    align-content: center;      
}

.footer-copyright {
    display: block;
    margin: 0 4em;
    padding: 0;
    font-family: Roboto;
    font-size: 0.8em;
    font-weight: normal;
    color: #fff;
}

.footer-menu-container {
    display: block;
    margin: 0 4em;
    list-style: none;
    list-style-position: inside;
}

.footer-menu-item {
    display: inline-block;
    margin: 0 1em;
}

.footer-menu-item-link {
    line-height: 2;
    font-family: Roboto;
    font-size: 0.8em;
    letter-spacing: 0.01em;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.footer-menu-item-link:hover {
    text-decoration: none;
}

.bg-angle {
    --bg-angle-offset: 82%;
    position: relative;
}

.intro.bg-angle:after {
    content: "";
    display: block;
    background: linear-gradient(177deg,hsla(0,0%,100%,0) var(--bg-angle-offset),#fff -webkit-calc(var(--bg-angle-offset) + 3px));
    background: linear-gradient(176deg,hsla(0,0%,100%,0) var(--bg-angle-offset),#fff calc(var(--bg-angle-offset) + 3px));
    position: absolute;
    inset: auto 0 0;
    pointer-events: none;
    height: 100vh;
    max-height: 100%;
    min-height: 100px;
}

.logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: center;  
    padding: 0 3em; 
}

.logo-text {
    display: inline-block;
    font-family: Roboto;
    font-size: 1.2em;
    line-height: 32px;
    letter-spacing: 0.2em;
    vertical-align: middle;
}

.logo-image {                
    display: block;
    height: 32px;
    margin-right: 0.5em;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: center;
}

.menu-container {
    list-style: none;
    list-style-position: inside;
}

.menu-item {
    display: inline-block;
    margin: 0 1em;
    cursor: pointer;
    border-top: solid 2px transparent;
    border-bottom: solid 2px transparent;
}

.menu-item-link {
    line-height: 2;
    font-family: Open Sans;
    letter-spacing: 0.01em;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
}

.menu-item-link:hover {
    text-decoration: none;
}

.menu-item:hover {
    color: #eee;
    border-bottom: solid 2px #ffd42a;
}

.menu-submenu {
    display: none;
    font-size: 1.6em;
}

.account {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;  
    padding: 0 3em; 
    width: auto;
    flex-grow: 1;
    gap: 1em;
}

.try-it-now-button {
    font-family: Roboto;
    font-size: 1em;
    display: block;
    line-height: 2;
    border-radius: 1em;
    text-align: center;
    text-decoration: none;
    background-color: #ccc;
    color: #000;
    cursor: pointer;
    width: 125px;
}

.sign-in-button {
    font-family: Roboto;
    font-size: 1em;
    display: block;
    line-height: 2;
    border-radius: 1em;
    text-align: center;
    text-decoration: none;
    background-color: #ffd42a;
    color: #333;
    cursor: pointer;
    width: 125px;
}

/* */
.submenu {
    display: none;
    left: 0;
    bottom: 0;
    right: 0;
    position: sticky;
    background-color: #fff;
    overflow: auto;
}

.submenu-inner {
    margin: 1em auto;
}

.submenu-title {
    margin: 1em 0;
    font-family: Roboto;
    font-size: 2em;
    text-align: center;
    color: #333;
}

.submenu-container {
    list-style: none;
    list-style-position: inside;
}

.submenu-subcontainer {
    display: none;
    margin-top: 0.5em;
    margin-left: 2.2em;
    list-style: none;
    list-style-position: inside;
}

.submenu-item {
    padding: 1em;
    border-bottom: 1px solid lightgray;
    clear: both;
    cursor: pointer;
}

.submenu-item--selected {
    background-color: aliceblue;
}

.submenu-subitem {
    padding: 1em 0;
    border-bottom: 1px dotted lightgray;
    clear: both;
    cursor: pointer;
}

.submenu-item:last-child {
    border: none;
}

.submenu-subitem:last-child {
    border: none;
}

.submenu-item:before {
    float: right;
    content: "\f0dd";
    margin-left: 1em;
    font-family: FontAwesome;
    font-size: 1.2em;
    line-height: 1.2;
    color: #555BCE;
    cursor: pointer;
}

.submenu-item:not(:has(.submenu-subcontainer > li))::before {
    display: none;
}

/*.submenu-item.submenu-item--nodropdown:before  {
    display: none;
}*/

.submenu-item-icon {
    display: inline-block;   
    margin-right: 0.5em;
    font-size: 1.2em;
    color: #333;
}

.submenu-item-title {   
    display: inline-block;             
    font-family: Roboto;
    font-size: 1.2em;
    color: #333;
}

.submenu-item-text {    
    margin: 1em 0 0 0;
    display: none;
    font-family: Roboto;
    font-size: 1.2em;
    color: #666;
    transition: all .75s ease;
}

.submenu-item-link {
    text-decoration: none;
    color: #666;
}

/* */
.navigation {
    margin-bottom: 4em;
}

.navigation-title {
    margin: 2em 4em;
    font-family: Roboto;
    font-size: 2em;                
    color: #333;
}

.navigation-inner {
    margin: 0 auto;
    max-width: 1200px;
}

.navigation-header {
    margin: 2em;
    text-align: center;
}

.navigation-content {
    margin: 2em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2em;
}

.navigation-column {

}

.navigation-menu {

}

.navigation-menu-title {
    margin-bottom: 1em;
    font-family: Open Sans;
    font-size: 1em;
}

.navigation-menu-container {
    list-style: none;
    list-style-position: inside;
    margin-bottom: 2em;
}

.navigation-menu-item {
    margin-bottom: 1em;
    line-height: 2;
    font-family: Open Sans;
    letter-spacing: 0.01em;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

.navigation-menu-item-link {
    color: #333;
    text-decoration: none;
}

.intro {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: stretch;
    z-index: 1;
}

.intro-inner {
    margin: 5em auto;
    max-width: 1400px;
    /*border: 1px solid red;*/
    z-index: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    align-content: stretch;
    gap: 3em;
}

.intro-column {
    /*border: 1px solid yellow;*/
}

.intro-column-left {
    max-width: 600px;
    align-self: center;
}

.intro-column-right {
    flex-grow: 1;
    align-self: flex-end;
    text-align: center;
}

.intro-title {
    margin-bottom: 1em;
    font-family: Roboto;
    font-size: 2em;
    letter-spacing: 0.05em;
    color: #fff;
}

.intro-text {
    margin-bottom: 2em;
    font-family: Roboto;
    font-size: 1.5em;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #ccc;
}

.intro-text:last-child {
    margin: 0;
}

.intro-button {
    padding: 0.2em 0;
    font-family: Roboto;
    font-size: 0.8em;
    display: inline-block;
    line-height: 2;
    border-radius: 1em;
    width: 200px;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
}

.intro-button:hover {
    background-color: #474dbb;
}

.intro-image {
    max-width: 500px;
    /*box-shadow: 0 30px 30px rgb(25 34 29 / 10%), 0 1px 0 1px rgb(25 34 29 / 4%);*/
    overflow-clip-margin: content-box;
    overflow: clip;
    transform: skewX(-5deg) skewY(-2deg);
    max-width: 90%;
    max-height: 500px;
}

.into-image-noshade {
    box-shadow: none;
    transform: none;
}

/* Toolbar */
.toolbar {
   
}

.toolbar-inner {                
    margin: 2em auto;
    max-width: 1400px;
}

.toolbar-container {
    list-style: none;
    list-style-position: inside;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
}

.toolbar-icon {
    display: inline-flex;                
    line-height: 2;
    font-family: Open Sans;
    letter-spacing: 0.01em;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.toolbar-image {
    display: block;
    margin-bottom: 0.5rem;
    color: #ababab;
    font-size: 2em;
}

.toolbar-label {
    font-family: Roboto;
    font-size: 0.8em;
    line-height: 1.5;
    color: #333;
    letter-spacing: 0.05em;
}

.toolbar-title {
    margin: 1em 0 3em 0;
    text-align: center;
    color: #333;
    font-size: 2.5em;
    letter-spacing: 0.01em;
}

.toolbar-panels {
    margin: 6em 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
    gap: 2em;
}

.toolbar-panel {
    /*box-shadow: 0 0 8px #ddd;*/
    flex-grow: 1;
    flex-basis: 0;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

.toolbar-panel-header {
    margin-bottom: 2em;
    padding: 1em;    
    background-color: #CC283E;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    height: 200px;
    color: #fff;
    position: relative;
    z-index: 0;
}

.toolbar-panel-header-icon {
    padding: 0.5em;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.5em;
    color: #CC283E;
    z-index: 30;
    right: 0.5em;
    top: 0.5em;
    position: absolute;
}

.toolbar-panel-header-photo {
    left: 0;
    top: 15%;
    bottom: 0;
    right: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    z-index: 2;
}

.toolbar-panel-header-photo--img1 {
    background-image: url('/res/images/photo1.jpg');
}

.toolbar-panel-header-photo--img2 {
    background-image: url('/res/images/photo2.jpg');
}

.toolbar-panel-header-photo--img3 {
    background-image: url('/res/images/photo3.jpg');
}

.toolbar-panel-header-photo--img4 {
    background-image: url('/res/images/photo4.jpg');
}

.toolbar-panel-header-photo--img5 {
    background-image: url('/res/images/photo5.jpg');
}

.toolbar-panel-content {
    margin-bottom: 2em;
    border-bottom: 1px solid lightgray;
    flex-grow: 1;
}

.toolbar-panel-logo {
    display: block;
    margin-bottom: 1.5em;
    max-height: 80px;
}

.toolbar-panel-title {
    display: block;
    margin-bottom: 0em;
    font-size: 1em;
    line-height: 1.4;
    font-family: Lato;
    letter-spacing: 0.05em;
}

.toolbar-panel-text {
    margin-bottom: 2em;
    font-size: 1em;
    line-height: 1.2;
    color: #666;
}

.toolbar-panel-button {
    font-family: Roboto;
    font-size: 1em;
    display: block;
    line-height: 2;
    border-radius: 0.2em;
    text-align: center;
    text-decoration: none;
    background-color: #555BCE;
    color: #fff;
    cursor: pointer;
    width: 150px;
}

.toolbar-panel-button:hover {
    background-color: #474dbb;
}

.highlight {
    background-image: url('/res/images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(72, 69, 77);
    height: 75px;
}

/* FAQ */
.faq {

}

.faq-inner {
    margin: 6em auto;
    max-width: 800px;
}

.faq-title {
    margin: 1em 0;
    font-family: Roboto;
    font-size: 2em;
    text-align: center;
    color: #333;
}

.faq-subtitle {
    margin: 1em 0 2em 0;
    font-size: 1.2em;
    text-align: center;
}

.faq-container {
    list-style: none;
    list-style-position: inside;
}

.faq-item {
    padding: 1.2em;
    border-bottom: 1px solid lightgray;
    clear: both;
    cursor: pointer;
}

.faq-item:last-child {
    border: none;
}

.faq-item-title {                
    font-family: Roboto;
    font-size: 1.2em;
    color: #333;
}

.faq-item:before {
    float: right;
    content: "\f0dd";
    margin-left: 1em;
    font-family: FontAwesome;
    font-size: 1.3em;
    line-height: 1.2;
    color: #555BCE;
    cursor: pointer;
}

.faq-item-text {
    margin: 1em 0 0 0;
    display: none;
    font-family: Roboto;
    font-size: 1.2em;
    color: #666;
    transition: all .75s ease;
    line-height: 1.4;
}

/* Downloads */
.downloads-title {
    margin-bottom: 0.1em;
    color: #fff;
}

.downloads-version {
    margin-bottom: 2em;
    color: #ccc;
}

.downloads-section {
    margin-bottom: 1em;
}

.downloads-subtitle {
    margin-bottom: 0.3em;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.downloads-brands {
    margin-right: 0.5em;
}

.downloads-platforms {
    display: inline-flex;
    align-content: center;
    align-items: center;
    padding: 0.5em 0.5em;
    border: 1px solid rgb(182, 178, 178);
    border-radius: 0.4em;
    margin-right: 0.5em;
    font-size: 1.2em;
    color: #fff;
    background-color: black;
    font-family: Arial;
    height: 50px;
}

.downloads-platforms-icon {
    font-size: 1.5em;
    margin-right: 0.3em;
}


/* Contact */
.contact-title {
    margin-bottom: 0.5em;
    font-family: Roboto;
    font-size: 2em;
    letter-spacing: 0.05em;
    color: #fff;
}

.contact-text {
    margin-bottom: 1em;
    font-family: Roboto;
    font-size: 1.3em;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #ccc;
}

.contact-box {
    padding: 2em;
    background-color: #42469E;
    font-size: 1em;
    color: #fff;
}

.contact-form-label {
    display: inline-block;
    margin-bottom: 0.3em;
    font-weight: normal;
    font-family: arial;
    letter-spacing: 0.05em;
}

.contact-form-input {
    border: 1px solid black;
    width: 100%;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form-textarea {
    width: 100%;
    min-height: 6em; 
    resize: vertical;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form-button {
    float: right;
    font-family: Roboto;
    font-size: 1em;
    display: block;
    line-height: 2;
    text-align: center;
    text-decoration: none;
    background-color: #ffd42a;
    color: #333;
    cursor: pointer;
    width: 125px;
}

.contact-form-note {
    float: left;
    max-width: calc(100% - 150px);
    font-size: 0.8em;
    font-weight: normal;
    color: #ccc;
    line-height: 1.5;
}

.contact-form-clear {
    clear: both;
}

.contact-form-result.box-result {
    margin-bottom: 1em;
    padding: 0.5em 1em;
    text-align: center;
    border-radius: 0.4em;
    font-size: 1em;
}

.contact-form-result.box-result:empty {
    display: none;
}

.contact-form-result.box-result--failure {
    background-color: #FFB5B7;
    color: #000; 
}

.contact-form-result.box-result--success {    
    background-color: #A5FF30;
    color: #000; 
}

#contact_email,
#contact_subject,
#contact_message {
    margin-bottom: 1em;
}

/* Desktop */
@media only screen and (min-width: 1281px) {

    .submenu {
        display: none;
    }
}

/* Tablet */
@media only screen and (max-width: 1280px) {

    .header {
        padding: 0.5em 0.2em;
        gap: 0.5em;
    }

    .logo {
        justify-content: center;
        padding: 0 2em;
    }

    .menu {
        padding: 0 2em;
    }

    .menu-item {
        margin: 0 0.5em;
    }

    .account {
        padding: 0 2em;
    }

    .try-it-now-button {
        display: none;
    }

    .menu-submenu {
        display: block;
    }

    .intro-inner {        
        justify-content: center;
        flex-wrap: wrap;
        gap: 3em;
    }

    .intro-inner {
        flex-wrap: wrap;
        gap: 3em;
    }

    .intro-title {
        text-align: center;
    }

    .intro-text {
        text-align: center;
    }
}

@media only screen and (max-width: 1080px) { 

    .menu {
        display: none;
    }
}

/* Mobile */
@media only screen and (max-width: 640px) {

    .header {
        padding: 0.5em 0.2em;
        gap: 0.2em;
        flex-direction: row;
    }

    .logo {
        padding: 0 0.5em;
    }

    .logo-text {
        font-size: 1em;
    }

    .account {
        display: flex;
        padding: 0 0.5em;
        gap: 1em;
        justify-content: flex-end;
    }

    .try-it-now-button {
        display: none;
    }

    .sign-in-button {
        display: block;
        width: 100px;        
    }

    .toolbar {
        padding: 1em;
    }

    .toolbar-inner {
        margin: 1em auto;
    }

    .toolbar-container {
        gap: 1em;
    }

    .toolbar-title {
        margin: 1em 0;
    }

    .toolbar-image {
        font-size: 2em;
    }

    .toolbar-panels {
        margin: 2em auto;
    }

    .toolbar-panels {
        flex-wrap: wrap;
    }

    .faq-inner {
        margin: 2em auto;
    }
    
    .faq-title {

    }

    .navigation {
        display: none;
    }

    .footer {
        justify-content: center;
    }

    .footer-right {
        display: none;
    }
}

@media only screen and (max-width: 375px) {

    .sign-in-button {
        display: none;
    }
}