/*
Theme Name : R'Folio

Theme URI  : http://themeforest.net/item/rfolio-single-page-html5css3-portfolio-theme/3731023

Description: Single Page Portfolio HTML Theme.
Version    : 1.2
Author     : D&I
Author URI : http://themeforest.net/user/D-and-I
*/


/*
***********************
*  Resets
***********************
*/

/*
Switch box sizing model to border-box.
Width = content width + padding + border.
*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing   : border-box;
  -ms-box-sizing    : border-box;
  box-sizing        : border-box;
}

/* Remove default margins and paddings from all elements */

* {
  margin : 0;
  padding: 0;
}

/* Remove unnecessary gaps below images */

img {
  vertical-align: bottom;
}

/* Remove unnecessary gaps between table cells */

table {
  border-collapse: collapse;
  border-spacing : 0;
}

/* Remove borders and outlines from all elements */

* {
  border : none;
  outline: 0;
}

:focus{
  outline: 0;
}

/* Remove background color from all elements */

* {
}

/* Remove markers from lists */

li {
  list-style: none;
}

/* Remove text-decoration */

a, a:hover, a:visited, ins, del {
	text-decoration: none;
	color: #AFAFAF;
}

/* Remove quotes */

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

/*Display property for HTML 5 elements*/

section, article, aside, hgroup, header, footer, nav, figure, figcaption {
  display: block;
}

time, mark {
  display: inline;
}

/*
***********************
*  Custom Fonts
***********************
*/

/*
Modern Pictograms
http://www.fontsquirrel.com/fonts/modern-pictograms
*/

