@media (max-width: 1024px) {
    .footer--col-down {
        width: 50%;
        margin: 0 auto;
    }
}

/***************************
Add your custom styles below
****************************/

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

--- INDEX
    1. WEBSITE STYLES
    2. CASE STUDIES
        2.1. Themes
        2.2. Helpers
        2.3. Background
        2.4. Typography
        2.5. Fixes
        2.6. Piechart
        2.7. Publico Case Study
        2.8. Sections
            2.8.1. Look and Feel
            2.8.2. Technical Sheet
            2.8.3. Highlight
            2.8.4. Research
            2.8.5. Styleguide
            2.8.6. Testimonials
        2.9. Device Mocups
        2.10. Screens
        2.11. Animations
            2.11.1. Hero Animation
            2.11.2. Before/After Slider Animation
        2.12. Responsive
            2.12.1. Min-width 768px
                2.12.1.1. Flex
                2.12.1.2. Cover
                2.12.1.3. Technical Sheet
                2.12.1.4. Testimonials
                2.12.1.5. Slider
            2.12.2. Min-width 992px
                2.12.2.1. Display Flex
                2.12.2.2. Technical Sheet Horizontal
                2.12.2.3. Section Highlight
                2.12.2.4. Mockups
                2.12.2.5. Sliders
            2.12.3. Min-width 1200px
                2.12.3.1. Cover Horizontal
                2.12.3.2. Technical Sheet Vertical
                2.12.3.3. Style Guide Colors
                2.12.3.4. Slider Mockup
            2.12.4. Min-width 1600px
            2.12.5. Min-width 768px Max-width 991px
                2.12.5.1. Cover
                2.12.5.2. Section Highlight
                2.12.5.3. Styleguide
                2.12.5.4. Mockups
            2.12.6. Max-width 1199px
            2.12.7. Max-width 991px
                2.12.7.1. Cover
                2.12.7.2. Technical Sheet
                2.12.7.3. Section Highlight
                2.12.7.4. Research
                2.12.7.5. Styleguide
                2.12.7.6. Testimonials
            2.12.8. Max-width 767px
                2.12.8.1. Sections Padding
                2.12.8.2. Cover
                2.12.8.3. Technical Sheet
                2.12.8.4. Styleguide
                2.12.8.5. Testimonials
                2.12.8.6. Slider
            2.12.9. Max-width 650px
            2.12.10. Min-width 520px Max-width 767px
            2.12.11. Max-width 519px

    3. Blog
            ****************************/

/***********
*   1. WEBSITE STYLES
************/

/*========Root Variables========*/
:root {

    --primary-color: #531096;
    --primary-color-dark: #371D54;
    --primary-color-active: #460e7f;
    --secondary-color: #FFBF00;
    --secondary-color-active: #E6AC00;

    --section-title-color: #595959;
    --subtitle-color: #71717C;
    --body-text: #595959;

    --light-color: #FFFFFF;
    --dark-color: #000000;
}

/*========Font-Faces========*/


@font-face {
    font-family: "NunitoSans-Light";
    src: url("../fonts/NunitoSans-Light.ttf") format("truetype");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "NunitoSans-Regular";
    src: url("../fonts/NunitoSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "NunitoSans-Black";
    src: url("../fonts/NunitoSans-Black.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    color: var(--dark-color);
}

@font-face {
    font-family: "NunitoSans-Bold";
    src: url("../fonts/NunitoSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "NunitoSans-SemiBold";
    src: url("../fonts/NunitoSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "NunitoSans-ExtraBold";
    src: url("../fonts/NunitoSans-ExtraBold.ttf") format("truetype");
    font-weight: bolder;
    font-style: normal;
}


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--subtitle-color);
}

.h5,
h5 {
    font-weight: normal;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: NunitoSans-Regular, Montserrat, Helvetica, Arial, sans-serif
}



/*========Buttons========*/

.btn {
    background-color: var(--secondary-color);
}

.btn:hover {
    background-color: var(--light-color);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.blog-post__share .btn-share.btn:hover i {
    color: var(--secondary-color);
}

.btn:active {
    color: var(--light-color) !important;
    background: var(--secondary-color-active);
    border-color: var(--secondary-color-active);
}

.btn:active .btn__text {
    color: var(--light-color) !important;
}

.btn:hover .btn__text {
    color: var(--secondary-color);
}

.btn .btn__text {
    color: var(--light-color);
    font-size: 14px;
    line-height: 19px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}


/*========Backgrounds========*/

.bg-white {
    background: var(--light-color);
}

.bg-light-gray {
    background: #dce1e8;
}

.bg-dark-gray {
    background: #586169;
    color: var(--light-color);
}

.bg-dark-gray h4 {
    color: var(--light-color);
}

.background-image-holder {
    -o-transition: opacity .3s linear;
    transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
}

/*========Spacing========*/

/* Padding 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.p-0 {
    padding: 0 !important;
}

.p-l-0 {
    padding-left: 0 !important;
}




/* Margin 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.m-0 {
    margin: 0;
}

.m-t-5 {
    margin-top: 5px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-40 {
    margin-top: 40px;
}

.m-t-100 {
    margin-top: 100px;
}

.m-r-20 {
    margin-right: 20px;
}

.m-b-70 {
    margin-bottom: 70px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 40px;
}

.margin-y-120{
    margin-top: 120px;
    margin-bottom: 120px;
}

/* Resets Margin Row and Title
––––––––––––––––––––––––––––––––––––––––––– ––––––– */

.reset-m--row {
    margin: 0;
}

.reset-m--text-title {
    margin-bottom: 5px;
}


/* Columns and Rows Grid */

/** Five Columns Grid **/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}

.row {
    margin-left: -30px;
    margin-right: -30px;
}

[class*='col-'] {
    padding-right: 30px;
    padding-left: 30px;
}


/* Cards */
@media (min-width: 768px) {
    .flex-gallery {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .flex-gallery--large {
        margin: 0 40px;
    }
}

@media (max-width: 767px) {
    .flex-gallery {
        text-align: center;
    }

    .flex-gallery>* {
        margin: 20px auto;
        max-width: 100%;
        overflow: hidden;
    }
}

.card.card-simple {
    position: relative;
}

.card-simple .card__body {
    padding: 32px 40px;
    min-height: 146px;
}

.card-simple .card__title h4 {
    color: #000000;
    font-size: 16px;
    letter-spacing: -0.41px;
    line-height: 22px;
}

.card-simple .card__title h5 {
    font-size: 16px;
    letter-spacing: -0.41px;
    line-height: 22px;
    margin-top: 16px;
}

.card-9 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 200px;
    margin-bottom: 20px;
    padding-top: 30px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.boxed--card-9 {
    padding: 1em 1em 0;
}

.card_fix_align--web {
    padding-top: 1em;
    padding-bottom: 1em;
}

.card_fix_align--ux_design {
    padding-top: 0.5em;
}

/* Tags */

.tag {
    border-radius: 10rem;
    padding: 8px;
    line-height: 6px;
    font-size: 12px;
}

.card .tag {
    position: absolute;
    top: 8px;
    right: 8px;
}

.tag.web {
    background-color: #7c7c7c;
}

.tag.web span {
    color: #fff
}

.tag.reactive {
    background-color: #7c7c7c;
}

.tag.reactive span {
    color: #fff
}

.tag.mobile {
    background-color: #7c7c7c;
}

.tag.mobile span {
    color: #fff
}

/* General */

nav {
    position: fixed;
    top: 0;
    width: 100%;
}

.main-container {
    position: relative;
    padding-top: 100px;
}

.social-mobile {
    display: none;
}

.section-title,
.text-color-primary {
    color: var(--primary-color);
}

.section-title {
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-subtitle {
    margin-bottom: 32px;
}

.font-size-12 {
    font-size: 12px;
}

.font-weight-bold {
    font-weight: bold;
    color: #000;
    font-family: NunitoSans-ExtraBold, Montserrat, Helvetica, Arial, sans-serif;
}

.d-inline-block {
    display: inline-block;
}

.row-spacing {
    margin-top: 60px;
}

.text-title {
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--section-title-color);
}

.text-subtitle {
    font-size: 21px;
}

.feature--align-fix {
    margin-right: 135px;
    margin-left: 135px;
}

.dots-list {
    list-style: disc;
    padding-left: 40px;
}

.container {
    position: relative;
}

.footer-container [class^="col-"] {
    white-space: nowrap;
}

.introduction-section .text-title {
    color: var(--section-title-color);
}

[class*="--carousel"]>* {
    outline: none;
}

/*========Clearfix========*/

.clearfix {
    clear: both;
}


/*========Custom Menu========*/
.nav-module.right:last-of-type {
    padding-right: 3.25em;
}

.nav-bar.nav--transparent:not(.nav--scrolled):not(.nav--fixed) .menu>li.active>a,
.menu li.active>a {
    color: #ff9300;
}


/*========Header Nav & Menu========*/

.nav-bar {
    position: fixed;
    width: 100%;
    max-height: 100px;
    line-height: 100px;
    height: 100px;
    transition: height .2s linear;
}

.nav-bar .nav-module {
    height: 100%;
}

.nav-bar.nav--fixed {
    height: 70px;
    line-height: 70px;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.menu>li {
    font-size: 16px;
}

.menu>li ul {
    background-color: #fff;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, .07);
    padding: 0;
    margin: 0;
    min-width: 220px;
}

.menu>li ul li {
    padding: 0;
}

.menu>li ul li a,
.menu>li>ul li:last-child>a {
    padding: 8px 20px;
    opacity: 1;
}

.menu>li ul li a:hover {
    transform: none;
    text-shadow: 1px 0 0 var(--primary-color-dark);
    background-color: #f8f8f8;
}

.menu>li a {
    color: var(--primary-color-dark) !important;
    text-transform: unset;
}

.menu>li:hover>a,
.menu>li.active>a {
    opacity: 1;
    text-shadow: 1px 0 0 var(--primary-color-dark);
}

.nav-bar li>ul li.active a {
    text-shadow: 1px 0 0 var(--primary-color-dark);
}

.nav-open .nav-bar .menu-module {
    opacity: 1;
    visibility: visible;

}

.nav--is-open {
    overflow-y: hidden;
}

.menu-close {
    position: absolute;
    display: none;
    top: 0px;
    right: 15px;
    width: 55px;
    padding: 15px;
    line-height: 0;
    fill: var(--primary-color-dark);
}

/*========Logo========*/
.nav-bar .logo {
    max-height: 50px;
    height: 50px;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: height .3s ease-in-out;
    -o-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
}

.nav-bar.nav--fixed .logo {
    height: 38px;
}

/*========Carousel========*/

.slick-slide {
    outline: none;
}

.slick-dots {
    text-align: center;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    height: 12px;
    width: 12px;
    color: transparent;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 5px;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
}


/*========Homepage========*/


/* Special Abilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.gif-space-fix {
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.img--align-fix {
    margin-top: 2.3em !important;
}

.features-9 .feature:first-child {
    margin-top: 3.125em;
}

.feature-1:not(.reset-align) {
    text-align: center;
}

.feature-1 h4 {
    margin-bottom: 20px;
    color: var(--section-title-color);
}

.features-9 .row [class^="col-"] .feature img {
    margin-bottom: 1.5em;
}

.features-9 .row [class^="col-"] .feature h5 {
    margin-bottom: 1.125em;
}

.feature-1 p,
.feature-3 p {
    text-align: left;
}

.features#start .row [class^="col-"]:nth-child(2) .feature img {
    /*margin-top: 0.5em;
     margin-bottom: 0.8125em;*/
    margin-top: 0.1em;
    margin-bottom: 1.6em;
}

.features#start .row [class^="col-"]:nth-child(3) .feature img {
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.features#start .row [class^="col-"]:nth-child(4) .feature {
    margin-top: 2.5em;
}

.features#start .row [class^="col-"]:nth-child(4) .feature img {
    margin-bottom: 1.4em;
}

/* Section Case Studies 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.publico-screens--carousel {
    padding-top: 46px;
}

.publico-screens--carousel .slick-slide {
    margin: 0 75px;
}

.publico-screens--carousel .slick-list {
    overflow: unset;
}

.publico-screens--carousel .slick-dots {
    margin-top: 40px;
}

.publico-screens--carousel .slick-current img {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

.publico-screens--carousel .slick-slide img {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transition: -webkit-transform .2s linear .3s;
    transition: -webkit-transform .2s linear .3s;
    -o-transition: transform .2s linear .3s;
    transition: transform .2s linear .3s;
    transition: transform .2s linear .3s, -webkit-transform .2s linear .3s;
    will-change: transform;
}


.section-portfolio .row.row-spacing a {
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}

.filter-row .voh.col-filter.filter-button {
    z-index: 15;
}

.case-studies--carousel .slick-track {
    padding-top: 60px;
    padding-bottom: 60px;
}

.case-studies--carousel .col-md-4.col-sm-6.col-xs-6.voh a {
    pointer-events: auto;
}

.slider .author p {
    color: #fff;
}

/* Section Clients 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.titles3 {
    padding-bottom: 20px;
}

.partners-1 .container .row [class*="col"] {
    padding-top: 30px;
}

/* Section Recognition 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-col-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-col-reverse h4 {
    color: #71717C;
    margin-bottom: 10px;
}

.line-testimonial {
    position: absolute;
    width: calc(100% - 85px);
    height: 5px;
    border: none;
    top: calc(100% - 195px);
    background: #979797;
    margin: 0;
    overflow: hidden;
}

.testimounial__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.testimounial__header--svg {
    max-height: 268px;
    height: 100%;
    padding: 80px 50px 20px;
}

.testimonial__text {
    padding-left: 20px;
}

.testimounials--carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.testimounials--carousel .slick-dots {
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.testimounials--carousel .slick-dots li {
    margin: 8px 0;
    line-height: initial;
}

.testimounials--carousel .slick-dots li button {
    background-image: url(../../../img/aspas_testimounials.png);
    height: 18px;
    width: 22px;
    border: 0;
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
}

.testimounials--carousel .slick-dots li.slick-active button {
    opacity: 1;
    background-color: transparent;
}

.testimounials--carousel .testimounial {
    opacity: 0;
    -webkit-transition: 0.75s linear;
    -o-transition: 0.75s linear;
    transition: 0.75s linear;
}

.testimounials--carousel .testimounial.slick-current {
    opacity: 1;
}

.testimonial__text>* {
    color: #71717C;
}

.testimonial__text h5 {
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 10px;
}

.testimonial__text p {
    margin-top: 20px;
}

.testimonial__text h5,
.testimonial__text p {
    font-size: 1.125em;
}

/* Odoo Services */

.image-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.image-row div {
    text-align: center;
}

.image-row img {
    margin-bottom: 10px;
}

.medium-title{
    font-size: 22px;
    font-weight: bold;
}

.medium-title{
    font-size: 22px;
    font-weight: bold;
}

ul.styled{
    list-style: initial;
}

ul.styled li{
    font-size: 20px;
}

ul.styled li.bold{
    font-weight: bold;
}

/********/

/* Home Background Image 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero-slider.slider-fullscreen.homepage .hover-background .foreground-image-holder.layer-1 {
    top: 121px;
    left: -23px;
    z-index: 2;
}

.hero-slider.slider-fullscreen.homepage .hover-background .foreground-image-holder.layer-1 img {
    opacity: 0;
}

.hero-slider.slider-fullscreen.homepage .slides li h1 {
    width: 100%;
    max-width: 1025px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 122px;
    font-weight: 900;
    line-height: 113px;
    text-shadow: 1px 2px 15px rgba(47, 47, 47, 0.5);
    font-family: NunitoSans-Black;
}

.hero-slider.slider-fullscreen.homepage .homepage-titles {
    /*padding: 50px 90px;*/
    padding: 120px calc((100% - 1190px) / 2) 0px;
}


.page-title--animate .background-image-holder {
    height: calc(100% + 100px);
}

@media (max-width: 767px) {
    .page-title--animate {
        height: 30vh;
        display: flex;
        align-items: center;
    }

    .page-title--animate .background-image-holder {
        height: 100%;
    }
}


.background-image-holder {
    padding: 90px;

}

.imagebg-text {
    position: relative;
}

.scroll-down,
.scroll-top {
    position: absolute;
    cursor: pointer;
}

