/* Minification failed. Returning unminified contents.
(71,17): run-time error CSS1039: Token not allowed after unary operator: '-menu-link-color'
(84,35): run-time error CSS1039: Token not allowed after unary operator: '-menu-link-color-hover'
(135,17): run-time error CSS1039: Token not allowed after unary operator: '-menu-link-color-hover'
(316,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(317,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(318,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(319,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(452,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(453,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(478,17): run-time error CSS1039: Token not allowed after unary operator: '-menu-link-color'
(484,17): run-time error CSS1039: Token not allowed after unary operator: '-menu-link-color'
(492,17): run-time error CSS1039: Token not allowed after unary operator: '-menu-link-color-hover'
(875,23): run-time error CSS1038: Expected hex color, found '#fffd'
 */

/*** ESSENTIAL STYLES ***/
.main-menu .main-menu .AspNet-Menu, .main-menu .AspNet-Menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}

.main-menu .AspNet-Menu {
	/*line-height:	1.0;*/
}
.main-menu .AspNet-Menu ul {
	position:		absolute;
	top:			100%;
    height: unset !important;
	/*width:			196px;*/ /* left offset of submenus need to match (see below) */
}

.main-menu .AspNet-Menu ul li {
	width:			100%;
}
.main-menu .AspNet-Menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
ul.main-menu .AspNet-Menu li {
	/*float:			left;*/
	position:		relative;
    /*z-index: 100;*/
}
.main-menu .AspNet-Menu a {
	display:		block;
	position:		relative;
    height: unset !important;
}

.main-menu .AspNet-Menu li:hover ul,
.main-menu .AspNet-Menu li.sfHover ul {
	/*left:			0px;*/
	/*top:			27px;*/ /* match top ul list item height */
	/*z-index:		99;*/
}
ul.main-menu .AspNet-Menu li:hover li ul,
ul.main-menu .AspNet-Menu li.sfHover li ul {
	top:			-999em;
}
ul.main-menu .AspNet-Menu li li:hover ul,
ul.main-menu .AspNet-Menu li li.sfHover ul {
	/*left:			200px;*/ /* match ul width */
	top:			0;
}
ul.main-menu .AspNet-Menu li li:hover li ul,
ul.main-menu .AspNet-Menu li li.sfHover li ul {
	top:			-999em;
}
ul.main-menu .AspNet-Menu li li li:hover ul,
ul.main-menu .AspNet-Menu li li li.sfHover ul {
	/*left:			154px;*/ /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.main-menu .AspNet-Menu {
	text-align: right;
    padding: 0;
    margin: 0;
}

.main-menu .AspNet-Menu a
{
    font-size: 14px;
    color: var(--menu-link-color);

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-menu .AspNet-Menu a:before,
.main-menu .AspNet-Menu a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 0;
    border-bottom: 1px solid var(--menu-link-color-hover);

    -webkit-transition: width .4s ease-out;
    -moz-transition: width .4s ease-out;
    transition: width .4s ease-out;
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms;
}

.main-menu .AspNet-Menu a:before {
    left: 0;
}
.main-menu .AspNet-Menu a:after {
    right: 0;
}

.main-menu .AspNet-Menu a:hover:before,
.main-menu .AspNet-Menu a:hover:after,
.main-menu .AspNet-Menu .AspNet-Menu-Selected > a:before, 
.main-menu .AspNet-Menu .AspNet-Menu-ChildSelected > a:before,
.main-menu .AspNet-Menu .AspNet-Menu-Selected > a:after, 
.main-menu .AspNet-Menu .AspNet-Menu-ChildSelected > a:after {
    width: 100%;
}

/* first level */
.main-menu .AspNet-Menu > li 
{
    display: inline-block;
    padding: 10px 25px 0;
    height: 70px !important;
    position: relative;
}

.main-menu .AspNet-Menu > li > a
{
    line-height: 20px;
}

.main-menu .AspNet-Menu > li:last-child > a
{
    padding-right: 0;
}

.main-menu .AspNet-Menu > li > a:hover, 
.main-menu .AspNet-Menu > li.sfHover > a, 
.main-menu .AspNet-Menu > li.current-menu-item > a,
.main-menu .AspNet-Menu > .AspNet-Menu-Selected,
.main-menu .AspNet-Menu > .AspNet-Menu-Selected > a, 
.main-menu .AspNet-Menu > .AspNet-Menu-ChildSelected > a
{
    color: var(--menu-link-color-hover);
}

/* second level */
.main-menu .AspNet-Menu ul
{
    min-width: 145px;
    white-space: nowrap;
}

.main-menu .AspNet-Menu > li > ul
{
    top: 100%;
    left: -10px;
    padding: 27px 0;
    margin-top: 0;
    background: #fff;
    display: none;
    z-index: 100;
    
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);

    transition-duration: 200ms;
    transition-timing-function: ease-in;
    transition-property: margin-top;
}
.main-menu .AspNet-Menu > li.sfHover > ul {
    margin-top: 0;
}

