:root {
    --desktop-width: 1440px;
    --desktop-height: 900px;
    --desktop-full-hd-width: 1920px;
    --desktop-full-hd-height: 1080px;
    --mobile-standard-width: 360px;
    --mobile-standard-height: 800px;
    --mobile-common-width: 390px;
    --mobile-common-height: 844px;
    --tablet-width: 810x;
    --tablet-height: 1080px;
    --tablet-landscape-width: 1080px;
    --tablet-landscape-height: 810px;
}

@font-face {
    font-family: 'Catamaran-Light';
    src: url('../fonts/catamaran/Catamaran-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Catamaran-Bold';
    src: url('../fonts/catamaran/Catamaran-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(../images/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Catamaran-Light, sans-serif;
    width: 100%;
}

li a {
    text-decoration: none;
}

/** [BEGIN] Header */

header {
    width: 100%;
    height: 100px;
    background-color: #FFF;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    position: sticky;
    top: 0px;
    z-index: 99;
}

header div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px auto;
    width: var(--desktop-width);
}

header div nav div#menu {
    display: none;
}

header div figure {
    width: 20%;
}

header div figure object {
    margin-top: 12.5px;
}

header div figure img {
    margin-top: 12.5px;

}

header div figure span {
    color: #0032A0;
    font-size: 2.5em;
    display: inline-block;
    position: absolute;
    top: 25px;
    width: 100px;
    font-weight: bold;
    font-family: Catamaran-Bold, sans-serif;
    letter-spacing: 0.15em;
}

header div nav {
    width: 80%;
}

header div nav span#menu {
    display: none;
}

header div nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-top: 25px;
}

header div nav ul li {
    background: #e6ebf6;
    border-radius: 5px;
    box-sizing: border-box;
    color: #0032A0; 
    margin-left: 37.5px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 12.5px;
}

header div nav ul li:hover {
    background: #0032A0;
    border-radius: 5px;
    color: #e6ebf6;
    cursor: pointer;
    cursor: hand;
}

header div nav ul li.menu-nav-responsive {
    display: none;
}

header div nav span#menu-close {
    display: none;
}

.dropdown-button {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e6ebf6;
    border: 1px solid #CDCDCD;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
    top: 25px;
    opacity: 0.9;
    padding: 12.5px 15px;
    width: 350px;
    z-index: 1;
}

.dropdown-content li {
    color: #1286EF;
    font-family: Catamaran-Light, sans-serif;
    font-size: 0.8em;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-button:hover .dropdown-content {
    display: block;
}

/** [END] Header */


/** [BEGIN] Main */

@property --startBackgroundColor {
    syntax: '<color>';
    inherits: false;
    initial-value: #0032A0;
}

@property --endBackgroundColor {
    syntax: '<color>';
    inherits: false;
    initial-value: #e6ebf6;
}

main {
    width: 100%;
}

main section:first-child {
    height: 500px;
    width: 100%;
    background: linear-gradient(var(--startBackgroundColor), var(--endBackgroundColor));  
    animation: hero-background-image-gradient 5s infinite;
}

main section ~ section {
    width: var(--desktop-width);
    margin: 25px auto;
    border-bottom: 2.5px solid #E1E1E1;
}

main section:first-child div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: var(--desktop-width);
    margin: 0px auto;
    position: relative;
}

@keyframes hero-background-image-gradient{
    0%, 100% {
        --startBackgroundColor: #0032A0;
        --endBackgroundColor: #e6ebf6;
    }
    50% {
        --startBackgroundColor: #e6ebf6;
        --endBackgroundColor: #0032A0;
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #0032A0; }
}

@keyframes fadeInSlideUpScaleUp {
    0% {
        opacity: 0;
        transform: translateX(125px) scale(0.25);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

main section div article {
    margin-top: 150px;
}

main section div article h1 {
    overflow: hidden;
    font-family: Catamaran-Bold, sans-serif;
    font-size: 3.5em;
    line-height: 1em;
    color: #FFF;
    white-space: nowrap;
    letter-spacing: .075em;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
    animation-delay: 0.25s;
    /** animation-iteration-count: infinite; */
}

main section div article p {
    width: 55%;
    overflow-wrap: break-word;
    font-family: Catamaran-Light, sans-serif;
    font-size: 2.5em;
    line-height: 1em;
    margin-top: 25px;
    color: #FFF;
}


/** [+] Other Pages */

main section#hero-container-sub-page {
    top: 50px;
    height: 170px;
    width: 100%;
    background: linear-gradient(var(--startBackgroundColor), var(--endBackgroundColor));  
    animation: hero-background-image-gradient 5s infinite;
}

main section#hero-container-sub-page div article h1 {
    margin-top: -125px;
}

/** [-] */

main section div article button {
    padding: 12.5px 17.5px;
    background: #0032A0;
    border: 1px solid #0032A0;
    border-radius: 5px;
    color: #FFF;
    font-family: Catamaran-Light, serif;
    font-size: 1.2em;
    margin-top: 25px;
    cursor: pointer;
    cursor: hand;
    box-shadow: 3.5px 3.5px #e6ebf6;
}

main section div article button:hover {
    background: #0032A0;
    border: 1px solid #0032A0;
}

main section#app-download {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 25px auto;
}

main section div figure img#hero-image1 {
    animation: fadeInSlideUpScaleUp 2.5s;
    animation-delay: 0.25s;
    position: absolute;
    top: 50px;
    right: 175px;
}

main section div figure img#hero-image2 {
    animation: fadeInSlideUp 2.5s;
    animation-delay: 0.25s;
    position: absolute;
    right: 0px;
    top: 300px;
}