.scroll-down {
    left: 0;
    text-align: center;
    /*bottom: 0px;*/
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-top {
    right: 53px;
    bottom: 30px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

h3.home-subtitle {
    color: var(--light-color);
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

h1.home-title {
    width: 1025px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 122px;
    font-weight: 900;
    line-height: 113px;
    text-shadow: 1px 2px 15px rgba(47, 47, 47, 0.5);
    font-family: NunitoSans-Black;
}

.details-testimounial1,
.details-testimounial2 {
    opacity: 0.5;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.details-testimounial-active {
    opacity: 1;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.row-testimounial-text {
    height: 180px;
    position: relative;
    width: 100%;
}

.row-testimounial-header {
    position: relative;
    height: 290px;
    width: 100%;
}

.testimounial-options {
    position: absolute;
    height: 50px;
    width: 50px;
    right: -100px;
    cursor: pointer;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.testimounial-options-bottom {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
}

.current-testimounial-top {
    -webkit-animation: fade-in-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-in-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.current-testimounial-bottom {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.current-testimounial-text-top {
    -webkit-animation: fade-in-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-in-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.current-testimounial-text-bottom {
    -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-in-bottom 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


/*========About Us========*/

.title-features {
    position: relative;
}

.title-features h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.title-features .background-color-features {
    position: absolute;
    height: 100%;
    width: 70px;
    background: var(--secondary-color);
    border-radius: 16px;
    top: 8px;
    left: 22px;
}

.plan-content,
.scope-content,
.design-content,
.code-content,
.test-content {
    position: absolute;
    opacity: 0;
}

.content-active {
    opacity: 1;
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.6s both;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.6s both;
}

.fadeout-content {
    -webkit-animation: fade-out-bottom 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-out-bottom 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.content-selected {
    font-weight: 500;
    font-size: 19px;
}

.content-selected dd {
    line-height: 1.6;
}

.col-agile .lead {
    margin-top: 5px;
    font-size: 18px;
}

.col-agile [class*="-content"] .title-features h4 {
    font-size: 18px;
}

.number-method {
    display: none;
}


/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline {
    overflow: hidden;
}

.timeline {
    white-space: nowrap;
    overflow: auto;
}

.timeline ol {
    font-size: 0;
    width: 90%;
    padding: 250px 0;
    margin-left: auto;
    margin-right: auto;

}

.timeline ol li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    width: 100%;
    min-width: 108px;
    height: 3px;
    background: var(--primary-color);
}

.timeline ol li:last-child {
    width: 110px;
}

.timeline ol .top-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% + -2px);
    bottom: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 19px;
    background-image: url("../../../img/seta_timeline.svg");
}

.timeline ol .bottom-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: -6px;
    left: calc(100% + -3px);
    bottom: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 14px;
    height: 19px;
    background-image: url("../../../img/seta_timeline.svg");
}

.timeline ol li div {
    position: absolute;
    left: calc(100% + -56px);
    width: 129px;
    padding: 15px;
    font-size: 1rem;
    white-space: normal;
    color: var(--dark-color);
}

.timeline ol li:nth-child(odd) div {
    top: -16px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.timeline ol li:nth-child(odd) div::before {
    top: 100%;
    border-width: 8px 8px 0 0;
    border-color: var(--light-color) transparent transparent transparent;
}

.timeline ol li:nth-child(even) div {
    top: calc(100% + 16px);
}

.timeline ol li:nth-child(even) div::before {
    top: -8px;
    border-width: 8px 0 0 8px;
    border-color: transparent transparent transparent var(--light-color);
}

.timeline time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.timeline-img {
    width: 45px;
    margin: 0 auto;
    display: block;
    height: 100%;
}

.item-timeline img {
    margin-bottom: 0
}

.item-timeline img+img {
    margin-top: 15px
}

.timeline-year {
    background-color: var(--secondary-color);
    border-radius: 100px;
}

.item-timeline .year-info {
    border-radius: 100px;
    border-width: 2px;
    font-size: inherit;
    text-align: center;
    line-height: 1.625em;
    padding: 0.541667em 2.0em .65em;
    background-color: var(--secondary-color);
    border-color: transparent;
    color: var(--light-color);
    margin: 10px 0;
}

.item-timeline .year-info:hover {
    background-color: var(--secondary-color);
    border-color: transparent;
    color: var(--light-color);
}

.order-timeline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}


/* Donut Charts
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.section--donut {
    padding-top: 60px;
}

.donut {
    position: relative;
    height: 539px;
    width: 539px;
}

.chart-title {
    position: absolute;
    text-align: center;
    pointer-events: none;
}

.chart-svg>* {
    pointer-events: all;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.chart-svg text {
    pointer-events: none;
}

.chart-svg #Mask {
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
    cursor: pointer;
}

.chart-svg #Mask:hover {
    fill: var(--secondary-color);
}

.chart-active {
    fill: var(--secondary-color);
}

.chart-title img {
    margin-bottom: 5px;
}

.chart-title h5 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 5px;
    margin-right: -5px;
}

.chart-1,
.chart-2,
.chart-3,
.chart-4,
.chart-5 {
    position: absolute;
    pointer-events: none;
}

.chart-1 {
    top: 0;
    left: 0;
}

.chart-1 .chart-title {
    top: 60px;
    left: 160px;
}

.chart-2 {
    top: 0px;
    right: 30px;
}

.chart-2 .chart-title {
    top: 135px;
    right: 90px;
}

.chart-3 {
    bottom: 35px;
    right: 15px;
}

.chart-3 .chart-title {
    top: 135px;
    right: 90px;
}

.chart-4 {
    bottom: -10px;
    left: 65px;
}

.chart-4 .chart-title {
    bottom: 80px;
    left: 105px;
}

.chart-5 {
    left: -20px;
    bottom: 45px;
}

.chart-5 .chart-title {
    top: 110px;
    left: 75px;
}




/*========Job ========*/


.section--positions .row [class*="col-"] .job-position {
    height: 340px;
}

.section--positions .row [class*="col-"].disabled {
    opacity: 0.5;
    filter: grayscale(100%);
}

.section--positions .row [class*="col-"]:nth-child(3) .job-position {
    margin-top: 2.8125em;
    margin-bottom: 2.1875em;
}

.section--positions .row [class*="col-"]:nth-child(3) .job-position img {
    margin-bottom: 2.1875em;
}

.jobs-form label.btn.btn-simple {
    min-width: 279px;
    width: auto;
}



/*UX UI Designer
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.section--oportunities {
    padding: 0 20px 60px;
}

.section--oportunities h4 {
    margin-top: 80px;
    margin-bottom: 20px;
}

.specification-header h4 {
    margin-bottom: 20px;
}



/*========Contacts========*/

.titlesection {
    padding-top: 6em;
    padding-bottom: 1em;
}

.titlesection h4 {
    margin-bottom: 0;
}

.contact-form h4 {
    margin-bottom: 0;
}

.contact2 {
    padding-top: 80px;
    padding-bottom: 80px;
}

a.contact-links {
    text-decoration: none;
    color: #595959;
}

.col--contact-leiria,
.col--contact-lisboa {
    margin-top: 100px;
}

.col--contact-lisboa {
    padding-left: 80px;
}

.col--contact-leiria {
    padding-left: 0;
}

.form--fields-info {
    color: #9C9C9C;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: -0.34px;
    line-height: 19px;
}

.title-contact {
    letter-spacing: 2px;
    color: var(--section-title-color);
}

.subtitle-contact {
    font-weight: 500;
}

/*========What We Do========*/

.list-text {
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    font-family: NunitoSans-Light;
    margin-right: 20px;
}

.what-we-do--carousel .slick-track {
    padding-top: 20px;
    padding-bottom: 20px;
}

.what-we-do--carousel .slick-slide img {
    display: initial;
}

.what-we-do--details .section-subtitle {
    margin-bottom: 0;
}

.what-we-do--details .row-spacing {
    margin-top: 0;
}



/*========Service========*/

.service-btn {
    margin-top: 50px;
}

.service--img-custom {
    height: 308px;
    width: 466px;

}


/*========Webdevelopment========*/

.btn--dev-project {
    margin-top: 100px;
}



/*========Portfolio========*/

.filter-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.article {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.filter-section {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;

}

.filter-section-click {

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;

}

.article-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;

}

.apply-filter {
    display: none;
}

.filter-title {
    display: none;
}

.btn--filter-option {
    height: 35px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
    text-shadow: 0 3px 3px 0 rgba(177, 177, 177, 0.5);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn--filter-option.active {
    color: var(--light-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-share i {
    font-size: 18px;
    color: #fff;
    vertical-align: text-bottom;
}

.hide-article {
    display: none;
}


.filter {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #F8F8F8;
    z-index: 2;
    position: absolute;
    width: 100%;
}

.filter-section-animation {
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.filter--section-hide.filter-fixed {
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.filter-row {
    margin-top: 236px;
}

.filter-fixed {
    position: fixed;
    z-index: 2;
    top: 0;
    width: 100%;
    margin-top: 69px;

}

.col-filter {
    z-index: 2;
}

.filter-button {
    position: fixed;
    -webkit-transition: all .08s ease-in-out;
    -o-transition: all .08s ease-in-out;
    transition: all .08s ease-in-out;
    margin-top: -48px;
    margin-left: 32px;
}

.filter--button-hide {
    opacity: 0;
    visibility: hidden;

}

.filter--section-hide {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
    opacity: 0;
    visibility: hidden;
}

.btn-svg:hover {
    cursor: pointer;
}

.btn-svg:hover rect {
    /*fill: #ffbb00;*/
    fill: #ffa600;
}

.btn--svg-hover:hover rect {
    fill: #ffa600 !important;
}


.btn--svg-active rect {
    fill: #ffa600;
}

.card--body-border {
    border: 1px solid #EEEEEE;
}

.btn-article .btn__text {
    font-size: 12px;
    letter-spacing: 1px;
}

/*========About Us========*/

.mission-text {
    font-size: 27px;
    font-weight: 300;
    letter-spacing: 1.23px;
    line-height: 36px;
}

.metrics-numbers {
    color: var(--light-color);
}

.metrics-text {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.53px;
    line-height: 20px;
}

.section--about-us {
    padding-top: 60px;
}

.col--our-mission {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.col--our-mission .lead {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 1.6875em;
}

.col-agile {
    padding-top: 80px;
}

.title-location {
    color: var(--primary-color);
}



/*========Footer========*/

.feature-mediaweb {
    margin-bottom: 0px !important;
    display: inline-block;
    height: 110px;
}

.feature__lisboa {
    margin-left: 40px;
}

.icon-socicon {
    color: var(--light-color);
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}

.social-list a:hover .icon-socicon {
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 1);
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}

.footer--sub-title {
    opacity: 0.8;
    color: var(--light-color);
    font-size: 13px;
    font-weight: 800;
    line-height: 18px;
}

.footer--text {
    color: var(--light-color);
    font-size: 14px;
    line-height: 19px;
}

strong .footer--text {
    margin-bottom: 0;
}

.footer--sub {
    margin-bottom: 10px;
    text-align: center;
}

.footer--text-subscribe {
    font-family: NunitoSans-Light;
    text-align: center;
    margin-top: 10px;
}

.btn.footer--btn-subscribe {
    height: 32px;
    background-color: var(--light-color);
    padding: 5px 14px;
    margin-right: 5px;
    font-family: NunitoSans-Black;
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}

.btn .btn__text.footer--btn-subscribe-text {
    color: var(--primary-color);
}

.btn.footer--btn-subscribe:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
    -webkit-box-shadow: 0px 0px 20px -4px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px -4px rgba(255, 255, 255, 1);
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}

.btn.footer--btn-subscribe:active {
    background-color: var(--primary-color-active);
    border-color: var(--primary-color-active);
    -webkit-box-shadow: 0px 0px 20px -4px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px -4px rgba(255, 255, 255, 1);
}

.btn.footer--btn-subscribe:hover .btn__text.footer--btn-subscribe-text {
    color: var(--primary-color);
    -webkit-transition: 0.1s linear;
    -o-transition: 0.1s linear;
    transition: 0.1s linear;
}

footer .footer-container .footer--input-subscibe {
    height: 40px !important;
    background-color: transparent !important;
    opacity: 0.5 !important;
    color: #fff !important;
    font-size: 14px;
}

.form-subscibe {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    height: 40px;
    width: 442px;
    margin: auto;
    overflow: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-subscibe input {
    width: 100%;
}

.feature-mediaweb p {
    min-height: inherit !important;
}

.find-us--container .feature-mediaweb {
    opacity: 0.8;
}

.footer-container .row {
    margin-right: 0;
    margin-left: 0;
}


.footer-left-container .logo {
    margin: 0 auto 20px auto;
}

.footer-left-container .footer--text,
.footer-left-container .footer--sub,
.social-list {
    text-align: center;
}

.footer-left-container .footer--text {
    opacity: 0.8;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 800;
    line-height: 20px;
}


.footer-left-container .footer--text a {
    color: #FFF;
}

@media (min-width: 993px) {
    .footer-left-container {
        max-width: 185px;
        margin: 0 auto;
    }

    .footer-left-container .footer--text,
    .footer-left-container .footer--sub,
    .social-list {
        text-align: left;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
    .footer-left-container {
        max-width: 160px;
    }
}

/*========Join Us Page========*/

.jobs-section {
    padding-bottom: 4em;
}

.jobs-section h2 {
    padding-bottom: 0px;
}

/*========Forms========*/

[class*="-form"] .btn {
    padding: 0.241667em 6.25em;
}

[class*="-form"] img,
.jobs-form svg {
    margin-left: 3.0em;
    position: absolute;
    fill: #c9c9c9;
    top: 16px;
    left: 0;
    width: 23px;
    height: 23px;
}

[class*="-form"] textarea {
    margin-bottom: 0.625em;
}

[class*="-form"] .input-with-icon .icon-Globe-2+input[type=text] {
    margin-bottom: 0.625em;
    margin-top: 1em;
}

[class*="-form"] label.btn {
    background: transparent;
    color: #9C9C9C;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px dashed #9C9C9C;
    border-radius: 0;
    margin-left: 0;
    padding: 0.241667em 4em;
    width: 279px;
    height: 47px;
    vertical-align: middle;
    text-transform: inherit;
    font-size: 14px;
}

[class*="-form"] label i {
    margin-left: 0px;
    margin-right: 1.4em;
    font-size: 23px;
    color: #9C9C9C;
    line-height: 1.2;
    position: relative;
    top: .213em;
}

[class*="-form"] input.fileform {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

[class*="-form"] label.btn.btn-simple:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

[class*="-form"] input.fileform {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

[class*="-form"] .input-checkbox {
    margin-top: 10px;
}

[class*="-form"] .input-checkbox .inner {
    border-radius: 0;
    -webkit-box-shadow: inset 1px 1px 1px 0 rgba(169, 169, 169, 0.5), 0 1px 1px 0 rgba(231, 231, 231, 0.5);
    box-shadow: inset 1px 1px 1px 0 rgba(169, 169, 169, 0.5), 0 1px 1px 0 rgba(231, 231, 231, 0.5);
}

[class*="-form"] .input-checkbox.checked .inner {
    background: var(--secondary-color);
}

[class*="-form"] .label-terms {
    bottom: 7px !important;
    color: #9C9C9C;
    font-size: 13px;
    margin-left: 5px;
}

[class*="-form"] .label-terms a {
    text-decoration: none;
    color: #9C9C9C;
    font-weight: 900;
}

[class*="-form"] .label-terms a:hover {
    text-decoration: underline;
}

[class*="-form"] .captcha-container {
    margin: 15px 0;
    float: right;
}

[class*="-form"] .g-recaptcha {
    margin: 0 auto !important;
    width: auto !important;
    height: auto !important;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -o-center;
    text-align: -ms-center;
}

.specification-box {
    padding: 0 15px;

}

.specification-box .specification-content ul {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9em;
    line-height: 3em !important;
}

.imagebg:not(.image--light) .btn:not(.btn--primary) .btn-apply {
    border-color: #381E52;
}


/*========Case Study========*/

/* Accept Web
–––––––––––––––––––––––––––––––––––––––––––––––––– */
section.header-image .background-image-holder {
    background-position-y: 0 !important;
}

section.header-image .featured-img {
    margin-bottom: -80px;
    position: relative;
}

section.header-image .featured-img img {
    display: block;
    margin: 0 auto;
}

section.info-box {
    padding: 0;
}

section.context,
section.the-challenge,
section.main-issues,
section.user-cases,
section.wireframing,
section.ui-patterns {
    padding: 50px 0 !important;
}

section.redesign-process,
section.final-design {
    padding: 50px 0 0 !important;
}

section.all-together {
    padding: 250px 0 50px !important;
}

section.wireframing img {
    position: relative;
    z-index: 1;
}

section.info-box h4 {
    font-size: 1.40em;
    margin-bottom: 10px;
    position: relative;
}

.cs-accept section.info-box h4:before,
.cs-ionseed section.info-box h4:before {
    background: #343434;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: -6px;
    width: 70px;
}

section.info-box .row {
    display: table;
    width: 100%;
}

section.info-box .row>div {
    padding: 50px 15px 40px;
}

section.info-box .row>div.bg-light-gray:before {
    background: #dce1e8;
    content: "";
    height: 100%;
    left: -500px;
    position: absolute;
    top: 0;
    width: 500px;
}

section.info-box h5 {
    margin: 20px 0 5px;
    position: relative;
}

section.info-box h5:before {
    background: #343434;
    content: "";
    height: 2px;
    margin-top: -2px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 90%;
    z-index: 0;
}

section.info-box h5 span {
    background: #dce1e8;
    display: inline-block;
    padding-right: 10px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

section.info-box p {
    margin-bottom: 0;
}

section.context {
    position: relative;
}

section.context .right-ipad {
    max-height: 550px;
    max-width: 60%;
    position: absolute;
    right: 0;
    top: -120px;
}

section.context .col-sm-6 {
    padding-top: 50px;
}

section.the-challenge .slider-wrapper {
    margin-bottom: 80px;
    padding: 45px;
    position: relative;
}

section.the-challenge .slider-frame {
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: 2;
}

section.the-challenge .slider-wrapper .slider,
section.the-challenge .slider-wrapper .slides {
    overflow: visible;
}

/*
section.the-challenge .slider-wrapper .slider
*/
section.the-challenge .slider-wrapper .owl-stage-outer {
    height: 530px;
}

section.the-challenge .slider-wrapper .owl-dots {
    bottom: -150px;
}

section.the-challenge .slider-wrapper .owl-controls .owl-dots .owl-dot span {
    background: #999ea3;
    height: 12px;
    width: 12px;
}

section.the-challenge .slider-wrapper .owl-controls .owl-dots .owl-dot.active span {
    background: #4b545e;
}

/* Flex Slider
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.accept .container {
    position: static;
}

.accept-challange--carousel .slick-dots {
    position: absolute;
    bottom: -160px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.accept-ipad--carousel .slick-prev,
.accept-ipad--carousel .slick-next {
    position: absolute;
    color: transparent;
    background-color: transparent;
    border: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 80px;
    width: 50px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;

}

.accept-ipad--carousel .slick-prev {
    left: -170px;
}

.accept-ipad--carousel .slick-next {
    right: -170px;
}

.accept-ipad--carousel .slick-prev:before,
.accept-ipad--carousel .slick-next:before {
    font-family: pillar-interface;
    font-size: 8em;
    text-align: center;
    color: white;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
    opacity: 0.3;
}

.accept-ipad--carousel .slick-prev:hover:before,
.accept-ipad--carousel .slick-next:hover:before {
    opacity: 1;
}

.accept-ipad--carousel .slick-prev:before {
    content: "\e801";
}

.accept-ipad--carousel .slick-next:before {
    content: "\e802";
}



.hero-slider {
    padding: 0;
    position: relative;
}

.hero-slider .slides li {
    height: 650px;
    overflow: hidden;
    position: relative;
}

.hero-slider .slides li h1 {
    font-size: 38px;
    line-height: 56px;
    margin-bottom: 40px;
}

.hero-slider .slides li .btn {
    margin-right: 16px;
}

.hero-slider .flex-direction-nav a {
    color: rgba(0, 0, 0, 0);
}

.hero-slider .flex-direction-nav a:before {
    font-size: 36px;
    left: 10px;
    top: 17px;
}

.hero-slider .flex-direction-nav a.flex-next:before {
    left: -10px;
}


.hero-slider .slides li.overlay:before {
    background-color: #222;
    content: "";
    height: 100%;
    opacity: .3;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.hero-slider .foreground-image-holder {
    background-position: 50% 50% !important;
    background-size: cover !important;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.hero-slider .background-image-holder.parallax-background {
    height: 120%;
    top: -10%;
}

.hero-slider .hover-background .background-image-holder,
.hero-slider .hover-background .foreground-image-holder {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.hero-slider .hover-background .background-image-holder {
    height: 110% !important;
    width: 110%;
}

.hero-slider .pos-vertical-center {
    color: var(--light-color);
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

.hero-slider h1 {
    color: var(--light-color);
}

.hero-slider .video-wrapper {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.hero-slider .video-wrapper video {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.hero-slider .flex-control-nav {
    bottom: 0;
    z-index: 5;
}

.hero-slider .flex-control-nav li a {
    background: var(--light-color) !important;
    height: 6px;
    width: 6px;
}

.hero-slider .flex-active {
    height: 10px !important;
    padding-top: 2px;
    width: 10px !important;
}

.hero-slider .flex-direction-nav .flex-next {
    right: 25px;
    z-index: 9999;
}

.hero-slider .flex-direction-nav .flex-prev {
    left: 25px;
}

.hero-slider .flex-direction-nav a {
    color: var(--light-color) !important;
    opacity: .2;
    text-shadow: none !important;
}

.hero-slider .flex-direction-nav a:hover {
    opacity: 1;
    text-shadow: none !important;
}

.hero-slider .flex-direction-nav a:before {
    content: "\e802";
    display: inline-block;
    font-family: "pillar-interface";
    font-size: 2em;
}

.hero-slider .flex-direction-nav .flex-next:before {
    content: "\e802" !important;
}

.hero-slider .flex-direction-nav .flex-prev:before {
    content: "\e801" !important;
}


/* Tabs (Bootstrap)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}



/* Top Section Triangle
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.top-right-triangle {
    position: relative;
}

.top-right-triangle:before {
    border-color: transparent transparent #586169 transparent;
    border-style: solid;
    border-width: 0 0 180px 100vw;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: -180px;
    width: 0;
    z-index: 0;
}

.bg-light-gray.top-right-triangle:before {
    border-color: transparent transparent #dce1e8 transparent;
}

.bg-dark-gray.top-right-triangle:before {
    border-color: transparent transparent #586169 transparent;
}




/* Rotated Shadow Frames
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.rotated-frames {
    margin: 30px 0 -30px;
    position: relative;
    z-index: 1;
}

.rotated-frames .frame1 {
    background: #f0f0f0;
    -webkit-box-shadow: inset 0 2px 3px rgba(2, 3, 3, .2), 0 0 2px rgba(64, 65, 66, .24);
    box-shadow: inset 0 2px 3px rgba(2, 3, 3, .2), 0 0 2px rgba(64, 65, 66, .24);
    padding: 5px;
    -webkit-transform: rotate(2deg) translateZ(0);
    transform: rotate(2deg) translateZ(0);
}

.rotated-frames .frame2 {
    background: #e2e2e2;
    -webkit-box-shadow: inset 0 2px 3px rgba(2, 3, 3, .2), 0 0 2px rgba(64, 65, 66, .24);
    box-shadow: inset 0 2px 3px rgba(2, 3, 3, .2), 0 0 2px rgba(64, 65, 66, .24);
    margin: -5px;
    padding: 5px;
    -webkit-transform: rotate(-3.5deg) translateZ(0);
    transform: rotate(-3.5deg) translateZ(0);
}

.rotated-frames .frame3 {
    background: var(--light-color);
    -webkit-box-shadow: 0 0 2px rgba(64, 65, 66, .24);
    box-shadow: 0 0 2px rgba(64, 65, 66, .24);
    margin: -5px;
    padding: 15px;
    -webkit-transform: rotate(1.5deg) translateZ(0);
    transform: rotate(1.5deg) translateZ(0);
}


/* Timeline Tabs
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline-tabs .nav-tabs a {
    color: #384046;
}

.timeline-tabs .nav-tabs li {
    padding-left: 40px;
    position: relative;
}

.timeline-tabs .nav-tabs li:before {
    background: #384046;
    border-radius: 100%;
    content: "";
    height: 14px;
    left: 0;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    width: 14px;
}

.timeline-tabs .nav-tabs li:after {
    background: #384046;
    content: "";
    height: 100%;
    left: 6px;
    position: absolute;
    top: 50%;
    width: 2px;
}

.timeline-tabs .nav-tabs li:last-child:after {
    display: none;
}

.timeline-tabs .nav-tabs li.active a {
    color: #d2d4d7;
}

.timeline-tabs .nav-tabs li.active:before {
    background: #d2d4d7;
    color: #384046;
    font: 10px/20px "Helvetica", Arial, sans-serif;
    font-weight: 700;
    height: 20px;
    margin: -10px 0 0 -3px;
    text-align: center;
    width: 20px;
    z-index: 1;
}

.timeline-tabs .nav-tabs li:nth-child(1).active:before {
    content: "1";
}

.timeline-tabs .nav-tabs li:nth-child(2).active:before {
    content: "2";
}

.timeline-tabs .nav-tabs li:nth-child(3).active:before {
    content: "3";
}

.timeline-tabs .nav-tabs li:nth-child(4).active:before {
    content: "4";
}

.timeline-tabs .nav-tabs li:nth-child(5).active:before {
    content: "5";
}

/* Rotated frames user info
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.user-info {
    display: table;
    height: 90px;
    margin-bottom: 20px;
    width: 100%;
}

.user-info .user-photo {
    display: table-cell;
    width: 80px;
}

.user-info .user-details {
    display: table-cell;
    padding: 0 10px;
    vertical-align: top;
}

.user-details .user-name {
    color: #4c555e;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.user-details .user-role {
    color: #5d5d5d;
}

.user-description {
    color: #4c555e;
    min-height: 350px;
}

.user-description ul {
    list-style: disc;
    margin: 20px 0;
    padding-left: 20px;
}

.user-description ul li {
    line-height: 1.4em;
    margin-bottom: 20px;
}

.user-footer-info {
    border-top: 1px solid #bdbfbe;
    color: #999898;
    padding-top: 20px;
}

section.final-design img.right-final-design {
    position: absolute;
    right: 0;
    top: -50px;
}

section.final-design .row.ipad-slider {
    margin-top: 900px;
}

section.final-design .slider-wrapper {
    margin-bottom: -200px;
    padding: 35px 100px;
    position: relative;
}

section.final-design .slider-frame {
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: 2;
}

section.final-design .slider-wrapper .slider,
section.final-design .slider-wrapper .slides {
    overflow: visible;
}

section.final-design .slider-wrapper .slider,
section.final-design .slider-wrapper .owl-stage-outer {
    height: 560px;
}

section.final-design .slider-wrapper .owl-stage-outer {
    overflow: hidden;
}

section.final-design .slider-wrapper .owl-controls .owl-nav div.owl-prev {
    display: block !important;
    font-size: 40px;
    left: -200px;
}

section.final-design .slider-wrapper .owl-controls .owl-nav div.owl-next {
    display: block !important;
    font-size: 40px;
    right: -200px;
}

section.final-design .slider-wrapper .owl-controls .owl-dots {
    display: none !important;
}


/* ION SEED
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.bg-dark-blue {
    background: #323754;
    color: var(--light-color);
}

.bg-dark-blue-gradient {
    background: #585c70;
    background: -o-radial-gradient(center, ellipse, #585c70 0%, #323754 70%, #323754 100%);
    background: radial-gradient(ellipse at center, #585c70 0%, #323754 70%, #323754 100%);
    color: var(--light-color);
    -webkit-filter: progid:dximagetransform.Microsoft.gradient(startColorstr="#585c70", endColorstr="#323754", GradientType=1);
    filter: progid:dximagetransform.Microsoft.gradient(startColorstr="#585c70", endColorstr="#323754", GradientType=1);
}

.circular-title {
    background: var(--light-color);
    border: 2px solid #97ddf0;
    border-radius: 100%;
    height: 200px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    width: 200px;
    z-index: 1;
}

.circular-title h3 {
    color: #0091b7;
    font-size: 28px;
    font-weight: 400;
    line-height: 200px;
    margin: 0;
    text-transform: uppercase;
}

.cs-ionseed section.header-image .featured-img img {
    margin-top: 100px;
}

.cs-ionseed section.info-box .col-sm-9 img {
    display: block;
    margin: 0 auto;
    max-width: 60%;
}

.cs-ionseed section.concept,
.cs-ionseed section.behaviour,
.cs-ionseed section.grid {
    padding: 0;
}

.cs-ionseed section.concept .circular-title {
    float: right;
    margin: 10px 0 -90px;
}

.cs-ionseed section.behaviour .circular-title {
    margin: -100px 0 -60px;
}

.cs-ionseed section.grid .circular-title {
    margin: -50px 0 -150px;
}

.cs-ionseed section.app {
    border-top: 2px solid #97ddf0;
    padding: 100px 0 50px !important;
    position: relative;
}

.cs-ionseed section.app:before {
    background: rgba(248, 248, 248, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248, 248, 248, 0)), color-stop(75%, rgba(248, 248, 248, .82)), color-stop(91%, rgba(248, 248, 248, 1)));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0)), color-stop(75%, rgba(248, 248, 248, .82)), color-stop(91%, rgba(248, 248, 248, 1)));
    background: -o-linear-gradient(top, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, .82) 75%, rgba(248, 248, 248, 1) 91%);
    background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, .82) 75%, rgba(248, 248, 248, 1) 91%);
    -webkit-filter: progid:dximagetransform.Microsoft.gradient(startColorstr="#f8f8f8", endColorstr="#f8f8f8", GradientType=0);
    filter: progid:dximagetransform.Microsoft.gradient(startColorstr="#f8f8f8", endColorstr="#f8f8f8", GradientType=0);
    content: "";
    height: 100px;
    left: 0;
    position: absolute;
    top: -102px;
    width: 100%;
}

.cs-ionseed section.app .circular-title {
    float: right;
    margin: -200px 0 0;
}

.cs-ionseed section.app p {
    font-size: 24px;
    line-height: 30px;
}

.cs-ionseed section.app p.lead {
    color: #58ade8;
    font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/***********
*   2. CASE STUDIES
************/

/* 2.1. THEMES */
.case-study {
    --styleguide-color-1: #888888;
    --styleguide-color-2: #888888;
    --styleguide-color-3: #888888;
    --styleguide-color-4: #888888;
    --styleguide-color-5: #888888;
    --styleguide-color-text-1: #FFFFFF;
    --styleguide-color-text-2: #FFFFFF;
    --styleguide-color-text-3: #FFFFFF;
    --styleguide-color-text-4: #FFFFFF;
    --styleguide-color-text-5: #FFFFFF;
}

.publico-theme {
    --theme-color: #D10019;
    --theme-color-gradient: #D14555;
    --primary-color: #D10019;
    --styleguide-color-1: #d01a1a;
    --styleguide-color-2: #f5a623;
    --styleguide-color-3: #66bb6a;
    --styleguide-color-4: #4a90e2;
    --styleguide-color-5: #323232;
}

.smile-theme {
    --theme-color: #424255;
    --theme-color-gradient: #76768E;
    --primary-color: #FC7C68;
    --styleguide-color-1: #fc7c68;
    --styleguide-color-2: #424255;
    --styleguide-color-3: #232323;
    --styleguide-color-4: #fdc903;
}

.oakland-theme {
    --theme-color: #237A02;
    --theme-color-gradient: #77956C;
    --primary-color: #237A02;
    --styleguide-color-1: #004c0d;
    --styleguide-color-2: #237a02;
    --styleguide-color-3: #404040;
    --styleguide-color-4: #f1f1f1;
    --styleguide-color-text-4: #232323;
}

.dama-copas-theme {
    --theme-color: #372077;
    --theme-color-gradient: #7762AF;
    --primary-color: #372077;
}

.powerhouse-theme {
    --theme-color: #F76B1C;
    --theme-color-gradient: #FAD961;
    --primary-color: #F76B1C;
    --styleguide-color-1: #F76B1C;
    --styleguide-color-2: #35556C;
    --styleguide-color-3: #1F2929;
    --styleguide-color-4: #FFFFFF;
    --styleguide-color-text-4: #767676;
}

.wayne-brothers-theme {
    --theme-color: #F76B1C;
    --theme-color-gradient: #FAD961;
    --primary-color: #F76B1C;
    --styleguide-color-1: #F7941D;
    --styleguide-color-2: #000000;
    --styleguide-color-3: #76BB2A;
    --styleguide-color-4: #FE4B13;
    --styleguide-color-5: #F6D236;
    --styleguide-color-text-4: #767676;
}

.cvm-theme {
    --theme-color: #3F2655;
    --theme-color-gradient: #76489e;
    --primary-color: #3F2655;
    --styleguide-color-1: #3F2655;
    --styleguide-color-2: #f9a900;
    --styleguide-color-3: #4291de;
    --styleguide-color-4: #98c149;
}

.shawcor-theme {
    --theme-color: #CEAD5E;
    --theme-color-gradient: #C0A156;
    --primary-color: #CCAB5D;
    --styleguide-color-1: #C09022;
    --styleguide-color-2: #414142;
    --styleguide-color-3: #F44336;
    --styleguide-color-4: #00BA09;
    --styleguide-color-5: #4A90E2;
    --styleguide-color-text-4: #767676;
}

.orthobanc-theme {
    --theme-color: #3AABEE;
    --theme-color-gradient: #2F4853;
    --primary-color: #2F4853;
    --styleguide-color-1: #2F4853;
    --styleguide-color-2: #28A3EC;
    --styleguide-color-3: #295FD6;
    --styleguide-color-4: #F3F6F8;
    --styleguide-color-text-4: #767676;
}

/* 2.2. HELPERS */
.d-none,
.ph:empty {
    display: none !important;
}

.mt-1 {
    margin-top: 1em !important;
}

.col-2 {
    -webkit-column-count: 2 !important;
    -moz-column-count: 2 !important;
    column-count: 2 !important;
}


/* 2.3. BACKGROUND */
.case-study section:not(:nth-child(2)):nth-child(even) {
    background: #F7F9FA;
}

.case-study section {
    padding: 5em 0;
    background-color: var(--light-color);
}


/* 2.4. TYPOGRAPHY */



.case-study .h1,
.case-study .h2,
.case-study .h3,
.case-study .h4,
.case-study .h5,
.case-study .h6,
.case-study h1,
.case-study h2,
.case-study h3,
.case-study h4,
.case-study h5,
.case-study h6,
.case-study i {
    color: #232323;
}

.case-study .h2,
.case-study h2 {
    font-size: 2em;
    line-height: 1.25em;
}

.case-study .h3,
.case-study h3 {
    margin-bottom: .6em;
    line-height: 1.3em;
    font-size: 1.5em;
}

.case-study .h4,
.case-study h4 {
    font-size: 1.25em;
    line-height: 1.4em;
}

.case-study .h5,
.case-study h5 {
    font-size: 1.15em;
    line-height: 1.4em;
    margin-bottom: 1em;
}

.case-study .h6,
.case-study h6 {
    font-size: 1em;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: 0;
    font-weight: bold;
}

.case-study p {
    font-size: 1em;
    font-family: Lato, sans-serif;
    line-height: 1.5em;
    color: #1f1f1f;
    font-weight: 300;
    margin-bottom: 0;
    min-height: auto;
}

.case-study p.highlight,
.case-study a.highlight,
.case-study span.highlight {
    font-size: 1.15em;
    line-height: 1.4em;
    font-weight: 600;
}

.case-study p.small {
    font-family: Lato, sans-serif;
    font-size: .9em;
    line-height: 1.5em;
}

.case-study blockquote {
    font-family: Lora, sans-serif;
    font-size: 1.5em;
    line-height: 1.4em;
}

.case-study a {
    text-decoration: none;
    color: var(--theme-color);
    /* theme color */
}

.case-study .icon {
    font-size: 3em;
}





/* 2.5. FIXES */
.case-study section h2+p.highlight {
    margin-bottom: 1em;
    color: #232323;
    font-weight: initial;
}

.case-study section:not(.testimonial-3):not(.map-1):not(.imagebg):not(.imageblock):not(.bg--dark):not(.bg--secondary):not(.bg--primary):not(.bg--white):not(.features-5):not(.features-10):not(.wide-grid):not(.slider)+section:not(.testimonial-3):not(.map-1):not(.imagebg):not(.imageblock):not(.bg--dark):not(.bg--secondary):not(.bg--primary):not(.bg--white):not(.features-5):not(.features-10):not(.wide-grid):not(.slider) {
    padding-top: 5em;
}

.case-study .feature__title h3 {
    margin: 1em 0;
}

.case-study i+h3 {
    margin: .5em 0;
}

.case-study .background-white {
    background: var(--light-color) !important;
}

/* 2.6. PIECHART */
.case-study .piechart {
    background-color: rgba(229, 229, 229, .5);
    margin-bottom: 0;
}

.case-study .piechart svg {
    fill: var(--theme-color);
    /* theme color */
}

.case-study .piechart .piechart__description h6 {
    opacity: 1;
    color: #232323;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-size: 1.5em;
    line-height: 1.35em;
}

.case-study .piechart-2 .piechart__overlay {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

.case-study .progress-circle~div {
    margin-top: 2em;
}

.cvm-theme .owl-caroussel .owl-item img {
    padding: 10px;
}

.cvm-theme .wireframe:before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* 2.7. PUBLICO CASE STUDY */
.case-study .cover {
    background: -o-linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
    background: linear-gradient(315deg, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
    /* theme color */
    height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
    overflow: initial;
    position: relative;
}

.case-study.publico-theme .cover {
    background: -o-linear-gradient(135deg, var(--theme-color-gradient) 0%, var(--theme-color) 100%);
    background: linear-gradient(315deg, var(--theme-color-gradient) 0%, var(--theme-color) 100%);
    /* theme color */
}

.case-study .cover h2 {
    font-size: 24px;
    color: var(--light-color);
    font-weight: 600;
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
}


.case-study .cover>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
}

.case-study .cover .explore p {
    color: var(--light-color);
    font-family: Montserrat, sans-serif;
    text-decoration: underline;
    font-weight: 600;
    margin: 1em 0;
}

.case-study .cover .explore i {
    color: var(--light-color);
    font-size: 2em;
    margin-bottom: 20px;
    display: block;
}

.case-study .cover .logo {
    max-width: 380px;
    margin: auto auto 35px;
    height: 80px;
}

.case-study .cover .logo img {
    width: auto;
    height: 100%;
}

.case-study .cover.cover-horizontal .cover__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Powerhouse Theme*/

.powerhouse-theme.case-study .cover {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--theme-color)), to(var(--theme-color-gradient)));
    background: -o-linear-gradient(bottom, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
    background: linear-gradient(0deg, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
}

.powerhouse-theme.case-study section:not(:nth-child(1)):nth-child(odd) {
    background: #F7F9FA;
}

.powerhouse-theme.case-study section:not(:nth-child(1)):nth-child(even) {
    background: #FFFFFF;
}

.powerhouse-theme ul.challenge-list {
    list-style: inherit;
    text-align: left;
}

.powerhouse-theme.case-study .cover .logo {
    max-width: 800px;
    padding-left: 100px;
}

.powerhouse-theme.case-study .cover .logo img+img {
    margin-left: 32px;
}

.powerhouse-theme.case-study .section-testimonials.dark:before {
    background: -webkit-gradient(linear, left top, left bottom, from(#FAD961), to(#F76B1C));
    background: -o-linear-gradient(top, #FAD961 0%, #F76B1C 100%);
    background: linear-gradient(180deg, #FAD961 0%, #F76B1C 100%);
    opacity: 0.7;
}

ul.slides.publico-screens--carousel img {
    padding: 0 12px;
    margin-bottom: 0;
    margin-top: -46px;
}

.powerhouse-theme .iconography.singular {
    max-width: 308px;
}

/* Wayne Brothers Theme */

.wayne-brothers-theme.case-study .cover {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--theme-color)), to(var(--theme-color-gradient)));
    background: -o-linear-gradient(bottom, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
    background: linear-gradient(0deg, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
}

.wayne-brothers-theme.case-study section:not(:nth-child(1)):nth-child(odd),
.wayne-brothers-theme.case-study section:not(:nth-child(1)):nth-child(even):last-child {
    background: #F7F9FA;
}

.wayne-brothers-theme.case-study section:not(:nth-child(1)):nth-child(even) {
    background: #FFFFFF;
}

.wayne-brothers-theme ul.challenge-list {
    list-style: inherit;
    text-align: left;
}

.wayne-brothers-theme.case-study .cover .logo {
    max-width: 800px;
    padding-left: 100px;
}

.wayne-brothers-theme.case-study .cover .logo img+img {
    margin-left: 32px;
}

.wayne-brothers-theme .cover .cover__image img {
    max-width: none;
}

.wayne-brothers-theme.case-study .section-testimonials.dark:before {
    background: -webkit-gradient(linear, left top, left bottom, from(#F6893D), to(#1F2929));
    background: -o-linear-gradient(top, #F6893D 0%, #1F2929 100%);
    background: linear-gradient(180deg, #F6893D 0%, #1F2929 100%);
    ;
    opacity: 0.7;
}

.wayne-brothers-theme.case-study .styleguide-color-4 h4,
.wayne-brothers-theme.case-study .styleguide-color-4 p {
    color: #FFFFFF !important;
}

ul.slides.publico-screens--carousel img {
    padding: 0 12px;
    margin-bottom: 0;
    margin-top: -46px;
}

ul .custom-slider .slides.publico-screens--carousel img {
    margin-top: -22px;
}


.wayne-brothers-theme ul.slides.publico-screens--carousel img {
    padding: 0;
    margin-top: -42px;
}

.wayne-brothers-theme .custom-slider ul.slides.publico-screens--carousel img {
    padding: 0;
    margin-top: -20px;
}

.wayne-brothers-theme .iconography.singular {
    max-width: 308px;
}

.wayne-brothers-theme .illustration-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wayne-brothers-theme .illustration-section img {
    margin-bottom: 1.625em;
}

.wayne-brothers-theme .wireframe-back img {
    margin-bottom: -27px;
}

.wayne-brothers-theme .features33.variant-tab-features-4-1577361946870 .tabs-container {
    margin-top: 26px;
    overflow: visible;
}

.wayne-brothers-theme .slider.slider-screens.laptop .owl-dots,
.wayne-brothers-theme .custom-slider.slider-screens.laptop .owl-dots {
    bottom: -114px;
}

.wayne-brothers-theme .tabs-container .tabs li:not(:last-child) {
    margin-right: 12.25em;
}

.wayne-brothers-theme section.approach {
    margin-bottom: 134px;
}

.wayne-brothers-theme .tabs-container .tabs__title {
    position: relative;
}

.wayne-brothers-theme .tabs-container .voh.vnn.active svg g {
    stroke: #FFA200;
}

.wayne-brothers-theme .tabs-container .voh.vnn.active .toggle-night-day svg g {
    stroke: #000;
}

.wayne-brothers-theme .tabs-container .voh.vnn.active h4 {
    text-decoration: underline;
    color: #FFA200;
}

.wayne-brothers-theme .tabs-container .voh.vnn.active .toggle-night-day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(47%);
    -ms-transform: translateX(47%);
    transform: translateX(47%);
    z-index: 15;
}

.wayne-brothers-theme .tabs-container .voh.vnn.active .toggle-night-day label {
    margin: 0 8px;
}

.wayne-brothers-theme.case-study .section-testimonials.dark {
    padding: 7em 0;
}

.wayne-brothers-theme .tabs-container .tabs>li {
    display: inline-block;
}

.wayne-brothers-theme .custom-slider.slider.slider-screens.slider-mockup.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.wayne-brothers-theme .custom-slider.slider.slider-screens.slider-mockup {
    display: none;
}

.ck-active {
    opacity: 0.2;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}


/*Toggle Button*/
.wayne-brothers-theme .toggle-night-day {
    display: none;
    margin-top: 24px;
}

/* The switch - the box around the slider */
.wayne-brothers-theme .switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
    margin: 0;
}

/* Hide default HTML checkbox */
.wayne-brothers-theme .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.wayne-brothers-theme .toggler {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.wayne-brothers-theme .toggler:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.wayne-brothers-theme input:checked+.toggler {
    background-color: #FFA200;
}

.wayne-brothers-theme input:focus+.toggler {
    -webkit-box-shadow: 0 0 1px #FFA200;
    box-shadow: 0 0 1px #FFA200;
}

.wayne-brothers-theme input:checked+.toggler:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
}

/* Rounded sliders */
.wayne-brothers-theme .toggler.round {
    border-radius: 34px;
}

.wayne-brothers-theme .toggler.round:before {
    border-radius: 50%;

}

/*----------------------*/

/* Shawcor Theme */

.shawcor-theme.case-study .cover {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--theme-color)), to(var(--theme-color-gradient)));
    background: -o-linear-gradient(bottom, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
    background: linear-gradient(0deg, var(--theme-color) 0%, var(--theme-color-gradient) 100%);
}

.shawcor-theme.case-study .cover .logo img:first-child {
    width: 320px;
}

.shawcor-theme.case-study section:not(:nth-child(1)):nth-child(odd),
.shawcor-theme.case-study section:not(:nth-child(1)):nth-child(even):last-child {
    background: #F7F9FA;
}

.shawcor-theme.case-study section:not(:nth-child(1)):nth-child(even) {
    background: #FFFFFF;
}

.shawcor-theme ul.challenge-list {
    list-style: inherit;
    text-align: left;
}

.shawcor-theme.case-study .cover .logo {
    max-width: 800px;
    padding-left: 100px;
}

.shawcor-theme.case-study .cover .logo img+img {
    margin-left: 32px;
}

.shawcor-theme.case-study .section-testimonials.dark:before {
    background: -webkit-gradient(linear, left top, left bottom, from(#CEAD5E), to(#C0A156));
    background: -o-linear-gradient(top, #CEAD5E 0%, #C0A156 100%);
    background: linear-gradient(180deg, #CEAD5E 0%, #C0A156 100%);
    opacity: 0.7;
}

.shawcor-theme.case-study .styleguide-color-4 h4,
.shawcor-theme.case-study .styleguide-color-4 p {
    color: #FFFFFF !important;
}

ul.slides.publico-screens--carousel img {
    padding: 0 12px;
    margin-bottom: 0;
    margin-top: -46px;
}

ul .custom-slider .slides.publico-screens--carousel img {
    margin-top: -22px;
}


.shawcor-theme ul.slides.publico-screens--carousel img {
    padding: 0;
    margin-top: -42px;
}

.shawcor-theme .custom-slider ul.slides.publico-screens--carousel img {
    padding: 0;
    margin-top: -20px;
}

.shawcor-theme .iconography.singular {
    max-width: 308px;
}

.shawcor-theme .illustration-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shawcor-theme .illustration-section img {
    margin-bottom: 1.625em;
}

.shawcor-theme .wireframe-back img {
    margin-bottom: -27px;
}

.shawcor-theme .features33.variant-tab-features-4-1577361946870 .tabs-container {
    margin-top: 26px;
    overflow: visible;
}

.shawcor-theme .slider.slider-screens.laptop .owl-dots,
.shawcor-theme .custom-slider.slider-screens.laptop .owl-dots {
    bottom: -114px;
}

.shawcor-theme .tabs-container .tabs li:not(:last-child) {
    margin-right: 12.25em;
}

.shawcor-theme section.approach {
    margin-bottom: 134px;
}

.shawcor-theme .tabs-container .tabs__title {
    position: relative;
}

.shawcor-theme .tabs-container .voh.vnn.active svg g {
    stroke: var(--primary-color);
}

.shawcor-theme .tabs-container .voh.vnn.active .toggle-night-day svg g {
    stroke: #000;
}

.shawcor-theme .tabs-container .voh.vnn.active h4 {
    text-decoration: underline;
    color: var(--primary-color);
}

.shawcor-theme .tabs-container .voh.vnn.active .toggle-night-day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(47%);
    -ms-transform: translateX(47%);
    transform: translateX(47%);
    z-index: 15;
}

.shawcor-theme .tabs-container .voh.vnn.active .toggle-night-day label {
    margin: 0 8px;
}

.shawcor-theme.case-study .section-testimonials.dark {
    padding: 15em 0;
}

.shawcor-theme .tabs-container .tabs>li {
    display: inline-block;
}

.shawcor-theme .custom-slider.slider.slider-screens.slider-mockup.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shawcor-theme .custom-slider.slider.slider-screens.slider-mockup {
    display: none;
}

.ck-active {
    opacity: 0.2;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.shawcor-theme #tablet-slider .slider.o-v.slider-screens.shadow-items.slider-mockup.laptop .owl-item {
    overflow: visible;
}

.shawcor-theme #tablet-slider .slider.o-v.slider-screens.shadow-items.slider-mockup.laptop .owl-item li {
    top: -14px;
}

.shawcor-theme #tablet-slider ul.slides.publico-screens--carousel img {
    margin-top: 0;
}

/*Toggle Button*/
.shawcor-theme .toggle-night-day {
    display: none;
    margin-top: 24px;
}

/* The switch - the box around the slider */
.shawcor-theme .switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
    margin: 0;
}

/* Hide default HTML checkbox */
.shawcor-theme .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.shawcor-theme .toggler {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.shawcor-theme .toggler:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.shawcor-theme input:checked+.toggler {
    background-color: #FFA200;
}

.shawcor-theme input:focus+.toggler {
    -webkit-box-shadow: 0 0 1px #FFA200;
    box-shadow: 0 0 1px #FFA200;
}

.shawcor-theme input:checked+.toggler:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
}

@media (min-width: 768px) {
    .shawcor-theme #tablet-slider .slider.slider-mockup.laptop:after {
        background-image: url(../../../img/case-studies/wayne-brothers/iPad-Clay-Frontal-White.png);
        background-size: contain;
    }

    .shawcor-theme #tablet-slider .slider.slider-screens.laptop .owl-item.center li {
        -webkit-transform: scale(0.93) translateY(10px);
        -ms-transform: scale(0.93) translateY(10px);
        transform: scale(0.93) translateY(10px);
    }
}

/* Rounded sliders */
.shawcor-theme .toggler.round {
    border-radius: 34px;
}

.shawcor-theme .toggler.round:before {
    border-radius: 50%;

}

/*----------------------*/

/* ORTHOBANC THEME */

.orthobanc-theme.case-study [class*="case-studies-context"] .container>.row>div {
    margin-top: 50px;
}

.orthobanc-theme .owl-caroussel .owl-item img {
    padding: 10px;
}

.orthobanc-theme .wireframe:before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.orthobanc-theme .wireframe {
    margin-bottom: 0px;
}

.orthobanc-theme .section-testimonials li {
    list-style: none;
}

.orthobanc-theme.case-study .section-testimonials.dark p,
.orthobanc-theme.case-study .section-testimonials.dark blockquote {
    color: #fff;
}

.orthobanc-theme.case-study .illustration-section {
    margin-top: 48px;
    text-align: center;
}

.orthobanc-theme.case-study .illustration-section>div {
    padding: 40px;
}

.orthobanc-theme.case-study .illustration-section img {
    max-width: 140px;
}

.orthobanc-theme.case-study .iconography img {
    max-width: 300px;
}

.orthobanc-theme .slider-mockup .slides {
    max-height: 360px;
}

@media (min-width: 992px) {
    .orthobanc-theme .slider.slider-screens.laptop .owl-item.center li {
        -webkit-transform: scale(1.01) translateY(10px);
        -ms-transform: scale(1.01) translateY(10px);
        transform: scale(1.01) translateY(10px);
    }
}

/* 2.8. SECTIONS */

/* 2.8.1. LOOK AND FEEL */
.case-study section.look-and-feel {
    min-height: calc(100vw * 2845 / 2500);
    /*background-image: url(../../../img/case-studies/dama-de-copas/look-and-feel.png);*/
    background-size: cover;
}

.case-study #look_feel {
    position: absolute;
    margin-top: -180px;
    width: 125%;
    height: auto;
    max-width: initial;
}

/* 2.8.2. TECHNICAL SHEET */
.case-study section.technical-sheet {
    padding: 0 !important;
    position: relative;
}

.case-study .technical-sheet .link {
    margin-top: 1em;
}

.case-study .technical-sheet .project-info {
    background: #f1f1f2;
    position: relative;
}

.case-study .technical-sheet>.feature:not(.project-explanation__text) p {
    color: #8A8A8A;
}

.case-study .technical-sheet p.h6:not(:first-child),
.case-study .technical-sheet h6:not(:first-child) {
    margin: 1em auto;
}

.case-study .technical-sheet p.h6,
.case-study .technical-sheet h6 {
    margin-bottom: 1em;
}

.case-study .technical-sheet>div {
    padding: 6em 3em;
}

.technical-sheet.technical-sheet-horizontal .project-explanation {
    padding: 5em 0;
}

.case-study .technical-sheet:not(.technical-sheet-horizontal) div>* {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.case-study .features p.lead {
    margin-bottom: 2em;
}

.case-study .technical-sheet .large-explanation-text {
    padding-top: 11em;
}

.case-study .technical-sheet h2 {
    margin-bottom: 0.75em;
}

/* 2.8.3. HIGHLIGHT */
.case-study .section-highlight .highlight-item {
    padding-left: 4em;
    position: relative;
    margin-top: 0;
    min-height: 240px;
}

.case-study .section-highlight .highlight-item i {
    position: absolute;
    top: 0;
    left: 0;
}

.case-study .section-highlight.highlight-image-right .highlight-item {
    margin-bottom: 3em;
    min-height: unset;
}


/* 2.8.4. RESEARCH */
.wireframe {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 8em;
}

.wireframe:not(.singular) {
    max-width: 400px;
}

.wireframe.singular {
    margin-bottom: 0;
}

.wireframe.front {
    position: absolute;
    right: 2em;
    top: 7em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.wireframe:before {
    content: '';
    position: absolute;
    width: calc(100% - 2em);
    height: 100%;
    left: 1em;
    top: 0;
    z-index: -1;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* 2.8.5. STYLEGUIDE */
.case-study .styleguide-colors:not(.colors-horizontal) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.case-study .styleguide-colors.colors-horizontal {
    margin-bottom: 80px;
}

.case-study .styleguide-colors:not(.colors-horizontal) {
    display: -ms-grid;
    display: grid;
    max-width: 940px;
    grid-gap: 30px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    grid-auto-rows: minmax(175px, auto);
}

.case-study .styleguide-colors.colors-horizontal .box {
    height: 278px;
    display: inline-block;
    width: 220px;
    margin: 0 10px 1em 0;
    border-radius: 5px;
    position: relative;
}


.case-study .styleguide-colors.colors-horizontal .box:nth-child(even) {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    margin-right: 0;
}

.case-study .styleguide-colors.colors-horizontal .box .color-info {
    padding: 2em;
}

.case-study .styleguide-colors.colors-horizontal .box .color-info h4 {
    min-height: 105px;
}


.case-study .styleguide-colors:not(.colors-horizontal) .box {
    /* needed for the flex layout*/
    margin-left: 5px;
    margin-right: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 200px;
    flex: 1 1 200px;
    border-radius: 5px;
    position: relative;
    z-index: 9;
    display: block;
}

.case-study .box .shadow-item {
    content: '';
    position: absolute;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    left: 16px;
    top: 32px;
    z-index: 0;
}

.case-study.smile-theme .box:nth-child(1) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(252, 124, 104, 0.5);
    box-shadow: 0 4px 48px 0 rgba(252, 124, 104, 0.5);
}

.case-study.smile-theme .box:nth-child(2) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(66, 66, 85, 0.5);
    box-shadow: 0 4px 48px 0 rgba(66, 66, 85, 0.5);
}

.case-study.smile-theme .box:nth-child(3) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(35, 35, 35, 0.5);
    box-shadow: 0 4px 48px 0 rgba(35, 35, 35, 0.5);
}

.case-study.smile-theme .box:nth-child(4) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(253, 201, 3, 0.5);
    box-shadow: 0 4px 48px 0 rgba(253, 201, 3, 0.5);
}

.case-study.oakland-theme .box:nth-child(1) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(0, 76, 13, 0.5);
    box-shadow: 0 4px 48px 0 rgba(0, 76, 13, 0.5);
}

.case-study.oakland-theme .box:nth-child(2) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(35, 122, 2, 0.5);
    box-shadow: 0 4px 48px 0 rgba(35, 122, 2, 0.5);
}

.case-study.oakland-theme .box:nth-child(3) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(64, 64, 64, 0.5);
    box-shadow: 0 4px 48px 0 rgba(64, 64, 64, 0.5);
}

.case-study.oakland-theme .box:nth-child(4) .shadow-item {
    -webkit-box-shadow: 0 4px 48px 0 rgba(241, 241, 241, 0.5);
    box-shadow: 0 4px 48px 0 rgba(241, 241, 241, 0.5);
}

.case-study .styleguide-colors:not(.colors-horizontal) .box .color-info {
    position: absolute;
    bottom: 1em;
    left: 1em;
}


.case-study .styleguide-color-1 {
    background-color: var(--styleguide-color-1);
}


.case-study .styleguide-color-1 h4,
.case-study .styleguide-color-1 p {
    color: var(--styleguide-color-text-1) !important;
}

.case-study .styleguide-color-2 {
    background-color: var(--styleguide-color-2);
}


.case-study .styleguide-color-2 h4,
.case-study .styleguide-color-2 p {
    color: var(--styleguide-color-text-2) !important;
}

.case-study .styleguide-color-3 {
    background-color: var(--styleguide-color-3);
}

.case-study .styleguide-color-3 h4,
.case-study .styleguide-color-3 p {
    color: var(--styleguide-color-text-3) !important;
}

.case-study .styleguide-color-4 {
    background-color: var(--styleguide-color-4);
}

.case-study .styleguide-color-4 h4,
.case-study .styleguide-color-4 p {
    color: var(--styleguide-color-text-4) !important;
}

.case-study .styleguide-color-5 {
    background-color: var(--styleguide-color-5);
}

.case-study .styleguide-color-5 h4,
.case-study .styleguide-color-5 p {
    color: var(--styleguide-color-text-5) !important;
}

.box .color-info h4,
.box .color-info p {
    color: var(--light-color);
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

.box .color-info h4 {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.box .color-info p {
    font-weight: 500;
    margin-top: 3px;
}

.box .color-info span {
    opacity: .5;
}

/* Desktop */
.styleguide-colors:not(.colors-horizontal) .box:first-child {
    -ms-grid-row-span: 2;
    grid-row-end: span 2;
}

.styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(3),
.styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(3)~.box {
    /* when 3 colors */
    -ms-grid-row-span: 2;
    grid-row-end: span 2;
}

.styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(4),
.styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(4)~.box:nth-child(2) {
    /* when 4 colors (second expand) */
    -ms-grid-row-span: 2;
    grid-row-end: span 2;
}


.styleguide-colors>* {
    margin-bottom: 10px;
}


.owl-styleguide.slider,
.owl-styleguide .slides,
.owl-styleguide .owl-carousel .owl-stage-outer {
    overflow: unset;
}

.case-study .styleguide h3 {
    margin: 3em 0 1em;
}

.case-study .styleguide h3:first-child {
    margin: 2em 0;
}

.case-study .styleguide .typography:not(.singular)>div,
.case-study .styleguide .iconography:not(.singular)>div {
    max-width: 555px;
    position: relative;
    margin: auto;
}

.slider.shadow-items .slick-slide img {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.smile-screens--carousel {
    padding-top: 105px;
}

.case-study .slider [class*="--carousel"] .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.smile-screens--carousel .slick-dots {
    bottom: -170px;
}

.smile-screens--carousel .slick-slide {
    margin: 0 100px;
}

.smile-screens--carousel .slick-slide img,
.dama-copas-screens--carousel .slick-slide img {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transition: -webkit-transform .2s linear .3s;
    transition: -webkit-transform .2s linear .3s;
    -o-transition: transform .2s linear .3s;
    transition: transform .2s linear .3s;
    transition: transform .2s linear .3s, -webkit-transform .2s linear .3s;
    will-change: transform;
}

.smile-screens--carousel .slick-list,
.dama-copas-screens--carousel .slick-list {
    overflow: unset;
}

.smile-screens--carousel .slick-current img,
.dama-copas-screens--carousel .slick-current img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.case-study.smile-theme .styleguide .iconography img {
    max-width: 260px;
}

/*
.dama-copas-screens--carousel{
    padding-top: 38px;
}
*/
.dama-copas-screens--carousel .slick-slide {
    margin: 0 35px;
}

.dama-copas-screens--carousel .slick-dots {
    bottom: -100px;
}

.via-verde--carousel .slick-dots {
    --primary-color: #009d3b;
    position: absolute;
    width: 100%;
    display: block;
    bottom: 0;
}

.smile-onboarding--carousel {
    text-align: center;
    margin-top: 20px;
}

.smile-onboarding--carousel li[id*="slick-slide"] {
    margin: 10px 40px;
    display: inline-block;
}

.smile-onboarding--carousel li[id*="slick-slide"] img {
    width: 200px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}


/*
.slider.slider-experience .owl-item li:before{}

.slider.shadow-items .owl-item li:before{}*/


.case-study.smile-theme .slides li:before {
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.3);
    height: calc(100% - 10px);
}



.case-study.smile-theme .slides img {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}


/* 2.8.6. TESTIMONIALS */
.case-study .section-testimonials:not(.dark) {
    padding: 11em 0;
}

.case-study .section-testimonials:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color)), to(#1B1B1B));
    background: -o-linear-gradient(top, var(--theme-color) 0%, #1B1B1B 100%);
    background: linear-gradient(180deg, var(--theme-color) 0%, #1B1B1B 100%);
    /* theme color */
    z-index: 1;
    opacity: .7;
}

.case-study .section-testimonials .author h5 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}

.case-study .section-testimonials .author p {
    margin-bottom: 0;
}

.case-study .section-testimonials blockquote {
    font-style: normal;
    margin-bottom: 0;
}

.case-study .section-testimonials.dark {
    background-color: #1B1B1B;
    color: var(--light-color);
    padding-bottom: 5em;
    position: relative;
}

.case-study .section-testimonials.dark:before {
    background: var(--theme-color);
    opacity: .8;
}

.case-study .section-testimonials.dark .quote {
    margin-bottom: 3em;
    margin-top: 3em;
}

.case-study .section-testimonials.dark .quote:before {
    content: '“';
    left: 50%;
    top: -25px;
    position: absolute;
    font-size: 4em;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.case-study .section-testimonials.dark .quote:after {
    content: '';
    display: block;
    height: 2px;
    -webkit-transform: translateY(1.5em);
    -ms-transform: translateY(1.5em);
    transform: translateY(1.5em);
    background-color: var(--light-color);
    /* theme color */
}

.case-study .section-testimonials.dark blockquote {
    font-family: Lato, sans-serif;
}

.case-study .section-testimonials.dark li>div {
    z-index: 2;
}


/* 2.9. DEVICE MOCKUPS */

.ba-mockup.phone {
    background: url(../../../img/case-studies/mockups/Smartphone_White.png) no-repeat center center;
    background-size: auto 100%;
    margin: 0 auto;
    position: relative;
    width: 290px;
    height: 485px;
    padding: 63px 50px 20px;
}

.ba-mockup.phone.dark {
    background: url(../../../img/case-studies/mockups/Smartphone_Black.png) no-repeat center center;
    background-size: auto 100%;
}

.ba-mockup.tablet {
    background: url(../../../img/case-studies/mockups/Tablet_White.png) no-repeat center center;
    background-size: auto 100%;
    margin: 0 auto;
    position: relative;
    width: 290px;
    height: 167px;
    padding: 11px 37px 20px;
}

.ba-mockup.tablet.vertical {
    background: url(../../../img/case-studies/mockups/Tablet_White_V.png) no-repeat center center;
    background-size: auto 100%;
}

.ba-mockup.tablet.dark {
    background: url(../../../img/case-studies/mockups/Tablet_Black.png) no-repeat center center;
    background-size: auto 100%;
}

.ba-mockup.tablet.dark.vertical {
    background: url(../../../img/case-studies/mockups/Tablet_Black_V.png) no-repeat center center;
    background-size: auto 100%;
}

.ba-mockup.laptop {
    background: url(../../../img/case-studies/mockups/Laptop_White.png) no-repeat center center;
    background-size: auto 100%;
    margin: 0 auto;
    position: relative;
    width: 290px;
    height: 167px;
    padding: 11px 37px 20px;
}

.ba-mockup.laptop.dark {
    background: url(../../../img/case-studies/mockups/Laptop_Black.png) no-repeat center center;
    background-size: auto 100%;
}

.ba-mockup:hover .ba-slider .image {
    -webkit-animation-play-state: unset;
    animation-play-state: unset;
}

.ba-mockup .ba-slider .handle:hover .image,
.ba-mockup .ba-slider .handle.draggable .image {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.ba-slider {
    position: relative;
    overflow: hidden;
    max-height: 360px;
    height: 100%;
    margin: -1px;
}

.ba-mockup.phone .ba-slider {
    max-height: 336px;
}

.ba-slider img:not(.image) {
    width: 100%;
    display: block;
    max-width: none;
    margin: 0;
    height: 100%;
}

.ba-mockup.phone .ba-slider img:not(.image) {
    max-width: 191px;
}

.ba-slider .image {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: none;
    padding: 3px;
    -webkit-animation: arrow-animation .8s linear infinite;
    animation: arrow-animation .8s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    will-change: animation;
}

.ba-slider .image.before {
    right: 0;
}

.ba-slider .image.before g {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.ba-slider .image path {
    stroke: var(--theme-color);
}

.ba-slider .image.after {
    left: 0;
}

.ba-mockup .slider {
    position: relative;
    display: inline-block;
}

.ba-mockup .slider img {
    width: 100%;
    height: 358px;
    display: block;
}

.resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    cursor: ew-resize;
    width: 1px;
    background: rgba(151, 151, 151, 0.4);
}

/* 2.10. SCREENS */
.slider.slider-experience .owl-dots,
.slider.slider-screens .owl-dots {
    bottom: -140px;
}

.slider.slider-screens.laptop .owl-dots {
    bottom: -100px;
}

.slider.slider-screens.tablet .owl-dots {
    bottom: -60px;
}

.slider.slider-mockup.phone .slides li {
    max-width: 260px;
    margin: 0 auto;
}

.slider .owl-theme .owl-dots .owl-dot span {
    background-color: #424255;
    opacity: .4;
    width: 8px;
    height: 8px;
}

.slider .owl-theme .owl-dots .owl-dot span:hover,
.slider .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--primary-color);
    opacity: 1;
}

.slider.shadow-items .owl-item li:before {
    content: '';
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 8px);
    left: 8px;
    top: 8px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.custom-slider.slider.shadow-items .owl-item li:before {
    top: 7px;
    left: 48px;
    width: calc(100% - 96px);
    height: calc(100% - 48px);
}

.slider.slider-experience .owl-item li {
    max-width: 188px;
    width: 100%;
    margin: 20px auto;
}

.slider.slider-experience .owl-item li:before {
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.3);
    height: calc(100% - 10px);
}

/* 2.11. ANIMATIONS */

/* 2.11.1. HERO ANIMATION */
.bubble-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    bottom: -160px;
    -webkit-animation: square 25s infinite;
    animation: square 25s infinite;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
    left: 10%;
}

.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 17s;
    animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
    left: 25%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    -webkit-animation-duration: 22s;
    animation-duration: 22s;
    background-color: rgba(255, 255, 255, 0.25);
}

.bg-bubbles li:nth-child(5) {
    left: 70%;
}

.bg-bubbles li:nth-child(6) {
    left: 80%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 160px;
    height: 160px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
    left: 55%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
    left: 25%;
    width: 10px;
    height: 10px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 160px;
    height: 160px;
    -webkit-animation-delay: 11s;
    animation-delay: 11s;
}


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

/*========Keyframes========*/



@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-120vh) rotate(600deg);
        transform: translateY(-120vh) rotate(600deg);
    }
}



@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-120vh) rotate(600deg);
        transform: translateY(-120vh) rotate(600deg);
    }
}


/* 2.11.2. BEFORE/AFTER SLIDER ANIMATION */

@-webkit-keyframes arrow-animation {
    0% {
        width: 20px;
    }

    50% {
        width: 25px;
    }

    100% {
        width: 20px;
    }
}

@keyframes arrow-animation {
    0% {
        width: 20px;
    }

    50% {
        width: 25px;
    }

    100% {
        width: 20px;
    }
}

/* Fade in top */

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

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

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

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

/* Fade out top */

@-webkit-keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

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

@keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

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

/* Fade in bottom */

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

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

/* Fade out bottom */

@-webkit-keyframes fade-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

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

@keyframes fade-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

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

/* Slide Top */

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

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

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

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

@-webkit-keyframes slide-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }
}

@keyframes slide-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

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

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

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

@-webkit-keyframes slide-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }
}