.main-menu .AspNet-Menu > li > ul > li
{
    padding: 8px 35px;
    text-align: left;
    background: none;
    box-sizing: border-box;
    min-width: 200px;
    z-index: 2;
}

.main-menu .AspNet-Menu > li > ul > li a 
{
    display: inline-block;
    text-decoration: none;
    text-align: left;
    color: #414347;
    font-size: 12px;
    line-height: 1.1;
    font-weight: normal;
}

.main-menu .AspNet-Menu li ul a:before,
.main-menu .AspNet-Menu li ul a:after {
    border-color: #414347;
}

/*.main-menu .AspNet-Menu > li > ul li:hover > a,
.main-menu .AspNet-Menu > li > ul li.current-menu-item > a,
.main-menu .AspNet-Menu > li > ul li.main-menu .AspNet-Menu-ChildSelected > a,
.main-menu .AspNet-Menu > li > ul li a.main-menu .AspNet-Menu-Selected
{
    color: #000;
}*/

/*.main-menu .AspNet-Menu > li > ul li:hover > a:after,
.main-menu .AspNet-Menu > li > ul li.current-menu-item > a:after,
.main-menu .AspNet-Menu > li > ul li.main-menu .AspNet-Menu-ChildSelected > a:after,
.main-menu .AspNet-Menu > li > ul li a.main-menu .AspNet-Menu-Selected:after
{
    width: 100%;
    -webkit-transition: width 240ms ease;
    -moz-transition: width 240ms ease;
    transition: width 240ms ease;
}*/

.main-menu .AspNet-Menu > li > ul > li.main-menu .AspNet-Menu-WithChildren:hover > a.sf-with-ul:before,
.main-menu .AspNet-Menu > li > ul > li.main-menu .AspNet-Menu-WithChildren.sfHover > a.sf-with-ul:before,
.main-menu .AspNet-Menu > li > ul > li.main-menu .AspNet-Menu-WithChildren.main-menu .AspNet-Menu-ChildSelected > a.sf-with-ul:before
{
    left: 4px;
    top: 7px;
    background-position: 0 -111px;
}

.main-menu .AspNet-Menu > li > ul > li > a:hover, .main-menu .AspNet-Menu > li > ul > li.main-menu .AspNet-Menu-WithChildren.sfHover > a,
.main-menu .AspNet-Menu > li > ul > li > a.main-menu .AspNet-Menu-Selected, .main-menu .AspNet-Menu > li > ul > li > a.main-menu .AspNet-Menu-ChildSelected
{
    z-index: 2;
}


/* third level */
.main-menu .AspNet-Menu li li ul
{
    top: 0;
    left: 100%;
    margin-left: 3px;
    z-index: 1;
}

/*ul.main-menu .AspNet-Menu li li:hover ul, ul.main-menu .AspNet-Menu li li.sfHover ul 
{
    top: 3px !important;
}

ul.main-menu .AspNet-Menu li li li ul, ul.main-menu .AspNet-Menu li li li ul 
{
    left: 200px;
}*/

.main-menu .AspNet-Menu li li li li ul {
    width: 200px;
    white-space: normal;
}


