@charset "UTF-8";

header,
nav,
footer,
section,
aside {
  display: block;
  position: relative;
}

body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44em;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5em;
  }
}

a#m-logo {
  display: block;
  width: 100%;
  max-width: 265px;
  outline: 0;
  border: 0;
  margin: 5px;
  text-decoration: none;
  position: relative;
  float: left;
}

a#m-logo:hover {
  opacity: 0.9;
}

@media screen and (max-width: 992px) {
  a#m-logo {
    max-width: 245px;
    margin: 7px 5px 5px;
  }
}
@media screen and (max-width: 575px) {
  a#m-logo {
    max-width: 200px;
    margin: 5px 0;
  }
}

a#mobile-phone,
a#mobile-phone:visited {
  background-color: #014f6e;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
  outline: 0;
  border: 0;
  box-shadow: 0 0 5px #000;
  padding: 10px 15px;
  border-radius: 25px;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 99999;
}
a#mobile-phone:hover {
  background-color: #1f3644;
  color: #fff;
  text-decoration: none;
  outline: 0;
  border: 0;
}

#headphone {
  font-size: 14px;
  margin: 0 10px;
}
#headphone a,
#headphone a:visited {
  font-family: "DM Serif Text", serif;
  color: #1f3644;
  font-weight: bold;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
  outline: 0;
  border: 0;
}
#headphone a:hover {
  color: #666666;
  text-decoration: none;
  outline: 0;
  border: 0;
}

#headhours {
  font-size: 14px;
  font-weight: 500;
  float: right;
}

#alert {
  display: block;
  background-color: #cc0033;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 8px 20px;
  outline: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all 1s;
}
#alert:hover {
  background-color: #9b0229;
}

#mobile-nav {
  color: #1f3644;
  font-size: 25px;
  cursor: pointer;
}
#mobile-nav:hover {
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  #mobile-nav {
    margin-top: 15px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1.1em;
}

h1,
.h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1;
  margin: 15px 0 20px;
}
@media screen and (max-width: 992px) {
  h1,
  .h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}

h2,
.h2 {
  color: #1f3644;
  font-size: 36px;
  font-weight: bold;
  margin: 15px 0;
}
@media screen and (max-width: 992px) {
  h2,
  .h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}

h3,
.h3 {
  color: #1f3644;
  font-size: 28px;
  margin: 15px 0;
}
@media screen and (max-width: 992px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}

h4,
.h4 {
  color: #1f3644;
  font-size: 24px;
  margin: 15px 0;
}

h5,
.h5 {
  color: #1f3644;
}

h6 {
  font-size: 26px;
}

p strong,
li strong {
  font-weight: bold;
}

a.link,
a.link:visited {
  color: #617d8d;
  text-decoration: none;
  outline: 0;
  border: 0;
  transition: all 0.25s;
}
a.link:hover {
  color: #1f3644;
  text-decoration: underline;
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray {
  background-color: #f4f3f3;
}

nav {
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  padding: 0 13px;
  position: relative;
}

nav ul li a,
nav ul li a:visited {
  display: inline-block;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  outline: 0;
  border: 0;
  padding: 5px 0 10px;
  transition: color 0.5s;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 1);
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding: 5px;
}
nav ul li:hover ul {
  display: block;
}
nav ul li ul li {
  display: block;
  padding: 0;
  text-align: left;
  width: 250px;
}
nav ul li ul li a,
nav ul li ul li a:visited {
  display: block;
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3em;
  padding: 9px 12px;
  outline: 0;
  border-bottom: solid 1px #ddd;
}
nav ul li ul li:last-child a {
  border-bottom: 0;
}
nav ul li a:hover,
nav ul li:hover > a {
  color: #1f3644;
  text-decoration: none;
  outline: 0;
}
nav ul li ul li a:hover {
  background-color: #eee;
}

@media screen and (max-width: 992px) {
  nav ul li {
    padding: 0 10px;
  }
  nav ul li a,
  nav ul li a:visited {
    font-size: 14px;
  }
}




#banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#banner:before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-overlay {
  padding: 100px 0;
  position: relative;
}

#banner h1 {
  color: #fff;
  text-transform: none;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  #banner h1 {
    max-width: 80%;
  }
}
#banner h2 {
  font-size: 34px;
  color: #fff;
  font-weight: 300;
  text-transform: none;
}
#banner p {
  font-family: poppins;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3em;
  text-transform: none;
  max-width: 600px;
}

.banner-default {
  background-image: url("../images/banners/banner-white-teeth.jpg");
}
.banner-invisalign {
  background-image: url("../images/banners/banner-invisalign.jpg");
}
.banner-braces {
  background-image: url("../images/banners/banner-braces.jpg");
}

.liner {
  background-color: #1f3644;
  width: 200px;
  height: 1px;
  margin: 30px 20px;
}
.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


