/*********************************
	Impress Design / Jack McDaniel
	impress-design.com
	720.495.1368
*********************************/

/*********************************
	SITE COLORS: 
	
	LT BLUE: 97B1DC
	DK BLUE: 112146112146
	TEXT: #737373
*********************************/

/*	A. GLOBAL RESET
	. . . . . . . . . . . . . . . . . . . . */
	
html,
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    font-family: 'Nanum Gothic',sans-serif;
    line-height: 1.6em;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    background: #FFF;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section { display: block; }
nav ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}
ins {
    background-gridor: #ff9;
    color: #11284F;
    text-decoration: none;
}
mark {
    background-gridor: #ff9;
    color: #11284F;
    font-style: italic;
    font-weight: bold;
}
del { text-decoration: line-through; }
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-gridlapse: gridlapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select { vertical-align: middle; }
input:focus { outline: none; }
button:focus { outline: none; }
textarea:focus { outline: none; }
blockquote {
    width: 70%;
    margin: 30px 10%;
    padding: 20px 5%;
    border-top: 4px solid #CCC;
    border-bottom: 4px solid #CCC;
    background: url(https://www.vinciklawoffice.com/img/quotes-3.png) 0 15px no-repeat;
    font-size: 1.25em;
    line-height: 1.7em;
    color: #666;
}
img { max-width: 100%; }
p { margin-bottom: 15px; }
.clear { clear: both; }
q {
  font-size: 2.0em;
}
::selection {
    color: #fff;
    background: #112146;
    text-shadow: none;
}
ol { margin-left: 30px; }


/*	B. BODY INFO AND LINKS
	. . . . . . . . . . . . . . . . . . . . */

html {
    animation: fadeSiteIn 1.0s ease forwards; /* [1] */
}

html.fadeSiteOut {
  animation:  fadeSiteOut 1.0s ease forwards; /* [2] */
}


@keyframes fadeSiteIn { /* [1] */
    from   { opacity: 0; }
    to    { opacity: 1; }
}

@keyframes fadeSiteOut { /* [2] */
    from   { opacity: 1; }
    to     { opacity: 0; }
}
@keyframes delay {
    from   { opacity: 0; }
    to    { opacity: 1; }
}

@-webkit-keyframes show-text {
    0% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes show-text {
    0% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes show-textHL {
    0% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em)
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


.slideIn {
    -webkit-animation-name: slideInUp; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: slideInUp;
    animation-duration: 2s;
}
.slideInUp {
   -webkit-animation-name: slideInUp;
   animation-name: slideInUp;
}
.slideInLeft {
    -webkit-animation-name: slideInLeft; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: slideInLeft;
    animation-duration: 2s;
}
.smoothTran {
    opacity: 0;
    -webkit-animation: show-textHL .5s 2.0s forwards cubic-bezier(0.1, 0.59, 1.0, 1.22);
    animation: show-textHL .5s 2.0s forwards cubic-bezier(0.1, 0.59, 1.0, 1.22);
}
.smoothTran2 {
    opacity: 0;
    -webkit-animation: show-textHL 1.0s 2.75s forwards cubic-bezier(0.1, 0.59, 1.0, 1.22);
    animation: show-textHL 1.0s 2.75s forwards cubic-bezier(0.1, 0.59, 1.0, 1.22);
}
.hidden{
     opacity:0;
}
.visible{
     opacity:1;
}

.mainContain {
    margin: 0 auto;
    max-width: 1160px;
}

a {
    color: #112146;
    font-weight: 300;
}

/*a:visited {
	color: #666;
}*/
a:hover {
    color: #97B1DC;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

article a:hover { }

em { 
    font-weight: bold;
    font-style: italic; 
    color: #112146;
}

/* HERO IMAGE ROTATION FOR HOME PAGE AND CONTENT PAGES */

#hero {
    margin-top:  -8px;
	background: url(../img/mainImg.jpg) center center no-repeat;
	background-size: cover;
	clear: both;
	width: 100%;
    height:  74vh;
    border-bottom:  2px solid #112146;
}
#contentHero { 
    margin-top: -8px; 
    border-bottom:  2px solid #112146;
}
#contentHero .heroHeadline {
	padding: 200px 0;
}


/*	C. HEADER, MENU AND SEARCH
	. . . . . . . . . . . . . . . . . . . . */


header {
    position: absolute;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #97B1DC;
}

header .mainContain { 
    max-width: 94% !important;
    padding: 0 3% !important;
}

.logo { 
	margin: 0 auto;
	width: 300px;
	position: relative;
	z-index: 9999;
	text-align: center;

}
.logo img {
	/*margin-top: -104px;*/
	max-height: 105px;
	background: #FFF;
}

.menuL {
    position: relative;
    z-index: 999;
    float: left;
    width: 45%;
    height: 70px;
    line-height: 70px;
    font-family: 'Nanum Gothic',sans-serif;
    font-weight: 400;
}
.menuL ul {
    list-style: none;
    position: relative;
    z-index: 999;
    width: 100%;
}
.menuL ul li {
	position: relative;
	z-index: 101;
    list-style: none;
    float: left;
    width: 50%;
    padding: 0;
    line-height: 70px;
    font-size: 1.2em;
}
.menuL ul li a {
    position: relative;
    z-index: 101;
    color: #112146;   
    font-weight: 400;
}
.menuL ul li a:hover {
	color: #97B1DC;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.menuR {
    float: right;
    width: 45%;
    height: 70px;
    line-height: 70px;
}
.menuR ul {
    list-style: none;
    width: 100%;
    font-family: 'Nanum Gothic',sans-serif;
}
.menuR ul li {
    list-style: none;
    float: left;
    width: 50%;
    text-align: right;
    padding: 0;
    line-height: 70px;
    font-size: 1.2em;
    font-weight: 400;
}
.menuR ul li a {
    color: #112146;
    font-weight: 400;    
}
.menuR ul li a:hover {
	color: #97B1DC;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.subHeadContain {
	position: absolute;
	top: 71px;
	z-index: 99;
	width: 100%;
	border-bottom: 1px solid #97B1DC;
	background: #FFF;
}

.subHeadContain .mainContain { 
    max-width: 94% !important;
    padding: 0 3% !important;
}
.subHead {
	height: 34px;
	line-height: 34px;
	margin: 0 auto;
	max-width: 1160px;
	font-size: .85em;
}
.tagline { 
	font-style: italic; 
	color: #666;
}
.subHead ul { list-style: none; }
.subHead ul li {
	float: right;
	font-weight: 700;
	padding: 0 12px;
}
.subHead ul li a { font-weight: 700; }

.menuBadge {
	display: none;
}
.menuBadge img {
    display: none;
}
nav {
    display: none;
}
#hiddenMenu {
    display: none;
}
.menuBuild {
    display: none;
}

