/* Template Structure */
.page {
    width:100%;
    margin: 0 auto;
    max-width: var(--page-width);
}
.all {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    min-height: 100vh;
}
.modal{
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition:all 0.3s ease-in-out;
    z-index: -1;
    display: none;
    align-items: center;
    justify-content: center;

}
.modal.open{
    display: flex;
    opacity:1;
    z-index: 1050;
    align-items: flex-start;
    padding-top: 150px;
}

.modalInner {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    padding: 15px 25px;
    text-align: center;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.externalButtons{
    display: flex;
    display: -webkit-flex;
    margin-top: 20px;
    width: 100%;
    justify-content: space-evenly;
}

.goExternal{
    color: #fff;
    background-color: #0077CF;
    margin-bottom: 20px;
    width: 40%;
    border: none;
    height: 4em;
    cursor: pointer;
}

.closeModal{
    color: #fff;
    background-color: #30556b;
    margin-bottom: 20px;
    width: 40%;
    border: none;
    height: 4em;
    cursor: pointer;
}


.modalInner p{
    line-height: 24px;
    margin:10px 0;
}
.header {
    float: left;
    width: 100%;
}
.topNav {
    float: left;
    width: 100%;
}
.topNavInner {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.topNavLeft {
    float: left;
    width: auto;
    margin-right: auto;
}
.topNavCenter {
    float: left;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}
.topNavRight {
    float: left;
    width: auto;
    margin-left: auto;
}
.mainNav {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1000;
}
.mainNav.fixed.active {
    position: fixed;
    top: 0;
    left: 0;
}
.navSpacer {
    float: left;
    width: 100%;
}
.mainNav.scrollUp.active {
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}
.mainNav.scrollUp.active.down {
    visibility: hidden;
    opacity: 0;
}
.mainNav.scrollUp.active.up {
    visibility: visible;
    opacity: 1;
}
.mainNavInner {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.mainNavLeft {
    float: left;
    width: auto;
    margin-right: auto;
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    height: 20px;
}
.mainNavCenter {
    float: left;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}
.mainNavRight {
    float: left;
    width: auto;
    margin-left: auto;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}
.content {
    float: left;
    width: 100%;
}
.top1,
.top2,
.top3,
.top4 {
    float: left;
    width: 100%;
}
.mainContent {
    float: left;
    width: 100%;
}
.bottom1,
.bottom2,
.bottom3,
.bottom4 {
    float: left;
    width: 100%;
}
footer {
    float: left;
    width: 100%;
    align-self: flex-end;
    -webkit-align-self: flex-end;
}
.codeno {
    color:white;
    font-size:13px;
}

/* Error Page */
.errorPage {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.errorPage .errorPageContainer {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
}
.errorPage .errorText {
    line-height: 1;
    text-transform: uppercase;
}
.errorPage .errorCode {
    font-size: 180px;
    line-height: 1;
}
.errorPage .generalButton {
    margin-top: 30px;
    color: #AC162C;
    text-decoration: none;
}
.errorPage .generalButton:hover {
    color: #AC162C;
}

/* Website CSS */
body {
    font-family: 'Proxima Nova';
}
.all {
    background-image: url('../../../images/template/background-top.png');
    background-repeat: no-repeat;
    background-position: top right;
}
.header {
    margin-top: 100px;
}
.topNavInner {
    align-items: center;
    -webkit-align-items: center;
}
.mainNavInner {
    margin: 45px 0;
    align-items: center;
}
.modWbnMenu .menuItems .menuItem {
    transition: all 0.3s ease 0s;
}
.modWbnMenu .menuItems .menuItem.active,
.modWbnMenu .menuItems .menuItem:hover {
    border-right: 0!important;
    background-color: #CCE4F5;
}
.menuItems .menuItem.level2:hover,
.menuItems .menuItem.level2 a:hover {
    background-color: #b2cee1;
}
.modWbnMenu .desktopMenu .menuItems .menuItem > * {
    font-size: 12px;
    text-decoration: none;
    color: #000;
    padding: 0 20px;
    border-right: 2px solid #0077CF;
    line-height: 20px;
    float: left;
    font-weight: 300;
}
.modWbnMenu .menuItems .menuItem:last-child > * {
    border-right: none;
}
.menuItem.level1 {
    display: flex;
    flex-direction: column;
    height:100%;
}
.menuItems.level2{
    padding:0 !important;
    border-right: 0!important;
}
.menuItems.level2 {
    /*display: none;*/
    position: relative;
    /*top: 75px;*/
    /*left: -160px;*/
    text-align: left;
}

.menuItems.level2 a{
    border-right: 0!important;
    padding:0 0 0 20px!important;
    /*text-align: center;*/
    width:calc(100% - 20px);
}

.mod-login-logout .btn.btn-primary {
    color: #fff;
    padding: 5px 15px;
    background-color: #0077CF;
    border: 3px solid #69A7E6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.mod-login-logout .btn.btn-primary:hover {
    background-color: #69A7E6;
}
.yellowBox {
    background-color: #FFF200;
    color: #000;
    font-weight: bold;
    padding: 20px 30px;
    box-sizing: border-box;
    text-align: center;
}
.modWbnFooter .topArea {
    float: left;
    width: 100%;
    padding: 35px 0;
}
.modWbnFooter .textLeft {
    float: left;
    width: calc(50% - 25px);
    color: #58595B;
    font-size: 13px;
    font-weight: 300;
}
.modWbnFooter .textRight {
    float: right;
    width: calc(50% - 25px);
    color: #58595B;
    font-size: 13px;
    font-weight: 300;
}
.modWbnFooter .bottomArea {
    float: left;
    width: 100%;
    background-color: #0077CF;
    padding-bottom: 35px;
}
.modWbnFooter .logos {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.modWbnFooter .logos > div {
    padding: 0 15px;
}
.modWbnFooter .logos .logo1 img {
    filter: brightness(0) invert(1);
}
.modWbnFooter .lastText {
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}
.modWbnFooter .lastText a {
    color: #fff;
    text-decoration: none;
}
.modWbnFooter .lastText a:hover {
    text-decoration: underline;
}

/* Articles */
.mixedContent .text p,
.mixedContent .text ol,
.mixedContent .text ul {
    float: left;
    width: 100%;
    line-height: 1.4;
    text-align: justify;
    margin: 0 0 15px;
    font-size: 17px;
    font-weight: 300;
    box-sizing: border-box;
}
.mixedContent .text video {
    width: 100%;
    height: auto;
}
.mixedContent .text p.title {
    font-size: 20px;
    font-weight: bold;
    color: #58595B;
    margin-bottom: 0;
}
.mixedContent .downloadPdf {
    margin: 30px auto 30px;
    width: auto;
}
.mixedContent .downloadPdf a {
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    background-color: #0077CF;
    border: 3px solid #69A7E6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.mixedContent .downloadPdf a:hover {
    background-color: #69A7E6;
}
.mixedContent .websites {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 700px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
}
.mixedContent .websites .website {
    max-width: 520px;
    margin: 0 0 30px;
    width: 100%;
}
.mixedContent .websites .website a {
    float: left;
    width: 100%;
    border: 10px solid #0077CF;
    border-radius: 29px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease 0s;
}
.mixedContent .websites .website a:hover {
    box-shadow: 0 0 10px #999;
    transform: scale(0.997);
}
.mixedContent .websites .website a img {
    width: auto;
    max-width: 100%;
    height: 100px;
    margin: 0 auto;
    text-align: center;
}
.mixedContent .events .event {
    margin: 0 0 30px;
    width: 100%;
    float: left;
}
.mixedContent .events .event .date {
    font-size: 30px;
    font-weight: 300;
    color: #58595B;
    height: 45px;
    position: relative;
    display: inline-block;
    line-height: 45px;
    margin-bottom: 20px;
}
.mixedContent .events .event .date .separator {
    border-left: 1px solid #0077CF;
    padding-left: 5px;
    margin-left: 5px;
    height: 45px;
    position: relative;
    display: inline-block;
    margin-bottom: -10px;
}
.mixedContent .events .event .image {
    border: 2px solid #0077CF;
    padding: 20px;
    margin-bottom: 0;
    width: 100%;
    margin-left: -22px;
}
.mixedContent .text .titleBlue {
    font-weight: 300;
    font-size: 28px;
    color: #0077CF;
    line-height: 1.2;
}
.mixedContent .text .textSmall {
    font-weight: 300;
    font-size: 12px;
}
.mixedContent  .faqs {
    float: left;
    width: 100%;
}
.mixedContent  .faqs .faq {
    float: left;
    width: 100%;
}
.mixedContent .faqs .faq .title {
    background-color: #0077CF;
    float: left;
    width: 100%;
    border: 10px solid #69A7E6;
    border-radius: 29px;
    box-sizing: border-box;
    text-align: left;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease 0s;
    margin-bottom: 30px;
    color: #fff;
    padding: 10px 60px 10px 30px;
    font-size: 28px;
    font-weight: 300;
    min-height: 100px;
    background-image: url('../../../images/template/accordion-arrow.png');
    background-repeat: no-repeat;
    background-position: right 10px bottom 10px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.articletitlebutton {
    background-color: #0077CF;
    float: left;
    width: 100%;
    border: 10px solid #69A7E6;
    border-radius: 29px;
    box-sizing: border-box;
    text-align: left;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease 0s;
    margin-bottom: 30px;
    color: #fff;
    padding: 10px 60px 10px 30px;
    font-size: 28px;
    font-weight: 300;
    min-height: 100px;
    background-repeat: no-repeat;
    background-position: right 10px bottom 10px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
}
.titlebutton {
    background-color: #CCE4F5;
    float: left;
    border-radius: 29px;
    box-sizing: border-box;
    text-align: left;
    transition: all 0.2s ease 0s;
    margin-bottom: 30px;
    color: #0077CF;
    padding: 10px 30px 10px 30px;
    font-size: 28px;
    font-weight: 700;
    background-repeat: no-repeat;
    background-position: right 10px bottom 10px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
}
.mixedContent .faqs .faq .text {
    position: relative;
    z-index: 1;
    background-color: #0077CF;
    float: left;
    width: 100%;
    color: rgb(255, 255, 255);
    padding: 70px 20px 30px;
    box-sizing: border-box;
    font-size: 20px;
    top: -60px;
    z-index: 1;
    margin-bottom: -30px;
}
.mixedContent .faqs .faq .text img {
    float: left;
    max-width: 100%;
    height: auto;
}
.mixedContent .leftRightBlock .image {
    width: 340px;
    margin: 0;
    padding: 0 !important;
}
.mixedContent .leftRightBlock .text {
    width: calc(100% - 340px);
    max-width: 100%;
    padding: 0 0 0 25px;
    box-sizing: border-box;
    margin: 0;
    order: 2;
    -webkit-order: 2;
    align-self: flex-end;
    -webkit-align-self: flex-end;
}
.mixedContent .instructions {
    float: left;
    width: 100%;
    max-width: var(--page-width);
}
.mixedContent .instructions .instruction {
    float: left;
    width: 100%;
    border: 2px solid #0077CF;
    border-radius: 20px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 35px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.mixedContent .instruction .image {
    float: left;
    width: 240px;
    margin: 0;
    text-align: center;
    border-right: 2px solid #0077CF;
}
.mixedContent .instruction .image img {
    max-width: 120px;
    height: auto;
}
.mixedContent .instruction .textLink {
    width: calc(100% - 240px);
    padding: 0 50px 0 25px;
    box-sizing: border-box;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.mixedContent .instruction .textLink .text {
    float: left;
    width: calc(100% - 185px);
    padding-right: 50px;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}
.mixedContent .instruction .textLink .link {
    color: #fff;
    padding: 8px 40px 8px 15px;
    background-color: #0077CF;
    border: 3px solid #69A7E6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-size: 20px;
    background-image: url("../../../images/template/link-arrow.png");
    background-repeat: no-repeat;
    background-position: right 5px center;
    width: 185px;
    box-sizing: border-box;
}
.mixedContent .instruction .textLink .link:hover {
    background-color: #69A7E6;
}
.mixedContent .clinicalStudies {
    float: left;
    width: 100%;
    max-width: var(--page-width);
}
.mixedContent .clinicalStudy {
    float: left;
    width: calc(100% - 20px);
    border: 2px solid #0077CF;
    margin: 20px 0 45px 20px;
    display: flex;
    display: -webkit-flex;
}
.mixedContent .clinicalStudy .leftArea {
    float: left;
    width: 360px;
    padding: 20px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.mixedContent .clinicalStudy .leftArea:before {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 40px);
    left: -20px;
    top: -20px;
    background-color: #D1D1D1;
    z-index: -1;
}
.mixedContent .clinicalStudy .leftArea .title {
    font-size: 19px;
    color: #0077CF;
    margin-bottom: 20px;
}
.mixedContent .clinicalStudy .leftArea .strongText {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    margin-top: auto;
}
.mixedContent .clinicalStudy .leftArea .lightText {
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
}
.mixedContent .clinicalStudy .rightArea {
    float: left;
    width: calc(100% - 360px);
    padding: 20px;
}
.mixedContent .clinicalStudy .rightArea .title {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 300;
    color: #0077CF;
}
.mixedContent .clinicalStudy .rightArea .text {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 21px;
    font-weight: 300;
    max-width: unset;
    margin-bottom: 5px;
}
.mixedContent .clinicalStudy .rightArea .text p {
    margin: 0 0 20px ;
}
.mixedContent .clinicalStudy .rightArea .text p:last-child {
    margin-bottom: 0;
}
.mixedContent .clinicalStudy .rightArea .link {
    color: #fff;
    padding: 8px 40px 8px 15px;
    background-color: #0077CF;
    border: 3px solid #69A7E6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-size: 20px;
    background-image: url("../../../images/template/link-arrow.png");
    background-repeat: no-repeat;
    background-position: right 5px center;
    width: 185px;
    box-sizing: border-box;
    float: right;
    margin-top: auto;
}
.mixedContent .clinicalStudy .rightArea .link:hover {
    background-color: #69A7E6;
}

/* Article Default Layout */
.article.default {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}
.article.default .articleContainer {
    float: left;
    width: 100%;
    max-width: 840px;
    border: 2px solid #0077CF;
    padding: 35px 110px;
    box-sizing: border-box;
}

/* Home Page */
.modWbnHomePage .sectorOne {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 70px;
}
.modWbnHomePage .sectorOne .image {
    float: left;
    width: calc(100% - 370px);
}
.modWbnHomePage .sectorOne .image img {
    float: left;
    width: 100%;
    height: auto;
}
.modWbnHomePage .sectorOne .texts {
    float: left;
    width: 370px;
    padding-left: 20px;
    box-sizing: border-box;
}
.modWbnHomePage .sectorOne .texts .blackTextOne,
.modWbnHomePage .sectorOne .texts .blackTextTwo {
    font-size: 38px;
    font-weight: 300;
    color: #58595B;
    line-height: 1;
}
.modWbnHomePage .sectorOne .texts .blueText {
    font-size: 52px;
    color: #0077CF;
    line-height: 1;
}
.modWbnHomePage .sectorTwo {
     float: left;
     width: 100%;
     background-color: #DAEEF9;
     padding: 40px;
     box-sizing: border-box;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 70px;
 }
.modWbnHomePage .sectorTwo .leftTexts {
    width: 50%;
    padding-right: 40px;
    box-sizing: border-box;
    text-align: right;
}
.modWbnHomePage .sectorTwo .leftTexts .blueTextOne {
    font-size: 45px;
    font-weight: 300;
    color: #0077CF;
}
.modWbnHomePage .sectorTwo .leftTexts .blueTextTwo {
    font-size: 31px;
    font-weight: 300;
    color: #0077CF;
}
.modWbnHomePage .sectorTwo .rightTexts {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    background-color: #fff;
}
.modWbnHomePage .sectorTwo .rightTexts p,
.modWbnHomePage .sectorTwo .rightTexts ul,
.modWbnHomePage .sectorTwo .rightTexts ol {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 300;
}
.modWbnHomePage .sectorTwo .rightTexts *:last-child {
    margin-bottom: 0;
}
.modWbnHomePage .sectorThree {
    float: left;
    width: 100%;
    margin-bottom: 70px;
}
.modWbnHomePage .sectorThree .links {
    float: left;
    width: calc(100% + 50px);
    margin-left: -25px;
}
.modWbnHomePage .sectorThree .links .link {
    float: left;
    width: calc((100% / 5) - 20px);
    margin: 0 10px;
}
.modWbnHomePage .sectorThree .links .link .image {
    float: left;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}
.modWbnHomePage .sectorThree .links .link .image img {
    float: left;
    width: 100%;
    height: auto;
}
.modWbnHomePage .sectorThree .links .link .text {
    border: 2px solid #0077CF;
    float: left;
    width: 100%;
    text-align: center;
    padding: 50px 0px 10px;
    margin-top: -25px;
    box-sizing: border-box;
    z-index: -1;
    position: relative;
    font-size: 17px;
    font-weight: 300;
    color: #6D6E71;
    transition: all 0.3s ease 0s;
    min-height: 130px;
}
.modWbnHomePage .sectorThree .links .link:hover .text {
    color: #0077CF;
}

@media (max-width: 1220px) {
    .page{
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
    }
    .mainNavInner {
        margin: 30px 0;
    }
    .mobileMenu.open > .mobileMenuContainer {
        height: calc(100vh - 270px) !important;
    }
    .mobileMenu .menuItem.level1,
    .mobileMenu .menuItem.level1 a {
        text-decoration: none;
        width: 100%;
        text-align: center;
        color: #000;
    }
    .mixedContent .leftRightBlocks {
        max-width: unset;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .mixedContent .clinicalStudies {
        float: left;
        width: 100%;
        max-width: unset;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .mixedContent .instructions {
        float: left;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        max-width: unset;
    }
}
@media (max-width: 1120px) {
    .modWbnHomePage .sectorThree .links {
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    .modWbnHomePage .sectorThree .links .link {
        width: calc((100% / 2) - 20px);
        margin: 10px 10px;
    }
}
@media (max-width: 1000px) {
    .modWbnHomePage .sectorOne .texts .blackTextOne,
    .modWbnHomePage .sectorOne .texts .blackTextTwo {
        font-size: 32px;
    }
    .modWbnHomePage .sectorOne .texts .blueText {
        font-size: 46px;
    }
    .modWbnHomePage .sectorTwo {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .modWbnHomePage .sectorTwo .leftTexts {
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    .modWbnHomePage .sectorTwo .rightTexts {
        width: 100%;
    }
}
@media (max-width: 900px) {
    .modWbnHomePage .sectorThree .links .link .text {
        border: 2px solid #0077CF;
        float: left;
        width: 100%;
        text-align: center;
        padding: 35px 10px 10px;
        margin-top: -25px;
        box-sizing: border-box;
        z-index: -1;
        position: relative;
        font-size: 20px;
        font-weight: 300;
        color: #6D6E71;
        transition: all 0.3s ease 0s;
        min-height: 120px;
    }
    .mixedContent .instruction .textLink {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .mixedContent .instruction .textLink .text {
        float: left;
        width: 100%;
        padding-right: 0;
        box-sizing: border-box;
        max-width: 100%;
        font-size: 20px;
        font-weight: 300;
        margin: 0 0 20px;
    }
    .mixedContent .instruction .textLink .link {
        margin-left: auto;
    }
    .mixedContent .instruction .textLink {
        width: calc(100% - 160px);
        padding: 0 10px 0 20px;
        box-sizing: border-box;
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
    }
    .mixedContent .instruction .image {
        float: left;
        width: 160px;
        margin: 0;
        text-align: center;
        border-right: 2px solid #0077CF;
    }
}
@media (max-width: 880px) {
    .article.default .articleContainer {
        max-width: unset;
        margin: 0 20px;
    }
}
@media (max-width: 800px) {
    .all {;
        background-size: auto 60px;
    }
    .brand {
        max-width: 180px;
        width: 100%;
        float: left;
    }
    .brand img {
        float: left;
        width: 100%;
    }
    .header {
        margin-top: 70px;
    }
    .topNavRight {
        max-width: 120px;
    }
    .topNavRight img {
        width: 100%;
        height: auto;
    }
    .externalButtons{
        flex-direction: column;
        align-items: center;
    }

    .goExternal{
        width: 100%;
    }

    .closeModal{
        width: 100%;
    }

    .modalInner{
        width: 80%;
    }
    .modal.open{
        align-items: center;
        padding-top: 0;
    }
    .mobileMenu.open > .mobileMenuContainer {
        height: calc(100vh - 205px) !important;
    }
    .modWbnHomePage .sectorOne .texts .blackTextOne,
    .modWbnHomePage .sectorOne .texts .blackTextTwo {
        font-size: 26px;
    }
    .modWbnHomePage .sectorOne .texts .blueText {
        font-size: 36px;
    }
    .modWbnHomePage .sectorOne .texts {
        width: 280px;
    }
    .modWbnHomePage .sectorOne .image {
        float: left;
        width: 100%;
    }
    .mixedContent .text .titleBlue {
        font-size: 24px;
    }
    .mixedContent .faqs .faq .title {
        font-size: 24px;
    }
    .mixedContent .clinicalStudy {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .mixedContent .clinicalStudy {
        float: left;
        width: calc(100% - 40px);
        border: 2px solid #0077CF;
        margin: 20px 20px 45px 20px;
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
    }
    .mixedContent .clinicalStudy .leftArea {
        width: 100%;
    }
    .mixedContent .clinicalStudy .leftArea::before {
        content: "";
        position: absolute;
        width: calc(100% + 40px);
        height: calc(100% + 20px);
        left: -20px;
        top: -20px;
        background-color: #D1D1D1;
        z-index: -1;
    }
    .mixedContent .clinicalStudy .rightArea {
        float: left;
        width: 100%;
        padding: 20px;
    }
    .mixedContent .clinicalStudy .rightArea .title {
        float: left;
        width: 100%;
        margin-bottom: 10px;
        font-size: 25px;
        font-weight: 300;
        color: #0077CF;
    }
    .mixedContent .clinicalStudy .rightArea .text {
        float: left;
        width: 100%;
        margin: 0;
        padding: 0;
        font-size: 18px;
        font-weight: 300;
        max-width: unset;
        margin-bottom: 20px;
    }
}
@media (max-width:  700px) {
    .modWbnHomePage .sectorThree .links {
        float: left;
        width: 100%;
        margin-left: 0;
    }
    .modWbnHomePage .sectorThree .links .link {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
        margin: 0 0 20px;
        width: 100%;
    }
    .modWbnHomePage .sectorThree .links .link .image {
        float: left;
        width: 250px;
        padding: 0;
        box-sizing: border-box;
    }
    .modWbnHomePage .sectorThree .links .link .text {
        width: 100%;
        padding: 35px 10px 35px;
        margin-top: 0;
        min-height: unset;
        border-left: none;
        text-decoration: none;
    }
    .article.default .articleContainer {
        padding: 35px 20px;
    }
    .mixedContent .events .event .image {
        border: 2px solid #0077CF;
        padding: 20px;
        margin-bottom: 0;
        width: 100%;
        margin-left: 0;
        box-sizing: border-box;
    }
    .mixedContent .leftRightBlock .text {
        width: 100%;
        max-width: 100%;
        padding: 25px 0 0 0;
        box-sizing: border-box;
        margin: 0;
        order: 2;
        -webkit-order: 2;
        align-self: flex-end;
        -webkit-align-self: flex-end;
    }
}
@media (max-width: 600px) {
    .modWbnFooter .textLeft,
    .modWbnFooter .textRight {
        width: 100%;
    }
    .modWbnHomePage .sectorOne {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .modWbnHomePage .sectorOne .texts {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .modWbnHomePage .sectorTwo {
        padding: 20px;
    }
    .modWbnHomePage .sectorTwo .leftTexts .blueTextOne {
        font-size: 36px;
        margin-bottom: 5px;
    }
    .modWbnHomePage .sectorTwo .leftTexts .blueTextTwo {
        font-size: 25px;
    }
    .modWbnHomePage .sectorTwo .rightTexts {
        padding: 20px;
    }
    .mixedContent .instruction .image {
        width: 100px;
    }
    .mixedContent .instruction .image img {
        max-width: 80px;
    }
    .mixedContent .instruction .textLink .text {
        float: left;
        width: 100%;
        padding-right: 0;
        box-sizing: border-box;
        max-width: 100%;
        font-size: 16px;
        font-weight: 300;
        margin: 0 0 20px;
    }
    .mixedContent .instruction .textLink {
        width: calc(100% - 100px);
        padding: 0 10px 0 20px;
        box-sizing: border-box;
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
    }
}
@media (max-width: 450px) {
    .modWbnHomePage .sectorThree .links .link .text {
        font-size: 18px;
    }
    .modWbnHomePage .sectorThree .links .link .text {
        padding: 20px 10px 20px;
    }
    .mixedContent .faqs .faq .title {
        font-size: 20px;
    }
    .mixedContent .websites .website a img {
        width: auto;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        text-align: center;
        max-height: 100%;
    }
}