@keyframes slide-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }
}










/*============MEDIAQUERIES============*/


@media (max-width: 1400px) {
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .testimounial-options {
        right: -60px;
    }
}

@media (max-width: 1280px) {

    .details-testimounial-active {
        border-bottom: 4px solid var(--secondary-color);
    }


}


@media (max-width: 1200px) {

    .publico-screens--carousel {
        padding-top: 76px;
    }

    .publico-screens--carousel .slick-slide {
        margin: 0px 5px;
    }

    .timeline-mob {
        width: 100px;
        max-width: 100px;
    }

    h3.home-subtitle {
        font-size: 32px;
    }

    h1.home-title {
        font-size: 110px;

    }

    footer .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }



    /*UX-UI*/

    .service--article-subtitle {
        text-align: left;
    }

    /*Portfolio Table*/

    .filter .container {
        width: auto;
    }

    .col-filter {
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-left: 0;
        margin-top: 24px;
    }

    .article .card .card__body {
        height: auto;

    }

    .btn-article {
        display: none;
    }

    .article-link {
        pointer-events: all;

    }

    .btn--filter-option {
        margin-left: 0.625em !important;
    }

    /* footer */

    .feature-mediaweb {
        white-space: normal;
    }

    .feature__lisboa {
        margin-left: 20px;
    }
}

