/*
Theme Name: Dr. Susie Ang
Theme URI: http://www.rosemontdev.com/drsusieang
Description: A custom theme built by the team at Rosemont Media.
Author: Rosemont Media
Version: 1.0
Tags: Responsive
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600);
@import url(https://fonts.googleapis.com/css?family=Alex+Brush);
/*
 * HTML5 Boilerplate
 *
 * 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.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */
/*
   =============================================================================
   Box sizing rest for all elements
   ==========================================================================

*/
* {
  -moz-box-sizing: border-box;
  /* Firefox 1, probably can drop this */
  -webkit-box-sizing: border-box;
  /* Safari 3-4, also probably droppable */
  box-sizing: border-box;
  /* Everything else */
}

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #4c3f18;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #4c3f18;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
   Links - EDIT
   ========================================================================== */
a {
  color: #4c3f18;
}

a:hover {
  text-decoration: none;
}

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

address {
  font-style: normal;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0;
}

dd {
  margin: 0 0 0 40px;
}

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

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/*
 * Correct overflow not hidden in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}

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

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button, input {
  line-height: normal;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

/*
 * Re-set default cursor for disabled elements
 */
button[disabled], input[disabled] {
  cursor: default;
}

/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd;
}

/* Seaforms */

.seaforms {
  overflow: hidden;
}

.seaforms .field-wrap {
    margin: 20px 0;
}

.seaforms span.error {
  display: block;
  font-size: 12px;
  text-align: right;
  width: 100%;
  color: red;
}

.seaforms label, .seaforms input {
    display: block;
}

.seaforms input[type="text"], .seaforms input[type="email"], .seaforms input[type="tel"], .seaforms textarea, .seaforms select {
    background-color: #fff;
    width: 100%;
    height: 35px;
    border: 1px solid #ccc;
    text-indent: 10px;
}

 .seaforms textarea  {
    height: 150px;
}

.submit-btn {
  background-color: #ff403f;
  border: medium none;
  border-radius: 25px;
  color: #ffffff;
  height: 35px;
  width: 150px;
}
.seaforms_confirmation_message {
  font-size: 1em;
  font-weight: bold;
  margin: 50px 0;
}

.seaforms .type-radiobuttons div input,
.seaforms .type-radiobuttons div label {
  display: inline-block;
}

.seaforms .type-radiobuttons div input {
  margin: 0 10px;
}



/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

/* =============================================================================
   WordPress Reset
   ========================================================================== */
div.aligncenter, .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
}

.alignright, .commentlist li .avatar {
  float: right;
}

.wp-caption {
  background: #f3f3f3;
  border: 1px solid #ddd;
  text-align: center;
  padding-top: 4px;
  margin: 10px;
  border-radius: 3px;
}

.wp-caption img, .wp-caption p.wp-caption-text, #commentsDiv p, #commentsDiv h3 {
  margin: 0;
}

.wp-caption img {
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  padding: 0 4px 5px;
}

#commentsDiv {
  clear: both;
  margin: 30px 20px 30px 35px;
  padding-top: 20px;
}

#commentsDiv textarea, #commentsDiv input {
  border: 1px solid #6779c3;
  font-size: 12px;
  color: #6779c3;
  line-height: 25px;
}

#commentsDiv textarea, #commentsDiv input, input#submit {
  height: 25px;
}

#commentsDiv textarea {
  width: 500px;
  height: 150px;
}

input#submit {
  background: #fff;
  line-height: 20px;
  width: 150px;
  color: #042b5e;
}

#comments {
  margin-bottom: 20px !important;
}

#respond {
  margin-top: 20px !important;
}

.commentlist {
  border-bottom: 1px solid #fff;
}

#commentform textarea, #commentform input, .commentlist li {
  font-size: 0.9em;
}

.commentlist li {
  padding: 20px;
  border-top: 1px solid #fff;
}

.commentlist li p {
  margin-top: 10px !important;
}

.commentlist li .avatar {
  border: 1px solid #eee;
  padding: 2px;
  background: #fff;
}

.commentlist cite a, .commentlist cite {
  font-style: normal;
  font-size: 1.1em;
  color: #fff;
}

.commentlist p, .commentmetadata {
  font-weight: normal;
}

.commentlist p {
  line-height: 1.5em;
  text-transform: none;
}

.alt {
  background: #042b5e !important;
}

#commentform p {
  margin-bottom: 10px !important;
}

h3#respond {
  margin-bottom: 20px;
}

/* ==|== primary styles =====================================================
   Author: Rosemont Media
   ====================================================================== */
/* ----------------------------- type selectors ------------------------ */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  background: #ff403f;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #ff403f;
  color: #fff;
  text-shadow: none;
}

html {
  color: #282828;
}

body {
  text-align: center;
  color: #282828;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  background: #E5E1DD;
}

a {
  color: #2076a1;
}

p {
  margin: 15px 0;
}

ul, ol, dl {
  padding-left: 25px;
}

li {
  list-style-position: inside;
}

@media (min-width: 980px) {
  ul.double-list {
  columns: 2;
  }
}

.list-left,
.list-right {
  float: left;
  width: 50%;
}
.list-left li,
.list-right li {
  width: 100%;
}

.list-right:after {
  content: '';
  clear: both;
}

.alt {
  background: #0e1fd4 !important;
  color: #fff;
  padding: 10px 0;
  padding-left: 25px;
}

a sup {
  display: inline-block;
  line-height: normal;
  vertical-align: top;
  position: static;
}

/* Margin should pull from font size - test on first use */
h1, h2, h3, h4, h5, h6 {
  margin: .8em 0px;
  clear: none;
  font-family: 'Times New Roman', serif;
  color: #0e1fd4;
  line-height: 1em;
  font-weight: 400;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 27px;
}