/*** arrows **/
.main-menu .AspNet-Menu a.sf-with-ul {
	/*padding-right: 	2.25em;*/
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.main-menu .AspNet-Menu ul .sf-sub-indicator { background-position:  -10px 0; }
.main-menu .AspNet-Menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.main-menu .AspNet-Menu ul a:focus > .sf-sub-indicator,
.main-menu .AspNet-Menu ul a:hover > .sf-sub-indicator,
.main-menu .AspNet-Menu ul a:active > .sf-sub-indicator,
.main-menu .AspNet-Menu ul li:hover > a > .sf-sub-indicator,
.main-menu .AspNet-Menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.main-menu .AspNet-Menu .sf-shadow ul {
	background:	url('../images/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.main-menu .AspNet-Menu .sf-shadow ul.sf-shadow-off {
	background: transparent;
}

body {
    font-family: 'Roboto', serif;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    color: #707070;

    --menu-link-color: #414347;
    --menu-link-color-hover: #414347;
    --menu-link-color-light: #fff;
    --menu-link-color-light-hover: rgba(255,255,255,.8);
}

/********** user style ************/
a {
    color: #10bccd;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a, a:focus {
    text-decoration: none;
    outline: none !important;
}

a:hover,
a.selected {
    color: #000;
    text-decoration: none;
}

button {
    outline: none;
}

h1 {
    font-size: 47px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #414347;
    margin: 25px 0 35px 0;
    position: relative;
}

h2 {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #414347;
    margin: 25px 0 30px 0;
    position: relative;
}

h6 {
    text-align: right;
    letter-spacing: .2em;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: normal;
    font-family: 'Alegreya';
}
h6:before {
    content: '';
    display: inline-block;
    background-color: #f2e9e9;
    width: 56px;
    height: 3px;
    vertical-align: middle;
    margin-right: 2.5%;
}

.uppercase {
    text-transform: uppercase;
}

img {
    vertical-align: top;
}

.clear {
    clear: both;
}

.vpage .meta-description {
    display: none;
}

.header-image-wrapper {
    max-height: 600px;
    overflow: hidden;
}

.header-image {
    display: none;
}

.header-image-wrapper .header-image {
    width: 100%;
    display: block;
}

.vpage.header-image-container {
    position: relative;
}

.vpage.header-image-container .meta-description {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -18px;
    text-align: center;
    color: #fff;
    letter-spacing: .2em;
    font-size: 21px;
    font-weight: normal;
    font-family: 'Alegreya';
}

/****** positions *******/
.content-contained {
    margin-top: 170px;
    margin-bottom: 140px;
}

.content-contained img {
    max-width: 100%;
}

/***** header *****/
header {
    width: 100%;
    height: 110px;
    padding: 40px 40px 0;
    position: relative;
    z-index: 10;
}

header.transparent {
    position: absolute;
    --menu-link-color: var(--menu-link-color-light);
    --menu-link-color-hover: var(--menu-link-color-light-hover);
}

header .logo {
    float: left;
    width: 160px;
}

header .logo .logo-white {
    display: none;
}

header.transparent .logo .logo-black {
    display: none;
}
header.transparent .logo .logo-white {
    display: block;
}

header .menu {
    float: right;
}

header .langs {
    float: right;
    color: var(--menu-link-color);
    line-height: 20px;
    margin-top: 9px;
}

header .langs a {
    color: var(--menu-link-color);
    padding: 0 5px;
    position: relative;
    font-size: 14px;
}

header .langs a:hover,
header .langs a.current {
    color: var(--menu-link-color-hover);
}

#mobileMenu {
    position: relative;
}

#mobileMenu .navbar {
    width: 100%;
    height: 70px;
}

#mobileMenu .navbar-brand {
    width: 100px;
    margin: 0;
    padding: 0;
}

#mobileMenu .navbar-brand-container {
    position: absolute;
    left: 1rem;
    right: 1rem;
    text-align: center;
    z-index: 10;
}

.navbar-toggler,
.navbar-toggler:focus {
    z-index: 11;
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler[aria-expanded=true] {
    opacity: .3;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 28 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(65,67,71, 1)' stroke-width='1.5' d='M4 10.5h20M4 17h20M4 23.5h20'/%3E%3C/svg%3E");
    /*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,102,203, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");*/
    width: 20px;
    height: 20px;
}

.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
}

.mobile-langs {
    z-index: 11;
}

.mobile-langs,
.mobile-langs a {
    color: #414347;
}

.mobile-langs a:hover,
.mobile-langs a.current {
    color: #767980;
}

#mobileMenu .nav {
    padding-bottom: 10px;
}

#mobileMenu .nav li {
    position: relative;
}

#mobileMenu .nav li .ion-ios-arrow-down,
#mobileMenu .nav li.parent-item > .ion-ios-arrow-forward,
#mobileMenu .nav ul .icon {
    display: none;
}

#mobileMenu .nav li.parent-item > .ion-ios-arrow-down {
    display: block;
    z-index: 3;
}

