/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*
* GENERAL
*/

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #666;
  font-weight: 300;
}

a {
  color: #9c27b0;

}

a:hover {
    color: #673ab7;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

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

.btn-container a,
.btn-container a:visited {
  text-decoration: none;
}

#sticky-header a,
#main-header a,
#main-footer .top-footer a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #464646;
}

h1,
.h1 {
  font-size: 36px;
  margin-bottom: 1.5rem;
}

h2,
.h2 {
  font-size: 32px;
  margin-bottom: 1.5rem;
}

h3,
.h3 {
  font-size: 28px;
  margin-bottom: 1.5rem;
}

h4,
.h4 {
  font-size: 24px;
  margin-bottom: 1rem;
}

h5,
.h5 {
  font-size: 20px;
  margin-bottom: 1rem;
}

h6,
.h6 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.btn {
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: 700;
}

.btn,
.btn-style-1 {
  background-color: #9c27b0;
  border-color: #9c27b0;
  color: #fff;
}

.btn:hover,
.btn-style-1:hover {
  background-color: #e178ff;
  border-color: #e178ff;
  color: #fff;
}

.btn-style-2 {
  background-color: #77d28f;
  border-color: #77d28f;
  color: #fff;
}

.btn-style-2:hover {
  background-color: #50b96c;
  border-color: #50b96c;
  color: #fff;
}

ul.contact-list,
ul.socials-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.contact-list li,
ul.socials-list li {
  display: inline-block;
  margin-right: 20px;
}

ul.contact-list li:last-child,
ul.socials-list li:last-child {
  margin-right: 0;
}

ul.socials-list li a {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #9c27b0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  border-radius: 100%;
  line-height: 24px;
}

ul.main-menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul ul.sub-menu {
  position: absolute;
  padding: 0;
  margin: 0;
  left: -16px;
  top: 100%;
  background-color: #fff;
  border-top: 3px solid #eba6fd;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  display: none;
}

ul li:hover > ul.sub-menu {
  display: block;
}

ul ul.sub-menu li {
  display: block;
  margin-right: 0;
}

ul.main-menu-list li.has-children > a:after {
  font-family: "FontAwesome";
  content: "\f0d7";
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

ul ul.sub-menu li > a {
  display: block;
  white-space: nowrap;
  text-align: left;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: none;
}

ul ul.sub-menu li.active > a,
ul ul.sub-menu li > a:hover {
  background-color: #f2f2f2;
}

ul.main-menu-list li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}

ul.main-menu-list li:last-child {
  margin-right: 0;
}

ul.main-menu-list li a {
  text-transform: uppercase;
  color: #888;
  font-size: 14px;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}

ul.main-menu-list li.active a,
ul.main-menu-list li a:hover {
  color: #9c27b0;
}

#title-bar {
  min-height: 50vh;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#title-bar * {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
}

#title-bar > .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#title-bar .page-title-content .page-title {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 48px;
}

#title-bar .page-title-content .page-sub-title {
  font-weight: 300;
  font-size: 30px;
}

#title-bar .page-title-content .btn {
  font-size: 20px;
  padding: 10px 20px;
  text-shadow: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
}

#title-bar .page-title-content .btn-container {
  margin-top: 20px;
}

#page-content {
  padding-top: 60px;
  padding-left: 0;
  padding-right: 0;
}

#page-content .intro-content {
  font-size: 18px;
}

img.float-right {
  float: right;
  padding-left: 10px;
  padding-bottom: 10px;
}

img.float-left {
  float: left;
  padding-right: 10px;
  padding-bottom: 10px;
}

.accordion-button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item {
  border: 0;
  border-top: 1px solid #e2e2e2;
  color: #464646;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #e2e2e2;
}

.accordion-item:last-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #e2e2e2;
}

.accordion-item .accordion-header .accordion-button {
  font-size: 26px;
  color: #464646;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  box-shadow: none;
  width: 100%;
  text-align: left;
  position: relative;
  background-color: transparent;
}

.accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 20px;
}

.accordion-button::after {
  background-image: none;
  font-family: "FontAwesome";
  content: "\f0d7";
  color: #9c27b0;
  line-height: 18px;
  position: absolute;
  right: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

.accordion .card {
  border: 0;
  border-top: 1px solid #e2e2e2;
  padding: 0;
}

.accordion .card:last-child {
  border-bottom: 1px solid #e2e2e2;
}

.accordion .card .card-header {
  background-color: transparent;
  border: 0;
  padding: 0;
  padding-bottom: 15px;
  padding-top: 15px;
}

.accordion .card .card-header .btn {
  font-size: 26px;
  color: #464646;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  box-shadow: none;
  width: 100%;
  text-align: left;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  padding-left: 0;
  padding-right: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.accordion .card .card-header .btn:after {
  background-image: none;
  font-family: "FontAwesome";
  content: "\f0d7";
  color: #9c27b0;
  line-height: 18px;
  position: absolute;
  right: 0;
  top: 10px;
}

.accordion .card .card-header .btn[aria-expanded="true"]:after {
  content: "\f0d8";
}

.accordion .card .card-body {
  padding: 0;
  padding-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  font-size: 14px;
  background-color: #f2f2f2;
  border-color: #ccc;
  border-radius: 3px;
  padding: 10px 14px;
  line-height: 1.286;
}

.border-radius {
  border-radius: 10px;
}

.box-shadow {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
}

ul.check-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.check-list li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

ul.check-list li:last-child {
  margin-bottom: 0;
}

ul.check-list li:before {
  content: "\f00c";
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
}

ul.ul-cols {
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
}

ul.ul-cols li {
  flex: 1 0 1%;
  -ms-flex: 1 0 1%;
  max-width: 100%;
}

ul.ul-cols.ul-cols-2 li {
  max-width: 50%;
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
}

#body-container > .container-fluid > .row > * {
  max-width: 100%;
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
}

.portals-content.portals-content-2 {
  background-color: #f2f2f2;
  padding: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 5px 10px 0px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 10px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 10px 0px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 10px 0px;
  display: flex;
  flex-wrap: wrap;
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.portals-content.portals-content-2 .header-col {
  padding-right: 30px;
}

.portals-content.portals-content-2 .header-col *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.portals-content.portals-content-2 .section-header {
  margin-bottom: 5px;
}

.portals-content.portals-content-2 .btn-col {
  padding-left: 30px;
  border-left: 1px solid #e2e2e2;
}

.portals-content.portals-content-2 .btn-col .btn {
  margin-top: 8px;
}

.divider {
  margin-top: 40px;
}

.faq-accordion-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-accordion-section .section-header {
  margin-bottom: 40px;
}

#faq-accordion {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 15px solid #e2e2e2;
  padding: 30px;
}

#faq-accordion .card .card-header .btn {
  text-transform: none;
  font-weight: 400;
  font-size: 20px;
}

#faq-accordion .card:first-child {
  border-top: 0;
}

#faq-accordion .card:last-child {
  border-bottom: 0;
}

/*
* HEADER
*/

#main-header {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  position: relative;
  z-index: 1;
}

#main-header .top-header {
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}

#main-header .top-header .socials-content {
  text-align: right;
}

#main-header .mid-header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mid-header .main-menu-content {
  text-align: right;
  margin-top: 15px;
}

#sticky-header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  top: -105px;
}

#sticky-header.sticky {
  top: 0;
}

.mid-header .logo-col {
  max-width: 175px;
  flex: 0 0 175px;
  -ms-flex: 0 0 175px;
}

.mid-header .main-menu-col {
  max-width: calc(100% - 175px);
  flex: 0 0 calc(100% - 175px);
  -ms-flex: 0 0 calc(100% - 175px);
}