@font-face {
    font-family: 'ModernPictograms';
    src: url('../fonts/modern_pictograms/modernpics-webfont.eot');
    src: url('../fonts/modern_pictograms/modernpics-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/modern_pictograms/modernpics-webfont.woff') format('woff'),
         url('../fonts/modern_pictograms/modernpics-webfont.ttf') format('truetype'),
         url('../fonts/modern_pictograms/modernpics-webfont.svg#ModernPictogramsNormal') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
Web Symbols
http://www.fontsquirrel.com/fonts/web-symbols
*/

@font-face {
    font-family: 'WebSymbols';
    src: url('../fonts/web_symbols/WebSymbols-Regular-webfont.eot');
    src: url('../fonts/web_symbols/WebSymbols-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/web_symbols/WebSymbols-Regular-webfont.woff') format('woff'),
         url('../fonts/web_symbols/WebSymbols-Regular-webfont.ttf') format('truetype'),
         url('../fonts/web_symbols/WebSymbols-Regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
Social Glyphs
*/

@font-face {
    font-family: 'Social Glyphs';
    src: url('../fonts/social-glyphs/socialglyphs-regular.eot');
    src: url('../fonts/social-glyphs/socialglyphs-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/social-glyphs/socialglyphs-regular.woff') format('woff'),
         url('../fonts/social-glyphs/socialglyphs-regular.ttf') format('truetype'),
         url('../fonts/social-glyphs/socialglyphs-regular.svg#socialglyphs-regular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*
***********************
*  Basic Typography
***********************
*/

/*Base font-size: 1rem = 10px*/

html {
  font-size: 10px;
}

/*Default font settings*/

body {
  font-family:    'Open Sans', 'Arial', 'Helvetica', sans-serif;
  font-size:      1.4rem;
  font-weight:    normal;
  font-style:     normal;
  color:          #838383;
}

* {
  letter-spacing: normal;
  line-height:    150%;
}

/*
Ensure inheritance of font settings.
Note: letter-spacing and line-height are not inherited. Their values are calculated via * rule above.
*/

* {
  font-family:    inherit;
  font-size:      inherit;
  font-weight:    inherit;
  font-style:     inherit;
  color:          inherit;
}

/*
****************************
*  Common CSS3 transitions
****************************
*/

/*Does not effect the lightbox plugin (thanks to :not selector)*/

*:not([class*='fancybox']) {
  -webkit-transition: -webkit-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  -moz-transition: -moz-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  -o-transition: -o-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  -ms-transition: -ms-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  transition: transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
}

/*
***********************
*  Header
***********************
*/

/*Header bg*/

.site-header {
  width        : 100%;
  height       : 75px;
  margin-bottom: 90px;
  background   : #fff;
}

/*Site logo*/

.site-logo {
  height     : 75px; /*Must be = .site-header height */
  line-height: 75px; /*Must be = .site-header height*/
}

.site-logo img {
  vertical-align: middle;
  position      : relative;
  top           : -4px;
}


/*Site navigation*/

.site-nav {
  text-align: right;
}

.site-nav li {
  display    : inline-block;
  margin-left: 50px;
}

.site-nav li:first-child {
  margin-left: 0;
}

.site-nav li a {
  display       : inline-block;
  line-height   : 75px; /*Must be = .site-header height*/
  color         : #777;
  font-weight   : 400;
  font-size     : 1.3rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/*Navigation item hover state*/

.site-nav li a:hover {
  color: #84C318;
  -webkit-transform: translate(0px, -7px);
  -moz-transform   : translate(0px, -7px);
  -o-transform     : translate(0px, -7px);
  -ms-transform    : translate(0px, -7px);
  transform        : translate(0px, -7px);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .site-nav li a:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*
***********************
*  Slogan
***********************
*/

/*Slogan container*/

.slogan-wrap {
  width   : 100%;
  position: relative;
}

.bg-img {
  position: absolute;
  top     : 0;
  left    : 0;
  width   : 100%;
}

#slogan {
  margin-bottom: 40px;
}

/*Slogan*/

.slogan {
  margin-bottom : 10px;
  font-family   : 'Open Sans';
  text-align    : center;
  font-size     : 7rem;
  font-weight   : 400;
  letter-spacing: 0.02em;
  color         : #fff;
  line-height   : 120%;
}

.slogan span {
  background: rgba(0, 0, 0, 0.65);
}

/*Subslogan*/

.sub-slogan {
  font-size     : 2.6rem;
  text-align    : center;
  color         : #fff;
  line-height   : 120%;
  letter-spacing: 0.02em;
  margin-bottom : 30px;
  font-weight   : 300;
}

.sub-slogan span {
  background: rgba(0, 0, 0, 0.65);
}

.sub-slogan strong {
  color: #84C318;
}

/*
***********************
*  Common Styles
***********************
*/

/*Block  Heading*/

.container .block-heading {
  margin-bottom : 40px;
  font-family   : 'Open Sans';
  font-weight   : 300;
  text-align    : center;
  font-size     : 3.4rem;
  letter-spacing: 0.07em;
  color         : #84C318;
  line-height   : 120%;
  padding       : 10px 0;
  background: rgba(132, 195, 24, 0.85);
  color: #fff;
}

/*
***********************
*  Portfolio
***********************
*/

#portfolio .tiles {
  margin-bottom: 60px;
}

/*Filter*/

.container .filter {
  text-align   : center;
  margin-bottom: 35px;
}

.filter:before {
  content    : 'Filter:';
  font-weight: 700;
  font-size  : 1.8rem;
  color      : #fff;
}

.filter li {
  display    : inline-block;
  margin-left: 20px;
}

.filter li a {
  display      : inline-block;
  padding-left : 12px;
  padding-right: 12px;
  line-height  : 200%;
  color        : #fff;
  font-weight  : 700;
  font-size    : 1.8rem;
}

/*Filter - hover state*/

.filter li a:hover {
  cursor: pointer;
  color : #84C318;
}

/*Filter - active state*/

.filter li.active-filter a {
  display      : inline-block;
  font-weight  : 700;
  color        : #fff;
  background   : #84C318;
  border-radius: 7px;
}

/*Tiles*/

.tiles .column,
.tiles .columns {
  margin-bottom: 20px;
}

.tiles li {
  height       : 220px;
  border       : 4px solid #fff;
  border-radius: 220px;
  overflow     : hidden;
}

.tiles {
  margin-bottom: -20px;
}

.tiles img {
  width        : 100%;
  display      : block;
  border-radius: 220px;

}

.tiles a {
  border-radius: 220px;
  overflow     : hidden;
  position     : relative;
  display      : inline-block;
  width        : 100%;
  line-height  : 1;
}

/*Tile Overlay*/

.overlay {
  position     : absolute;
  top          : 0;
  left         : 0;
  padding-top  : 50px;
  width        : 100%;
  height       : 100%;
  border-radius: 220px;
  text-align   : center;
  color        : #FFF;
  background   : rgba(132, 195, 24, 0.9);
  opacity      : 0;
  overflow     : hidden;
}

.icon span {
  display: inline-block;
}

.icon span:before {
  content    : 'L';
  font-family: 'WebSymbols';
  font-size  : 3.2rem;
}

.icon {
  margin-bottom: 20px;
  position     : relative;
  top          : -100%;
}

.project-title {
  font-weight: 700;
  font-size  : 1.3rem;
  position   : relative;
  left       : -100%;
  font-size  : 1.6rem;
}

.tags {
  font-weight: 300;
  font-style : italic;
  font-size  : 1.3rem;
  position   : relative;
  left       : 100%;
  font-size  : 1.6rem;
}

/*Overlay hover state*/

.overlay:hover {
  opacity: 1;
}

.overlay:hover .icon,
.overlay:hover .project-title,
.overlay:hover .tags {
  top  : auto;
  left : auto;
  right: auto;
}

.icon span:hover {
  -webkit-transform: scale(1.5);
  -moz-transform   : scale(1.5);
  -o-transform     : scale(1.5);
  -ms-transform    : scale(1.5);
  transform        : scale(1.5);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .icon span {
  opacity: 0.75;
}

html.no-csstransitions .icon span:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;

  opacity: 1;
}

/*
***********************
*  Services
***********************
*/

.color-bg {
  padding-bottom: 1px;
  background    : #fff;
}

.color-bg .block-heading {
  margin-bottom: 50px;
  color        : #fff;
  border       : none;
  background: rgba(132, 195, 24, 1);
}

.color-bg p {
  color  : #777;
}

#services {
  text-align: center;
}

#services {
  padding: 45px 0;
}

#services .content-column {
  margin-bottom: 50px;
}

.big-icon {
  margin-bottom: 15px;
  font-family  : 'ModernPictograms';
  font-size    : 10rem;
  line-height  : 1;
  color        : #84C318;
}

.big-icon.layout:before {
  content: 'a';
}

.big-icon.pencil:before {
  content: 'e';
}

.big-icon.tools:before {
  content: '(';
}

.big-icon.camera:before {
  content: 'A';
}

.big-icon:hover {
  -webkit-transform: translate(0px, -20px);
  -moz-transform   : translate(0px, -20px);
  -o-transform     : translate(0px, -20px);
  -ms-transform    : translate(0px, -20px);
  transform        : translate(0px, -20px);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .big-icon:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

.content-title {
  margin-bottom: 10px;
  font-weight  : 700;
  font-size    : 2.4rem;
  color        : rgb(87, 87, 87);
}

body .slogan-on-color {
  font-size     : 2.7rem;
  color         : #84C318;
  line-height   : 120%;
  letter-spacing: 0.09;
  text-align    : center;
  opacity       : 1;
  font-weight   : 300;
}

/*
***********************
*  About
***********************
*/

/*About - heading*/

#about .column,
#about .columns {
  margin-bottom: 50px;
}

#about .block-heading {
  margin-top: 45px;
}

/*About - portrait*/

.portrait {
  position: relative;
  overflow: hidden;
  border  : 4px solid #fff;
}

.portrait img {
  width: 100%;
}

.portrait img:hover {
  -webkit-transition-duration: 1s;
  -moz-transition-duration   : 1s;
  -o-transition-duration     : 1s;
  -ms-transition-duration    : 1s;
  transition-duration        : 1s;

  -webkit-transform: scale(1.3);
  -moz-transform   : scale(1.3);
  -o-transform     : scale(1.3);
  -ms-transform    : scale(1.3);
  transform        : scale(1.3);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .portrait img:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*About - slogan*/

.slogan-on-light {
  font-size    : 3.2rem;
  color        : #fff;
  margin-bottom: 30px;
  line-height  : 120%;
}

.slogan-on-light span {
  background: #84C318;
}

/*Text in About section*/

#about p {
  margin-bottom: 20px;
  padding: 15px;
  color        : #fff;
  font-size    : 1.6rem;
  background   : rgba(0, 0, 0, 0.65);
}

#about p:last-of-type {
  margin-bottom: 0;
}

