/*//////////////////
// Brand Colors
////////////////////
Dark Blue -- #001871
Light Blue - #E9EEF5
Teal ------- #007A76
Orange ----- #C2510A
Light Gray - #E9EEF5
Text Gray -- #3C3A3D
Text Lt Gray #4A4A4A
Yellow ----- #FED141
Background - #E8E8E8
////////////////////
// End Colors
//////////////////*/

html {
    height: 100%;
}

body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: Gotham;
    background: #E8E8E8;
}

section {
    padding: 40px 70px;
    color: #4A4A4A;
}

section .button {
    color: #FED141;
    border-radius: 14px;
    background: #001871;
    padding: 15px 35px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

section .button:hover {
    cursor: pointer;
}

sup {
    vertical-align: top;
    font-size: initial;
}

img {
    pointer-events: none;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.content-wrapper {
    display: flex;
    margin-top: 70px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-left: 1px solid #e6e7e8;
    border-right: 1px solid #e6e7e8;
}

.section-wrapper {
    margin-top: 20px;
    width: 75%;
}

aside {
    position: sticky;
    background: #fff;
    width: 330px;
    z-index: 1;
    font-size: 14px;
    right: 0;
    top: 90px;
    max-height: 90vh;
    overflow-y: scroll;
    padding: 0 20px;
    scroll-behavior: smooth;
    color: #3C3A3D;
}

.gradient-bg {
    background: rgb(0, 57, 107);
    background: linear-gradient(135deg, rgba(0, 57, 107, 1) 0%, rgba(0, 148, 159, 1) 100%);
}

.gradient-bg-alt {
    background: rgb(0, 58, 108);
    background: linear-gradient(90deg, rgba(0, 58, 108, 1) 0%, rgba(0, 173, 168, 1) 100%);
}

.no-wrap {
    white-space: nowrap;
    color: inherit !important;
}

.no-bold {
    font-weight: 400 !important;
}

/*//////////////////
// Slider Carousel
//////////////////*/
.slider,
.slider .blue-carousel {
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: relative;
}

.slider {
    /*height: 300px !important;
    max-height: 300px;*/
    width: 100% !important;
    padding-top: 60px;
    padding-bottom: 20px;
}

.slider .blue-carousel {
    display: flex;
    overflow: visible;
    width: 89% !important;
}

.slider .item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    left: 230%;
    padding-top: 20px;
    /* animation duration can't be greater than variable interval in JS! */
    /* check JS for other settings */
    animation: .6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s left;
    animation-fill-mode: forwards;
    background-size: cover !important;
    background-position: 50% !important;
}



.slider .item p {
    width: 100% !important;
}

.slider .dots {
    top: -60px;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
}

.slider .dot {
    border-radius: 50%;
    width: 15px !important;
    height: 15px;
    padding: 10px;
    background: #fff;
    border: 2px solid #001871;
    color: #001871;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    margin-right: 15px;
    position: relative;
    font-weight: 700;
}

.slider .active-dot {
    background: #001871;
    color: #ffffff;
    cursor: default;
}

.slider .active-dot:after {
    content: '';
    width: 100%;
    border-bottom: solid 5px #C2510A;
    border-radius: 10%;
    position: absolute;
    left: 0;
    top: 45px;
    z-index: 1;
}

@keyframes leftNext {
    from {
        left: 300%;
        top: 0;
    }

    to {
        left: 0;
        top: 0;
    }
}

@keyframes leftCurr {
    from {
        left: 0;
        top: 0;
    }

    to {
        left: -300%;
        top: 0;
    }
}

@keyframes rightNext {
    from {
        left: -300%;
        top: 0;
    }

    to {
        left: 0;
        top: 0;
    }
}

@keyframes rightCurr {
    from {
        left: 0;
        top: 0;
    }

    to {
        left: 300%;
        top: 0;
    }
}

/*//////////////////
// Link Bar
//////////////////*/
.link-bar-wrapper {
    position: fixed;
    width: 500%;
    background-color: #001871;
    height: 45px;
    z-index: 3;
    top: 0px;
}

.nav-bar-wrapper {
    position: fixed;
    width: 500%;
    background-color: #ffffff;
    height: 45px;
    z-index: 2;
    top: 45px;
}

.link-bar {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 45px;
    position: fixed;
    max-width: 1440px;
    display: flex;
    margin: auto;
    background-color: #001871;
    z-index: 5;
}

.logo-container {
    position: relative;
    left: 50px;
    top: -160px;
}

.logo-container img {
    width: 324px;
    height: 301px;
    pointer-events: all;
    cursor: pointer;
}

.logo-container .show-on-mb {
    display: none;
}

.link-bar-container {
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    justify-content: space-around;
    width: 1140px;
}

.link-bar-container>a {
    color: white;
    text-decoration: none;
    align-self: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    transition: 200ms ease-out;
}

.link-bar-container>a:hover {
    box-shadow: 0 2px 0 #FFFFFF;
}

/*//////////////////
// End Link Bar
//////////////////*/



/*//////////////////
// Mobile Triggers
//////////////////*/
.mobile-triggers {
    float: right;
    display: none;
    position: relative;
    padding: 0px;
    z-index: 100;
    right: 0px;
    top: 5px;
    width: 70px !important;
}

.mobile-triggers li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

.mobile-triggers img {
    padding: 5px;
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.mobile-triggers .nav {
    width: 35px !important;
    height: 45px;
    position: relative;
    margin: 30px auto 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #001871;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav.open {
    width: 35px !important;
}

.nav.open span {
    background: #ffffff;
    height: 4px;
}

.nav span:nth-child(even) {
    left: 50%;
}

.nav span:nth-child(odd) {
    left: 0px;
}

.nav span:nth-child(1),
.nav span:nth-child(2) {
    top: 0px;
}

.nav span:nth-child(3),
.nav span:nth-child(4) {
    top: 9px;
}

.nav span:nth-child(5),
.nav span:nth-child(6) {
    top: 18px;
}

.nav.open span:nth-child(1),
.nav.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav.open span:nth-child(2),
.nav.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav.open span:nth-child(1) {
    left: 5px;
    top: 7px;
}

.nav.open span:nth-child(2) {
    left: calc(50% - 2px);
    top: 7px;
}

.nav.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

.nav.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

.nav.open span:nth-child(5) {
    left: 5px;
    top: 18px;
}

.nav.open span:nth-child(6) {
    left: calc(50% - 2px);
    top: 18px;
}

/*
      .nav  span {
        border-radius: 2px;
        margin: 3px;
        background-color: #001871;
        display: block;
        position: absolute;
        height: 6px;
        width: 30px;
        left: 8px;
        transform: rotate(0deg);
        /*transition: transform 0.25s ease-in-out;
      }
      .nav.open span {
        background-color: #ffffff !important;
      }
      .nav  span:nth-child(1) {
        top: 9px;
      }

      .nav   span:nth-child(2),
      span:nth-child(3) {
        top: 19px;
      }

      .nav  span:nth-child(4) {
        top: 29px;
      }
      .nav.open  span:nth-child(1) {
        display:none
      }

    .nav  .open span:nth-child(1) {
        top: 19px;
        width: 0%;
        left: 50%;
    }
    .nav.open span:nth-child(2) {
        transform: rotate(45deg);
    }
    .nav.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
    .nav.open span:nth-child(4) {
        top: 19px;
        width: 0%;
        left: 50%;
    }*/
/*//////////////////
// End Mobile Triggers
//////////////////*/




/*//////////////////
// Nav Bar
//////////////////*/
.nav-bar {
    z-index: 2;
    top: 45px;
    position: fixed;
    transform: translate(calc(50vw - 50.5%));
    height: 45px;
    width: 100%;
    max-width: 1440px;
    left: 0px;
    display: flex;
    margin: auto;
    background-color: #FFFFFF;
    box-shadow: 0px 15px 15px -15px #11111142;
}

.nav-bar nav {
    position: absolute;
    right: -5px;
    display: flex;
    justify-content: space-between;
}

.nav-bar nav>a {
    color: #001871;
    text-decoration: none;
    align-self: center;
    flex: 1 0 auto;
    padding: 13px 27px;
    font-size: 17px;
    line-height: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.nav-bar nav>a:hover {
    color: #ffffff;
    background: #001871;
}

a.pharmacy-locator {
    color: #ffffff !important;
    background: #C2510A;
    width: 218px;
    text-align: center;
    cursor: pointer;
}

a.pharmacy-locator::before {
    content: "";
    background-image: url('../images/icon/location_icon_white.svg');
    background-repeat: no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: -3px;
    left: -18px;
    margin-bottom: -30px;
}

a.pharmacy-locator img {
    display: block;
    width: 15px;
    height: 30px;
    position: relative;
    top: -26px;
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    transform-box: fill-box;
    transition: 200ms;
    left: 210px;
    margin-bottom: -30px;
}

a.pharmacy-locator.active img {
    transform: rotate(0deg);
}

.nav-bar nav>a:last-child:hover {
    /*make icons move*/
}

.pharmacy-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: #C2510A;
    width: 232px;
    padding: 0px 20px 10px 20px;
    border-bottom: 20px solid #ffffff;
    box-shadow: 0px 15px 15px -15px #11111142;
}

.pharmacy-dropdown p {
    color: #ffffff;
}

.pharmacy-dropdown .locator p {
    padding-left: 34px;
    padding-bottom: 0;
}

.pharmacy-dropdown .cell-phone {
    width: 30px;
}

.pharmacy-dropdown .contact-info {
    margin-left: -10px;
    display: flex;
    align-items: flex-start;
}

.pharmacy-dropdown .contact-info p {
    padding-left: 16px;
    margin: 0px 0px 10px 0px;
}

/*//////////////////
// End Nav Bar
//////////////////*/



/*//////////////////
// Section: Hero
//////////////////*/
.hero {
    overflow: hidden;
    position: relative;
    color: white;
    height: 490px;
    background: rgb(0, 57, 107);
    background: linear-gradient(135deg, rgba(0, 57, 107, 1) 0%, rgba(0, 148, 159, 1) 100%);
}

.hero-content {
    margin-top: 120px;
    margin-left: 410px;
}

.hero-content h2,
.hero-content h3,
.hero-content p {
    text-shadow: 1px 2px #0000007a;
    margin: 0;
    width: 350px;
}

.hero-content h2 {
    font-size: 45px;
    font-weight: 700;
}

.hero-content h3 {
    font-size: 38px;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 24px;
    margin: 20px 0;
}

.hero .footnote {
    width: 420px;
}

.hero .footnote span {
    margin-left: -8px;
}

.hero img {
    position: absolute;
}

.working-on-laptop {
    margin-left: -125px;
    margin-top: 70px;
    width: 610px;
    height: 478px;
}

.celebrate-badge {
    width: 125px;
    height: 125px;
    margin-left: -50px;
    z-index: 1;
}

.badge-callout {
    top: 70px;
    left: 90px;
    background: #fcd346;
    color: #262c69;
    padding: 15px 15px 15px 75px;
    font-weight: 600;
    border-radius: 5px;
    width: 340px;
    position: absolute;
    z-index: 0;
}

.circle-bg {
    margin-left: -200px;
    margin-top: 50px;
}

.cta-peel {
    background-image: url("../images/hero/peel.png");
    position: absolute;
    right: -35px;
    top: -35px;
    width: 370px;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
}

.cta-peel-content {
    color: #001871;
    margin-top: 55px;
    margin-left: 160px;
}

.cta-peel-content h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

.cta-peel-content p {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 20px;
    padding-left: 7px;
}

.cta-peel-content p sup {
    margin-left: -7px;
}

.cta-peel-content .button {
    color: #FFFFFF;
    background: #007A76;
    padding: 10px 20px;
    transition: 300ms;
}

.cta-peel-content .button:hover {
    background: #FED141;
    color: #001871;
}

/*//////////////////
// End Hero
//////////////////*/



/*//////////////////
// Section: Getting Started
//////////////////*/
.getting-started {
    background: #E9EEF5;
}

.getting-started-header h2 {
    font-size: 36px;
    color: #001871;
    margin: 0;
}

.getting-started-header h3 {
    font-size: 30px;
    line-height: 33px;
    color: #4A4A4A;
    margin: 10px 0;
}

.getting-started-graphic {
    position: relative;
}

.getting-started-graphic .boy-run {
    position: absolute;
    width: 380px;
    z-index: 1;
    margin-top: 20px;
    left: -60px;
}

.getting-started-graphic .patch-size {
    position: absolute;
    width: 650px;
    right: 0;
    z-index: 1;
    top: -70px;
}

.getting-started-graphic .dot-wave {
    position: relative;
    z-index: 0;
    top: -110px;
    margin-left: -70px;
    width: 1150px;
    height: 406px;
}

.getting-started-graphic p {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    right: 0px;
    top: -145px;
    text-align: right;
}

.getting-started-content {
    margin-top: -100px;
}

.getting-started-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #001871;
    margin: 0;
}

.getting-started-content div {
    display: flex;
    justify-content: space-between;
}

.getting-started-content .mobile {
    display: none;
}

.getting-started-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: 430px;
}

