/**************
* Global Styles
**************/
* {
    hyphens: none !important;
    outline: none;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
*:before,
*:after {
    box-sizing: border-box;
}
body, header, footer,
form, fieldset,
ul, ol, li, p {
    /* display: block; */
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
body {
    font-family: "lato", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #4C4C4C;
    font-size: 16px;
    line-height: 24px;
    background: #F0F0F0;
}
.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1440px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-sm-2,
.col-12,
.col-sm-12 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
h6 {
    font-family: 'fira-sans', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    transition: all .25s ease-in-out;
}
li:hover a {
    text-decoration: underline;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
p {
    font-family: 'Lato', sans-serif !important;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
.btn {
    position: relative;
    text-decoration: none;
    padding: 20px 40px;
    cursor: pointer;
    font-family: "ff-good-web-pro-condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.125em;
    text-transform: uppercase;
    line-height: 1.22222em;
    color: #fff;
    border-radius: 0;
    border: 0;
    white-space: normal !important;
    text-align: center;
    transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, box-shadow 0.14s ease-in-out;
    background-color: #306B9F;
    -webkit-box-shadow: -8px 12px 18px 0 rgba(25, 42, 70, 0.13);
    box-shadow: -8px 12px 18px 0 rgba(25, 42, 70, 0.13);
}
@media (min-width: 576px) {
    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-12,
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/**************
* Legacy Header Styles
**************/
.site-header {
    background: #FFF;
    position: relative;
    z-index: 2000;
}

.site-header .main-nav {
    padding: 35px 0 19px;
}
.site-header .main-nav .container {
    box-sizing: border-box;
}

/*--------------------------------
    # New Header Styles
        # Top Navbar
        # Navbar
--------------------------------*/

/*--------------------------------
    # Top Navbar
--------------------------------*/

.top-navbar {
    background-color: #B10101;
    height: 42px;
}
.top-navbar .container {
    height: 100%;
}
.top-navbar__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
}
.top-navbar__right,
.top-navbar__left {
    display: flex;
    align-items: center;
}
.top-navbar__mainmenu {
    display: flex;
    align-items: center;
}
.top-navbar__mainmenu li {
    margin-right: 20px;
    padding-right: 21px;
    position: relative;
}
.top-navbar__mainmenu li:last-child {
    border-right: 0px;
    margin-right: 0px;
    padding-right: 0px;
}
.top-navbar__mainmenu li::before {
   content: '';
   position: absolute;
   right: 0;
   top: 0;
   bottom: 0;
   margin: auto;
   width: 1px;
   height: 19px;
   background: #fff;
}
.top-navbar__mainmenu li:last-child::before {
   display: none;
}
.top-navbar__mainmenu li a {
    color: #FFFFFF;
    font-family: "fira-sans",sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 14px;
    position: relative;
    text-decoration: none;
}
.top-navbar__mainmenu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    transition: .4s;
}
.top-navbar__mainmenu li a:hover::after,
.top-navbar__mainmenu li a:focus::after {
    width: 100%;
    left: 0;
}
.top-navbar__mainmenu li.has-submenu {
    position: relative;
}
.top-navbar__mainmenu li.has-submenu::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 10px;
    width: 100%;
    background-color: transparent;
}
.top-navbar__mainmenu .submenu {
    width: 100%;
    width: 161px;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 10;
    background: #F8F8F8;
    padding: 12px;
    left: -999em;
}
.top-navbar__mainmenu li.has-submenu:hover > .submenu {
    left: 0;
}
.top-navbar__mainmenu .submenu ul li {
    width: 100%;
    display: block;
    float: none;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
    text-align: left;
    position: relative;
}
.top-navbar__mainmenu .submenu ul li a {
    color: #3466A5;
    font-family: "fira-sans",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
.top-navbar__right ul {
    display: flex;
    align-items: center;
    padding-right: 42px;
    height: 100%;
}
.top-navbar__right ul li {
    margin-left: 27px;
    height: 100%;
    display: flex;
    align-items: center;
}
.top-navbar__right ul li a {
    color: #FFFFFF;
    font-family: "fira-sans",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0px 10px;
    transition: .4s;
}
.top-navbar__right ul li a:hover,
.top-navbar__right ul li a:focus {
    background-color: #97303C;
}
.top-navbar__right ul li span {
    margin-left: 10px;
}
#topbarvisit {
    margin-left: 16px;
}
.top-navbar__right svg {
    fill: #fff;
}
.main-nav .fl {
    width: 100%;
    max-width: 363px;
    margin: 5.5px 0;
}
.main-nav__logo {
    width: 100%;
    height: auto;
}
@media (max-width: 900px) {
    .top-navbar__right {
        display: none;
    }
    .top-navbar__row {
        justify-content: center;
    }
}
@media (max-width: 550px) {
    .top-navbar__mainmenu li a {
        font-size: 12px;
    }
    .top-navbar__mainmenu li {
        margin-right: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 321px) {
    .top-navbar__mainmenu li a {
        font-size: 10px;
    }
    .main-nav__logo {
        max-width: 200px;
        position: relative;
        top: 6px;
    }
    .covid-bar-blue a {
        font-size: 13px;
    }
}

/*--------------------------------
    # Navbar
--------------------------------*/
#nav {
    position: relative;
}
.site-header {
    position: relative;
  }
  .main__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 25px 20px;
  }
  .main__header .wrap {
    padding-left: 10px;
    padding-right: 0;
  }
  @media (min-width: 1280px) {
    .main__header .wrap {
      padding-left: 0;
      padding-right: 0;
      max-width: 1200px;
    }
  }
  @media (min-width: 1440px) {
    .main__header .wrap {
      max-width: 1410px;
    }
  }
  .main__header .row-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  @media (min-width: 1024px) {
    .main__header .row-nav {
      justify-content: space-between;
    }
  }
  .main__header .logo {
    flex: 0 0 54%;
    align-self: flex-start;
  }
  .main__header .logo svg {
    max-width: 100%;
  }
  @media (min-width: 768px) {
    .main__header .logo {
      flex: 0 0 24.8%;
    }
  }
  @media (min-width: 1280px) {
    .main__header .logo {
      flex: 0 0 23.8%;
    }
  }
  .main__header .main__nav {
    width: 100%;
  }
  .main__header .main__nav a {
    cursor: pointer;
  }
  .main__header__right {
    display: none;
  }
  @media (min-width: 1024px) {
    .main__header__right {
      display: block;
      flex: 0 0 59.5%;
      align-self: baseline;
    }
  }

  /****************************************
  MAIN MENU
  *****************************************/
  @media (min-width: 1024px) {
    .main__nav .menu {
      display: flex;
      justify-content: flex-end;
      margin-top: 10px;
    }
  }
  .main__nav .menu > li::before {
    display: none;
    border: 0;
    width: 0;
    height: 0;
  }
  @media (min-width: 1280px) {
    .main__nav .menu > li {
      padding-left: 22px;
    }
  }
  .main__nav .menu > li > a {
    color: #FFFFFF;
    font-family: "fira-sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: em(14px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: em(20, 14);
    padding: 20px 0 20px 45px;
    position: relative;
  }
  .main__nav .menu > li > a:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: 0 center;
    margin-right: 17px;
    vertical-align: middle;
  }
  .main__nav .menu > li.calendar a:before {
    background-image: url(assets/icon-calendar.svg);
  }
  .main__nav .menu > li.doc a:before {
    background-image: url(assets/icon-pdf.svg);
  }
  .main__nav .menu > li:hover a {
    text-decoration: underline;
  }
  .main__nav .menu > li:hover a::before {
    text-decoration: none;
  }
  .main__nav .menu > li:first-child {
    padding-left: 0;
  }