h4, h5, h6 {
  font-size: 24px;
}

audio,
canvas,
video,
img {
  max-width: 100%;
}

/* ------------------------ Classes ------------------------ */
.container-grid {
  width: 980px;
  position: relative;
  margin: 0 auto;
  text-align: left;
}

.container-full {
  width: 100%;
  position: relative;
  text-align: center;
}

.clear {
  clear: both;
}

.header-clear {
  clear: none;
}

.hidden-desktop {
  display: none !important;
}

.visible-desktop {
  display: block !important;
}

div.clear {
  height: .01em;
  overflow: hidden;
}

.back-to-top {
  text-align: right;
  display: block;
  padding-right: 15px;
}

.inline-block {
  display: inline-block;
}

.alignleft {
  float: left;
}

img.alignleft {
  margin: .5em 1em 1em 0px;
}

.alignright {
  float: right;
}

img.alignright {
  margin: .5em 0px 1em 1em;
}

.aligncenter {
  display: block;
  text-align: center;
  margin: 1em auto;
}

/**/
img.size-full:not(.alignleft):not(.alignright) {
  max-width: 95%;
}

.frame {
  border: 4px solid #fff;
}

.no-frame {
  border: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

a.button, form.cform .sendbutton {
  background: #ff403f;
  color: #fff;
  cursor: pointer;
  padding: 1px 25px 1px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 25px;
  border: 1px solid #ff403f;
}

.disclaimer {
  font-size: 11px;
  line-height: 12px;
  font-style: italic;
}

.quote {
  position: relative;
  display: block;
}

.quote, .quote a {
  color: #fff;
}

blockquote, blockquote a {
  font-family: 'Times New Roman', serif;
  position: relative;
  color: #282828;
  border-bottom: 4px solid #ff403f;
  font-style: italic;
  font-size: 24px;
  line-height: 31px;
  width: 100%;
  float: right;
}
blockquote:after, blockquote a:after {
  content: '';
  background-image: url(images/quote.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 97px;
  height: 86px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
blockquote cite, blockquote a cite {
  display: block;
  margin: 25px 0 5px 0;
  font-size: 20px;
  line-height: 13px;
  font-size: 20px;
  font-style: normal;
}
blockquote cite:after, blockquote a cite:after {
  margin-top: 5px;
  margin-left: 15px;
  display: block;
  content: 'Actual Patient';
  font-size: 16px;
  line-height: 16px;
  font-style: italic;
}

blockquote.full-quote {
  max-width: 100%;
  margin: 0;
}

blockquote.narrow-quote {
  max-width: 300px;
  margin: 1em 40px;
}

.case {
  display: block;
  max-width: 450px;
}
.case a {
  display: inline-block;
  max-width: 50%;
}
.case a img {
  width: 100%;
  display: inline-block;
  margin: 0;
  text-align: center;
  padding: 0;
}
.case a img:first-child {
  padding-left: 10px;
  padding-right: 10px;
}

.before, .after {
  width: 50%;
  display: inline-block;
  margin: 0;
  text-align: center;
  font-size: 16px;
}

.accordion-tab.accordi-tab h2 {
  font-size: 22px !important;
  margin: 0;
  border-top: 1px solid #348f42;
  padding: 14px 0;
  cursor: pointer;
  padding-right: 25px;
  position: relative;
}

.accordion-tab.accordi-tab h2:after {
  content: '';
  background-image: url(svg/arrow.svg) !important;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  width: 18px;
  height: 18px;
  display: block;
  right: 15px;
  top: 15px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform .3s ease;
          transition: transform .3s ease;
}

.accordion-tab-block:last-child {
  border-bottom: 1px solid #348f42;
}

.accordion-tab.accordi-tab.tab-open h2:after {
  content: '';
  background-image: url(svg/arrow.svg) !important;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  width: 18px;
  height: 18px;
  display: block;
  right: 15px;
  top: 15px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion-content {
  display: none;
}

.accordion-content p {
  margin-top: 0;
}

.callout {
  color: #282828;
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 38px;
  border-bottom: 4px solid #ff403f;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
  width: 100%;
  max-width: 570px;
}
.callout span {
  font-size: 35px;
  line-height: 38px;
}

.callout:after {
  content: '';
  background-image: url(images/quote.png);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 97px;
  height: 86px;
}

/* ------------------------ header framework ------------------------ */
header {
  position: relative;
  margin-bottom: 55px;
}

.home header {
  margin-bottom: 0;
}

.header-title {
  background: -webkit-gradient(linear, left top, left bottom, from(#3a4fef), to(#1127bd));
  background: -webkit-linear-gradient(#3a4fef, #1127bd);
  background: linear-gradient(#3a4fef, #1127bd);
  min-height: 85px;
  height: auto;
  position: relative;
}

.logo {
  width: 281px;
  height: 68px;
  float: left;
  position: relative;
  top: 10px;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header-contact {
  margin-top: 13px;
  float: right;
}

.col-left {
	float: left;
	width: 48%;
}
.col-right {
	float: right;
	width: 48%;
}

@media screen and (max-width:767px) {
	.col-right, 
	.col-left {
	float: none;
	width: 100%;
}
}
.header-contact a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: right;
  line-height: 1.1em;
}
.header-contact ul {
  margin: 0;
}
.header-contact ul li {
  list-style-type: none;
  text-align: right;
}
.header-contact span {
  display: block;
  color: #ffd959;
  font-family: 'Times New Roman', serif;
  font-size: 20px;
  line-height: 20px;
  text-align: right;
}
.header-contact span a {
  margin-left: 5px;
}

nav {
  background: #fafbfc;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.28);
  min-height: 58px;
  position: relative;
  z-index: 20;
}
nav a {
  color: #282828;
  font-size: 14px;
}

#menu-main {
  height: 60px;
  display: block;
  text-align: center;
}
#menu-main li, #menu-main a {
  display: block;
}
#menu-main > li:after {
  content: '';
  width: 1px;
  height: 60px;
  position: absolute;
  right: -3px;
  top: 0;
  border-right: 1px solid #bec2c5;
}
#menu-main > li:last-child:after {
  right: -12px;
}
#menu-main > li:nth-child(1):before {
  content: '';
  width: 1px;
  height: 60px;
  position: absolute;
  left: -10px;
  top: 0;
  border-right: 1px solid #bec2c5;
}
#menu-main li.menu-item-78:hover ul {
  left: -150px;
}
#menu-main li {
  float: none;
  list-style: none;
  display: inline-block;
  position: relative;
  padding: 0 5px;
}
#menu-main li:hover ul {
  left: 0px;
}
#menu-main li ul {
  position: absolute;
  left: -9999px;
  z-index: 100;
  width: 250px;
  background: #fafbfc;
}
#menu-main li ul li {
  float: none;
  padding: 0;
  width: 100%;
}
#menu-main li ul li:last-child {
  border-bottom: none;
}
#menu-main li ul li a {
  text-align: left;
  line-height: 16px;
  text-decoration: none;
  padding: 10px 14px;
  display: block;
}
#menu-main li ul li a:hover {
  background: #ff403f;
  color: #fff;
  text-decoration: none;
}
#menu-main a {
  display: block;
  text-align: center;
  line-height: 58px;
  text-decoration: none;
}

