﻿/* ************* EXTERNAL and APP LINK ICONS ************ START */
/* ************* EXTERNAL and APP LINK ICONS ************ START */
/* ************* EXTERNAL and APP LINK ICONS ************ START */

/* Add Icon to external links */
a[href^="http://"]:not([href*="tstdesigns/"]):before, /*THIS NEEDS TO BE CHANGED BEFORE LAUNCH AND FOR STAGING TO TEST*/
a[href^="https://"]:not([href*="tstdesigns/"]):before,
a[href$='.asp']:not([href*="tstdesigns/"]):before, /*For some reason, .asp and .aspx need their own declaration of rules*/
a[href$='.aspx']:not([href*="tstdesigns/"]):before{
  content: url('../images/icons/global_sm.png');
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
}

/*Removes external link from in front of app links of pdf, word, excel, ppt ---- focuses on type of file instead*/
a[href$='.pdf']:not([href*="tstdesigns"])::before,
a[href$='.doc']:not([href*="tstdesigns"])::before,
a[href$='.docx']:not([href*="tstdesigns"])::before,
a[href$='.xls']:not([href*="tstdesigns"])::before,
a[href$='.xlsx']:not([href*="tstdesigns"])::before,
a[href$='.ppt']:not([href*="tstdesigns"])::before,
a[href$='.ppt']:not([href*="tstdesigns"])::before { 
  content: none;
}



/*Add PDF icon to any link that ends in .pdf*/
a[href$='.pdf']::after { 
  content: url('../images/icons/pdf.gif');
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
}

/*Add Word icon to any link that ends in .doc, .docx*/
a[href$='.doc']::after,
a[href$='.docx']::after { 
  content: url('../images/icons/doc.gif');
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
}

/*Add Excel icon to any link that ends in .xls, .xlsx*/
a[href$='.xls']::after,
a[href$='.xlsx']::after { 
  content: url('../images/icons/xls.gif');
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
}

/*Add PPT icon to any link that ends in .ppt, .pptx*/
a[href$='.ppt']::after,
a[href$='.pptx']::after { 
    content: url('../images/icons/ppt.gif');
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    padding-left: 5px;
    vertical-align: middle;
}

/* Add Icon to email links */
a[href^=mailto]::before {
    content: url('../images/icons/mail_sm.png');
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    padding-right: 5px;
    /*padding-bottom: 5px;*/
    vertical-align:middle;
}


/* Add class to remove external link icon - currently used for footer and google directions link in VABOARD*/
.noext a[href^="http://"]:not([href*="tstdesigns"]):before, /*THIS NEEDS TO BE CHANGED BEFORE LAUNCH AND FOR STAGING TO TEST*/
.noext a[href^="https://"]:not([href*="tstdesigns"]):before{
    content: none;
}

/* Add class to remove external link icon from internal apps pages*/
.apps a[href$='.aspx']:before{ 
    content: none;
}


/* Add class to external links in menu. items need class="menuexit" added in the nav.htm include ONLY on text <li> that leave site NOT on images*/
.menuexit a[href^="http://"]:not([href*="tstdesigns"]):after, /*THIS NEEDS TO BE CHANGED BEFORE LAUNCH AND FOR STAGING TO TEST*/
.menuexit a[href^="https://"]:not([href*="tstdesigns"]):after {
  content: url('../images/icons/right-arrow15.png');
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
}


/*Formatting below is ONLY to be used in UL for large lists - need to add class to UL of "iconlist"* - Example: vaboard.org/links.htm ---- Need to double-check for hard-coded internal links*/

ul.iconlist a[href^="http://"]:not([href*="tstdesigns"]):before, /*THIS NEEDS TO BE CHANGED BEFORE LAUNCH AND FOR STAGING TO TEST*/
ul.iconlist a[href^="https://"]:not([href*="tstdesigns"]):before{
  content: url('../images/icons/global_sm.png'); /*icon is 20x20, canvas is 25 wide, with icon left aligned*/
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
  margin-left: -30px; /* This overrides the main external icon to allow for alignment with list items that do NOT have icons */
}