.mobile-menu-container {
  display: none;
}

.mid-header .main-menu-content .mobile-menu-toggle-container {
  display: none;
}

.mobile-menu-container .mobile-menu-content {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #f2f2f2;
  margin-top: 15px;
}

#main-header .banner-section {
  background-color: #666;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*
* FOOTER
*/

#main-footer .top-footer {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  background-image: url(../img/pg-footer-shadow.png);
  background-position: top center;
  background-size: 50%;
  background-repeat: no-repeat;
  border-top: 1px solid #e2e2e2;
}

#main-footer .footer-col-header {
  font-size: 18px;
  text-transform: none;
}

#main-footer ul.links-list {
  padding: 0;
  padding-left: 10px;
  margin: 0;
  list-style-type: none;
}

#main-footer ul.links-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  display: block;
  font-size: 14px;
}

#main-footer ul.links-list li:last-child {
  margin-bottom: 0;
}

#main-footer ul.links-list li:before {
  content: "\f0da";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  opacity: 0.5;
  font-size: 12px;
  top: 2px;
}

#main-footer ul.contact-list {
  padding-left: 10px;
}

#main-footer ul.contact-list li {
  margin-right: 0;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 25px;
  position: relative;
}

#main-footer ul.contact-list li:last-child {
  margin-bottom: 0;
}

#main-footer ul.contact-list li:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 2px;
  opacity: 0.5;
}

#main-footer ul.contact-list li.address:before {
  content: "\f015";
}

#main-footer ul.contact-list li.phone:before {
  content: "\f879";
}

#main-footer ul.contact-list li.email:before {
  content: "\f0e0";
}

#main-footer ul.contact-list li.schedule:before {
  content: "\f017";
}

.form-content {
  background: #fff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-col {
  padding: 0;
}

.form-col-header {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

/* Form elements */
.form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.form .form-control {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 15px 12px 40px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s;
  height: auto;
}

.form .form-control:focus {
  border-color: #2c3e50;
  outline: 0;
  box-shadow: none;
}

/* Form icons */
.form .form-group:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 15px;
  top: 15px;
  color: #999;
  z-index: 1;
}

.form .form-group.full-name:before {
  content: "\f007";
}
.form .form-group.email:before {
  content: "\f0e0";
}
.form .form-group.phone:before {
  content: "\f095";
}
.form .form-group.form-message:before {
  content: "\f044";
  top: 18px;
}

/* Form message area */
.form .form-message .form-control {
  height: 120px;
  resize: none;
}

/* Form buttons */
.form .btn {
  width: auto;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 10px;
}

/* Form messages and errors */
.form .message {
  margin: 15px 0;
  padding: 12px 15px;
  border-radius: 4px;
  display: none;
  font-size: 14px;
}

.form .message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  display: block;
}

.form .message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
  display: block;
}

/* Form consent text */
.form .consent-text {
  font-size: 12px;

  margin: 20px 0 0;
  line-height: 1.6;
  max-width: 500px;
}

/* Form error messages */
.error-message,
.message.error {
  display: block;
  color: #d32f2f;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
  padding-left: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

.form-control.error {
  border-color: #d32f2f !important;
  background-color: #fff8f8;
}

/* Animation for form elements */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer-specific styles */
#main-footer .form-content {
  background: transparent;
}

#main-footer .form-col {
  max-width: 100%;
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
}

/* Contact section specific styles */
#contact-section .form-col {
  padding: 0 15px;
}

#main-footer .links-col {
  max-width: 23%;
  flex: 0 0 23%;
  -ms-flex: 0 0 23%;
}

#main-footer .contacts-col {
  max-width: 33%;
  flex: 0 0 33%;
  -ms-flex: 0 0 33%;
}

#main-footer .form-col {
  max-width: 44%;
  flex: 0 0 44%;
  -ms-flex: 0 0 44%;
}