#mobileMenu .nav li .icon {
    position: absolute;
    top: 9px;
    right: 0px;
    color: #707070;
    width: 27px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

#mobileMenu .nav a {
    color: #707070;
    border-bottom: 1px solid #c7c7c7;
    padding: 9px 0;
    line-height: 26px;
    display: block;
    position: relative;
    z-index: 2;
}

#mobileMenu .nav a:hover,
#mobileMenu .nav a.AspNet-Menu-Selected {
    opacity: .5;
}

#mobileMenu .nav ul {
    padding: 0;
    margin-left: 15px;
    list-style-type: none;
    display: none;
}

/* sticky header */
header.sticky {
    position: fixed !important;
    top: 0;
    background-color: #f2e9e9;
    padding-top: 7px;
    height: 80px;
    z-index: 9999;

    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);

    -webkit-transition: -webkit-transform .6s ease;
    -moz-transition: -moz-transform .6s ease;
    transition: transform .6s ease;
}

header.sticky .logo {
    padding: 6px 25px 0 0;
}

header.nav-up {
    
}

header.nav-down {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

header.sticky .menu {
    margin-top: 13px;
}

header.sticky .langs {
    margin-top: 22px;
}

/***** footer *****/
footer {
    background-color: #ebebeb;
    padding: 130px 0 55px;
    margin-top: 10px;
}

footer .logo {
    position: relative;
    margin-bottom: 43px;
}

footer .logo img {
    max-width: 120px;
}

footer .logo:after {
    content: '';
    display: block;
    height: 1px;
    background-color: #c7c7c7;
    position: absolute;
    top: 48px;
    left: 170px;
    right: 0;
}

footer .menu {
    margin: 0 0 53px 170px;
}

footer .menu h4 {
    margin: 0 0 8px 0;
}

footer .menu h4,
footer .menu h4 a {
    color: #414347;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
    letter-spacing: 1px;
}

footer .menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer .menu a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
    color: #414347;
}

footer .menu .info a:hover,
footer .menu h4 a:hover {
    color: #707070;
}

footer .icons {
    display: flex;
}

footer .icons a {
    font-size: 20px;
    margin-right: 10px;
}

footer .icons a:hover {
    opacity: .7;
}

footer .icons a.archilovers img {
    width: 20px;
    vertical-align: middle;
    opacity: .75;
}

footer .icons a.houzz img {
    width: 14px;
    vertical-align: middle;
    opacity: .9;
}

footer .credits {
    border-top: 1px solid #c7c7c7;
    padding-top: 53px;
}

/*********** article categories *************/
/*articles*/
.page-id-16 .content-contained {
    margin-top: 0;
    margin-bottom: 0;
}

#articleCategories {
    margin-top: 30px;
}

#articleCategories .row {
    margin-bottom: 80px;
}

#articleCategories .row:last-child {
    margin-bottom: 20px;
}

#articleCategories a {
    display: block;
    position: relative;
    color: #414347;
    height: 500px;
    background-position: center center;
    background-size: cover;
}

#articleCategories .overlay {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    /*opacity: 0;*/
    background-color: rgba(255,255,255, 0);
    transition: all ease-out .5s;
}

#articleCategories .overlay .title {
    font-size: 50px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 50px 0 0;
    opacity: 0;
    transition: all ease-out .5s;
}

#articleCategories a:hover .overlay {
    /*opacity: 1;*/
    background-color: rgba(255,255,255, .8);
}

#articleCategories a:hover .overlay .title {
    padding-right: 0;
    opacity: 1;
}

#articleCategories a span {
    display: block;
    position: relative;
}

#articleCategories img {
    width: 100%;
}

/*********** article list ************/
#articlesList {
    margin-top: 30px;
}

#articlesList .container:after {
    content: '';
    display: block;
    clear: both;
}

#articlesList article {
    padding: 0 9px;
    margin: 0 0 18px;
    display: block;
    float: left;
    width: 50%;
    height: 650px;
}

#articlesList article:nth-child(3) {
    width: 100%;
}

#articlesList article a {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    color: #707070;
}

#articlesList article .info-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
}

#articlesList article:nth-child(3) .info-wrapper {
    width: 50%;
}

#articlesList article .info-inner {
    display: table;
    width: 100%;
    height: 100%;
}

#articlesList article .info-holder {
    display: table-cell;
    vertical-align: middle;
    height: auto;
}