/*About - social*/

.social {
  text-align : left;
  margin-left: -9px;
}

.social li,
.social a {
  display: inline-block;
}

.social li {
  margin-left : 7px;
  margin-right: 7px;
  margin-top  : 25px;

  font-family  : 'Social Glyphs';
  width        : 40px;
  height       : 40px;
  text-align   : center;
  line-height  : 40px;

  font-size    : 2.8rem;
  color        : #fff;
  background   : #84C318;
  border       : 2px #fff solid;
  border-radius: 40px;
}

.social li:hover {
  color     : #84C318;
  background: #fff;
  border    : 2px #84C318 solid;

  -webkit-transform: rotate(360deg) translate(0px, -5px) scale(1.2);
  -moz-transform   : rotate(360deg) translate(0px, -5px) scale(1.2);
  -o-transform     : rotate(360deg) translate(0px, -5px) scale(1.2);
  -ms-transform    : rotate(360deg) translate(0px, -5px) scale(1.2);
  transform        : rotate(360deg) translate(0px, -5px) scale(1.2);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .social li:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

.social a[class*=icon]:before {
  position: relative;
  top     : -9px;
}

.twitter-icon:before {
  content: 't';
}

.facebook-icon:before {
  content: 'f';
}

.drible-icon:before {
  content: 'd';
}

.pinterest-icon:before {
  content: 'p';
}

.vimeo-icon:before {
  content: 'v';
}

.github-icon:before {
  content: 'j';
}

.behance-icon:before {
  content: 'b';
}

.flickr-icon:before {
  content: 'a';
}

/*
***********************
*  News
***********************
*/

#news {
  padding: 45px 0;
}