ul.iconlist a[href$='.pdf']:not(.owl-item)::after { /*This removes the PDF from the end of a line ONLY in the UL with class "ext"*/
    content: none;
}

ul.iconlist a[href$='.pdf']:not(.owl-item)::before {
  content: url('../images/icons/pdfList.gif'); /*icon is 20x20, canvas is 25 wide, with icon left aligned*/
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
  margin-left: -30px; /*Keeps icons and items without icon left-justified*/
  line-height: 20px; /*Keeps line spacing even if there is no icon*/
  
}


ul.iconlist a[href$='.doc']:not(.owl-item)::after,
ul.iconlist a[href$='.docx']:not(.owl-item)::after
{ /*This removes the doc from the end of a line ONLY in the UL with class "ext"*/
  content: none;
  
}

ul.iconlist a[href$='.doc']:not(.owl-item)::before,
ul.iconlist a[href$='.docx']:not(.owl-item)::before
{
  content: url('../images/icons/docList.gif'); /*icon is 20x20, canvas is 25 wide, with icon left aligned*/
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
  margin-left: -30px; /*Keeps icons and items without icon left-justified*/
  line-height: 20px; /*Keeps line spacing even if there is no icon*/
  
}


ul.iconlist a[href$='.xls']:not(.owl-item)::after,
ul.iconlist a[href$='.xlsx']:not(.owl-item)::after
{ /*This removes the xls from the end of a line ONLY in the UL with class "ext"*/
    content: none;
}

ul.iconlist a[href$='.xls']:not(.owl-item)::before {
  content: url('../images/icons/xlsList.gif'); /*icon is 20x20, canvas is 25 wide, with icon left aligned*/
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
  margin-left: -30px; /*Keeps icons and items without icon left-justified*/
  line-height: 20px; /*Keeps line spacing even if there is no icon*/
  
}


ul.iconlist a[href$='.ppt']:not(.owl-item)::after,
ul.iconlist a[href$='.pptx']:not(.owl-item)::after
{ /*This removes the ppt from the end of a line ONLY in the UL with class "ext"*/
    content: none;
}

ul.iconlist a[href$='.ppt']:not(.owl-item)::before {
  content: url('../images/icons/pptList.gif'); /*icon is 20x20, canvas is 25 wide, with icon left aligned*/
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  padding-left: 5px;
  vertical-align: middle;
  margin-left: -30px; /*Keeps icons and items without icon left-justified*/
  line-height: 20px; /*Keeps line spacing even if there is no icon*/
  
}


ul.pList {
    margin-bottom: /*10px*/0px;
    margin-top: 0;
    line-height:30px;
}

/* ************* EXTERNAL and APP LINK ICONS ************ END */
/* ************* EXTERNAL and APP LINK ICONS ************ END */
/* ************* EXTERNAL and APP LINK ICONS ************ END */