@media all and (max-width: 1350px) {
    .hero-slider .flex-direction-nav {
        display: none !important;
    }
}


@media all and (max-width: 1024px) {

    /*.dama-copas-screens--carousel {
        padding-top: 68px;
    }*/
    .col-agile {
        padding-left: 50px;
    }

    .footer--sub-title {
        font-size: 12px;
    }

    .hero-slider .video-wrapper {
        display: none;
    }

    .line-testimonial {
        top: calc(100% - 175px);
    }
}

.main-container.portfolio .card--horizontal .card__image {
    height: auto;
    max-height: inherit;
}

.main-container.portfolio .card__image.background-image-holder img {
    display: inherit;
}

@media (max-width: 991px) {
    .main-container.portfolio .card--horizontal .card__image {
        width: 60% !important;
    }
}



@media (max-width: 767px) {
    .main-container.portfolio .card--horizontal .card__image {
        width: auto !important;
    }

    .main-container.portfolio .card.card--horizontal.card-2 {
        width: 80%;
        margin: 16px auto;
    }

    .wayne-brothers-theme .laptop ul.slides.publico-screens--carousel .owl-stage-outer,
    .shawcor-theme .laptop ul.slides.publico-screens--carousel .owl-stage-outer {
        overflow: initial;
    }

    .wayne-brothers-theme .laptop.slider.shadow-items .owl-item li:before,
    .shawcor-theme .laptop.slider.shadow-items .owl-item li:before {
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
    }

    .shawcor-theme.case-study .cover:not(.cover-horizontal) .cover__image img {
        transform: none;
    }
}

