html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* RESET END */

@font-face {
    font-family: 'Panton';
    src: url('../fonts/Panton-Regular.ttf') format('ttf'),
        url('../fonts/Panton-Regular.woff2') format('woff2'),
        url('../fonts/Panton-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton';
    src: url('../fonts/Panton-Bold.ttf') format('ttf'),
        url('../fonts/Panton-Bold.woff2') format('woff2'),
        url('../fonts/Panton-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton';
    src: url('../fonts/Panton-SemiBold.ttf') format('ttf'),
        url('../fonts/Panton-SemiBold.woff2') format('woff2'),
        url('../fonts/Panton-SemiBold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.tff') format('tff'), 
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4 ,h5, h6 {font-family: 'Panton';}
h1 {font-weight: 500; font-size: 58px; line-height: 66px;}
h1 span {font-weight: 600;}
h2 {font-weight: 600; font-size: 48px; line-height: 56px;}
h3 {font-weight: 600; font-size: 36px; line-height: 44px;}
h4 {font-weight: 400; font-size: 24px; line-height: 30px;}
h5 {font-weight: 600; font-size: 22px; line-height: 28px;}
h6 {font-weight: 600; font-size: 96px; line-height: 96px;}
p {font-family: 'Roboto'; font-weight: 400; font-size: 18px; line-height: 28px; }

@media only screen and (max-width: 1660px) {
    h1 {font-size: 48px; line-height: 56px;}
    h2 {font-size: 38px; line-height: 46px;}
    h3 {font-size: 30px; line-height: 38px;}
    h4 {font-size: 20px; line-height: 26px;}
    h5 {font-size: 18px; line-height: 26px;}
    h6 {font-size: 72px; line-height: 96px;}
    p {font-size: 16px; line-height: 20px; }
}

@media only screen and (max-width: 960px) {
    h1 {font-size: 40px; line-height: 46px;}
    h2 {font-size: 34px; line-height: 38px;}
    h3 {font-size: 27px; line-height: 33px;}
    h4 {font-size: 20px; line-height: 26px;}
    h5 {font-size: 18px; line-height: 26px;}
    h6 {font-size: 72px; line-height: 96px;}
    p {font-size: 16px; line-height: 20px; }
}

@media only screen and (max-width: 640px) {
    h1 {font-size: 34px; line-height: 38px;}
    h2 {font-size: 30px; line-height: 30px;}
    h3 {font-size: 24px; line-height: 28px;}
    h4 {font-size: 18px; line-height: 22px;}
    h5 {font-size: 16px; line-height: 20px;}
    h6 {font-size: 48px; line-height: 60px;}
    p {font-size: 14px; line-height: 16px; }
}

.color-darkblue {color: #001689}
.color-blue {color: #0045FF}
.color-lightblue {color: #00BEFD}
.color-white {color: #ffffff}

/* ANIMATION */

body {
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
  
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}


/* CSS */

body {width: 100%;position: relative; }
.wrapper {max-width: 1920px; margin: 0 auto; width: 100%;position: relative;}

.button {
    display: block;    
    transition: 0.5s all ease;}

.button:hover {
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.26);
    transition: 0.5s all ease;  
}


.button-download {
    background-color: #0045FF; 
    width: 250px; 
    height: 50px; 
    color: #ffffff; 
    line-height: 50px; 
    text-align: center; 
    border-radius: 10px;
}
.button-download a {
    display: block; 
    text-decoration: none; 
    color: #fff; 
    line-height: 50px;
    padding: 0px 10px;
    text-decoration: none;
    font-size: 28px;
    font-family: 'Panton';
    font-weight: 500;
}
nav {height: 53px; 
    width: 100%; position: relative;
    z-index: 13;
}
.nav-wrapper {position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;}

.nav-logo {
    width: 496px; 
    max-width: 30%;
    position: relative;
    z-index: 15;
    height: 53px;
}
.nav-logo img {
    width: 100%;
    position: relative;
    z-index: 25;
}
.nav-menu-wrapper {margin: 0 auto;}
.nav-menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 53px;
}
.nav-menu li {
    display: inline-block; 
    line-height: 53px;
}
.nav-menu li a {
    display: inline-block; 
    line-height: 53px;
    padding: 0 10px;
    color: #0045FF;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Panton';
    font-weight: 400;
}
.nav-menu li a:hover {
    color: #001689
}
.nav-store {
    width: 496px; 
    max-width: 30%;
    height: 53px;
    display:flex;
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: right;
    align-items: center;
}

.nav-store-txt {
    font-family: 'Panton'; 
    font-weight: 400; 
    font-size: 14px;
    text-align: right;}

.nav-store-appstore {
    width: 49px; 
    height: 49px;
    background-size: contain;
    background-image: url('../img/nav-appstore.png');
}
.nav-store-googleplay {
    width: 49px; 
    height: 49px;
    background-size: contain;
    background-image: url('../img/nav-googleplay.png');
}

.nav-store a {display: block; width: 100%; height: 100%;}

@media only screen and (max-width: 960px) {
    .nav-store{
        display: none;   
    }
}

@media only screen and (max-width: 640px) {
    .nav-logo {
        max-width: 33%;
    }
    .nav-menu li a {
    font-size: 16px;
    }
}

@media only screen and (max-width: 410px) {
    .nav-logo {
        max-width: 33%;
    }
    .nav-menu li a {
    font-size: 12px;
    }
}



.header {width:100%; height: 800px;position: relative;z-index: 10;}
.header-wrapper {position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;}
.header-left {
    width: 66%;
    background-size: cover;
    background-image: url('../img/header-left.jpg');
    background-position: center bottom;
    height: 800px;
    position: relative;
    }

.header-txt {
    position: relative;
    top: 60%;
    padding: 0px 20px 20px 150px
}
.header-txt .button {margin-top: 30px;}
    
.header-right {
    width: 34%;
    background-color: #fff;
    height: 800px;
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;}

.header-logo {max-width: 50%;
max-height: 50%; }

@media only screen and (max-width: 1440px) {
    .header-txt {
        position: relative;
        top: 65%;
        padding: 0px 20px 20px 50px
    }
    
}


@media only screen and (max-width: 960px) {
    .header {height: auto;}
    .header-wrapper {flex-wrap: wrap;
    flex-direction: column;}
    .header-txt {
        position: relative;
        top: 50%;
        padding: 40px 20px 40px 20px;
        background-color: rgba(255,255,255,0.75);
        -webkit-box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.75);
        -moz-box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.75);
        box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.75);
        transform: translateY(-50%);
        text-align: center;
    }
    .header-txt .button {margin: 30px auto;}
    .header-left {order:2;
        width: 100%;
        height: 500px;
        background-position: right bottom;
    }
    .header-right {
        order:1;
        width: 100%;
        height: 400px;
    }
}







.download {width:100%; height: 850px;position: relative;z-index: 10;}
.download-wrapper {position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;}

.download-green {height: 91px; width: 100%; background-color: #00D8B4}

.download-blues {
    width: 100%; 
    height: 759px; 
    position: relative;
    background-color: #0045FF;
    z-index:10;
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;}

.download-blues:before {
    content: "";
    width: 34%; 
    height: 759px; 
    position: absolute;
    background-color: #001689;
    z-index: 12;
    right:0%;
    -webkit-box-shadow: inset 31px 0px 18px -24px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: inset 31px 0px 18px -24px rgba(0, 0, 0, 0.26);
    box-shadow: inset 31px 0px 18px -24px rgba(0, 0, 0, 0.26);
}

.download-blue-left {
    width: 33%;
    height: 759px; 
    position: relative;
    z-index:10;
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;

}

.download-blue-left-top {
    padding-top: 40px;
    width: 90%;
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding-right: 40px; 
}

.download-blue-left-top .hrline {
    height: 3px; 
    background-color: #ffffff; 
    display: inline-block;
    flex-grow: 1;
}

.download-blue-left-top span {font-family: 'Panton'; font-weight: 400;}

.download-blue-left-bottom {
    padding-top: 40px;
    width: 40%;
    padding-right: 40px;
    height: calc(100% - 40px);
}

.download-blue-center {
    width: 20%;    
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    gap: 50px;
    padding-right: 8%;
}

.download-buttons .button {
    width: 211px; 
    height: 64px; 
    color: #ffffff; 
    line-height: 64px; 
    text-align: center; 
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.5s all ease; 
}



.download-buttons .button a {
    display: block; 
    text-decoration: none; 
    color: #fff; 
    line-height: 64px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%; height: 100%;
}

.button-googleplay a {
    background-image: url('../img/download-googleplay.png');
}
.button-appstore a {
    background-image: url('../img/download-appstore.png');
}


.download-blue-right {
    width: 34%;
    height: 759px;
    position: relative;
}

.download-blue-right-phone {
    position: relative;  
    width: 100%;
    height: 759px;
    position: relative;
}
.download-blue-right-phone-img {
    position: absolute; 
    z-index: 15; 
    top: -10%;
    left:-34%;
    overflow: hidden;
}


@media only screen and (max-width: 1440px) {
    
    .download-blue-right {
        width: 24%;
    }
    .download-blue-right-phone-img {
        /*! width: 300px; */
        /*! height: auto; */
        left: -58%;
    }
    .download-blue-left-bottom {
        text-align: right;
        padding-top: 40px;
        width: 80%;
        padding-right: 40px;
        height: calc(100% - 40px);
    }
    .download-blue-center {
        width: 28%; 
        padding-right: 12%;
    }
}


@media only screen and (max-width: 1160px) {
    
       .download-blue-right-phone-img {
        width: 400px;
        left: -58%;
    } 
}


@media only screen and (max-width: 960px) {
    
    .download-blue-right {
        width: 24%;
    }
    .download-blue-right-phone-img {
        left: -70%;
        width: 350px;
    }

}

@media only screen and (max-width: 768px) {
    
    .download-blues {flex-wrap: wrap !important; flex-flow: row;}
    .download-blue-left {
        width: 66%;
        height: 100px; 
        position: relative;
        z-index:10;
        display: flex; 
        flex-direction: column; 
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-end;
    }
    .download-blue-left-bottom {
        text-align: center;
    }
    .download-blue-right {
        width: 33%;
    }
    .download-blue-right-phone-img {
        width: 100%;
        top: 50%;
        left: -20%;
        transform: translateY(-70%);
    }
    
    .download-blue-center {
        width: 56%; 
        padding: 0% 4%;
        height: 300px;
        text-align: center;
        align-items: center;
    }
     
}

@media only screen and (max-width: 660px) {
    .download-blue-right {display: none;}
    .download-blues {align-items: center;}
    .download-blues:before {content: unset;}
    .download-blue-left {
        width: 100%;
    }    
    .download-blue-center {
        width: 100%; 
    }
    .download-blue-left-bottom {
        padding: 40px 0px;
        width: 90%;
    }
    .download-blue-left {align-items: center;}
}    




.help {width:100%; height: 759px; position: relative;z-index: 10;}
.help-wrapper {position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;}

.help-left-columns {
    width: 33%;
    height: 759px; 
    position: relative;
    z-index:10;
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.help-left-top {
    padding-top: 40px;
    width: 90%;
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;

}

.help-left-top .hrline {
    height: 3px; 
    background-color: #00BEFD; 
    display: inline-block;
    flex-grow: 1;
}

.help-left-top span {font-family: 'Panton'; font-weight: 400;}

.help-left-bottom {
    margin-top: 30px;
    width: 100%;
    background-size: cover;
    background-image: url('../img/help-left-image.jpg');
    background-position: center bottom;
    height: 100%;
    position: relative;
}

.help-left-bottom h3 span {}

.help-right-columns {
    width: 43%;
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-start;
    height: 600px;
}

.help-right-column-top-txt {
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: ;
    height: 100%;
    gap: 30px;
    padding-left: 8%;
    padding-bottom: 40px; 
}
.help-right-column-bottom {
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-self: flex-end;
    height: 100%;
    gap: 30px;
    padding-left: 40px;
}


@media only screen and (max-width: 960px) {
    .help-right-columns {width: 60%;}
    .help-left-columns {
        width: 33%;
    }
    .help-right-column-bottom {align-self: right;}
    .help-right-column-top-txt {}
}

@media only screen and (max-width: 768px) {
    .help {height: auto;}
    .help-wrapper {flex-wrap: wrap; flex-flow: column; align-items: flex-start}
    
    .help-left-columns {
        width: 100%;
    }
    .help-left-top {width: 62%; align-self: flex-start;}
    
    .help-left-bottom {background-position: center center}
    .help-right-columns {width: 100%; align-items: center; text-align: center;}
    .help-right-column-bottom {align-self: unset; padding: 40px;}
    .help-right-column-top-txt {text-align: center; padding: 40px;}
    .help-right-column-top-txt .button {align-self: center; display: inline-block; margin: 0 auto; }
}

@media only screen and (max-width: 660px) {
    .help-left-top {width: 90%;}
    
}

.simply {width:100%; height: 800px; position: relative; z-index: 10;
    background-size: cover;
    background-image: url('../img/simply-bg.png');
    background-position: center bottom;

}
.simply-wrapper {position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;}

.simply-top-columns {
    width: 33%;
    position: relative;
    z-index:10;
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.simply-left-top {
    padding-top: 40px;
    width: 90%;
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;

}

.simply-left-top .hrline {
    height: 3px; 
    background-color: #0045FF; 
    display: inline-block;
    flex-grow: 1;
}

.simply-left-top span {font-family: 'Panton'; font-weight: 400;}

.simply-left-bottom {
    margin-top: 30px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}

.simply-bottom-wrapper {
    width: 43%;
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    height: 600px;
    align-self: center; 
    gap: 30px;
    padding-top: 60px;
}

.simply-bottom-wrapper h5 {width: 60%;}

.simply-bottom-columns {
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start; 
    gap: 30px;
}

.simply-columns-txt {width: 45%;
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.simply-columns-txt-icon {
    width: 39px;
    height:39px; 
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 10px;
    flex-grow: 0;
    flex-shrink: 0;
}



@media only screen and (max-width: 1660px) {
    .simply {height: 900px; }
    
}

@media only screen and (max-width: 1660px) {
    .simply-bottom-wrapper {
        width: 60%;
    }
}

@media only screen and (max-width: 960px) {
    .simply-bottom-wrapper {
        width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .simply-bottom-wrapper {
        width: 90%; align-items: center;}
    .simply-top-columns {
    width: 90%;}
    .simply-columns-txt {width: 100%;}

}

@media only screen and (max-width: 768px) {
    .simply-left-top {width: 90%;}
     .simply-top-columns {
        width: 100%;}
    .simply-left-bottom {width: 90%;}
    .simply-bottom-wrapper h5 {text-align: center; width: 90%;}
}

@media only screen and (max-width: 440px) {
    .simply {height: 1000px; }
    
}

.icon-news {
    background-image: url('../img/simply-news.png');
}

.icon-products {
    background-image: url('../img/simply-products.png');
}

.icon-education {
    background-image: url('../img/simply-education.png');
}

.icon-wounds {
    background-image: url('../img/simply-wounds.png');
}

.icon-hub {
    background-image: url('../img/simply-hub.png');
}

.simply-columns-txt-txt {
    font-family: 'Roboto'; 
    font-weight: 400; 
    font-size: 18px; 
    line-height: 24px; 
    flex-grow: 0; 
    align-self: center}


footer {background-color: #0045FF; width: 100%;}
.footer-wrapper {position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 350px;
    width: 70%;
    margin: 0 auto;
    gap: 40px;}

.footer-socials {
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    gap: 20px;
}


.social-icon {
    width: 21px; 
    height: 21px; 
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    /*! shrink: 0; */
}

.social-icon a {display: block; height: 100%; width: 100%}

.social-fb {
    background-image: url('../img/socials-fb.png');
}

.social-ig {
    background-image: url('../img/socials-ig.png');
}
.social-li {
    background-image: url('../img/socials-li.png');
}
.social-tt {
    background-image: url('../img/socials-tt.png');
}
.social-yt {
    background-image: url('../img/socials-yt.png');
}


.footer-hr {
    height: 1px; 
    background-color: #00BEFD; 
    display: inline-block;
    width: 100%; 
}

.footer-logo {}














