/*
Theme Name: Starecase Marketing
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starecase-marketing
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Starecase Marketing is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/



/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: rgb(29,52,60);
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link{
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11111%;
}

.gallery-caption {
	display: block;
}


/* ==== THOMPSON DENTAL STYLING ===============
=============================================================*/


/* ==== COLOURS ========

BLUE:       rgb(85,197,206);
LIGHT BLUE: rgb(204,237,240);
MED BLUE:   rgb(54,134,140);
DARK BLUE:  rgb(29,52,60);
LIGHT GREY: rgb(204,204,204);
DARK GREY:  rgb(76,76,76);
BLACK:      rgb(0,0,0);
ORANGE:     rgb(253,186,88);


================================================*/

/* ==== FONTS ========

FONT-FAMILY:    "open-sans"
FONT-FAMILY:    "open-sans-condensed"
================================================*/

/* === TYPOGRAPHY =============*/

h1,h2,h3,h4,h5,h6,body,p {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

h1 {
    font-size: 50px;
    font-weight: 300;
    color: rgb(85,197,206);
    }

h2 {
    font-size: 30px;
    font-weight: 300;
    color: rgb(140,140,140);
    
        }

h3 {
    
    font-size: 22px;
    font-weight: 600;
    font-family: futura-pt-condensed, sans-serif;
    text-transform: uppercase;
    color: rgb(85,197,206);
    border: none;
    
    }

p {
    font-size: 16px;
    color: rgb(140,140,140);
    font-weight: 200;
    line-height: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

a {
    color: rgb(85,197,206);
    text-decoration: none;
    font-weight: 800;
    line-height: 30px;
}

a:hover,  a:active {
    color: rgb(29,52,60);
    text-decoration: none;
    
}



li {
    font-size: 16px;
    line-height: 22px;
    font-weight: 800;
    color: rgb(140,140,140);

    
    
}

.mainBox li {
     list-style-type: disc;
    list-style-position: inside;
    text-indent: -1em;
    padding-bottom: 10px;
}

ul {
    margin-bottom: 0px;
}

blockquote p{
    font-size: 30px!important;
    line-height: 36px!important;
    color: rgb(85,197,206)!important;
    margin:0;
    padding: 0;
}

@media screen and (max-width: 400px) {
    
    h1 {
    font-size: 36px;
    }

h2 {
    font-size: 22px;
    }

h3 {
    font-size: 16px;
    }

p {
    font-size: 16px;
    line-height: 22px;
    padding-left: 0px;
    padding-right: 0;
    }

ul {
   padding-left: 25px;
    } 
        

li {
    font-size: 16px;
     line-height: 18px!important;
    }

li a{
    font-size: 14px;
     line-height: 18px!important;
    }
    
}



@media screen and (max-width: 320px) {

h1 {
    font-size: 30px;
    }
    
p {
    padding-left: 0;
    }
h3 {
    margin-top:10px;
    margin-bottom:3px;
    }
 ul {
   padding-left: 15px;
     padding-top: 10px;

   } 
    

    
}


/* === HAMBURGER ICON =============*/

.navbar-toggle {
    background: rgb(85,197,206);
    margin-top: 0px;
    border: none;
    padding: 12px 10px;
    margin-right: 10px;
    margin-bottom: 4px;
    }


.navbar-toggle.active {
   background: rgb(85,197,206); 
}

.navbar-toggle .icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1px;
}

.hamburgerMenuText {
    position: relative;
    float: right;
    margin-top: 12px;
    background: none; 
    text-align: left; 
    margin-left: 0;
    margin-right: 30px;
    letter-spacing: 1px; 
    font-size: 17px;
    }

.hamburgerMenuText p {
    padding-left: 0;
    font-family: futura-pt-condensed, sans-serif;
    font-size: 24px;
    }

ul .nav {
    padding-left: 20px;
    }

.navbar-toggle .icon-bar {
    background: white!important;
    }

.navbar-toggle .icon-bar:nth-of-type(2) {
    top: 1px;
    }

.navbar-toggle .icon-bar:nth-of-type(3) {
    top: 2px;
    }

.navbar-toggle .icon-bar {
    position: relative;
    transition: all 500ms ease-in-out;
    }

.navbar-toggle.active .icon-bar:nth-of-type(1) {
  top: 6px;
  transform: rotate(45deg);
    }

.navbar-toggle.active .icon-bar:nth-of-type(2) {
    background-color: transparent!important;
    }

.navbar-toggle.active .icon-bar:nth-of-type(3) {
    top: -6px;
    transform: rotate(-45deg);
    }



/* ==== SOCIAL ICONS ===============
=============================================================*/

.social {
    float: right;
    position: relative;
    background: rgb(29,52,60);
    color:white;
    letter-spacing: 2px;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    margin-top: 0px;
    margin-right: 10px;
    padding-left:2px;
    padding-bottom:10px;
    padding-top:0px;
    }

.social a {
    color: white;
    font-size: 20px;
    line-height: 37px!important;
    }

a:hover.social {
    color:white!important;
   }

.social:hover {
    background: rgb(85,197,206)!important;
    }

.mobileTelNo {
    position: absolute;
    z-index: 1250;
    background: rgb(85,197,206);
    color:white;
    letter-spacing: 2px;
    width: 125px;
    height: 38px;
    border-radius: 4px;
    text-align: center;
    margin-top: 0px;
    margin-right: 10px;
    margin-left: -20px;
    padding-bottom:10px;
    padding-top:8px;
    padding-left:5px;
    display:none;
}

@media screen and (min-width: 700px) {
    .social:hover  + .mobileTelNo {
    display: block;
}
}


/* === GLOBAL STYLES =============*/
.admin-bar .navbar{
    top: 46px;
    }


body {
    font-family: open-sans, sans-serif;
    margin-top: 130px;

}


/* === PERMANENT LINKS =============*/

@media screen and (min-width: 701px) {
    #permanentLinks {
        top:100px;
    }
    
    
    .permanentLinksButton.smallScreen {
        display: none;
    }
}
#permanentLinks  {
    
    position: fixed;
    
    height:auto;
    z-index:3000;
    text-align: right;
    padding-left: 5px;
    padding-top: 3px;
    margin-left: auto;
    margin-right: auto;
   width: 100%;
    
    
}