/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v13-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans'), local('OpenSans'),
       url('../fonts/open-sans-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v13-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

body, h1, h2, h3, h4, h5 {
    font-family: 'Open Sans', sans-serif;
}
p,
li {
    /* font-size: 1.15em; */
    font-size: 1em;
}
a {
    font-size: 16px;
}
a,
a:visited {
    color: #071689;
    text-decoration:none;
    font-weight:600;
}
a:hover{
    text-decoration:underline;
    color: #0c0b4a;
    font-weight:600;
}
h1.welcome {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
}
h2.welcome {
    font-size: 1.25em;
    font-weight: 600;
}
h2 {
    font-size: 1.5em;
}

@media (min-width: 992px) {
h1.welcome {
    font-size: 1.875em;
    font-weight: 600;
    }

h2.welcome {
    font-size: 1.55em;
    font-weight: 600;
    }
h2 {
    font-size: 1.875em;
}
}

hr.sectiondivide {
    border: none;
    height: 10px;
    /* Set the hr color */
    color: #071689; /* old IE */
    background-color: #071689; /* Modern Browsers */
    margin: 0.5% 0 calc(1.5% + 20px) 0;
    opacity: 1.0;
}
hr.sectiondivide2 {
    border: none;
    height: 10px;
    /* Set the hr color */
    color: #fdb825; /* old IE */
    background-color: #fdb825; /* Modern Browsers */
    margin: 0.5% 0 1.5% 0;
    opacity: 1;
}
hr.sectiondivide-gray {
    border: none;
    height: 5px;
    /* Set the hr color */
    color: darkgray; /* old IE */
    background-color: darkgrey; /* Modern Browsers */
    margin: 0.5% 0 1.5% 0;
}


/* Wrapper for page content to push down footer */
#wrap {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    /* Negative indent footer by its height */
    /*margin: 0 auto -225px;*/
    /* Pad bottom by footer height */
    /*padding: 0 0 225px;*/
  }
.row {
    margin: 0;
    padding: 0;
}
.container {
    width: 98%;
    margin-left: 1%;
}
.style1 {
    padding: 1%;
    /* margin: 2% 1%; */
    margin: 0% 1% 0% 1%;
}
.style2 {
    padding: 1% 2%;
    margin: 2% 0%;
    background-color: #FAFAFA;
}


/* Youtube Video Embedding code */ /*Direct questions to Cole Evans */

.defaultText {
    font-size: 11px;
}

h1.search {
    color: #0065A4;
    font-size: inherit;
    margin-left: 2%;
    font-weight: 700;
}


.title {
    background-color: rgb(107,201,202);
    padding: 5px;
    color: #000;
    border-bottom: 5px solid RGB(153, 204, 102);
    font-size: 25px;
}

.title2 {
    background-color: RGB(153, 204, 102);
    padding: 5px;
    color: #000;
    border-bottom: 5px solid RGB(107,201,202);
}

@media (max-width: 900px) {
    li .hidesearch {
        display: none;
    }
}


/*BREADCRUMB EDITS*/
/*change breadcrumb background color*/
.breadcrumb {
     background-color: #eeeeec;
     border-radius: 0;
     -moz-border-radius: 0;
     -webkit-border-radius: 0;
     -o-border-radius: 0;
}
/*change breadcrumb links color*/
.breadcrumb a {
     color: #666;
     border-radius: 5px;
     padding: 5px;
}
.breadcrumb a:hover {
     text-decoration: none;
     background-color: #9CD05F;
     color: #000;
}
/*change active color*/
.breadcrumb > .active {
     color: rgb(107,201,202);
     font-weight:600;
}


/*EDIT PANEL PRIMARY COLOR*/
.panel-primary > .panel-heading {
     background-color: #eeeeec;
     color: #000;
     font-weight: 700;     
}
.panel-primary {
     border-color: rgb(107,201,202);
     font-size: 16px;
}


/**********ICON LIST FORMATTING*****************/

.iconlist {
    list-style-type:none; 
    line-height: 20px;
}


/****CUSTOM ICONS FOR ACCORDION --- copy script found on vaboard.org/policymaking.htm*/
.your-icon {
    position: relative;
    /*top: 1px;*/
    /* display: inline-block; */
    font-style: normal;
    font-weight: normal;
    line-height: 1px;
    float: left;
    margin-right: 5px;
    display: block; /* This is required */
}

.your-icon.arrowdown {
    background: url('../images/icons/arrowDOWN.png');
    background-size: cover;
}

.your-icon.arrowup {
    background: url('../images/icons/arrowUP.png');
    background-size: cover;
}

.your-icon.normal {
    width: 32px;
    height: 32px;
}

.your-icon.small {
    width: 20px;
    height: 20px;
}

