/* Fonts */

@font-face {
    font-family: NotoSansLight;
    src: url('../fonts/Noto-Sans-Light.eot');
    src: local(''),
        url('../fonts/Noto-Sans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Noto-Sans-Light.woff2') format('woff2'),
        url('../fonts/Noto-Sans-Light.woff') format('woff'),
        url('../fonts/Noto-Sans-Light.ttf') format('truetype'),
        url('../fonts/Noto-Sans-Light.svg') format('svg');
}

@font-face {
    font-family: NotoSansRegular;
    src: url('../fonts/Noto-Sans-Regular.eot');
    src: local(''),
        url('../fonts/Noto-Sans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Noto-Sans-Regular.woff2') format('woff2'),
        url('../fonts/Noto-Sans-Regular.woff') format('woff'),
        url('../fonts/Noto-Sans-Regular.ttf') format('truetype'),
        url('../fonts/Noto-Sans-Regular.svg') format('svg');
}

@font-face {
    font-family: NotoSansBold;
    src: url('../fonts/Noto-Sans-Bold.eot');
    src: local(''),
        url('../fonts/Noto-Sans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Noto-Sans-Bold.woff2') format('woff2'),
        url('../fonts/Noto-Sans-Bold.woff') format('woff'),
        url('../fonts/Noto-Sans-Bold.ttf') format('truetype'),
        url('../fonts/Noto-Sans-Bold.svg') format('svg');
}

@font-face {
    font-family: LatoRegular;
    src: url('../fonts/Lato-Regular.eot');
    src: local(''),
        url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff'),
        url('../fonts/Lato-Regular.ttf') format('truetype'),
        url('../fonts/Lato-Regular.svg') format('svg');
}

/* General */

html,
body {
    height: 100%;
}

body {
    font-family: NotoSansRegular, Arial, Helvetica, sans-serif;
}

/* Headers */
h1,
h2,
h3,
h4 {
    font-family: NotoSansLight, Helvetica, Arial, Verdana, sans-serif;
}

h5 {
    font-family: NotoSansRegular, Helvetica, Arial, Verdana, sans-serif;
}

/* Anchors */
a {
    color: #003fe2;
    text-decoration: underline;
}

/* Superscript */

/* Chrome, Safari, Newer Edge */
@media all and (-webkit-min-device-pixel-ratio:0) {
    sup {
        font-size: 60%;
        line-height: 0;
        position: relative;
        top: -0.55em;
        vertical-align: baseline;
    }
}

/* Firefox */
@-moz-document url-prefix() {
    sup {
        font-size: 60%;
        line-height: 0;
        position: relative;
        top: -0.6em;
        vertical-align: baseline;
    }
}

/* Legacy Edge */
@supports (-ms-ime-align:auto) {
    sup {
        font-size: 70%;
        line-height: 0;
        position: relative;
        top: -0.5em;
        vertical-align: baseline;
    }
}

.bg-red {
    background-color: red;
}

/* Utilities */

.white,
a.white {
    color: white;
}

.pink,
a.pink {
    color: #d9308a;
}

.black,
a.black {
    color: black;
}

.purple,
a.purple {
    color: #00004e;
}

.bold {
    font-family: NotoSansBold, Helvetica, Arial, Verdana, sans-serif;
}

.light {
    font-family: NotoSansLight, Helvetica, Arial, Verdana, sans-serif;
}

.small-font {
    font-size: 0.8em;
}

.medium-font {
    font-size: 1em;
}

.large-font {
    font-size: 1.2em;
}

.xlarge-font {
    font-size: 1.4em;
}

.underline,
a.underline {
    text-decoration: underline;
}

.no-style-list {
    margin: 0;
    padding: 0;
}

.no-style-list li {
    list-style: none;
}

/* Buttons */

.btn {
    border: #00004e solid 2px;
    border-radius: 16px;
    font-family: NotoSansLight, Helvetica, Arial, Verdana, sans-serif;
    ;
    padding: 10px 10px;
    width: 100%;
}

/* Containers */

@media (min-width: 992px) {
    .container {
        max-width: 1400px;
    }
}

/* Menu Items */
.menu-container {
    display: flex;
    flex-direction: column;
}

.menu {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    padding: 10px 0;
}

.menu .item a {
    color: black;
    text-decoration: none;
}

.menu .item {
    margin-bottom: 5px;
}

.menu .selected {
    font-family: NotoSansBold, Helvetica, Arial, Verdana, sans-serif;
}

.menu .item:not(.selected):hover {
    text-decoration: underline;
}

.menu .item:last-child {
    padding-right: 0px;
}

@media (min-width: 992px) {
    .menu {
        flex-direction: row;
        align-self: flex-end;
    }

    .menu .item {
        margin-bottom: 0;
        margin-right: 30px;
    }

    .menu .item:last-child {
        margin-right: 0px;
    }
}

/* Header and footer */

.header,
.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.header {
    background-color: #dfe0e4;
    color: #00004e;
    min-height: 1px;
}

.header h1 {
    color: black;
}

.header .btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #00004e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
}

.header img {
    width: 100%;
}

.footer .logo-pfizer {
    width: 100px;
}

/* Content */

.content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    min-height: 1px;
}

/* Products */

.product-col,
.program-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: #bcbdc1 solid 2px;
    border-bottom: none;
    border-radius: 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 20px 35px 0 35px;
    min-height: 1px;
    padding: 10px;
    position: relative;
    text-align: center;
    width: 280px;
}

@media (min-width:900px) and (max-width: 1419px) {
    .product-container {
        margin: 20px 20px 0 20px;
        width: 200px;
    }
}

.product-image {
    min-height: 1px;
    width: 100%;
}

.product-image img {
    height: auto;
    max-width: 80%;
    width: 80%;
}

.product-text-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: 5px;
    min-height: 1px;
    width: 100%;
}

.product-text {
    font-size: 0.7em;
    width: 100%;
}

.product-text a {
    color: black;
    font-family: NotoSansBold, Helvetica, Arial, Verdana, sans-serif;
    text-decoration: underline;
}

.product-btn-container {
    margin: 0 35px 20px 35px;
    position: relative;
    text-align: center;
}

@media (min-width:900px) and (max-width: 1419px) {
    .product-btn-container {
        margin: 0 20px 20px 20px;
    }
}

.product-btn-line {
    border: #bcbdc1 solid 2px;
    border-radius: 24px;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: 50%;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.product-btn-line:after {
    content: '.';
    visibility: hidden;
}

.product-btn {
    background-color: white;
    border: #bcbdc1 solid 2px;
    bottom: -24px;
    color: #003fe2;
    font-family: LatoRegular, Helvetica, Arial, Verdana, sans-serif;
    ;
    min-width: 114px;
    text-decoration: none;
    width: 50%;
    z-index: 1000;
}

/* Programs */

.program-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 500px;
    text-align: center;
    width: 400px;
}

@media (max-width: 400px) {
    .program-container {
        min-width: 100%;
        width: 100%;
    }
}