.getting-started-content .footnote {
    font-weight: 400;
    width: 100%;
}

/*//////////////////
// End Getting Started
//////////////////*/



/*//////////////////
// Section: Delivery System (Toggle)
//////////////////*/
.delivery-system {
    padding: 0 70px;
}

.delivery-system .toggle {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: white;
    background: #001871;
    padding: 0px 70px;
    width: 100%;
    margin-left: -70px;
    font-weight: 700;
}

.delivery-system .toggle>h4 {
    position: relative;
    top: 3px;
}

.delivery-system .toggle:hover {
    cursor: pointer;
    background: #12266d;
}

.delivery-system .toggle:hover>div h4 {
    color: #FED141;
}

.delivery-system .toggle div {
    display: flex;
}

.delivery-system .toggle div h4 {
    margin-right: 10px;
    text-decoration: underline;
}

.delivery-system .toggle div a {
    color: white;
}

.delivery-system .toggle div img {
    width: 25px;
    height: 77px;
    transform: rotate(180deg);
    transition: 200ms;
}

.delivery-system .toggle div .active {
    transform: rotate(0deg);
}

/* Hide Toggle Content */
.delivery-system-content {
    display: none;
    color: white;
    padding: 40px 0;
    height: 300px;
}

.patch-wrapper {
    display: flex;
    align-items: flex-start;
}