/* The side navigation menu */

.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 10055; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background: rgba(31,46,97, 0.825);
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 0;
    text-decoration: none;
    font-size: 1.35em;
    display: block;
    color: #EFEFEF;
    -webkit-transition: all .33s ease-in-out;
    -moz-transition: all .33s ease-in-out;
    -o-transition: all .33s ease-in-out;
    transition: all .33s ease-in-out;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    -webkit-transition: all .33s ease-in-out;
    -moz-transition: all .33s ease-in-out;
    -o-transition: all .33s ease-in-out;
    transition: all .33s ease-in-out;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 60px;
    margin-left: 50px;
    color: #FFF;
    opacity: 80;
}

.sidenav ul { list-style: none; }
.sidenav ul li { 
    list-style: none;
    margin-left: 20px;
    display: block;
    padding: 4px 0;
    border-bottom: 1px solid #112146;
}

.social { padding: 10px 10px 10px 32px; }

.sidenav img { 
	float: left;
	max-width: 48px;
	margin-right: 5px; 
}
.sidenav img:hover { 
        background: #DA2A3E; 
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
}
.sidenav h4 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.0rem;
	color: #FFF;
}



/*	D. CONTENT
	. . . . . . . . . . . . . . . . . . . . */

article ul { 
    list-style: none; 
    margin-bottom: 20px;
}
article ul li {
    list-style: none;
    margin-left: 12px;
    padding: 7px 0 7px 15px;
    background: url(../img/arrow.png) 0 12px no-repeat;
    line-height: 1.3em;
}
.siteAd { 
	margin-top: 35px; 
	padding-bottom: 60px;
	border-bottom: 1px solid #000;
}