#articlesList article .info {
    background-color: #fffd;
    padding: 32px 20px 26px 36px;
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    -webkit-transition: -webkit-transform .3s ease,opacity .3s;
    -moz-transition: -moz-transform .3s ease,opacity .3s;
    transition: transform .3s ease,opacity .3s
}

#articlesList article:hover .info {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: -webkit-transform .5s ease;
    -moz-transition: -moz-transform .5s ease;
    transition: transform .5s ease;
}

#articlesList article .title {
    color: #414347;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.47em;
    letter-spacing: .25em;
    margin: 0;

    opacity: 0;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: -webkit-transform .3s ease,opacity .3s;
    -moz-transition: -moz-transform .3s ease,opacity .3s;
    transition: transform .3s ease,opacity .3s;
}

#articlesList article:hover .title {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .5s ease .5s,opacity .5s .3s;
    -moz-transition: -moz-transform .5s ease .5s,opacity .5s .3s;
    transition: transform .5s ease .5s,opacity .5s .3s;
}

#articlesList article .subtitle {
    font-size: 14px;
    padding: 0;
    margin: 0;
    position: relative;
    display: block;

    opacity: 0;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: -webkit-transform .4s ease;
    -moz-transition: -moz-transform .4s ease;
    transition: transform .4s ease;
}

#articlesList article:hover .subtitle {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .5s ease .6s,opacity .5s .6s;
    -moz-transition: -moz-transform .5s ease .6s,opacity .5s .6s;
    transition: transform .5s ease .6s,opacity .5s .6s;
}

#articlesList .pager {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

#articlesList .pager .prev {
    float: left;
}

#articlesList .pager .next {
    float: right;
}

#articlesList .pager a,
#articlesList .pager .current {
    color: #414347;
    margin: 0 9px;
}

#articlesList .pager a:hover,
#articlesList .pager .current,
#articlesList .pager a[disabled] {
    color: #b5bac3;
}

/*********** article details ************/
#articleDetails {
    margin-top: 30px;
}

#articleDetails .carousel-item img {
    width: 100%;
}

#articleDetails .carousel-item iframe {
    width: 100%;
    height: 700px;
}

#articleDetails .carousel-control-prev,
#articleDetails .carousel-control-next {
    font-size: 40px;
    width: 10%;
}

#articleDetails .title {
    text-transform: uppercase;
}

#articleDetails .subtitle {
    text-align: center;
    margin-left: -100px;
}

#articleDetails .description {
    line-height: 1.7;
    margin-bottom: 55px;
}

#articleDetails .meta {
    border-top: 1px solid #cccccc;
    padding-top: 30px;
    margin-bottom: 30px;
}

#articleDetails .meta > div {
    margin-bottom: 40px;
    color: #707070;
    font-weight: 300;
}

#articleDetails .meta h3 {
    color: #414347;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 21px;
    line-height: 1.6em;
    font-weight: 300;
}

#articleDetails .meta .share a {
    margin-right: 16px;
}

#articleDetails .meta .share a:last-child {
    margin-right: 0;
}

#articleDetails .meta .share a:hover {
    opacity: .7;
    transform: none;
}

/* articles navigation */
.articles-navigation {
    background-color: #f2e9e9;
    padding: 20px 0;
    clear: both;
}

.articles-navigation .browse {
    display: inline-block;
    font-size: 25px;
    line-height: 35px;
    width: 25px;
    color: #414347;
    transition: all .2s ease-out;
}

.articles-navigation .browse:hover {
    opacity: .7;
}

/********* contact *********/
.contact h1 {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6em;
    padding-bottom: 6px;
    color: #414347;
    border-bottom: 1px solid #c3c7d0;
    float: left;
    margin: 0 0 40px 0;
}

.contact br {
    clear: both;
}

.contact input[type=text],
.contact textarea {
    width: 100%;
    margin: 0 0 13px;
    padding: 11px 0;
    font-family: inherit;
    font-size: 15px;
    line-height: 20px;
    font-weight: inherit;
    color: #898989;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #c7c7c7;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    resize: none;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
}

.contact textarea {
    padding-top: 41px;
}