.footer-copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f2f2f2;
  font-size: 12px;
  color: #aaa;
}

.footer-copyright .copyright-content > div {
  margin-bottom: 5px;
}

.footer-copyright .copyright-content > div:last-child {
  margin-bottom: 0;
}

.footer-copyright .policy-content {
  text-align: right;
  margin-top: 13px;
}

ul.policy-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

ul.policy-list li {
  display: inline-block;
  line-height: 1;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #e2e2e2;
}

ul.policy-list li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

#main-footer ul.contact-list li a {
  font-size: 14px;
}

.form-container .form .form-control.error {
  border-color: #a00;
}

.form-container .form .form-group span.error {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #a00;
}

.form-container .message .response.text-success {
  border: 1px solid;
  padding: 15px;
}

.form-container .message .response.text-danger {
  border: 1px solid;
  padding: 15px;
}

/*
* HOME
*/

#portals-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

#portals-section .portal-entry {
  background-color: #f2f2f2;
  padding: 30px;
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

#portals-section .portal-entry:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

#portals-section .portal-entry .text-container {
  max-width: calc(100% - 40px);
  flex: 0 0 calc(100% - 40px);
  -ms-flex: 0 0 calc(100% - 40px);
  width: calc(100% - 40px);
  padding-left: 15px;
  font-size: 14px;
}

#portals-section .portal-entry .text-container .portal-title {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 8px;
}

#portals-section .portal-entry .icon-container .icon-link {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  line-height: 36px;
  border: 2px solid;
  font-size: 20px;
}

#home #title-bar {
  background-image: url(../img/pg-home-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#home #title-bar .page-title-content .btn-container {
  margin-top: 35px;
}

#wcu-section {
  background-color: #f2f2f2;
}

#wcu-section .wcu-text-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

#wcu-section .img-content {
  position: relative;
  height: 100%;
  background-image: url(../img/pg-home-img-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#home #title-bar .page-title-content h4 {
  margin-bottom: 0;
}

/*
* BIOTE HORMONE REPLACEMENT
*/

body#biote-hormone-replacement #title-bar {
  background-image: url(../img/biote-hormone-replacement-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#biote-accordion img.biote-accordion-img-1 {
  width: 370px;
}

#biote-accordion img.biote-accordion-img-2 {
  width: 370px;
}

.biote-accordion-section {
  padding-top: 40px;
}

.biote-bottles-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.biote-bottles-section .biote-bottles-content img.biote-bottles {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.biote-bottles-section .biote-bottles-content h3 {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.biote-bottles-section .biote-bottles-content {
  width: 890px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#biote-accordion ul.hormone-imbalance-symptoms-list {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
  width: 500px;
  max-width: 100%;
}

#biote-accordion ul.hormone-imbalance-symptoms-list li {
  padding-left: 15px;
  max-width: 50%;
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  position: relative;
  margin-bottom: 10px;
  font-weight: 700;
}

#biote-accordion ul.hormone-imbalance-symptoms-list li:before {
  content: "\f0da";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  font-size: 14px;
  line-height: 26px;
}

.biote-cta-section {
  background-color: #f2f2f2;
}

.biote-cta-section .cta-text-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.biote-cta-section .cta-text-content h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
}

.biote-cta-section .cta-text-content .btn-container {
  margin-top: 20px;
}