.patch-layers img {
    width: 300px;
}

.yellow-line {
    border-top: 5px solid #FED141;
    background-color: #FED141;
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-radius: 7px 7px 7px 7px;
    height: 1px;
}

.line-holder {
    width: 170px;
    padding-left: 20px;
    margin-top: 22px;
}

.line-holder div {
    width: 0px;
    height: 130px;
    margin-bottom: -30px;
    opacity: 0;
}

.line-holder div:last-child {
    height: 100px;
}

.patch-callouts div {
    height: 120px;
    display: none;
    margin-bottom: -30px;
}

.patch-callouts h3 {
    margin-bottom: 0px;
    font-weight: normal;
}

.patch-callouts p {
    margin-top: 0px;
    font-weight: normal;
}

/*//////////////////
// End Getting Started
//////////////////*/



/*//////////////////
// Section: How to Apply
//////////////////*/
.how-to-apply {
    background: #FFFFFF;
    padding-bottom: 20px;
}

.apply-header {
    display: flex;
    background: #E9EEF5;
    width: 1080px;
    margin-left: -70px;
    margin-top: -40px;
}

.apply-header-content {
    width: 600px;
    padding: 60px 30px 30px 60px;
}

.apply-header-content h2 {
    font-size: 36px;
    color: #001871;
    margin: 0;
}