/* MEDIA QUERIES */
@media( max-width: 1280px ) {
    #nav {
        display: none;
    }
    .site-header .main-nav {
        padding: 25px 0 15px;
    }
}
@media( max-width: 1280px ) {
    .mm-listview>li>a, .mm-listview>li>span {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .mm-menu>.mm-navbar.mm-navbar-top-1 {
        height: 50px;
        border: none;
    }
    .mm-menu .mm-listview>li .mm-next:after {
        border-color: #B10101;
    }
    #updatedFooter .col-sm-2 {
        width: 25%;
        max-width: 25%;
        float: left;
        flex: none;
    }
}
@media( max-width: 1023px ) {
    #footerCopyRightLinks a.fixed-cta {
        display: none !important;
    }
}
@media( max-width: 767px ) {
    #updatedFooter #updatedFooterRow2 ul.social-links {
        position: absolute;
        left: 15px;
        bottom: 26px;
        top: auto;
        float: none;
    }
    #updatedFooterRow2 p:nth-of-type(1) {
        margin-bottom: 60px;
    }
}
@media( max-width: 720px ) {
    #updatedFooter .col-sm-2 {
        width: 100%;
        max-width: 100%;
    }
    #updatedFooter .footer-menu {
        margin-bottom: 10px;
    }
    #updatedFooter .col-sm-2 .footer-menu h6 {
        background: rgba(255,255,255,0.6);
        color: #FFF;
        padding: 10px 0 10px 10px;
        cursor: pointer;
        margin-bottom: 0;
        position: relative;
    }
    #updatedFooter .col-sm-2 .footer-menu ul {
        display: none;
    }
    #updatedFooter .col-sm-2 .footer-menu h6:after {
        content: '\f055';
        font-family: 'Font Awesome 5 Pro';
        position: absolute;
        top: 11px;
        right: 15px;
        font-size: 25px;
        font-weight: 300;
    }
    #updatedFooter .footer-menu ul {
        margin: 20px 0 20px 10px;
    }
    #updatedFooter .col-sm-2 .footer-menu h6.active:after {
        content: '\f056';
    }
    #updatedFooter .col-sm-2 .footer-menu h6.active:after,
    #updatedFooter .col-sm-2 .footer-menu h6.active a,
    #updatedFooter .col-sm-2 .footer-menu h6.active a:visited {
        color: #322E34;
    }
    #updatedFooter .col-sm-2:last-child .footer-menu:nth-of-type(2) ul, #updatedFooter .col-sm-2:last-child .footer-menu:nth-of-type(3) ul {
        display: block;
        margin-left: 0;
    }
    #updatedFooterRow2Col img {
        max-width: 300px;
        height: auto;
    }
    #updatedFooter #updatedFooterRow2 ul.social-links + p + p {
        padding-bottom: 50px;
    }
}
@media( max-width: 400px ) {
    .site-header .main-nav svg {
        max-width: 205px;
    }
}
@media( max-width: 360px ) {
    .main-nav svg {
        max-width: 220px;
    }
}
@media(min-width: 768px) {
    #updatedFooter {
        padding-bottom: 70px;
    }
}