#permanentLinks .container {
    padding-right:57px; 
    
}

.permanentLinksButton {
    display: inline-block;
    border-radius: 3px;
    height: 20px;
    background: rgb(29,52,60);
        width: 151px;
    
}

#permanentLinks p{
    font-family: futura-pt-condensed, sans-serif;
    font-size: 16px;
    margin-top: -1px;
    letter-spacing: 1px;
    color: white;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

    #permanentLinks a:hover p{
       color: rgb(85,197,206)!important; 
    }

.fb-like {
    display: inline-block;
    text-align: center;
    border: none;
    margin-top: 18px;
    margin-right: 10px;
    }



@media screen and (max-width: 700px) {
    
    .largeScreen {
        display: none;
    }
    
    
    #permanentLinks  {
        bottom:10px;
        text-align: center;
      }
    
    .permanentLinksButton {
        width:140px;
        height: 28px;
        border:1px solid white;
        margin-top:5px;
        margin-left:2px;
        margin-right:2px;
        
            }
    
    #permanentLinks .container {
    padding-right:0px; 
    }
    #permanentLinks p {
        margin-top:2px;
    }

}

/* === NAVBAR =============*/


/* === 
.nolink a{
   pointer-events: none;
   cursor: default;
}
=============*/



.navbar-default {
    height: 130px;
    background: white;
    border: 0px;
    }


.brand img{
    width: 300px;
    height: auto;
    margin-top: 50px;
    }

.hamburgerMenuText p{
    color: rgb(85,197,206);
    }

.navbar-toggle {
    display: block;
    }

.navbar-collapse.collapse {
     display: none!important;
    }


.navbar-collapse.collapse.in{
    display: block!important;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
    max-height: 800px;
    }

.navbar-header {
    float: right;
    margin-top: 53px;
    }

.navbar-nav {
    float: none!important;
    }

.navbar-nav>li {
    float: none;
    }

.navbar-default .navbar-toggle:hover {
    background: rgb(29,52,60);
    }

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .01s;
    -moz-transition: height .01s;
    -ms-transition: height .01s;
    -o-transition: height .01s;
    transition: height .01s;
    }

.navbar-collapse {
    background: rgb(29,52,60);
    display: block;
    width: 100%;
    padding-right: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
    border: 0px;
    margin-left: -30px;
    left: 0;
    height: auto;
    }

.navbar-collapse.in {
    overflow-y:visible;
    height: auto;
    margin: 0;
    top:130px;
    width: 100%;
    position:absolute;
    left: 0px;        
    }

.collapse.in{
    display:block !important;
    }

.nav > li > a {
    background: none;
    color: white;
    padding-top: 5px;
    padding-bottom: 4px;
    font-size: 15px!important;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: open-sans-condensed, sans-serif;
    font-style: normal;
    margin-bottom: 5px;
    margin-top: 5px;
    }

.nav > .active > a, .nav > li > a:focus, .nav > li > a:hover {
    background: none;
    color: rgb(85,197,206);
    
    }
    

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background: none;
    
    }
    

.menu-item-home > a:hover{
    color: rgb(85,197,206)!important;
    }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background-color: transparent;
  } 

.nav > li >a, .nav > li >a:focus, .nav > li >a:hover{
    border-bottom: 1px solid rgb(59,85,94);
        }



.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background: none;
    color: rgb(85,197,206);
    }

.dropdown-menu {
    background: none;
    position: relative;
    width: 100%;
    border-radius: 0px;
    height: auto;
    border: none;
    margin-left: 0;
    font-family: open-sans, sans-serif;
    margin-bottom: 10px;
    padding-bottom: 10px;
    box-shadow: none;
    display:block;
    }

.dropdown-menu > li > a {
    color: white;
    font-size: 14px;
    font-family: open-sans, sans-serif;
    letter-spacing: 0px;
    font-weight: 300;
    position: relative;
   }

.nav > li > a .caret {
    display: none;
    } 

.navbar-collapse {
    position: relative;
    text-align: left;
    background: rgb(29,52,60);
    margin-left: -30px;
    margin-right: -30px;
    }   

.nav > li {
    display: inline-block;
    width: 190px;
    text-align: left;
    margin-left: 1.5%;
    margin-right: 1.5%;
    }

/* === NAV DESKTOP 900+=============*/
@media screen and (min-width: 900px) {
    
.navbar-collapse.collapse.in{
    
    }
    
.navbar-collapse.collapse.in ul {
    max-width: 950px;
    min-width: 949px;
    margin-left: auto;
    margin-right: auto;
    }
  
 .firstMenuItem   {
    display: none;
    }   

}

/* === desktop +900=============*/