body .date-published {
  margin-top : 20px;
  color      : #84C318;
  font-weight: 400 !important;
  opacity    : 1;
}

.news-image {
  overflow     : hidden;
  margin-bottom: 20px;
}

.news-image img {
  width: 100%;
}

.news-image img:hover {
  -webkit-transition-duration: 1s;
  -moz-transition-duration   : 1s;
  -o-transition-duration     : 1s;
  -ms-transition-duration    : 1s;
  transition-duration        : 1s;

  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .news-image img:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*
***********************
*  Contact
***********************
*/

/*Contact Heading*/

#contact {
  margin-bottom: 50px;
}

#contact .block-heading {
  margin-top: 45px;
}

/*Google Map*/

#google-map {
  overflow     : hidden;
  height       : 390px;
  margin-bottom: 50px;
  border       : 6px solid #fff;
}

/*Contact details and form wrap*/

.contact-details-and-form-wrap {
  padding: 45px 0px;
}

/*Contact Details*/

.contact-details-list li {
  margin-bottom: 20px;
  position     : relative;
  color        : #fff;
}

.contact-details-list li p {
  opacity: 1;
}

.contact-name {
  font-weight: 700;
  color: #fff;
}

.contact-value {
  color  : #fff;
  opacity: 0.65 !important;
}

.contact-details-list li:before {
  font-family: 'ModernPictograms';
  color      : #84C318;
  position   : absolute;
  line-height: 100%;
  top        : 3px;
  left       : 0;
}