.biote-cta-section .cta-img-content {
  position: relative;
  height: 100%;
  background-image: url(../img/biote-cta-img-1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*
* VAGINAL REJUVENATION
*/

#vaginal-rejuvenation #title-bar {
  background-image: url(../img/vaginal-rejuvenation-title-bar-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#vaginal-rejuvenation .intro-content .divider {
  border-top: 1px dotted #e2e2e2;
  padding-top: 50px;
}

#vaginal-rejuvenation .sub-intro img {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
}

.ideal-candidate-row .ideal-candidate-col {
  margin-bottom: 30px;
}

.ideal-candidate-row .ideal-candidate-col .ideal-candidate-entry {
  padding: 30px;
  background-color: #f2f2f2;
  border: 1px solid #e2e2e2;
  position: relative;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0 10px 10px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 10px 0px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.ideal-candidate-row .ideal-candidate-col .ideal-candidate-entry:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.ideal-candidate-row .ideal-candidate-col .ideal-candidate-entry h4 {
  font-size: 20px;
  position: relative;
  text-transform: none;
  font-weight: 400;
}

.ideal-candidate-row .ideal-candidate-col .ideal-candidate-entry h4:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #9c27b0;
  display: block;
  margin-top: 19px;
}

.ideal-candidate-row .ideal-candidate-col .ideal-candidate-entry p {
  font-size: 16px;
}

#vaginal-rejuvenation .biote-cta-section .cta-img-content {
  background-image: url(../img/vaginal-rejuvenation-img-3.jpg);
}

/*
* SERVICES
*/

#services #title-bar,
#services-inner #title-bar {
  background-image: url(../img/pg-services-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

ul.services-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.services-list a {
  text-decoration: none;
}

ul.services-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

ul.services-list li:last-child {
  margin-bottom: 0;
}

#services-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

ul.services-list li:before {
  content: "\f058";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  color: #77d290;
}

#desc-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

#services-list-section {
  padding-top: 60px;
  background-color: #f2f2f2;
}

#services-inner #services-section {
  padding-bottom: 60px;
  padding-top: 10px;
  background-color: #f2f2f2;
}

#services-inner .img-content img {
  width: 100%;
  margin-bottom: 30px;
}

#services-inner .img-content img:last-child {
  margin-bottom: 0;
}

/*
* TESTIMONIALS
*/

#testimonials #title-bar {
  background-image: url(../img/pg-home-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#testimonials-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.testimonials-content .bx-wrapper {
  border: 0;
  box-shadow: none;
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 0;
}

.testimonials-slider {
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
}

.testimonials-slider .testimonial-entry {
  padding-left: 15px;
  padding-right: 15px;
}

.testimonials-slider .testimonial-entry .testimonial-content {
  position: relative;
  height: 100%;
  padding: 50px;
  background-color: #f2f2f2;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  text-align: center;
}

.testimonials-content .bx-wrapper .bx-viewport {
  padding-bottom: 10px;
  padding-top: 10px;
}

.testimonials-slider .testimonial-entry .testimonial-content .stars-container {
  margin-bottom: 15px;
  color: #ffd000;
}

.testimonials-slider
  .testimonial-entry
  .testimonial-content
  .writeup-container {
  color: #888;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonials-slider .testimonial-entry .testimonial-content .author-container {
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

.testimonials-slider .testimonial-entry .testimonial-content:before {
  content: "\f10d";
  font-family: "FontAwesome";
  position: absolute;
  opacity: 0.1;
  font-size: 90px;
  top: -25px;
  left: 20px;
  font-style: italic;
}

.testimonials-content .bx-wrapper .bx-prev {
  left: -47px;
}

.testimonials-content .bx-wrapper .bx-next {
  right: -47px;
}

/*
* MEDIA
*/

#media #title-bar {
  background-image: url(../img/pg-home-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#featured-videos-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

#featured-videos-section .videos-row {
  margin-top: 30px;
}

.featued-videos {
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.featued-videos .video-entry {
  max-width: 50%;
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.featued-videos .video-entry .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.6825%;
}

.featued-videos .video-entry .video-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
* FORMS
*/

#forms #title-bar {
  background-image: url(../img/pg-home-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#forms-info-section {
  padding-top: 80px;
  border-top: 1px solid #e2e2e2;
  background-image: url(../img/pg-footer-shadow.png);
  background-position: top center;
  background-size: 50%;
  background-repeat: no-repeat;
  padding-bottom: 60px;
}

#forms-info-section .form-info-content {
  padding-right: 50px;
}

#forms-info-section ul.form-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#forms-info-section ul.form-list li {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

#forms-info-section ul.form-list li:last-child {
  margin-bottom: 0;
}