@media screen and (max-width: 899px) {
    
    .navbar-fixed-top {
    position: relative;
    margin-top: -130px;
    margin-left: -15px;
    margin-right: -15px;
    }
    
    .navbar-collapse.collapse.in ul {
    max-width: 899px;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
    }
    

    
    .nav > li {
    display: inline-block;
    width: 190px;
    text-align: left;
    margin-left: 1.5%;
    margin-right: 1.5%;
    }
    
    }
    


/* === LARGE MOBILE <899=============*/


@media screen and (max-width: 899px) {
    
    .nav > li {
    width: 45%;
    }
    
    .navbar-collapse.collapse.in{
    max-height: 1000px;
    }
    
    .dropdown-menu > li > a {
    font-size: 16px;
     }
    
.nav > li > a {
    font-size: 18px!important;
     }
    
    }



/* === NAV SMALL MOBILE -700 =============*/
@media screen and (max-width: 700px) {
    
 .brand img {
    width: 280px;
    margin-top: 35px; 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left:0;
    padding-left:0;
    }
    
.container > .navbar-header {
    margin-right: 0px;
    margin-left: -1px;
}
    
    .navbar-header {
    float: none;
    margin-top: 88px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(85,197,206);
    padding-right: 30px;
    width: 100%;
    text-align: right;
    }
    
.navbar-toggle{
    float: left;
    }
    
.hamburgerMenuText {
    display: none;
    }
    
.social {
    float: none;
    background: rgb(85,197,206);
    width: 30px;
    height: 30px;
    margin-top: 6px;
    }

.social a {
    font-size: 20px;
    line-height: 30px!important;
    }

.social:hover {
    background: rgb(29,52,60)!important;
    }
        
    .nav > li {
    width: 92%;
    }
    
    .navbar-collapse.collapse.in{
    max-height: 1800px;
    }
    
/* === MOBILE HAMBURGER ICON =============*/

.navbar-toggle {
    margin-top: 3px;
    }

.navbar-toggle .icon-bar {
    width: 35px;
    height: 2px;
    }

.navbar-toggle .icon-bar:nth-of-type(2) {
    top: 3px;
    }

.navbar-toggle .icon-bar:nth-of-type(3) {
    top: 5px;
    }

}







/* === nav mobile =============*/


/* ==== LAYOUT ===============
=============================================================*/

.container {
    padding-right: 15px;
    padding-left: 5px;

}


.mainBox {
    position: relative;
    width: 100%;
    
    height: auto;
    overflow:hidden;
    
    }

#homePage .mainBox {
    min-height: calc(100vh - 130px);
}

#genericPage .mainBox, 
#contactPage .mainBox {
    min-height: auto;
}


.addPaddingTop {
    padding-top: 70px;
}

.addHalfPaddingTop {
    padding-top: 20px;
}

.addPaddingBottom {
    padding-bottom: 50px;
}

.addMorePaddingBottom {
    padding-bottom: 80px;
}
.clearBox {
    width: 100%;
}
.blueBox {
    width: 100%;
    background: rgb(85,197,206);
    
}

.blueBox h1, .blueBox p {
    color: white;
}

.blueBox h2, .blueBox li {
    color: rgb(29,52,60)!important;
    }
.blueBox h3 {
    color: white!important;
    }

.blueBox a, .blueBox h3, .blueBox li {
    color: rgb(204,237,240);
}

.blueBox a:hover, .blueBox h3, .blueBox li {
    color: rgb(29,52,60);
}

.lightBlueBox {
    width: 100%;
    background: rgb(204,237,240);
}

.lightBlueBox h1, .lightBlueBox h3 {
    color: rgb(85,197,206);
}

.lightBlueBox h2, .lightBlueBox p {
    color: rgb(76,76,76);
}




.darkBlueBox {
    width: 100%;
    background: rgb(29,52,60);
}

.darkBlueBox h2, .darkBlueBox p{
    color: white;
}

.darkBlueBox h4 {
    color: white!important;
    font-weight: 600;
    
}

.darkBlueBox li {
    color: white;
    }
    
.darkBlueBox li a, .darkBlueBox a{
    color: rgb(204,237,240);
    }

.darkBlueBox li a:hover, .darkBlueBox a:hover{
    color: rgb(85,197,206);
    }
    
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    }

/* BUTTON */
.mainButton {
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
    background: rgb(85,197,206);
    color: white;
    width: 250px;
    height: 28px;
    margin-top: 15px; 
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 1px solid;
    width: auto;
    padding-left:20px;
    padding-right:20px;
}

.blueBox .mainButton {
    border: 2px solid white!important; 
}

.mainButton:hover {
    background: rgb(29,52,60);
    color: white;
    border: 1px solid rgb(85,197,206); 
}


.contentBlock p img {
    position: relative;
    width: 180px;
    
}

.genericRepeaterBlock {
    position: relative; overflow: hidden;
    padding-top: 30px;
    padding-bottom: 60px;
   
}

.genericRepeaterBlock img{
    position: absolute;
    z-index:0;
}

div .genericRepeaterBlock.col-sm-6 > ul, div .genericRepeaterBlock.col-sm-6 > h2, div .genericRepeaterBlock.col-sm-6 > p {
    position: relative;
    z-index: 800;
    }
    


.repeaterBlockHeading h1{
    position: relative; 
    z-index: 600;
    margin-left: 15px;
}

/* ==== BACKGROUND PAGE IMAGE =======================*/
.backgroundImage {
    height:auto;
    
}
.backgroundImage img{
    position: absolute;
    overflow: hidden;

}

@media screen and (max-width: 500px) {
    
.backgroundImage img{
    overflow: hidden;
    }
    
}