.apply-header-content p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.apply-header-image {
    width: 480px;
}

.apply-header-image .yellow-circle {
    position: absolute;
    width: 0px;
    margin-left: 300px;
}

.apply-header-image .hand-patch {
    pointer-events: none;
    position: absolute;
    width: 520px;
    margin-left: 300px;
    opacity: 0;
    margin-top: -75px;
}

.list-wrapper {
    display: flex;
    justify-content: space-between;
}

.list-wrapper .item {
    display: flex;
    line-height: 20px;
    width: 420px;
    height: 165px;
}

.list-wrapper .item>div:last-child p {
    margin-top: 10px;
}

.list-wrapper .item-number {
    margin-right: 25px;
    margin-top: -10px;
    background-color: #001871;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
    top: 20px;
}

.list-wrapper .item-number p {
    width: 40px;
    text-align: center;
    font-size: 22px;
    color: white;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    top: -30px;
    opacity: 0;
}

.list-wrapper .divider {
    border-right: 3px solid #C2510A;
    height: 90%;
    margin-top: 10px;
}

.how-to-apply-content {
    margin-top: 60px;
}

.how-to-apply-content .footnote {
    font-size: 14px;
    line-height: 20px;
    margin-left: 65px;
    margin-top: 10px;
}

/*//////////////////
// End Apply
//////////////////*/