#forms-info-section ul.form-list li:before {
  content: "\f058";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  color: #77d290;
}

#forms-info-section .form-list-content {
  padding: 30px;
  border: 1px solid #e2e2e2;
  background-color: #f2f2f2;
  border-radius: 10px;
}

#insurance-info-section {
  padding-bottom: 60px;
}

#insurance-info-section .insurance-info-content {
  padding-left: 50px;
}

#forms-info-section .row,
#insurance-info-section .row {
  align-items: center;
}

/*
* MEET OUR PROVIDERS
*/

#vid #title-bar {
  background-image: url(../img/pg-home-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#providers-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

#providers-section .provider-details {
  text-align: center;
  background-color: #f2f2f2;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 0 10px;
}

#providers-section .provider-details .provider-img {
  width: 100%;
  display: block;
}

/* Privacy Policy Page Styles */
.privacy-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 15px;
  line-height: 1.8;
  width: 100%;
  box-sizing: border-box;
}

.privacy-content p {
  margin-bottom: 20px;
  color: #555;
}

.last-updated {
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

/* Contact Page Styles */

#privacy-policy #title-bar {
  background-image: url(../img/pg-services-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#privacy-policy h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

#privacy-policy h4 {
  color: #555;
  margin: 25px 0 15px;
  font-size: 18px;
}

#privacy-policy p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Consent Text */
.consent-text {
  font-size: 12px;
  color: #666;
  margin: 15px 0;
  line-height: 1.5;
}

.consent-text p {
  margin-bottom: 0;
}

#providers-section .provider-details .meta-container {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

#providers-section .provider-details .meta-container .name {
  font-weight: bold;
  color: #434343;
  font-size: 18px;
}

#providers-section .provider-details .meta-container .position {
  letter-spacing: 2px;
  font-size: 14px;
  color: #888;
}

#providers-section .provider-details .socials {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
}

#providers-section .provider-details .socials ul.socials-list li {
  margin-right: 5px;
}

#providers-section .provider-details .socials ul.socials-list li:last-child {
  margin-right: 0;
}

#providers-section .text-content {
  padding-left: 20px;
}

#providers-section > .container > .row {
  margin-bottom: 60px;
}

#providers-section > .container > .row:last-child {
  margin-bottom: 0;
}

#vid #featured-videos-section {
  background-color: #f2f2f2;
  padding-top: 90px;
}

/*
* CONTACT
*/

#contact #title-bar {
  background-image: url(../img/pg-home-title-bar-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#contact-section ul.links-list {
  padding: 0;
  padding-left: 10px;
  margin: 0;
  list-style-type: none;
}

#contact-section ul.links-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  display: block;
  font-size: 16px;
}

#contact-section ul.links-list li:last-child {
  margin-bottom: 0;
}

#contact-section ul.links-list li:before {
  content: "\f0da";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  opacity: 0.5;
  font-size: 14px;
  top: 2px;
}

#contact-section ul.contact-list {
  padding-left: 10px;
}

#contact-section ul.contact-list li {
  margin-right: 0;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  padding-left: 25px;
  position: relative;
}

#contact-section ul.contact-list li:last-child {
  margin-bottom: 0;
}

#contact-section ul.contact-list li:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  font-size: 14px;
  top: 2px;
  opacity: 0.5;
}

#contact-section ul.contact-list li.address:before {
  content: "\f015";
}

#contact-section ul.contact-list li.phone:before {
  content: "\f095";
}

#contact-section ul.contact-list li.email:before {
  content: "\f0e0";
}

#contact-section ul.contact-list li.schedule:before {
  content: "\f017";
}