/* ==== SCROLLER =======================*/

#auckland-dental-practice, #accident-compensation, #dentist-testimonials, #find-a-dentist-in-auckland, #dentist-auckland, #testimonials, #adolescent-benefits, #footer, #emergency-dentistry, #general-dentistry-services, #specialised-dentistry, #periodontal-treatment, #periodontal-gum-treatment, #oral-surgery, #sedation-dentistry, #oral-hygienist, #cosmetic-dental-solutions, #dental-crowns, #dental-implants, #dental-veneers, #porcelain-bridges, #teeth-whitening, #bad-breath, #bleeding-gums, #broken-missing-teeth, #sensitive-teeth, #toothache, #teeth-grinding, #worn-down-teeth, #auckland-dentist, #oral-hygienist-mount-roskill, #dentists-mount-roskill, #dental-news, #blogFrame, #general-dentistry_specialised-dentistry, #fine-lines-and-wrinkles, #carousel1, #emergency-dentistry-auckland, #work-and-income, #interest-free-loans, #soft-tissue-laser-therapy, #oral-hygiene-services-auckland, #how-to-brush-your-teeth-correctly {
    position: relative;
} 


.scrollUpButton {
    position: absolute;
    z-index: 1000;
    text-align: center;
    width: 100%;
    top: 0;
    margin-top: -15px;
    
    }


.scrollUpText {
    position: absolute;
    top: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    left: 0;
    text-align: center;
    font-weight: 300;
    width: 100%;
    display:none;
    }

.scrollUpButtonFooter {
    position: absolute;
    z-index: 1500;
    text-align: center;
    width: 100%;
    margin-top: 30px;
}



.scrollDownButton {
    position: absolute;
    z-index: 500;
    text-align: center;
    width: 100%;
    bottom: 0;
    }