/*** MAIN IMAGE HOME PAGE ***/
.heroHeadline { 
	margin: 0 auto;
	padding: 200px 0; 
}
.heroHeadline h1 {
	text-align: right;
	font-size: 5.0em;
	line-height: 1.0em;
	text-transform: uppercase;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400 !important;
	color: #FFF;
	text-shadow: 0 0 10px #617091, 0 0 10px #617091, 0 0 10px #617091;
    letter-spacing: 0.05em;
}
.heroHeadline p { 
	text-align: center;
        color: #FFF;
	font-size: 1.75em;
	font-weight: 600;
	line-height: 1.15em;
	text-shadow: 0 0 10px #617091, 0 0 10px #617091, 0 0 10px #617091;
}
.heroHeadline .sm { 
	color: #FFF;
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1.15em;
	text-shadow: 0 0 10px #112146, 0 0 10px #112146, 0 0 10px #112146;
}
.heroHeadline a { color: #CCC; }
.heroHeadline a:hover { color: #FFF; }
.kk { 
	position: absolute;
	top: 180px; 
	right: 0;
	z-index: 999;
}
.kkSub { 
	margin-left: 140px; 
	max-width: 300px;
	background: rgba(31,46,97,1.0);
	box-shadow: 0 0 15px #333;
}
.formSub { 
	position: relative;
	z-index: 100;
	margin: 146px 0 0 132px; 
	max-width: 300px;
}
.kkSub img { max-width: 300px; }

/***CONTENT PAGE MAIN IMAGE ***/

.heroHeadlineAbout { 
	margin: 0 auto;
	padding: 100px 0 100px 50%; 
}
.heroHeadlineAbout h1 {
	text-align: left;
	font-size: 4.0em;
	line-height: 1.0em;
	text-transform: uppercase;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 300;
	color: #444;
}
.heroHeadlineAbout p { 
	color: #444;
	font-size: 1.25em;
	font-weight: 300;
	line-height: 1.15em;
}

.inner {
    margin: 5px 10px;
    padding: 0 10px;
}
.navy-line {
    clear: both;
    display: block;
    margin: 0 auto !important;
    width: 60px;
    height: 1px;
    padding-top: 12px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.navy-line2 {
    width: 100px;
    height: 1px;
    margin: 30px auto 30px;
    border-bottom: 1px solid #CCC;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.navy-line3 {
    max-width: 800px;
    height: 1px;
    margin: 10px auto 30px;
    border-bottom: 1px solid #CCC;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.featured {
	padding: 0 0 50px 0;
	background: #113870 url(https://www.vinciklawoffice.com/img/testBG.jpg);
	background-position: center center;
        background-attachment: fixed; 
	background-repeat: no-repeat;
	background-size: cover; 
	min-height: 300px;
	border-top: 3px solid #00794F;
	border-bottom: 3px solid #00794F;
    margin-top: 80px;
}
.featured h2 { 
	color: #FFF; 
	margin-bottom: 20px;
}
.featured h4 { 
	color: #FFF;
}
.featured ul { list-style: none; }
.featured ul li { 
	margin-left: 15px;
	padding: 7px 0 7px 12px;
	background: url(../img/arrow.png) 0 12px no-repeat;
	line-height: 1.15em;
}
.featured ul li a { color: #FFF; }
.featured ul li .date { 
	font-size: .85em;
	color: #CCC;
	font-style: italic;
}
.featured ul li a:hover { color: #00794F; }
.featured p { color: #FFF; }
.featured .labelOut { color: #FFF; }
.featured textarea{ height: 36px; }
.featured .large { font-size: 1.25em; }
.artWerks { 
	padding: 30px 0 30px 0;  
}
.artWerks .inner {
	padding: 12px;
}
.artWerks h4 {
	padding-bottom: 12px;
}
.awP { 
	height: 160px;
	overflow: hidden;
}
.artImg { 
	height: 200px;
	overflow: hidden;
}
.artImg img { 
	min-height: 200px;
	max-width: 200%;
}
.artInfo { 
	text-align: center;
	padding: 5px 0;
}

.dittoPost { 
	margin-bottom: 20px; 
}
.dittoPost h5 { 
    height: 28px;
    overflow: hidden;
}
.fpInner { 
	margin: 10px; 
	padding: 15px;
	background: #EFEFEF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.fpInner:hover { 
	background: rgba(218, 42, 62, 0.152); 
	-webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
}

.dpImgOut {
	height: 150px;
	overflow: hidden;
        background: url(https://www.vinciklawoffice.com/img/rkBlog.jpg) center center;
	background-size: cover;
	margin-bottom: 10px;
}

.dpImg {
	height: 150px;
	overflow: hidden;
	background: url(https://www.vinciklawoffice.com/img/rkBlog.jpg) center center;
	background-size: cover;
	margin-bottom: 10px;
}
.dpText {
	height: 287px;
	overflow: hidden;
}

.dpText h4 { 
	font-size: 1.35em; 
	font-weight: 300;
	color: #23A2C3;
	line-height: 1.25em;
	
}
.dpLink { 
	padding-top: 10px;
	font-size: 1.4125em;
	font-family: 'Bebas Neue', sans-serif;
    font-weight: 300;
}

.dpText p { line-height: 1.55em; }


/*	E. RIGHT / LEFT COLUMN
	. . . . . . . . . . . . . . . . . . . . */

.block {
    margin: 20px 0;
}

.block ul {
    list-style: none;
    margin-bottom: 20px;
}
.block ul li {
    list-style: none;
    line-height: 1.25em;
    padding: 4px 0 4px 0 !important;
    background: none;
    text-transform: capitalize;
}
.block ul li:hover { 
	-moz-transition: opacity .75s ease-in-out;
    -webkit-transition: opacity .75s ease-in-out;
    -o-transition: opacity .75s ease-in-out;
}
.block ul li a {
    text-transform: capitalize;
}
.block ul li.active a {
    font-style: italic;
    color: #666;
    text-transform: capitalize;
}
.block ul li.active ul li a {
    font-style: normal;
    color: #000;
}
.block ul li ul li.active a {
    font-style: italic;
    color: #666;
}
.block ul li ul li.active ul li a {
    font-style: none;
    color: #AA1111;
}
.block ul li ul li ul li.active a {
    font-style: italic;
    color: #666;
}
.block ul li ul li {
    margin-left: 25px;
}



/*	F. FOOTER
	. . . . . . . . . . . . . . . . . . . . */

footer {
    padding-top: 15px;
    line-height: 1.35em;
    border-top: 2px solid #97B1DC;
}
footer .grid33 { padding-top: 5px; }
.footBot { 
	width: 100%; 
	background: #FFF;
	padding: 7px 0; 
    font-size: 0.8em;
}

.cfJoin { 
	padding: 4px 10px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background: #00794F;
	color: #FFF;
}
.copy { 
	height: 38px;
	line-height: 38px;
	font-size: .85em;
	color: #AAA;
}


/*	G. SPECIAL STYLINGS
	. . . . . . . . . . . . . . . . . . . . */

.boxShadow {
   border-radius: 4px;
   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
   box-shadow: 0 0 12px #97B1DC, 0 0 12px #97B1DC, 0 0 12px #97B1DC;
}
   #services { 
      padding: 50px 0;
      border-top: 2px solid #97B1DC;
   }
   .innerB { 
      margin: 10px;
      padding: 20px;
      background: #e6effc;
      border-radius: 7px;
   }
   .innerB:hover {
      box-shadow: 0 0 12px #97B1DC, 0 0 12px #97B1DC, 0 0 12px #97B1DC;
      -webkit-transition: all .5s ease-in-out;
      -moz-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
   }
   .innerC { 
      margin: 10px;
      padding: 20px;
      background: #EFEFEF;
      border-radius: 7px;
   }
   .innerC:hover {
      box-shadow: 0 0 12px #97B1DC, 0 0 12px #97B1DC, 0 0 12px #97B1DC;
      -webkit-transition: all .5s ease-in-out;
      -moz-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
   }
.inner250 { 
    height:  250px; 
    padding:  0 24px;
}
   .noArrow { background: none; }
   .pad30 { padding: 30px 0 10px; }
.lineBG { 
    margin:  0 60px;
    height: 110px;
    line-height: 110px;
    text-align:  center;
    background:  url(../img/lineBG.png) center center no-repeat;
}
.lineLink { 
    padding: 7px 10px;
    border:  1px solid #97B1DC;
    background:  #FFF;
    color:  #112146;
    border-radius:  5px;
    -webkit-border-radius:  5px;
    box-shadow: 0 0 7px #c1d3f0, 0 0 7px #c1d3f0, 0 0 7px #c1d3f0;
}
.lineLink:hover {
    background:  #97B1DC;
    color:  #FFF;
    padding: 7px 10px;
    border-radius:  5px;
    -webkit-border-radius:  5px;
}
.blurb {
    float:  left;
    width:  300px;
    margin-top:  -150px;
    border-top:  2px solid #112146;
    background:  #FFF;
}
.blurb .inner { padding: 10px 20px; }
.subHead ul li.red { 
   background: #AA1111;
   border-left: none; 
}
#content { margin-bottom: 30px; }
#practice {
	margin-top: -52px;
	background: #EFEFEF;
	border-top: 2px solid #CCC;
	border-bottom: 2px solid #CCC;
	padding: 60px 0;
}
#practice a { color: #444; }
#practice a:hover { color: #112146; }
.pad50 { padding-top: 50px; }
.hidden{
     opacity:0;
}
.visible{
     opacity:1;
}
.zoom img {
    -moz-transition: opacity .75s ease-in-out;
    -webkit-transition: opacity .75s ease-in-out;
    -o-transition: opacity .75s ease-in-out;
}
.zoom img:hover {
    transform: scale(1.2); 
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.portfolio .inner { padding: 20px; }
.portfolio a:hover {
        font-size: 1.2em; 
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
}
.red { color: #AA1111; }
.listImg {
    height: 360px;
    overflow: hidden;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.listImg h4 {
    text-align: center;
    color: #FFF;
    font-size: 21px;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.8215);
}
.listHead { 
    padding-top: 272px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.exclusive {
    background: url(https://www.vinciklawoffice.com/img/exclusiveImg.jpg);
    background-size: cover;
}
.byOwner {
    background-image: url(https://www.vinciklawoffice.com/img/byOwnerImg.jpg);
    background-size: cover;
}
.coverArt:hover { 
    height: 360px;
    background: rgba(0, 0, 0, 0.6125); 
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.vintage {
    background: url(https://www.vinciklawoffice.com/img/vintageImg.jpg);
    background-size: cover;
}
.sold {
    background: url(https://www.vinciklawoffice.com/img/soldImg.jpg);
    background-size: cover;
}
.wanted {
    background: url(https://www.vinciklawoffice.com/img/wantedImg.jpg);
    background-size: cover;
}

.airImg { height: 170px; }

.inset {
    color: #AAA;
    font-size: .85em;
    line-height: 1.4125em;
}
.inset .inner { padding-top: 12px; }

/* TESTIMONIALS 2018 */
#testimonials2018 {
	margin: 0;
        margin-top: 30px;
	padding: 0;
	background: url(../img/testimonials.jpg) top center no-repeat;
	background-size: cover;
	overflow: hidden;
    border-top:  2px solid #97B1DC;
	/*grayscale for background image*/
    /*-webkit-filter: grayscale(40); 
    -webkit-filter: grayscale(40%); 
    -moz-filter: grayscale(40%);
    filter: grayscale(40%);  */
}

.title {
    position: relative;
    z-index: 1;
    padding: 40px 0 40px;
    position: relative;
    color: #666;
}
.title:after {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    /*background: rgba(255,255,255, 0.725);
    transform-origin: top right;
    -ms-transform: skew(-5deg, 0deg);
    -webkit-transform: skew(-5deg, 0deg);
    transform: skew(-5deg, 0deg);*/
}

.testContent {
	position: relative; 
	z-index: 5;
	float: left;
	clear: both;
	/*max-width: 400px;*/
	padding: 10px 40px 10px 100px;
	line-height: 1.5em;
}
.testImg {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
.testAuth {
	clear: both;
	width: 100%;
	font-weight: 700;
	color: #112146;
	text-align:right;
	font-size: 1.25em;
	padding: 20px 0 12px 0;
}
.delay { 
    animation-name: delay;
	-webkit-animation-delay: 3s;
	-moz-animation-delay: 3s; 
	animation-delay: 3s;  
}

/* END 2018 TESTIMONIALS */

.coBG {
	min-height: 400px;
	background-color: rgba(255, 255, 255, 0.8125);
}
.partners {
	min-height: 400px;
	background: url(https://www.vinciklawoffice.com/img/industriesBG.jpg) center center no-repeat;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.grid50 .block h4 { padding-bottom: 15px; }
.grid50 .block ul { 
	float: left;
	width: 50%;
	list-style: none; 
	marginm: 0;
}
.grid50 .block ul li {
	list-style: none;
	line-height: 1.2em;
	padding: 5px 0 !important;
	padding-left: 9px !important;
	background: url(../img/arrow.png) 0 10px no-repeat;
	border-bottom: none;
}
.c850 {
	margin: 0 auto;
	max-width: 850px;
	text-align: center; 
}
	
.grey {
 	margin-top: 20px;
 	padding: 25px 0 35px;
 	background: #EDEDED;
 	border-top: 1px solid #CCC /*113870*/;
 	border-bottom: 1px solid #CCC /*113870*/;
 }
 
 .grey2 {
 	margin-top: 0;
 	padding: 25px 0 50px;
 	padding-top: 0;
 	/*background: #FFF;*/
        background: #EFEFEF;
 	border-top: 1px solid #CCC /*113870*/;
 	border-bottom: 1px solid #CCC /*113870*/;
 }
.why {
   margin-top: 40px;
   padding: 40px 0;
   background: #EFEFEF;
   border-top: 1px solid #112146;
}
 .nPad {
 	padding-top: 0;
 	margin-top: 0;
 }
 .fpP {
 	height: 120px;
 }
 .medallion {
 	position: relative;
        z-index: 900;
        width: 100%;
 	text-align: center;
 }
 .medallion img {
 	max-width: 100px;
 	margin-top: -50px;
 }
 
 .medallion2 {
 	position: relative;
        z-index: 900;
        width: 100%;
 	text-align: center;
 }
 .medallion2 img {
 	max-width: 100px;
 	margin-top: -75px;
 }

 
.price { 
 	float: left;
 	width: 22.75%;
 	margin:10px 1%;
 	box-shadow: 0 0 5px #EBEBEB, 0 0 5px #EBEBEB, 0 0 5px #EBEBEB;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
 	border: 1px solid #555;
 }
 .priceHead {
 	width: 100%;
 	height: 36px;
 	line-height: 36px;
 	text-align: center;
 	background: #EBEBEB;
 	border-bottom: 1px solid #CCC;
 	border-top: 1px solid #CCC;
        padding: 0;
        margin: 0;
 }
.priceHead h5 { 
        margin: 0;
        padding-top:5px;
        font-family: 'Bebas Neue',sans-serif;
        color: #113870;
}

 .priceBody {
 	height: 250px;
        font-size: .85em;
 }
 .priceBot {
 	width: 100%;
 	font-size: 1.5em;
 	text-align: center;
 	background: #00794F;
 	padding: 15px 0;
 }
 .priceBot a {
 	color: #FFF;
 }
 .priceBot:hover {
 	background: #113870;
 }
.compare .grid100 { 
    height: 48px;
    line-height: 48px;
    border-bottom:1px dotted #CCC; 
}
.compare img { padding-top: 10px; }
.rowG { background: #EFEFEF; }
.compare .grid40 { height:48px;line-height: 48px; }
.compare .grid20 { height:48px;line-height: 48px; }
.red { color: #AA1111; }
.solutionsPrice .grid25 h4 { height: 64px; }
.reportS {  padding-top: 50px; }
.reportS2 {  padding-top: 100px; }
.emp {
    color: #113870;
    font-weight: bold;
    font-style: italic;
    font-size: 1.35em;
    line-height: 1.65em;
}
.Blog { max-width: 800px; }
.cfLink {
	padding: 7px 10px;
	background: #112146;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #FFF !important;
        box-shadow: 0 0 12px #97B1DC, 0 0 12px #97B1DC, 0 0 12px #97B1DC;
}
.cfLink:hover {
    background: #97B1DC;
    padding: 12px 15px;
	color: #FFF !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    box-shadow: none;
}
.quoteOwn { 
	padding: 0 50px 20px 50px;
	font-style: italic;
	color: #CCC !important;
}
.quotes {
	background: url(../img/quotes.png) top left no-repeat;
	padding: 0 0 0 45px;
	padding-top: 2px;
}
.tags { margin-bottom: 20px; }
.w800 { max-width: 850px; }
.smallIt {
    font-size: .85em;
    color: #666;
    font-style: italic;
}
.details { font-size: 1.15em; }
.rate { padding: 15px 0; }
.bordBot { border-bottom: 1px solid #CCC;margin-bottom: 20px; }
.wbIdea { 
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	background: #000;
	color: #FFF;
	padding: 10px;
	margin-bottom: 20px;
}
.orangeLink {
	background: #23A2C3;
	color: #FFF;
	padding: 5px 10px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.orangeLink:hover { color:#CCC; }	
.standout {
	background: #EBEBEB;
	padding: 5px 20px;
	color: #23A2C3;
        font-weight: bold;
        letter-spacing: .15em;
	text-transform: uppercase;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border: 1px solid #CCC;
}
.center {
    margin: 0 auto;
    text-align: center;
}
.small {
    font-size: .85em !important;
    line-height: 1.3em;
}
.large { 
	font-size: 1.15em; 
	line-height: 1.65em;
	margin-bottom: 35px;
}
.m { 
    font-style: italic;
    color: #97B1DC;
}
.ventures {
    color:  #112146;
}
.hilite {
    color: #97B1DC;
    font-style: italic;
}
.hilite2 {
    font-weight: bold;
    color: #112146;
}
.hilite3 {
   font-weight: 700;
   font-style: italic;
   font-size: 1.2em;
}
.hiliteRed {
    color: #FFF;
    background: #AA1111;
    padding: 4px 7px;
    text-transform: uppercase;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.blue { 
	color: #113870; 
	font-style: italic;
}
.green { 
	color: #00794F; 
	padding: 5px 0;
	
}
.right { text-align: right; }

.button {
    color: #FFF;
    font-weight: 700;
    padding: 7px 15px;
    border: 1px solid #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 .75em #de7d7d;
    background: #aa1111;
}

.button:hover {
    color: #CCC;
}
.postInfo {
    clear: both;
    margin: 20px 0;
    padding: 5px 0;
    height: 36px;
    line-height: 36px;
    width: 100%;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}
.postInfo .grid40 h4 { text-align:left; }
.authorInfo {
    clear: both;
    margin: 20px 0;
    padding: 12px 0;
    line-height: 1.25em;
    width: 100%;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    font-style: italic;
    color: #666;
}
.shareThis { text-align: right; }
.heroShort { max-width: 550px; }

.social img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.social img:hover { 
    background: #23A2C3;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

/* FLEX BOX */
.flex-container {
   display: flex;
   flex-direction: row;
   align-content: center;
   align-items: center;
   padding: 60px 0;
}
.flex-child-1 {
   float: left;
   width: 50%;
   justify-content: center;
   align-items: center;
}

/*	H. IMAGE CLASSES
	. . . . . . . . . . . . . . . . . . . . */

.heroImage { 
	width: 100%;
	background: url(https://www.vinciklawoffice.com/img/mainImg-1.jpg);
	background-position: center center; 
	background-repeat: no-repeat;
	background-size: cover;
	overflow:hidden;
	border-bottom: 2px solid #737373;
}
.heroImage2 { 
	width: 100%;
	height: 550px;
	background: url(../img/mainImg.jpg);
	background-position: center center; 
	background-repeat: no-repeat;
	background-size: cover;
	overflow:hidden;
	border-bottom: 2px solid #23A2C3;
}
.imgRight {
    float: right;
    max-width: 35%;
    margin: 10px 0 10px 10px;
}
.imgRound {
   float: right;
   width: 75px;
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
}

.imgLeft {
    float: left;
    max-width: 35%;
    margin: 12px 12px 12px 0;
}

.imgFull {
    width: 100%;
    margin: 10px 0;
}

/*	I. FORMS AND NEWSLETTER
	. . . . . . . . . . . . . . . . . . . . */
.post-content { padding-bottom: 5px !important;border-bottom:1px dotted #ebebeb !important; }
.quip-comment-body { background: #EFEFEF;border-bottom: 1px solid #CCC; }
.labelOut {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.formIn {
    float: left;
    width: 95%;
    margin-bottom: 4px;
    padding: 7px 0 7px 2%;
    border: 1px solid #CCC;
    font-size: .85em;
    color: #444;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.formIn:focus { 
    padding:7px 0 6px 2%; 
    background: #EFEFEF;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-bottom: 2px solid #112146;
}

textarea {
    float: left;
    width: 95%;
    height: 70px;
    padding:7px 0 7px 2%;
    margin-bottom: 7px;
    border: 1px solid #CCC;
    font-size: 14px;
    resize: vertical;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

textarea:focus { 
    padding:7px 0 6px 2%; 
    background: #F2F2F2;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-bottom: 2px solid #112146;
}
.cfDown a {
    color: #FFF;
}
.cfDown {
    padding: 6px 10px;
    border: 1px solid #253053;
    border-radius: 5px;
    -moz-border-radius: 5px;
    color: #FFF;
    background: #1e987e;
}
.cfContact {
    float: left;
    width: 50%;
    max-width: 150px;
    margin-top: 5px;
    color: #FFF;
    text-transform: uppercase;
    padding: 7px 2%;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #112146; 
    border: none; 
    font-size: 16px;
    box-shadow: 0 0 7px #97B1DC, 0 0 7px #97B1DC, 0 0 7px #97B1DC;
}
.cfContact:hover { 
    color: #FFF; 
    background: #97B1DC;
    box-shadow: none;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


/*	J. COMMENTS / PAGINATION
	. . . . . . . . . . . . . . . . . . . . */

/*******************************************
		PAGINATION
*******************************************/
ul.PagingNav {
    clear: both;
    width: 100%;
    height: 60px;
    float: left;
    list-style: none;
    display: block;
    text-align: center;
}

ul.PagingNav li {
    float: left;
    text-align: center;
    line-height: 1.0em;
    padding: 5px;
    margin: 0 1px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #23A2C3;
    background: #23A2C3; 
}

ul.PagingNav li a {
    color: #FFF;
}

ul.PagingNav li a.active {
    color: #CCC;
}


/*	L. GRID SYSTEM
	. . . . . . . . . . . . . . . . . . . . */
	
.grid10 {
    float: left;
    width: 10%;
}

.grid20 {
    float: left;
    width: 20%;
}

.grid25 {
    float: left;
    width: 25%;
}

.grid30 {
    float: left;
    width: 30%;
}

.grid33 {
    float: left;
    width: 33%;
}

.grid35 {
    float: left;
    width: 35%;
}

.grid40 {
    float: left;
    width: 40%;
}

.grid45 {
    float: left;
    width: 45%;
}

.grid50 {
    float: left;
    width: 50%;
}

.grid55 {
    float: left;
    width: 55%;
}

.grid60 {
    float: left;
    width: 60%;
}

.grid65 {
    float: left;
    width: 65%;
}

.grid67 {
    float: left;
    width: 67%;
}

.grid70 {
    float: left;
    width: 70%;
}

.grid75 {
    float: left;
    width: 75%;
}

.grid80 {
    float: left;
    width: 80%;
}

.grid85 {
    float: left;
    width: 85%;
}

.grid90 {
    float: left;
    width: 90%;
}

.grid95 {
    float: left;
    width: 95%;
}

.grid100 {
    float: left;
    width: 100%;
}


/*  L. FRONT PAGE STYLINGS
	. . . . . . . . . . . . . . . . . . . . */


/*	M. RESPONSIVE STYLING: 320 - 767 WINDOWS
	. . . . . . . . . . . . . . . . . . . . */
	
@media only screen and (min-width: 320px) and (max-width: 767px) {

    body { font-size: 1.2em; }
    header { 
        height: 100px;
        line-height: 100px;
    }
    .menuR, .menuL { display: none; }
    .menuBadge {
        display: block;
        float: right;
        width: 20%;
        line-height: 100px;
    }
    .menuBadge img { display: block; }
    .menuIcon img { max-height: 100px; }
    .logo { 
       float: left; 
       height: 100px;
       overflow: hidden;
    }
    .logo img { max-height: 100px; }
    .subHeadContain { display: none; }
    .mainContain { width: 96%;  }
    .blurb {
        float: none;
        width: auto;
        margin-top: 0;
        border-top: none;
    }
    .blurb h5 { text-align: center; }
    .lineBG { margin-bottom: 30px; }
    #testimonials2018 { margin-top: 0; }
    #testimonials2018 .title { padding-top: 0; }
    #testimonials2018 h3 { text-align: center; }
    .grid67 { width: 100%; }
    .grid60 { width: 100%; }
    .grid50 { width: 100%; }
    .grid40 { float: none; width: 100%; }
    .grid33 { width: 100%; }
    .grid30 { width: 100%; float: none; }
    .grid70 { width: 100%; }
    .grid25 { width: 100%; }
    .inner {
        margin: 0;
        padding: 10px;
    }
    .formIn { padding: 12px 2%; }
    .cfContact {
        font-size: 18px;
        padding: 12px 2%;
        max-width: 250px;
    }
    footer { font-size: 1.0em; }
    footer .grid33 { text-align: center; }
    footer .grid33 .right { text-align: center; }
    footer .grid33 .imgRight {
        float: none;
        width: 100%;
    }
    .formIn {
        width: 96%;
        margin-right: 0;
        padding: 12px 2%;
    }
    textarea {
        width: 96%;
        margin-right: 0;
        padding: 5px 2%;
    }

    .block ul li { background: none; }
    .imgRight {
        width: 50% !important;
        max-width: 50%;
    }
    .nivoSlider { max-width:100% !important; height: auto !important; }
    .dadBoy { display: none; }
    .postInfo .grid40 { display: none; }
    .postInfo .grid60 img { float: none; }
    .contentCont ul { margin-left: 0; }
    .nivoSlider img { 
    	border: none !important; 
    	border-radius: none !important;
    	-moz-border-radius: none !important;
    	-webkit-border-radius: none !important; 
    }
    .socialMenu { 
    	width: 90%;
    	padding: 10px 5%;
    	background: #000;
    }
    .socialMenu img { 
    	float: left; 
    	margin-right: 10px;
    }
    .large { font-size: 1.0em;} 
    .heroHeadline h1 { font-size: 4.5em; }
    .heroHeadline p { line-height: 1.2em; }
    .heroHeadline2 { 
		padding: 40px 5%;
    }
    .heroHeadline2 p { line-height: 1.2em; }
    .orangeLink { clear: both; }
    .solutionsPrice .grid25 { width: 100%; }
    .awP { height: 150px; }
    .firstContent .inner { padding-top: 20px; }
    .firstContent .grid50 { width: 50%; }
    .compare .grid40 { float:left; width:40%;font-size:.85em; }
    .compare .grid20 { float:left;width:20%;font-size:.85em; }
    .price { width: 96.5%; }
    .singleColumn .grid20 { width: 100%; }
    .rightInv { width: 100%; }
    .grid20 { float: none; width: 100%; }
    .portfolio .padN {
		padding-top: 20px;
	}
    .content { padding: 15px; }
    #hero .heroHeadline { 
        padding-top: 200px; 
    }
    #hero .heroHeadline h1.right {
        text-align: center;
    }
    #contentHero {
       clear: both;
    }
    #contentHero .heroHeadline {
	padding: 160px 0;
    }
    #contentHero h1.right { text-align: center; }
    #testimonials2018 { font-size: 1.2rem; }
    .kkSub { display: none; }
/* TESTIMONIALS 2018 */
    #testimonials2018 {
	margin: 0;
        margin-top: 30px;
	padding: 0;
	background: none;
	overflow: hidden;
    }
    .title {
        padding: 40px 0;
    }
    .title:after {
        background: rgba(255,255,255, 0.725);
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    .testContent {
	width: 90%;
	padding: 10px 5% 10px 5%;
    }
   .cfLink { display: block; width: 90%; margin: 4px 3% 10px; }
   .cfLink:hover { padding: 7px 10px; }
   .inner250 { height: auto; }
   .testAuth { text-align: left; }

}

/*	N. RESPONSIVE STYLING: 768 - 959 WINDOWS
	. . . . . . . . . . . . . . . . . . . . */
	
@media only screen and (min-width: 768px) and (max-width: 959px) {

    body { font-size: 1.2em; }
    header { 
        height: 100px;
        line-height: 100px;
    }
    .menuR, .menuL { display: none; }
    .menuBadge {
        display: block;
        float: right;
        width: 20%;
        line-height: 100px;
    }
    .menuBadge img { display: block; }
    .menuIcon img { max-height: 100px; }
    .mainContain { width: 90%; }
    .subHeadContain { display: none; }
    .logo { 
        float: left; 
        max-height: 100px;
    }
    .logo img { max-height: 100px; }
    .inner {
        margin: 0;
        padding: 10px;
    }
    .inner250 { height: auto; }
    .innerR {
        margin: 0;
        padding: 10px;
    }
    .innerL {
        margin: 0;
        padding: 10px;
    }
    .lineBG { margin-bottom: 30px; }
    .formIn { padding: 12px 2%; }
    .cfContact {
        font-size: 18px;
        padding: 12px 2%;
        max-width: 250px;
    }
    footer .grid33 { text-align: center; }
    footer .grid33 .right { text-align: center; }
    footer .imgRight {
        float: none;
        width: 100%;
    }
    footer .navy-line2 { display: none; }
    .nivoSlider { max-width:100% !important; height: auto !important; }
    .dadBoy { display: none; }
    .footer .grid25 { width: 100%; }
    .foot50 { width: 50%; }
    .footRight { width: 100%; }
    .telephone { 
    	width: 90%;
    	margin: 0 5%;
    	font-size: 1.2em;
    }
    .postInfo .grid40 { width: 40%; }
    .postInfo .grid40 h4 { font-size: 1.2em; }
    .postInfo .grid60 { width: 60%; }
    .socialMenu { 
    	width: 90%;
    	padding: 10px 5%;
    	background: #000;
    }
    .socialMenu img { 
    	float: left; 
    	margin-right: 10px;
    }
    .large { 
		font-size: 1.0em;
	} 
    .heroHeadline h1 { 
        text-align: center; 
        padding-top: 200px;
    }
    article.dittoPost { width: 100%; }
    .solutionsPrice .grid25 { width: 50%; }
    .firstContent .inner { padding-top: 20px; }
    .firstContent .grid50 { width: 50%; }
    .awP { height: 184px; }
    .secondContent { height: auto; }
    .secondContent .grid50 { width: 50%; }
    .portfolio .padN { padding-top: 30px; }
    .compare .grid40 { float:left; width:40%; }
    .compare .grid20 { float:left;width:20%; }
    .price { width: 46.5%; }
    .grid25.inset { width:50%; }
    .singleColumn .grid20 { width: 33%; }
    .rightInv { width: 100%; }
    .grid20 { float: none; width: 100%; }
    .portfolio .padN {
		padding-top: 30px;
	}
    #contentHero { clear: both; }
    #contentHero .heroHeadline {
	padding: 160px 0;
    }
    .grid67 { width: 100%; float: none; }
    .grid33 { width: 100%; float: none; }
    .kkSub { margin-left: 40px; }
    .title:after {
        background: rgba(255,255,255, 0.725);
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    #testimonials2018 {  
        background: url(../img/testimonials-2.jpg) top center no-repeat; 
        background-size:  cover;
    }
    .testContent {
	max-width: 90%;
	padding: 10px 5% 10px 5%;
    }
   #testimonials2018 .grid50 { width: 40%; }
   #testimonials2018 .title { width: 60% !important; }
   .inner250 { height: auto; }
   .testAuth { text-align: left; }

}

/*	N2. RESPONSIVE STYLING: 1450 - 3000 WINDOWS
	. . . . . . . . . . . . . . . . . . . . */
	
@media only screen and (min-width: 1450px) and (max-width: 3000px) {

    .firstContent { 
       height: 750px; 
       font-size: 1.2em;
    }
    .title { padding: 60px 0; }
    #contentHero .heroHeadline {
	padding: 220px 0;
    }

}

/*	O. HEADERS
	. . . . . . . . . . . . . . . . . . . . */
h1,
h2, h3, h4, h5 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: normal;
    font-weight: 300;
    margin: 0px;
}

h1 {
    font-size: 4.5em;
    color: #444;
    padding: 20px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 300 !important;
    text-transform: uppercase;
}

h2 {
    font-size: 3.15em;
    color: #112146;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500;
    padding:15px 0;
    margin-top: 0;
    text-transform: uppercase;
}

h3 {
    font-size: 2.75em;
    color: #112146;
    padding: 15px 0 20px 0;
    line-height: 1.1em;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500 !important;
    text-transform: uppercase;
}

h4 {
    font-size: 2.35em;
    color: #112146;
    line-height: 1.1em;
    margin: 2px 0 17px 0 !important;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500 !important;
    text-transform: uppercase;
}

h5 {
    font-size: 1.15em;
    color: #112146;;
    margin: 7px 0 5px;
    font-weight: 700 !important;
    font-family: 'Nanum Gothic',sans-serif;
    text-transform: uppercase;
}

/*	HEADERS: 320 - 767 WINDOWS
	. . . . . . . . . . . . . . . . . . . . */
@media only screen and (min-width: 320px) and (max-width: 767px) {

   .heroHeadlineAbout h1 { 
        text-align: center;
        font-size: 3.0em; 
    }
   .heroHeadline h1 {font-size: 3.0em; }
   #hero .heroHeadline { padding-top: 100px; }

}