#contact-section .form .form-control {
  padding-left: 35px;
}

#contact-section .form .form-group {
  position: relative;
}

#contact-section .form .form-group:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 14px;
  position: absolute;
  top: 10px;
  left: 15px;
  opacity: 0.5;
}

#contact-section .form .form-group.full-name:before {
  content: "\f007";
}

#contact-section .form .form-group.email:before {
  content: "\f0e0";
}

#contact-section .form .form-group.form-message:before {
  content: "\f044";
}

#contact #main-footer {
  background-color: #f2f2f2;
}

#contact-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

#maps-section,
#maps-section .map-col {
  padding-left: 0;
  padding-right: 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media (min-width: 1200px) {
  ul.main-menu-list li {
    margin-right: 30px;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1199px) {
  ul.main-menu-list li {
    margin-right: 15px;
  }

  #services-section .services-col {
    max-width: 50%;
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
  }

  #services-section .services-col:nth-child(1) {
    margin-bottom: 10px;
  }

  #services-section .services-col:nth-child(4) {
    margin-top: -40px;
  }

  ul.main-menu-list li a {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .mid-header .logo-col {
    max-width: 155px;
    flex: 0 0 155px;
    -ms-flex: 0 0 155px;
  }

  .mid-header .main-menu-col {
    max-width: calc(100% - 155px);
    flex: 0 0 calc(100% - 155px);
    -ms-flex: 0 0 calc(100% - 155px);
  }

  .mid-header .main-menu-content .main-menu {
    display: none;
  }

  .mid-header .main-menu-content .mobile-menu-toggle-container {
    display: block;
  }

  ul.contact-list li a {
    font-size: 12px;
  }

  ul.contact-list li,
  ul.socials-list li {
    margin-right: 10px;
  }

  .mobile-menu-container {
    display: block;
  }

  .mobile-menu-toggle-container .mobile-menu-toggler {
    padding: 7px;
    border: 2px solid;
    border-radius: 5px;
    line-height: 16px;
    font-size: 15px;
    display: block;
    width: 34px;
    text-align: center;
    margin-right: 0;
    margin-left: auto;
  }

  .mid-header .main-menu-content {
    margin-top: 16px;
  }

  ul.socials-list li a {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }

  ul.mobile-main-menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
  }

  ul.mobile-main-menu-list li a {
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  ul.mobile-main-menu-list li.active a {
    background-color: #f2f2f2;
  }

  #main-header .mobile-menu-container {
    position: absolute;
    width: 100%;
    background-color: #fff;
  }

  ul.mobile-main-menu-list li {
    display: block;
  }

  ul.mobile-main-menu-list li.has-children > a:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    margin-left: 10px;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
  }

  .mobile-main-menu ul ul.sub-menu {
    position: relative;
    display: none !important;
    left: auto;
    top: auto;
    box-shadow: none;
    border: 0;
    background-color: #fafafa;
  }

  .mobile-main-menu ul ul.sub-menu li a {
    text-align: center;
  }

  .mobile-main-menu ul li.has-children.shown ul.sub-menu {
    display: block !important;
  }

  ul.mobile-main-menu-list li.has-children.shown > a:after {
    content: "\f0d8";
  }

  #main-footer .links-col {
    max-width: 45%;
    flex: 0 0 45%;
    -ms-flex: 0 0 45%;
  }

  #main-footer .contacts-col {
    max-width: 55%;
    flex: 0 0 55%;
    -ms-flex: 0 0 55%;
  }

  #main-footer .form-col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    margin-top: 30px;
  }

  #main-footer .top-footer {
    background-size: 100%;
  }

  #portals-section .portal-entry {
    display: block;
    text-align: center;
  }

  #portals-section .portal-entry .icon-container .icon-link {
    margin-left: auto;
    margin-right: auto;
  }

  #portals-section .portal-entry .text-container {
    max-width: 100%;
    flex: auto;
    padding-left: 0;
    width: 100%;
  }

  #wcu-section .wcu-text-content {
    text-align: center;
  }

  #title-bar .page-title-content .page-title {
    font-size: 36px;
  }

  #title-bar .page-title-content .page-sub-title {
    font-size: 22px;
  }

  #home #title-bar .page-title-content h4 {
    font-size: 22px;
  }

  #providers-section .provider-details {
    width: 320px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  #providers-section .text-content {
    padding-left: 0;
    text-align: center;
  }

  .featued-videos .video-entry {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }

  h1,
  .h1 {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  h6,
  .h6 {
    font-size: 16px;
  }

  .accordion-item .accordion-header .accordion-button {
    font-size: 22px;
  }

  .biote-cta-section .cta-text-content h3 {
    font-size: 28px;
  }

  #forms-info-section {
    background-size: 100%;
  }

  #contact-section .contacts-col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    margin-bottom: 30px;
  }

  #contact-section .form-col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
  }

  #contact-section ul.contact-list li a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  #main-header .top-header .contact-col {
    max-width: 315px;
    flex: 0 0 315px;
    -ms-flex: 0 0 315px;
  }

  #main-header .top-header .socials-col {
    max-width: calc(100% - 315px);
    flex: 0 0 calc(100% - 315px);
    -ms-flex: 0 0 calc(100% - 315px);
  }

  .footer-copyright .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    text-align: center;
  }

  .footer-copyright .policy-content {
    text-align: center;
    margin-top: 30px;
  }

  ul.policy-list {
    font-size: 12px;
  }

  ul.policy-list li {
    padding-right: 10px;
    margin-right: 10px;
  }

  #portals-section .portal-entry {
    display: flex;
    display: -ms-flex;
    text-align: left;
    width: 380px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #portals-section .portal-entry .text-container {
    max-width: calc(100% - 40px);
    flex: 0 0 calc(100% - 40px);
    -ms-flex: 0 0 calc(100% - 40px);
    width: calc(100% - 40px);
    padding-left: 15px;
  }

  #portals-section .portal-col {
    margin-bottom: 30px;
  }

  #portals-section .portal-col:last-child {
    margin-bottom: 0;
  }

  #title-bar .page-title-content .page-title {
    font-size: 30px;
  }

  #title-bar .page-title-content .page-sub-title {
    font-size: 20px;
  }

  #title-bar .page-title-content .btn {
    font-size: 16px;
  }

  #home #title-bar .page-title-content h4 {
    font-size: 20px;
  }

  #services-section .services-col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    margin-bottom: 10px;
  }

  #services-section .services-col:last-child {
    margin-bottom: 0;
  }

  #services-section .services-col:nth-child(4) {
    margin-top: 0;
  }

  h1,
  .h1 {
    font-size: 28px;
  }

  h2,
  .h2 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }

  h6,
  .h6 {
    font-size: 14px;
  }

  #desc-section .text-content {
    margin-bottom: 30px;
  }

  ul.ul-cols.ul-cols-2 li {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
  }

  #page-content .intro-content {
    font-size: 16px;
  }

  img.float-right,
  img.float-left {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .biote-cta-section .cta-text-content h3 {
    font-size: 24px;
  }

  .biote-cta-section .cta-text-content {
    text-align: center;
  }

  #forms-info-section .form-info-content {
    padding-right: 0;
    text-align: center;
  }

  #insurance-info-section .insurance-info-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .testimonials-content .bx-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonials-content .bx-wrapper .bx-next {
    right: -7px;
  }

  .testimonials-content .bx-wrapper .bx-prev {
    left: -7px;
  }
}

@media (max-width: 479px) {
  #main-footer .links-col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
  }

  #main-footer .contacts-col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    margin-top: 30px;
  }

  .form .row .col {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
  }

  #portals-section .portal-entry {
    padding: 15px;
  }
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