.banner .scrollDownButton a{
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

.banner .scrollDownText {
    color: white!important;
    font-weight: 600;
}

.scroll-btn {
    text-align: center;
    font-size: 80px;
    }

.scrollDownText {
    font-size: 11px;
    bottom: 0;
    margin-top: 50px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    position: absolute;
   top: 25px;
    font-weight: 300;
    text-align: center;
    left: 0;
    width: 100%;
    opacity: .5;
    display:none;
    }


@media screen and (min-width: 901px) {


.scrollUpButtonFooter:hover .scrollUpText{
    display: block;
}

.scrollUpButton:hover .scrollUpText{
    display: block;
}

.scrollDownButton:hover .scrollDownText{
    display: block;
}



}


/* ==== HOME ===============
=============================================================*/


.callToActionSection{
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 50px;
     
    }

.callToActionBlock {
    display: inline-block;
    text-align: center;
    float:none;
    width: 200px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 300px;
    }



.callToActionBlock p {
    margin-top: 20px;
    color: white;
    line-height: 30px;
    
    }

.readMore {
    position: absolute;
    z-index: 500;
    bottom: 20px;
    width:80%;
    left:10%;
    right: 0;
    font-weight: 300;
    font-family: open-sans-condensed, sans-serif;
    text-transform: uppercase;
    background: white;
    border-radius: 15px;
    opacity: .9;
}

.readMore.readMoreBack {
 bottom: auto;
    margin-top: 30px;

}

.closeButton {
    color: white;
    font-weight: 600;
    font-family: open-sans, sans-serif;
        position: absolute;
    z-index: 500;
    bottom: 20px;
    width:80%;
    left:10%;
    right: 0;
}
/* === FLIP BOX =============*/
.card {
    position: relative;
    padding-top: 25%;
    padding-bottom: 25%;
    width: 100%;
    text-align: center;
    
    height: 250px;
    overflow: hidden;
    }

.callToActionElements {
    z-index: 1500;
    text-align: center;
}

.callToActionElements p{
    line-height: 16px;
    margin:0;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.callToActionElements p strong {
    font-size: 20px;
    color: rgb(85,197,206);
}

.card__back a .fa {
    padding-top: 10px;
    font-size: 56px;
}

.card__back a:hover .fa {
    color: white;
}

.card__back a {
    text-align: center;
}

.callToActionBlock .card {
    height:100%;
}

.callToActionBlock .card__back {
    padding-top: 20px;
}

.callToActionBlock .card__front p strong{
   font-size: 28px; 
}



.card__front img{
    position:absolute;
    left: 50%;
    top:35%;
    transform: translateX(-50%);
    min-width: 75%;
    opacity: .15;
     }

/* card fronts and backs */
.card__front,
.card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   
}



.card__front,
.card__back {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

.card__front {
  background-color: rgb(85,197,206);
     text-align: center;
    }


.card__back {
  background-color: rgb(29,52,60);
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}



/* click effect */
.card.effect__click.flipped .card__front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.card.effect__click.flipped .card__back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}



/* ==== STAFF FLIP ===============
=============================================================*/


.dentalStaffSection {
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 50px;
    height: auto;
    
     
    }

.dentalStaffBlock {
    float:none;
    display: inline-block;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
        
}

.largeStaffBlock {
    width: 350px;
}

.smallStaffBlock {
    width: 280px;
}
.dentalStaffBlock h4 {
    color: white;
    font-size: 18px;
    
    margin-top: 30px;
    margin-bottom: 50px;
}

.staffCard {
    border: 2px solid white;
    height: 480px;
    
}



.staffFront img{
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 350px;
    opacity: 1;
    
     }

.staffBack p{
    font-size: 16px;
    padding-top: 25px;
    padding-left:25px;
    padding-right:25px;
    line-height: 28px;
    
}

.lightBlueBox .staffBack p {
    color: white;
}

.lightBlueBox .dentalStaffBlock h4 {
    color: rgb(29,52,60);
}

.staffBack {
    background: rgb(85,197,206);
}

.staffBack ul {
    padding-left: 0;
}

.staffReadMore {
    position: absolute;
    z-index: 500;
    bottom: 20px;
    width:80%;
    left:10%;
    right: 0;
    font-family: open-sans-condensed, sans-serif!important;
    text-transform: uppercase;
    background: rgb(85,197,206);
    border-radius: 15px;
    border: 2px solid white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1;
    opacity: 1;
    color: white;
}

.staffReadMore:hover {
    color: white;
    background: rgb(29,52,60);
    
    
}

@media screen and (max-width: 400px) {
    
    .staffCard {
        height: 420px;
    }
    
  .largeStaffBlock {
    width: 280px;
}
    
    .staffBack li {
    font-size: 14px!important;
}
    
    .staffBack p {
    padding-top: 10px;
}
    
}

@media screen and (max-width: 300px) {
    
.dentalStaffSection {
        
        margin-left: -35px;
        
    }
}


/* ==== CAROUSEL ===============
=============================================================*/


.carousel {
    margin-top: 0px;
}

.carousel-caption {
	padding-bottom: 0px;
	bottom: 0px;
	font-size: xx-small;
	text-align: left;
}

.carousel-inner>.item>img, .carousel-inner>.item>a>img {
display: block;
line-height: 1;
width: auto;
    overflow: hidden;
}

@media screen and (min-width: 1150px) {
    .homeBanner.carousel-inner>.item>img, .carousel-inner>.item>a>img {
        height: calc(100vh - 130px);
        width: auto;
    }
    
}



.carousel-control.left, .carousel-control.right {
    background-image: none;
}

 .carousel-indicators {
    display: none;
}

/* ==== LEFT BANNER IMAGE ======================*/
.leftAlignCarousel {
    width: 600px;
}

.leftAlignCarousel {
    position: absolute;
    z-index: 1000;
    right: 5%;
    text-align: center;
    top: 80px;
}

.leftAlignCarousel h1{
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 0;
    

}

.leftAlignCarousel p{
    font-size: 36px;
    line-height: 36px;
    
    
    
}


.leftAlignCarousel .advertSpacer {
    width: 100%;
    height: 10px;
}

.leftAlignCarouselButton button p{
   font-size: 24px;
    text-transform: uppercase;
}

.leftAlignCarouselButton button {
    position: absolute;
    right: 20%;
    bottom: 30%;
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 8px;
    border-radius: 1px solid rgb(76,76,76);
    color: rgb(140,140,140)!important;
    height: 40px;
    }
.advertSpacer {
    width: 100%;
    height: 10px;
}
@media screen and (max-width: 1150px) {

.leftAlignCarousel {
   right: 5%;
   top: 150px;
   width: 500px;
    }

.leftAlignCarousel h1{
    font-size: 45px;
    line-height: 36px;
        }

.leftAlignCarousel p{
    font-size: 28px;
    line-height:28px;
    }

.leftAlignCarousel a{
    font-size: 18px;
   }
}


@media screen and (max-width: 900px) {
  .homeBanner.item{
    margin-top: 200px;
    }
    
.leftAlignCarousel {
    left: 50%; 
    transform: translateX(-50%);
    top: 0;
    margin-top: -190px;
    width: 500px;
    }
    
 p {
     color: rgb(90,90,90);
    }
    
    
.largeSliderLinks p{
    margin-top: 20px;
    font-size: 16px;
    line-height:20px;
    }
    
.leftAlignCarouselButton button{

    bottom:50%;
    right: 20%;
    }
    
}


@media screen and (max-width: 550px) {
    
.homeBanner.item{
    margin-top: 160px;
    }

.leftAlignCarousel {
    margin-top: -160px;
    width: 400px;
    }

.leftAlignCarousel h1{
    font-size: 36px;
    line-height: 26px;
        }

.leftAlignCarousel p{
    font-size: 22px;
    line-height:22px;
    }
    
.leftAlignCarouselButton button p{
 font-size: 18px;
    padding-left:4px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 4px;
  }
    
.leftAlignCarouselButton button {
    bottom: 50%;   
    line-height: 20px;
    right: 7%;
    height: 30px;
    display: none;
    }
    

}

    
@media screen and (max-width: 400px) {
    
.homeBanner.item{
    margin-top: 135px;
    }

.leftAlignCarousel {
   margin-top: -150px;
   width: 300px;
   height: 500px;
    }

.leftAlignCarousel h1{
    font-size: 28px;
    line-height: 18px;
    }

.leftAlignCarousel p{
    font-size: 16px;
    line-height:16px;
    
    
}
.leftAlignCarousel a{
    font-size: 12px;
  }


}


@media screen and (max-width: 300px) {

.leftAlignCarousel {
    width: 280px;
    padding-left: 5px;
    padding-right: 5px;
    }
    
.leftAlignCarousel h1{
    font-size: 24px;
    line-height: 16px;
    }

    .leftAlignCarousel p {
        padding-left: 0;
        padding-right: 0;
        
    }

    
}

/* ==== CENTER BANNER IMAGE ======================*/

.centerAlignCarousel {
    width: 700px;
    position: absolute;
    z-index: 1000;
    left:15%;
    text-align: center;
    top: 0;
}

.centerAlignCarousel h1{
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 0;
    

}

.centerAlignCarousel p{
    font-size: 22px;
    line-height: 30px;
    
    
    
}


.centerAlignCarousel .advertSpacer {
    width: 100%;
    height: 10px;
}

.centerAlignCarouselButton button p{
   font-size: 24px;
    text-transform: uppercase;
}

.centerAlignCarouselButton button {
    position: absolute;
    right: 10%;
    top: 10%;
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 8px;
    border-radius: 1px solid rgb(76,76,76);
    color: rgb(140,140,140)!important;
    height: 40px;
    }
.advertSpacer {
    width: 100%;
    height: 10px;
}

@media screen and (max-width: 1150px) {

.centerAlignCarousel {
    width: 70%;
    left:5%;

}
   
 .centerAlignCarouselButton button {
        right: 5%;
    }
.centerAlignCarousel h1{
    font-size: 36px;
    line-height: 36px;
        }

.centerAlignCarousel p{
    font-size: 20px;
    line-height:26px;
    }

.centerAlignCarousel a{
    font-size: 18px;
   }
}


@media screen and (max-width: 900px) {
  .homeBanner.item{
    margin-top: 200px;
    }
    
.centerAlignCarousel {
    left: 50%; 
    transform: translateX(-50%);
    top: 0;
    margin-top: -190px;
    width: 500px;
    }
    
 p {
     color: rgb(90,90,90);
    }
    
    
.largeSliderLinks p{
    margin-top: 20px;
    font-size: 16px;
    line-height:20px;
    }
    
.centerAlignCarouselButton button{

    top:20px;
    left: 50%; 
    transform: translateX(-50%);
    }
    
}


@media screen and (max-width: 550px) {
   
    
    
.homeBanner.item{
    margin-top: 160px;
    }

.centerAlignCarousel {
    margin-top: -160px;
    width: 400px;
    }

.centerAlignCarousel h1{
    font-size: 30px;
    line-height: 30px;
        }

.centerAlignCarousel p{
    font-size: 18px;
    line-height:22px;
    }
    
.centerAlignCarouselButton button p{
 font-size: 18px;
    padding-left:10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 8px;
  }
    
.centerAlignCarouselButton button{

    top:0;
    left: 50%; 
    transform: translateX(-50%);
    display: none;
    }

}

    
@media screen and (max-width: 400px) {
    
.homeBanner.item{
    margin-top: 135px;
    }

.centerAlignCarousel {
   margin-top: -150px;
   width: 300px;
   height: 500px;
    }

.centerAlignCarousel h1{
    font-size: 22px;
    line-height: 18px;
    }

.centerAlignCarousel p{
    font-size: 14px;
    line-height:16px;
    
    
}
.centerAlignCarousel a{
    font-size: 12px;
  }


}


@media screen and (max-width: 300px) {

.centerAlignCarousel {
    width: 280px;
    padding-left: 5px;
    padding-right: 5px;
    }
    
.centerAlignCarousel h1{
    font-size: 20px;
    line-height: 16px;
    }

    .centerAlignCarousel p {
        padding-left: 5;
        padding-right: 5;
        
    }
.centerAlignCarouselButton button{

    margin-top: -20px;
    }
    
}




/* ==== SMALL LEFT BANNER IMAGE ======================*/

smallBanner {
    position: relative;
    
}
.smallLeftCarousel {
    width: 600px;
}

.smallLeftCarousel {
    position: absolute;
    z-index: 1000;
    right: 15%;
    text-align: center;
    top: 30px;
}

.smallLeftCarousel h1{
    font-size: 55px;
    line-height: 45px;
    font-weight: 600;
    letter-spacing: 0;
    

}

.smallLeftCarousel p{
    font-size: 20px;
    line-height: 28px; 
    
}


.smallLeftCarousel .advertSpacer {
    width: 100%;
    height: 10px;
}

.smallLeftCarousel.leftAlignCarouselButton button p{
   font-size: 24px;
    text-transform: uppercase;
}

a.smallLeftAlignCarouselButton button {
    position: absolute;
    right: 30%;
    bottom: 0;
    margin-bottom: 80px;
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 2px;
    border-radius: 1px solid rgb(76,76,76);
    color: rgb(140,140,140)!important;
    height: 30px;
    }
.advertSpacer {
    width: 100%;
    height: 10px;
}
@media screen and (max-width: 1150px) {

.smallLeftCarousel {
   right: 10%;
   top: 20px;
   width: 500px;
    margin-top: -10px;
    
    }

.smallLeftCarousel h1{
    font-size: 45px;
    line-height: 36px;
        }

.smallLeftCarousel p{
    font-size: 20px;
    line-height:28px;
    }

.smallLeftCarousel a{
    font-size: 18px;
   }
    
a.smallLeftAlignCarouselButton button {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 900px) {
  .smallBanner.item{
    margin-top: 200px;
    }
    
.smallLeftCarousel {
    left: 50%; 
    transform: translateX(-50%);
    top: 0;
    margin-top: -200px;
    width: 500px;
    }
    
 p {
     color: rgb(90,90,90);
    }
    
    
.smallLeftCarousel p{
    margin-top: 20px;
    font-size: 16px;
    line-height:20px;
    }
    
    .smallLeftAlignCarouselButton {
        bottom: 0;
        margin-top: 70px;
    }  
    
    a.smallLeftAlignCarouselButton button {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 550px) {
    
.smallBanner.item{
    margin-top: 200px;
    }

.smallLeftCarousel {
    margin-top: -200px;
    width: 300px;
    }

.smallLeftCarousel h1{
    font-size: 28px;
    line-height: 22px;
        }

.smallLeftCarousel p{
    font-size: 18px;
    line-height:22px;
    }
    
.smallLeftAlignCarouselButton button p{
 font-size: 18px;
    padding-left:10px;
    padding-right: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
    
a.smallLeftAlignCarouselButton button {
    margin-bottom: 20px;   
    font-size: 18px;
    padding-top: 4px;
    line-height: 20px;
    right: 5%;
    height: 30px;
    }

}

@media screen and (max-width: 350px) {

.smallLeftCarousel {
    width: 280px;
    padding-left: 5px;
    padding-right: 5px;
    }
    
.smallLeftCarousel h1{
    font-size: 24px;
    line-height: 16px;
    }

    .smallLeftCarousel p {
        padding-left: 0;
        padding-right: 0;
        
    }

    
}


/* ==== TESTIMONIALS ===============
=============================================================*/

#dentist-testimonials {
    width: 100%;
    position: relative;
}

#dentist-testimonials .carousel-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    }

#dentist-testimonials .item, #testimonials .item .active{
    max-height: 400px; 
    padding-left: 200px;
    padding-right: 200px;
    }

#testimonial1 {
    height: 400px;
    }

#dentist-testimonials p {
    color: rgb(76,76,76);
    opacity: .7;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    }