#menu-main > li:first-child {
  padding: 0 6px 0 0;
}

#menu-main > li:last-child {
  padding: 0 0 0 6px;
}

.inside-header {
  height: 293px;
  width: 100%;
  position: relative;
}

.default-inside-header {
  background: #dde1e4 url(images/inside-header-default.jpg) top center no-repeat;
}

.header-tag-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
}
.header-tag-container .red {
  font-family: 'Alex Brush', cursive;
  font-size: 70px;
  color: #ff403f;
  line-height: 63px;
}
.header-tag-container .blue {
  font-family: 'Times New Roman', serif;
  color: #0e1fd4;
  font-size: 28px;
  line-height: 30px;
  font-weight: 300;
}

/* Inside Header Text Placement */
.default-inside-header .red {
  margin-left: 40px;
}

.cosmetic .header-tag:nth-child(2).blue {
  margin-left: 60px;
  margin-top: -10px;
}

.cosmetic .header-tag:nth-child(3).blue {
  margin-left: 90px;
}

.contact-us .header-tag-container {
  top: 85px;
}

.contact-us .header-tag:nth-child(1).blue {
  margin-left: 10px;
}

.contact-us .header-tag:nth-child(2).red {
  margin-left: 90px;
}

.contact-us .header-tag:nth-child(3).red {
  margin-left: 0;
}

.dentistry .header-tag:nth-child(1).blue {
  margin-left: 50px;
}

.dentistry .header-tag:nth-child(2).red {
  margin-left: 0;
}

.dentistry .header-tag:nth-child(3).blue {
  margin-left: 60px;
}

.dentistry .header-tag-container {
  top: 70px;
}

.dental-care-markham-toronto-on .header-tag:nth-child(1).blue {
  margin-left: 75px;
}

.dental-care-markham-toronto-on .header-tag:nth-child(2).red {
  margin-left: 0;
  margin-top: -10px;
}

.dental-care-markham-toronto-on .header-tag:nth-child(3).blue {
  margin-left: 60px;
  margin-top: -5px;
}

.gallery .header-tag:nth-child(1).red {
  margin-left: 0px;
}

.gallery .header-tag:nth-child(2).blue {
  margin-left: 50px;
  margin-top: -15px;
}

.gallery .header-tag-container {
  top: 120px;
}

.cosmetic-dentist-markham-toronto-on .header-tag:nth-child(1).red {
  margin-left: 0px;
}

.cosmetic-dentist-markham-toronto-on .header-tag:nth-child(2).blue {
  margin-left: 50px;
  margin-top: -10px;
}

.cosmetic-dentist-markham-toronto-on .header-tag-container {
  top: 120px;
}

/* ------------------------ front page ------------------------ */
.front-block-1 {
  background-color: #dde1e4;
  background-position: top center;
  background-repeat: no-repeat;
  height: 615px;
}
.front-block-1 .green-bar,
.front-block-1 .graph {
  display: none;
}

.front-block-2 {
  background-color: #fff;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 738px;
  position: relative;
}
.front-block-2 ol {
  counter-reset: li;
  /* Initiate a counter */
  position: relative;
}
.front-block-2 ol li {
  list-style: none;
  /* Disable the normal item numbering */
  position: relative;
  padding-left: 15px;
}
.front-block-2 ol li:before {
  content: counter(li) " ";
  /* Use the counter as content */
  counter-increment: li;
  /* Increment the counter by 1 */
  display: inline-block;
  position: absolute;
  left: 0px;
  color: #ff403f;
  font-weight: 600;
}
.front-block-2 ul li, .front-block-2 dl li {
  list-style-type: none;
  position: relative;
  padding-left: 15px;
}
.front-block-2 ul li:before, .front-block-2 dl li:before {
  content: '';
  background-color: #ff403f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  margin-right: 115px;
  display: block;
}
.front-block-2 .green-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(56, 142, 69, 0.8);
}
.front-block-2 .graph {
  display: none;
}

