/*
Theme Name: shopswey
Theme URI: http://underscores.me/
Author: Webbambu
Author URI: http://www.webbambu.com
Description: Bootstrap theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shopswey
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

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

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

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

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
#sticky-wrapper {
    position: relative;
    z-index: 10000;
	position: fixed;
    top: 0px;
    width: 100%;
}

#sticky-wrapper.is-sticky .top-nav {
    height: 0;
}

.header {
    border-top: 2px solid #F78E1E;
}

.header .container-fluid {
    position: relative;
}

.header .header-logo {
    width: 200px;
    margin: 20px auto 0;
    z-index: 1;
}

.header .header-logo img {
    width: 200px;
}

@media only screen and (min-width:480px) {
    .header .header-logo {
        width: 300px;
    }

    .header .header-logo img {
        width: 300px;
    }
}

@media only screen and (min-width:992px) {
    .header .header-logo {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: 0;
    }
}

@media only screen and (max-width:991px) {
    .header .header-logo {
        float: left;
        margin: 10px 0 0;
    }
}

.header .header-logo img {
    display: block;
}

.header .header-logo .tagline {
    display: none;
}

@media only screen and (min-width:991px) {
    .header .header-logo .tagline {
        display: block;
        font-family: "Domine", serif;
        font-size: 12px;
        font-style: italic;
        margin: 0;
        color: #75706a;
        line-height: 1.2em;
    }
}

.header .top-nav {
    display: none;
    margin-bottom: 1px;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

@media only screen and (min-width:767px) {
    .header .top-nav {
        display: block;
        background: rgba(117, 112, 106, 0.2);
        overflow: hidden;
        height: 25px;
    }
}

@media only screen and (min-width:991px) {
    .header .top-nav {
        height: 30px;
    }
}

header #language-selector .language-selector {
    margin-left: -10px;
}

header #language-selector .language-selector a.dropdown-toggle {
    display: none;
}

header #language-selector .language-selector ul.dropdown-menu {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    border: 0 none;
    box-shadow: none;
    border-radius: 0;
    background: none;
}

header #language-selector .language-selector ul.dropdown-menu li {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    float: left;
}

header #language-selector .language-selector ul.dropdown-menu li:last-of-type {
    border-right: none;
}

header #language-selector .language-selector ul.dropdown-menu li a {
    display: block;
    font-size: 14px;
    color: #151515;
    padding: 5px 10px;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

header #language-selector .language-selector ul.dropdown-menu li a.active,
header #language-selector .language-selector ul.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

header #language-selector .language-selector ul.dropdown-menu li a.active {
    color: #F78E1E;
}

nav.navbar-inverse {
    background: #FFFFFF;
    border: 0 none;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

nav.navbar-inverse #block-mainmenu {
    margin-left: -15px;
    margin-right: -15px;
}

nav.navbar-inverse .navbar-collapse {
    text-align: center;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 2px 0 3px rgba(0, 0, 0, 0.2);
}

nav.navbar-inverse .navbar-collapse .navbar-nav {
    float: none;
    text-align: left;
    font-size: 16px;
    margin: 10px 0;
    padding-bottom: 50px;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li:after {
    content: "";
    width: calc(100% - 10px);
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    height: 1px;
    display: block;
    left: 5px;
    top: -1px;
}

@media only screen and (min-width:992px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li:after {
        content: none;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li>a {
    font-weight: 500;
    text-transform: uppercase;
    color: #151515;
    padding: 10px 20px;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li>a:hover,
nav.navbar-inverse .navbar-collapse .navbar-nav>li>a:hover:after {
    color: #F78E1E;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li>a:after {
    content: "\f105";
    font: normal normal normal 21px/1 FontAwesome;
    margin-left: 5px;
    color: #151515;
    position: absolute;
    right: 15px;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li>a .fa-angle-down:before {
    position: absolute;
    right: 10px;
    font-size: 21px;
    top: 10px;
    content: "\f196";
}

@media only screen and (min-width:992px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li>a .fa-angle-down:before {
        position: relative;
        font-size: 14px;
        left: 0;
        top: 0;
        content: "\f107";
    }
}

@media only screen and (min-width:991px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li>a:after {
        content: "";
        margin-left: 0;
    }
    .dropdown-toggle i{
        float: right;
        margin-left: 5px;
        margin-top: 2px;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown ul li {
    display: block;
}

@media only screen and (min-width:767px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown:hover .dropdown-menu {
        display: block;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown>a:after {
    content: "";
    margin-left: 0;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .view-all {
    color: #151515 !important;
    font-size: 14px;
    margin: 0 10px;
    border-top: 1px solid rgba(117, 112, 106, 0.2);
    display: none !important;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open .dropdown-menu {
    float: left;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open .dropdown-menu>li>a {
    color: #151515;
    line-height: 1.42857143;
}

@media only screen and (max-width:767px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open .dropdown-menu>li>a {
        padding: 5px 15px 5px 25px;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open .dropdown-menu>li>a:hover {
    color: #151515;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open>a {
    color: #F78E1E;
}

@media only screen and (max-width:991px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open>a .fa-angle-down:before {
        content: "\f147";
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown.open>a.view-all {
        display: block !important;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu {
    position: relative;
    border-radius: 0;
    background: #f5f5f5;
    width: 100%;
    box-shadow: none;
    margin-bottom: 15px;
    padding: 0 5px;
}

@media only screen and (min-width:991px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu {
        border: 1px solid rgba(117, 112, 106, 0.2);
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu:after {
        content: "";
        display: block;
        position: absolute;
        width: 12px;
        height: 12px;
        transform: rotate(45deg);
        background: #FFFFFF;
        top: -8px;
        left: 50%;
        margin-left: -6px;
        z-index: 10000;
        box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.1);
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li {
    display: inline-block;
    float: left;
    width: 100%;
    border-bottom: 1px solid rgba(117, 112, 106, 0.2);
    position: relative;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li:hover {
    background: #FFFFFF;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li a {
    padding: 8px 0 !important;
    margin: 0 5%;
    font-size: 14px;
    white-space: normal;
    font-weight: 400;
    line-height: 20px;
    width: 90%;
}

@media only screen and (min-width:767px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li a {
        font-size: 15px;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li a:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f105";
    margin: 3px 10px 0 0;
    right: 0;
    position: absolute;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li a:hover {
    color: #F78E1E !important;
    background: none;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li.active>a {
    color: #F78E1E;
    font-weight: 400;
    background: none;
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li.active>a:hover,
nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li.active>a:focus {
    background: none;
}

@media only screen and (min-width:992px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu {
        position: absolute;
        width: 540px;
        margin-right: -270px;
        display: none;
        right: 50%;
        left: auto;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li {
        min-height: 60px;
        width: 50%;
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li a {
        padding: 3px 0 !important;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown .dropdown-menu li a:after {
        position: relative;
        margin: 0 0 0 10px;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>li.dropdown ul li {
    display: block;
}

@media only screen and (min-width:992px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav {
        float: right;
        margin: 0;
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li a {
        padding: 30px 15px !important;
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav>li:last-of-type a {
        padding-right: 0;
    }
}

@media only screen and (max-width:1024px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li a {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media only screen and (min-width:768px) {
    nav.navbar-inverse .navbar-collapse .navbar-nav>li a {
        padding: 10px 15px 10px;
    }
}

nav.navbar-inverse .navbar-collapse .navbar-nav>.active>a,
nav.navbar-inverse .navbar-collapse .navbar-nav>.active>a:focus,
nav.navbar-inverse .navbar-collapse .navbar-nav>.active>a:hover {
    color: #F78E1E;
    background: none;
}

@media only screen and (min-width:991px) {
    nav.navbar-inverse .navbar-collapse {
        position: relative;
        height: auto;
        width: auto;
        overflow: auto;
        background: none;
        box-shadow: none;
    }

    nav.navbar-inverse .navbar-collapse .navbar-nav {
        padding-bottom: 0;
    }
}

nav.navbar-inverse .navbar-header .navbar-toggle {
    border: 0 none;
    border-radius: 0;
    background: rgba(117, 112, 106, 0.2);
    height: 40px;
    width: 45px;
    margin: 0;
    padding: 0;
}

nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar {
    position: relative;
    background: #151515;
    height: 2px;
    width: 28px;
    margin: 0 auto;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar:first-of-type {
    top: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar:nth-of-type(2) {
    background-color: transparent;
}

nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar:last-of-type {
    top: -2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

@media only screen and (min-width:480px) {
    nav.navbar-inverse .navbar-header .navbar-toggle {
        height: 50px;
        width: 60px;
    }

    nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar {
        height: 3px;
        width: 36px;
        margin: 0 auto;
    }

    nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar+.icon-bar {
        margin-top: 6px;
    }

    nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar:first-of-type {
        top: 8px;
    }

    nav.navbar-inverse .navbar-header .navbar-toggle .icon-bar:last-of-type {
        top: -10px;
    }
}

nav.navbar-inverse .navbar-header .navbar-toggle.collapsed .icon-bar {
    top: auto;
    transform: none;
    -webkit-transform: none;
    background: #151515;
}

nav.navbar-inverse .navbar-header .navbar-toggle.collapsed .icon-bar+.icon-bar {
    margin-top: 4px;
}

nav.navbar-inverse .navbar-header .phone {
    width: 45px;
    height: 40px;
    background: rgba(117, 112, 106, 0.2);
    display: inline-block;
    right: 46px;
    position: absolute;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
    line-height: 1000px;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

nav.navbar-inverse .navbar-header .phone span {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.8;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

nav.navbar-inverse .navbar-header .phone:hover {
    background: #151515;
}

nav.navbar-inverse .navbar-header .phone:hover span {
    background: url(images/phone-icon_white.png) center center no-repeat;
    background: url(images/phone-icon_white.svg) center center no-repeat;
}

@media only screen and (min-width:480px) {
    nav.navbar-inverse .navbar-header .phone {
        height: 50px;
        width: 60px;
        right: 61px;
    }

    nav.navbar-inverse .navbar-header .phone span {
        width: 28px;
        height: 28px;
    }
}

@media only screen and (min-width:767px) {
    nav.navbar-inverse .navbar-header .phone {
        display: none;
    }
}

header .contact-widgets-wrapper {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
}

header .contact-widgets-wrapper .icons {
    font-size: 14px;
    margin-left: 15px;
}

@media only screen and (min-width:1200px) {
    header .contact-widgets-wrapper {
        right: 45px;
    }
}

.section {
    margin: 40px 0;
    position: relative;
}

.section+.keybenefits-general.secondary {
    margin-top: -40px;
}

@media only screen and (min-width:991px) {
    .section {
        margin: 80px 0;
    }
}

.diamond-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    box-shadow: 1px 1px 3px rgba(21, 21, 21, 0.1);
}

@media only screen and (min-width:991px) {
    .diamond-bg {
        width: 400px;
        height: 400px;
    }
}

@media only screen and (max-width:767px) {
    .diamond-bg {
        display: none;
    }
}

.diamond {
    display: inline-block;
    background-color: rgba(117, 112, 106, 0.4);
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    margin: 0 4px 1px;
}

#slider-home .carousel {
    height: 240px;
}

@media only screen and (min-width:767px) {
    #slider-home .carousel {
        height: 320px;
    }
}

@media only screen and (min-width:991px) {
    #slider-home .carousel {
        height: 520px;
    }
}

#slider-home .carousel .carousel-inner {
    background: #151515;
}

.slide .carousel-inner {
    height: 100%;
}

.slide .item {
    height: 100%;
}

.slide .item>a {
    width: 100%;
    height: 100%;
}

.slide .item .fill {
    position: absolute;
    width: 100%;
    height: inherit;
    background-position: center;
    background-size: cover;
    opacity: .5;
}

.slide .item .carousel-caption {
    left: 10%;
    right: 10%;
    top: auto;
    bottom: auto;
    max-width: 80%;
    text-align: left;
    border-top: 2px solid #F78E1E;
    padding: 10px 0 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slide .item .carousel-caption .xl-title {
    display: block;
}

.slide .item .carousel-caption p {
    font-size: 14px;
}

@media only screen and (min-width:767px) {
    .slide .item .carousel-caption {
        max-width: 60%;
        padding: 20px 0 0;
    }

    .slide .item .carousel-caption p {
        font-size: 18px;
    }
}

@media only screen and (min-width:991px) {
    .slide .item .carousel-caption {
        max-width: 40%;
    }
}

.slide .carousel-control {
    width: 10%;
    background: none;
}

@media only screen and (min-width:599px) {
    .slide .carousel-control {
        width: 5%;
    }
}

.slide .carousel-control .icon-prev,
.slide .carousel-control .icon-next {
    height: 36px;
    width: 20px;
    background: url(images/arrow.png) center no-repeat;
    background: url(images/arrow.svg) center no-repeat;
    background-size: cover;
}

.slide .carousel-control .icon-prev:before,
.slide .carousel-control .icon-next:before {
    content: none;
}

.slide .carousel-control .icon-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-webkit-transform: rotate(180deg);
}

.slide .carousel-indicators {
    bottom: -50px;
}

body section .slide .carousel-indicators li {
    border-radius: 0;
    background-color: rgba(117, 112, 106, 0.4);
    border: 0 none;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

@media only screen and (min-width:991px) {
    body section .slide .carousel-indicators li {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

body section .slide .carousel-indicators li.active {
    border-radius: 0;
    background-color: #F78E1E;
}

body section .slide .carousel-indicators li:before {
    display: none;
}

.home-intro {
    position: relative;
    overflow: hidden;
    background: rgba(21, 21, 21, 0.1);
}

.home-intro section {
    position: relative;
    z-index: 1;
}

.home-intro .hero article {
    position: relative;
    width: 100%;
}

.home-intro .hero article .sm-title {
    text-align: center;
    font-family: "Domine", serif;
    color: #433e38;
    line-height: 1.4;
    margin-bottom: 0;
}


@media only screen and (max-width:767px) {
    .home-intro .hero article .sm-title {
        font-size: 15px;
    }
}

@media only screen and (min-width:767px) {
    .home-intro .hero article {
        left: 50px;
        width: calc(100% - 100px);
        font-size: inherit;
    }
}

.home-intro .diamond-bg {
    bottom: -50px;
    left: 50%;
    margin-left: -100px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

@media only screen and (min-width:991px) {
    .home-intro .diamond-bg {
        margin-left: -200px;
    }
}

.keybenefits-general {
    padding-top: 0;
}

.keybenefits-general .keybenefits-wrapper .benefit {
    min-height: 120px;
    width: 45%;
    float: left;
    text-align: center;
    margin-right: 5%;
}

.keybenefits-general .keybenefits-wrapper .benefit:last-of-type {
    margin-right: 0;
}

.keybenefits-general .keybenefits-wrapper .benefit .icon {
    display: inline-block;
    height: 32px;
    width: 32px;
    margin-bottom: 10px;
}

@media only screen and (min-width:991px) {
    .keybenefits-general .keybenefits-wrapper .benefit .icon {
        height: 48px;
        width: 48px;
        margin-bottom: 20px;
    }
}

.keybenefits-general .keybenefits-wrapper .benefit .sm-title {
    color: #433e38;
}

@media only screen and (min-width:599px) {
    .keybenefits-general .keybenefits-wrapper {
        display: flex;
        display: -webkit-flex;
        align-items: flex-start;
        -webkit-align-items: flex-start;
    }

    .keybenefits-general .keybenefits-wrapper .benefit {
        text-align: left;
        width: auto;
        float: none;
        min-height: 0px;
        flex: 1;
        -webkit-flex: 1;
    }
}

.keybenefits-general.secondary {
    padding: 45px 0 30px;
}

@media only screen and (min-width:991px) {
    .keybenefits-general.secondary .keybenefits-wrapper .benefit {
        display: flex;
        display: -webkit-flex;
        flex: auto;
        -webkit-flex: auto;
    }

    .keybenefits-general.secondary .keybenefits-wrapper .benefit .icon {
        display: table;
        margin-right: 15px;
    }
}

.keybenefits-general.secondary .keybenefits-wrapper .benefit .xs-title {
    margin-bottom: 20px;
}

@media only screen and (min-width:599px) {
    .keybenefits-general.secondary .keybenefits-wrapper .benefit .xs-title {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.keybenefits-landing {
    padding: 20px 0;
}

.keybenefits-landing .keybenefits-wrapper {
    background: rgba(247, 142, 30, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: inherit;
    -webkit-align-items: inherit;
}

@media only screen and (min-width:599px) {
    .keybenefits-landing .keybenefits-wrapper {
        background: none;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.keybenefits-landing .keybenefits-wrapper .benefit {
    margin-right: 0;
    display: flex;
    display: -webkit-flex;
}

@media only screen and (min-width:599px) {
    .keybenefits-landing .keybenefits-wrapper .benefit {
        background: rgba(247, 142, 30, 0.1);
        margin-right: 2px;
    }
}

.keybenefits-landing .keybenefits-wrapper .benefit:last-of-type {
    margin-right: 0;
}

.keybenefits-landing .keybenefits-wrapper .benefit .benefit-inner {
    padding: 5px;
}

@media only screen and (min-width:599px) {
    .keybenefits-landing .keybenefits-wrapper .benefit .benefit-inner {
        padding: 30px 15px;
    }
}

@media only screen and (min-width:991px) {
    .keybenefits-landing .keybenefits-wrapper .benefit .benefit-inner {
        padding: 45px 25px;
    }
}

.keybenefits-landing .keybenefits-wrapper .benefit .benefit-inner .icon {
    height: 32px;
    width: 32px;
    margin-bottom: 10px;
}

.keybenefits-landing .keybenefits-wrapper .benefit .benefit-inner p {
    margin-top: 10px;
    margin-bottom: 0;
}

@media only screen and (min-width:1200px) {
    .metodo figure {
        position: relative;
        height: 100%;
    }
}

.metodo figure .caption {
    z-index: 1;
}

.metodo figure .caption .name {
    display: block;
    font-family: "Domine", serif;
    color: #433e38;
    margin-bottom: 5px;
}

.metodo figure .caption .position {
    text-transform: uppercase;
    color: #F78E1E;
}

@media only screen and (min-width:991px) {
    .metodo figure .caption {
        width: 100%;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 80px;
        text-align: center;
    }

    .metodo figure .caption .name {
        color: #FFFFFF;
        text-shadow: 0 2px 4px rgba(21, 21, 21, 0.3);
        margin-bottom: 20px;
    }

    .metodo figure .caption .name:lang(fr) {
        text-shadow: 0 1px 3px rgba(21, 21, 21, 0.7);
    }

    .metodo figure .caption .position:lang(fr) {
        text-shadow: 0 1px 2px rgba(21, 21, 21, 0.8);
    }
}

.metodo figure img {
    width: 100%;
    position: absolute;
    z-index: 0;
    bottom: 0;
}

@media only screen and (min-width:1200px) {
    .metodo figure img {
        position: relative;
    }
}

.metodo article {
    padding-bottom: 50px;
}

.metodo article .heading {
    margin-bottom: 20px;
}

.metodo article .cta-main.orange {
    margin-bottom: 15px;
}

@media only screen and (min-width:1200px) {
    .metodo article {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .metodo article .heading {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width:767px) {
    .metodo article a {
        display: block;
        text-align: center;
        margin: 15px 0;
    }
}

#deskBox {
    margin-top: 100px;
}

#desks-home #deskBox {
    margin-top: 0;
}

@media only screen and (min-width:767px) {
    .desks-wrapper {
        display: flex;
        display: -webkit-flex;
        box-shadow: 0 10px 30px rgba(21, 21, 21, 0.3);
    }
}

.desks-wrapper .desk {
    padding: 0;
    position: relative;
    border-bottom: 2px solid rgba(21, 21, 21, 0.1);
}

@media only screen and (min-width:767px) {
    .desks-wrapper .desk {
        border-right: 1px solid rgba(21, 21, 21, 0.1);
        border-bottom: 0 none;
    }
}

.desks-wrapper .desk header {
    position: relative;
    background: #151515;
    overflow: hidden;
}

.desks-wrapper .desk header a .caption {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 15px;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.desks-wrapper .desk header a .caption .lg-title {
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 0px;
}

@media only screen and (min-width:991px) {
    .desks-wrapper .desk header a .caption .lg-title {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:767px) {
    .desks-wrapper .desk header a .caption .lg-title {
        font-size: 36px;
    }

    .desks-wrapper .desk header a .caption .lg-title:after {
        content: "";
        display: inline-block;
        position: relative;
        height: 24px;
        width: 12px;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        background: url(images/arrow.png) right center no-repeat;
        background: url(images/arrow.svg) right center no-repeat;
        background-size: cover;
        margin-left: 10px;
    }
}

.desks-wrapper .desk header a .caption .lg-title span {
    font-weight: 300;
}

.desks-wrapper .desk header a .caption .lg-title span.field {
    font-weight: 700;
}

.desks-wrapper .desk header a img {
    opacity: .7;
    transition-property: all;
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 0.3s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 0.3s;
}

.desks-wrapper .desk header a:hover img {
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.desks-wrapper .desk .content {
    padding: 15px;
    background: #FFFFFF;
}

@media only screen and (min-width:991px) {
    .desks-wrapper .desk .content {
        padding: 30px;
    }
}

.desks-wrapper .desk .content .headDesk {
    display: flex;
    display: -webkit-flex;
}

.desks-wrapper .desk .content .headDesk figure {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

@media only screen and (min-width:991px) {
    .desks-wrapper .desk .content .headDesk figure {
        width: 48px;
        height: 48px;
        margin-right: 15px;
    }
}

.desks-wrapper .desk .content .headDesk .name {
    display: block;
    margin-top: 5px;
}

.desks-wrapper .desk .content p {
    margin: 20px 0 0;
}

.reminder {
    position: relative;
    padding: 30px 0;
    background: #F78E1E;
    overflow: hidden;
}

@media only screen and (min-width:991px) {
    .reminder {
        padding: 60px 0;
    }
}

.home .reminder {
    padding: 30px 0;
}

@media only screen and (min-width:768px) {
    .home .reminder {
        padding: 60px 0;
    }
}

@media only screen and (min-width:991px) {
    .home .reminder {
        padding: 120px 0;
    }
}

.caption-form {
    position: relative;
    z-index: 10;
}

.caption-form .md-title {
    color: #FFFFFF;
    font-family: "Domine", serif;
}

.caption-form p {
    font-size: 15px;
    line-height: 1.2em;
}

@media only screen and (min-width:991px) {
    .caption-form p {
        font-size: 21px;
        line-height: 1.4em;
    }
}

@media only screen and (min-width:767px) {
    .caption-form p {
        font-size: 18px;
    }
}

#reminder .diamond-bg.first,
#reminder .diamond-bg.fourth,
#modalContacto .diamond-bg.first,
#modalContacto .diamond-bg.fourth {
    background: #f8aa56;
}

#reminder .diamond-bg.second,
#reminder .diamond-bg.third,
#modalContacto .diamond-bg.second,
#modalContacto .diamond-bg.third {
    background: #fbbf80;
}

#reminder .diamond-bg.first {
    left: -5%;
}

#reminder .diamond-bg.second {
    top: 0;
    z-index: 1;
    left: -13%;
}

#reminder .diamond-bg.third {
    right: -8%;
    top: 50%;
    z-index: 1;
}

#reminder .diamond-bg.fourth {
    top: -15%;
    right: -12%;
}

@media only screen and (min-width:991px) {
    #reminder .diamond-bg.second {
        left: -20%;
    }

    #reminder .diamond-bg.fourth {
        top: -40%;
        right: -20%;
    }
}

.publicaciones .media-logos {
    margin-bottom: 40px;
}

.publicaciones .media-logos .container {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
}

.publicaciones .media-logos .container .logo {
    opacity: .7;
    position: relative;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
    flex-basis: 10%;
    -webkit-flex-basis: 10%;
    text-align: center;
}

.publicaciones .media-logos .container .logo img {
    width: 100%;
    max-width: 100px;
    height: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.publicaciones .media-logos .container .logo:hover {
    opacity: 9;
}

.publicaciones .cta-text.black {
    margin-top: 70px;
}

.slide.visor-carousel {
    box-shadow: 0 10px 30px rgba(21, 21, 21, 0.3);
}

.slide.visor-carousel .item {
    padding: 0;
}

.slide.visor-carousel .item>.container {
    width: 100%;
    padding: 0;
}

@media only screen and (min-width:767px) {
    .slide.visor-carousel .item>.container {
        display: flex;
        display: -webkit-flex;
    }
}

.slide.visor-carousel .item>.container .col-sm-5 {
    padding: 0;
}

.slide.visor-carousel .item>.container .col-sm-5 img {
    box-shadow: 2px 0 3px rgba(21, 21, 21, 0.3);
}

@media only screen and (min-width:991px) {
    .slide.visor-carousel .item>.container .col-sm-5 img {
        max-width: 90%;
        -webkit-transform: translateY(-15%);
        -ms-transform: translateY(-15%);
        transform: translateY(-15%);
    }
}

.slide.visor-carousel .item>.container .col-sm-7 {
    padding: 0;
}

.slide.visor-carousel .item .caption-wrapper {
    padding: 30px 20px;
}

.slide.visor-carousel .item .caption-wrapper .metas {
    display: inline-block;
}

.slide.visor-carousel .item .caption-wrapper .media-logo {
    float: right;
    text-align: right;
}

.slide.visor-carousel .item .caption-wrapper .media-logo img {
    width: 75%;
    height: auto;
    opacity: .7;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.slide.visor-carousel .item .caption-wrapper .caption {
    margin-top: 40px;
}

@media only screen and (min-width:991px) {
    .slide.visor-carousel .item .caption-wrapper .caption {
        width: 85%;
    }
}

@media only screen and (min-width:1200px) {
    .slide.visor-carousel .item .caption-wrapper .caption {
        width: 75%;
    }
}

.slide.visor-carousel .item .caption-wrapper .caption h3 {
    font-weight: 300;
    color: #F78E1E;
    margin-bottom: 30px;
}

.slide.visor-carousel .item .caption-wrapper .caption p {
    margin-bottom: 0;
}

.slide.visor-carousel .carousel-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0;
    text-align: center;
}

.slide.visor-carousel .carousel-control.layout-landscape {
    width: 10%;
}

.slide.visor-carousel .carousel-control.layout-landscape:hover {
    box-shadow: none !important;
}

.slide.visor-carousel .carousel-control.layout-landscape.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
    opacity: .9;
    border-radius: 0;
}

.slide.visor-carousel .carousel-control.layout-landscape.right {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
    opacity: .9;
    border-radius: 0;
}

.slide.visor-carousel .carousel-control.layout-landscape .icon-prev,
.slide.visor-carousel .carousel-control.layout-landscape .icon-next {
    position: absolute;
    display: block;
    height: 36px;
    width: 20px;
    top: 50%;
    margin-top: -18px;
}

.slide.visor-carousel .carousel-control.layout-landscape .icon-prev {
    left: 30px;
}

.slide.visor-carousel .carousel-control.layout-landscape .icon-next {
    right: 30px;
}

.slide.visor-carousel .carousel-control.layout-portrait:hover {
    box-shadow: none !important;
}

.slide.visor-carousel .carousel-control.layout-portrait.left {
    display: none;
}

.slide.visor-carousel .carousel-control.layout-portrait.right {
    background: none;
}

.slide.visor-carousel .carousel-control.layout-portrait.right .icon-next {
    bottom: -5px;
}

.slide.visor-carousel .carousel-control.layout-portrait .icon-prev,
.slide.visor-carousel .carousel-control.layout-portrait .icon-next {
    position: relative;
    display: inline-block;
    height: 36px;
    width: 20px;
}

.slide.visor-carousel .carousel-control.layout-portrait .icon-next {
    position: relative;
    display: inline-block;
    height: 36px;
    width: 20px;
    bottom: 5px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    opacity: 1;
    background-image: url(images/arrow-orange.png);
    background-image: url(images/arrow-orange.svg);
}

.visor-carousel,
.visor-carousel .visor-wrapper,
.visor-carousel .carousel-inner>.item,
.visor-carousel .carousel-inner>.item>img,
.visor-carousel .carousel-inner>.item .col-sm-5,
.visor-carousel .carousel-inner .item>.col-sm-7 {
    height: 280px;
}

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

    .visor-carousel,
    .visor-carousel .visor-wrapper,
    .visor-carousel .carousel-inner>.item,
    .visor-carousel .carousel-inner>.item>img,
    .visor-carousel .carousel-inner>.item .col-sm-5,
    .visor-carousel .carousel-inner .item>.col-sm-7 {
        height: 320px;
    }
}

.visor-carousel .carousel-inner>.item>img {
    position: absolute;
    width: 100%;
}

.blog-home {
    padding: 40px 0 !important;
    margin-top: 50px;
    margin-bottom: 0;
}

@media only screen and (min-width:767px) {
    .blog-home {
        padding: 80px 0 !important;
    }
}

.blog-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
    padding: 0;
}

.blog-wrapper .post-home:last-of-type {
    display: none;
}

@media only screen and (min-width:767px) {
    .blog-wrapper .post-home:last-of-type {
        display: block;
    }
}

@media only screen and (min-width:1024px) {
    .blog-wrapper .post-home {
        padding: 0 30px;
    }
}

.blog-wrapper header .sm-title {
    font-weight: 300;
    color: #F78E1E;
    margin: 20px 0 10px;
}

.blog-wrapper figure a {
    display: block;
    box-shadow: 1px 3px 2px rgba(21, 21, 21, 0.2);
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.blog-wrapper figure a:hover {
    box-shadow: 0 0 1px rgba(21, 21, 21, 0.2);
}

.diamond-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(21, 21, 21, 0.1);
    z-index: -1;
}

.diamond-bg.first,
.diamond-bg.third {
    background: #f5f5f5;
}

.diamond-bg.second {
    background: #efefef;
}

.diamond-bg.first {
    left: -8%;
}

.diamond-bg.second {
    bottom: 0;
    z-index: 1;
    left: -20%;
}

.diamond-bg.third {
    right: -10%;
    top: 30%;
    z-index: 1;
    width: 300px;
    height: 300px;
}

.video .video-wrapper {
    position: relative;
    min-height: 240px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .video-wrapper .heading {
    margin-bottom: 0;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    padding: 0 20px;
}

.video .video-wrapper .heading .section-title,
.video .video-wrapper .heading .subheading {
    color: #FFFFFF;
}

.video .video-wrapper .heading .lg-title {
    font-weight: 300;
    letter-spacing: 0;
}

@media only screen and (min-width:767px) {
    .video .video-wrapper {
        height: 320px;
    }
}

@media only screen and (min-width:991px) {
    .video .video-wrapper {
        min-height: 520px;
    }

    .video .video-wrapper .heading .lg-title {
        font-weight: 200;
        letter-spacing: 1px;
    }
}

.video .video-wrapper:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
    background-color: rgba(21, 21, 21, 0.3);
    background-image: linear-gradient(to right top, rgba(0, 0, 0, 0) 33%, #000000 33%, #000000 33%, rgba(0, 0, 0, 0) 66%);
    background-size: 3px 3px;
}

.video .video-wrapper .modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.video .video-wrapper .modal .modal-dialog {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

    .video .video-wrapper .modal .modal-dialog,
    .video .video-wrapper .modal .modal-dialog .modal-body {
        width: 100%;
        height: auto;
    }
}

.video .video-wrapper .modal .modal-dialog .modal-content {
    background: none;
    box-shadow: none;
    border: 0 none;
}

.opiniones .opiniones-wrapper {
    margin-bottom: 50px;
}

.opiniones .opinion {
    margin: 10px 0 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(117, 112, 106, 0.2);
}

@media only screen and (min-width:991px) {
    .opiniones .opinion {
        margin: 10px 0;
        padding: 30px 0;
    }
}

.opiniones .opinion:after {
    content: "";
    display: table;
    clear: both;
}

.opiniones .opinion .client {
    display: flex;
    display: -webkit-flex;
}

.opiniones .opinion .client .location {
    margin-top: 5px;
}

.opiniones .opinion .client figure {
    margin: 0 15px 15px 0;
}

@media only screen and (min-width:991px) {
    .opiniones .opinion .client figure {
        margin: 0 20px 0 0;
    }
}

.opiniones .opinion .client figure img {
    max-width: 70px;
}

.opiniones .opinion .testimony .inner {
    position: relative;
    padding: 0 30px 0 30px;
    margin-bottom: 5px;
    display: inline-block;
}

.opiniones .opinion .testimony .inner p {
    margin-bottom: 0;
}

@media only screen and (min-width:991px) {
    .opiniones .opinion .testimony .inner {
        margin-bottom: 15px;
    }
}

.opiniones .opinion .testimony .inner:after,
.opiniones .opinion .testimony .inner:before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    position: absolute;
    background: url(images/quotmarks.svg) center center no-repeat;
}

.opiniones .opinion .testimony .inner:after {
    margin: -14px 0 0 10px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    right: 0;
    transition: all ease-in 0.2s;
}

.opiniones .opinion .testimony .inner:before {
    margin: 0px 10px 0 0;
    left: 0;
}

.opiniones .opinion .testimony .cta-text {
    margin-left: 20px;
    display: block;
    clear: both;
}

.opiniones .opinion .testimony .cta-text:after {
    content: "\f106";
}

.opiniones .opinion .testimony .cta-text.close-testimonial:after {
    content: "\f107";
}

.opiniones .opinion .testimony .cta-text:hover,
.opiniones .opinion .testimony .cta-text:focus,
.opiniones .opinion .testimony .cta-text.active {
    text-decoration: underline;
}

@media only screen and (min-width:991px) {
    .opiniones .opinion .testimony .inner {
        padding: 0 45px;
    }

    .opiniones .opinion .testimony .inner:after,
    .opiniones .opinion .testimony .inner:before {
        width: 28px;
        height: 28px;
    }

    .opiniones .opinion .testimony .inner:before {
        margin: -12px 10px 0 0;
    }

    .opiniones .opinion .testimony .cta-text {
        margin: 15px 0 0 45px;
    }
}

.opiniones .views-row .opinion:first-of-type {
    padding-top: 0;
}

.sitios-asociados {
    padding-bottom: 0 !important;
}

.sitios-asociados .asociados-wrapper {
    position: relative;
    padding-bottom: 50px;
}

.sitios-asociados .asociados-wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(117, 112, 106, 0.1);
    z-index: 10;
    position: absolute;
}

.sitios-asociados .asociados-wrapper .heading {
    margin: 30px 0;
}

.sitios-asociados .asociados-wrapper .logos-asociados {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
}

.sitios-asociados .asociados-wrapper .logos-asociados .logo-asociado {
    position: relative;
}

.sitios-asociados .asociados-wrapper .logos-asociados .logo-asociado img {
    width: 90%;
    margin: 0 5%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width:767px) {
    #breadcrumbs {
        padding: 20px 0;
    }

    #breadcrumbs .breadcrumbs li {
        display: inline-block;
        font-family: "Domine", serif;
        font-size: 13px;
        font-weight: 700;
        color: #75706a;
    }

    #breadcrumbs .breadcrumbs li a {
        font-weight: 400;
        text-decoration: underline;
    }

    #breadcrumbs .breadcrumbs li:before {
        content: "\f101";
        font: normal normal normal 12px/1 FontAwesome;
    }

    #breadcrumbs .breadcrumbs li:first-of-type:before {
        content: none;
    }
}

.pagination-wrapper {
    clear: both;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(117, 112, 106, 0.2);
    border-bottom: 1px solid rgba(117, 112, 106, 0.2);
    padding: 30px 0;
    margin: 40px 0 0;
}

.pagination-wrapper .pagination {
    margin: 0;
}

.pagination-wrapper .pagination>li a span {
    text-decoration: underline;
}

.pagination-wrapper .pagination>li a.num {
    font-family: "Domine", serif;
    font-size: 14px;
}

.pagination-wrapper .pagination>li>a,
.pagination-wrapper .pagination>li>span {
    border: 0 none;
    padding: 0;
    color: #151515;
    margin: 6px 12px;
}

.pagination-wrapper .pagination>li>a:hover,
.pagination-wrapper .pagination>li>a.active,
.pagination-wrapper .pagination>li>a:focus,
.pagination-wrapper .pagination>li>span:hover,
.pagination-wrapper .pagination>li>span.active,
.pagination-wrapper .pagination>li>span:focus {
    background: none;
}

.pagination-wrapper .pagination>li>a.active,
.pagination-wrapper .pagination>li>span.active {
    font-size: 16px;
    border-bottom: 2px solid #151515;
    font-weight: 700;
}

.pagination-wrapper .pagination>li:before {
    content: none;
}

.post-navigation {
    width: 100%;
}

.post-navigation li {
    display: inline-block;
}

@media only screen and (min-width:767px) {
    .post-navigation li {
        float: left;
        display: inline-block;
        width: 49%;
        margin-right: 2%;
        text-align: left;
    }

    .post-navigation li:last-of-type {
        text-align: right;
        margin-right: 0;
    }

    .post-navigation li a,
    .post-navigation li span {
        float: none;
    }
}

#hooked-menu-admin-menu {
    z-index: 10000;
}

body {
    font-family: "Yantramanav", sans-serif;
    font-size: 16px;
    line-height: 1.2em;
    color: #333333;
}

@media only screen and (max-width:991px) {
    body {
        line-height: 0.9em;
    }
}

@media only screen and (max-width:767px) {
    body {
        font-size: 14px;
    }
}

@media only screen and (min-width:1200px) {
    .container {
        width: 1270px;
        padding: 0 15px;
    }
}

@media (max-width:1270px) {
    .container {
        width: 100%;
    }
}

@media only screen and (min-width:1270px) {
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

a {
    color: inherit;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
}

a:focus,
button:focus {
    outline: none;
    outline-offset: 0;
}

p {
    margin-bottom: 25px;
    line-height: 1.4em;
    font-weight: 300;
}

p a {
    color: #F78E1E;
    text-decoration: underline;
}

p a:hover {
    color: #F78E1E;
}

p.small-print {
    font-size: 12px;
}

p.heading {
    font-size: 18px;
    font-weight: 400;
}

@media only screen and (max-width:767px) {
    p.heading {
        font-size: 16px;
    }
}

hr {
    width: 165px;
    margin: 0 auto;
    border-top: 1px solid #000000;
}

blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

.fa {
    font-size: 12px;
}

strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

.media-object {
    max-width: none;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.centered {
    text-align: center;
}

.block-center {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.vertical-align {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.go-left {
    float: left;
}

.go-right {
    float: right;
}

@media only screen and (min-width:992px) {
    .col-xs-6.col-sm-4.col-md-3.clear:nth-child(4n+1) {
        clear: both;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .col-xs-6.col-sm-4.col-md-3.clear:nth-child(3n+1) {
        clear: both;
    }
}

@media only screen and (max-width:767px) {
    .col-xs-6.col-sm-4.col-md-3.clear:nth-child(2n+1) {
        clear: both;
    }
}

@media only screen and (min-width:992px) {
    .col-md-6.clear:nth-child(2n+1) {
        clear: both;
    }
}

.col-xs-6.clear:nth-child(2n+1) {
    clear: both;
}

textarea:focus,
input:focus {
    outline: 0;
    box-shadow: none !important;
    border-color: transparent;
}

textarea {
    resize: none;
}

.form-control:focus {
    box-shadow: none;
}

ul {
    list-style-type: none;
    -webkit-padding-start: 0px;
    margin: 0;
    padding: 0;
}

ol {
    padding-left: 0;
}

ol li {
    display: list-item;
    padding-left: 0;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.navbar {
    border-radius: 0;
    min-height: 40px;
    margin-bottom: 0;
}

.navbar .navbar-collapse {
    padding: 0;
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
    color: inherit;
    background: inherit;
}

.flex-container {
    display: -webkit-flex;
    display: flex;
}

.wysiwyg {
    line-height: 1.5em;
    font-weight: 300;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5 {
    color: #151515;
}

.wysiwyg h1 a:hover,
.wysiwyg h2 a:hover,
.wysiwyg h3 a:hover,
.wysiwyg h4 a:hover,
.wysiwyg h5 a:hover {
    text-decoration: none;
}

.wysiwyg h1 {
    font-size: 36px;
    margin-bottom: 50px;
    font-family: "Domine", serif;
}

.wysiwyg h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-family: "Yantramanav", sans-serif;
}

.wysiwyg h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: "Domine", serif;
}

.wysiwyg h4,
.wysiwyg h5 {
    font-size: 18px;
    margin-bottom: 25px;
    font-family: "Domine", serif;
}

.wysiwyg a {
    color: #F78E1E;
    font-weight: 400;
}

.wysiwyg a:hover {
    text-decoration: underline;
}

.wysiwyg .wp-caption {
    max-width: 100%;
}

.wysiwyg .wp-caption-text {
    font-size: 12px;
    margin: 10px 0 20px;
    text-align: center;
}

.wysiwyg ul {
    margin-bottom: 50px;
}

.wysiwyg ul li {
    display: block;
}

.wysiwyg ul li:before {
    content: '-';
    padding-right: 15px;
}

.wysiwyg ol {
    margin-bottom: 50px;
    padding-left: 15px;
}

.wysiwyg ol li {
    display: list-item;
    padding-left: 5px;
}

.wysiwyg img {
    max-width: 100%;
    margin: 25px auto;
    display: block;
    height: auto;
}

.wysiwyg .wp-caption img {
    margin: 25px 0;
    display: inline-block;
}

.wysiwyg iframe {
    margin: 25px auto;
    display: block;
}

.wysiwyg .aligncenter {
    text-align: center;
    margin: 0 auto;
}

.wysiwyg .alignleft {
    float: left;
    clear: left;
    margin-top: 0;
    margin-bottom: 0px;
    margin-right: 25px;
}

.wysiwyg .alignright {
    float: right;
    clear: right;
    margin-top: 0;
    margin-bottom: 0px;
    margin-left: 25px;
}

.wysiwyg blockquote {
    border-left: none;
    text-align: center;
    font-family: "Domine", serif;
    margin-bottom: 50px;
}

.wysiwyg blockquote p:before {
    color: #75706a;
    content: "“";
    font-size: 25px;
    padding-right: 25px;
    vertical-align: bottom;
}

.wysiwyg blockquote p:after {
    color: #75706a;
    content: "”";
    position: relative;
    top: 5px;
    font-size: 30px;
    padding-left: 25px;
    vertical-align: bottom;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
h5 {
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1em;
}

.xl-title {
    font-size: 32px;
    font-family: "Yantramanav", sans-serif;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1em;
    text-rendering: geometricPrecision;
}

@media only screen and (min-width:991px) {
    .xl-title {
        font-size: 52px;
    }
}

.xl-title.post-title {
    font-size: 28px;
    font-family: "Yantramanav", sans-serif;
    margin-bottom: 20px;
    line-height: 1.2em;
    letter-spacing: -0.01em;
}

@media only screen and (min-width:991px) {
    .xl-title.post-title {
        font-size: 42px;
    }
}

.lg-title {
    font-size: 21px;
    font-family: "Yantramanav", sans-serif;
    line-height: 1.2em;
}

.lg-title.page-title {
    font-family: "Domine", serif;
    margin: 20px 0 20px;
}

@media only screen and (min-width:767px) {
    .lg-title {
        font-size: 24px;
        line-height: 1.4em;
    }
}

@media only screen and (min-width:991px) {
    .lg-title {
        font-size: 28px;
    }
}

.home .lg-title,
.lg-title.main-title {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 300;
}

.home .lg-title strong,
.lg-title.main-title strong {
    font-family: "Domine", serif;
}

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

    .home .lg-title,
    .lg-title.main-title {
        font-size: 30px;
    }
}

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

    .home .lg-title,
    .lg-title.main-title {
        font-size: 36px;
    }
}

.md-title {
    font-size: 18px;
    font-family: "Yantramanav", sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

@media only screen and (min-width:767px) {
    .md-title {
        font-size: 24px;
    }
}

@media only screen and (min-width:991px) {
    .md-title {
        font-size: 32px;
    }
}

.sm-title {
    font-size: 16px;
    font-family: "Yantramanav", sans-serif;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.2;
}

@media only screen and (min-width:767px) {
    .sm-title {
        font-size: 21px;
    }
}

@media only screen and (min-width:991px) {
    .sm-title {
        font-size: 24px;
        font-weight: 300;
    }
}

.xs-title {
    font-size: 16px;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    line-height: 1.2em;
}

@media only screen and (min-width:767px) {
    .xs-title {
        font-size: 18px;
    }
}

@media only screen and (min-width:991px) {
    .xs-title {
        font-size: 21px;
    }
}

.home .xs-title,
.xs-title-small {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 1.4em;
}

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

    .home .xs-title,
    .xs-title-small {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

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

    .home .xs-title,
    .xs-title-small {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

.xxs-title {
    font-size: 16px;
    font-family: "Yantramanav", sans-serif;
    font-weight: 500;
    color: #433e38;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.4em;
}

.heading {
    margin-bottom: 30px;
}

@media only screen and (min-width:991px) {
    .heading {
        margin-bottom: 50px;
    }
}

.subheading {
    font-weight: 100;
    color: #433e38;
    margin-top: 25px;
}

.section-title+.subheading {
    margin-top: 0;
}

.section-title {
    font-weight: 300;
    text-transform: uppercase;
    color: #75706a;
}

blockquote {
    font-family: "Domine", serif;
    font-size: 16px;
    line-height: 1.2em;
}

@media only screen and (min-width:767px) {
    blockquote {
        font-size: 21px;
        line-height: 1.4;
    }
}

@media only screen and (min-width:991px) {
    blockquote {
        font-size: 24px;
        line-height: 1.4em;
    }
}

.meta {
    font-size: 14px;
    line-height: 1.6em;
}

.meta.name {
    font-family: "Domine", serif;
}

.meta.date {
    font-weight: 500;
    margin-right: 10px;
}

.meta.category,
.meta.location {
    font-weight: 300;
    color: #75706a;
}

.meta.category {
    text-transform: uppercase;
}

.cta-main {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    font-family: "Yantramanav", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    padding: 10px 40px 10px 20px;
    text-shadow: none;
    letter-spacing: 0.04em;
    box-shadow: 1px 3px 2px rgba(21, 21, 21, 0.2);
    border: 1px solid transparent;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.cta-main:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    height: 24px;
    width: 13px;
    margin-top: -12px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
    background-size: cover;
}

.cta-main:hover {
    box-shadow: 0 0 1px rgba(21, 21, 21, 0.2);
}

.cta-main.orange {
    color: #FFFFFF;
    background: #F78E1E;
}

.cta-main.orange:hover {
    color: #F78E1E;
    border: 1px solid #F78E1E;
    background: transparent;
}

.cta-main.orange:hover:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background: url(images/arrow-orange.png) right center no-repeat;
    background: url(images/arrow-orange.svg) right center no-repeat;
}

.cta-main.black {
    color: #FFFFFF;
    background: #151515;
}

.cta-main.black:hover {
    color: #151515;
    border: 1px solid #151515;
    background: transparent;
}

.cta-main.black:hover:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background: url(images/arrow-black.png) right center no-repeat;
    background: url(images/arrow-black.svg) right center no-repeat;
}

.cta-main.big {
    font-size: 18px;
    padding: 15px 60px 14px 40px;
}

.cta-main+.cta-text {
    margin-left: 15px;
}

@media only screen and (min-width:767px) {
    .cta-main {
        font-size: 16px;
    }
}

.cta-secondary {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    font-family: "Yantramanav", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    padding: 10px 40px 10px 20px;
    text-shadow: none;
    letter-spacing: 0.04em;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.cta-secondary:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    height: 24px;
    width: 12px;
    margin-top: -12px;
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
    background-size: cover;
}

.cta-secondary.orange {
    color: #F78E1E;
    border: 1px solid #F78E1E;
}

.cta-secondary.orange:after {
    background: url(images/arrow-orange.png) right center no-repeat;
    background: url(images/arrow-orange.svg) right center no-repeat;
}

.cta-secondary.orange:hover {
    color: #FFFFFF;
    background: #F78E1E;
}

.cta-secondary.orange:hover:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
}

.cta-secondary.black {
    color: #151515;
    border: 1px solid #151515;
}

.cta-secondary.black:after {
    background: url(images/arrow-black.png) right center no-repeat;
    background: url(images/arrow-black.svg) right center no-repeat;
}

.cta-secondary.black:hover {
    color: #FFFFFF;
    background: #151515;
}

.cta-secondary.black:hover:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
}

@media only screen and (min-width:767px) {
    .cta-secondary {
        font-size: 16px;
    }
}

.cta-text {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    font-family: "Yantramanav", sans-serif;
    text-decoration: underline;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.cta-text:after {
    content: "\f105";
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    margin-left: 5px;
}

.cta-text.orange {
    color: #F78E1E;
}

.cta-text.black {
    color: #151515;
}

@media only screen and (min-width:767px) {
    .cta-text {
        font-size: 16px;
    }
}

.close {
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #151515 !important;
    opacity: 1;
    box-shadow: 0 3px 5px rgba(21, 21, 21, 0.4);
    z-index: 10000;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.close:hover {
    box-shadow: 0 1px 3px rgba(21, 21, 21, 0.3);
    opacity: 1;
}

.close .icon-bar {
    position: relative;
    background: #F78E1E;
    height: 3px;
    width: 26px;
    display: block;
    margin-left: 7px;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.close .icon-bar:first-of-type {
    top: 1px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.close .icon-bar:last-of-type {
    top: -2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

@media only screen and (min-width:991px) {
    .close {
        height: 50px;
        width: 50px;
    }

    .close .icon-bar {
        width: 36px;
    }
}

.play-btn {
    display: block;
    position: relative;
    margin: 20px auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F78E1E;
    box-shadow: 0 3px 5px rgba(21, 21, 21, 0.4);
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.play-btn .icon-play {
    display: inline-block;
    width: 20px;
    height: 26px;
    background: url(images/play.svg) center no-repeat;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 50%;
    margin-left: -8px;
}

.play-btn:hover {
    box-shadow: 0 1px 3px rgba(21, 21, 21, 0.3);
}

.icons span {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    background-size: cover !important;
}

@media only screen and (min-width:991px) {
    .icons span {
        width: 18px;
        height: 18px;
    }
}

.mail {
    text-decoration: underline;
}

.mail span {
    background: url(images/mail-icon.png) center center no-repeat;
    background: url(images/mail-icon.svg) center center no-repeat;
    text-decoration: none;
}

.phone {
    font-size: 16px;
    font-weight: 700;
}

.phone span {
    background: url(images/phone-icon.png) center center no-repeat;
    background: url(images/phone-icon.svg) center center no-repeat;
}

.skype {
    display: inline-block;
}

.skype i {
    font-size: 18px;
    color: #151515;
}

.vcard span {
    background: url(images/vcard-icon.png) center center no-repeat;
    background: url(images/vcard-icon.svg) center center no-repeat;
}

.linkedin span {
    background: url(images/linkedin-icon.png) center center no-repeat;
    background: url(images/linkedin-icon.svg) center center no-repeat;
}

.languages span {
    background: url(images/language-icon.png) center center no-repeat;
    background: url(images/language-icon.svg) center center no-repeat;
}

@media only screen and (min-width:767px) {
    .social-links {
        text-align: left;
    }
}

.social-links li {
    display: inline-block;
}

.social-links li a {
    width: 36px;
    height: 36px;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    background: #F78E1E;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 0 3px 5px rgba(21, 21, 21, 0.4);
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.social-links li a:hover {
    box-shadow: 0 1px 3px rgba(21, 21, 21, 0.3);
}

.social-links li a .fa {
    font-size: 24px;
    line-height: 36px;
}

.go-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
    height: 40px;
    width: 40px;
    background: black;
    box-shadow: 1px 3px 2px rgba(21, 21, 21, 0.2);
    z-index: 1000;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
}

.go-top:after {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    margin-right: -6px;
    top: 50%;
    height: 24px;
    width: 12px;
    margin-top: -12px;
    transform: rotate(180deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
    background-size: cover;
}

.go-top:hover {
    box-shadow: 0 0 1px rgba(21, 21, 21, 0.2);
}

.form-group {
    margin-bottom: 15px;
}

@media screen and (min-width:767px) {
    .form-group {
        margin-bottom: 25px;
    }
}

.form-group .form-control {
    font-size: 16px;
    font-weight: 300;
    color: #151515;
    background: #FFFFFF;
    border-radius: 0 !important;
    border: 0 none;
    box-shadow: 0 2px 3px rgba(21, 21, 21, 0.3);
}

.form-group label {
    display: none;
    color: rgba(21, 21, 21, 0.8);
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media screen and (min-width:767px) {
    .form-group label {
        display: block;
    }
}

.form-group input,
.form-group select {
    height: 45px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}

.form-group textarea {
    min-height: 200px;
    resize: none;
}

.form-group input[type=email] {
    padding-left: 35px;
    background: url(images/mail-icon.png) 5px center no-repeat #FFFFFF;
    background: url(images/mail-icon.svg) 10px center no-repeat #FFFFFF;
    background-size: 18px 18px;
}

.form-group input[type=tel] {
    padding-left: 35px;
    background: url(images/phone-icon.png) 5px center no-repeat #FFFFFF;
    background: url(images/phone-icon.svg) 10px center no-repeat #FFFFFF;
    background-size: 18px 18px;
}

.form-group input[type=file] {
    background: none;
    box-shadow: none;
    padding: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 2px 1px #F78E1E !important;
}

.form-group .select-wrapper {
    position: relative;
    cursor: pointer;
}

.form-group .select-wrapper:after {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    background: #000;
    color: #fff;
    height: 100%;
    width: 45px;
    text-align: center;
    line-height: 43px;
    pointer-events: none;
}

.form-group .select-wrapper select#edit-language {
    padding-left: 35px;
    background: url(images/language-icon.png) 5px center no-repeat #FFFFFF;
    background: url(images/language-icon.svg) 10px center no-repeat #FFFFFF;
    background-size: 18px 18px;
}

@media screen and (min-width:767px) {
    .form-group {
        margin-bottom: 15px;
    }
}

.checkbox {
    font-size: 14px;
    line-height: 16px;
    color: #151515;
}

.checkbox a {
    color: #151515;
    text-decoration: underline;
}

.checkbox input[type=checkbox] {
    margin: 0 0 0 -20px;
}

@media screen and (min-width:767px) {
    .checkbox input[type=checkbox] {
        margin: 3px 0 0 -20px;
    }
}

::-webkit-input-placeholder {
    color: #75706a;
    font-weight: 300;
}

:-moz-placeholder {
    color: #75706a;
    opacity: 1;
    font-weight: 300;
}

::-moz-placeholder {
    color: #75706a;
    opacity: 1;
    font-weight: 300;
}

:-ms-input-placeholder {
    color: #75706a;
    font-weight: 300;
}

@media screen and (min-width:767px) {
    ::-webkit-input-placeholder {
        opacity: 0;
    }

    :-moz-placeholder {
        opacity: 0;
    }

    ::-moz-placeholder {
        opacity: 0;
    }

    :-ms-input-placeholder {
        opacity: 0;
    }
}

@media only screen and (min-width:991px) {
    #sidebar-form {
        padding-bottom: 100px;
    }
}

#sidebar-form .form-wrapper {
    box-shadow: 0 1px 2px rgba(21, 21, 21, 0.4);
}

@media only screen and (min-width:991px) {
    #sidebar-form .form-wrapper {
        margin-left: 20px;
    }
}

#sidebar-form .form-wrapper .form-header {
    background: #151515;
    padding: 10px;
}

#sidebar-form .form-wrapper .form-header .sm-title {
    font-family: "Domine", serif;
    color: #F78E1E;
    margin-bottom: 5px;
}

#sidebar-form .form-wrapper .form-header p {
    margin-bottom: 0;
    color: #FFFFFF;
}

#sidebar-form .form-wrapper .form-body {
    padding: 20px 10px 30px;
    background: rgba(21, 21, 21, 0.07);
}

#sidebar-form .form-wrapper .form-body:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

@media only screen and (min-width:767px) {
    #sidebar-form .form-wrapper .form-body .form-group .form-control {
        height: 35px;
    }

    #sidebar-form .form-wrapper .form-body .form-group textarea {
        min-height: 130px;
    }
}

@media only screen and (min-width:767px) and (min-width:767px) and (max-width:991px) {
    #sidebar-form .form-wrapper .form-body .form-group textarea {
        min-height: 245px;
    }
}

@media only screen and (min-width:767px) {
    #sidebar-form .form-wrapper .form-body .form-group .select-wrapper:after {
        width: 35px;
        line-height: 36px;
    }
}

.info:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    background: url(images/info-icon.png);
    background: url(images/info-icon.svg);
}

.info.orange:before {
    width: 36px;
    height: 36px;
    background: url(images/info-icon_white.png);
    background: url(images/info-icon_white.svg);
}

.home .section .heading {
    padding: 0 20px;
}

@media only screen and (min-width:991px) {
    .home .section .heading {
        padding: 0;
    }
}

.landing-header .header-inner {
    position: relative;
    background: #151515;
    height: 250px;
}

@media only screen and (min-width:767px) {
    .landing-header .header-inner {
        height: 300px;
    }
}

@media only screen and (min-width:991px) {
    .landing-header .header-inner {
        height: 350px;
    }
}

.landing-header .header-inner .fill {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .5;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.landing-header .header-inner .header-caption {
    max-width: 90%;
    padding: 10px 0 0;
    color: #FFFFFF;
    border-top: 2px solid #F78E1E;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width:767px) {
    .landing-header .header-inner .header-caption {
        max-width: 60%;
        padding: 20px 0 0;
    }
}

@media only screen and (min-width:991px) {
    .landing-header .header-inner .header-caption {
        max-width: 40%;
    }
}

@media only screen and (max-width:1270px) and (min-width:767px) {
    .landing-header .header-inner .header-caption {
        left: 10%;
        right: 10%;
    }
}

.main .page-title {
    color: #433e38;
}

@media only screen and (max-width:599px) {
    .main {
        padding: 0;
    }
}

@media only screen and (min-width:991px) {
    .main {
        padding-left: 0;
    }
}

.simple-header {
    margin-top: 20px;
}

.simple-header .simple-header-img {
    box-shadow: 2px 0 3px rgba(21, 21, 21, 0.3);
    margin: 15px 0 20px;
}

@media only screen and (min-width:767px) {
    .simple-header .simple-header-img {
        margin: 30px 0 40px;
    }
}

.simple-header p:last-of-type {
    margin-bottom: 0;
}

.static-page {
    background: rgba(117, 112, 106, 0.1);
    padding: 40px 0;
}

.static-page+div .section.masonry {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.static-page+div .section.masonry .heading {
    display: none;
}

.static-page+div .section.masonry .grid {
    max-width: 1200px;
    margin: 0 auto;
}

.post-content h2 {
    font-size: 21px;
    color: #F78E1E;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    margin: 25px 0 15px;
}

@media only screen and (min-width:767px) {
    .post-content h2 {
        font-size: 24px;
    }
}

.post-content h3 {
    font-size: 18px;
    color: #151515;
    font-family: "Yantramanav", sans-serif;
    font-weight: 400;
    margin: 15px 0;
}

@media only screen and (min-width:767px) {
    .post-content h3 {
        font-size: 21px;
    }
}

.post-content h4 {
    font-size: 16px;
    color: #F78E1E;
    font-family: "Yantramanav", sans-serif;
    font-weight: 400;
    margin: 15px 0;
}

@media only screen and (min-width:767px) {
    .post-content h4 {
        font-size: 18px;
    }
}

.post-content p {
    margin-top: 10px;
    margin-bottom: 20px;
}

.post-content p:last-of-type {
    margin-bottom: 0;
}

.post-content ul {
    margin-left: 30px;
    margin-bottom: 30px;
}

.post-content ul li {
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-content ul li:before {
    content: "";
    display: inline-block;
    background-color: rgba(117, 112, 106, 0.6);
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    margin: 0 10px 2px 0;
}

.post-content ul li ul {
    margin-top: 15px;
}

.post-content ul.twoCols:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.post-content ul.twoCols li {
    float: left;
    width: 48%;
    margin-right: 2%;
}

.post-content strong {
    font-weight: 500;
}

.post-content blockquote {
    position: relative;
    width: calc(100% - 200px);
    margin: 50px 0 50px 100px;
}

.headofdesk-content {
    padding: 20px;
}

@media only screen and (min-width:340px) {
    .headofdesk-content {
        padding: 20px 30px;
        width: 100%;
    }
}

@media only screen and (min-width:767px) {
    .headofdesk-content {
        position: relative;
    }
}

.headofdesk-content .sm-title {
    font-family: "Domine", serif;
    margin-bottom: 5px;
}

@media only screen and (min-width:991px) {
    .headofdesk-content .sm-title {
        font-size: 21px;
    }
}

.headofdesk-content .metas {
    color: #75706a;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.4em;
}

@media only screen and (min-width:767px) {
    .headofdesk-content .metas {
        min-height: 40px;
    }
}

.headofdesk-content .metas .position {
    font-weight: 300;
    font-size: 16px;
    display: inline;
}

.headofdesk-content .metas .diamond {
    margin: 0 10px;
}

.headofdesk-content ul li {
    margin-bottom: 7px;
    line-height: 1.3em;
}

@media only screen and (min-width:1200px) {
    .headofdesk-content ul li {
        margin-bottom: 10px;
    }
}

.headofdesk-content ul li a {
    color: #F78E1E;
}

.headofdesk-content .cta-secondary {
    position: relative;
    margin: 10px auto;
    display: block;
    text-align: center;
}

@media only screen and (min-width:340px) {
    .headofdesk-content .cta-secondary {
        position: absolute;
        top: 100px;
        right: 30px;
        margin-top: 0;
    }
}

@media only screen and (min-width:767px) {
    .headofdesk-content .cta-secondary {
        bottom: 20px;
        top: auto;
    }
}

.headofdesk-widget {
    margin: 40px 0;
}

.headofdesk-widget .headofdesk-wrapper {
    position: relative;
    background: rgba(247, 142, 30, 0.1);
}

@media only screen and (min-width:767px) {
    .headofdesk-widget .headofdesk-wrapper {
        display: table;
        min-width: 100%;
    }
}

.headofdesk-widget .headofdesk-wrapper .headofdesk-img {
    padding: 0;
}

.headofdesk-widget .headofdesk-wrapper .headofdesk-img img {
    width: 100%;
    height: auto;
    margin: 0;
    box-shadow: 2px 0 3px rgba(21, 21, 21, 0.3);
}

@media only screen and (min-width:340px) {
    .headofdesk-widget .headofdesk-wrapper .headofdesk-img img {
        width: 120px;
        height: 120px;
        max-width: none;
        margin: 20px 0 0 30px;
    }
}

@media only screen and (min-width:767px) {
    .headofdesk-widget .headofdesk-wrapper .headofdesk-img {
        display: table-cell;
        width: 240px;
    }

    .headofdesk-widget .headofdesk-wrapper .headofdesk-img img {
        margin: 0;
        width: 240px;
        height: 240px;
    }
}

.headofdesk-widget .headofdesk-wrapper .headofdesk-content .metas {
    min-height: 0;
}

.headofdesk-widget .headofdesk-wrapper .headofdesk-content .languages p {
    display: inline-block;
    margin-bottom: 0;
}

@media only screen and (min-width:767px) {
    .headofdesk-widget .headofdesk-wrapper .headofdesk-content {
        display: table-cell;
        vertical-align: top;
    }
}

.masonry {
    background: rgba(117, 112, 106, 0.1);
    padding-top: 20px;
}

@media only screen and (min-width:1200px) {
    .masonry {
        padding: 20px;
    }
}

.masonry .grid:after {
    content: '';
    display: block;
    clear: both;
}

.masonry .grid .grid-item {
    width: 50%;
    float: left;
    overflow: hidden;
}

@media only screen and (min-width:480px) {
    .masonry .grid .grid-item {
        width: 33.334%;
    }
}

@media only screen and (min-width:1200px) {
    .masonry .grid .grid-item {
        width: 20%;
    }
}

.masonry .grid .grid-item img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    transition-property: all;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 0.2s;
}

@media only screen and (min-width:767px) {
    .masonry .grid .grid-item img {
        max-width: 100%;
    }
}

@media only screen and (min-width:480px) {
    .masonry .grid .grid-item.grid-item-big {
        width: 33.334%;
    }
}

@media only screen and (min-width:767px) {
    .masonry .grid .grid-item.grid-item-big {
        width: 66.667%;
    }
}

@media only screen and (min-width:1200px) {
    .masonry .grid .grid-item.grid-item-big {
        width: 40%;
    }
}

.masonry .grid a {
    width: 100%;
    height: 100%;
    background: #151515;
    display: block;
}

.masonry .grid a:after {
    content: "";
    display: block;
    position: absolute;
    right: -80px;
    top: 20px;
    height: 30px;
    width: 17px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
    background-size: cover;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.3s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.3s;
}

.masonry .grid a:hover {
    background: #F78E1E;
}

.masonry .grid a:hover:after {
    right: 20px;
}

.masonry .grid a:hover>img {
    opacity: 0.1;
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.masonry .grid a .service-caption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 10;
    text-transform: uppercase;
}

.masonry .grid a .service-caption .lg-title {
    color: #FFFFFF;
    letter-spacing: 0.01em;
    display: inline-block;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 500;
}

.masonry .grid a .service-caption .lg-title span {
    display: block;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
}

@media only screen and (min-width:480px) {
    .masonry .grid a .service-caption {
        left: 15px;
        bottom: 15px;
    }
}

@media only screen and (min-width:1200px) {
    .masonry .grid a .service-caption {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

@media only screen and (max-width:1200px) {
    .masonry .grid a .service-caption .lg-title {
        font-size: 21px;
    }
}

@media only screen and (max-width:480px) {
    .masonry .grid a .service-caption .lg-title {
        font-size: 18px;
    }

    .masonry .grid a .service-caption .lg-title span {
        font-size: 16px;
    }
}

.reminder+.masonry {
    background: none;
}

.reminder+.masonry .grid {
    width: 100%;
    margin: 0 auto;
}

@media only screen and (min-width:1200px) {
    .reminder+.masonry .grid {
        max-width: 1200px;
    }
}

.reminder+.masonry .grid .lg-title {
    font-size: 21px;
}

.team-intro {
    position: relative;
    padding-bottom: 40px;
}

.team-intro .main-title {
    text-align: center;
    margin-top: 40px;
}

@media only screen and (min-width:767px) {
    .team-intro {
        padding-bottom: 100px;
    }

    .team-intro .main-title {
        text-align: left;
        margin-top: auto;
    }
}

.team-intro:after {
    content: "";
    display: block;
    clear: both;
}

.team-intro .diamond-bg.second {
    left: -5%;
    bottom: -20%;
}

.managment .manager {
    padding: 30px 0;
}

.managment .manager.go-right {
    float: none;
}

@media only screen and (min-width:767px) {
    .managment .manager.go-right {
        float: right;
    }
}

@media only screen and (min-width:1200px) {
    .managment .manager {
        margin-top: -130px;
    }
}

.managment .manager .caption {
    clear: both;
    margin-top: 60px;
}

.managment .manager .caption .lg-title {
    font-family: "Domine", serif;
}

@media only screen and (max-width:480px) {
    .managment .manager .caption .lg-title {
        font-size: 14px;
    }

    .managment .manager .caption .cta-main {
        padding: 10px 30px 10px 10px;
    }

    .managment .manager .caption .cta-main:after {
        right: 10px;
    }
}

@media only screen and (min-width:767px) {
    .managment .manager {
        width: 330px;
        padding: 20px 30px;
    }

    .managment .manager .caption {
        margin-top: 80px;
    }
}

@media only screen and (min-width:991px) {
    .managment .manager {
        width: 390px;
        padding: 20px 30px;
    }

    .managment .manager .caption {
        margin-top: 80px;
    }
}

figure.diamond-mask {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 21, 21, 0.3);
}

figure.diamond-mask a {
    display: block;
}

figure.diamond-mask img {
    width: 150%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    margin-top: -50px;
    margin-left: -50px;
    max-width: none;
}

@media only screen and (min-width:991px) {
    figure.diamond-mask {
        width: 280px;
        height: 280px;
        margin: 0 30px;
    }

    figure.diamond-mask img {
        margin-top: -70px;
        margin-left: -70px;
    }
}

.professionals>.container {
    padding: 0;
}

.professionals .employed {
    padding: 0;
}

.professionals .employed .employed-wrapper {
    position: relative;
    overflow: hidden;
}

.professionals .employed .employed-wrapper a {
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.3s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.3s;
}

.professionals .employed .employed-wrapper a .caption {
    position: absolute;
    z-index: 10;
    bottom: 0;
    width: 100%;
    padding: 5px 10px;
    background: rgba(21, 21, 21, 0.7);
}

.professionals .employed .employed-wrapper a .caption .name {
    color: #FFFFFF;
}

.professionals .employed .employed-wrapper a .caption .cta-text {
    text-decoration: none;
}

.professionals .employed .employed-wrapper a img {
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.3s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.3s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.3s;
}

.professionals .employed .employed-wrapper a:hover img {
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.profile {
    padding: 60px 0 60px;
    background: rgba(117, 112, 106, 0.1);
}

.profile figure.diamond-mask {
    margin-bottom: 60px;
}

.profile .caption .main-title {
    font-family: "Domine", serif;
    margin-bottom: 0;
}

.profile .caption .xs-title {
    margin-bottom: 15px;
}

.profile .caption .metas {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.profile .caption .metas .diamond {
    margin-left: 10px;
    margin-right: 10px;
}

.profile .caption .features {
    padding: 15px 0 5px;
    margin: 25px 0 40px;
    background: #FFFFFF;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.profile .caption .features .icons {
    margin-bottom: 10px;
    line-height: 1.3;
}

.profile .caption .features .icons a {
    color: #F78E1E;
}

.profile .caption .features:after {
    content: "";
    clear: both;
    display: block;
}

.profile .caption ul {
    margin-bottom: 20px;
}

.profile .caption ul li {
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.4;
}

.profile .caption ul li:before {
    content: "";
    display: inline-block;
    background-color: rgba(117, 112, 106, 0.6);
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    margin: 0 10px 2px 0;
}

.profile .caption ul li:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width:767px) {
    .profile .caption ul {
        margin-left: 30px;
    }
}

.profile+.section.publicaciones {
    margin: 80px 0 120px;
}

@media only screen and (min-width:767px) {
    .profile {
        padding: 120px 0;
    }

    .profile figure.diamond-mask {
        margin-bottom: 0px;
    }
}

body.blog-archive #content,
body.post-page #content {
    margin-top: 20px;
}

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

    body.blog-archive #content,
    body.post-page #content {
        margin-top: 40px;
    }
}

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

    .blog-archive .archive-content,
    .post-page .post-content {
        padding-right: 40px;
    }
}

.blog-post {
    border-bottom: 1px solid rgba(117, 112, 106, 0.2);
    padding: 40px 0;
}

.blog-post:first-of-type {
    padding-top: 0;
}

.blog-post:last-of-type {
    border-bottom: 0 none;
}

.blog-post:last-of-type:after {
    content: "";
    display: block;
    clear: both;
}

.blog-post .blog-wrapper {
    margin-bottom: 0;
}

@media only screen and (min-width:767px) {
    .blog-post .blog-wrapper {
        margin-bottom: 40px;
    }
}

.blog-post .blog-wrapper header {
    margin-top: 20px;
}

.blog-post .blog-wrapper header .sm-title {
    color: #151515;
    font-weight: 300;
    line-height: 1.2;
    margin: 5px 0 10px;
}

.blog-post .blog-wrapper header p {
    margin-bottom: 15px;
}

@media only screen and (min-width:767px) {
    .blog-post .blog-wrapper {
        display: flex;
        display: -webkit-flex;
        margin-bottom: 0;
    }

    .blog-post .blog-wrapper .col-sm-7 header {
        margin-top: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.blog-post .blog-wrapper figure img {
    width: 100%;
}

.sidebar {
    margin-top: 40px;
}

@media only screen and (min-width:991px) {
    .sidebar {
        margin-top: 0;
    }

    .sidebar.sidebar-blog {
        padding-left: 80px;
    }
}

.sidebar .press-contact {
    margin-bottom: 40px;
    line-height: 1.4em;
}

@media only screen and (max-width:992px) {
    .sidebar .press-contact {
        text-align: left;
        margin-left: -15px;
    }
}

.sidebar .press-contact strong {
    display: block;
    font-family: "Domine", serif;
    margin-bottom: 10px;
}

.sidebar .press-contact a {
    color: #F78E1E;
    text-decoration: underline;
}

.sidebar .sidebar-module {
    position: relative;
    border-radius: 1px;
    margin-bottom: 30px;
    box-shadow: 0 1px 2px rgba(21, 21, 21, 0.4);
    padding: 20px 10px;
    background: rgba(117, 112, 106, 0.1);
}

.sidebar .sidebar-module#quick-win {
    background: #151515;
    min-height: 180px;
    display: none;
}

@media only screen and (min-width:767px) {
    .sidebar .sidebar-module#quick-win {
        display: block;
    }
}

@media only screen and (min-width:767px) and (max-width:991px) {
    .sidebar .sidebar-module {
        width: 48%;
        margin: 0 1% 40px 1%;
        float: left;
    }
}

.sidebar .sidebar-module .diamond {
    background-color: rgba(117, 112, 106, 0.8);
    width: 6px;
    height: 6px;
    margin: 0 4px 2px;
}

.sidebar .sidebar-module aside {}

.sidebar .sidebar-module aside .cta-text,
.sidebar .sidebar-module aside p {
    font-size: 14px;
}

.sidebar .sidebar-module aside .cta-text {
    display: inline;
}

.sidebar .sidebar-module aside .xs-title,
.sidebar .sidebar-module aside .xs-title-small {
    font-family: "Domine", serif;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.sidebar .sidebar-module aside ul li {
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar .sidebar-module aside ul li:before {
    content: "";
    display: inline-block;
    background-color: rgba(117, 112, 106, 0.6);
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    margin: 0 10px 2px 0;
}

.sidebar .sidebar-module aside ul li:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width:1200px) {
    .sidebar .sidebar-module {
        padding: 30px 20px;
    }

    .sidebar .sidebar-module .cta-text,
    .sidebar .sidebar-module p {
        font-size: 16px;
    }

    .sidebar .sidebar-module .xs-title,
    .sidebar .sidebar-module .xs-title-small {
        margin-bottom: 20px;
    }
}

.sidebar .sidebar-module .quick-win {
    color: #FFFFFF;
}

@media only screen and (min-width:767px) and (max-width:991px) {
    .sidebar .sidebar-module .quick-win {
        width: calc(100% - 20px);
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.sidebar .sidebar-module .quick-win .xs-title-small {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.sidebar .sidebar-module .quick-win p {
    margin-bottom: 10px;
}

.sidebar .sidebar-module .quick-win p strong {
    font-weight: 400;
}

@media only screen and (max-width:1200px) {
    .sidebar .sidebar-module .quick-win .cta-main {
        font-size: 14px;
    }
}

.sidebar .sidebar-module .blog-posts .date {
    margin-right: 0;
}

.sidebar .sidebar-module .blog-posts h4 {
    margin: 0 0 15px;
}

@media only screen and (min-width:1200px) {
    .sidebar .sidebar-module .blog-posts h4 {
        margin: 5px 0 10px;
    }
}

.sidebar .two-modules-wrapper:last-of-type .sidebar-module:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width:767px) and (max-width:991px) {
    .sidebar .two-modules-wrapper {
        display: flex;
        display: -webkit-flex;
    }
}

.post figure img {
    max-width: 100%;
    width: 100%;
    box-shadow: 1px 3px 2px rgba(21, 21, 21, 0.2);
}

.post header {
    margin: 15px 0 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(117, 112, 106, 0.2);
}

.post header .metas,
.post header .social-sharing {
    display: inline-block;
    width: 49%;
    margin-right: 2%;
}

.post header .social-sharing {
    margin-right: 0;
    text-align: right;
    float: right;
}

.post header .social-sharing ul.social-links {
    margin-left: 0;
}

.post header .social-sharing ul.social-links li {
    float: right;
    margin-left: 10px;
}

.post header .social-sharing ul.social-links li a {
    width: 24px;
    height: 24px;
}

.post header .social-sharing ul.social-links li a .fa {
    font-size: 16px;
    line-height: 24px;
}

.post header .social-sharing ul.social-links li:before {
    content: none;
}

.post header .social-sharing ul.social-links li span {
    display: block;
    padding-top: 4px;
    font-size: 14px;
    font-weight: 400;
}

.firma {}

.firma .xs-title-small {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    margin: 10px 0 20px;
}

@media only screen and (min-width:991px) {
    .firma .xs-title-small .xs-title-small {
        margin: 25px 0 40px;
    }
}

.firma .firm-header .header-inner {
    height: 250px;
}

@media only screen and (min-width:991px) {
    .firma .firm-header .header-inner {
        height: 550px;
    }
}

.firma .firm-header .header-inner .fill {
    opacity: 1;
}

.firma .number {
    display: block;
    color: #F78E1E;
    margin: 0 0 15px 5px;
}

@media only screen and (min-width:767px) {
    .firma .number {
        margin: 0 0 30px 5px;
    }
}

.firma .about-bressers {
    margin-top: 0px;
    background: rgba(117, 112, 106, 0.1);
}

.firma .about-bressers>.container blockquote {
    margin: 40px 0;
    text-align: center;
}

.firma .about-bressers>.container article {
    padding: 30px;
    background: #FFFFFF;
    position: relative;
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width:991px) {
    .firma .about-bressers>.container {
        display: flex;
        display: -webkit-flex;
    }

    .firma .about-bressers>.container blockquote {
        text-align: left;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 80%;
        margin: 0 0 0 15px;
    }

    .firma .about-bressers>.container article {
        margin-top: -350px;
        padding: 60px 65px;
    }
}

.firma .why-bressers {
    padding: 60px 0;
    background-color: rgba(247, 142, 30, 0.5);
}

.firma .why-bressers .number,
.firma .why-bressers .xl-title {
    color: #FFFFFF;
}

.firma .why-bressers .benefits-wrapper .benefit {
    padding: 30px;
    background: #FFFFFF;
    height: 100%;
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
}

.firma .why-bressers .benefits-wrapper .benefit .xs-title-small {
    margin: 25px 0 40px;
}

@media only screen and (max-width:767px) {
    .firma .why-bressers {
        background-image: none !important;
    }
}

@media only screen and (min-width:767px) {
    .firma .why-bressers {
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 50px;
        border: 0 none;
    }

    .firma .why-bressers .benefits-wrapper {
        display: flex;
        display: -webkit-flex;
    }

    .firma .why-bressers .benefits-wrapper .benefit {
        padding: 30px 60px;
    }
}

@media only screen and (min-width:991px) {
    .firma .why-bressers {
        padding: 100px 0;
        background-color: none;
    }
}

.firma .mision {
    margin: 60px 0;
}

.firma .mision ul {
    text-align: center;
    margin-top: 40px;
}

.firma .mision ul li {
    line-height: 1;
    font-family: "Domine", serif;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
}

.firma .mision ul li:nth-child(even) {
    color: rgba(21, 21, 21, 0.5);
}

@media only screen and (min-width:767px) {
    .firma .mision>.container {
        display: flex;
        display: -webkit-flex;
    }

    .firma .mision ul {
        margin-top: 0;
    }

    .firma .mision ul li {
        display: block;
    }

    .firma .mision .mision-inner {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media only screen and (min-width:991px) {
    .firma .mision {
        margin: 120px 0;
    }
}

.firma .team-intro {
    padding: 80px 0;
}

.firma .team-intro .managment .manager {
    margin-top: 0;
}

.firma .team-intro .managment .manager .metas {
    min-height: 45px;
}

.firma .team-intro .heading {
    margin-left: 15px;
    margin-right: 15px;
}

.firma .video .video-wrapper {
    padding: 40px 0;
}

.firma .video .video-wrapper .heading {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    width: auto;
}

.firma .video .video-wrapper .heading .xl-title {
    color: #FFFFFF;
}

.firma .video .video-wrapper .play {
    color: #FFFFFF;
    z-index: 1000;
    margin-top: 30px;
    text-align: center;
    position: relative;
}

.firma .video .video-wrapper .play .play-btn {
    margin: 5px auto;
}

@media only screen and (min-width:767px) {
    .firma .video .video-wrapper {
        padding: 80px 0;
    }

    .firma .video .video-wrapper .play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .firma .video .video-wrapper .play .play-btn {
        margin: 20px auto;
    }
}

.firma .responsabilidad-social {
    margin-top: 0;
    padding-top: 50px;
}

@media only screen and (min-width:991px) {
    .firma .responsabilidad-social {
        padding-top: 100px;
    }
}

.firma .responsabilidad-social .benefit:first-of-type {
    margin-bottom: 40px;
}

.oferta {
    padding: 10px 20px;
    background: rgba(247, 142, 30, 0.1);
    margin-top: 20px;
}

.oferta header {
    border-bottom: 1px solid orange;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.oferta header h3 {
    margin-bottom: 5px;
}

.oferta ul {
    margin: 10px 0;
}

.oferta p {
    margin: 10px 0;
}

@media only screen and (min-width:991px) {
    .oferta {
        margin-top: 40px;
        padding: 20px 40px;
    }

    .oferta:last-of-type {
        margin-bottom: 80px;
    }
}

.oferta:last-of-type {
    margin-bottom: 40px;
}

.work .sidebar .description {
    display: none;
}

.office-container {
    margin-top: 20px;
    margin-bottom: 40px;
}

@media only screen and (min-width:991px) {
    .office-container {
        margin-bottom: 80px;
        margin-top: 40px;
    }
}

.office-container .office {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid rgba(117, 112, 106, 0.2);
}

.office-container .office .caption .xl-title {
    color: #F78E1E;
    margin-top: 0;
}

.office-container .office .caption ul {
    margin: 15px 0 0 0;
}

.office-container .office .caption ul li:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width:991px) {
    .office-container .office ul {
        margin: 15px 0 0 30px;
    }
}

.contactModal.modal-open .modal {
    background: #F78E1E;
    z-index: 100000;
    overflow-x: hidden;
}

@media screen and (min-width:767px) {
    .contactModal.modal-open .modal {
        overflow-y: hidden;
    }
}

.contactModal.modal-open .modal .modal-dialog {
    z-index: 10;
    width: 90%;
    margin: 20px auto;
    padding-bottom: 60px;
}

@media screen and (min-width:767px) {
    .contactModal.modal-open .modal .modal-dialog {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 50%;
        margin-left: -370px;
        width: 740px;
        padding-bottom: 0;
    }
}

.contactModal.modal-open .modal .modal-dialog .modal-content {
    box-shadow: none;
    border: 0 none;
    background: none;
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-header {
    border: 0 none;
    padding: 0;
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-header .caption-form .md-title {
    margin-bottom: 10px;
}

@media screen and (min-width:767px) {
    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-header .caption-form .md-title {
        margin-bottom: 20px;
    }
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body {
    padding: 0;
}

@media screen and (min-width:767px) {
    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-body {
        border-top: 1px solid rgba(255, 255, 255, 0.6);
        padding-top: 30px;
    }
}

@media screen and (min-width:767px) {
    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .row {
        display: flex;
        display: -webkit-flex;
    }
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .col-sm-7 .form-group {
    height: 100%;
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .col-sm-7 .form-group textarea {
    min-height: 140px;
}

@media screen and (min-width:767px) {
    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .col-sm-7 .form-group textarea {
        position: absolute;
        top: 19px;
        bottom: 15px;
    }
}

@media screen and (min-width:991px) {
    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .col-sm-7 .form-group textarea {
        top: 24px;
    }
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .form-group input,
.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .form-group select {
    height: 40px;
}

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

    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .form-group input,
    .contactModal.modal-open .modal .modal-dialog .modal-content .modal-body form .form-group select {
        height: 45px;
    }
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body .contact-widgets-wrapper {
    text-align: center;
    margin-top: 40px;
}

.contactModal.modal-open .modal .modal-dialog .modal-content .modal-body .contact-widgets-wrapper a {
    margin: 0 10px 0 0;
}

.contactModal.modal-open .header-logo {
    width: 200px;
    margin: 20px 0 0 20px;
}

@media only screen and (min-width:991px) {
    .contactModal.modal-open .header-logo {
        width: 300px;
        margin: 40px 0 0 40px;
    }
}

.contactModal.modal-open .close {
    margin: 20px 20px 0 0;
}

@media only screen and (min-width:991px) {
    .contactModal.modal-open .close {
        margin: 40px 40px 0 0;
    }
}

.contactModal.modal-open .diamond-bg.first {
    bottom: -10%;
}

.contactModal.modal-open .diamond-bg.second {
    bottom: -10%;
    z-index: 1;
    left: -20%;
}

.contactModal.modal-open .diamond-bg.third {
    right: -15%;
    top: 40%;
    z-index: 1;
}

.contactModal.modal-open .diamond-bg.fourth {
    top: 10%;
    right: -20%;
}

.user-login-form {
    width: 90%;
    margin: 20px 5%;
}

@media only screen and (min-width:480px) {
    .user-login-form {
        width: 400px;
        margin: 100px auto;
    }
}

.user-login-form .form-item {
    margin-bottom: 10px;
}

.user-login-form .form-item .description {
    margin-top: 5px;
}

.user-login-form #edit-submit {
    color: #fff;
    background: black;
    width: auto;
    margin: 20px auto;
    padding: 5px 30px;
    font-size: 16px;
}

#sliding-popup {
    background: #b9d7e1;
}

#sliding-popup .popup-content {
    font-family: "Yantramanav", sans-serif;
    padding: 10px 0;
}

#sliding-popup .popup-content:before {
    display: none;
}

#sliding-popup .popup-content #popup-text p {
    font-size: 14px;
    font-weight: 400;
}

#sliding-popup .popup-content #popup-buttons button {
    text-shadow: none;
    font-weight: 400;
    font-size: 14px;
    border-radius: 3px;
    transition: all ease-in .2s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#sliding-popup .popup-content #popup-buttons button.agree-button {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}

#sliding-popup .popup-content #popup-buttons button.agree-button:hover {
    background: transparent;
    color: #000;
}

#sliding-popup .popup-content #popup-buttons button.find-more-button {
    color: #000;
    background: transparent;
    border: 0 none;
    text-decoration: underline;
}

.quote {
    padding: 15px 0;
    background: rgba(117, 112, 106, 0.3);
    text-align: center;
    margin: 20px auto;
}

.quote p {
    margin-bottom: 5px;
    font-family: "Domine", serif;
}

.quote span {
    font-size: 14px;
    font-family: "Yantramanav", sans-serif;
}

.main-footer {
    border-bottom: 1px solid #F78E1E;
    border-top: 1px solid rgba(117, 112, 106, 0.4);
    padding-top: 40px;
}

@media only screen and (min-width:767px) {
    .main-footer {
        border-top: 0 none;
        margin-top: 0;
    }
}

.main-footer .prefooter {
    font-size: 14px;
}

.main-footer .prefooter>.container {
    padding: 0;
}

.main-footer .prefooter>.container .links-ft {
    padding: auto;
}

@media only screen and (max-width:991px) and (min-width:768px) {
    .main-footer .prefooter>.container .links-ft {
        padding: 0;
    }
}

.main-footer .prefooter .news-ft {
    padding-bottom: 80px;
}

.main-footer .prefooter .news-ft .xxs-title {
    text-align: left;
}

@media only screen and (min-width:767px) {
    .main-footer .prefooter .news-ft {
        padding-bottom: 0;
    }
}

.main-footer .prefooter .news-ft #newsletter .form-group {
    display: flex;
    display: -webkit-flex;
    width: 100%;
}

.main-footer .prefooter .news-ft #newsletter .form-group .form-control {
    border: 1px solid #151515;
    box-shadow: none;
    height: 45px;
}

.main-footer .prefooter .news-ft #newsletter .form-group input[type=email] {
    border-right: 0 none;
}

@media only screen and (min-width:767px) {
    .main-footer .prefooter .news-ft #newsletter .form-group {
        width: 90%;
    }
}

.main-footer .prefooter .news-ft #newsletter .checkbox {
    text-align: center;
}

.main-footer .prefooter .news-ft #newsletter .cta-main {
    padding: 5px 20px 5px 20px;
}

.main-footer .prefooter .news-ft #newsletter .cta-main:after {
    right: 15px;
}

@media only screen and (min-width:767px) {
    .main-footer .prefooter .news-ft #newsletter {
        text-align: left;
        padding-bottom: 0;
    }

    .main-footer .prefooter .news-ft #newsletter .checkbox {
        text-align: left;
    }
}

.main-footer .social-links {
    margin-top: 20px;
    text-align: center;
}

.main-footer .social-links li {
    margin: 0 5px;
}

.main-footer .social-links li:first-of-type {
    margin-left: 0;
}

@media only screen and (min-width:991px) {
    .main-footer .social-links {
        text-align: left;
    }
}

.main-footer .enlaces li {
    width: 48%;
    margin-right: 2%;
    float: left;
    margin-bottom: 10px;
}

@media only screen and (min-width:991px) {
    .main-footer .enlaces li {
        width: 33%;
        margin-right: 0;
        margin-left: 0;
    }
}

.main-footer .enlaces li a {
    font-size: 14px;
}

.main-footer .contact-widgets-wrapper ul li {
    display: block;
    margin-bottom: 15px;
}

.main-footer .contact-widgets-wrapper+.cta-secondary {
    padding: 10px 40px 10px 20px;
}

.main-footer .contact-widgets-wrapper+.cta-secondary:after {
    right: 15px;
}

.footer {
    padding: 5px;
    background: rgba(21, 21, 21, 0.9);
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-top: 80px;
    z-index: 1000;
    text-align: right;
}

@media only screen and (min-width:767px) {
    .footer {
        position: relative;
        background: rgba(117, 112, 106, 0.2);
        bottom: auto;
    }
}

.footer .footer-logo {
    float: left;
    font-size: 14px;
    font-weight: 300;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width:480px) {
    .footer .footer-logo a {
        width: 200px;
        float: left;
        margin-right: 15px;
    }
}

.footer .footer-logo .copyright {
    display: inline-block;
}

.footer #language-selector {
    float: left;
    margin-left: 0;
}

.footer #language-selector .dropup>a {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 14px;
    display: block;
}

.footer #language-selector .dropup>a .fa {
    font-size: 14px;
    font-weight: 600;
}

.footer #language-selector .diamond {
    background: #F78E1E;
    display: inline-block;
}

.footer #language-selector .dropdown-menu li>a {
    padding: 3px 10px;
    font-size: 16px;
}

.footer #language-selector .dropdown-menu li>a.active {
    color: orange;
}

@media only screen and (min-width:767px) {
    .footer #language-selector {
        float: right;
    }

    .footer #language-selector .dropup>a {
        color: #151515;
        margin-top: 0;
    }

    .footer #language-selector .dropup.open>a {
        color: rgba(117, 112, 106, 0.7);
    }

    .footer #language-selector .dropdown-menu {
        right: 0;
        left: auto;
        border-radius: 1px;
    }
}

@media only screen and (max-width:340px) {
    .footer>.container-fluid {
        padding-left: 5px;
        padding-right: 5px;
    }

    .footer>.container-fluid .cta-mobile .cta-main {
        padding-left: 10px;
        padding-right: 10px;
        font-weight: 600;
    }

    .footer>.container-fluid .cta-mobile .cta-main:after {
        display: none;
    }
}

.main-footer .prefooter .news-ft #newsletter div.form-item {
    display: inline;
    width: 100%;
}

.main-footer .prefooter .news-ft #newsletter div.form-item input {
    width: 100%;
}

#sidebar-form div.form-item {
    display: inline;
    width: 100%;
}

#sidebar-form div.form-item input,
#sidebar-form div.form-item textarea {
    width: 100%;
}

.primary-tasks li {
    display: inline-block;
    position: relative;
    background: #FFFFFF;
    top: 1px;
}

.primary-tasks li a:after {
    display: none;
}

.primary-tasks li a {
    padding: 6px 14px;
    box-shadow: initial;
    -o-box-shadow: initial;
    -ms-box-shadow: initial;
    -moz-box-shadow: initial;
    -khtml-box-shadow: initial;
    -webkit-box-shadow: initial;
    border-color: #F78E1E;
}

.primary-tasks li a:hover {
    border-color: #F78E1E #F78E1E #FFFFFF #F78E1E !important;
}

.primary-tasks {
    margin-top: 1em;
    border-bottom: 1px solid #F78E1E;
}

.js-form-type-textarea {
    display: inline;
}

.col-md-9.main.archive-content .contextual-region {
    display: inline;
}

.no-after:after {
    content: "" !important;
}

.grayscale {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='saturate' values='0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    filter: gray
}

.grayscale.grayscale-fade {
    transition: filter .5s
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .grayscale.grayscale-fade {
        -webkit-transition: -webkit-filter .5s;
        transition: -webkit-filter .5s
    }
}

.grayscale.grayscale-fade:hover,
.grayscale.grayscale-off {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.grayscale.grayscale-replaced {
    -webkit-filter: none;
    filter: none
}

.grayscale.grayscale-replaced>svg {
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    opacity: 1
}

.grayscale.grayscale-replaced.grayscale-fade:hover>svg,
.grayscale.grayscale-replaced.grayscale-off>svg {
    opacity: 0
}

.Home_slider_custom .sliderContent{
	
	font-family: "Yantramanav", sans-serif;
}

.Home_slider_custom .sliderTitle{
	border-top: 2px solid #F78E1E;
    padding: 20px 0 0;
	font-family: "Yantramanav", sans-serif;
}


.Home_slider_custom .sliderBtn {
    display: inline-block;
    font-family: "Yantramanav", sans-serif;
    padding: 10px 40px 10px 20px !important;
    text-shadow: none !important;
    box-shadow: 1px 3px 2px rgb(21 21 21 / 20%) !important;;
    border: 1px solid transparent !important;;
    transition-property: all !important;;
    transition-timing-function: ease-in !important;;
    transition-duration: 0.2s !important;;
    -webkit-transition-property: all !important;;
    -webkit-transition-timing-function: ease-in !important;;
    -webkit-transition-duration: 0.2s !important;;
    -moz-transition-property: all !important;;
    -moz-transition-timing-function: ease-in !important;;
    -moz-transition-duration: 0.2s !important;
}

.Home_slider_custom .sliderBtn:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    height: 24px;
    width: 13px;
    margin-top: -12px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    background: url(images/arrow.png) right center no-repeat;
    background: url(images/arrow.svg) right center no-repeat;
    background-size: cover;
}


.region-content{
    margin-top: 50px;
    overflow: hidden;
}

.employed-wrapper img{
    height: 230px;
}

.fade.in {
    opacity: 1;
}

#pagination-down .screen-reader-text{
    display: none;
}


.url-textfield {
    display: none !important;
}

.wpcf7-list-item {
   
    margin: 0 !important;
}

#newsletter p {
    margin-bottom: 0px !important;
}
.form-group p{
    margin-bottom: 0px !important;
}
#sidebar-form {
    padding-bottom: 0px !important;
}

.checkbox input[type=checkbox] {
    margin: -11px 0 0 -20px;
}
#sidebar li {
    list-style: none;
}

figure.diamond-mask img {
    margin-top: -70px;
    margin-left: -70px;
}


#pagination-down .nav-previous{
    float: left;
}
#pagination-down .nav-next{
    float: right;
}

.enlaces li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    font-family: "Yantramanav", sans-serif;
    text-decoration: underline;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition-property: all;
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: ease-in;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: all;
    -moz-transition-timing-function: ease-in;
    -moz-transition-duration: 0.2s;
    color: #151515;
}

.enlaces li a:after {
    content: "\f105";
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    margin-left: 5px;
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

#slide-publicaciones .carousel-inner{
    top : 0px !important;
}

#slider2 .container{
    margin-left: 20%;
}

.home .xs-title, .xs-title-small {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 1.4em;
}

blockquote {
    border: none;
    padding: 10px 0px;
    margin: 0;
}