/*//////////////////
// Section: Remove 3 Steps
//////////////////*/
.three-steps {
    background: #E9EEF5;
    margin-bottom: -40px;
}

.three-steps-wrapper {
    display: flex;
}

.three-steps-wrapper .hug {
    width: 460px;
    height: 660px;
    margin-left: -70px;
    margin-top: -40px;
}

.three-steps-content {
    margin-left: 70px;
}

.three-steps-content .item {
    display: flex;
    line-height: 20px;
}

.three-steps-content p {
    font-weight: 400;
}

.three-steps-content h2 {
    font-size: 28px;
    color: #001871;
}

.three-steps-content .footnote {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 19px;
}

.three-steps-content .item-number {
    margin-right: 25px;
    margin-top: -10px;
    background-color: #001871;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
    top: 20px;
}

.three-steps-content .item-number p {
    width: 40px;
    text-align: center;
    font-size: 22px;
    color: #E9EEF5;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    top: -30px;
    opacity: 0;
}

.three-steps-content .button {
    color: #FFFFFF;
    background: #001871;
    transition: 300ms;
}

.three-steps-content .button:hover {
    background: #FED141;
    color: #001871;
}

/*//////////////////
// End Remove 3 Steps
//////////////////*/



/*//////////////////
// Section: Savings
//////////////////*/
.savings {
    color: white;
    background: rgb(0, 57, 107);
    background: linear-gradient(135deg, rgba(0, 57, 107, 1) 0%, rgba(0, 148, 159, 1) 100%);
}

.savings-wrapper {
    display: flex;
}

.savings-content h2 {
    font-size: 36px;
    width: 760px;
    margin: 10px 0 0px;
}

.savings-content h2 sup {
    font-size: revert;
}

.savings-content h3 {
    font-size: 24px;
}

.savings-content p {
    font-size: 17px;
    line-height: 23px;
    width: 410px;
}

.savings-content .footnote p {
    font-size: 12px;
    line-height: 16px;
    width: 410px;
}

.savings-content .footnote p:last-child {
    margin-top: -10px;
}

.savings-content .footnote p span {
    margin-left: -6px;
}

.savings-content .button-wrap {
    margin: 50px 0;
}

.savings-content .button {
    background: #FED141;
    color: #001871;
    margin: 40px 0;
    transition: 300ms;
}

.savings-content .button:hover {
    color: #FED141;
    background: #001871;
}


.savings-image .book {
    position: absolute;
    width: 600px;
    margin-left: -240px;
    margin-top: 321px;
}

.savings-image .circle-bg-alt {
    margin-top: 250px;
    margin-left: -260px;
    position: absolute;
    width: 550px;
}

/*//////////////////
// End Savings
//////////////////*/



/*//////////////////
// Footer
//////////////////*/
.footer {
    background: white;
    border-top: 15px #001871 solid;
    position: relative;
}

.footer p {
    color: #5a5a5a;
    font-size: 14px;
    line-height: 20px;
}

.footer a {
    color: #777777;
    font-weight: 700;
    text-decoration: none;
}

.footer .phone-number {
    font-weight: normal !important;
    color: #5a5a5a;
}

.footer img {
    width: 165px;
    height: 83px;
}

.footer .back-to-top svg,
.footer .back-to-top svg circle {
    transition: ease 200ms;
}

.footer .back-to-top svg:hover circle,
.footer .back-to-top svg:hover {
    cursor: pointer;
    fill: #001871;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-bottom .back-to-top {
    position: relative;
    top: -25px;
}

.back-to-top p {
    font-size: 16px;
    color: #001871;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.footer-links {
    display: flex;
    display: flex;
    justify-content: space-between;
    width: 530px;
    margin: 20px 0 20px;
    padding: 0;
}

.footer-links li {
    list-style-type: none;
}

.footer-links li:not(:first-child):before {
    content: " | ";
    color: #008D9B;
    font-weight: 700;
    font-size: 16px;
    padding-right: 8px;
}

.footer-links a {
    color: #001871;
    font-weight: 700;
    text-decoration: none;
    transition: 200ms ease-out;
}

.footer-links a:hover {
    box-shadow: 0 2px 0 #001871;
}