.front-block-3 {
  background-color: #fff;
  background-position: top center;
  background-repeat: no-repeat;
  height: 517px;
  position: relative;
}
.front-block-3 .green-bar {
  display: none;
}
.front-block-3 .graph img {
  display: block;
}
.front-block-3 .graph span {
  padding: 5px 0;
  display: block;
  background: #fff;
  width: 420px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.21);
  text-align: center;
}
.front-block-3 .graph a {
  text-align: center;
  display: inline-block;
  width: 22%;
  font-size: 14px;
}
.front-block-3 .content-area {
  margin-top: 75px;
}
.front-block-3 .front-tag-container {
  margin-bottom: -50px;
}
.front-block-3 .front-tag-container .blue {
  font-size: 38px;
}

.front-block-1 .content-area,
.front-block-3 .content-area {
  max-width: 460px;
  margin-left: 0;
}

.front-block-1 .content-area {
  margin-top: 110px;
}
.front-block-1 .content-area .front-tag-container {
  position: relative;
}
.front-block-1 .content-area .front-tag-container .front-tag:nth-child(1) {
  position: relative;
  /*margin-left: 85px;*/
  margin-top: 10px;
}
.front-block-1 .content-area .front-tag-container .front-tag:nth-child(2) {
  position: relative;
  margin-top: -10px;
}
.front-block-1 .content-area .front-tag-container .front-tag:nth-child(3) {
  position: relative;
  margin-left: 175px;
  margin-top: -15px;
}
.front-block-1 .content-area .front-tag-container .front-tag:nth-child(4) {
  position: relative;
  margin-left: 100px;
  margin-top: -10px;
}