/**************
* Footer Styles
**************/
#updatedFooter {
    background: #322E34;
    padding: 70px 0 70px;
    color: #F0F0F0;
    font-size: 14px;
}
#updatedFooter h6 {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
}
#updatedFooter h6 a, #updatedFooter h6 a:visited, #updatedFooter h6 a:focus {
    color: #FFFFFF;
    padding: 0;
    text-decoration: none;
    transition: color .25s ease-in-out;
}
#updatedFooter h6 a:hover {
    text-decoration: underline;
}
#updatedFooter hr {
    border-color: #47424A;
    border-width: 2px;
}
#updatedFooter .footer-menu {
    margin-bottom: 29px;
}
#updatedFooter ul {
    margin: 0;
    padding: 0;
}
#updatedFooter ul li {
    margin-bottom: 8px;
}
#updatedFooter ul li:last-child {
    margin-bottom: 0;
}
#updatedFooter ul li a, #updatedFooter ul li a:visited {
    color: #FFFFFF;
    font-weight: 400;
    padding: 0;
}
#updatedFooter ul li a:hover {
    text-decoration: underline;
}
#updatedFooter #updatedFooterRow2, #updatedFooter #updatedFooterRow3 {
    font-weight: 300;
}
#updatedFooter #updatedFooterRow2 p, #updatedFooter #updatedFooterRow3 p {
    font-size: 12px;
    color: #BBB;
}
#updatedFooter #updatedFooterRow3 ul li {
    display: block;
    float: left;
    margin-right: 5px;
    padding-right: 5px;
    margin-top: -5px;
    border-right: 1px solid #BBB;
}
#updatedFooter #updatedFooterRow3 ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border: none;
}
#updatedFooter #updatedFooterRow3 ul li a {
    color: #EEE;
    font-size: 12px;
}
#updatedFooter #updatedFooterRow2 ul.social-links {
    float: right;
    position: relative;
    top: 5px;
}
#updatedFooter #updatedFooterRow2 ul.social-links li {
    width: 35px;
    height: 35px;
    display: block;
    float: left;
    margin-right: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#updatedFooter #updatedFooterRow2 ul.social-links li:last-child {
    margin-right: 0;
}
#updatedFooter .container {
    max-width: 1420px;
    box-sizing: border-box;
}
#updatedFooter .footer-menu:last-child {
    margin-bottom: 14px;
}
.footer-menu:not(.address) +.address {
    margin-top: 39px;
}
.footer-menu.address li {
    line-height: 28px;
}
.footer-menu.address a {
    text-decoration: underline;
}
.footer-menu.address a:hover, 
.footer-menu.address a:focus, 
.footer-menu.address a:active {
    text-decoration: none!important;
}
#updatedFooter .footer-menu a[target=_blank]::after {
    content: '';
    background-image: url(https://s29761.pcdn.co/wp-content/themes/yboot/assets/img/icons/external-site-icon.png);
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    right: -3px;
    top: 4px;
}
#updatedFooter #updatedFooterRow2 ul.social-links li a:hover svg path {
    fill: #5893ac;
}
#updatedFooter #updatedFooterRow2 ul.social-links li a > span {
    position: relative;
    left: 3px;
}
#updatedFooter #updatedFooterRow2 ul.social-links + p {
    margin-bottom: 10px;
}
.footer-logo {
    width: 100%;
    height: auto;
    max-width: 371px;
    margin-bottom: 5px;
}