@media screen and (max-width: 1366px) {
    section.context .col-sm-4 {
        width: 40%;
    }

    section.context .right-ipad {
        top: -80px;
    }

    section.final-design img.right-final-design {
        top: 0;
    }
}

@media screen and (max-width: 1199px) {
    section.info-box .row>div.col-sm-3 {
        width: 30%;
    }

    section.info-box .row>div.col-sm-9 {
        width: 70%;
    }

    section.context .right-ipad {
        top: -50px;
    }

    section.the-challenge .slider-wrapper {
        padding: 36px;
    }


    section.the-challenge .slider-wrapper .owl-stage-outer {
        height: 440px;
    }

    section.wireframing img {
        margin-bottom: 30px;
    }

    section.final-design .row.ipad-slider {
        margin-top: 700px;
    }

    section.final-design .slider-wrapper {
        margin-bottom: -150px;
        padding: 30px 80px;
    }


    section.final-design .slider-wrapper .owl-stage-outer {
        height: 460px;
    }

    section.final-design .slider-wrapper .owl-controls .owl-nav div.owl-prev {
        left: -130px;
    }

    section.final-design .slider-wrapper .owl-controls .owl-nav div.owl-next {
        right: -130px;
    }

    section.all-together {
        padding: 190px 0 50px !important;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1199px) {
    .user-description {
        min-height: 370px;
    }
}

@media (max-width: 992px) {
    /* General */

    .nav-bar .logo {
        height: 38px;
    }

    .row-spacing {
        margin-top: 0;
    }

    .gif-space-fix {
        margin-top: 0;
    }

    .feature--align-fix {
        margin-right: 0;
        margin-left: 0;
    }

    .feature-1.text-right p,
    .feature-3.text-right p {
        text-align: right;
    }

    /*******/

    /* Navbar */

    .menu>li a {
        font-size: 14px;
    }


    /*******/


    h1.home-title {
        width: 575px;
        font-size: 70px;
        line-height: 73px;
    }

    .section-portfolio .container {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .section-portfolio .row.row-spacing {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .section-portfolio .row.row-spacing a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 380px;
    }

    .section-portfolio [class^="col"] {
        width: 100%;
    }

    section .btn {
        margin-top: 50px;
    }

    .scroll-down,
    .scroll-top {
        display: none;
    }

    .btn.footer--btn-subscribe {
        height: 33px;
        margin-right: 4px;
        width: auto;
    }

    .timeline {
        overflow-x: scroll;
    }

    .timeline ol {
        padding: 150px 0;
    }

    .timeline ol li {
        width: 100px;
    }

    .timeline ol li div {
        text-align: center;
        padding: 5px;
    }

    .timeline-img {
        width: 70px;
    }

    .timeline img:last-child {
        margin-bottom: 0;
    }

    .item-timeline .year-info {
        margin-bottom: 10px;
    }

    .order-timeline {
        display: inline-block;
    }

    .titles6.imagebg h2 {
        margin-bottom: -40px;
    }

    .section--donut .container {
        margin: 0;
        width: 100%;
    }

    .section--donut h4:not(.title-features):not(.section-title) {
        padding-left: 25px;
    }

    .section--donut .lead {
        padding-left: 25px;
    }

    .chart-1 .chart-svg {
        width: 290px;
    }

    .chart-1 .chart-title {
        top: 70px;
        left: 120px;
    }

    .chart-2 {
        top: -5px;
        right: 120px;
    }

    .chart-2 .chart-svg {
        width: 220px;
    }

    .chart-2 .chart-title {
        top: 125px;
        right: 80px;
    }

    .chart-3 {
        bottom: 75px;
        right: 109px;
    }

    .chart-3 .chart-svg {
        width: 210px;
    }

    .chart-3 .chart-title {
        right: 75px;
    }

    .chart-4 {
        bottom: 46px;
        left: 52px;
    }

    .chart-4 .chart-svg {
        width: 285px;
    }

    .chart-4 .chart-title {
        bottom: 90px;
        left: 95px;
    }

    .chart-5 {
        left: -15px;
        bottom: 79px;
    }

    .chart-5 .chart-svg {
        width: 185px;
    }

    .chart-5 .chart-title {
        top: 120px;
        left: 60px;
    }

    .chart-title img {
        width: 40px;
    }

    .chart-title h5 {
        letter-spacing: 4px;
        margin-right: -4px;
    }

    .content-selected {
        font-size: 18px;
    }

    .content-selected dd {
        line-height: 1.8;
    }

    /* Jobs */

    .section--positions .feature-1 {
        padding-top: 50px;
    }

    .section--positions .feature-1:not(.reset-align) {
        height: 380px;
        width: 300px;
        margin: 0 auto 30px;
    }

    .section--requeriments [class*="col-"]:last-child {
        padding-top: 50px;
    }

    /*********/

    /* Homepage */
    .home .page-title .background-image-holder .background-image-holder {
        display: none;
    }

    .section-portfolio .row.row-spacing a:not(.slick-center) {
        pointer-events: none;
    }

    .features#start .row [class^="col-"]:nth-child(2) .feature img {
        margin-top: 0;
    }

    .features#start .row [class^="col-"]:nth-child(4) .feature {
        margin-top: 2em;
    }

    .features#start .row [class^="col-"]:nth-child(4) .feature img {
        margin-bottom: 1.025em;
    }

    .partners-1 .container .row [class*="col"] {
        padding-left: 0;
        padding-right: 0;
    }

    .testimounials--carousel {
        display: block;
    }

    .testimounials--carousel .slick-dots li {
        border-bottom: 3px solid transparent;
        margin-right: 5px;
    }

    .testimounials--carousel .slick-dots li:last-child {
        margin-right: 0;
    }

    .testimounials--carousel .slick-dots li.slick-active {
        border-bottom: 3px solid #FFBF00;
    }

    .line-testimonial {
        top: calc(100% - 280px);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
        left: 50%;
    }

    .testimounials--carousel .slick-dots {
        margin-top: 20px;
    }

    /******/

    /* Footer */

    footer .container-fluid {
        width: 600px;
        padding-top: 10px;
    }

    .footer-container .row>[class*="col"]:nth-child(2) {
        margin-top: 40px;
    }

    .find-us--container {
        margin-top: 50px;
    }


}