.front-block-2 .content-area {
  margin-top: 80px;
  max-width: 525px;
  float: right;
}
.front-block-2 .content-area .front-tag {
  margin-top: 0;
  padding-top: 0;
  font-size: 38px;
}
.front-block-2 .content-area ul {
  padding-left: 35px;
  position: relative;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.front-block-2 .content-area li {
  display: block;
}

.front-tag-container h1 {
	margin: 0;
}

.front-tag-container .red {
  display: inline-block;
  font-family: 'Alex Brush', cursive;
  font-size: 70px;
  color: #ff403f;
  line-height: 63px;
}
.front-tag-container .blue {
  display: inherit;
  font-family: 'Times New Roman', serif;
  color: #0e1fd4;
  font-size: 28px;
  line-height: 30px;
  font-weight: 300;
}

.front-tag.blue > h2 {
  font-size: 38px;
  margin: 0;
}

.bottom-section {
  background: #e9ebed;
  text-align: center;
  padding: 70px 0;
}

.homehtwo {
	font-size: 37px;
	margin-bottom: 0;
}
.bottom-section .bottom-block {
  min-height: 225px;
  margin: 0 auto;
  width: 33.333333333%;
  float: left;
  padding-right: 35px;
  display: block;
  text-align: left;
  position: relative;
}
.bottom-section .bottom-block .button {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  max-width: 155px;
}
.bottom-section .bottom-block:nth-child(3) {
  padding-right: 0;
}
.bottom-section .bottom-block:nth-child(3) img {
  width: 49%;
  max-width: 140px;
  display: inline-block;
  border: 3px solid #fff;
}
.bottom-section .bottom-block:nth-child(3) .before-bna {
  margin-right: 2%;
}

/* ------------------------ content framework ------------------------ */
.content {
  width: calc(100% - (300px + 45px) );
  position: relative;
  float: left;
  margin-right: 45px;
  padding-bottom: 40px;
}
.content h1 {
  margin-top: 0;
}
.content ol {
  counter-reset: li;
  /* Initiate a counter */
  position: relative;
}
.content ol li {
  list-style: none;
  /* Disable the normal item numbering */
  position: relative;
  padding-left: 15px;
}
.content ol li:before {
  content: counter(li) " ";
  /* Use the counter as content */
  counter-increment: li;
  /* Increment the counter by 1 */
  display: inline-block;
  position: absolute;
  left: 0px;
  color: #ff403f;
  font-weight: 600;
}
.content ul li, .content dl li {
  list-style-type: none;
  position: relative;
  padding-left: 15px;
}
.content ul li:before, .content dl li:before {
  content: '';
  background-color: #ff403f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  margin-right: 115px;
  display: block;
}

.block-container {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}

.landing-block {
  display: block;
  float: left;
  margin: 0 auto;
  text-align: center;
}
.landing-block img {
  width: 100%;
  height: auto;
  max-width: 300px;
  padding: 10px;
}
.landing-block a {
  display: block;
  text-decoration: none;
}
.landing-block h3 {
  font-size: 25px;
}

.block-1 {
  width: 100%;
  width: calc(100% / 1);
}

.block-2 {
  width: 50%;
  width: calc(100% / 2);
}

.block-3 {
  width: 33.333333333333333%;
  width: calc(100% / 3);
}

.block-4 {
  width: 25%;
  width: calc(100% / 4);
}

.block-5 {
  width: 20%;
  width: calc(100% / 5);
}

.block-6 {
  width: 16.66666666666667%;
  width: calc(100% / 6);
}

.block-7 {
  width: 14.28571428571429%;
  width: calc(100% / 7);
}

.block-8 {
  width: 12.5%;
  width: calc(100% / 8);
}

.block-9 {
  width: 11.11111111111111%;
  width: calc(100% / 9);
}

.block-10 {
  width: 10%;
  width: calc(100% / 10);
}

.green-bar {
  background: #348f42;
  padding: 31px 0 20px 0;
}
.green-bar .container-grid {
  text-align: center;
}
.green-bar a {
  font-size: 22px;
  line-height: 37px;
  font-family: 'Times New Roman', serif;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
}
.green-bar .button {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 2px 20px 2px 20px;
  display: inline-block;
  line-height: 16px;
  margin: 7px 0 0 10px;
}
.green-bar svg {
  float: left;
  fill: #fff;
  width: 30px;
  height: 30px;
  margin-top: 5px;
}

.green-bar-block {
  display: inline-block;
}
.green-bar-block span {
  line-height: 46px;
  vertical-align: top;
  margin-top: -5px;
  display: inline-block;
}

.green-bar-block:nth-child(1) {
  float: left;
}

.green-bar-block:nth-child(2) {
  margin: 0 auto;
}
.green-bar-block:nth-child(2) svg {
  margin-right: 10px;
}

.green-bar-block:nth-child(3) {
  float: right;
}

/* ------------------------ gallery framework ------------------------ */
.single-case {
  width: 49%;
  margin-right: 2%;
  float: left;
  margin-bottom: 25px;
}
.single-case a {
  text-align: center;
  display: block;
}
.single-case h4 {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.single-case h4 a {
  color: #282828;
  text-decoration: none;
}
.single-case span {
  display: inline-block;
}
.single-case .before-img {
  display: block;
  position: relative;
  margin-right: 15px;
}
.single-case .after-img {
  display: block;
  position: relative;
}
.single-case .bna-tag {
  font-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  float: left;
  margin-top: 10px;
  color: #282828;
  text-align: center;
  text-decoration: none;
}

.single-case:nth-child(even) {
  margin-right: 0;
}

.prev-next-bar {
  position: relative;
  margin-bottom: 20px;
}

.next-button {
  float: right;
  position: relative;
  z-index: 15;
}

.prev-button {
  float: left;
  position: relative;
  z-index: 15;
}

.single-case-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.bna-case-imgset a {
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 305px;
}
.bna-case-imgset .before-img {
  text-align: center;
  float: left;
  width: 49%;
  margin-right: 2%;
}
.bna-case-imgset .after-img {
  text-align: center;
  float: right;
  width: 49%;
  margin-right: 0;
}

.tag {
  margin-top: 15px;
  width: 50%;
  float: left;
  text-align: center;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
}

.patient-details h4 {
  margin-bottom: 0;
}

.details {
  color: #2076a1;
  text-decoration: underline;
  margin-top: 10px;
}

/* ------------------------ blog framework ------------------------ */
.post-content {
  width: 100%;
  display: block;
  margin-bottom: 50px;
}
.post-content h2 {
  margin: 0;
}
.post-content h2 a {
  margin: 0;
  color: #0e1fd4;
  text-decoration: none;
  font-size: 28px;
  font-weight: 400;
}

.single-post-title {
  margin-bottom: 0;
}

.single-post img {
  border: 3px solid #fff;
}

.postDate {
  margin: 0;
  font-family: 'Times New Roman', serif;
  font-style: italic;
  color: #968573;
  font-size: 14px;
  width: 100%;
  border-bottom: 1px solid #c7c4c0;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.blog-button {
  margin: 30px 0 20px 0;
}

.postImg {
  float: left;
  width: 200px;
  height: auto;
  margin-right: 20px;
}

.postImg img {
  width: 200px;
  height: auto;
  border: 3px solid #fff;
}

.postLanding {
  float: right;
  width: 640px;
}
.postLanding p {
  margin-top: 0;
}

.postImg + .postLanding {
  width: 440px;
}

.prev-post {
  float: left;
}

.next-post {
  float: right;
}

.next-buttons-bar {
  padding: 25px 0 10px 0;
}

/* ------------------------ cforms framework ------------------------ */
.cform {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: none;
  border-radius: 0;
  border: none;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.cform ol li {
  padding-left: 0;
}
.cform ol li:before {
  content: '';
}
.cform label {
  font-weight: 400;
  font-size: 14px;
  color: #282828;
  text-align: left;
  width: 100%;
  margin: 0 0 2px 0;
  display: block;
}
.cform input,
.cform textarea,
.cform select {
  width: 100%;
  text-shadow: none;
  background: #fff;
}
.cform span.reqtxt, .cform span.emailreqtxt {
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  right: 2px;
}
.cform input.sendbutton {
  margin: 15px 0 20px 0;
  font-size: 14px;
  padding: 4px 45px;
}

#cforms_captcha {
  height: 35px;
  width: 120px;
}

.cform.contact {
  max-width: 500px;
}

p.cf-sb {
  text-align: left;
}

p.linklove {
  display: none;
}

/* ------------------------ aside framework ------------------------ */
.aside {
  position: relative;
  width: 300px;
  float: left;
}

.aside-block {
  padding-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
  max-width: 300px;
}
.aside-block h2 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  line-height: 47px;
  font-size: 22px;
  background: #0e1fd4;
  color: #fff;
  padding: 0 20px;
  margin: 0;
}
.aside-block ul {
  padding: 10px 20px 20px 30px;
}
.aside-block ul li {
  border-bottom: 1px solid #E5E5E5;
  line-height: 30px;
  color: #2076a1;
  list-style-type: none;
}
.aside-block ul li a {
  color: #2076a1;
  line-height: 30px;
  text-decoration: none;
  padding: 0;
  -webkit-transition: padding .2s linear;
          transition: padding .2s linear;
}
.aside-block ul li a:hover {
  padding: 0 0 0 10px;
}
.aside-block ul li:last-child {
  border-bottom: none;
}

.through-ages {
  font-size: 0;
}
.through-ages h2 {
  padding-top: 20px;
  font-size: 28px;
  line-height: 32px;
  color: #0e1fd4;
  background: url(images/through-ages-bg.png) top center no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  min-height: 210px;
}
.through-ages .years {
  width: 120px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}
.through-ages .kids,
.through-ages .twenties,
.through-ages .forties,
.through-ages .sixties {
  border-bottom: 1px solid #E5E5E5;
  -webkit-transition: background .3s linear;
          transition: background .3s linear;
}
.through-ages .kids,
.through-ages .forties {
  margin-left: 30px;
  border-right: 1px solid #E5E5E5;
}
.through-ages .forties {
  clear: right;
}
.through-ages .button {
  margin: 15px 0 0 30px;
  font-size: 14px;
}

.sidebar-contact {
  background: url(images/sidebar-contact-bg.png) center center no-repeat;
  border-radius: 10px;
  min-height: 184px;
  -webkit-background-size: cover;
          background-size: cover;
}
.sidebar-contact h2 {
  padding: 55px 0 0 30px;
  color: #0e1fd4;
  background: none;
  font-size: 22px;
  line-height: 23px;
  font-weight: 300;
}
.sidebar-contact .phone {
  padding: 0 0 0 30px;
  font-family: 'Times New Roman', serif;
  font-size: 24px;
  line-height: 23px;
  color: #0e1fd4;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.sidebar-contact .button {
  margin-left: 20px;
}

/* ------------------------footer framework ------------------------ */
footer {
  margin: 0 auto;
  clear: both;
  padding: 0;
}

.lower-footer {
  background: #0e20dc url(images/footer-gradient.jpg) top left repeat-x;
  -webkit-background-size: 1px 272px;
          background-size: 1px 272px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 40px;
}
.lower-footer a {
  color: #fff;
  text-decoration: none;
}
.lower-footer .copy,
.lower-footer .footer-title,
.lower-footer .footer-privacy {
  border-right: 1px solid #fff;
  padding: 0 10px;
}
.lower-footer .rm-footer {
  padding-left: 10px;
}

.footer-logos img {
  padding: 0 20px;
  display: inline-block;
}

#menu-footer404 li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #fff;
}
#menu-footer404 li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  line-height: 18px;
}
#menu-footer404 .sub-menu {
  display: none;
}
#menu-footer404 li:last-child {
  border-right: none;
}