#quicklinks p {
  max-width: 300px;
  margin: 10px auto 15px;
}
@media screen and (max-width: 1200px) {
  #quicklinks .container {
    width: 95%;
    max-width: 95%;
  }
}

#content {
  background-image: url("../template/weaver-w-gray.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 400px;
  padding: 40px 0;
  min-height: 465px;
}

aside h5 {
  background: #eee;
  font-size: 24px;
  font-weight: 500;
  padding: 10px;
}

aside {
  padding-top: 30px;
}

aside#sidecol ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

aside#sidecol ul li {
  display: block;
  border-bottom: solid 1px #ccc;
  position: relative;
}

aside#sidecol ul li a,
aside#sidecol ul li a:visited {
  display: block;
  color: #333333;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.2em;
  padding: 10px;
}

aside#sidecol ul li a:hover {
  display: inline-block;
  color: #1f3644;
  font-size: 15px;
  text-decoration: none;
}

#about {
  background-image: url("../template/weaver-w-gray.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 400px;
  border-top: solid 3px #fff;
  border-bottom: solid 3px #fff;
}

img.shad {
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: solid 1px #ddd;
}

.cta-braces {
  background: url("../images/universal/cta-bg-braces.jpg") no-repeat center
    center / cover;
  border-top: solid 3px #fff;
  border-bottom: solid 3px #fff;
}

.cta p {
  font-size: 118%;
}

#meet-the-team {
  text-align: center;
}
#meet-the-team img.shad {
  display: block;
  width: 100%;
  max-width: 325px;
  margin: auto;
  border: solid 1px #999;
  border-radius: 50%;
  text-shadow: 0 0 10px #000;
}

#meet-the-team h2 {
  font-size: 28px;
}
#meet-the-team h2 small {
  display: block;
  color: #11a4dd;
}

#map-image img {
  display: block;
  width: 100%;
}

#map-wrap {
  display: block;
  width: 100%;
  height: 400px;
}

#map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

#invisalign {
  background: url("../images/universal/invisalign.jpg") no-repeat right center /
    cover;
  font-size: 110%;
}
@media screen and (max-width: 1200px) {
  #invisalign .container {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #invisalign {
    background: none;
    background-color: #fff;
  }
}


#child-consult {
  background: url("../images/banners/banner-kids-orthodontics.jpg") no-repeat right center /
    cover;
}
@media screen and (max-width: 767px) {
  #child-consult:before {
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}




.btitle {
    background-color: rgb(0,0,0,.08);
    color: #666666;
    font-weight: 500;
    margin:2px 0; 
    padding: 7px 50px 7px 15px;
    position: relative;
    cursor:pointer;
}
.binfo {
    display:block;
    padding: 10px;
}
.btitle:after {
  content: "+";
  font-size: 140%;
  position: absolute;
  top: 8px;
  right: 25px;
}
.btitle.minus:after {
  content: "-";
  font-size: 140%;
  position: absolute;
  top: 8px;
  right: 25px;
}
.btitle:hover, .btitle.minus {
  background-color: rgb(0,0,0,.1);
}




.faq-links {
	background: #fff;
	margin: 0;
	padding: 0;
	list-style: none;
	border-radius: 5px;
	box-shadow: 0 0 15px #bbb;
  }
  .faq-links li {
	display: block;
    background-color: rgba(0, 0, 0, 0.02);
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding: 10px 50px 10px 20px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.09);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
  }
  @media screen and (max-width: 1200px) {
	.faq-links li {
	  font-size: 17px;
	  padding: 15px 40px 15px 20px;
	}
  }
  
  .faq-links .fa {
	color: #e2ac48;
	font-size: 25px;
	font-weight: bold;
	position: absolute;
	top: 19%;
	right: 20px;
	opacity: 0.3;
  }
  .faq-links li:hover,
  .faq-links li.activate {
	background-color: #1f3644;
	color: #fff;
  }
  .faq-links li:hover .fa,
  .faq-links li.activate .fa {
	opacity: 1;
  }
  .faq-results section {
	display: none;
  }
  .faq-results h3 {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 12px;
  }
  @media screen and (max-width: 992px) {
	.faq-results h3 {
		font-size: 28px;
	  }
  }


  #service-appreciation {
    background: url('../images/universal/american-flag.jpg') no-repeat left top / cover;
    color: #fff;
    border-top: solid 3px #fff;
    border-bottom: solid 3px #fff;
  }
  #service-appreciation h2,
  #service-appreciation p {
    color: #fff;
  }
  #service-appreciation img {
    max-width: 325px;
    margin-bottom: 20px;
  }
  #service-appreciation:before {
    content: '';
    display: block;
    background: rgba(16, 82, 109, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
  }
  #service-appreciation .container {
    position: relative;
    z-index: 999;
  }





ul#insurance-logos {
  margin: 15px 0 20px;
  padding: 0;
  list-style: none;
}

ul#insurance-logos li {
  display: inline-block;
  width: 18%;
  margin: 5px;
  box-shadow: 0 0 5px #bbb;
}