@media(max-width: 992px) {
    .blog6.blog-post.titles6 .blog-post__title.imagebg h2 {
        margin-bottom: 0px;
    }
}

@media (max-width: 992px) and (min-width: 992px) {
    ul.slides.publico-screens--carousel img {
        padding: 0 56px;
        margin-bottom: 0;
        margin-top: -93px;
    }

    .slider.shadow-items .owl-item li:before {
        content: none;
    }
}

@media all and (max-width: 990px) {
    .card .card__body {
        margin-bottom: 0;
    }
}


@media screen and (max-width: 992px) {
    section.info-box .row>div.col-sm-3 {
        width: 40%;
    }

    section.info-box .row>div.col-sm-9 {
        width: 60%;
    }

    section.context {
        padding-bottom: 0 !important;
    }

    section.the-challenge .col-sm-8.col-sm-offset-2,
    section.user-cases .col-sm-10.col-sm-offset-1,
    section.final-design .row.ipad-slider .col-sm-10.col-sm-offset-1 {
        margin: 0;
        width: 100%;
    }

    section.the-challenge .slider-wrapper .owl-stage-outer {
        height: 520px;
    }

    .top-right-triangle:before {
        border-width: 0 0 150px 100vw;
        top: -150px;
    }

    section.wireframing .row>div.col-sm-3,
    section.wireframing .row>div.col-sm-9 {
        width: 100%;
    }

    section.wireframing div.col-sm-3 .elements--title {
        margin-bottom: 20px;
        text-align: center;
    }

    section.wireframing img {
        margin-bottom: 0;
    }

    section.final-design .col-sm-3 {
        width: 50%;
    }

    section.final-design img.right-final-design {
        max-width: 780px;
        top: 50px;
    }

    section.final-design .row.ipad-slider {
        margin-top: 480px;
    }

    section.final-design .slider-wrapper {
        margin-bottom: -100px;
        padding: 25px 75px;
    }


    section.final-design .slider-wrapper .owl-stage-outer {
        height: 430px;
    }

    section.all-together {
        padding: 140px 0 50px !important;
    }

    section.all-together .col-md-6 {
        margin-top: 30px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .timeline-tabs .nav-tabs li:after {
        display: none;
    }
}


@media screen and (max-width: 600px) {
    section.context .right-ipad {
        top: 0;
    }

    section.the-challenge .slider-wrapper {
        padding: 30px;
    }


    section.the-challenge .slider-wrapper .owl-stage-outer {
        height: 390px;
    }

    section.final-design .slider-wrapper {
        padding: 17px 55px;
    }

    section.final-design .slider-wrapper .owl-stage-outer {
        height: 330px;
    }
}

@media (max-width: 585px) {

    .wayne-brothers-theme.case-study .cover .logo,
    .shawcor-theme.case-study .cover .logo {
        max-width: inherit;
        padding-left: 0;
        text-align: center;
    }

    .wayne-brothers-theme.case-study .cover .logo img+img,
    .shawcor-theme.case-study .cover .logo img+img {
        margin-left: 0;
    }

    .wayne-brothers-theme section.approach,
    .shawcor-theme section.approach {
        margin-bottom: auto;
    }

    .wayne-brothers-theme .wireframe-back img,
    .shawcor-theme .wireframe-back img {
        margin-bottom: 25vh;
    }
}

@media (max-width: 463px) {

    .wayne-brothers-theme .wireframe-back img,
    .shawcor-theme .wireframe-back img {
        margin-bottom: 227px;
    }
}

@media (max-width: 446px) {

    .wayne-brothers-theme .tabs-container .tabs li:not(:last-child),
    .shawcor-theme .tabs-container .tabs li:not(:last-child) {
        margin-right: 0;
    }

    .wayne-brothers-theme .tabs-container .voh.vnn.active .toggle-night-day,
    .shawcor-theme .tabs-container .voh.vnn.active .toggle-night-day {
        left: 43%;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@media (max-width: 417px) {

    .wayne-brothers-theme .wireframe-back img,
    .shawcor-theme .wireframe-back img {
        margin-bottom: 50vw;
    }
}

@media (max-width: 274px) {

    .wayne-brothers-theme .tabs-container .tabs li,
    .shawcor-theme .tabs-container .tabs li {
        margin: 0 12px;
    }

    .wayne-brothers-theme .tabs-container .voh.vnn.active .toggle-night-day,
    .shawcor-theme .tabs-container .voh.vnn.active .toggle-night-day {
        left: 36%;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@media screen and (max-width: 500px) {
    section.the-challenge .slider-wrapper {
        margin: 0;
        padding: 25px;
    }


    section.the-challenge .slider-wrapper .owl-stage-outer {
        height: 320px;
    }

    section.the-challenge .slider-wrapper .owl-dots,
    section.final-design .row.ipad-slider .owl-controls {
        display: none !important;
    }

    section.final-design .row.ipad-slider {
        margin-top: -50px;
    }

    section.final-design .slider-wrapper {
        padding: 15px 45px;
    }


    section.final-design .slider-wrapper .owl-stage-outer {
        height: 270px;
    }
}

@media screen and (max-width: 400px) {
    section.the-challenge .slider-wrapper {
        padding: 18px;
    }

    section.the-challenge .slider-wrapper .owl-stage-outer {
        height: 250px;
    }

    section.final-design .slider-wrapper {
        padding: 10px 35px;
    }

    section.final-design .slider-wrapper .owl-stage-outer {
        height: 210px;
    }
}



@media screen and (min-width: 769px) {
    .cs-ionseed .row.iphone-row {
        display: table;
    }

    .cs-ionseed .row.iphone-row .col-sm-6 {
        display: table-cell;
        float: none;
        vertical-align: middle;
    }

    .cs-ionseed .row.iphone-row .col-sm-6 img {
        max-height: 600px;
    }

    .cs-ionseed .row.ipad-row {
        margin-top: 100px;
    }

    .cs-ionseed .row.ipad-row .col-sm-10.col-sm-offset-1 p {
        padding-left: 32px;
    }
}


@media screen and (max-width: 480px) {

    .cs-ionseed section.concept .circular-title,
    .cs-ionseed section.behaviour .circular-title,
    .cs-ionseed section.grid .circular-title {
        float: none;
        margin: 0 auto;
    }

    .cs-ionseed section.app .circular-title {
        float: none;
        margin: -175px auto 0;
    }

    .cs-ionseed section.cards .circular-title {
        margin: -60px auto 40px;
    }
}

@media screen and (max-width: 992px) {
    .main-container {
        padding-top: 70px;
    }

    .nav-bar,
    .nav-bar .nav-module,
    .menu {
        height: 70px;
        max-height: unset;
    }


    .nav-module.right:last-of-type {
        padding-right: 0;
    }

    .menu>li {
        line-height: 70px;
    }

    .menu li a,
    .menu>li:first-child>a {
        display: block;
        padding: 0 10px;
    }
}


/* We need to set the margin used on flex items to 0 as we have gaps in grid.  */
@supports ((display: -ms-grid) or (display: grid)) {
    .styleguide-colors>* {
        margin: 0;
    }
}


/* 2.12.7. MIN-WIDTH 768px */
@media all and (min-width: 768px) {

    .case-study:not(.isMobile) #cover-image img,
    .case-study:not(.isMobile) #technical-sheet-1,
    .case-study:not(.isMobile) #technical-sheet-2,
    .case-study:not(.isMobile) #progress-1,
    .case-study:not(.isMobile) #context-text-1,
    .case-study:not(.isMobile) #context-text-2,
    .case-study:not(.isMobile) #look_feel,
    .case-study:not(.isMobile) #look-feel-text,
    .case-study:not(.isMobile) #outcome-section,
    .case-study:not(.isMobile) #progress-2,
    .case-study:not(.isMobile) #progress-3,
    .case-study:not(.isMobile) #research-text,
    .case-study:not(.isMobile) #low-fidelity,
    .case-study:not(.isMobile) #low-fidelity-1,
    .case-study:not(.isMobile) #low-fidelity-2,
    .case-study:not(.isMobile) #top-section,
    .case-study:not(.isMobile) #top-image,
    .case-study:not(.isMobile) #technical-sheet,
    .case-study:not(.isMobile) #project-explanation-text,
    .case-study:not(.isMobile) #highlights-title,
    .case-study:not(.isMobile) #highlights-device,
    .case-study:not(.isMobile) #highlights-item-1,
    .case-study:not(.isMobile) #highlights-item-2,
    .case-study:not(.isMobile) #highlights-item-3,
    .case-study:not(.isMobile) #highlights-item-4,
    .case-study:not(.isMobile) #low-fidelity-text,
    .case-study:not(.isMobile) #styleguide-section,
    .case-study:not(.isMobile) #news-managment,
    .case-study:not(.isMobile) #news-slider,
    .case-study:not(.isMobile) #testimonial,
    .case-study:not(.isMobile) #onboarding-screens,
    .case-study:not(.isMobile) #onboarding-title,
    .case-study:not(.isMobile) #styleguide {
        opacity: 0;
    }

    .case-study:not(.isMobile) #news-slider {
        opacity: 1;
    }

    .vhv .case-study #cover-image img,
    .vhv .case-study #technical-sheet-1,
    .vhv .case-study #technical-sheet-2,
    .vhv .case-study #progress-1,
    .vhv .case-study #context-text-1,
    .vhv .case-study #context-text-2,
    .vhv .case-study #look_feel,
    .vhv .case-study #look-feel-text,
    .vhv .case-study #outcome-section,
    .vhv .case-study #progress-2,
    .vhv .case-study #progress-3,
    .vhv .case-study #research-text,
    .vhv .case-study #low-fidelity,
    .vhv .case-study #low-fidelity-1,
    .vhv .case-study #low-fidelity-2,
    .vhv .case-study #top-section,
    .vhv .case-study #top-image,
    .vhv .case-study #technical-sheet,
    .vhv .case-study #project-explanation-text,
    .vhv .case-study #highlights-title,
    .vhv .case-study #highlights-device,
    .vhv .case-study #highlights-item-1,
    .vhv .case-study #highlights-item-2,
    .vhv .case-study #highlights-item-3,
    .vhv .case-study #highlights-item-4,
    .vhv .case-study #low-fidelity-text,
    .vhv .case-study #styleguide-section,
    .vhv .case-study #news-managment,
    .vhv .case-study #news-slider,
    .vhv .case-study #testimonial,
    .vhv .case-study #onboarding-screens,
    .vhv .case-study #onboarding-title,
    .vhv .case-study #styleguide {
        opacity: 1;
    }

    /* 2.12.7.1. Flex */
    .d-flex-sm {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    /* 2.12.7.2. Cover */
    .case-study .cover:not(.cover-horizontal) .cover__image {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 36vh;
    }

    .powerhouse-theme.case-study .cover:not(.cover-horizontal) .cover__image {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 46vh;
    }

    .powerhouse-theme.case-study .cover:not(.cover-horizontal) .cover__image {
        width: 368px;
    }

    .case-study.dama-copas-theme .cover:not(.cover-horizontal) .cover__image {
        top: 50vh;
    }

    .case-study .cover>.container>.row {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .case-study .cover.cover-horizontal>.container>.row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .case-study .cover:not(.cover-horizontal)>.container>.row {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .case-study .cover {
        padding-top: 6em;
    }

    .case-study .cover.cover-horizontal .cover__image img {
        width: auto;
        height: auto;
        max-height: 100%;
        margin: auto;
    }

    .case-study .cover:not(.cover-horizontal) .cover__image img {
        width: auto;
    }

    /* 2.12.7.3. Technical Sheet */
    .case-study section.technical-sheet {
        z-index: 1;
    }

    .case-study .technical-sheet:not(.technical-sheet-horizontal) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: var(--light-color);
    }

    .case-study .technical-sheet .project-explanation__text {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    /* 2.12.7.4. Testimonials */
    .case-study .section-testimonials.dark p {
        display: inline-block;
        margin-right: 1em;
    }

    /* 2.12.7.5. Slider */
    .slider.slider-experience .owl-dots,
    .slider.slider-illustrations .owl-dots {
        display: none !important;
    }

    .slider.o-v,
    .slider.o-v .slides,
    .slider.o-v .slides .owl-stage-outer {
        overflow: unset;
    }

    .slider.slider-screens.slider-mockup {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .slider.slider-screens.slider-mockup.phone {
        min-height: 690px;
    }

    .slider.slider-screens.slider-mockup.tablet {
        min-height: 440px;
    }

    .slider.slider-screens.slider-mockup.tablet.vertical {
        min-height: 440px;
    }

    .slider.slider-screens.slider-mockup.laptop {
        min-height: 440px;
    }

    .slider.slider-mockup.phone:after,
    .slider.slider-mockup.tablet:after,
    .slider.slider-mockup.laptop:after {
        content: '';
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        top: 16px;
        z-index: 1;
        pointer-events: none;
        background: no-repeat center top;
    }

    .slider.slider-mockup.phone:after {
        background-image: url(../../../img/case-studies/mockups/Smartphone_White.png);
    }

    .slider.slider-mockup.phone.dark:after {
        background-image: url(../../../img/case-studies/mockups/Smartphone_Black.png);
    }

    .slider.slider-mockup.tablet:after {
        background-image: url(../../../img/case-studies/mockups/Tablet_White.png);
    }

    .slider.slider-mockup.tablet.dark:after {
        background-image: url(../../../img/case-studies/mockups/Tablet_Black.png);
    }

    .slider.slider-mockup.tablet.vertical:after {
        background-image: url(../../../img/case-studies/mockups/Tablet_White_V.png);
    }

    .slider.slider-mockup.tablet.vertical.dark:after {
        background-image: url(../../../img/case-studies/mockups/Tablet_Black_V.png);
    }

    .slider.slider-mockup.laptop:after {
        background-image: url(../../../img/case-studies/mockups/Laptop_White.png);
    }

    .custom-slider.slider-mockup.laptop:after {
        background-image: url(../../../img/case-studies/wayne-brothers/iPad-Clay-Frontal-White.png);
        background-size: contain;
    }

    .slider.slider-mockup.laptop.dark:after {
        background-image: url(../../../img/case-studies/mockups/Laptop_Black.png);
    }

    .slider .owl-item li {
        -webkit-transition: -webkit-transform 250ms ease-in-out 0s;
        transition: -webkit-transform 250ms ease-in-out 0s;
        -o-transition: transform 250ms ease-in-out 0s;
        transition: transform 250ms ease-in-out 0s;
        transition: transform 250ms ease-in-out 0s, -webkit-transform 250ms ease-in-out 0s;
    }

    .slider .owl-item.center li {
        -webkit-transition-delay: .4s;
        -o-transition-delay: .4s;
        transition-delay: .4s;
    }

    .slider.slider-mockup.phone .owl-item li {
        -webkit-transform: scale(.7) translateY(-35px);
        -ms-transform: scale(.7) translateY(-35px);
        transform: scale(.7) translateY(-35px);
    }

    .slider.slider-mockup.phone .owl-item.center li {
        -webkit-transform: scale(1) translateY(-35px);
        -ms-transform: scale(1) translateY(-35px);
        transform: scale(1) translateY(-35px);
    }

    .slider.slider-mockup .owl-prev,
    .slider.slider-mockup .owl-next,
    .slider.phone .owl-prev,
    .slider.phone .owl-next {
        width: 190px;
        height: 360px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        color: transparent;
        z-index: 2;
    }

    .slider.tablet .owl-prev,
    .slider.tablet .owl-next {
        width: 400px;
        height: 320px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        color: transparent;
        z-index: 2;
    }

    .slider.laptop .owl-prev,
    .slider.laptop .owl-next {
        width: 400px;
        height: 270px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        color: transparent;
        z-index: 2;
    }

    .slider.slider-mockup .owl-theme .owl-controls .owl-nav div.owl-prev,
    .slider.phone .owl-theme .owl-controls .owl-nav div.owl-prev,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-prev {
        left: 62px;
    }

    .slider.tablet .owl-theme .owl-controls .owl-nav div.owl-prev,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-prev {
        left: -230px;
    }

    .slider.slider-mockup .owl-theme .owl-controls .owl-nav div.owl-next,
    .slider.phone .owl-theme .owl-controls .owl-nav div.owl-next,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-next {
        right: 62px;
    }

    .slider.tablet .owl-theme .owl-controls .owl-nav div.owl-next,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-next {
        right: -230px;
    }
}

@media (max-width: 1043px) {
    .case-study .cover:not(.cover-horizontal) .cover__image img {
        width: 67vw;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        background-size: 69%;
        top: 24px;
    }
}

@media (max-width: 1199px) and (min-width: 1000px) {

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        top: 44px;
    }
}


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

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        background-size: 69%;
        top: 41px;
    }
}

@media (max-width: 999px) {

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        background-size: 69%;
        top: 44px;
    }
}

@media (max-width: 992px) {

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        background-size: 69% !important;
        top: 9px;
    }
}


@media (max-width: 991px) and (min-width: 769px) {

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        background-size: 66% !important;
        top: 18px;
    }
}

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

    .wayne-brothers-theme .slider.desktop.slider-mockup.laptop:after,
    .shawcor-theme .slider.desktop.slider-mockup.laptop:after {
        background-size: 66% !important;
        top: 35px;
    }
}