.contact .send {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    outline: 0;
    letter-spacing: .15em;
    font-weight: 300;
    box-sizing: border-box;
    margin: 0;
    font-size: 17px;
    border: 0;
    border-left: 2px solid #898989;
    background-size: 201% 100%;
    background-image: linear-gradient(to right,#fff 50%,#898989 50%),linear-gradient(to right,#898989 50%,transparent 50%);
    background-repeat: no-repeat;
    background-position: right bottom;
    -webkit-background-clip: text,border-box;
    background-clip: text,border-box;
    color: #898989;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    background-color: transparent;
    text-transform: lowercase;
    cursor: pointer;
    padding: 0 30px 0 19px;
    line-height: 34px;
}

.contact .buttons {
    margin-top: 45px;
}

.contact .options,
.contact #upgContact {
    display: inline-block;
}

.contact #upgContact {
    vertical-align: middle;
}

.contact .send:hover {
    background-position: left bottom;
    color: #fff;
}

.contact .icon {
    position: relative;
    left: -20px;
    font-size: 20px;
    color: #898989;
    line-height: 34px;
    vertical-align: middle;
}

.contact .result {
    border: 2px solid #398f14;
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    line-height: 27px;
}

/***** home *****/
.home header .logo .logo-white,
.home header.home-menu-expanded .logo .logo-black {
    display: block;
}
.home header .logo .logo-black,
.home header.home-menu-expanded .logo .logo-white {
    display: none;
}

.home footer {
    display: none;
}

#home-slideshow {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#home-slideshow .carousel-inner,
#home-slideshow .carousel-item {
    height: 100%;
}

#home-slideshow .carousel-item {
    transition-duration: 2s;
    background-position: center center;
    background-size: cover;
}

#home-slideshow .carousel-caption {
    text-align: left;
    padding: 25px 30px;
    bottom: 10%;
    max-width: 70%;
    background-color: rgba(0,0,0,.5);
    min-width: 240px;

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#home-slideshow .carousel-caption h1 {
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

#home-slideshow .carousel-caption h2 {
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.07em;
    margin: 0 0 25px 0;
}

#home-slideshow .carousel-caption a {
    padding: 17px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.15em;
    display: inline-block;
    position: relative;
}
#home-slideshow .carousel-caption a:before {
    content: '';
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: -1;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#home-slideshow .carousel-caption a:hover {
    color: #000;
}
#home-slideshow .carousel-caption a:hover:before {
    width: 100%;
}

#home-slideshow .carousel-indicators li {
    border: 1px solid #717171;
    height: 4px;
    background-color: #fff;
}

#home-slideshow .carousel-indicators .active {
    background-color: #000;
}

/*caption animation*/
#home-slideshow .carousel-caption {
    transform: translateX(50%);
    opacity: 0;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#home-slideshow .carousel-item.active .carousel-caption {
    transform: translateX(0);
    opacity: 1;
}

#home-slideshow .carousel-item.active.carousel-item-left .carousel-caption {
    transform: translateX(-50%);
    opacity: 0;
}

/****** blog *****/
.blog .blog-options {
    margin-bottom: 25px;
}

.blog .search-panel {
    position: relative;
}

.blog .txt-search {
    border: none;
    border-bottom: 1px solid #c7c7c7;
    width: 222px;
    outline: none;
    font-weight: 300;
    font-size: 14px;
    line-height: 27px;
    color: #707070;
    padding-bottom: 0px;
}

.blog .btn-search {
    outline: none;
    position: absolute;
    right: 15px;
    top: 4px;
}

#articlesList.blog .article img {
    width: 100%;
}

.blog .post-date {
    font-size: 14px;
    margin-top: 30px;
}

#articlesList.blog .article .title {
    margin: 0 0 15px 0;
    line-height: 1;
}

/***** testimonials ******/
.testimonials {
    color: #414347;
    font-size: 19px;
    line-height: 1.7;
    margin: 100px 0;
    padding: 40px 150px;
    display: block;
    border: 1px solid #c7c7c7;
    border-left: none;
    border-right: none;
    position: relative;
    font-family: 'Alegreya';
}

.testimonials:before {
    content: '"';
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    position: absolute;
    left: 0;
    top: -23px;
    background-color: #fff;
    font-size: 180px;
    font-family: 'Arizonia';
}

.testimonials .author {
    margin: 40px 0 0 0;
    font-size: 18px;
    letter-spacing: 0.15em;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    color: #707070;
}

.testimonials .carousel-control-prev {
    left: -135px;
}

.testimonials .carousel-control-next {
    right: -135px;
}


/******** our team ********/
.page-id-91 .content-contained td {
    padding-bottom: 40px;
}

.page-id-91 .content-contained tr:last-child td {
    padding-bottom: 0;
}