main section#app-download figure img {
    animation: fadeInSlideUp 2.5s;
    animation-delay: 0.5s;
}

main section ~ section div {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

main section ~ section div figure img {
    clip-path: circle(100%);
    margin: 25px 75px;
}

main section ~ section div figure img:hover {
    opacity: 0.5;
    cursor: pointer;
    cursor: hand;
}

main section ~ section div figure object {
    clip-path: circle(100%);
    margin: 25px 75px;
}

main section ~ section div figure object:hover {
    opacity: 0.5;
    cursor: pointer;
    cursor: hand;
}

main section ~ section div article {
    margin: 12.5px 12.5px;
    width: 100%;
    text-align: justify;
}

main section ~ section div article p {
    width: 100%;
}

main section ~ section div article ul {
    list-style-type: square;
    margin-top: 12.5px;
}

main section ~ section div article ul li {
    font-size: 1.2em;
    color: #555;
    list-style-position: inside;
}

main section div article table {
    border: 1px solid #777;
    border-collapse: collapse;
    text-align: center;
}

main section div article table caption {
    border: 1px solid #777;
    border-collapse: collapse;
    font-weight: bold;
    font-size: 1.6em;
}

main section div article table thead tr th {
    border: 1px solid #777;
    padding: 2.5px;
}

main section div article table thead tr th:nth-child(1) {
    background: #ffd133;
    color: #333;
}

main section div article table thead tr th:nth-child(2) {
    background: #1bbe5b;
    color: #FFF;
}

main section div article table thead tr th:nth-child(3) {
    background: #21a1ef;
    color: #FFF;
}

main section div article table tbody tr td {
    border: 1px solid #777;
    padding: 2.5px;
}

h2.header-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #0033A0;
}

h3.title {
    color: #0032A0;
    font-size: 2em;
    font-weight: bold;
}

p.description {
    color: #555;
    font-size: 1.2em;
    line-height: 1.4em;
}

p.summary-title, p.summary-content {
    color: #555;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 25px;
}

p.summary-content {
    font-weight: normal;
    line-height:normal;
}

form label, form input[type="text"], form input[type="email"], textarea, button {
    font-family: Catamaran-Light, sans-serif;
    font-size: 1.2em;
    color: #555;
}

form label {
    display: block;
    margin-top: 25px;
}

form input[type="text"], form input[type="email"], textarea {
    border: 1px solid #CDCDCD;
    border-radius: 7.5px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2); 
    padding: 10px 12.5px;
    width: 400px;
}

form input[type="text"]:focus, form input[type="email"]:focus, textarea:focus {
    border: 1px solid #1286EF;
}

form textarea {
    height: 150px;
}

form button, input[type="submit"] {
    border: 1px solid #0032A0;
    padding: 12.5px 17.5px;
    border-radius: 7.5px;
    background: #0032A0;
    color: #FFF;
}

form button:hover, input[type="submit"]:hover {
    background: #447276;
    cursor: pointer;
    cursor: hand;
}

#success-email-response {
    display: none;
}


/** [END] Main */

/** [BEGIN] Footer */

footer {
    background: #0032A0;
    font-family: Catamaran-Light, sans-serif;
    height: 300px;
    padding: 25px 0px;
    width: 100%;
    position: relative;
}

footer section {
    width: var(--desktop-width);
    margin: 0px auto;
}

footer section div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

footer section div nav ul {
    list-style-type: none;
}

footer section div nav ul li {
    display: block;
    font-size: 1em;
    color: #FFF;
    line-height: 2.3em;
    text-decoration: none;
}

footer section div nav ul li:hover {
    color: #0032A0;
    cursor: pointer;
    cursor: hand;
}

footer section#footer-notes {
    background: #c4c9D4;
    height: 35px;
    position: absolute;
    bottom: 0px;
    padding-top: 5px;
    width: 100%;
}

.white {
    color: #FFF;
}

.cursor {
    cursor: pointer;
    cursor: hand;
}

.clear-7-5 {
    height: 7.5px;
    clear: both;
}

.clear-12-5 {
    height: 12.5px;
    clear: both;
}

.clear-25 {
    height: 25px;
    clear: both;
}

.clear {
    height: 50px;
    clear: both;
}

.margin-left-25 {
    margin-left: 25px;
}   

.margin-left-50 {
    margin-left: 50px;
}

.margin-left-100 {
    margin-left: 100px;
}

.margin-left-150 {
    margin-left: 150px;
}

.margin-left-200 {
    margin-left: 200px;
}

.margin-left-250 {
    margin-left: 250px;
}

.margin-left-300 {
    margin-left: 300px;
}

.margin-left-350 {
    margin-left: 350px;
}

.margin-left-500 {
    margin-left: 500px;
}

.margin-auto {
    margin: auto;
}

.strong {
    font-weight: bold;
}

.emphasize {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.dark-green-background {
    background: #0032A0;
    border-radius: 5px;
    color: #FFF !important;
    padding: 12.5px 17.5px;
}

.dark-green {
    color: #0032A0;
}

.white {
    color: #FFF;
}

.gray {
    color: #777;
}

.opacity-0-75 {
    opacity: 0.75;
}

.custom-object-position {
    clip-path: none;
    border-radius: 5px;
    border-style: inset;
    border: 1.5px solid #CDCDCD;
    padding: 3.5px;
}

.custom-object-position-no-border {
    clip-path: none;
    border: none;
    padding: 3.5px;
}

/** [END] Footer */