.rm-sig img {
  vertical-align: bottom;
  display: inline-block;
}

.social-footer {
  margin-top: 30px;
}
.social-footer svg {
  width: 40px;
  height: 40px;
}
.social-footer svg path {
  fill: #fff;
  -webkit-transition: fill .5s ease;
          transition: fill .5s ease;
}
.social-footer svg path:hover {
  fill: #dde1e4;
}

/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
@media only screen and (max-width: 980px) {
  /* Tablet */
  body {
    min-width: 767px;
  }

  .visible-tablet {
    display: block !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .container-grid {
    max-width: 767px;
    width: 100%;
  }

  img.alignleft, img.alignright, img.alignnone {
    max-width: 45%;
    height: auto;
  }

  .aligncenter {
    max-width: 100%;
    height: auto;
  }

  .full-size {
    display: block !important;
    margin: 0 auto 1em auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .logo {
    float: none;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
  }

  iframe {
    width: 100%;
    height: auto;
  }

  .header-title {
    padding: 0 20px;
  }

  .menu-icon {
    display: inline-block;
    top: 10px;
  }
  .menu-icon a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
  }
  .menu-icon a .menu-svg,
  .menu-icon a .menu-text {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }
  .menu-icon a .menu-text {
    margin-top: 5px;
  }
  .menu-icon a svg {
    fill: #fff;
    width: 38px;
    height: 38px;
  }

  .location-icon {
    position: absolute;
    right: 0;
  }

  .contact-icon {
    position: absolute;
    right: 75px;
  }

  .menu-btn {
    position: absolute;
    left: 0;
  }

  /*-----  Pushy Mobile Menu -----*/
  .pushy {
    position: fixed;
    width: 250px;
    height: 100%;
    top: 0;
    z-index: 9999;
    background: #dde1e3;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-box-shadow: inset -5px 0 6px -9px rgba(0, 0, 0, 0.7);
    box-shadow: inset -5px 0 6px -9px rgba(0, 0, 0, 0.7);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /* enables momentum scrolling in iOS overflow elements */
  }
  .pushy a {
    font-size: 14px;
    display: block;
    color: #282828;
    padding: 7px 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    text-align: left;
    -webkit-transition: background .15s linear;
            transition: background .15s linear;
  }
  .pushy a:hover {
    background: #f7fbfd;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .pushy ul {
    padding-left: 0;
    margin: 0;
  }
  .pushy #menu-main {
    display: block;
    position: static;
    overflow: visible;
    left: 0;
    width: 100%;
    z-index: 200;
  }
  .pushy #menu-main a {
    text-align: left;
    line-height: 36px;
  }
  .pushy #menu-main .home-icon {
    width: 100%;
    height: auto;
    text-align: left;
    background: #0E609D;
  }
  .pushy #menu-main .home-icon a {
    text-indent: 0;
  }
  .pushy #menu-main > li:first-child {
    border-top: 1px solid #c6cacb;
  }
  .pushy #menu-main li {
    list-style-type: none;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
  }
  .pushy #menu-main li div .sub-menu {
    background: #f7fbfd;
    position: static;
    width: 100%;
  }
  .pushy #menu-main li div .sub-menu .mobile-parent {
    display: block !important;
  }
  .pushy #menu-main li div .sub-menu .mobile-parent > a {
    text-indent: 15px;
    font-size: 15px;
  }
  .pushy #menu-main li div .sub-menu li a {
    font-size: 14px;
    padding-left: 30px;
    line-height: 18px;
  }
  .pushy #menu-main li div .sub-menu li a:hover {
    color: #282828;
    background: #ccc8c4;
  }
  .pushy #menu-main li div .sub-menu li .ul-depth-0 {
    display: block;
  }
  .pushy #menu-main .menu-item-has-children > a:after {
    content: '';
    background-image: url(svg/arrow.svg) !important;
    -webkit-background-size: cover;
            background-size: cover;
    display: block;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: -webkit-transform .3s ease;
            transition: transform .3s ease;
  }
  .pushy #menu-main .menu-item-has-children > a.menu-open {
    background: #f7fbfd;
  }
  .pushy #menu-main .menu-item-has-children > a.menu-open:after {
    content: '';
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .pushy #menu-main .menu-item-has-children:before {
    content: "";
  }

  .pushy-left {
    -webkit-transform: translate3d(-250px, 0, 0);
            transform: translate3d(-250px, 0, 0);
  }

  .pushy-open {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  /* Menu Transitions */
  .pushy, #container, .push {
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
            transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  }

  /* Site Overlay */
  .site-overlay {
    display: none;
  }

  .pushy-active .site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-animation: fade 500ms;
    -ms-animation: fade 500ms;
    animation: fade 500ms;
  }

  #menu-main > li:last-child:after,
  #menu-main > li:after {
    right: 0;
  }

  /*----- front -----*/
  .front-block-1 {
    background-image: url(images/section-1-tablet-bg.jpg) !important;
    background-color: #dde1e3;
    background-position: top center;
    min-height: 672px;
  }
  .front-block-1 .content-area {
    margin-top: 330px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .front-block-1 .content-area .front-tag-container {
    display: block;
    margin: 0 auto;
    max-width: 430px;
  }

  .front-block-2 {
    background-image: url(images/section-2-tablet-bg.jpg) !important;
    background-position: top center;
    min-height: 851px;
    -webkit-background-size: cover;
            background-size: cover;
  }
  .front-block-2 .content-area {
    margin-top: 410px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .front-block-2 .content-area .front-tag-container {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .front-block-2 .content-area .front-tag {
    text-align: left;
  }

  .front-block-3 {
    background-image: url(images/section-3-tablet-bg.jpg) !important;
    background-position: top center;
    min-height: 741px;
    -webkit-background-size: cover;
            background-size: cover;
  }
  .front-block-3 .content-area {
    margin-top: 380px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .front-block-3 .content-area .front-tag-container {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .front-block-3 .content-area .front-tag {
    text-align: left;
    margin-right: 5px;
    display: inline-block;
  }
  .front-block-3 .content-area .graph img, .front-block-3 .content-area .graph .graph-ages {
    display: block;
    margin: 0 auto;
  }

  .green-bar .container-grid {
    padding: 0 20px;
  }

  .green-bar-block span {
    width: 200px;
    text-align: left;
    line-height: 20px;
    padding-left: 15px;
    padding-top: 6px;
  }

  .bottom-section .container-grid {
    padding: 0 20px;
  }
  .bottom-section .bottom-block {
    display: block;
    float: none;
    width: 100%;
    min-height: 0;
  }
  .bottom-section .bottom-block .button {
    position: relative;
  }
  .bottom-section .bottom-block:nth-child(3) .button {
    margin-top: 15px;
  }

  /*----- content -----*/
  .content-container {
    padding: 0 20px;
  }

  .landing-block {
    width: 50% !important;
  }

  .contact-map,
  img.contact-map.alignright {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    max-width: 355px !important;
  }

  /*----- aside -----*/
  /*----- blog -----*/
  /*----- gallery -----*/
  .single-case span {
    width: 50%;
    vertical-align: top;
  }
  .single-case .before-img {
    margin-right: 2%;
  }
  .single-case .before-img,
  .single-case .after-img {
    display: inline-block;
    width: 98%;
  }

  /*----- footer -----*/
  .upper-footer {
    padding: 31px 20px;
  }
  .upper-footer svg {
    margin-top: 0;
  }
  .upper-footer .button {
    margin: 4px 0 0 10px;
  }

  .upper-footer-block span {
    width: 130px;
    line-height: 22px;
    text-align: left;
    margin-left: 15px;
    top: -3px;
    position: relative;
  }

  .footer-logos img {
    padding: 0;
  }

  .menu-footer404-container {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* Phone */
  body {
    min-width: 320px;
  }

  .container-grid {
    width: 100%;
  }

  .hidden-phone {
    display: none !important;
  }

  .visible-phone {
    display: block !important;
  }

  img.alignleft, img.alignright, img.alignnone {
    display: block;
    float: none;
    max-width: 100% !important;
    height: auto;
    text-align: center;
    margin-left: 0;
  }

  .wp-caption {
    padding: 5px;
    max-width: 46%;
  }

  .wp-caption.alignright {
    margin-left: 2%;
    max-width: 44%;
  }

  .wp-caption.alignleft {
    margin-right: 2%;
    max-width: 44%;
  }

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

  blockquote.full-quote,
  blockquote.narrow-quote {
    width: 100%;
    max-width: 100%;
    float: none;
    margin: 0;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 21px;
  }

  /* ----- header ----- */
  .header-title {
    min-height: 130px;
  }
  .header-title .container-grid {
    text-align: center;
  }

  .logo {
    margin-top: 5px;
    border-bottom: 1px solid #92806c;
    top: 0;
  }

  .menu-btn,
  .contact-icon,
  .location-icon {
    position: relative;
    display: inline-block !important;
    right: 0;
    left: 0;
    top: 78px;
    width: 90px;
  }

  .menu-icon a {
    font-size: 11px;
  }
  .menu-icon a .menu-text {
    margin-top: -2px;
  }
  .menu-icon a svg {
    width: 30px;
    height: 30px;
  }

  /*----- front -----*/
  .front-block-1 {
    background-image: url(images/section-1-phone-bg.jpg) !important;
    min-height: 625px;
  }
  .front-block-1 .content-area {
    text-align: center;
    margin-top: 253px;
  }
  .front-block-1 .content-area .text-block {
    text-align: left;
  }
  .front-block-1 .content-area .front-tag-container {
    max-width: 275px;
    text-align: left;
    min-height: 115px;
  }
  .front-block-1 .content-area .front-tag-container .blue {
    font-size: 22px;
    line-height: 23px;
  }
  .front-block-1 .content-area .front-tag-container .red {
    font-size: 45px;
    line-height: 50px;
  }
  .front-block-1 .content-area .front-tag-container .front-tag {
    margin: 0 !important;
  }
  .front-block-1 .content-area .front-tag-container .front-tag:nth-child(1) {
    /*position: absolute;
    left: 40px;
    top: 0;*/
  }
.front-block-1 .content-area .front-tag-container .front-tag:nth-child(2) {
  left: 37px;
  position: absolute;
  top: 84px;
}

   .front-block-1 .content-area .front-tag-container .front-tag:nth-child(3) {
	position: absolute;
	left: 137px;
	top: 75px;
}
  .front-block-1 .content-area .front-tag-container .front-tag:nth-child(4) {
    position: absolute;
    left: 70px;
    top: 70px;
  }
  .front-block-1 .content-area .button {
    display: inline-block;
  }

  .front-block-2 {
    background-image: url(images/section-2-phone-bg.jpg) !important;
    background-color: #ece7e4;
    background-position: top center;
    min-height: 1275px;
    -webkit-background-size: 767px 767px;
            background-size: 767px;
  }
  .front-block-2 .content-area {
    margin-top: 360px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .front-block-2 .content-area .front-tag-container {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .front-block-2 .content-area .front-tag {
    text-align: left;
    font-size: 28px;
  }
  .front-block-2 .content-area .front-list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }

  .front-block-3 {
    background-image: url(images/section-3-phone-bg.jpg) !important;
    background-color: #b6c4d1;
    background-position: top center;
    min-height: 725px;
    -webkit-background-size: 453px 453px;
            background-size: 453px;
  }
  .front-block-3 .content-area {
    margin-top: 220px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .front-block-3 .content-area .front-tag-container {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .front-block-3 .content-area .front-tag {
    text-align: left;
    margin-right: 5px;
    display: block;
    font-size: 28px;
  }
  .front-block-3 .content-area .graph {
    margin-top: -25px;
  }
  .front-block-3 .content-area .graph img, .front-block-3 .content-area .graph .graph-ages {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .front-block-3 .content-area .graph a {
    width: 23%;
    font-size: 10px;
  }

  .green-bar .container-grid {
    padding: 0 20px;
    max-width: 320px;
  }

  .green-bar-block {
    float: left !important;
    margin-bottom: 20px;
    display: block;
    width: 100%;
  }
  .green-bar-block span {
    width: 240px;
    float: left;
    font-size: 20px;
    text-align: left;
    line-height: 20px;
    padding-left: 7px;
    padding-top: 13px;
  }

  .green-bar-block:nth-child(2) {
    margin: 0 0 15px 0;
    text-align: left;
  }

  .green-bar-block:nth-child(2) svg {
    margin-left: 5px;
  }

  .bottom-section {
    padding: 50px 0 70px 0;
  }
  .bottom-section .container-grid {
    padding: 0 20px;
  }
  .bottom-section .bottom-block {
    display: block;
    float: none;
    width: 100%;
    min-height: 0;
  }
  .bottom-section .bottom-block .button {
    position: relative;
  }
  .bottom-section .bottom-block:nth-child(3) .button {
    margin-top: 15px;
  }

  /*----- content -----*/
  .content {
    width: 100%;
    float: none;
    display: block;
  }

  .landing-block {
    width: 100% !important;
    float: none;
    display: block;
    margin: 0 auto;
  }

  /*----- blog -----*/
  .postImg {
    display: block;
    width: 100%;
    margin: 0 auto 15px auto;
    text-align: center;
    float: none;
  }

  .postText {
    float: none;
    display: block;
    width: 100%;
  }

  /* ----- gallery ----- */
  .prev-next-bar {
    min-height: 60px;
  }
  .prev-next-bar .prev-button,
  .prev-next-bar .next-button {
    width: 100px;
  }
  .prev-next-bar .prev-button a,
  .prev-next-bar .next-button a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 2px 0;
  }
  .prev-next-bar .single-case-title {
    bottom: -5px;
  }

  /*----- aside -----*/
  .aside {
    width: 100%;
    float: none;
    display: block;
  }

  .aside-block {
    margin: 0 auto 20px auto;
  }

  /*----- footer -----*/
  .upper-footer .button {
    margin: 14px 0 0 10px;
    padding: 4px 25px 4px 25px;
  }

  .upper-footer-block {
    width: 100%;
    display: block;
    max-width: 300px;
    text-align: left;
    float: none !important;
    margin: 0 auto;
  }
  .upper-footer-block svg {
    float: none;
    margin-top: 9px;
  }
  .upper-footer-block span {
    width: 225px;
    margin-top: 0;
    top: 0;
    line-height: 50px;
    margin-left: 5px;
  }

  .upper-footer-block:nth-child(2) span {
    width: auto;
  }

  .upper-footer-block:nth-child(3) span {
    font-size: 20px;
    width: auto;
    display: inline-block !important;
  }

  .lower-footer {
    background: #0e20dc url(images/mobile-footer-gradient.jpg) top left repeat-x;
    -webkit-background-size: 1px 291px;
            background-size: 1px 291px;
  }

  .rm-sig {
    padding: 0 20px;
  }
  .rm-sig span, .rm-sig a {
    line-height: 30px;
    border-right: none !important;
  }
  .rm-sig .copy {
    display: block;
  }
  .rm-sig .footer-title {
    border-right: 1px solid white !important;
  }
}
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }

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

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

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

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

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