@media (max-width: 1280px) {
    #updatedFooter .col-sm-2 {
        width: 25%;
        max-width: 25%;
        float: left;
        flex: none;
    }
}
@media( max-width: 767px ) {
    #updatedFooter #updatedFooterRow2 ul.social-links {
        position: absolute;
        left: 15px;
        bottom: 26px;
        top: auto;
        float: none;
    }
    #updatedFooterRow2 p:nth-of-type(1) {
        margin-bottom: 60px;
    }
}
@media( max-width: 720px ) {
    #updatedFooter .col-sm-2 {
        width: 100%;
        max-width: 100%;
    }
    #updatedFooter .footer-menu {
        margin-bottom: 10px;
    }
    #updatedFooter .col-sm-2 .footer-menu h6 {
        background: rgba(255,255,255,0.6);
        color: #FFF;
        padding: 10px 0 10px 10px;
        cursor: pointer;
        margin-bottom: 0;
        position: relative;
    }
    #updatedFooter .col-sm-2 .footer-menu ul {
        display: block;
    }
    #updatedFooter .col-sm-2 .footer-menu h6:after {
        content: none;
        font-family: 'Font Awesome 5 Pro';
        position: absolute;
        top: 11px;
        right: 15px;
        font-size: 25px;
        font-weight: 300;
    }
    #updatedFooter .footer-menu ul {
        margin: 20px 0 20px 10px;
    }
    #updatedFooter .col-sm-2 .footer-menu h6.active:after {
        content: '\f056';
    }
    #updatedFooter .col-sm-2 .footer-menu h6.active:after,
    #updatedFooter .col-sm-2 .footer-menu h6.active a,
    #updatedFooter .col-sm-2 .footer-menu h6.active a:visited {
        color: #322E34;
    }
    #updatedFooter .col-sm-2:last-child .footer-menu:nth-of-type(2) ul, #updatedFooter .col-sm-2:last-child .footer-menu:nth-of-type(3) ul {
        display: block;
        margin-left: 0;
    }
    #updatedFooterRow2Col img {
        max-width: 300px;
        height: auto;
    }
    #updatedFooter #updatedFooterRow2 ul.social-links + p + p {
        padding-bottom: 50px;
    }
}
@media(min-width: 768px) {
    #updatedFooter {
        padding-bottom: 70px;
    }
}

/* New simplified header styles */
.main-nav .col-12 {
    max-width: 400px;
    margin: 0 auto;
}
.flexy {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-decoration: underline;
    text-align: center;
    color: #000 !important;
}
.flexy:hover {
    text-decoration: none;
}
.back-arrow {
    padding-left: 37px;
    background-image: url(https://s32729.pcdn.co/wp-content/themes/yscores/assets/img/icons/icon-arrows/icon-arrow-back.svg);
    background-repeat: no-repeat;
    background-position: 7px center;
    background-size: 20px 23px;
    transition: all .2s ease-in-out;
}
.flexy:hover .back-arrow {
    background-position: left;
}