.your-icon.medium {
    width: 64px;
    height: 64px;
}

.your-icon.large {
    width: 128px;
    height: 128px;
}

.searchimg {
    vertical-align:middle;
}



/*EMAIL ON CONTACT*/

@media (min-width:1025px) and (max-width:1280px) {
    .alert2 {
        margin-bottom: 30px;
        padding: 11px;
        border: 1px solid transparent;
        border-radius: 4px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .alert2 {
        margin-bottom: 10px;
        padding: 5px;
        border: 1px solid transparent;
        border-radius: 4px;
    }
}

@media (min-width:1281px) {
    .alert2 {
        margin-bottom: 20px;
        padding: 15px;
        border: 1px solid transparent;
        border-radius: 4px;
    }
}


.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #eee;
}

.tablehead {
    background-color: #071689;
    color: #fff;
}


/* STYLES FOR BOOTSTRAP 5.3.3 HTML TAB STRUCTURE - START */
.tab-content {
    border: 2px solid #e1e1e1;
    border-top: 2px solid #071689;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 5px;
}
.nav-tabs {
    border-bottom: 0px;
}
.nav-tabs .nav-item {
    font-size: 85%;
    border-bottom: 0px;
}
.nav-tabs .nav-item .nav-link {
    border: 2px solid #071689;
    border-bottom: 0px;
    border-radius: 5px 5px 0px 0px;
    background-color: #071689;
    color: #fff;
    font-weight: 600;
    margin: 0px 2px 0px 0px;
    padding: 10px 15px 10px 15px;
}
.nav-tabs .nav-item .active {
    background-color:  #fdb825;
    color: #071689;
}
.nav-tabs .nav-item .nav-link:hover,
.nav-tabs .nav-item .nav-link:focus  {
    background-color: #fdb825;
    color: #071689;
}
.mininav .tab-content {
    padding: 10px;
}

@media (min-width: 992px) {
    .nav-tabs .nav-item {
        font-size: 100%;
    }
}
/* STYLES FOR BOOTSTRAP 5.3.3 HTML TAB STRUCTURE - END */


/* STYLING FOR POSITIONING THE PHOTOS AND FIGURE/PHOTO CAPTIONS FOR THE "SERVICES OVERVIEW" ARTICLES on the page: services.htm - START */
figure {
    float: unset;
    width: 100%;
    text-align: center;
    font-style: italic;
    font-size: smaller;
    text-indent: 0;
    border: thin solid lightskyblue;
    margin: 0.5em 1em 0.5em 0em;
    padding: 0.5em;
}

@media (min-width: 576px) {
    figure {
        float: left;
        width: 50%;
    }
    .figure-service-provide {
        float: right;
        margin: 0.5em 0em 0.5em 1em;
    }
}

