/* ===========================
  0 Global
============================*/

/* #region Global */

#globalWrapper {
  height: 100%;
}
#contentWrapper {
  width: 100%;
  top: 112px; 
  bottom: 0; 
  position: fixed; 
  overflow-y: scroll; 
  overflow-x: hidden; 
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 480px) {
  #contentWrapper {
    top: 92.5px;
  }
}

/* #region font and type */

/* ===========================
  0.1 Fonts & Type
*/

@font-face {
  font-family: 'HelveticaNeueBlack-extended';
  font-weight: normal;
  src: url("../fonts/320E45_2F_0.eot");
  src: url("../fonts/320E45_2F_0.woff2") format("woff2"), url("../fonts/320E45_2F_0.woff") format("woff"), url("../fonts/320E45_2F_0.ttf") format("ttf");
}

@font-face {
  font-family: 'HelveticaNeue-heavy-extended';
  font-weight: normal;
  src: url("../fonts/320E45_31_0.eot");
  src: url("../fonts/320E45_31_0.woff2") format("woff2"), url("../fonts/320E45_31_0.woff") format("woff"), url("../fonts/320E45_31_0.ttf") format("ttf");
}

@font-face {
  font-family: 'HelveticaNeueRegularSentence';
  font-weight: normal;
  src: url("../fonts/320E45_6_0.eot");
  src: url("../fonts/320E45_6_0.woff2") format("woff2"), url("../fonts/320E45_6_0.woff") format("woff"), url("../fonts/320E45_6_0.ttf") format("ttf");
}

@font-face {
  font-family: 'HelveticaNeueHeavySentence';
  font-weight: normal;
  src: url("../fonts/320E45_2_0.eot");
  src: url("../fonts/320E45_2_0.woff2") format("woff2"), url("../fonts/320E45_2_0.woff") format("woff"), url("../fonts/320E45_2_0.ttf") format("ttf");
}

@font-face {
  font-family: 'HelveticaNeueBoldSentence';
  font-weight: normal;
  src: url("../fonts/320E45_8_0.eot");
  src: url("../fonts/320E45_8_0.woff2") format("woff2"), url("../fonts/320E45_8_0.woff") format("woff"), url("../fonts/320E45_8_0.ttf") format("ttf");
}

