/*=================
===== STYLING =====
=================*/
{
 border-style:   dashed;
 border-color:   blue;
}
*,
*:before,
*:after {
 padding: 0px;
 margin: 0px;
 transition: 0.3s;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
html {
  font-family: 'Raleway', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
	text-align: center;
	overflow-x: hidden;
}
section,
header {
	background-size: cover;
}
@-webkit-viewport {
	width: device-width;
}
@-moz-viewport {
	width: device-width;
}
@-ms-viewport {
	width: device-width;
}
@-o-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
ul,
ol {
	list-style-type: none;
}
a {
  color: white;
	text-decoration: none;
	display: inline-block;
}
.wrapper {
	position: relative;
	max-width: 1200px;
	margin: auto;
	padding-top: 75px;
	padding-bottom: 75px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 0px;
}
.color-overlay {
	background: rgba(255, 255, 255, 0.7);
}
.main-line {
	height: 1px;
	width: 200px;
	margin: auto;
	margin-bottom: 50px;
	margin-top: 25px;
	color: gray;
}
/*================
====== FONTS =====
================*/
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #386080;
}
h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	text-transform: uppercase;
  text-align: left;
  font-weight: 400;
}
h2 {
	font-size: 2rem;
	margin-bottom: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
h3 {
  font-size: 2rem;
  font-weight: 400;
  padding: 5%;
  text-align: center;
}
h4 {
	font-size: 1.25em;
  font-weight: 500;
  text-align: center;
}
h5 {
	font-size: 16px;
	margin-bottom: 7px;
}
h6 {
  font-size: 1.5rem;
  color: gray;
  text-align: left;
}
p {
  font-size: 1rem;
  color: #505050;
  line-height: 1.5;
  text-align: center;
}
::-moz-selection {
	color: #fff;
}
::selection {
	color: #fff;
}
/*=================
===== COLUMNS =====
=================*/
.col-3,
.col-4,
.col-6,
.col-8,
.col-9,
.col-12,
.col-9 + .col-3 {
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 1rem;
	vertical-align: top;
	width: 100%;
}
.col-3 img,
.col-4 img,
.col-6 img,
.col-8 img,
.col-9 img,
.col-12 img {
	max-width: 100%;
}
.col-3 p,
.col-4 p,
.col-6 p,
.col-8 p,
.col-9 p,
.col-12 p {
	margin-bottom: 20px;
}
.text-center,
.text-right,
.text-left  {
	text-align: center;
}
/*=================
===== BUTTONS =====
=================*/
.button {
  position:relative;
  cursor: pointer;
  padding: 20px;
  background-image: linear-gradient(to right, #7dcad2 10%, #5394ac 60%, #386080 100%);
  -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  transition: transform 200ms ease-in-out;
}
.button-action-width {
  width: 15%;
  margin: auto;
}
.button-resources-width {
  width: 40%;
  margin: auto;
  margin-top: 5%;
}
.button-width{
  width: 60%;
  margin: auto;
  margin-top: 10%;
}
.button-box{
  padding: 0 0 5% 0;
}
.button:hover {
  position: relative;
  background: #7dcad2;
}
.button a {
    font-weight:bold;
}
.button:before,
.button:after {
    content:"";
    position:absolute;
    z-index:-1;
}
.lifted {
    -moz-border-radius:4px;
    border-radius:4px;
    backface-visibility: hidden;
}
.lifted::after {
    bottom:15px;
    right:20px;
    left:auto;
    width:40%;
    height:20%;
    -webkit-box-shadow:20px 15px 8px rgba(0, 0, 0, 0.7);
    -moz-box-shadow:20px 15px 8px rgba(0, 0, 0, 0.7);
    box-shadow:20px 15px 8px rgba(0, 0, 0, 0.7);
    -webkit-transform:rotate(8deg);
    -moz-transform:rotate(8deg);
    -ms-transform:rotate(8deg);
    -o-transform:rotate(8deg);
    transform:rotate(8deg);
}
.modalDialog, .modalDialogWhy, .modalDialogUnique {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}
.modalDialog:target, .modalDialogWhy:target, .modalDialogUnique:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog > div {
	width: 75%;
	position: relative;
	margin: 10% auto;
	padding: 2%;
	background: #fff;
}
.modalDialogWhy > div {
	width: 75%;
	position: relative;
	margin: 10% auto;
	padding: 2%;
	background: #fff;
}
.modalDialogUnique > div {
	width: 75%;
	position: relative;
	margin: 10% auto;
	padding: 2%;
	background: #fff;
}
.close {
	background: #386080;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #7dcad2; }
.button img {
    width: 15%;
    vertical-align: middle;
    margin-left: 5%;
}
/*==============
===== HERO =====
==============*/
.hero {
	background-image: url(http://www.rockymountainasa.com/images/hero/procedures-hero.jpg);
}
.hero .color-overlay {
	background: rgba(255, 255, 255, 0.8);
	height: 600px;
}
.hero .wrapper {
	padding-top: 160px;
	padding-bottom: 100px;
}
.hero h1 {
  margin-top: 80px;
	margin-bottom: 30px;
	text-align: left;
}
.hero p {
  font-size: 1.5rem;
  color: gray;
  text-align: left;
}
/*===========================
===== Intro To Practice =====
===========================*/
.tech{
  padding: 5% 0 5% 0;
  background: linear-gradient(45deg, #7dcad2 0%, #e4efe9 100%);
}
.tech-box{
  display: inline-block;
  width: 45%;
  padding: 3%;
  vertical-align: middle;
  min-width: 400px;
}
.tech .video {
   position: relative;
   width: 100%;
   box-shadow: 1px 1px 10px rgba(68, 68, 68, 0.6);
}
.tech img {
    width: 25%;
    padding-bottom: 2%;
    display: inline;
    margin: auto;
}
.patient-relationship {
  padding: 5% 0 5% 0;
}
.patient-relationship h3 {
  padding: 5%;
}
.patient-relationship p {
  padding: 0 5% 5% 5%;
}
.pr-img{
  width: 40%;
  padding: 5%;
  display: inline-block;
  vertical-align: middle;
  min-width: 300px;
}
.pr-box{
  display: inline-block;
  width: 50%;
  min-width: 375px;
  padding: 3%;
  vertical-align: middle;
  min-width: 400px;
}
.pr-box p{
  text-align: left;
  padding: 2%;
}
.pr-box a{
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}
/*======================
===== TESTIMONIALS =====
======================*/
.testimonial{
	position: relative;
  margin-bottom: 5%;
 }
.testimonial p {
  margin: 0 9% 0 9%;
}
.testimonial h4{
  text-align: left;
  margin-top: 2%;
  margin-left: 15%;
}
.carousel > input[type="radio"]:nth-child(1):checked ~ .carousel__prev > label:nth-child(6),
.carousel > input[type="radio"]:nth-child(1):checked ~ .carousel__next > label:nth-child(2),
.carousel > input[type="radio"]:nth-child(2):checked ~ .carousel__prev > label:nth-child(1),
.carousel > input[type="radio"]:nth-child(2):checked ~ .carousel__next > label:nth-child(3),
.carousel > input[type="radio"]:nth-child(3):checked ~ .carousel__prev > label:nth-child(2),
.carousel > input[type="radio"]:nth-child(3):checked ~ .carousel__next > label:nth-child(4),
.carousel > input[type="radio"]:nth-child(4):checked ~ .carousel__prev > label:nth-child(3),
.carousel > input[type="radio"]:nth-child(4):checked ~ .carousel__next > label:nth-child(5),
.carousel > input[type="radio"]:nth-child(5):checked ~ .carousel__prev > label:nth-child(4),
.carousel > input[type="radio"]:nth-child(5):checked ~ .carousel__next > label:nth-child(6),
.carousel > input[type="radio"]:nth-child(6):checked ~ .carousel__prev > label:nth-child(5),
.carousel > input[type="radio"]:nth-child(6):checked ~ .carousel__next > label:nth-child(1) {
  opacity: 1 !important;
  z-index: 3;
}
.container {
  width: 85%;
  height: 250px;
  margin: 0 auto;
}
.carousel {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.carousel > input[type="radio"] {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
}
.carousel > input[type="radio"]:checked ~ .carousel__items .carousel__item,
.carousel > input[type="radio"]:checked ~ .carousel__prev > label,
.carousel > input[type="radio"]:checked ~ .carousel__next > label {
  opacity: 0;
}
.carousel > input[type="radio"]:nth-child(1):checked ~ .carousel__items .carousel__item:nth-child(1) {
  opacity: 1;
}
.carousel > input[type="radio"]:nth-child(1):checked ~ .carousel__nav > label:nth-child(1) {
  background: #386080;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type="radio"]:nth-child(2):checked ~ .carousel__items .carousel__item:nth-child(2) {
  opacity: 1;
}
.carousel > input[type="radio"]:nth-child(2):checked ~ .carousel__nav > label:nth-child(2) {
  background: #386080;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type="radio"]:nth-child(3):checked ~ .carousel__items .carousel__item:nth-child(3) {
  opacity: 1;
}
.carousel > input[type="radio"]:nth-child(3):checked ~ .carousel__nav > label:nth-child(3) {
  background: #386080;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type="radio"]:nth-child(4):checked ~ .carousel__items .carousel__item:nth-child(4) {
  opacity: 1;
}
.carousel > input[type="radio"]:nth-child(4):checked ~ .carousel__nav > label:nth-child(4) {
  background: #386080;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type="radio"]:nth-child(5):checked ~ .carousel__items .carousel__item:nth-child(5) {
  opacity: 1;
}
.carousel > input[type="radio"]:nth-child(5):checked ~ .carousel__nav > label:nth-child(5) {
  background: #386080;
  cursor: default;
  pointer-events: none;
}
.carousel > input[type="radio"]:nth-child(6):checked ~ .carousel__items .carousel__item:nth-child(6) {
  opacity: 1;
}
.carousel > input[type="radio"]:nth-child(6):checked ~ .carousel__nav > label:nth-child(6) {
  background: #386080;
  cursor: default;
  pointer-events: none;
}
.carousel__items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  height: 600px;
  position: relative;
}
.carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 2s;
  -webkit-transition: opacity 2s;
}
.carousel__item img {
  width: 100%;
  vertical-align: middle;
}
.carousel__prev > label, .carousel__next > label {
  background-color: transparent;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  opacity: 0;
  z-index: 2;
}
.carousel__prev > label:hover, .carousel__prev > label:focus, .carousel__next > label:hover, .carousel__next > label:focus {
  opacity: .5 !important;
}
.carousel__prev > label:before, .carousel__prev > label:after, .carousel__next > label:before, .carousel__next > label:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
}
.carousel__prev > label:before, .carousel__next > label:before {
  border: solid #386080;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.carousel__prev > label:before {
  left: 25%;
}

.carousel__next > label {
  right: 0;
}
.carousel__next > label:before {
  right: 25%;
  transform: rotate(310deg);
  -webkit-transform: rotate(310deg);
}
.carousel__nav {
  position: absolute;
  bottom: 3%;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 3;
}
.carousel__nav > label {
  background-color: #acdfe5;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 .125%;
  width: 10px;
  height: 10px;
}
/*===========================
===== Intro To Practice =====
===========================*/
.intro h4 {
	padding-top: 40px;
}
.intro .video {
   position: relative;
   width: 100%;
   vertical-align: middle;
   border: 25px solid white;
   box-shadow: 5px 5px 20px #e5e5e5;
}
/*===============
===== MEDIA =====
===============*/

@media only screen
and (max-device-width: 480px)
and (orientation: portrait) {
/*---media-home---*/
.hero {
  background-repeat: no-repeat;
  background-position: -150px 75px;
  height: 475px;
  overflow: hidden;
}
.hero .color-overlay .wrapper {
  padding-top: 100px;
}
.hero h1 {
	font-size: 2rem;
}
.hero p {
	font-size: 1rem;
}
.pr-img{
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  min-width: 300px;
}
.button-resources-width {
  width: 60%;
  margin: auto;
  margin-top: 5%;
}
.call-to-action .button-box .button-action-width {
  width: 50%;
  margin: auto;
}
.pr-box .button-action-width {
  width: 50%;
}
}
/*==== TABLET - PORTRAIT * PHONE - LANDSCAPE =====*/
@media only screen
and ( min-width: 481px)
and ( max-width: 768px){
.tech{
  width: 100%;
}
.tech-box{
  width: 100%;
}
}
/*==== TABLET - LANDSCAPE =====*/
@media only screen
and ( min-width: 769px)
and ( max-width: 1024px){

}
@media only screen
and ( min-width: 1025px)
and (orientation : landscape){

}