ul#insurance-logos li img {
  display: block;
  margin: auto;
}

ul#insurance-logos li a {
  display: block;
}

ul#insurance-logos li a:hover {
  box-shadow: 0 0 5px #617d8d;
}

@media screen and (max-width: 767px) {
  ul#insurance-logos li {
    width: 30%;
  }
}

#gallery a {
  display: block;
  text-decoration: none;
  outline: 0;
}

.modal-dialog {
  max-width: 800px !important;
}

#blog h1 {
  color: #1f3644;
}
#blog figure {
  display: block;
  width: 100%;
  height: 500px;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
}
#blog figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#blog img#blog-img {
  display: block;
  width: 45%;
  float: right;
  margin: 0px 10px 25px;
}
@media screen and (max-width: 992px) {
  #blog img#blog-img {
    display: block;
    width: 100%;
    float: none;
    margin: 10px auto 25px;
  }
}

.bttn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border: solid 1px #fff;
  min-width: 145px;
  margin: 2px 0;
  padding: 10px 40px 5px;
  border-radius: 35px;
  cursor: pointer;
  transition: all 1s;
}
.bttn-lg {
  font-size: 13px;
  padding: 8px 25px;
}
.bttn-blue {
  background-color: #1f3644;
  color: #fff;
}
.bttn-blue:hover {
  background-color: #162731;
  color: #fff;
  text-decoration: none;
}
.bttn-trans {
  background-color: transparent;
  color: #1f3644;
}
.bttn-trans:hover {
  background-color: #1f3644;
  color: #fff;
  text-decoration: none;
}

footer {
  background-color: #12242e;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
}
@media screen and (max-width: 1200px) {
  footer .container {
    width: 98%;
    max-width: 98%;
  }
}
img#f-logo {
  display: inline-block;
  width: 100%;
  max-width: 200px;
}
footer h6 {
  font-size: 21px;
  margin: 15px 0 20px;
}
footer ul {
  margin: 5px 0;
  padding: 0;
  list-style: none;
}
footer ul li {
  display: block;
  padding: 5px 0;
  line-height: 1.2em;
}
footer a,
footer a:visited {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  outline: 0;
  border: 0;
}
footer a:hover {
  color: #11a4dd;
  font-size: 13px;
  text-decoration: none;
  outline: 0;
  border: 0;
}
img#association-logos {
  max-width: 290px;
  padding: 0 20px;
}

p#terms {
  font-family: helvetica;
  color: #7c7b7b;
  font-size: 11px;
  line-height: 16px;
  margin: 5px 0;
}
p#terms a,
p#terms a:visited {
  color: #7c7b7b;
  text-decoration: none;
  outline: 0;
  border: 0;
}
p#terms a:hover {
  color: #333;
  text-decoration: none;
  outline: 0;
  border: 0;
}

#copyright {
  text-align: center;
  margin-top: 15px;
}
#copyright .container {
  padding: 10px;
  border-top: solid 1px #d2d2d2;
}
#copyright p {
  color: #666666;
  font-size: 11px;
  line-height: 13px;
  margin: 0;
}
#copyright a,
#copyright a:visited {
  color: #666666;
  text-decoration: none;
  outline: 0;
  border: 0;
}
#copyright a:hover {
  color: #666666;
  text-decoration: none;
}

.sidr {
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 300px;
  overflow-x: auto;
  overflow-y: auto;
  font-size: 16px;
  background: #0e1a21;
  color: #8b8989;
}
.sidr ul {
  display: block;
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidr ul li {
  display: block;
  margin: 0;
  line-height: 35px;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.sidr ul li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
}

.sidr ul ul {
  background-color: #0b1419;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidr ul li ul li {
  line-height: 20px;
}

.sidr ul li ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 10px 8px 30px;
}

.sidr ul li a:hover .sidr ul li a.active {
  background-color: #5faec4;
  color: #fff;
  text-decoration: none;
}

.sidr ul li.dropdown > a:after {
  content: "+";
  color: #68b1c6;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 15px;
}

.sidr ul li.closed > a:after {
  content: "-";
  color: #68b1c6;
  position: absolute;
  top: 0;
  right: 15px;
}

#close-btn {
  display: block;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 10px;
  position: absolute;
  top: 3px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
}

/* SEO-only visually-hidden helper: keeps an <h1> on every page without changing the design. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Match the original h2 styling for the renamed page-not-found h1 so the design is unchanged. */
.page-not-found-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin: 15px 0 20px;
}
@media screen and (max-width: 768px) {
  .page-not-found-title { font-size: 26px; }
}

/* Image aspect-ratio safety net (after explicit width/height attributes).
 * Bootstrap's .img-fluid already sets height:auto. We add it for the few
 * images that use .w-100 or are styled by an ID/element selector. */
img.w-100,
img#m-logo, img#f-logo, img#association-logos,
#map-image img,
header img, footer img {
  height: auto;
}