.contact-details-list li p {
  margin-left: 40px;
}

.phone-icon:before {
  content  : 'O';
  font-size: 4.5rem;
}

.email-icon:before {
  content  : '@';
  font-size: 4rem;
}

.address-icon:before {
  content  : ',';
  font-size: 4.5rem;
}

/*Contact form*/

.contact-form input:not([type='submit']),
.contact-form textarea {
  border             : 1px solid #ddd;
  border-radius      : 5px;
  font-family        : 'Verdana', serif;
  font-style         : normal;
  color              : #aaa;
  padding-left       : 15px;
  padding-right      : 15px;
  background         : url(../images/patterns/graphy-transparent.png);
  background-position: -10px 34px;
}

.contact-form input[type='text'] {
  width        : 220px;
  height       : 35px;
  margin-bottom: 20px;
  line-height  : 35px;
}

.contact-form textarea {
  height        : 215px;
  padding-top   : 5px;
  padding-bottom: 10px;
  margin-bottom : 20px;
}

.note {
  font-family: 'Verdana', serif;
  font-style : normal;
  position   : relative;
  top        : -8px;
}

.submit {
  text-align: right;
}

.submit button[type='submit'] {
  display : inline-block;
  width   : 102px;
  height  : 32px;
  position: relative;
}

.submit button[type='submit'] img  {
  position: absolute;
  top     : 0;
  left    : 0;
}

.submit button[type='submit']:hover {
  cursor: pointer;
}

.submit button[type='submit']:hover  img.default-img{
  opacity: 0;
}

/*
***********************
*  Call to action
***********************
*/

.call-to-action {
  margin-top: 100px;
  margin-bottom: 100px;
}

.call-to-action .slogan {
  font-size: 6rem;
}

.cta-button-wrap {
  text-align: center;
}

.cta-button {
  display : inline-block;
  width   : 216px;
  height  : 64px;
  position: relative;
}

.cta-button img {
  position: absolute;
  top     : 0;
  left    : 0;
}

.cta-button:hover {
  cursor: pointer;
}

.cta-button:hover img.img-default {
  opacity: 0;
}

/*
***********************
*  Site Footer
***********************
*/

.site-footer {
  width     : 100%;
  height    : 50px;
  text-align: center;
  background: #fff;
}

.copyright-link {
  line-height: 50px; /*Must be = .site-footer-height*/
  color      : #aaa;
  display    : inline-block;
}

.copyright-link:before,
.copyright-link:after {
  content    : '*';
  font-family: 'ModernPictograms';
  font-size  : 2.1rem;
  margin     : 0 10px;
  position   : relative;
  top        : 1px;
}

.copyright-link:hover {
  opacity: 1;
  color: #84C318;
}

/*
***********************
*  Go to Top Button
***********************
*/

.go-to-top {

  /*Button style*/

  display: block;
  width        : 50px;
  height       : 50px;
  background   : rgba(0, 0, 0, 0.5);
  border-radius: 10px;

  /*Icon symbol style*/

  font-size: 2.1rem;
  color    : #999;

  /*Align icon to button center*/

  line-height: 50px; /*Must = .go-to-top height*/
  text-align : center;

  /*Rotate button so arrow icon points up*/

  -webkit-transform: rotate(90deg);
  -moz-transform   : rotate(90deg);
  -o-transform     : rotate(90deg);
  -ms-transform    : rotate(90deg);
  transform        : rotate(90deg);

  /*Position button in bottom right corner of the window*/

  position: fixed;
  z-index : 1000;
  bottom  : 10px;
  right   : 10px;
}

.go-to-top:before {

  /*Icon symbol*/

  content    : '<';
  font-family: 'WebSymbols';
}

.go-to-top:hover {

  /*Button hover state*/

  background: #fff;
  color     : #84C318;
  cursor    : pointer;
}

/*
***********************
*  Page Background
***********************
*/