/*//////////////////
// End Footer
//////////////////*/



/*//////////////////
// ISI
//////////////////*/
.isi-wrapper h2 {
    font-size: 14px;
    font-weight: 700;
    color: #001871;
}

.isi-wrapper ul,
.isi-wrapper p {
    line-height: 24px;
}

.isi-wrapper ul {
    margin-left: -15px;
    margin-top: -10px;
}

.isi-wrapper ul ul {
    margin-left: -20px;
    margin-top: 0px;
    list-style: disc;
}

.isi-wrapper p>span {
    color: #001871;
    font-weight: 700;
}

.isi-wrapper a {
    color: #001871 !important;
    font-weight: 700;
    text-decoration: underline !important;
}

.isi-wrapper .indent {
    margin-left: 10px;
}

.isi-wrapper .indent-more {
    margin-left: 25px;
}

.isi-wrapper .indent-list {
    margin-left: 5px;
}

.isi-box {
    border: 1px #2B2A2C solid;
    padding: 0px 10px;
}

.isi-box p {
    line-height: 20px;
}

.isi-wrapper .fda-num {
    font-style: bold !important;
    text-decoration: none !important;
}

/*//////////////////
// End ISI
//////////////////*/



/*//////////////////
// Modal
//////////////////*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    z-index: 99;
    background: #0000009e;
    padding-right: 0px;
    width: 100%;
    height: 100%;
    transition: 200ms;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-header {
    width: 80%;
}

.modal-dialog {
    transition: 200ms;
    display: flex;
    justify-content: center;
    background: #ffffffed;
    border-radius: 15px;
    width: 40%;
    margin: auto;
    margin-top: 20vh;
    padding: 20px 40px;
}

.modal-dialog h4 {
    color: #001871;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
}

.modal-dialog button {
    font-size: 21px;
    color: #FFFFFF;
    width: 140px;
    background: #008D9B;
    margin-right: 20px;
    padding: 6px 20px;
    transition: 300ms;
    border-radius: 14px;
    border: none;
}

.modal-dialog button:hover {
    cursor: pointer;
    background: #FED141;
    color: #001871;
}

.modal-dialog button:hover a {
    color: #001871;
}

.modal-dialog button a {
    font-family: 'Gotham';
    color: #ffffff;
    text-decoration: none;
}

.modal-dialog .btn-dismiss {
    color: #008D9B;
    background: #FFFFFF;
    transition: 300ms;
    border: 1px solid #008D9B;
}

.modal-dialog .close {
    color: #008D9B;
    background: none;
    font-size: 50px;
    width: 0;
    padding: 0;
    float: right;
    margin-top: -20px;
}

.modal-dialog .close span {
    position: relative;
}

.modal-dialog p {
    font-size: 15px;
    color: #5B6670;
}

.modal-footer {
    margin-top: 20px;
}

.modal-footer a {
    font-size: 15px;
    color: #001871;
    font-weight: 700;
}

.modal-footer p {
    font-size: 12px;
    color: #5B6670;
}

/* Intro Modal */
#intro-modal .modal-dialog {
    background: #0e1871;
    padding: 40px 40px;
    width: 42%;
}

#intro-modal .modal-dialog .close span {
    color: #fcd346;
}

#intro-modal h4 {
    color: #fcd346;
    font-size: 28px;
    font-weight: 400;
}

#intro-modal h5 {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin: 0;
}

#intro-modal p,
#intro-modal a {
    color: #fff;
    font-weight: 600;
}

#intro-modal .modal-footer {
    margin-top: 40px;
}

#intro-modal .modal-footer p {
    margin: 0;
    margin-top: 5px;
}

#intro-modal ul {
    margin-left: 0px;
    padding-left: 15px;

}

#intro-modal ul li {
    color: #fff;
    margin: 8px 0;
}

/*//////////////////
// End Modal
//////////////////*/

/*//////////////////
// SiteMap start
//////////////////*/
.sitemap_content h2 {
    color: #001871;
}

.sitemap_content a {
    margin: 20px 0 8px;
    margin-bottom: 15px;
    color: #C2510A;
    font-size: 14px;
    font-weight: 500;
}

.sitemap {
    list-style: none;
    padding-left: 0px;
}

/*//////////////////
// SiteMap end
//////////////////*/