#dentist-testimonials p.testimonialName {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    }

@media screen and (max-width: 900px) {
    
#dentist-testimonials .item, #testimonials .item .active {
    max-height: 380px; 
    padding-left: 60px;
    padding-right: 60px;
    }
    
#dentist-testimonials p {
    font-size: 16px;
    line-height: 24px;
    }
    
}

@media screen and (max-width: 400px) {

#dentist-testimonials p{
    font-size: 13px;
    line-height: 16px;
}

#dentist-testimonials .item, #testimonials .item .active{
    max-height: 400px; 
    padding-left: 50px;
    padding-right: 50px;
    }
}

/* ==== BOOK ONLINE ===============
=============================================================*/
#bookOnline iframe{
    width: 100%;
    min-height: 100vh;


}

iframe>body>.ember-application{
    background: white;
    }

/* ==== FOOTER ===============
=============================================================*/

#find-a-dentist-in-auckland {
    width: 100%;
    height: 300px;
    margin: 0;
    padding: 0;
}

.socialMapIcons {
    position: absolute;
    margin-top: 320px;
    right: 50px;
    z-index: 350;
}



#footer {
    min-height: 500px;
}

/* ==== FOOTER NAV ======================================*/
#footerNav {
 margin: auto;
    margin-top: 120px;
    max-width: 1000px;
}