.font-regular {
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

.font-heavy {
  font-family: "HelveticaNeueHeavySentence", sans-serif;
}

.text-upper {
  text-transform: uppercase;
}

.text-cap {
  text-transform: capitalize;
}

/* #endregion */

/* #region html */

/* ===========================
0.2 HTML Elements
*/

body {
  padding-top: 112px;
}

@media (max-width:480px) {
  body {
    padding-top: 7rem;
  } 
}

html {
  font-size: 13px;
}

p {
  margin-bottom: 0;
  color: #27251F;
  font-size: 1.25rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

label {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueHeavySentence", sans-serif;
  cursor: pointer;
  padding-right: 20px;
}

hr {
  border-color: #BBBCBC;
}

div[role="button"]:focus {
  outline: 2px solid red;
}

/* #endregion */

/* #region links */

/* ===========================
0.3 Links
*/

a,
a:visited,
a:link {
  text-decoration: none;
  color: #E4002B;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline-style: solid;
  outline-color: #E4002B;
  outline-width: 1px;
  outline-offset: 2px;
}

.color-black-bkgrd a:focus, footer a:focus {
  outline-color: white;
}

p>a:hover,
p>a:focus {
  text-decoration: underline;
}

/* #endregion */

/* #region buttons */

/* ===========================
0.5 Button styling
*/

.button {
  padding-top: 10px;  
}

a.button,
button {
  text-transform: uppercase;
}

button:focus {
  outline: 2px solid #E4002B;
  outline-offset: 2px;
}

.btn {
  border-radius: 4px;
}

button.btn>a {
  font-family: inherit;
}

a.primary-btn,
.primary-btn,
.primary-btn.disabled,
.secondary-btn,
.text-btn,
.primary-btn>a.button-link {
  color: #E4002B;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

a.primary-btn,
.primary-btn,
.primary-btn.disabled {
  border: 1px solid #E4002B;
  background-color: #FFFFFF;
  padding-right: 0px;
  border-radius: 4px;
  height: 44px;
}

.primary-btn .button-addon {
  background-color: #E4002B;
  color: #FFFFFF;
  padding: 14px;
  margin-left: 10px;
  border-left: 0;
  border-bottom: 2px solid #E4002B;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.primary-btn.invert {
  color: #FFFFFF;
  background-color: #E4002B;
}

.primary-btn.invert .button-addon {
  background-color: #FFFFFF;
  color: #E4002B;
}

a.primary-btn:active,
a.primary-btn:focus,
.primary-btn:active,
.primary-btn:focus {
  color: #63666a;
  border-color: #63666a;
}

a.invert.primary-btn:active,
a.invert.primary-btn:focus,
.invert.primary-btn:active,
.invert.primary-btn:focus {
  color: #fff;
}

.primary-btn:active .button-addon,
.primary-btn:focus .button-addon {
  background-color: #63666a;
  border-color: #63666a;
}

.disabled.primary-btn {
  color: #BBBCBC;
  border-color: #BBBCBC;
}

.disabled.primary-btn .button-addon {
  background-color: #BBBCBC;
  border-color: #BBBCBC;
}

.secondary-btn {
  border-radius: 4px;
  border: 1px solid #FFFFFF;
  background-color: #E4002B;
  color: #FFFFFF;
  height: 45px;
}

.secondary-btn:active,
.secondary-btn:focus {
  border-color: #63666a;
  background-color: #63666a;
}

.secondary-btn.disabled {
  border-color: #BBBCBC;
  background-color: #BBBCBC;
}

.text-btn {
  color: #E4002B;
  text-decoration: none;
}

.text-btn span {
  color: #E4002B;
  background-color: transparent;
  margin-right: .5em;
  line-height: inherit;
  vertical-align: baseline;
}

.text-btn:hover {
  text-decoration: none;
  color: #E4002B;
}

.text-btn.white span {
  color: #FFFFFF;
  background-color: #27251F;
}

.link-btn {
  color: #27251F;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
  text-decoration: none;
}

.link-btn span {
  color: #E4002B;
  background-color: #FFFFFF;
  margin-left: .5em;
  line-height: inherit;
  vertical-align: baseline;
}

.link-btn:hover {
  text-decoration: none;
  color: #27251F;
}

.dropdown-container {
  display: flex;
}

.dropdown-container button {
  margin-left: 5px;
}

/* #endregion */

/* #region headings */

/* ===========================
0.6 Headings
*/

h1,
.h1 {
  color: #27251F;
  font-size: 2.3rem;
  line-height: 3.5rem;
  font-family: "HelveticaNeueBlack-extended", sans-serif;
  text-transform: uppercase;
}

h2,
.h2,
a.h2 {
  color: #27251F;
  font-size: 1.55rem;
  line-height: 2.5rem;
  font-family: "HelveticaNeue-heavy-extended", sans-serif;
}

h3,
.h3 {
  color: #27251F;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-family: "HelveticaNeueHeavySentence", sans-serif;
}

h4,
.h4 {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueHeavySentence", sans-serif;
}

h5,
.h5,
h5>p,
div.h5>p {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

h6,
.h6 {
  color: #E4002B;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

@media (max-width: 768px) {
  h1,
  .h1 {
      font-size: 1.5rem;
      line-height: 2.5rem;
  }
  h2,
  .h2 {
      font-size: 1.4rem;
      line-height: 2.25rem;
  }
  h3,
  .h3 {
      font-size: 1.4rem;
      line-height: 2.25rem;
  }
}

/* #endregion */

/* #region fake select box dropdown menu */

/* ===========================
0.7 Dropdown menu (fake select box)
*/

a.dropdown-btn,
.dropdown-btn,
.dropdown-btn-menu a {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

.dropdown-btn {
  width: 100%;
  text-transform: none;
  position: relative;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 44px;
  padding: .5rem 3rem .5rem 1.5rem;
  background-color: #FFFFFF;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, rgba(62, 62, 62, 0.5) 100%);
}

.dropdown-btn:hover {
  background-color: #FFFFFF;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, rgba(62, 62, 62, 0.5) 100%);
}

.dropdown-btn-menu {
  left: auto;
  width: 100%;
  border: 1px solid #BBBCBC;
  border-radius: 4px;
  padding: 0;
  margin: 0;
  border-top: none;
  background-color: #FFFFFF;
  z-index: 999;
}

.dropdown-btn-menu a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  border-bottom: 1px solid #F1F1F1;
  padding: 1rem;
}

.dropdown-btn-menu a:hover {
  background-color: #F1F1F1;
}

.dropdown-btn-menu a:last-child {
  border-bottom: none;
}

.dropdown-toggle::after {
  content: "\e910";
  border: none;
  font-size: 1rem;
  font-family: icomoon;
  top: calc(50% - 1rem);
  position: absolute;
  right: 2rem;
  padding-left: 10px;
}

a.dropdown-item {
  cursor: pointer;
}

/* #endregion */

/* #region placeholder */

/* ===========================
0.8 Placeholder
*/

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

:-moz-placeholder {
  /* Firefox 18- */
}

::-moz-placeholder {
  /* Firefox 19+ */
}

/* #endregion */

/* #region forms and input */

/* ===========================
0.9 Forms & Input
*/

.input-with-button .input-group-addon {
  color: #E4002B;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

.form-group.error ul.form-text,
.form-group.error p.form-text {
  font-size: .8rem;
}

.form-group {
  margin: 2rem 0;
}

.form-group h6.error,
.form-group div.error,
.form-group .input-with-button .error.input-group-addon,
.input-with-button .form-group .error.input-group-addon {
  display: none;
}

input.form-control {
  border: 1px solid #BBBCBC;
  height: 45px;
  border-radius: 4px;
}

input.form-control::placeholder {
  color: #757575;
}

input.form-control:-webkit-input-placeholder {
  color: #757575;
}

input.form-control:-moz-placeholder {
  color: #757575;
}

input.form-control:-ms-input-placeholder {
  color: #757575;
}

input.form-control:focus {
  border-color: #63666a;
}

textarea.form-control {
  border: 1px solid #BBBCBC;
}

textarea.form-control:focus {
  border-color: #63666a;
}

.form-group.disabled input {
  border: #BBBCBC;
  background-color: #F1F1F1;
}

.form-group.disabled label {
  color: #BBBCBC;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error button {
  border: 1px solid #E4002B;
  background-color: #FFFFFF;
}

.form-group.error label {
  color: #E4002B;
}

.form-group.error .form-text {
  color: #E4002B;
  margin-top: 1rem;
}

.form-group.error div.error,
.form-group.error h6.error,
.form-group.error .input-with-button .error.input-group-addon,
.input-with-button .form-group.error .error.input-group-addon {
  display: block;
}

.input-with-icon {
  background-color: #FFFFFF;
}

.input-with-button {
  border: none;
  background-color: #FFFFFF;
  padding-right: 0px;
  border-radius: 4px;
}

.input-with-button .input-group-addon {
  text-transform: uppercase;
  background-color: #E4002B;
  color: #FFFFFF;
  border: 1px solid #E4002B;
  z-index: 4;
  cursor: pointer;
}

.input-with-button .input-group-addon:active {
  background-color: #63666a;
  border: 1px solid #63666a;
}

.input-with-button input {
  border: 1px solid #BBBCBC;
  height: 45px;
  border-right: none;
  border-right: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

input[type="checkbox"] {
  display: none;
}
input[type=radio] {
  display: none;
}

[type="radio"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

[type="radio"]+span {
  display: block;
}

/* the basic, unchecked style */

[type="radio"]+span:before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.25em;
  border-radius: 1em;
  border: 0.225em solid #FFFFFF;
  box-shadow: 0 0 0 0.15em #63666a;
  margin-right: 1em;
}

/* the checked style using the :checked pseudo class */

[type="radio"]:checked+span:before {
  background: #E4002B;
}
.checkbox-custom {
  opacity: 0;
  position: absolute;
}

.checkbox-custom,
.checkbox-custom-label {
  display: inline-block;
  position: relative;
  color: #27251F;
  line-height: 17px;
}

.checkbox-custom+.checkbox-custom-label:before {
  content: '';
  background: #FFFFFF;
  border: 2px solid #63666a;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
  text-align: center;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
  font-family: 'icomoon';
  content: "\e91b";
  border: 2px solid #63666a;
  color: #E4002B;
  font-size: 1.7rem;
}

/*** used mostly with location related inputs **/
.input-with-icon {
  color: #E4002B;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

.input-with-icon {
  position: relative;
  border: 1px solid #BBBCBC;
  height: 45px;
  border-right: none;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.input-with-icon input {
  border: none;
  padding: 1rem;
}

.input-with-icon .input-group-addon {
  text-transform: uppercase;
  background-color: #E4002B;
  color: #FFFFFF;
  border: 1px solid #E4002B;
  z-index: 4;
  cursor: pointer;
  position: absolute;
  height: 47px;
  right: 0;
  top: -1px;
  padding: 1.5rem;
  padding-top: 15px;
  width: auto;
  width: initial;
}

.search-input .icon {
  display: table-cell;
  vertical-align: middle;
  padding-left: 1rem;
  width: 1rem;
  font-size: 1.5rem;
  color: #BBBCBC;
}

.search-input.change .input-group-addon {
  background-color: #63666a;
  border-color: #63666a;
}
/* #endregion */

/* #region lists */

/* ===========================
0.10 lists
*/

ol {
  list-style-type: disc;
}

ul {
  color: #27251F;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
  list-style-type: none;
  padding-left: 0;
}

.disc {
  list-style-type: disc;
  padding-left: 40px;
}

.list-group-item {
  border: none;
}

li .icon-Arrow-Chevron-Down {
  transform: rotate(0deg);
  transition: transform .25s linear;
}

li.open .icon-Arrow-Chevron-Down {
  transform: rotate(180deg);
}

/* #endregion */

/* #region element positioning */

/* ===========================
0.11 Element Positioning
*/

.container {
  padding-left: 2rem;
  padding-right: 2rem;
}

.margin-auto {
  margin: auto;
}

.margin-0 {
  margin: 0;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-2rem {
  margin-top: 2rem;
}

.margin-top-4rem {
  margin-top: 4rem;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-halfrem {
  margin-bottom: .5rem;
}

.margin-bottom-1rem {
  margin-bottom: 1rem;
}

.margin-bottom-2rem {
  margin-bottom: 2rem;
}

.margin-bottom-4rem {
  margin-bottom: 4rem;
}

.margin-bottom-9rem {
  margin-bottom: 9rem;
}

.margin-bottom-16rem {
  margin-bottom: 16rem;
}

.margin-left-15 {
  margin-left: 15px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-right-15rem {
  margin-right: 1.5rem;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.padding20 {
  padding: 20px;
}
.padding-top-1 {
  padding-top: 1rem;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 1.5rem;
}

.padding-top-2 {
  padding-top: 2rem;
}

.padding-top-25 {
  padding-top: 2.5rem;
}

.padding-bottom-0 {
  padding-bottom: 0;
}

.padding-bottom-1 {
  padding-bottom: 1rem;
}

.padding-bottom-15 {
  padding-bottom: 1.5rem;
}

.padding-bottom-2 {
  padding-bottom: 2rem;
}

.padding-bottom-25 {
  padding-bottom: 2.5rem;
}

.padding-bottom-4 {
  padding-bottom: 4rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding {
      padding-top: 4rem;
      padding-bottom: 4rem;
  }
}

.float-right {
  float: right;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.position-relative {
  position: relative;
}

/* #endregion */

/* #region text positioning */

/* ===========================
0.12 Text Positioning
*/

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* #endregion */

/* #region presentational components */

/* ===========================
0.13 Presentational components
*/

.horizontal-divider {
  height: 3px;
  background-color: #27251F;
  max-width: 150px;
  margin: 0 0 2rem 0;
}

.horizontal-divider-light {
  height: 2px;
  background-color: #F1F1F1;
  width: 100%;
  margin: 0 0 2rem 0;
}

.horizontal-divider-red-full {
    height: 3px;
    background-color: #E4002B;
    max-width: 100%;
    margin: 0;
}

.error-block .horizontal-divider,
.error-block .horizontal-divider-light {
    margin: 1rem auto 3rem auto;
}

/* #endregion */

/* #region colors */

/* ===========================
0.14 Colors
*/

.color-white {
  color: #FFFFFF;
}

.color-red {
  color: #E4002B !important;
}

.color-textGray {
  color: #63666a;
}

.color-black {
  color: #27251F;
}

.color-green {
  color: #009344;
}

.color-white-bkgrd {
  background-color: #FFFFFF;
}

.color-red-bkgrd {
  background-color: #E4002B;
}

.color-lightestGray-bkgrd {
  background-color: #FBFBFB;
}

.color-lightGray-bkgrd {
  background-color: #F1F1F1;
}

.color-black-bkgrd {
  background-color: #27251F;
}

.trans-back {
  background-color: transparent !important;
}

/* #endregion */

/* #region icon fonts */

/* ===========================
0.15 Icon Fonts
*/ 

.icon {
  padding-left: 5px;
  padding-right: 5px;
}

li .icon-Arrow-Chevron-Down {
  transform: rotate(0deg);
  transition: transform .25s linear;
}

li.open .icon-Arrow-Chevron-Down {
  transform: rotate(180deg);
}

/* #endregion */

/* #region template */

/* ===========================
0.16 Template
*/

.template-with-sidebar-section {
  border-right: 1px solid #BBBCBC;
  padding-right: 40px;
}

.template-with-sidebar-section h2 {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .template-with-sidebar-section {
      border-right: none;
  }
}

/* #endregion */

/* #endregion */



/* ===========================
1 Page Fragments
============================*/

/* #region Page Fragments */

/* #region news card */

/* ===========================
1.0 News card */ 

.play-button {
  width: 5em;
  height: 4em;
  z-index: 2;
  cursor: pointer;
}

.play-button .icon {
  font-size: 2rem;
  position: absolute;
  top: 25%;
  color: white;
  left: 20%;
}

.news_card {
  box-shadow: 0px 6px 20px #BBBCBC;
  border: none;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .news_card {
      margin: 1rem auto;
  }
}

.news_card img {
  width: 100%;
}

.news_card .card-cta {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .news_card .card-cta {
      margin-top: 1rem;
  }
}

.news_card .card-cta .cta-link-left {
  float: left;
}

.news_card .card-cta .cta-link-right {
  float: right;
}

.news_card .card-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: calc(3*1.2rem);
}

.news_card .play-button {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  display: block;
}

.simple_card .card-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: calc(3*2.5rem);
}

.simple_card a:hover {
  text-decoration: none;
}

.simple_card a:focus {
  text-decoration: none;
  outline: 2px solid #E4002B;
  outline-offset: 2px;
}

/* #endregion */

/* #region header */

/* ===========================
1.1 Header
*/

/* #region header container */

/* ------------
1.1.0 Header container
*/

.navbar {
  border-bottom: 8px solid #E4002B;
  border-radius: 0;
  /*box-shadow: 0px 2px 20px $color-coolGray;*/
  -webkit-filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.3));
  background: #FFFFFF;
  z-index: 100;
  padding: 4rem 0 2rem 0;
}

@media (max-width:480px) {
  .navbar {
    padding: 3rem 0 1.5rem 0;
  }
}

.navbar-brand {
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
  z-index: 1;
  margin-top: -2.25rem;
}

.navbar-brand img {
  height: 50px;
}

@media (max-width: 640px) {
  .navbar-brand img.nw {
      height: auto;
      margin-top: 2.25rem;
      max-height: 50px;
      max-width: 200px;
  }
}

@media (max-width: 767px) {
  .navbar-fixed-top {
      position: absolute;
  }
}

#hamburger-menu-lg,
#hamburger-menu-sm {
  color: #27251F;
}

#hamburger-menu-lg:hover,
#hamburger-menu-sm:hover {
  color: #E4002B;
}

#hamburger-menu-lg:focus,
#hamburger-menu-sm:focus {
  color: #E4002B;
}


.primary-nav .primary-navigation-link,
.mobile-nav a.primary {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueHeavySentence", sans-serif;
}

.primary-nav .dropdown-item,
.mobile-nav a.nav-link {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

.primary-nav {
  position: relative;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav .arrow-up {
  right: 120px;
  top: -18px;
}

.primary-nav .icon {
  padding-left: 0px;
}

.primary-nav .icon.icon-User-Fill {
  color: #E4002B;
  font-size: 1.3rem;
}

.primary-nav .icon.icon-Hamburger {
  font-size: 1rem;
}

.primary-nav #mega-menu {
  position: absolute;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0px;
}

.primary-nav #mega-menu .arrow-up {
  left: 0;
}

.primary-nav #portal {
  position: absolute;
  right: 0;
}

.primary-nav .mmenu {
  width: 100%;
  border: none;
}

.primary-nav .dropdown-menu {
  border: none;
  border-radius: 0px;
  margin: 0px;
  top: 60px;
}

.primary-nav .dropdown-menu.secondary {
  left: auto;
  right: 0;
  box-shadow: 0px 2px 4px 0px rgba(186, 186, 186, 0.5);
}

.primary-nav .dropdown-item {
  padding: 5px 30px;
}

.primary-nav .dropdown-item:hover {
  background-color: #FFFFFF;
  color: #E4002B;
}

.primary-nav .dropdown-toggle::after {
  display: none;
}

.primary-nav .primary-navigation-link {
  text-transform: uppercase;
  font-size: 1rem;
}

.primary-nav .primary-navigation-link:hover {
  color: #E4002B;
}

.primary-nav .primary-navigation-link:focus {
  color: #E4002B;
  /* border-bottom: 2px solid #E4002B; */
  box-shadow: 0 2px 0 #E4002B;
}

.primary-nav .primary-navigation-link span:before {
  padding-right: 5px;
}

.navbar-toggler.hidden-lg-up {
  /*margin-top: 2rem;*/
  font-size: 1rem;
  line-height: 1.9rem;
  padding: 0;
}

.mobile-nav {
  width: 350px;
  position: absolute;
  top: 112px;
  background-color: #FFFFFF;
}

.mobile-nav a:focus {
  outline: auto;
  outline-offset: 4px;
}

.mobile-nav span.pulldown {
  position: relative;
  top: 1px;
}

@media (max-width: 768px) {
  .mobile-nav {
      width: 100%;
      right: 0;
  }
}

.mobile-nav .dropdown-toggle::after {
  display: none;
}

.mobile-nav a {
  color: #BBBCBC;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  padding-top: 5px;
}

.mobile-nav a.primary {
  line-height: 1.5rem;
  padding: 0 8px;
}

.mobile-nav a.primary .icon {
  color: #E4002B;
  padding-left: 0;
  padding-right: 1.5rem;
}

.mobile-nav a.nav-link {
  padding-left: 40px;
}

.mobile-nav .social-share {
  padding: 2rem 0;
  text-align: center;
}

.mobile-nav .social-share a {
  display: inline;
  color: #27251F;
}

.mobile-nav li.nav-section {
  padding-top: 15px;
  border-bottom: 1px solid #F1F1F1;
  min-height: 50px;
}

.mobile-nav li.nav-section a:focus {
  color: #db0028; /* #E4002B; */
}

.mobile-nav .dropdown-menu.static {
  position: static;
  float: none;
  width: auto;
  margin-top: 2rem;
  border: none;
  background-color: #F1F1F1;
  border-radius: 0;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: .8rem solid transparent;
  border-right: .8rem solid transparent;
  border-bottom: 0.8rem solid #E4002B;
  position: absolute;
}

/* #endregion */

/* #region megamenu */

/* ------------
1.1.1 Megamenu
*/

.mmenu {
  display: flex;
  align-items: stretch;
  padding-top: 1.5rem;
}

.mmenu>.col-lg-3 {
  width: 20%;
}

.mmenu .primary .h4 {
  color: #27251F;
  font-size: 1rem;
  line-height: 1.7rem;
  font-family: "HelveticaNeueHeavySentence", sans-serif;
  padding-bottom: 1rem;
}

.mmenu .primary span {
  /* mmenu icon */
  color: #E4002B;
  padding: 0 1rem;
}

.mmenu .icon {
  font-size: 2rem;
  vertical-align: middle;
}

.mmenu a {
  color: #27251F;
  font-size: 1rem;
  line-height: 1.7rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
  display: inline-block;
  text-decoration: none;
  margin: 0 0 1rem 0;
}

.mmenu a:hover {
  color: #E4002B;
}

.mmenu li a.secondary {
  margin-left: 52px;
}

.mmenu .divided-column {
  border-right: 1px solid #F1F1F1;
}

.mmenu-footer {
  background-color: #F1F1F1;
  padding-top: 20px;
  margin: 2rem 0 0 0;
  height: 60px;
  padding: 15px;
}

.mmenu-footer ul.questions {
  list-style-type: none;
  display: inline;
}

.mmenu-footer ul.questions li {
  display: inline-block;
}

.mmenu-footer .icon {
  color: #E4002B;
  padding-right: 1.5rem;
  font-size: 2rem;
  vertical-align: middle;
}

.mmenu-footer a {
  text-decoration: none;
  color: #27251F;
}

.mmenu-footer a:hover {
  color: #DB0028;
}

.mmenu-footer .divider {
  padding: 0 10px;
}

/* #endregion */

/* #endregion */

/* #region footer */

/* ===========================
1.2 Footer
*/ 

footer {
  background-color: #27251F;
  color: #FFFFFF;
  padding: 4rem;
}

footer p {
  color: #FFFFFF;
}

footer .social-share a {
  color: #FFFFFF;
}

.footer-links li a {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

.footer-links li {
  padding-bottom: 1.5rem;
}

.footer-links li a {
  text-decoration: none;
  text-transform: uppercase;
}

footer hr {
  margin-top: 4rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  footer .social-share {
      text-align: right;
  }
}

@media (max-width: 991px) {
  footer .social-share {
      text-align: left;
      padding-top: 2rem;
  }
}

footer .faq-cta {
  background-color: #27251F;
  width: 100%;
}

footer .dropdown-toggle {
  width: 100%;
  height: 45px;
}

@media (max-width: 767px) {
  footer .ask_button {
      margin-top: 2rem;
  }
}

.privacy_tc h1 {
  padding-bottom: 3rem;
}

.privacy_tc li {
  padding-top: 2rem;
}

.privacy_tc h2 {
  padding-bottom: 2rem;
  text-transform: uppercase;
}

.privacy_tc p {
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .privacy_tc {
      padding-right: 22rem;
  }
}

.nav-item.inline {
  color: white;
  display: inline;
}

/* #endregion */

/* #region alerts */

/* ===========================
1.3 Alerts
*/ 

.alert-modal {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.alert-modal button.close {
  opacity: 1;
  padding-top: 20px;
  padding-right: 20px;
}

.alert-modal .modal-header {
  background-color: #FFF;
  border-bottom: none;
  padding: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.alert-modal .modal-content {
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.alert-modal .modal-body {
  padding: 5% 25% 10% 25%;
}
/* #endregion */

/* #region carousel */

/* ===========================
1.4 Carousel
*/ 

.carousel {
  padding: 0;
  box-shadow: 0px 6px 20px #BBBCBC;
}

.carousel .carousel-indicators {
  bottom: 0;
  left: 115px;
  height: 20px;
}

@media (max-width: 990px) {
  .carousel .carousel-indicators {
      top: inherit;
  }
}

.carousel.value-carousel .carousel-inner {
  height: auto;
}

@media (max-width: 768px) {
  .carousel.value-carousel .carousel-inner {
      /**height: 820px;*/
  }
}

.carousel .carousel-indicators li {
  background-color: #BBBCBC;
  border: 1px solid transparent;
  width: 12px;
  height: 12px;
  margin: 0;
  margin-right: .5rem;
}

.carousel .carousel-indicators li:last-child {
  margin-right: 0rem;
}

.carousel .carousel-indicators li.active {
  margin: 0;
  margin-right: .5rem;
  background-color: #27251F;
}

.carousel .carousel-indicators li.active:last-child {
  margin-right: 0rem;
}

.carousel .carousel-indicators {
  width: auto;
  margin-left: 0;
}
.carousel .carousel-indicators:focus {
  outline-width: 2px;
  outline-offset: 2px;
}

.carousel .carousel-control .icon-next::before {
  content: "\e917";
}

.carousel .carousel-control {
  text-shadow: none;
  opacity: 1;
  color: #27251F;
  width: 3%;
  position: static;
}

@media (max-width: 768px) {
  .carousel .carousel-control {
      display: none;
  }
  .location-carousel .carousel-control {
      display: block;
  }
  .location-carousel .carousel-control .icon-next {
      margin-right: 0px;
  }
  .location-carousel .carousel-control .icon-prev {
      margin-left: 0px;
  }
  .location-carousel .carousel-control .icon-prev,
  .carousel-control .icon-next {
      top: 25%;
  }
}

.carousel .carousel-control .icon-prev::before {
  content: "\e916";
}

.carousel .carousel-control.right {
  background-image: none;
}

.carousel .carousel-control.left {
  background-image: none;
}

.carousel .carousel-control:focus > span {
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 2px;
}
/* #endregion */

/* #region circle ctas */

/* ===========================
1.5 Circle CTAs
*/

.circle {
  width: 15rem;
  height: 15rem;
  -webkit-border-radius: 7.5rem;
  -moz-border-radius: 7.5rem;
  border-radius: 7.5rem;
  position: relative;
  margin: 2rem;
  /* -webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
      -moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
      -ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
      -o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
      filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));*/
  box-shadow: 0px 3px 8px 0px rgba(193, 193, 193, 0.5);
  display: inline-block;
  background-color: #FFFFFF;
}

@media (max-width: 400px) {
  .circle {
      width: 10rem;
      height: 10rem;
  }
}

@media (max-width: 768px) {
  .circle {
      margin: 1rem 0;
  }
}

.circle .circle-content {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-decoration: none;
}

@media (max-width: 400px) {
  .circle .circle-content {
      top: 15%;
  }
}

.circle .circle-content .icon {
  color: #E4002B;
  font-size: 3.5rem;
}

.circle .circle-content .circle-content-title {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 2rem;
  text-transform: uppercase;
}

@media (max-width: 400px) {
  .circle .circle-content .circle-content-title {
      margin-top: 0.5rem;
      font-size: 1rem;
      line-height: 1.4rem;
  }
}

/* #endregion */

/* #region "offset" sections */

/* ===========================
1.6 "Offset" Sections
*/

.offset-gray {
  background-color: #63666a;
  padding: 0 0 0 30%;
}

.img-block {
  background-color: #63666a;
  padding: 40px;
  background-color: #63666a;
  background-image: url(../images/block.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}

.offset-red {
  background-color: #E4002B;
  padding: 0 30% 0 0;
}

.img-block {
  background-color: #E4002B;
  padding: 40px;
  background-color: #E4002B;
  background-image: url(../images/block.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}

div.header-description,
div.header-description>p {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

.white-overlay-on-gray {
  margin-right: 55%;
  margin-left: -65%;
}

@media (max-width: 992px) {
  .white-overlay-on-gray {
      margin-right: 55%;
      margin-left: -65%;
  }
}

@media (max-width: 768px) {
  .white-overlay-on-gray {
      margin-right: 20%;
      margin-left: -45%;
  }
}

@media (max-width: 544px) {
  .white-overlay-on-gray {
      /*margin-right: 15%;*/
      margin-right: 0;
      margin-left: -40%;
  }
}

.white-overlay-on-gray .horizontal-divider {
  margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
  .white-overlay-on-gray .horizontal-divider {
      margin: 0 0 .8rem 0;
  }
}

.white-overlay-on-gray .text-block {
  padding: 4rem;
}

.white-overlay-on-gray .text-block .overlay-cta {
  padding-top: 1.5rem;
}

@media (max-width: 992px) {
  .white-overlay-on-gray .text-block {
      padding: 2rem;
  }
}

@media (max-width: 768px) {
  .white-overlay-on-gray .text-block {
      padding: 2rem 8px;
  }
}

.white-overlay-on-red {
margin-right: -45%;
margin-left: 35%;
}

@media (max-width: 992px) {
.white-overlay-on-red {
  margin-right: -45%;
  margin-left: 35%;
}
}

@media (max-width: 768px) {
.white-overlay-on-red {
  margin-right: -40%;
  margin-left: 15%;
}
}

@media (max-width: 544px) {
.white-overlay-on-red {
  margin-right: -40%;
  margin-left: 15%;
}
}

.white-overlay-on-red .horizontal-divider {
margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
.white-overlay-on-red .horizontal-divider {
  margin: 0 0 .8rem 0;
}
}

.white-overlay-on-red .text-block {
padding: 4rem;
}

.white-overlay-on-red .text-block .overlay-cta {
padding-top: 1.5rem;
}

@media (max-width: 992px) {
.white-overlay-on-red .text-block {
  padding: 2rem;
}
}

@media (max-width: 768px) {
.white-overlay-on-red .text-block {
  padding: 2rem 8px;
}
}

/* #endregion */

/* #region sidebar */

/* ===========================
1.7 Sidebar
*/ 

.sidebar {
  padding-left: 40px;
}

.sidebar h2 {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .sidebar {
      padding-left: 2rem;
  }
  .sidebar h2 {
      padding-top: 2rem;
  }
}

/* #endregion */

/* #region social */

/* ===========================
1.8 Social
*/ 

.social-share ul {
  list-style-type: none;
  margin: 0;
}

.social-share li {
  display: inline-block;
  padding-right: 1.5rem;
}

.social-share li:last-of-type {
  padding-right: 0;
}

.social-share a {
  font-size: 1.8rem;
  color: #27251F;
  text-decoration: none;
}

.social-share a>span {
  position: relative;
  top: 4px;
}

.social-share a:focus {
  outline: 2px solid #E4002B;
  outline-offset: 2px;
}

.social-share span.fb-icon:hover,
.social-share span.fb-icon:focus,
.social-share a:focus span.fb-icon {
  color: #4460a0;
}

.social-share span.youtube-icon:hover,
.social-share span.youtube-icon:focus,
.social-share a:focus span.youtube-icon {
  color: #bb0000;
}

.social-share span.twitter-icon:hover,
.social-share span.twitter-icon:focus,
.social-share a:focus span.twitter-icon {
  color: #00aaec;
}

.social-share span.vimeo-icon:hover,
.social-share span.vimeo-icon:focus,
.social-share a:focus span.vimeo-icon {
  color: #00b2ea;
}

.social-share span.yelp-icon:hover,
.social-share span.yelp-icon:focus,
.social-share a:focus span.yelp-icon {
  color: #e4002b;
}

.social-share span.insta-icon:hover,
.social-share span.insta-icon:focus,
.social-share a:focus span.insta-icon {
  background: radial-gradient(circle at 0% 7%, #D82e7c 0%, #f57545 23%, #F78d31 33%, #e06a4e 49%, #c54171 69%, #803bac 76%, #d63086 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* #endregion */

/* #region subscribe */

/* ===========================
1.9 Subscribe
*/ 

.subscribe-label {
  line-height: 45px;
  text-align: right;
}

@media (max-width: 768px) {
  .subscribe-label {
      text-align: center;
      line-height: 25px;
  }
}

#citymd-subscribe .form-group {
  margin: 0 0 13px 0;
}

#citymd-subscribe-submit:focus {
  outline: 2px solid yellow;
}

.subscribe-section {
  background-color: #F1F1F1;
  padding: 30px;
}

#subscribe-error {
  color: #b44c52;
}

/* #endregion */

/* #region help section */

/* ===========================
1.10 Help Section
*/

.help_section {
  background-image: url('../images/bkgrd.jpg?quality=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 8rem;
  padding-right: 8rem;
}

.help_section .row {
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .help_section {
      padding-left: 1rem;
      padding-right: 1rem;
  }
}

.help_section .horizontal-divider {
  margin: 2rem auto;
  background-color: #FFFFFF;
}

.help_section.no-background-image {
  background-image: none;
  background-color: #F1F1F1;
}

@media (max-width: 992px) {
  .help_section.no-background-image .circle {
      margin: 1rem 0;
  }
}

.help_section h1 { /* unused */
  color: #FFFFFF;
}

/* #endregion */

/* #region know before you go section */

/* ===========================
1.11 Know Before You Go Section
*/

.know-section .horizontal-divider {
  margin: 1rem auto 5rem;
}

@media (max-width: 768px) {
  .know-section .horizontal-divider {
      margin: 1rem auto 2rem;
  }
}

/* #endregion */

/* #region news section */

/* ===========================
1.12 News Section
*/

.news-section {
  background-color: #F1F1F1;
}

.news-section .horizontal-divider {
  margin: 1rem auto 5rem;
}

/* #endregion */

/* #region video */

/* ===========================
1.13 Video
*/

.video_module .video-text {
  padding-left: 5rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .video_module .video-text {
      padding: 0;
      padding-bottom: 5rem;
  }
}

/* #endregion */

/* #endregion */


/* ===========================
2 Home Page
============================*/

/* #region Home Page */

.hero-carousel-item > img, .hero-carousel-item > a > img {
  margin: 0 auto
}

#hero-carousel a:focus img {
  outline-style: solid;
  outline-color: #E4002B;
  outline-width: 1px;
  outline-offset: 2px;
}

#hero-carousel .carousel-indicators {
  left: 50%;
  bottom: -20px;
}

#hero-carousel .play-pause {
  position: relative;
  display: inline-block;
  bottom: -7px;
}

.hero-carousel-item {
  padding: 5px;
}

.hero-carousel-link {
  display: inline-block;
}

.hero-carousel-image {
  height: 225px;
  margin: 0 auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-carousel-content {
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-carousel-content p {
  color: #27251F;
  font-size: 2.3rem;
  line-height: 3.5rem;
  font-family: "HelveticaNeueBlack-extended", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-carousel-image {
    width: 300px;
    height: 225px;
    margin: 0 auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .hero-carousel-content {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-carousel-content p {
    color: #27251F;
    font-size: 1.65rem;
    line-height: 2.5rem;
    font-family: "HelveticaNeueBlack-extended", sans-serif;
    text-transform: uppercase;
  }

  .hero-carousel-content p.smaller {
    font-size: 1.4rem;
  }
}

.carousel .play-pause button {
  border: 1px solid #E4002B;
  background: white;
  color: #E4002B;
  border-radius: 3px;
}

#hero-carousel-mobile .carousel-indicators {
  left: 50%;
  bottom: -30px;
}

.CTA-section {
  position: relative;
  text-align: center;
  background: #FBFBFB;
  padding-bottom: 40px;
}

.CTA-section .CTA-bkgrd {
  max-height: 300px;
  margin: auto;
}

.btn.home-find-a-citymd-btn {
  background-color: #E4002B;
  height: 49px;
  margin-bottom: 2rem;
  padding-left: 24px;
  font-size: 2rem;
  border: 1px solid #E4002B;
  color: #ffffff;
  padding-right: 0px;
  border-radius: 4px;
  line-height: 2.1rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

.btn.home-find-a-citymd-btn .button-addon {
  background-color: white;
  color: #E4002B;
  margin-left: 24px;
  border-bottom: 0;
  font-size: 1.7rem;
  padding: 12px;
  border-left: 0;
  border-bottom: 1px solid white;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  border-right: 2px solid white;
}

@media (max-width: 768px) {
  .btn.home-find-a-citymd-btn .button-addon {
    border-top: 3px solid white;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .btn.home-find-a-citymd-btn .button-addon {
    padding: 11px;
    border-bottom: 3px solid white;
    }
}

.value-carousel.carousel {
  box-shadow: none;
  margin-bottom: 50px;
}

.value-carousel.carousel .icon-prev {
  left: 0px;
  margin-left: 0;
}

.value-carousel.carousel .icon-next {
  right: 0px;
  left: auto;
}

@media (max-width: 991px) {
  .btn.home-find-a-citymd-btn {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .btn.home-find-a-citymd-btn {
    height: 47px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  .btn.home-find-a-citymd-btn .button-addon {
    font-size: 1.3rem;
  }
  .value-carousel.carousel .carousel-indicators {
      bottom: -40px;
      left: 30%;
  }
  .value-carousel.carousel img {
      width: 100%;
  }
}

.value-carousel.carousel .carousel-indicators {
  bottom: -0;
}

.value-panel {
  padding-top: 5rem;
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .value-panel {
      padding-top: 4rem;
      padding-bottom: 4rem;
  }
}

.value-panel img {
  max-height: 500px;
}

.value-panel .value-cta {
  padding: 40px 80px 0px 80px;
}

@media (max-width: 992px) {
  .value-panel .value-cta {
      padding: 40px 40px 20px 40px;
  }
}

@media (max-width: 768px) {
  .value-panel .value-cta {
      padding: 0px 0px 0px 10px;
  }
}

.value-panel .value-cta .horizontal-divider {
  margin: 1rem 0 3rem;
}

.value-panel .value-cta p {
  margin: 1rem 0 1.5rem;
}

.value-panel .value-cta .primary-cta {
  margin: 3rem 0 0 0;
}

#blog-carousel {
  touch-action: pan-y;
}

#blog-carousel ul.glide__slides {
  display: flex;
}

#blog-carousel .post-preview .image img {
  width: 100%;
}

#blog-carousel .post-preview .category a {
  color: #e4002b;
  font-family: "HelveticaNeue-heavy-extended", sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin: 0.5rem 0;
  display: block;
}

#blog-carousel .post-preview .title a {
  color: black;
  text-transform: capitalize;
  text-align: center;
  font-weight: 600;
  line-height: 0.95rem;
  display: block;
}

#blog-carousel .glide__bullets {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

#blog-carousel .glide__bullets .glide__bullet {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background-color: black;
      border: 0;
      margin: 0 4px;
  }

  #blog-carousel .glide__bullets .glide__bullet--active {
      background-color: #e4002b;
  }

@media only screen and (min-width: 995px) {
  #blog-carousel .post-preview .category a {
      font-size: 2em;
      margin: 0.75em 0;
  }

  #blog-carousel .post-preview .title a {
      font-size: 1.5em;
      line-height: 1.1em;
  }

  #blog-carousel .glide__bullets .glide__bullet {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    margin: 0 8px;
  }
}

/* #endregion */



/* ===========================
3 Service Pages
============================*/

/* #region Service Pages */

.service-additional-details ul {
  list-style-type: disc;
  padding-left: 2.5rem;
  font-size: 1.1em;
  line-height: 1.5em;
}

.service_list_section ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.service_list_section ul li {
  padding: 0 2.5rem;
  width: 50%;
}

@media (max-width: 768px) {
  .service_list_section ul li {
    width: 100%;
  }
}

.service_list_section .horizontal-divider-light {
  margin: 3rem auto;
  height: 1px;
}

.service_list_section .icon {
  padding-right: 2rem;
}

.service_icon_text_block {
  display: flex;
}

a:focus .service_icon_text_block  {
  outline-style: solid;
  outline-color: #E4002B;
  outline-width: 1px;
  outline-offset: 2px;
}

.service_icon_text_block .icon {
  font-size: 4rem;
  vertical-align: super;
  padding-right: 1rem;
}

.service-link:hover {
  text-decoration: none;
}

p.header-description {    
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

/* #endregion */



/* ===========================
4 OccMed Pages
============================*/

/* #region OccMed Pages */

.occmed_category_header_image {
  position: absolute;
  right: 11%;
  top: 125px;
  width: 575px;
}

@media (max-width: 768px) {
  .occmed_category_header_image {
    right: 0;
    top: 210px;
    width: 300px;
  }
}

@media (max-width: 480px) {
  .occmed_category_header_image {
    right: 0;
    top: 240px;
    width: 300px;
  }
}

.occmed_list_section ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.occmed_list_section ul li {
  padding: 0 2.5rem;
  width: 50%;
}

@media (max-width: 768px) {
  .occmed_list_section ul li {
    width: 100%;
  }
}

.occmed_list_section .horizontal-divider-light {
  margin: 3rem auto;
  height: 1px;
}

.occmed_list_section .icon {
  padding-right: 2rem;
}

.occmed_icon_text_block {
  display: flex;
}

a:focus .occmed_icon_text_block  {
  outline-style: solid;
  outline-color: #E4002B;
  outline-width: 1px;
  outline-offset: 2px;
}

.occmed_icon_text_block .occmed-list-image {
  vertical-align: super;
  padding-right: 1rem;
}

.occmed_icon_text_block .occmed-list-image img {
  width: 65px;
}

.occmed_icon_text_block .occmed_icon_text_block--description {
  min-height: 80px;
}

.occmed-icon-text-block-vertical {
  display: flex;
  margin: 40px 0;
  align-items: center;
}

.occmed-icon-text-block-vertical h4 {
  color: #E4002B;
}

.occmed-icon-text-block-vertical .occmed-icon {
  display: inline-block;
  width: 100px;
}

.occmed-services:nth-of-type(2) {
  border-left: 1px solid gray;
  border-right: 1px solid gray
}

.occmed-icon-text-block-horizontal {
  padding: 0 50px;
}

.occmed-icon-text-block-horizontal .occmed-icon {
  height: 65px;
}

.occmed-icon-text-block-vertical .occmed-text {
  display: inline-block;
}

.occmed-icon-text-block-horizontal .occmed-icon img {
  max-width: 100px;
}

.occmed-icon-text-block-horizontal h4,
.occmed-icon-text-block-horizontal p {
  text-align: left;
}

.occmed-service-detail h2 {
  font-size: 1.7rem;
  margin-top: 1rem;
  color: #E4002B;
}

.occmed-service-detail h3 {
  font-size: 1.5rem;
}

.occmed-service-detail ul {
    list-style-type: disc;
    padding-left: 40px;
}

.occmed-service-detail p,
.occmed-service-detail li {
    font-size: 1.2rem;
    line-height: 2rem;
}

.occmed_list_section.section-padding {
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .occmed_list_section.section-padding {
      padding-bottom: 1rem;
  }

  #citymd-contact-form input {
    font-size: 16px;
  }
}

/* #endregion */



/* ===========================
5 Location Pages
============================*/

/* #region Location Pages */

a.region-name {
  font-size: 1.1em;
}

.dow {
  font-family: "HelveticaNeueHeavySentence", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  color: #27251F;
  display: inline-block;
  width: 30px;
}

.location-full {
  min-height: 450px;
  text-align: center;
  padding-top: 40px;
}

.location-full .loc-images {
  margin: auto;
}

.location-full .loc-images img {
  margin: auto;
  display: inline-block;
}
/* 
@media (max-width: 990px) {
  .location-full .loc-images img {
      padding: 30px 0;
  }
} */

@media (max-width: 767px) {
  .location-full {
      min-height: 865px;
  }

  .location-full .loc-images li {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .location-full .loc-images img {
    max-width: 212px;
  }
}

.location-left {
  min-height: 360px;
  padding: 40px 80px 40px 80px;
  text-align: left;
}

@media (max-width: 768px) {
  .location-left {
      padding: 20px 40px 20px 40px;
  }
}

.location-left h6 {
  text-transform: uppercase;
}

.location-left .wait-time h4,
.location-left .wait-time .dot {
  display: inline-block;
}

.location-left .wait-time span {
  font-family: 'HelveticaNeueRegularSentence';
}

@media (max-width: 768px) {
  .location-left .btn {
      margin-top: 10px;
  }
}

.location-right {
  position: relative;
  text-align: center;
}

@media (max-width: 768px) {
  .location-right {
      height: 350px;
  }
}

.location-right .map-overlay {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #63666a;
  padding: 15px 0;
}

.location-right .map-overlay a {
  color: #FFFFFF;
  text-decoration: none;
}

.location-right .map-overlay a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.map-overlay h6 {
  margin-bottom: 0px;
}

.location-carousel.carousel {
  max-width: 800px;
  margin: auto;
}

.location-carousel.carousel .carousel-control .icon-next {
  right: -30px;
}

.location-carousel.carousel .carousel-control .icon-prev {
  left: -30px;
}

@media (max-width: 992px) {
  .location-carousel.carousel .carousel-indicators {
      bottom: -40px;
      left: 50%;
  }
}

@media (max-width: 768px) {
  .location-carousel.carousel .carousel-indicators {
      bottom: -40px;
      left: 50%;
  }
  .location-carousel.carousel img {
      width: 100%;
  }
}

.details-map-holder {
  height: 100vh;
}

@media (max-width: 767px) {
  .details-map-holder {
      display: none;
  }
}

.location-details-panel {
  height: 100vh;
  overflow-y: hidden;
}

.location-details-panel-inner {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media (max-width: 767px) {
  .location-details-panel {
      height: auto;
  }
}

@media (max-width: 768px) {
  .location-details-panel-inner {
      height: unset;
  }
}

.location-details-panel .static-google-maps-container {
    display: none;
}

@media (max-width: 768px) {
    .location-details-panel .static-google-maps-container {
        display: block;
    }

    .location-details-panel .static-google-maps-container img {
        width: 100%;
    }
}

.location-details-panel .location-details {
  padding-left: 0;
  padding-top: 2rem;
}

.location-details-panel .location-details .location-phone-number, 
.location-details-panel .location-details .directions-link {
    border: 1px solid #E4002B;
    border-radius: 4px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    padding: 0 15px;
    display: inline-block;
    margin: 0.5rem auto 0.5em auto;
}

.location-details-panel .location-details .wait-time {
  margin-bottom: 1rem;
}

.location-details-panel .location-details .wait-time span {
  padding: 0 3px;
}

.location-details-panel .location-details .wait-time h4 {
  margin-bottom: 0;
}

.location-details-panel .help_section {
  padding: 1rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .location-details-panel .help_section {
      text-align: left;
  }
}

.location-details-panel .help_section.no-background-image {
  background-color: #FFFFFF;
}

.location-details-panel .help_section .circle {
  width: 10rem;
  height: 10rem;
}

.location-details-panel .help_section .circle-content {
  top: 15%;
}

.location-details-panel .help_section .circle-content h4 {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .location-filter-btn {
      z-index: 100000;
  }
}

.location-details-panel h6 {
  margin-bottom: 0;
}

.location-details-panel .location-image {
  padding-left: 2rem;
  padding-top: 2rem;
  padding-right: 10rem;
}

@media (max-width: 768px) {
  .location-details-panel .location-image {
      padding-right: 2.5rem;
  }
}

.location-details-panel .row {
  margin-left: 0px;
}

.location-details-row {
  height: 100vh;
  overflow-y: hidden;
}

@media (max-width: 767px) {
  .location-details-row {
      height: auto;
      overflow-y: initial;
  }
}

.location-filter-section h1 {
  text-align: center;
}

.location-filter-section .location-filter-state {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  margin: 40px 0 0 0;
}
@media (max-width: 768px) {

}
@media (max-width: 540px) {
  .location-filter-section .location-filter-state {
    margin: 1rem 0 0 0;
  }
}
.location-filter-section .location-filter-state > li,
.location-filter-section .location-filter-state > div {
  color: #27251F;
  font-size: 1.5rem;
  line-height: 3.5rem;
  font-family: "HelveticaNeueHeavySentence", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .location-filter-section .location-filter-state > li,
  .location-filter-section .location-filter-state > div {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 540px) {
  .location-filter-section .location-filter-state > li,
  .location-filter-section .location-filter-state > div {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.location-filter-section .location-filter-state > li:hover,
.location-filter-section .location-filter-state > div:hover {
  color: #E4002B;
}

.location-filter-section .location-filter {
  width: 100%;
  text-align: center;
}

.location-filter-section .location-filter-btn {
  display: inline-block;
}

.location-filter-section .btn {
  margin: initial;
}

.location-filter-section .dropdown-btn-menu {
  margin: inherit;
}

.location-filter-section .horizontal-divider-light {
  margin: 3rem auto 1.5rem;
}

.location-filter-section .horizontal-divider {
  width: 100%;
  max-width: initial;
  margin: 2rem auto 0;
}

.ucl-search-btn:focus,
.ucl-search-btn:active {
  outline: 2px solid yellow;
}

.location-panel-list-item .location-details h2 {
  text-transform: uppercase;
}

.location-panel-list-item {
  background-color: #F1F1F1;
  border-bottom: 1px solid #BBBCBC;
  padding: 2rem 0;
}

.location-panel-list-item .location-details {
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .location-panel-list-item .location-details {
      padding-top: 0rem;
      padding-left: 1rem;
  }
}

.location-panel-list-item .location-details .wait-time {
  margin-bottom: 1rem;
}

.location-panel-list-item .location-details .wait-time span {
  padding: 0 3px;
}

.location-panel-list-item .location-details .wait-time h4 {
  margin-bottom: 0;
}

.location-panel-list-item .location-details h6 {
  margin-bottom: 0;
}

.location-panel-list-item .coming-soon-overlay {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}

.location-results-panel {
  overflow-y: scroll;
}

.locationmap-holder {
  /**margin-right:-8px;*/
  height: 80vh;
}

.details-map-holder,
.details-map-holder .large-interactive-map {
  height: 100vh;
}

.locationmap-holder .large-interactive-map {
  height: 80vh;
}

.locationmap-holder .location-results-section {
  background-color: #fff;
  height: 80vh;
  overflow-y: scroll;
}

@media (min-width:500px) {
  .locationmap-holder {
      margin-left: 0px;
      margin-right: 0px;
  }
}

@media (max-width: 540px) {
  .locationmap-holder {
      height: auto;
      /**margin-left:0px;
      margin-right:0px; */
  }
  .locationmap-holder .location-results-section {
      padding-top: 1rem;
      /**margin-left:.5rem;*/
  }
  .location-filter-section,
  .locationmap-holder .location-results-section ul {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
  .location-filter-section .horizontal-divider-light {
      display: none;
  }
  .location-filter-section .location-filter {
      margin-top: 1rem;
      text-align: left !important;
  }
  .location-filter-section .horizontal-divider {
      margin-top: 1rem !important;
  }
  .locationmap-holder .large-interactive-map {
      height: 33vh;
  }
  .details-map-holder,
  .details-map-holder .large-interactive-map {
      height: 33vh;
  }
  .locationmap-holder .location-results-section {
      /*height: 67vh;*/
      height: unset;
      overflow-y: initial;
  }
  .locationmap-holder .location-results-section ul {
      height: unset; /*42vh;*/
      overflow-y: scroll;
  }
}

.location-panel {
  min-height: 500px;
}

/* WAIT TIME INDICATORS */

.wait_time_dot {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.wait_time_dot.dark_green {
  background-color: #009344;
}

.wait_time_dot.light_green {
  background-color: #99C147;
}

.wait_time_dot.orange {
  background-color: #F6921E;
}

.wait_time_dot.red {
  background-color: #E4002B;
}

.tst_locationsortdropdown {
  min-width: 13rem;
}

.info_content {
  width: 11rem;
}

.info_content .wait-time-tooltip {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 0 auto;
}

.info_content .infowindow-subheading {
  font-size: 1.05rem;
}

@media (max-width: 540px) {
  .info_content .infowindow-sitename {
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 5px;
  }

  .info_content a {
    text-decoration: underline;
  }
}

.info_content .wait-time-tooltip .waittime {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info_content .wait-time-tooltip .waittime img {
  width: 7rem;
  height: 7rem;
}

.info_content .wait-time-tooltip .waittime.time {
  padding-top: 35%;
}

.info_content .wait-time-tooltip .waittime.time h5,
.info_content .wait-time-tooltip .waittime.time h6 {
  text-align: center;
  color: #000;
  margin-bottom: 0;
  line-height: 1.2em;
}

.determine_location {
  text-align: center;
}

.determine_location .search-input {
  margin: auto;
}

#loading-spinner {
  height: 500px;
}

#loading-spinner .loading-spinner-image {
  padding: 100px 0;
  display: block;
  margin: 0 auto;
}

/* #endregion */



/* ===========================
6 Insurance Page
============================*/

/* #region Insurance Page */

.insurance-section .state-drop-down {
  max-width: 44rem;
}

.insurance-section .state-drop-down .dropdown-btn {
  width: 15rem;
}

/* #endregion */



/* ===========================
7 About Us Page
============================*/

/* #region About Us Page */

.coll-cont {
  position: relative;
  height: 600px;
}

@media (min-width: 769px) and (max-width: 790px) {
  .coll-cont {
      left: -20px;
  }
}

@media (max-width: 768px) {
  .coll-cont {
      height: 400px;
  }
}

@media (max-width: 544px) {
  .coll-cont {
      height: 300px;
  }
}

.collage-container {
  position: absolute;
  width: 100%;
}

.collage-container .hidden-sm-up .small,
.collage-container .hidden-sm-up .collage .coll1,
.collage .collage-container .hidden-sm-up .coll1,
.collage-container .hidden-sm-up .collage .coll5,
.collage .collage-container .hidden-sm-up .coll5,
.collage-container .hidden-sm-up .collage .coll7,
.collage .collage-container .hidden-sm-up .coll7,
.collage-container .hidden-sm-up .collage .coll9,
.collage .collage-container .hidden-sm-up .coll9 {
  width: 293px;
}

.collage {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .collage {
      /*left: -355px;*/
      left: -270px;
      top: -100px;
  }
}

.collage .xsmall,
.collage .coll2,
.collage .coll3,
.collage .coll4,
.collage .coll6,
.collage .coll8,
.collage .coll10,
.collage .coll11 {
  width: 116px;
}

.collage .small,
.collage .coll1,
.collage .coll5,
.collage .coll7,
.collage .coll9 {
  width: 186px;
}

.collage .coll1 {
  position: absolute;
  top: 0;
  left: 30px;
}

.collage .coll2 {
  position: absolute;
  top: 195px;
  left: 101px;
}

.collage .coll3 {
  position: absolute;
  top: 120px;
  left: 225px;
}

.collage .coll4 {
  position: absolute;
  top: 120px;
  left: 351px;
}

.collage .coll5 {
  position: absolute;
  top: 322px;
  left: -95px;
}

.collage .coll6 {
  position: absolute;
  top: 322px;
  left: 101px;
}

.collage .coll7 {
  position: absolute;
  top: 245px;
  left: 225px;
}

.collage .coll8 {
  position: absolute;
  top: 245px;
  left: 420px;
}

.collage .coll9 {
  position: absolute;
  top: 448px;
  left: 101px;
}

.collage .coll10 {
  position: absolute;
  top: 448px;
  left: 296px;
}

.collage .coll11 {
  position: absolute;
  top: 370px;
  left: 420px;
}

.community-text {
  padding: 9rem 5rem 0 7rem;
}

@media (max-width: 768px) {
  .community-text {
      padding: 1rem 2rem;
  }
}

@media (max-width: 544px) {
  .community-text {
      /*padding: 2rem;*/
      padding: 1.5rem 2rem 5rem 2rem;
  }
}

.photo-circle .circle-content {
  top: 11%;
}

.photo-circle .circle-content .image {
  margin: auto;
  max-width: 8rem;
}

@media (max-width: 400px) {
  .photo-circle .circle-content .image {
      max-width: 5rem;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .photo-circle {
      width: 10rem;
      height: 10rem;
  }
  .photo-circle .circle-content .image {
      max-width: 5rem;
  }
}

.mission_statement .horizontal-divider {
  margin: 0 0 2rem 0;
}

.mission_statement a {
  text-decoration: none;
}

.mission_statement p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

@media (max-width: 768px) {
  .physician-profile .about-physician {
      padding-top: 5rem;
  }
}

@media (max-width: 768px) {
  .citymd-cares .about-citymd-cares {
      padding-top: 5rem;
  }
}

.photo-carousel.carousel {
  box-shadow: none;
  margin-bottom: 50px;
}

.photo-carousel.carousel .icon-prev {
  left: 0px;
  margin-left: 0;
}

.photo-carousel.carousel .icon-next {
  right: 0px;
  left: auto;
}

.photo-carousel.carousel .photo-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: no-wrap;
}

@media (max-width: 768px) {
  .photo-carousel.carousel .carousel-control {
      display: inherit;
  }
}

.quadrant-block .centered-text-block h3,
.quadrant-block .centered-text-block p {
  padding-bottom: 1.5rem;
}

.quadrant-block .centered-text-block h3,
.quadrant-block .centered-text-block p,
.quadrant-block .centered-text-block a {
  color: #FFFFFF;
}

.quadrant-block .centered-text-block {
  padding: 20px 0;
}

.letter-section {
  margin-right: 15rem;
}

@media (max-width: 989px) {
  .letter-section {
      margin-right: 2rem;
  }
}

/* #endregion */

/* About Us New Page */

.about-lead h1 {
  margin-bottom: 2rem;
}
.about-lead a.primary-btn {
  background-color: #E4002B;
  height: auto;
  padding: 0 0 0 1rem;
  color: #fff;
}
.about-lead .primary-btn .button-addon {
  background-color: #fff;
  display: inline-block;
  border: 0;
  color: #E4002B;
}
@media (max-width: 768px) {
  .about-lead h1 {
    margin-bottom: 1rem;
  }
    .about-lead.offset-gray {
        padding: 0 0 0 20%;
    }
    .about-lead .white-overlay-on-gray {
        width: 450px;
        margin: 0 0 0 -40%;
    }
}
@media (max-width: 767px) {
    .about-lead.offset-gray {
        padding: 0 0 0 10%;
    }
    .about-lead .white-overlay-on-gray {
        width: 280px;
        margin: 0 0 0 -15%;
    }
    .about-lead .white-overlay-on-gray .text-block {
        padding: 2rem 15px;
    }
}
@media (max-width: 575px) {
    .about-lead.offset-gray {
        padding: 0;
    }
    .about-lead .white-overlay-on-gray {
        width: 220px;
        margin: 0 0 0 -5%;
    }
}

.about-difference {
    background-color: #F1F1F1;
}
.about-difference .icon {
    background-image: url('../images/citymd-about-icons.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 75px;
    height: 75px;
    margin-right: 1rem;
    padding: 0;
}
.about-difference .physicians-icon {
    background-position: 0 0;
}
.about-difference .services-icon {
    background-position: -76px 0;
}
.about-difference .aftercare-icon {
    background-position:  -152px 0;
}
.about-difference .convenience-icon {
    background-position: -228px 0;
}
.about-difference .insurance-icon {
    background-position: -304px 0;
}
.about-difference .container-fluid {
    padding: 0 2rem;
}
.about-difference .difference-container {
    background-color: #fff;
    padding: 3rem 2rem;
    border: 1px solid #F1F1F1;
}
.about-difference .difference-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.about-difference .difference-list .block {
    width: 50%;
    margin-bottom: 3rem;
    padding: 0 2rem 0 1rem;
}
.about-difference .difference-list .block:last-child {
    margin-bottom: 0;
}
.about-difference .service_icon_text_block .icon {
    flex: 0 0 auto;
}
.about-difference .service_icon_text_block p, .about-difference .service_icon_text_block ul li {
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.about-difference .service_icon_text_block ul {
    list-style-type: disc;
    margin-top: 1rem;
    margin-left: 20px;
}
.about-difference .service_icon_text_block ul li {
    margin-bottom: 0.5rem;
}
.about-difference .service_icon_text_block a {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
}
.about-difference .service_icon_text_block a .icon-Link {
    margin-right: 0.5rem;
}
@media (max-width: 991px) {
    .about-difference .icon {
        width: 65px;
        height: 65px;
    }
    .about-difference .services-icon {
        background-position: -66px 0;
    }
    .about-difference .aftercare-icon {
        background-position:  -132px 0;
    }
    .about-difference .convenience-icon {
        background-position: -197px 0;
    }
    .about-difference .insurance-icon {
        background-position: -263px 0;
    }
}
@media (max-width: 768px) {
    .about-difference {
        margin-top: 0;
    }
    .about-difference .icon {
        width: 50px;
        height: 50px;
    }
    .about-difference .services-icon {
        background-position: -51px 0;
    }
    .about-difference .aftercare-icon {
        background-position:  -101px 0;
    }
    .about-difference .convenience-icon {
        background-position: -152px 0;
    }
    .about-difference .insurance-icon {
        background-position: -202px 0;
    }
    .about-difference .container-fluid {
        padding: 0;
    }
    .about-difference .difference-tabs .tab {
        background-color: #F1F1F1;
        border-bottom: 1px solid #000;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }
    .about-difference .difference-tabs .tab:first-child {
        border-top: 1px solid #000;
    }
    .about-difference .tab .header {
        position: relative;
        padding: 1.5rem 2.5rem 1.5rem 1.5rem;
        cursor: pointer;
    }
    .about-difference .tab .header .icon {
        display: inline-block;
        margin-right: 1rem;
        vertical-align: middle;
    }
    .about-difference .tab .header h3 {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }
    .about-difference .tab .header .icon-Link {
        position: absolute;
        top: 50%;
        right: 1.5rem;
        color: #E4002B;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .about-difference .tab .body {
        display: none;
        padding: 0 1.5rem 1.5rem;
    }
    .about-difference .tab .body p, .about-difference .tab .body a {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    .about-difference .tab .body ul {
        list-style-type: disc;
        margin-top: 1rem;
        margin-left: 20px;
    }
    .about-difference .tab .body li {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    .about-difference .tab .body a {
        display: inline-block;
        margin-top: 1rem;
    }
    .about-difference .tab .body a .icon-Link {
        margin-right: 0.5rem;
    }
    .about-difference .difference-tabs .tab.active {
        background-color: #FFF;
    }
    .about-difference .tab.active .header .icon-Link {
        color: #27251F;
    }
}
@media (max-width: 767px) {
  .about-difference {
    padding: 0;
  }
}

.about-images .col-xs-6 {
    padding: 0;
}
.about-images img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}
@media (max-width: 767px) {
    .about-images.hidden-md-up .container-fluid {
        padding: 0;
    }
    #image-carousel {
        box-shadow: none;
    }
    #image-carousel .carousel-indicators {
        position: relative;
        bottom: 0;
        left: 50%;
        margin: 1rem 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.video_module.about-video .row {
    display: flex;
    align-items: center;
}
.video_module.about-video .video-text p {
    font-size: 1.2rem;
    line-height: 1.8rem;
}
@media (max-width: 768px) {
    .video_module.about-video .row {
        display: block;
    }
    .video_module .video-text {
        padding: 2rem 8px 0;
    }
}

.about-testimonials .carousel {
    margin-top: 3rem;
    box-shadow: none;
}

.about-testimonials .carousel-control {
  position: absolute;
}

.about-testimonials .carousel-indicators {
    position: relative;
    bottom: 0;
    left: 50%;
    margin: 2rem 0 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.about-testimonials .carousel-control .icon-prev, .about-testimonials .carousel-control .icon-next {
    top: 20%;
}
.about-testimonials .carousel-inner {
    max-width: 70%;
    margin: 0 auto;
}
.about-testimonials .carousel-inner blockquote {
    margin: 0;
    padding: 2rem 5rem;
}

.about-testimonials span.blockquote-before:before,
.about-testimonials span.blockquote-after:after {
    position: absolute;
    color: #D9D9D9;
    font-size: 5rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

.about-testimonials span.blockquote-before:before {
    content: open-quote;
    top: 0;
    left: 0;
}

.about-testimonials span.blockquote-after:after {
    content: close-quote;
    bottom: -33px;
    right: 0;
}
.about-testimonials .carousel-inner blockquote p {
    font-size: 1.3rem;
    line-height: 2rem;
}
@media (max-width: 991px) {
    .about-testimonials .carousel-inner {
        max-width: 80%;
    }
    .about-testimonials .carousel-inner blockquote {
        padding: 2rem 4rem;
    }
}
@media (max-width: 767px) {
    .about-testimonials .section-padding {
        padding-left: 0;
        padding-right: 0;
    }
    .about-testimonials .carousel {
        margin-top: 0;
    }
    .about-testimonials .carousel-inner {
        max-width: 100%;
        margin: 0;
    }
    .about-testimonials .carousel-inner blockquote {
        padding: 2rem 3rem;
    }
}

/* End About Us New Page */


/* ===========================
8 FAQ Page
============================*/

/* #region FAQ Pages */

.faq-section .dropdown-btn {
  width: 15rem;
}

.question-list a {
  color: #27251F;
  font-size: 1.2rem;
  line-height: 2rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

.question-list a.embedded {
  color: #E4002B;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueBoldSentence", sans-serif;
}

.question-list a.link-btn {
  color: #27251F;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "HelveticaNeueRegularSentence", sans-serif;
}

.question-list a.supplementary.link-btn {
  font-size: .8rem;
}

.question-list a:hover {
  color: #27251F;
  text-decoration: none;
}

.question-list a.link-btn {
  padding-bottom: .5rem;
}

.question-list .icon-Arrow-Chevron-Down {
  color: #E4002B;
  line-height: 2rem;
}

.question-list li {
  border-bottom: 1px solid #F1F1F1;
}

.question-list li p,
.question-list li ul,
.question-list li a.link-btn {
  color: #63666a;
}

.faq-group .horizontal-divider {
  width: 4rem;
  margin-bottom: 1.5rem;
  margin-top: 40px;
}

.question-list .icon-Arrow-Chevron-Down {
  transform: rotate(180deg);
  transition: transform .25s linear;
}

.question-list .collapsed .icon-Arrow-Chevron-Down {
  transform: rotate(0deg);
}
/* #endregion */



/* ===========================
9 Know Before You Go Pages
============================*/

/* #region Know Before You Go Pages */

@media (max-width: 768px) {
  .know-before-content {
      padding-top: 2rem;
  }
}

.know-before-image {
  padding: 0 1rem;
}

/* #endregion */



/* ===========================
10 Bill Pay Page
============================*/

/* #region Bill Pay Page */

.pay-my-bill-cont iframe #topsection {
  display: none !important;
}

/* #endregion */



/* ===========================
11 Physician Bio Page
============================*/

/* #region physician bio */

.about-physician p {
  margin: 1rem auto;
}

/* #endregion */



/* ===========================
12 News Page
============================*/

/* #region news */

.news-page p {
  margin-bottom: 1rem;
}

.news-page h2 {
  text-transform: uppercase;
}

/* #endregion */


/* ===========================
13 Virtual Care Pages
============================*/

/* #region OccMed Pages */

.virtual-care-overlay {
    background-color: #E4002B;
    padding: 0 9% 0 0;
}

    .virtual-care-overlay-content {
        width: 1030px;
        margin: 0 auto;
        position: relative;
    }

        .virtual-care-overlay-content img {
            width: 100%;
            height: 395px;
        }

    .virtual-care-overlay-text-block {
        padding: 4rem;
        color: white;
        position: absolute;
        top: 25%;
        right: -24%;
        background-color: #626569;
        width: 460px;
    }

        .virtual-care-overlay-text-block h1 {
            color: white;
            text-transform: unset;
        }

        .virtual-care-overlay-text-block p {
            color: white;
            font-size: 1.5rem;
        }

    @media (max-width: 992px) {
        .virtual-care-overlay-text-block {
            padding: 2rem;
        }
    }

    @media (max-width: 768px) {
        .virtual-care-overlay {
            padding: 0;
        }

        .virtual-care-overlay-content {
            width: 100%;
            padding: 20px 0;
        }

        .virtual-care-overlay-content img {
            display: block;
            height: auto;
            width: 85%;
            margin: 0 auto;
        }

        .virtual-care-overlay-text-block {
            padding: 2rem 15px;
            position: static;
            width: 85%;
            margin: 0 auto;
        }
    }

    .virtual-care-introduction-heading,
    .virtual-care-introduction-heading > p {
        font-size: 1.55rem;
        line-height: 2.5rem;
        font-family: "HelveticaNeueBlack-extended", sans-serif;
        text-transform: uppercase;
    }

    .virtual-care-access-instructions {
        background-color: #F1F1F1;
        padding-left: 2rem;
        padding-right: 2rem;
    }

        .virtual-care-access-instructions .row {
            max-width: 1164px;
            margin: auto;
        }

        .virtual-care-access-instructions .computer-instructions {
            border-right: 2px solid gray;
        }

    @media (max-width: 768px) {
        .virtual-care-access-instructions .computer-instructions {
            border: 0;
        }
    }

    .virtual-care-access-instructions .mobile-instructions {
        padding-left: 50px;
    }

    @media (max-width: 768px) {
        .virtual-care-access-instructions .mobile-instructions {
            margin-top: 50px;
            padding-left: 0;
        }
    }

    .computer-instructions-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .computer-instructions-content-image-container {
        max-width: 360px;
        margin: 0 auto 15px auto;
    }

        .computer-instructions-content-image-container img {
            width: 100%;
        }

    .mobile-instructions-content {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .mobile-instructions-content-image-container {
        margin-right: 15px;
    }

        .mobile-instructions-content-image-container img {
            width: 100%;
        }

    .mobile-instructions-content-copy-container {
        width: 300px;
    }

    .mobile-instructions-badge-container {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    @media (max-width: 768px) {
        .mobile-instructions-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mobile-instructions-content-image-container {
            margin-right: 0;
        }

        .mobile-instructions-content-copy-container {
            width: auto;
        }

        .mobile-instructions-badge-container {
            margin-top: 25px auto 0 auto;
            text-align: center;
            width: 275px;
        }
    }

    .virtual-care-access-instructions .virtual-care-app-store-badge {
        width: 124px;
    }

    .virtual-care-access-instructions .virtual-care-play-store-badge {
        width: 160px;
    }

    .virtual-care-symptom-list {
        list-style-type: disc;
        list-style-position: inside;
        columns: 3;
    }

    @media (max-width: 768px) {
        .virtual-care-symptom-list {
            columns: 1;
        }
    }

    .virtual-care-faq {
        padding-left: 14px;
        list-style-type: decimal;
        font-weight: bolder;
    }

        .virtual-care-faq li {
            margin: 20px 0;
        }

    .virtual-care-faq-question {
    }

    .virtual-care-faq-answer {
        font-weight: normal;
        margin-left: -14px;
    }

    @media (max-width: 768px) {
        .virtual-care-faq-answer {
            margin-left: 0;
        }
    }

    .virtual-care-faq-answer p {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    /* #endregion */