html {
  background             : url(../images/site-background/image-2.jpg);
  -webkit-background-size: cover;
  -moz-background-size   : cover;
  background-size        : cover;
  background-position    : 50% 50%;
  background-repeat      : no-repeat;
  background-attachment  : fixed;
}







/*
*
***********************
**********************************************
*********************************************************************
********************************************************************************************
********************************************************************************************
*********************************************************************
**********************************************
***********************
*
*/




/* MODIFICACIONES 15-06-11 */


.site-nav li{
  margin-left: 30px;
}


.slogan span{
 padding: 5px 10px;
 box-sizing:border-box;
}
.sub-slogan span{
 padding: 2px 8px;
 box-sizing:border-box;
}

.slogan-on-light span{
 padding: 4px 4px;
 font-size: 0.8em;
}

.tile{
  width: 220px;
  height: 220px;
  border: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 10px;
}

.tile a{
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  line-height: 1;
  margin: -2px;
}
.tile a .overlay{
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding-left: 10px; padding-right: 10px;
  box-sizing: border-box;
}
.tile .project-title{
  margin: 0;
  font-size: 1.1em;
  line-height: 1.1em;
}


/* MEDIA QUERIES */

@media (max-width: 976px) {


  iframe{width: 100% !important;}

  .container {
    width: 80%; }
  .column, .columns, .container .column, .container .columns {
    margin-left: 1% !important; margin-right: 0  !important;}
  .column:first-child,
  .columns:first-child {
    margin-left: 0  !important; }

  .container .one.column,
  .container  .one.columns                    { width: 4.255326% ; }
  .container  .two.columns                    { width: 10.638315% ; }
  .container  .three.columns                  { width: 100% ;  }
  .container  .four.columns                   { width: 23.404293% ; }
  .container  .five.columns                   { width: 29.787282% ; }
  .container  .six.columns                    { width: 36.170271% ; }
  .container  .seven.columns                  { width: 42.55326% ; }
  .container  .eight.columns                  { width: 48.936249% ; }
  .container  .nine.columns                   { width: 55.319238% ;}
  .container  .ten.columns                    { width: 61.702227%; }
  .container  .eleven.columns                 { width: 91.3333333333% ; }
  .container  .twelve.columns                 { width: 68.085216% ;  }
  .container  .thirteen.columns		            { width: 80.851194% ; }
  .container  .fourteen.columns	            	{ width: 87.234183% ; }
  .container  .fifteen.columns	             	{ width: 93.617172% ; }
  .container  .sixteen.columns	             	{ width: 100% ; margin-left: 0;}


  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 0 !important; }




  .contact-form{ width: 100% !important; }
  .contact-form #message{width:100% !important;}
  .contact-details{ width: 100% !important; }
  ul.contact-details-list li{ float:left; width: 45%;}
  ul.contact-details-list .address-icon{width:100%;}
  ul.contact-details-list .address-icon br{float:left; display:none;}
  header.site-header{height: 150px;}
  h1.site-logo{width: 100% !important; text-align: center; padding-top: 15px;}
  nav.site-nav{width: 100% !important;}
  nav.site-nav ul{text-align: center;}
  nav.site-nav ul li {margin: 10px !important; padding: 0;}
  nav.site-nav ul li a { font-size: 0.8em; letter-spacing: 0; padding: 0; line-height: 4em;}
  nav.site-nav+div{ position: absolute; top: 10px; right: 10px; }
  ul.tiles li.four.columns{ width: 48.936249% !important; }
  #services .content-column{ width: 48.936249% !important; }
  #about .portrait{display:none;}
  #about .offset-by-one.ten{ width: 100% !important; margin-left:0 !important; padding-left: 0 !important;}
}


/* For devices larger than 400px */
@media (max-width: 549px) {
  header.site-header{height: 210px;}

  .container {
    width: 85%;
    padding: 0;
  }
  #contact .mapContact{ width: 100% !important;}
  ul.contact-details-list li{ float:none; width: 100%;}
  .slogan{font-size: 3em;}
}