/* 2.12.4. MIN-WIDTH 992px */
@media all and (min-width: 992px) {

    .case-study.dama-copas-theme .cover:not(.cover-horizontal) .cover__image {
        width: 600px;
    }

    /* 2.12.4.1. Display Flex  */
    .d-flex-md {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-flex-center-md {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    /* 2.12.4.2. Technical Sheet Horizontal  */
    .case-study .technical-sheet.technical-sheet-horizontal .client {
        display: inline-block;
        width: calc(50% - 5px);
        vertical-align: top;
    }

    .case-study .technical-sheet.technical-sheet-horizontal .project-name {
        display: inline-block;
        width: 50%;
    }

    /* 2.12.4.3. Section Highlight  */
    .case-study .section-highlight img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .case-study .section-highlight.highlight-image-right img {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }


    /* 2.12.4.4. Mockups  */
    .ba-mockup.laptop {
        width: 780px;
        height: 446px;
        padding: 33px 103px 0 102px;
    }

    .ba-mockup.phone {
        width: 378px;
        height: 485px;
        padding: 64px 94px 0 96px;
    }


    /* 2.12.4.5. Sliders  */
    .slider.slider-screens.phone .owl-item li {
        -webkit-transform: scale(.7) translateY(-10px);
        -ms-transform: scale(.7) translateY(-10px);
        transform: scale(.7) translateY(-10px);
    }

    .slider.slider-screens.phone .owl-item.center li {
        -webkit-transform: scale(1) translateY(-10px);
        -ms-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }

    .slider.slider-screens.laptop .owl-item li {
        -webkit-transform: scale(.7) translateY(10px);
        -ms-transform: scale(.7) translateY(10px);
        transform: scale(.7) translateY(10px);
    }

    .slider.slider-screens.laptop .owl-item.center li {
        -webkit-transform: scale(1.05) translateY(10px);
        -ms-transform: scale(1.05) translateY(10px);
        transform: scale(1.05) translateY(10px);
    }

    .slider.slider-screens.tablet .owl-item li {
        -webkit-transform: scale(.7) translateY(10px);
        -ms-transform: scale(.7) translateY(10px);
        transform: scale(.7) translateY(10px);
    }

    .slider.slider-screens.tablet .owl-item.center li {
        -webkit-transform: scale(.86) translateY(0px);
        -ms-transform: scale(.86) translateY(0px);
        transform: scale(.86) translateY(0px);
    }

}


/* 2.12.2. MIN-WIDTH 1200px */
@media all and (min-width: 1200px) {

    /* 2.12.2.1. Cover Horizontal  */
    .case-study .cover.cover-horizontal h2 {
        min-width: 430px;
    }

    /* 2.12.2.2. Technical Sheet Vertical  */
    .case-study .technical-sheet:not(.technical-sheet-horizontal)>div:first-child {
        padding-left: 7%;
    }


    /* 2.12.2.3. Style Guide Colors  */
    .case-study .styleguide-colors.colors-horizontal .box:nth-child(2) {
        -webkit-transform: translate(70px, 35px);
        -ms-transform: translate(70px, 35px);
        transform: translate(70px, 35px);
    }

    .case-study .styleguide-colors.colors-horizontal .box:nth-child(3) {
        -webkit-transform: translate(32px, 60px);
        -ms-transform: translate(32px, 60px);
        transform: translate(32px, 60px);
    }

    .case-study .styleguide-colors.colors-horizontal .box:nth-child(4) {
        -webkit-transform: translate(100px, 100px);
        -ms-transform: translate(100px, 100px);
        transform: translate(100px, 100px);
    }

    /* 2.12.2.4. Slider Mockup  */
    .slider.slider-mockup .owl-theme .owl-controls .owl-nav div.owl-prev,
    .slider.phone .owl-theme .owl-controls .owl-nav div.owl-prev,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-prev {
        left: 95px;
    }

    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-prev,
    .slider.tablet .owl-theme .owl-controls .owl-nav div.owl-prev {
        left: -200px;
    }

    .slider.slider-mockup .owl-theme .owl-controls .owl-nav div.owl-next,
    .slider.phone .owl-theme .owl-controls .owl-nav div.owl-next,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-next {
        right: 95px;
    }

    .slider.tablet .owl-theme .owl-controls .owl-nav div.owl-next,
    .slider.laptop .owl-theme .owl-controls .owl-nav div.owl-next {
        right: -200px;
    }

    .case-study:not(.dama-copas-theme) .cover:not(.cover-horizontal) .cover__image {
        width: 500px;
    }

    .powerhouse-theme.case-study:not(.dama-copas-theme) .cover:not(.cover-horizontal) .cover__image {
        width: 582px;
    }

    .case-study.oakland-theme .cover:not(.cover-horizontal) .cover__image {
        width: 700px;
        top: 52vh;
    }

    .case-study.dama-copas-theme .cover:not(.cover-horizontal) .cover__image {
        width: 560px;
        top: 55vh;
    }

    .case-study.oakland-theme .cover:not(.cover-horizontal) .cover__image {
        top: 50vh;
    }

    .case-study.shawcor-theme .cover:not(.cover-horizontal) .cover__image {
        top: 33vh;
        width: 700px;
    }

    .slider.slider-mockup.tablet.dark:after {
        background-size: 580px;
    }
}

@media all and (min-width: 1300px) {

    .case-study.dama-copas-theme .cover:not(.cover-horizontal) .cover__image {
        top: 47vh;
        width: 700px;
    }

}


/* 2.12.1. MIN-WIDTH 1600px */
@media all and (min-width: 1600px) {
    .case-study .technical-sheet:not(.technical-sheet-horizontal)>div:first-child {
        padding-left: 12%;
    }

    .case-study .cover:not(.cover-horizontal) .cover__image {
        width: 800px;
    }

    .case-study.dama-copas-theme .cover:not(.cover-horizontal) .cover__image {
        width: 800px;
    }

    .case-study.smile-theme .cover:not(.cover-horizontal) .cover__image {
        width: 600px;
    }

    .case-study .cover h2 {
        font-size: 2em;
        min-height: 80px;
    }
}



/* 2.12.6. MIN-WIDTH 768px MAX-WIDTH 991px */
@media all and (min-width: 768px) and (max-width: 992px) {

    /* 2.12.6.1. Cover */
    .case-study .cover.cover-horizontal .cover__image img {
        -webkit-transform: translateX(50%) scale(2);
        -ms-transform: translateX(50%) scale(2);
        transform: translateX(50%) scale(2);
    }

    .case-study .cover:not(.cover-horizontal) .cover__image img {
        width: 67vw;
    }

    /* 2.12.6.2. Section Highlight */
    .case-study .section-highlight img {
        left: 50%;
        top: 50%;
        position: absolute;
        -webkit-transform: translateY(-50%) scale(2);
        -ms-transform: translateY(-50%) scale(2);
        transform: translateY(-50%) scale(2);
    }

    /* 2.12.6.3. Styleguide */
    .case-study .styleguide .typography:not(.singular)>div,
    .case-study .styleguide .iconography:not(.singular)>div {
        image-rendering: auto;
    }

    /* 2.12.6.4. Mockups */
    .ba-mockup.laptop {
        width: 710px;
        height: 406px;
        padding: 33px 103px 0 102px;
    }

    .ba-mockup.phone {
        width: 392px;
        height: 480px;
        padding: 62px 103px 0 102px;
    }

    .ba-slider {
        max-height: 330px;
    }

    .ba-slider img {
        width: 507px !important;
    }

    .slider.slider-mockup.laptop:after {
        background-size: 470px !important;
        margin-top: 72px !important;
    }

    .slider.slider-mockup.tablet:after {
        background-size: 429px !important;
        margin-top: 52px !important;
    }

}


/* 2.12.3. MAX-WIDTH 1199px */
@media all and (max-width: 1199px) {
    .case-study .technical-sheet:not(.technical-sheet-horizontal) div>* {
        max-width: 90%;
    }

    .case-study .cover:not(.cover-horizontal) .cover__image {
        width: 400px;
        margin: auto;
    }

    .case-study.oakland-theme .cover:not(.cover-horizontal) .cover__image {
        width: 100%;
        max-width: 690px;
        margin: auto;
    }

    .case-study.shawcor-theme .cover:not(.cover-horizontal) .cover__image {
        width: 100%;
        max-width: 500px;
        margin: auto;
        top: 40vh;
        text-align: center;
    }

    .slider.slider-mockup.laptop:after {
        background-size: 648px;
        margin-top: 35px;
    }

    .wayne-brothers-theme .custom-slider.slider.slider-mockup.laptop:after,
    .shawcor-theme .custom-slider.slider.slider-mockup.laptop:after {
        background-size: 496px;
        visibility: inherit;
        margin-top: 35px;
        background-position: 50% 27%;
    }

    .slider.slider-mockup.tablet:after {
        background-size: 481px;
        margin-top: 34px;
    }
}

/* 2.12.5. MAX-WIDTH 991px */
@media all and (max-width: 992px) {

    /* 2.12.5.1. Cover  */
    .case-study .cover h2 {
        min-height: 105px;
    }

    /* 2.12.5.2. Technical Sheet  */
    .case-study .technical-sheet:not(.technical-sheet-horizontal) div>* {
        max-width: 80%;
    }

    .case-study .technical-sheet.technical-sheet-horizontal .feature:not(:first-child) p.h6 {
        margin: 1em 0;
    }

    .case-study .technical-sheet>div {
        padding: 2em 2em;
    }

    .case-study .technical-sheet.technical-sheet-horizontal .project-name {
        margin-top: 1.5em;
    }

    /* 2.12.5.3. Section Highlight  */
    .case-study .section-highlight:not(.highlight-image-right) .highlight-item {
        min-height: unset;
        margin-bottom: 3em;
    }

    /* 2.12.5.4. Research  */
    .case-study .research__title {
        margin-bottom: 1em;
    }

    .case-study .research__title+p {
        margin-bottom: 2em;
    }

    .case-study.publico-theme .wireframe:not(.front) {
        left: 1em;
    }

    /* 2.12.5.5. Styleguide  */
    .case-study .styleguide-colors.colors-horizontal .box {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        margin: 10px 0;
    }

    .box .color-info p {
        margin-top: 7px;
    }

    .box .color-info h4 {
        margin-bottom: 40px;
    }

    .case-study .styleguide .typography:not(.singular)>div,
    .case-study .styleguide .iconography:not(.singular)>div {
        max-width: 470px;
    }

    /* 2.12.5.6. Testimonials  */
    .case-study .section-testimonials:not(.dark) {
        padding: 6em 0;
    }

    .slider.slider-screens.slider-mockup.phone:after,
    .slider.slider-screens.slider-mockup.phone.dark:after {
        background-size: 343px;
    }


    .case-study #look_feel {
        margin-top: 130px;
    }

    .case-study section.look-and-feel {
        min-height: calc((100vw * 2845 / 2500) + 310px);
    }

    .wayne-brothers-theme .custom-slider.slider.slider-mockup.laptop:after,
    .shawcor-theme .custom-slider.slider.slider-mockup.laptop:after {
        background-size: 496px !important;
        margin-top: 35px;
        background-position: 50% 8%;
        margin-top: 52px !important;
    }
}

@media (max-width: 991px) {

    .wayne-brothers-theme .custom-slider.slider.slider-mockup.laptop:after,
    .shawcor-theme .custom-slider.slider.slider-mockup.laptop:after {
        background-size: 332px !important;
        background-position: 50% 28%;
    }
}

@media (max-width: 768px) {

    .wayne-brothers-theme .custom-slider.slider.slider-mockup.laptop:after,
    .shawcor-theme .custom-slider.slider.slider-mockup.laptop:after {
        background-position: 50% 36%;
    }
}


@media (max-width: 767px) {

    /* Carousel */

    [class*='--carousel'] [class*='col-'] {
        padding-left: 20px;
        padding-right: 20px;
    }

    /*Ionseed */
    .cs-ionseed section.header-image .featured-img img {
        margin: 0 auto 80px;
    }

    .cs-ionseed section.app p {
        font-size: 18px;
        padding: 0 20px;
    }

    .cs-ionseed .circular-title {
        height: 150px;
        width: 150px;
    }

    .cs-ionseed .circular-title h3 {
        font-size: 22px;
        line-height: 150px;
    }

    .cs-ionseed section.concept .circular-title {
        margin: 0 20px -30px;
    }

    .cs-ionseed section.behaviour .circular-title {
        margin: -60px 20px -20px;
    }

    .cs-ionseed section.grid .circular-title {
        margin: -50px 20px -100px;
    }

    .cs-ionseed section.app .circular-title {
        margin: -175px 5px 0;
    }

    .cs-ionseed section.cards .circular-title {
        margin: -30px 20px 20px;
    }

    .cs-ionseed .row.ipad-row {
        margin-top: 50px;
    }

    .cs-ionseed .row.iphone-row .col-sm-6 img {
        max-height: 500px;
    }


    /*Section*/
    section.header-image .featured-img img {
        max-width: 75%;
    }

    section.info-box .row {
        display: block;
        width: auto;
    }

    section.info-box .row>div.col-sm-3,
    section.info-box .row>div.col-sm-9 {
        display: block;
        width: 100%;
    }

    section.context {
        padding: 0 !important;
    }

    section.context .col-sm-4 {
        width: 100%;
    }

    section.context .right-ipad {
        display: block;
        margin: 0 0 0 auto;
        max-width: 80%;
        position: relative;
    }

    section.final-design .col-sm-3 {
        width: 100%;
    }

    section.final-design img.right-final-design {
        max-width: 100%;
        position: relative;
        top: -20px;
    }

    section.final-design .row.ipad-slider {
        margin-top: -80px;
    }

    .rotated-frames .frame3 .col-sm-4:not(:first-child) {
        border-top: 2px solid #ccc;
        margin-top: 30px;
        padding-top: 30px;
    }

    .user-description {
        min-height: auto;
    }



    /* General */

    .introduction-section {
        background: var(--light-color);
        text-align: center;
        padding-top: 40px;
        padding-bottom: 20px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .introduction-section img {
        width: 180px;
    }

    .introduction-section .text-title {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .introduction-section .lead {
        display: none;
    }

    .background-image-holder {
        padding: 65px 50px;
    }

    .btn {
        width: 90%;
        padding: 0.75em 1em 0.75em;
    }

    .tag-cloud .btn {
        width: auto;
    }

    section .btn {
        margin-top: 0;
    }

    .feature-1.text-right p,
    .feature-1 p {
        text-align: center;
    }

    h3 {
        font-size: 2em;
        line-height: 2em;
    }

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

    /* Homepage */

    .hero-slider.slider-fullscreen.homepage .slides li .imagebg-text {
        top: 25%;
    }

    .hero-slider.slider-fullscreen.homepage .slides li .homepage-titles {
        padding: 50px 5px;
    }

    h1.home-title {
        width: 100%;
        font-size: 40px;
        line-height: 55px;
    }

    .hero-slider.slider-fullscreen.homepage .slides li h1 {
        font-size: 61px !important;
        line-height: 65px !important;
        text-align: center !important;
    }

    .hero-slider.slider-fullscreen.homepage .slides li h3 {
        display: block !important;
        text-align: center !important;
    }

    h3.home-subtitle {
        display: none;
    }

    .section-portfolio .row.row-spacing {
        display: block;
    }

    .section-portfolio .row.row-spacing a {
        width: 300px;
    }

    .card .card__body {
        height: 110px;
    }

    .partners-1 .slider img {
        max-height: 2.025em;
    }

    .testimounial__header {
        width: calc(100% - 55px);
        margin: 0 auto;
    }

    .testimonial__text {
        height: 93px;
        max-height: 93px;
        padding-left: 0;
        text-align: center;
    }

    .testimonial__text span {
        font-size: 12px;
    }

    .testimonial__text p {
        display: none;
    }

    .testimounial h4,
    .testimounial h5 {
        font-size: 16px;
    }

    .line-testimonial {
        top: calc(100% - 198px);
        height: 3px;
        width: calc(100% - 85px);
    }

    [class*='col-'] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .carousel4 [class*='col-'] {
        padding-left: 0;
        padding-right: 0;
    }



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

    /* Footer */


    /* Service Mobile */

    /*.section-portfolio .card-9 {
        width: 206px;
    }*/


    .service-align {
        text-align: center;
        margin-bottom: 30px;
    }


    .section-portfolio .col-xs-12 {
        height: 230px;
        margin-top: 10px;
    }

    .service--web-development {
        padding-bottom: 0;
    }

    .service-img {
        width: 180px;
        height: auto;
    }

    .service--img-custom {
        width: 180px;
        height: auto;
    }

    .service-align {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .service-hide {
        display: none;
    }

    .service--col {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .service--col-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .service-btn {
        margin-top: 0;
    }

    /*UX-UI*/

    .service--article-align,
    .service--article-align .text-right,
    .service--article-align .text-left {
        text-align: center;
    }

    .service--article-align ul {
        text-align: left;
    }

    .section--ux {
        background: var(--light-color);
        padding-bottom: 0;
    }

    .col-reverse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    /* Webdevelopment Mobile*/

    .btn--dev-project {
        margin-top: 0;
        margin-bottom: 25px;
    }


    .btn--dev-project .btn__text {
        font-size: 13px;
    }

    /*Portfolio Mobile*/


    .article {
        float: unset;
    }

    .btn-article {
        display: none;
    }

    .article-link {
        pointer-events: all;

    }

    .apply-filter {
        display: block;
    }

    .col-filter {
        position: fixed;
        width: 100%;
        background: #F8F8F8;
        left: 0;
        padding-top: 5px;
        bottom: 0;
        top: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;

    }

    svg.btn-svg {
        height: 55px;
    }

    .btn-svg rect {
        fill: #F8F8F8;
    }

    .btn-svg #Group g {
        stroke: var(--secondary-color);
    }

    .btn--filter-option {
        width: auto;
        height: 55px;
        font-size: 12px !important;
        float: right;
        margin: 5px !important;
        padding: 5px 21px;
    }

    .filter .btn--lg {
        width: 100%;
    }

    .filter {
        z-index: 11;
        position: fixed;
        height: 100%;
        top: 0;
        background-color: rgba(248, 248, 248, 0.98);

    }

    .filter-row {
        margin-top: 10px;
    }

    .filter-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    /********/

    /* Menu mobile */

    .menu-close {
        display: block;
    }

    .menu-module .menu {
        height: 100vh;
        width: 75%;
        position: absolute;
        background: var(--light-color);
        right: 0;
        padding: 80px 20px;
        display: block;
        -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.7);
        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.7);
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        will-change: transform;
        -webkit-transition: -webkit-transform .3s ease-in;
        transition: -webkit-transform .3s ease-in;
        -o-transition: transform .3s ease-in;
        transition: transform .3s ease-in;
        transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    }

    .nav-open .menu-module .menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -o-transition: transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    }

    .menu>li a {
        font-size: 1.125em;
    }

    .nav-bar .menu-module {
        height: 100vh;
        width: 100%;
        position: fixed;
        background: rgba(189, 189, 189, 0.75);
        top: 0;
        right: 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    /********/

    /* Contact us page */

    .col--contact-lisboa {
        padding-right: 0;
        padding-left: 0;
    }

    .contact2 {
        padding-top: 0;
    }

    .contact-form .container {
        padding: 0;
    }

    .col--contact-leiria,
    .col--contact-lisboa {
        margin-top: 60px;
    }

    [class*="-form"] .captcha-container {
        float: none;
    }

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

    /* About us page */


    .section--donut .col-sm-6 {
        width: 100%;
        float: none;
    }

    .section--about-us .row [class^="col-"]:last-child {
        text-align: center;
    }

    .col--our-mission {
        display: block;
        height: auto;
    }

    .section--about-us .lead {
        margin-top: 30px;
    }

    .features15 .row:nth-child(even) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .wide-grid--carousel img {
        margin-right: auto;
        margin-left: auto;
    }

    .wide-grid--carousel .feature-1 {
        margin-bottom: 0;
    }

    .timeline ol li div {
        padding: 15px;
    }

    .timeline img {
        width: 40px;
    }

    .col-agile {
        display: none;
    }

    .section--donut .container {
        padding: 0;
    }

    .number-method {
        display: inline-block;
    }

    .donut {
        position: relative;
        height: auto;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .chart-1,
    .chart-2,
    .chart-3,
    .chart-4,
    .chart-5 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        padding: 10px;
    }

    .chart-1 .chart-title {
        top: 0;
        left: 0;
    }

    .chart-title {
        position: relative;
        float: left;
    }

    .chart-title img {
        height: 40px;
    }

    .chart-1 .chart-title,
    .chart-2 .chart-title,
    .chart-3 .chart-title,
    .chart-4 .chart-title,
    .chart-5 .chart-title {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .chart-1 .chart-svg,
    .chart-2 .chart-svg,
    .chart-3 .chart-svg,
    .chart-4 .chart-svg,
    .chart-5 .chart-svg {
        display: none;
    }

    /********/

    /* Jobs */


    .jobs-blocks:not(:last-child) .testimonial-1 .p1,
    .jobs-blocks-2:first-child .p1 {
        border: none;
    }

    .jobs-blocks-2:last-child {
        border-top: 1px solid #DCDCDC;
        margin-top: 2em;
        padding-top: 2em !important;
    }

    .jobs-form .form-email .input-with-icon .icon-Globe-2 {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .section--positions .row [class*="col-"] .job-position {
        height: auto;
    }

    /*********/

    /* UX UI Designer */

    .section--oportunities h4,
    .section--oportunities p {
        text-align: center;
    }


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

    /*Footer and icons mediaquery*/

    .footer-container [class^='col-']>.col-md-6:nth-child(2),
    .footer-container [class^='col-']:nth-child(3) {
        margin-top: 0;
    }

    .footer-container .row>[class*="col"]:nth-child(2) {
        margin-top: 20px;
    }

    footer .container-fluid {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .feature__lisboa {
        margin-left: 0;
    }

    .footer--col-down {
        padding: 0 5px;
    }

    .social-mobile {
        display: block;
        margin-top: 50px;
    }

    .social-mobile a {
        font-size: 30px;
        padding: 6px;
    }

    .form-subscibe {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: auto;
        background-color: transparent;
    }

    .form-subscibe input[type=email] {
        display: block;
        background: rgba(255, 255, 255, 0.1) !important;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .form-subscibe .footer--text {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-top: -1em;
        margin-bottom: 1.2em;
    }

    .btn.footer--btn-subscribe {
        display: block;
        height: 45px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .footer-4 .logo {
        margin: 0 0 20px;
    }

    .footer-container .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .find-us--container .footer--sub-title {
        display: none;
    }

    .feature-mediaweb {
        width: 100%;
        margin-bottom: 0 !important;
        display: block;
        height: auto;
    }

    .feature-mediaweb .feature__right {
        max-width: 100% !important;
        width: 100%;
        margin-left: 0;
    }

    .footer-container [class^='col-']:nth-child(1),
    .footer-container [class^='col-']:nth-child(3) {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    /*.footer-container [class^='col-']:nth-child(1) :not(img) {
        display: none;
    }*/
    .footer-container [class^='col-']:nth-child(1) .footer-left-container>*:not(.footer--text) {
        display: none;
    }

    .footer-container [class^='col-']:nth-child(1) .footer-left-container .footer--text {
        text-align: left;
        margin: 0;
    }

    .footer-container [class^='col-']:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 30px;
    }

    /* Via verde */

    .tabs-container .tabs>li {
        display: block;

    }

    .tabs-container .tabs li .btn:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--light-color);
    }

    .tabs-container .tabs li .btn:hover .btn__text {
        color: var(--light-color);
    }
}

@media (max-width: 991px) {
    .slider.slider-mockup.laptop:after {
        background-size: 414px !important;
        margin-top: 104px !important;
    }
}

@media all and (max-width: 767px) {

    .feature-1.reset-align {
        text-align: center;
    }

    .card .card__body {
        margin-bottom: 0;
        width: 100%;
    }

    .feature-mediaweb {
        margin-bottom: 10px !important;
    }

    .bubble-animation {
        display: none;
    }

    /* 2.12.8.1. Sections Padding */
    .case-study section {
        padding: 3em 0;
    }

    .case-study section:not(.testimonial-3):not(.map-1):not(.imagebg):not(.imageblock):not(.bg--dark):not(.bg--secondary):not(.bg--primary):not(.bg--white):not(.features-5):not(.features-10):not(.wide-grid):not(.slider)+section:not(.testimonial-3):not(.map-1):not(.imagebg):not(.imageblock):not(.bg--dark):not(.bg--secondary):not(.bg--primary):not(.bg--white):not(.features-5):not(.features-10):not(.wide-grid):not(.slider) {
        padding-top: 3em;
    }

    /* 2.12.8.2. Cover */
    .case-study .cover {
        height: auto;
        overflow: initial;
        padding-bottom: 0;
    }

    .case-study .cover .cover__image {
        height: auto;
        width: 80%;
    }

    .case-study .cover.cover-horizontal .cover__image {
        margin: 2em 0;
    }

    .case-study .cover:not(.cover-horizontal) .cover__image img {
        -webkit-transform: translateY(25px);
        -ms-transform: translateY(25px);
        transform: translateY(25px);
    }

    .case-study .cover h2 {
        text-align: center;
    }

    /* 2.12.8.3. Technical Sheet */
    .case-study .technical-sheet:not(.technical-sheet-horizontal) div>* {
        max-width: unset;
    }

    .case-study .technical-sheet:not(.technical-sheet-horizontal)>div {
        padding: 2em 1em;
    }

    .case-study .technical-sheet.technical-sheet-horizontal>div {
        padding: 2em 0;
    }

    .technical-sheet.technical-sheet-horizontal .project-explanation {
        padding: 3em 0;
    }

    .technical-sheet.technical-sheet-horizontal .project-info .row>div:not(:last-child) {
        margin-bottom: 1em;
    }

    /* 2.12.8.4. Styleguide */
    .case-study .styleguide-colors.colors-horizontal .box .color-info h4 {
        min-height: 45px;
    }

    .case-study .styleguide-colors.colors-horizontal .box {
        height: 220px;
    }

    .case-study .styleguide-colors.colors-horizontal .box:nth-child(even) {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .styleguide-colors:not(.colors-horizontal) .box:first-child {
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
        -ms-grid-column-span: 2;
        grid-column-end: span 2;
    }

    .styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(3),
    .styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(3)~.box {
        /* when 3 colors */
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
        -ms-grid-column-span: 2;
        grid-column-end: span 2;
    }

    .styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(4),
    .styleguide-colors:not(.colors-horizontal) .box:first-child:nth-last-child(4)~.box:nth-child(2) {
        /* when 4 colors (second expand) */
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
        -ms-grid-column-span: 2;
        grid-column-end: span 2;
    }

    .case-study .styleguide .typography:not(.singular)>div,
    .case-study .styleguide .iconography:not(.singular)>div {
        max-width: 232px;
    }

    /* 2.12.8.5. Testimonials */
    .case-study .section-testimonials:not(.section-testimonials) .author {
        margin-bottom: 25px;
    }

    .case-study .section-testimonials blockquote {
        font-size: 14px;
    }

    .case-study .section-testimonials.dark {
        padding-bottom: 3em;
    }

    .case-study .section-testimonials.dark .quote:after {
        height: 1px;
    }

    /* 2.12.8.6. Slider */
    .slider.slider-mockup.phone .slides :not(.slick-dots) li {
        margin-bottom: 20px;
    }

    .slider.slider-experience .owl-dots,
    .slider.slider-screens .owl-dots {
        position: inherit;
    }

    .slider.slider-screens.slider-mockup.phone:after,
    .slider.slider-screens.slider-mockup.phone.dark:after {
        display: none;
    }

    .slider.slider-screens .slides :not(.slick-dots) li {
        margin: 10px auto 0;
    }

    .smile-screens--carousel .slick-slide img,
    .dama-copas-screens--carousel .slick-slide img {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .smile-screens--carousel {
        padding-top: 0;
        padding-bottom: 80px;
    }

    .smile-screens--carousel .slick-list {
        overflow: unset;
    }

    .smile-screens--carousel .slick-slide img,
    .smile-onboarding--carousel .slick-slide img {
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }

    .smile-screens--carousel .slick-dots {
        bottom: 0;
    }

    .smile-onboarding--carousel {
        padding-bottom: 40px;
    }

    .smile-onboarding--carousel .slick-list {
        overflow: unset;
    }

    .smile-onboarding--carousel .slick-dots {
        bottom: -20px;
    }

    .slider--animate div[class*=col-] {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }

    .section--ux [class^='col-'],
    .section--web-dev [class^='col-'] {
        padding-right: 0;
        padding-left: 0;
    }

}



@media all and (max-width: 650px) {
    .wireframe {
        margin-bottom: 50px;
    }

    .wireframe,
    .wireframe.front {
        width: 60%;
    }

    .wayne-brothers-theme .wireframe,
    .wayne-brothers-theme .wireframe.front {
        width: inherit;
    }

    .wireframe.front {
        top: 20%;
    }

    .wayne-brothers-theme .wireframe.front {
        top: 43%;
        right: 0%;
    }
}

@media (max-width: 584px) {

    .wayne-brothers-theme .wireframe-back {
        text-align: center;
    }

    .wayne-brothers-theme .wireframe.front {
        top: 47vw;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .wayne-brothers-theme .wireframe-back img {
        margin-bottom: 29vh;
    }
}

@media (max-width: 528px) {

    .wayne-brothers-theme .wireframe.front {
        top: 52vw;
    }

    .wayne-brothers-theme .wireframe-back img {
        margin-bottom: 29vh;
    }
}


@media all and (min-width: 520px) and (max-width: 767px) {
    .styleguide-colors:not(.colors-horizontal) {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}


@media all and (max-width: 519px) {
    .styleguide-colors:not(.colors-horizontal) {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .case-study .cover:not(.cover-horizontal) .cover__image {
        width: 80%;
    }
}

@media (max-width: 565px) {
    .powerhouse-theme.case-study .cover .logo {
        padding-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .powerhouse-theme.case-study .cover .logo img+img {
        margin-left: 12px;
    }
}

@media (max-width: 453px) {

    .case-study.wayne-brothers-theme .cover .logo,
    .case-study.shawcor-theme .cover .logo {
        margin: auto auto 107px;
    }
}

@media (max-width: 439px) {
    .styleguide-colors:not(.colors-horizontal) .box:first-child {
        -ms-grid-column-span: auto;
        grid-column-end: auto;
    }
}

@media (max-width: 428px) {
    .powerhouse-theme.case-study .cover .logo {
        height: auto;
    }
}

@media (min-width: 992px) {
    .container {
        width: 990px;
    }

    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1190px;
    }

    .col-lg-15 {
        width: 20%;
        float: left;
    }
}


@media (min-width: 768px) {
    .what-we-do--carousel [id*="slick-slide"] {
        width: 100%;
    }

    .col--contact-lisboa {
        padding-left: 0;
    }

    .col-sm-15 {
        width: 20%;
        float: left;
    }
}


@media (min-width: 768px) and (max-width: 768px) {
    .filter {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .dama-copas-theme .slider.slider-screens .slides :not(.slick-dots) li {
        margin: 10px 10px 0;
    }


    .dama-copas-theme .slider [class*="--carousel"] .slick-dots {
        position: relative;
        top: 15px;
    }


    .publico-screens--carousel {
        padding-top: 109px;
    }

    .publico-screens--carousel .slick-slide {
        margin: 0 40px;
    }

    .publico-theme .slider [class*="--carousel"] .slick-dots {
        position: relative;
    }

    .background-image-holder {
        padding: 65px 90px;
    }

    .filter-col {
        display: block;
    }

}

@media (max-width: 767px) {
    ul.slides.publico-screens--carousel img {
        margin-top: 0;
    }
}


@media (max-width: 1550px) {
    .timeline ol li div {
        width: 100px;
        left: calc(100% + -85px);
    }

    .timeline ol li {
        min-width: auto;
    }

    .item-timeline .year-info {
        padding: 0.541667em 1em .65em;
    }

    .timeline ol .top-item:not(:last-child)::after {
        left: calc(100% + -40px);
    }

    .timeline ol .bottom-item:not(:last-child)::after {
        left: calc(100% + -45px);
    }

    .timeline ol li:nth-child(odd) div {
        top: auto;
    }
}

@media (max-height: 900px) {
    .hero-slider.slider-fullscreen.homepage .slides li h1 {
        margin-bottom: 0px;
        font-size: 80px;
        line-height: 70px;
    }
}

/* ----------- Blog ---------- */
.blog-post__title {
    width: 100%;
    background: var(--primary-color);
}

.blog-post {
    padding-top: 100px;
}

.blog-post .blog-post__title.imagebg {
    padding: 6em 0;
    height: 100%;
}

.blog1 .card--horizontal .card__image {
    padding: 0;
}

section.blog1 {
    padding-top: 0;
}

.blog-post__title .background-image-holder {
    opacity: 0.7 !important;
}

.blog-post .tag-cloud .btn {
    padding: 0 10px;
    border-radius: 2px !important;
    background: var(--subtitle-color);
    cursor: initial;
}

.blog-post .tag-cloud .btn:hover {
    background: var(--subtitle-color);
    border-color: var(--subtitle-color);
    color: white;
}

.blog-post .tag-cloud .btn:hover .btn__text {
    color: white;
}

.blog-post .tag-cloud .btn__text {
    font-size: 10px;
}

@media screen and (max-width: 992px) {
    .blog-post {
        padding-top: 70px;
    }

    .page-title--animate .background-image-holder {
        height: calc(100% + 70px);
    }

    section.blog1 {
        padding-top: 6em;
    }

}

@media all and (max-width:767px) {
    .blog-post .blog-post__title.imagebg {
        padding: 3.875em 0
    }

    .page-title--animate .background-image-holder {
        height: 100%
    }

    section.blog1 {
        padding-top: 0;
    }
}