@media (min-width: 768px) {
    figure {
        float: left;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    figure {
        float: left;
        width: 50%;
    }
    .figure-service-provide {
        float: left;
        margin: 0.5em 1em 0.5em 0em;
    }
}
/* STYLING FOR POSITIONING THE PHOTOS AND FIGURE/PHOTO CAPTIONS FOR THE "SERVICES OVERVIEW" ARTICLES on the page: services.htm - END */


/* VIDEOS (default.htm and programs.htm pages) - START */
.videoWrapperOuter {
  margin-left: auto;
  margin-right: auto;
}
.videoWrapperInner {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 50%;
  padding-top: 25px;
  height: 0;
}
.videoWrapperInner iframe {
  border: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.directors-message-video {
    margin-top: 0px;
    margin-bottom: 15px;
}
.life-opening-video {
    margin-top: 0px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .directors-message-video {
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .life-opening-video {
        margin-top: 5px;
        margin-bottom: 10px;
    }
}

.life-opening .videoWrapperOuter .videoWrapperInner {
    padding-bottom: 45.25%;
}

@media (min-width: 576px) {
    .life-opening .videoWrapperOuter .videoWrapperInner {
        padding-bottom: 47.25%;
    }
}
/* VIDEOS (default.htm and programs.htm pages) - END */


.life-opening {
    margin-bottom: 1%;
}


/* IMPORTANT DATES - programs.htm - START */
.important-dates {
    margin-bottom: 1%;
}
.important-dates div h2 {
    margin-top: 0px;
    margin-bottom: 20px;
}
.important-dates div div {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.important-dates div img {
    margin: 0px auto 25px auto;
}

@media (min-width: 576px) {
    .important-dates {
        margin-bottom: 20px;
    }
    .important-dates div div img {
        margin: 0px 0px 0px 0px;
    }
    .important-dates div div {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}
/* IMPORTANT DATES - programs.htm - END */


.classes-confidence-work div {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
}
/* .classes-confidence-work div div:nth-child(1),
.classes-confidence-work div div:nth-child(3) {
    flex-basis: 100%;
} */
.classes-confidence-work div div:nth-child(2) {
    display: none;
}
/* .classes-confidence-work div:nth-child(3) {
    flex-basis: 100%;
    margin: 0px auto 0px 0px;
    position: relative;
    left: 0px;
} */
.classes-confidence-work div div {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.classes-confidence-work div div h2 {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .classes-confidence-work div {
        flex-direction: row;
    }
    .classes-confidence-work div div:nth-child(1),
    .classes-confidence-work div div:nth-child(3) {
        flex-basis: calc(50% - 30px);
    }
    .classes-confidence-work div div:nth-child(2) {
        display: block;
        flex-basis: 60px;
    }
    .v-rule-01 {
        display: block;
        width: 6px;
        height: calc(100% - 48px);
        background-color: #071689;
        margin: 25px auto 0px auto;
    }
}

/* DBVI CONTACT INFO WITH GRAY BACKGROUND - programs.htm - Not currently in use. - START */
.contact-info-gray {
    background-color: #f6f6f4;
    width: 100%;
    padding: 0px 0px 15px 0px;
    margin: 10px auto 0px auto;
  }
  .contact-info-gray .contact-info-gray-inner-container {
    padding: 0px 15px 0px 15px;
  }
  .dbvi-contact-image {
    display: block;
    width: 100%;
    margin: 25px auto 0px auto;
  }
@media screen and (min-width: 800.8px) {
    .dbvi-contact-image {
        display: block;
        float: left;
        max-width: 300px;
        margin: 0px 25px 10px 0px;
    }
}
/* DBVI CONTACT INFO WITH GRAY BACKGROUND - programs.htm - Not currently in use. - END */


/* DBVI CONTACT INFO WITHOUT GRAY BACKGROUND AND CENTERED - programs.htm - START */
.contact-info-com-engage {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0px 15px 0px 15px;
}
.contact-info-com-engage-image {
    display: block;
    width: 100%;
    margin: 0px auto 0px auto;
}
.contact-info-com-engage div {
    text-align: center;
    margin: 10px auto 0px auto;
}
.contact-info-com-engage h4 {
    font-size: 18px;
}
@media screen and (min-width: 650px) {
    .contact-info-com-engage {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0px 15px 0px 15px;
    }
    .contact-info-com-engage-image {
        display: block;
        float: left;
        max-width: 300px;
        margin: 0px 25px 10px 0px;
    }
    .contact-info-com-engage div {
        text-align: left;
        margin: unset;
    }
  }
/* DBVI CONTACT INFO WITHOUT GRAY BACKGROUND AND CENTERED - programs.htm - END */


/* VRCBVI APPLY NOW BUTTON AND HEADING - programs.htm - START */
.apply-now {
    margin: 25px 0px 0px 0px;
}
.apply-now-btn-link {
    display: block;
    width: fit-content;
    margin: 0px auto 20px auto;
}
.apply-now div img {
    display: block;
    width: 100%;
    max-width: 400px;
}
.apply-now div h3 {
    font-size: 24px;
    text-align: center;
}
/* VRCBVI APPLY NOW BUTTON AND HEADING - programs.htm - END */


/* FOOTER STYLES - START */
/* Set the fixed height of the footer here */
#footer {
    /*height: 225px;*/
    margin-top:10px;
    color: #000;
}
.footer2 {
    background-color: #fff;
}
.footer3 {
    background-color: #071689;
    color: #fff;
    padding-bottom: 20px;
}
.footer3 a {
    background-color: #071689;
    color: #fdb825;
}
#footer h3 {
    padding: 3px;
    color: #071689;
    font-weight: 600;
    font-size: 20px;
    text-align:center;
}
.contactlink a {
    background-color: rgb(107,201,202);
    font-weight: 500;
    border-bottom: 1px dotted;
    color: #fff;
    font-size: 20px;
    text-align:center;
}
.footerhead {
    color: #fff;
    font-weight: 600;
    padding-top: 10px;
    font-size: 125%;
}

.footer-logos {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 25px 0px;
    margin: 25px 0px 25px 0px;
    background-color: #fff;
    z-index: 1;
}

@media (min-width: 576px) {
    .footer-logos {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px 25px;
        max-width: 500px;
        margin: 25px auto 25px auto;
    }
}

@media (min-width: 768px) {
    .footer-logos {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px 25px;
        max-width: unset;
    }
}

.sectiondivide-container {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: #071689;
    /* background-color: transparent; */
}
hr.sectiondivide3 {
    flex: 1;
    border: none;
    height: 10px;
    background-color: #fdb825;
    opacity: 1;
}
.footer-copyright-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #071689;
    background-color: #fdb825;
    /* height: 40px; */
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer-copyright-bar p {
    margin: 0px;
}
/* FOOTER STYLES - END */


/* ACCORDION on the about.htm page - START */
.faq-accordion {
    margin-top: 15px;
}
.accordion-button span {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    padding-right: 20px;
}
.accordion-button::after {
    display: none;
}
.accordion-button {
    flex-direction: row-reverse;
    justify-content: flex-end;
    color: #071689;
    font-weight: 700;
    background-color: transparent;
}
.accordion-button:hover {
    text-decoration: underline;
    background-color: rgb(235, 235, 235);
}
.accordion-button:focus {
    background-color: rgb(245, 245, 245);
    box-shadow: unset;
}
.accordion-button:not(.collapsed) {
    color: #071689;
    /* background-color: rgb(242, 242, 242); */
    background-color: rgb(235, 235, 235);
    /* background-color: rgb(255, 255, 255); */
    box-shadow: unset;
}
.accordion-header {
    background-color: rgb(245, 245, 245);
}
/* ACCORDION on the about.htm page - END */


.tour-our-center-group {
    display: block;
    float: left;
    margin-right: 0px;
    margin-bottom: 25px;
}
.directions-vrcbvi-group h4 {
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .tour-our-center-group {
        margin-right: 24px;
        margin-bottom: 10px;
    }
}


/* STAFF CONTACTS TABS - START */
.staff-contacts-tabs {
    font-size: 14px;
}
.staff-contacts-tabs .tab-pane table tr td a {
    font-size: 14px;
}
.staff-contacts-tabs .tab-pane table tr th:nth-child(3) {
    word-break: break-all;
    min-width: 9ch;
}
/* .staff-contacts-tabs .tab-pane table tr {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
} */

@media (min-width: 350px) {
.staff-contacts-tabs .tab-pane table tr th:nth-child(3) {
    word-break: break-all;
    min-width: 105px;
}
}

.staff-contacts-tabs .tab-pane table tr td:nth-child(3) {
    word-break: break-all;
}

@media (min-width: 400px) {
    .staff-contacts-tabs {
        font-size: 16px;
    }
    .staff-contacts-tabs .tab-pane table tr td a {
        font-size: 16px;
    }
    .staff-contacts-tabs .tab-pane table tr th:nth-child(3) {
        word-break: break-all;
        min-width: 120px;
    }
}
/* STAFF CONTACTS TABS - END */


/* PAGE HEADER STYLES - START */
.page-header-group {
    padding-bottom: 6px;

}
.page-opening-group {
    padding-top: 6px;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0px 20px 0px;
    border-bottom: 5px solid #eee;
}

.dbvi-page-header {
    border-bottom: 10px solid #FDB825;
    padding-bottom: 0px;
    margin-bottom: 5px;
}

.page-header-vrcbvi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0px;
    margin: calc(20px + 1.25%) 0px 15px 0px;
}
.page-header-vrcbvi h1 {
    order: 1;
    margin-top: 0px;
    margin-bottom: 0px;
}
.page-header-vrcbvi div {
    order: 3;
}
.page-header-vrcbvi div a {
    font-size: 14px;
    text-align: left;
}
.page-header-vrcbvi hr {
    flex-basis: 100%;
    width: 100%;
    border: 3px solid rgba(0, 0, 0, 0.25);
    margin-top: 5px;
    margin-bottom: 3px;
    order: 2;
}

@media (min-width: 992px) {
    .page-header-vrcbvi hr {
        order: 3;
    }
}

.page-header-vrcbvi-longer hr {
        order: 2;
}

@media (min-width: 1700px) {
    .page-header-vrcbvi-longer hr {
        order: 3;
}
}
/* PAGE HEADER STYLES - END */


/* .container-outer {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
}
.container-inner {
    max-width: 1200px;
    margin: 0px auto 0px auto;
} */

/* .container-inner {
    max-width: calc(1200px + 6%);
    margin: 0px auto 0px auto;
    padding-left: 3%;
    padding-right: 3%;
} */

/* h2 {
    margin-top: 20px;
} */



.services-overview-copy p:nth-child(2) {
    margin-top: -5px;
}
.figure-caption {
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    margin-top: 5px;
    text-align: left;
}


/* ************ CAROUSELS - START ************ */
/* Carousel Generic Styles - default.htm and about.htm - Start */
.carousel-caption {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: fit-content;
    background-color: #fff;
    opacity: 0.9;
    color: #000;
    font-size: 100%;
    text-shadow: none;
    text-align: left;
    padding: 10px 20px 10px 20px;
}
.carousel-caption p {
    margin-bottom: 0px;
}
/* Carousel Generic Styles - default.htm and about.htm - End */


/* Tour Center Carousel Styles - about.htm - Start */
.carousel-inner .carousel-item .carousel-caption {
    padding-left: 10%;
    padding-right: 10%;
}
/* Tour Center Carousel Styles - about.htm - End */


/* Latest News Carousel Styles (A lot for Height) - default.htm - Start */
.latest-news-carousel {
    background-color: #ffffff;
    border-top: 8px solid #fdb825;
    border-bottom: 8px solid #fdb825;
    padding-bottom: 50px;
}
.latest-news-carousel h5 {
    font-weight: 700;
}
.latest-news-carousel .carousel-indicators button {
    height: 6px;
}
.latest-news-carousel .carousel-indicators button.active {
    background-color: #fdb825;
}

.carousel-caption-container {
    min-height: 525px;
    height: fit-content;
}

@media (min-width: 350px) {
    .carousel-caption-container {
        min-height: 500px;
}
}

@media (min-width: 375px) {
    .carousel-caption-container {
        min-height: 450px;
}
}

@media (min-width: 400px) {
    .carousel-caption-container {
        min-height: 425px;
}
}

@media (min-width: 475px) {
    .carousel-caption-container {
        min-height: 350px;
    }
}

@media (min-width: 576px) {
    .carousel-caption-container {
        min-height: 300px;
    }
}

@media (min-width: 650px) {
    .carousel-caption-container {
        min-height: 275px;
    }
}

@media (min-width: 768px) {
    .carousel-caption-container {
        min-height: 375px;
    }
}

@media (min-width: 825px) {
    .carousel-caption-container {
        min-height: 350px;
    }
}

@media (min-width: 992px) {
    .carousel-caption-container {
        min-height: 275px;
    }
}

@media (min-width: 1200px) {
    .carousel-caption-container {
        min-height: 250px;
    }
}
.fb-follow-image {
    display: block;
    float: none;
    width: 100%;
    max-width: 155px;
    margin: 0px auto 10px auto;
}
@media (min-width: 425px) {
    .fb-follow-image {
        display: block;
        float: left;
        width: 100%;
        max-width: 160px;
        margin: 0px 15px 0px 0px;
    }
}
/* Latest News Carousel Styles (A lot for Height) - default.htm - End */
/* ************ CAROUSELS - END ************ */


.vert-rule-01 {
    background-color: #071689;
    display: block;
    width: 8px;
    min-height: 100%;
    margin: 0px auto 0px auto;
}


/* COVID ALERT BANNERS - START */
.covid-alert-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px auto 0px auto;
    padding: 10px;
    border: 3px solid red;
    border-radius: 8px;
    color:black;
    background-color:#eee;
}

.covid-alert-banner p {
    font-size: 1em;
    white-space-collapse: collapse;
    line-break: normal;
    margin-bottom: 0px;
}

@media (min-width: 400px) {
    .covid-alert-banner {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

@media (min-width: 576px) {
    .covid-alert-banner p {
        font-size: 1.125em;
    }
}

@media (min-width: 768px) {
    .covid-alert-banner {
        width: 90%;
    }
    .covid-alert-banner p {
        font-size: 1.25em;
    }
}

.covid-alert-banner-02 {
    position: relative;
    width: 100%;
    min-height: 105px;
    margin: 20px auto 0px auto;
    padding: 10px;
    border: 3px solid red;
    border-radius: 8px;
    color:black;
    background-color:#eee;
}

.covid-alert-banner-02 img {
    max-width: 95px;
}

.covid-alert-banner-02 p {
    display: block;
    margin: 1% 0px 1% 0px;
}

@media (min-width: 768px) {
    .covid-alert-banner-02 {
        width: 90%;
    }
}
/* COVID ALERT BANNERS - END */

.who-is-vrcbvi h3 a {
    font-size: 20px;
}


/* COURSE OFFERINGS TAB PHOTOS on the services.htm page */
.tab-photo-personal-home,
.tab-photo-braille {
    display: block;
    float: left;
    width: 100%;
    max-width: unset;
    margin: 0px 0px 10px 0px;
}
.tab-photo-access-tech-serve {
    display: block;
    float: right;
    width: 100%;
    max-width: unset;
    margin: 5px 0px 10px 0px;
}

@media (min-width: 576px) {
    .tab-photo-personal-home,
    .tab-photo-braille {
        max-width: 300px;
        margin: 0px 15px 0px 0px;
    }
    .tab-photo-access-tech-serve {
        max-width: 300px;
        margin: 0px 0px 0px 15px;
    }
}

@media (min-width: 768px) {
    .tab-photo-personal-home,
    .tab-photo-braille {
        max-width: 400px;
        margin: 0px 15px 0px 0px;
    }
    .tab-photo-access-tech-serve {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0px 0px 0px 15px;
    }
}

.mininav .tab-content .tab-pane:nth-child(3) {
    min-height: 390px;
}
.mininav .tab-content .tab-pane:nth-child(4) {
    min-height: 330px;
}


/* IFRAME SPECIFIC - START */
#myframe0 {
    width: 100%;
    border: 0px;
    scroll-behavior: unset;
}
/* IFRAME SPECIFIC - END */

.break-long-words {
    word-break: break-all;
}