.page-id-91 .content-contained strong {
    font-weight: bold;
    color: #414347;
    letter-spacing: .15em;
}

/* parallax */
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 400px;
    margin-top: 150px;
}

.parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.parallax-image-container h1,
.parallax-image-container h6 {
    text-align: center;
}

.parallax-image-container h1 {
    margin: 30px 0 20px 0;
}

.parallax-image-container h6:before {
    display: none;
}
@media (min-width: 1200px) {
    /******** our team ********/
    .page-id-91 .content-contained .row div:first-child {
        padding-right: 130px;
    }

    .page-id-91 .content-contained .row div:last-child {
        padding-left: 130px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /******** our team ********/
    .page-id-91 .content-contained .row div:first-child {
        padding-right: 100px;
    }

    .page-id-91 .content-contained .row div:last-child {
        padding-left: 100px;
    }
}

@media (max-width: 1199px) {
    .main-menu .AspNet-Menu > li {
        padding: 10px 16px 0;
    }

    .content-contained {
        margin-top: 150px;
        margin-bottom: 130px;
    }

    h1 {
        font-size: 42px;
        margin: 22px 0 30px 0;
    }

    #articleCategories .overlay .title {
        font-size: 48px;
    }

    #articlesList article {
        height: 550px;
    }

    #articleDetails .carousel-item iframe {
        height: 600px;
    }

    .parallax-container {
        height: 350px;
    }

}

@media (min-width: 992px)  {
    .home header {
        position: relative;
        z-index: 1000;
        padding: 0;
    }

    header #home-menu-toggle {
        background-color: #fff;
        width: 90px;
        height: 90px;
        cursor: pointer;
        float: left;
        margin-right: 30px;
        position: relative;
        display: none;
    }

    .home #home-menu-toggle {
        display: block;
    }

    .home header:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        height: 90px;
        width: 0;
        background-color: #fff;
        z-index: 1;

        -webkit-transition: width .5s ease-out;
        -moz-transition: width .5s ease-out;
        transition: width .5s ease-out;
    }

    .home header.home-menu-expanded:before {
        width: 100%;
    }

    header #home-menu-toggle .lines {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        height: 20px;
        z-index: 2;
    }

    header #home-menu-toggle .line {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        display: block;
        width: 24px;
        height: 3px;
        background-color: #414347;
        
        webkit-transition: all .2s ease .2s;
        -moz-transition: all .2s ease .2s;
        transition: all .2s ease .2s;
    }

    header #home-menu-toggle .line.line-2 {
        top: 4px;
        left: 9px;
        width: 15px;
    }

    header #home-menu-toggle .line.line-3 {
        top: 8px;
    }

    header #home-menu-toggle:hover .line {
        width: 20px;
    }
    header #home-menu-toggle:hover .line.line-2 {
        width: 15px;
        left: 0;
    }

    header.home-menu-expanded #home-menu-toggle .line.line-1 {
        top: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    header.home-menu-expanded #home-menu-toggle .line.line-2 {
        opacity: 0;
    }
    header.home-menu-expanded #home-menu-toggle .line.line-3 {
        top: 0;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .home header .logo,
    .home header .menu,
    .home header .langs {
        position: relative;
        z-index: 1;
    }

    .home header .logo {
        margin-top: 15px;
    }

    .home header .menu {
        margin-top: 32px;
        opacity: 0;
        visibility: hidden;
    }

    .home header .langs {
        margin-top: 41px;
        margin-right: 30px;
        opacity: 0;
        visibility: hidden;
    }

    .home header .menu,
    .home header .langs {
        -webkit-transition: opacity .1s ease-out;
        -moz-transition: opacity .1s ease-out;
        transition: opacity .1s ease-out;
    }

    .home header.home-menu-expanded .menu,
    .home header.home-menu-expanded .langs {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity .5s ease-out .5s;
        -moz-transition: opacity .5s ease-out .5s;
        transition: opacity .5s ease-out .5s;
    }

    /******** our team ********/
    .page-id-91 .content-contained .row div:first-child {
        border-right: 1px solid #ccc;
    }

    .page-id-91 .content-contained .row div:last-child {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    header {
        background: none;
        padding: 0;
        height: 70px;
    }

    header,
    header.transparent {
        position: static;
    }

    header .menu {
        float: none;
    }

    header.sticky {
        padding-top: 0;
        height: initial;
    }

    header.sticky .menu {
        margin-top: 0;
    }

    .header-image-wrapper {
        max-height: 400px;
    }

    .content-contained {
        margin-top: 130px;
    }

    h1 {
        font-size: 40px;
        margin: 20px 0 25px 0;
    }

    #home-slideshow {
        top: 80px;
    }

    footer {
        padding: 125px 0 45px;
    }

    footer .logo {
        margin-bottom: 37px;
    }

    footer .menu {
        margin-left: 0;
    }

    footer .menu .row > div {
        margin-bottom: 40px;
    }

    #articleCategories .overlay .title {
        font-size: 46px;
    }

    #articleDetails .carousel-item iframe {
        height: 450px;
    }

    .testimonials {
        padding: 40px 100px;
    }

    .testimonials .carousel-control-prev {
        left: -100px;
    }

    .testimonials .carousel-control-next {
        right: -100px;
    }

    #articlesList article {
        height: 450px;
    }

    /******** our team ********/
    .page-id-91 .content-contained .row div:first-child {
        margin-bottom: 50px;
    }

    .parallax-container {
        height: 300px;
    }
}