#footerNav.navbar-collapse {
    position: relative;
    text-align: center;
    background: rgb(29,52,60);
    margin-left: -30px;
    margin-right: -30px;
    }   

#footerNav ul{
   text-align: center; 
}

#footerNav ul li{
   text-align: left; 
}
#footerNav >.nav > li {
    display: inline-block;
    width: 190px;
    text-align: left;
    margin-left: 1.5%;
    margin-right: 1.5%;
    }
    
#footerNav.dropdown-menu {
    display:block;
    }
    
#footerNav.dropdown-menu {
    border-bottom: none;
    }
    
#footerNav.dropdown-menu > li > a {
    padding-left: 10px;
     }
    
#footerNav.nav > li > a .caret {
    display: none;
    
    }   
    
#footerNav.nav > li > a {
    pointer-events: none;
   cursor: default;
   }

#footerNav ul.dropdown-menu {
    display: block;
    border-bottom: none;
    margin-bottom: 40px;
}

#footerNav .nav > li >a{
    border-bottom: 1px solid white;
        }

#footerNav .dropdown-menu > li > a {
    font-size: 12px;
    padding-left: 10px;
}

.dropdown-menu > li > a:hover #footerNav, .dropdown-menu > li > a:focus #footerNav{
    color: rgb(76,76,76)!important;
    }


#footerNav .nav > .active > a, #footerNav>.nav > li > a:focus, #footerNav>.nav > li > a:hover {
    color: white!important;
    pointer-events: none;
    cursor: default;
    
    }
#footerNav .dropdown-menu > li > a:hover, #footerNav .dropdown-menu > li > a:focus {
    color: rgb(76,76,76)!important;
}


#footerNav .menu-item-home > a:hover{
    color: rgb(76,76,76)!important;
    }

#footerNav>.nav > li > a .caret {
    display: none;
    }

#footerNav li.menuContact a {
    font-size: 16px!important;
    margin-top: -2px;
   }