@media (min-width: 768px) {
    /******** profile ********/
    .page-id-78 .content-contained .row div:first-child {
        padding-right: 40px;
    }

    /******** services ********/
    .page-id-72 .content-contained .row {
        margin-bottom: 110px;
    }

    .page-id-72 .content-contained .row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .page-id-72 .content-contained .row:nth-child(odd) div.col-md-7,
    .page-id-72 .content-contained .row:nth-child(even) div.col-md-5 {
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 36px;
        margin: 10px 0 20px 0;
        letter-spacing: 0.11em;
    }

    h6 {
        font-size: 19px;
    }

    .header-image-wrapper {
        max-height: none;
    }

    .vpage.header-image-container .meta-description {
        font-size: 16px;
    }

    .content-contained {
        margin-top: 100px;
    }

    footer {
        padding: 100px 0 45px;
    }

    footer .logo {
        margin-bottom: 30px;
    }

    footer .logo img {
        max-width: 130px;
    }

    footer .logo:after {
        left: 160px;
    }

    footer .menu {
        margin: 0 0 40px 0;
    }

    #articleCategories .overlay .title {
        font-size: 42px;
    }

    #articleDetails .carousel-item iframe {
        height: 330px;
    }

    #articleDetails .title {
        font-size: 36px;
    }

    #articleDetails .subtitle {
        text-align: right;
        margin-left: 0;
    }

    .testimonials {
        padding: 40px 70px 40px 70px;
        font-size: 19px;
    }

    .testimonials .carousel-control-prev {
        left: -80px;
    }

    .testimonials .carousel-control-next {
        right: -80px;
    }

    #articlesList article {
        width: 100% !important;
        height: 450px;
    }

    #articlesList article .info-wrapper {
        width: 70% !important;
    }

    #home-slideshow .carousel-caption h1 {
        font-size: 25px;
    }

    #home-slideshow .carousel-caption h2 {
        font-size: 16px;
        font-weight: 300;
    }

    /******** services ********/
    .page-id-72 .content-contained .row {
        margin-bottom: 80px;
    }

    .parallax-container {
        height: 210px;
    }
}

@media (max-width: 575px) {
    footer {
        padding: 80px 0 45px;
    }

    footer .logo {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    footer .logo img {
        max-width: 130px;
    }

    footer .logo:after {
        left: 0;
        top: unset;
        bottom: 0;
    }

    footer .menu {
        margin: 0 0 40px 0;
    }

    footer .icons a {
        font-size: 25px;
        line-height: 1;
        padding-right: 5px;
    }

    footer .icons a.archilovers img {
        width: 23px;
    }

    footer .icons a.houzz img {
        width: 15px;
    }

    .testimonials .carousel-control-prev {
        left: -60px;
    }

    .testimonials .carousel-control-next {
        right: -60px;
    }

    #articleCategories .overlay .title {
        font-size: 36px;
    }

}

@media (max-width: 400px) {
    .testimonials {
        padding: 40px 50px 40px 60px;
        font-size: 16px;
    }

    .testimonials:before {
        font-size: 150px;
        top: -25px;
        width: 60px;
    }

    .testimonials .carousel-control-prev {
        left: -50px;
    }

    .testimonials .carousel-control-next {
        right: -40px;
    }
}