.practiceTimes {
    margin-top:-10px;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
.practiceTimes h5{
    color: white;
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 600;
    font-size:24px;
    letter-spacing: 1px;
}

.footerLogos {
display: inline-block;
    text-align: center;
}
.footerLogos img{
    height: 70px;
    width: auto;
    margin-left:20px;
    margin-bottom: 30px;
}

/* ==== CONTACT US ===============
=============================================================*/
.contactPage {
    text-align: center h1;
}

.centeredTExt {
    text-align: center;
}
.contactInfo b  {
    font-size: 24px;
    font-weight: 300;
    
}

.contactInfo  {
    font-family: open-sans!important;
        font-size: 24px;
    font-weight: 300;
    color: white!important;
}

.contactInfo .blueBox a, .blueBox li {
    color: rgb(29,52,60)!important;
    text-transform: none;
    letter-spacing: none;
}

/* === BLOG WIDGET =============*/


.rpwe-block ul{
list-style: none !important;
margin-left: 0 !important;
padding-left: 0 !important;
    border-bottom: none;
    
}

.rpwe-img img{
    margin-right: 30px;
    
}
.rpwe-title {
    margin-left: 0 !important;
padding-left: 0 !important;
}
 .rpwe-title h3{
    letter-spacing: none;
     text-transform: none;
}

 a:hover .more-link, .rpwe-title a:hover{
    color: rgb(29,52,60)!important;
}

 .rpwe-block a:hover{
    color: rgb(29,52,60)!important;
     text-decoration: none;
     font-size: 18px;
}


.more-link::before {
    content: " ";
}

.rpwe-block li{
border-bottom: none!important;
margin-bottom: 10px;
padding-bottom: 10px;
list-style-type: none;
}

.rpwe-block a{
display: inline !important;
text-decoration: none;
    font-weight: 300;
}

.rpwe-block h3{
background: none !important;
clear: none;
margin-bottom: 0 !important;
margin-top: 0 !important;
font-weight: 300;
font-size: 20px !important;
line-height: 1.5em;
text-transform: none;
    font-family: open-sans, sans-serif;
    margin-left: 30px;
}


.rpwe-thumb{
border: none !important;
box-shadow: none !important;
margin: 2px 10px 2px 0;
padding: 3px !important;
        width: 150px;
        height: 150px;
        
   

}

@media screen and (max-width : 600px) {
    
 #rpwe_widget-2, #rpwe_widget-3{
     width: 70%;
        margin-left: auto;
        margin-right: auto;
       }
    
    .rpwe-thumb {
        width: 100%;
        height: auto;
        }
}

.rpwe-summary{
font-size: 14px;
    font-weight: 300;
    margin-left:30px;
}

.rpwe-summary p{
    margin-left: 30px;
}

.rpwe-time{
color: #bbb;
font-size: 16px;
}

.rpwe-comment{
color: #bbb;
font-size: 11px;
padding-left: 5px;
}

.rpwe-alignleft{
display: inline;
float: left;
}

.rpwe-alignright{
display: inline;
float: right;
}

.rpwe-aligncenter{
display: block;
margin-left: auto;
margin-right: auto;
}

.rpwe-clearfix:before,
.rpwe-clearfix:after{
content: "";
display: table !important;
}

.rpwe-clearfix:after{
clear: both;
}

.rpwe-clearfix{
zoom: 1;
}


/* === BLOGGING =============*/


.entry-title {
    font-size: 36px;
}
.singleBlogColumn {
    padding-top: 50px;
    margin-bottom: 50px;
}

/* === BLOG PAGE =============*/


.blogTitle a{
    margin-left: -15px;
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0;
    
}

.entry-header {
    margin-top: 60px;
}




.blogThumbnail {
    position: relative;
    float: left;
    
}

.blogThumbnail {
    width:150px;
    height: 150px;
    overflow: hidden;
    margin-right: 30px;
}
.blogThumbnail img {
    margin-top: 5px;
    margin-right: 15px;
    height: 100%;
    width:auto;
    
    
}

.blogTitle a:hover, .blogExcerpt a:hover{
    color: rgb(85,197,206)!important;
}



@media screen and (min-width : 782px) {
    
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    }
    
.sideBar {
    border-left: 1px #a9a6a6 solid;
    padding-bottom: 0;
    margin-bottom: 33px;
    }
    
.postImage img{
    height: 100%;
    }    

    .blogExcerpt {
        padding-right: 30px;
        padding-left: 0px;
        font-size: 12px;
        margin-bottom: 30px;
    }
    
}

.postImageRow {
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: left;
    }    
    
.postImage {
    display: inline-block;
    height: 400px;
    max-width:90%;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
        
    }
    

    


.row.match-my-cols {
    overflow: hidden; 
}

.row.match-my-cols [class*="col-"]{
    margin-bottom: -99999px;
    padding-bottom: 99999px;
}

@media screen and (max-width : 782px) {

.blogContent {
    border-bottom: 1px #a9a6a6 solid;
    margin-bottom: 30px;
    }
    
.sideBar {
    margin-top: 60px;
    
    }



    
}


/* === SINGLE BLOG POST =============*/


#secondary ul li a {
    font-size: 11px;
    line-height: 14px;

}

#secondary ul li {
      margin-bottom: 10px; 
}

/* === SIDEBAR =============*/

.sideBar {
    position: static;
    margin-top: 30px;
    
    }

.sideBar h2 {
    font-size: 24px;
}

.sideBar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    

}

.sideBar ul a {
    color: rgb(85,197,206);
    letter-spacing: normal;
    font-weight: 300;
  
}

.cat-item a{
    font-weight: 600!important;
}

.sideBar ul a:hover {
    color: rgb(29,52,60)!important;

}


#blogFrame  {     
    margin-top: 30px;
    margin-bottom: 50px;
    
    
}


iframe  {
    width: 100%;
    height: 400px;
    position: relative;
    border: 2px solid rgb(85,197,206);
}



.blogButton {
    position: absolute;
    
    
}


/* ==== MEDIA QUERIES ===============
=============================================================*/
@media screen and (min-width: 783px) {
  .admin-bar .navbar {
    top: 32px;
  }
}

.menuContact a {
    color: rgb(253,186,88)!important;
    font-weight: 600!important;
   }


.menuHeader a{
    margin-top: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(59,85,94);
    letter-spacing: 1px!important;
    font-size: 14px !important;
font-weight: 300;
font-family: open-sans-condensed!important;
    height: 30px;
    pointer-events: none;
   cursor: default;
   
   }
